From 643d59bb9bf3bdd46f41a0b8c79384146629f9c8 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 22 Apr 2009 10:07:12 +0000 Subject: [PATCH 01/60] Assorted 2.5 fixes: - compiling errors in outliner.c - incorrect comments --- source/blender/blenkernel/intern/fcurve.c | 7 +++++-- source/blender/editors/space_outliner/outliner.c | 3 +-- source/blender/python/intern/bpy_interface.c | 5 ++--- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index b4cec927e30..5bfff141714 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -1258,8 +1258,11 @@ static FModifierTypeInfo FMI_MODNAME = { /* Utilities For F-Curve Modifiers ---------------------- */ -/* Recalculate the F-Curve at evaltime, as modified by the given F-Curve */ -// TODO: this isn't really such an elegant solution for time-modifying F-Modifiers, but it gets too difficult otherwise for now... +/* Recalculate the F-Curve at evaltime, as modified by the given F-Curve + * + * While this may sound wrong (and be potentially very slow), it is invalid for F-Curve modifiers to actually + * modify the evaltime in such a way that those after it will end up evaluating in the wrong time space. + */ static float fcm_reevaluate_fcurve (FCurve *fcu, FModifier *fcm, float cvalue, float evaltime) { ListBase modifiers = {NULL, NULL}; diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index 6394e38c6e7..57e81a233f7 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -100,6 +100,7 @@ #include "RNA_access.h" #include "ED_armature.h" +#include "ED_keyframing.h" #include "ED_object.h" #include "ED_screen.h" @@ -3270,7 +3271,6 @@ static void do_outliner_drivers_editop(SpaceOops *soops, ListBase *tree, short m static int outliner_drivers_addsel_exec(bContext *C, wmOperator *op) { SpaceOops *soutliner= (SpaceOops*)CTX_wm_space_data(C); - Scene *scene= CTX_data_scene(C); /* check for invalid states */ if (soutliner == NULL) @@ -3306,7 +3306,6 @@ void OUTLINER_OT_drivers_add(wmOperatorType *ot) static int outliner_drivers_deletesel_exec(bContext *C, wmOperator *op) { SpaceOops *soutliner= (SpaceOops*)CTX_wm_space_data(C); - Scene *scene= CTX_data_scene(C); /* check for invalid states */ if (soutliner == NULL) diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index 86406134253..c2773e9e7d1 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -560,7 +560,7 @@ float BPY_pydriver_eval (ChannelDriver *driver) } } - /* add target values to a py dictionary that we add to the drivers dict as 'd' */ + /* add target values to a dict that will be used as '__locals__' dict */ driver_vars = PyDict_New(); // XXX do we need to decref this? for (dtar= driver->targets.first; dtar; dtar= dtar->next) { PyObject *driver_arg = NULL; @@ -569,11 +569,10 @@ float BPY_pydriver_eval (ChannelDriver *driver) /* try to get variable value */ tval= driver_get_target_value(driver, dtar); driver_arg= PyFloat_FromDouble((double)tval); - if (driver_arg == NULL) continue; /* try to add to dictionary */ if (PyDict_SetItemString(driver_vars, dtar->name, driver_arg)) { - /* this target failed */ + /* this target failed - bad name */ if (targets_ok) { /* first one - print some extra info for easier identification */ fprintf(stderr, "\nBPY_pydriver_eval() - Error while evaluating PyDriver:\n"); From af02a0aa4e0b80c3c1154e7be095f4a387f81179 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Wed, 22 Apr 2009 18:39:44 +0000 Subject: [PATCH 02/60] UI * Headers and menus can now be created in python. * Replaced the uiMenuItem functions to create menus with equivalent uiItem functions using a layout, removing duplicated code. * More uiItem functions are now exposed to python. * The text editor header, panels and one of its menus are now created in space_text.py. * Buttons window data context icon new changes depending on active object. Issues * Icons are not wrapped yet, hardcoded ints at the moment. * The ID browse template is unfinished. --- release/ui/space_text.py | 145 +++ source/blender/blenkernel/BKE_library.h | 1 + source/blender/blenkernel/BKE_screen.h | 25 + source/blender/blenkernel/intern/library.c | 21 + source/blender/blenkernel/intern/screen.c | 11 + source/blender/editors/animation/keyframing.c | 18 +- .../blender/editors/armature/editarmature.c | 19 +- source/blender/editors/armature/poselib.c | 32 +- source/blender/editors/curve/curve_ops.c | 20 +- source/blender/editors/curve/editcurve.c | 29 +- .../blender/editors/include/BIF_transform.h | 4 +- source/blender/editors/include/UI_interface.h | 75 +- .../editors/interface/interface_anim.c | 32 +- .../blender/editors/interface/interface_api.c | 99 ++- .../editors/interface/interface_layout.c | 824 ++++++++++++++---- .../editors/interface/interface_regions.c | 449 +--------- .../editors/interface/interface_utils.c | 17 +- source/blender/editors/mesh/editmesh_tools.c | 10 +- source/blender/editors/object/object_edit.c | 58 +- source/blender/editors/physics/editparticle.c | 18 +- source/blender/editors/screen/screen_ops.c | 37 +- .../editors/space_buttons/buttons_header.c | 29 +- .../editors/space_image/image_header.c | 186 ++-- .../blender/editors/space_image/image_ops.c | 10 +- .../blender/editors/space_image/space_image.c | 1 + .../blender/editors/space_info/info_header.c | 20 +- .../space_sequencer/sequencer_header.c | 151 ++-- .../blender/editors/space_text/space_text.c | 10 +- .../blender/editors/space_text/text_header.c | 434 ++------- .../blender/editors/space_text/text_intern.h | 2 +- source/blender/editors/space_text/text_ops.c | 119 ++- .../editors/space_view3d/view3d_header.c | 342 ++++---- .../editors/space_view3d/view3d_snap.c | 19 +- .../blender/editors/transform/transform_ops.c | 10 +- .../transform/transform_orientations.c | 12 +- .../editors/uvedit/uvedit_unwrap_ops.c | 26 +- source/blender/makesdna/DNA_screen_types.h | 5 + source/blender/makesdna/DNA_space_types.h | 12 +- source/blender/makesrna/intern/rna_context.c | 12 +- source/blender/makesrna/intern/rna_screen.c | 2 +- source/blender/makesrna/intern/rna_space.c | 2 +- source/blender/makesrna/intern/rna_text.c | 13 + source/blender/makesrna/intern/rna_ui.c | 159 ++++ source/blender/python/intern/bpy_ui.c | 15 - .../windowmanager/intern/wm_operators.c | 32 +- 45 files changed, 2026 insertions(+), 1541 deletions(-) create mode 100644 release/ui/space_text.py diff --git a/release/ui/space_text.py b/release/ui/space_text.py new file mode 100644 index 00000000000..a3d27370ffa --- /dev/null +++ b/release/ui/space_text.py @@ -0,0 +1,145 @@ + +import bpy + +# temporary +ICON_LINENUMBERS_OFF = 588 +ICON_WORDWRAP_OFF = 584 +ICON_SYNTAX_OFF = 586 +ICON_TEXT = 120 +ICON_HELP = 1 +ICON_SCRIPTPLUGINS = 1 + +class TEXT_HT_header(bpy.types.Header): + __space_type__ = "TEXT_EDITOR" + __idname__ = "TEXT_HT_header" + + def draw(self, context): + st = context.space_data + text = st.text + layout = self.layout + + layout.template_header() + layout.itemM("TEXT_MT_text") + if text: + layout.itemM("TEXT_MT_edit") + layout.itemM("TEXT_MT_format") + + if text and text.modified: + layout.row() + # layout.color(redalert) + layout.itemO("TEXT_OT_resolve_conflict", text="", icon=ICON_HELP) + + layout.row() + layout.itemR(st, "line_numbers", text="", icon=ICON_LINENUMBERS_OFF) + layout.itemR(st, "word_wrap", text="", icon=ICON_WORDWRAP_OFF) + layout.itemR(st, "syntax_highlight", text="", icon=ICON_SYNTAX_OFF) + # layout.itemR(st, "do_python_plugins", text="", icon=ICON_SCRIPTPLUGINS) + + layout.row() + layout.template_header_ID(st, "text", new="TEXT_OT_new", open="TEXT_OT_open", unlink="TEXT_OT_unlink") + + if text: + layout.row() + if text.filename != "": + if text.dirty: + layout.itemL(text="File: *" + text.filename + " (unsaved)") + else: + layout.itemL(text="File: " + text.filename) + else: + if text.library: + layout.itemL(text="Text: External") + else: + layout.itemL(text="Text: Internal") + +class TEXT_PT_properties(bpy.types.Panel): + __space_type__ = "TEXT_EDITOR" + __region_type__ = "UI" + __label__ = "Properties" + + def draw(self, context): + st = context.space_data + layout = self.layout + + layout.column_flow() + layout.itemR(st, "line_numbers", icon=ICON_LINENUMBERS_OFF) + layout.itemR(st, "word_wrap", icon=ICON_WORDWRAP_OFF) + layout.itemR(st, "syntax_highlight", icon=ICON_SYNTAX_OFF) + + layout.column_flow() + layout.itemR(st, "font_size") + layout.itemR(st, "tab_width") + +class TEXT_PT_find(bpy.types.Panel): + __space_type__ = "TEXT_EDITOR" + __region_type__ = "UI" + __label__ = "Find" + + def draw(self, context): + st = context.space_data + layout = self.layout + + # find + layout.row() + layout.itemR(st, "find_text", text="") + layout.itemO("TEXT_OT_find_set_selected", text="", icon=ICON_TEXT) + layout.column() + layout.itemO("TEXT_OT_find") + + # replace + layout.row() + layout.itemR(st, "replace_text", text="") + layout.itemO("TEXT_OT_replace_set_selected", text="", icon=ICON_TEXT) + layout.column() + layout.itemO("TEXT_OT_replace") + + # mark + layout.column() + layout.itemO("TEXT_OT_mark_all") + + # settings + layout.row() + layout.itemR(st, "find_wrap", text="Wrap") + layout.itemR(st, "find_all", text="All") + +class TEXT_MT_text(bpy.types.Menu): + __space_type__ = "TEXT_EDITOR" + __label__ = "Text" + + def draw(self, context): + layout = self.layout + st = context.space_data + text = st.text + + layout.column() + layout.itemO("TEXT_OT_new") + layout.itemO("TEXT_OT_open") + + if text: + layout.itemO("TEXT_OT_reload") + + layout.column() + layout.itemO("TEXT_OT_save") + layout.itemO("TEXT_OT_save_as") + + if text.filename != "": + layout.itemO("TEXT_OT_make_internal") + + layout.column() + layout.itemO("TEXT_OT_run_script") + + #ifndef DISABLE_PYTHON + # XXX if(BPY_is_pyconstraint(text)) + # XXX uiMenuItemO(head, 0, "TEXT_OT_refresh_pyconstraints"); + #endif + + #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 + +bpy.types.register(TEXT_HT_header) +bpy.types.register(TEXT_PT_properties) +bpy.types.register(TEXT_PT_find) +bpy.types.register(TEXT_MT_text) + diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h index 212e9f08c35..e598394cc60 100644 --- a/source/blender/blenkernel/BKE_library.h +++ b/source/blender/blenkernel/BKE_library.h @@ -61,6 +61,7 @@ void free_main(struct Main *mainvar); void splitIDname(char *name, char *left, int *nr); void rename_id(struct ID *id, char *name); void test_idbutton(char *name); +void text_idbutton(struct ID *id, char *text); void all_local(struct Library *lib, int untagged_only); struct ID *find_id(char *type, char *name); void clear_id_newpoins(void); diff --git a/source/blender/blenkernel/BKE_screen.h b/source/blender/blenkernel/BKE_screen.h index 8ac3b4b0b51..4797616a471 100644 --- a/source/blender/blenkernel/BKE_screen.h +++ b/source/blender/blenkernel/BKE_screen.h @@ -38,6 +38,7 @@ struct bScreen; struct ListBase; struct Panel; struct Header; +struct Menu; struct ScrArea; struct SpaceType; struct wmNotifier; @@ -136,6 +137,9 @@ typedef struct ARegionType { /* header type definitions */ ListBase headertypes; + /* menu type definitions */ + ListBase menutypes; + /* hardcoded constraints, smaller than these values region is not visible */ int minsizex, minsizey; /* default keymaps to add */ @@ -183,6 +187,27 @@ typedef struct HeaderType { void (*py_free)(void *py_data); } HeaderType; +/* menu types */ + +typedef struct MenuType { + struct MenuType *next, *prev; + + char idname[BKE_ST_MAXNAME]; /* unique name */ + char label[BKE_ST_MAXNAME]; /* for button text */ + int space_type; + + /* verify if the menu should draw or not */ + int (*poll)(const struct bContext *, struct MenuType *); + /* draw entirely, view changes should be handled here */ + void (*draw)(const struct bContext *, struct Menu *); + + /* python integration */ + void *py_data; + struct StructRNA *py_srna; + int (*py_call)(struct PointerRNA *, struct FunctionRNA *, struct ParameterList *); + void (*py_free)(void *py_data); +} MenuType; + /* spacetypes */ struct SpaceType *BKE_spacetype_from_id(int spaceid); struct ARegionType *BKE_regiontype_from_id(struct SpaceType *st, int regionid); diff --git a/source/blender/blenkernel/intern/library.c b/source/blender/blenkernel/intern/library.c index 5728b844a88..d0e4c1a15bc 100644 --- a/source/blender/blenkernel/intern/library.c +++ b/source/blender/blenkernel/intern/library.c @@ -1102,6 +1102,27 @@ void test_idbutton(char *name) if(idtest) if( new_id(lb, idtest, name)==0 ) sort_alpha_id(lb, idtest); } +void text_idbutton(struct ID *id, char *text) +{ + if(id) { + if(GS(id->name)==ID_SCE) + strcpy(text, "SCE: "); + else if(GS(id->name)==ID_SCE) + strcpy(text, "SCR: "); + else if(GS(id->name)==ID_MA && ((Material*)id)->use_nodes) + strcpy(text, "NT: "); + else { + text[0]= id->name[0]; + text[1]= id->name[1]; + text[2]= ':'; + text[3]= ' '; + text[4]= 0; + } + } + else + strcpy(text, ""); +} + void rename_id(ID *id, char *name) { ListBase *lb; diff --git a/source/blender/blenkernel/intern/screen.c b/source/blender/blenkernel/intern/screen.c index f43dc287062..e25e4be90c8 100644 --- a/source/blender/blenkernel/intern/screen.c +++ b/source/blender/blenkernel/intern/screen.c @@ -54,6 +54,8 @@ static void spacetype_free(SpaceType *st) { ARegionType *art; PanelType *pt; + HeaderType *ht; + MenuType *mt; for(art= st->regiontypes.first; art; art= art->next) { BLI_freelistN(&art->drawcalls); @@ -62,8 +64,17 @@ static void spacetype_free(SpaceType *st) if(pt->py_free) pt->py_free(pt->py_data); + for(ht= art->headertypes.first; ht; ht= ht->next) + if(ht->py_free) + ht->py_free(ht->py_data); + + for(mt= art->menutypes.first; mt; mt= mt->next) + if(mt->py_free) + mt->py_free(mt->py_data); + BLI_freelistN(&art->paneltypes); BLI_freelistN(&art->headertypes); + BLI_freelistN(&art->menutypes); } BLI_freelistN(&st->regiontypes); diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c index c341e32db8c..b09cc3b78e1 100644 --- a/source/blender/editors/animation/keyframing.c +++ b/source/blender/editors/animation/keyframing.c @@ -989,22 +989,24 @@ static int insert_key_menu_invoke (bContext *C, wmOperator *op, wmEvent *event) { Scene *scene= CTX_data_scene(C); KeyingSet *ks; - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int i = 0; - head= uiPupMenuBegin("Insert Keyframe", 0); + pup= uiPupMenuBegin("Insert Keyframe", 0); + layout= uiPupMenuLayout(pup); /* active Keying Set */ - uiMenuItemIntO(head, "Active Keying Set", 0, "ANIM_OT_insert_keyframe_menu", "type", i++); - uiMenuSeparator(head); + uiItemIntO(layout, "Active Keying Set", 0, "ANIM_OT_insert_keyframe_menu", "type", i++); + uiItemS(layout); /* user-defined Keying Sets * - these are listed in the order in which they were defined for the active scene */ if (scene->keyingsets.first) { for (ks= scene->keyingsets.first; ks; ks= ks->next) - uiMenuItemIntO(head, ks->name, 0, "ANIM_OT_insert_keyframe_menu", "type", i++); - uiMenuSeparator(head); + uiItemIntO(layout, ks->name, 0, "ANIM_OT_insert_keyframe_menu", "type", i++); + uiItemS(layout); } /* builtin Keying Sets */ @@ -1013,11 +1015,11 @@ static int insert_key_menu_invoke (bContext *C, wmOperator *op, wmEvent *event) for (ks= builtin_keyingsets.first; ks; ks= ks->next) { /* only show KeyingSet if context is suitable */ if (keyingset_context_ok_poll(C, ks)) { - uiMenuItemIntO(head, ks->name, 0, "ANIM_OT_insert_keyframe_menu", "type", i--); + uiItemIntO(layout, ks->name, 0, "ANIM_OT_insert_keyframe_menu", "type", i--); } } - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index 80f51f3797c..ca0694a7ece 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -3460,11 +3460,13 @@ void ARMATURE_OT_subdivide_multi(wmOperatorType *ot) static int armature_subdivs_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("Subdivision Type", 0); - uiMenuItemsEnumO(head, "ARMATURE_OT_subdivs", "type"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Subdivision Type", 0); + layout= uiPupMenuLayout(pup); + uiItemsEnumO(layout, "ARMATURE_OT_subdivs", "type"); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } @@ -3744,7 +3746,8 @@ static int armature_parent_set_exec(bContext *C, wmOperator *op) static int armature_parent_set_invoke(bContext *C, wmOperator *op, wmEvent *event) { EditBone *actbone = CTX_data_active_bone(C); - uiMenuItem *head= uiPupMenuBegin("Make Parent ", 0); + uiPopupMenu *pup= uiPupMenuBegin("Make Parent ", 0); + uiLayout *layout= uiPupMenuLayout(pup); int allchildbones = 0; CTX_DATA_BEGIN(C, EditBone *, ebone, selected_editable_bones) { @@ -3754,13 +3757,13 @@ static int armature_parent_set_invoke(bContext *C, wmOperator *op, wmEvent *even } CTX_DATA_END; - uiMenuItemEnumO(head, "", 0, "ARMATURE_OT_parent_set", "type", ARM_PAR_CONNECT); + uiItemEnumO(layout, NULL, 0, "ARMATURE_OT_parent_set", "type", ARM_PAR_CONNECT); /* ob becomes parent, make the associated menus */ if (allchildbones) - uiMenuItemEnumO(head, "", 0, "ARMATURE_OT_parent_set", "type", ARM_PAR_OFFSET); + uiItemEnumO(layout, NULL, 0, "ARMATURE_OT_parent_set", "type", ARM_PAR_OFFSET); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/armature/poselib.c b/source/blender/editors/armature/poselib.c index fc5b98b1690..9b4a9d63439 100644 --- a/source/blender/editors/armature/poselib.c +++ b/source/blender/editors/armature/poselib.c @@ -301,7 +301,7 @@ static void poselib_get_builtin_keyingsets (void) /* ----- */ -static void poselib_add_menu_invoke__replacemenu (bContext *C, uiMenuItem *head, void *arg) +static void poselib_add_menu_invoke__replacemenu (bContext *C, uiLayout *layout, void *arg) { Object *ob= CTX_data_active_object(C); bAction *act= ob->poselib; @@ -309,7 +309,7 @@ static void poselib_add_menu_invoke__replacemenu (bContext *C, uiMenuItem *head, /* add each marker to this menu */ for (marker= act->markers.first; marker; marker= marker->next) - uiMenuItemIntO(head, marker->name, ICON_ARMATURE_DATA, "POSELIB_OT_pose_add", "frame", marker->frame); + uiItemIntO(layout, marker->name, ICON_ARMATURE_DATA, "POSELIB_OT_pose_add", "frame", marker->frame); } static int poselib_add_menu_invoke (bContext *C, wmOperator *op, wmEvent *evt) @@ -318,29 +318,31 @@ static int poselib_add_menu_invoke (bContext *C, wmOperator *op, wmEvent *evt) Object *ob= CTX_data_active_object(C); bArmature *arm= (ob) ? ob->data : NULL; bPose *pose= (ob) ? ob->pose : NULL; - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; /* sanity check */ if (ELEM3(NULL, ob, arm, pose)) return OPERATOR_CANCELLED; /* start building */ - head= uiPupMenuBegin(op->type->name, 0); - uiMenuContext(head, WM_OP_EXEC_DEFAULT); + pup= uiPupMenuBegin(op->type->name, 0); + layout= uiPupMenuLayout(pup); + uiLayoutContext(layout, WM_OP_EXEC_DEFAULT); /* add new (adds to the first unoccupied frame) */ - uiMenuItemIntO(head, "Add New", 0, "POSELIB_OT_pose_add", "frame", poselib_get_free_index(ob->poselib)); + uiItemIntO(layout, "Add New", 0, "POSELIB_OT_pose_add", "frame", poselib_get_free_index(ob->poselib)); /* check if we have any choices to add a new pose in any other way */ if ((ob->poselib) && (ob->poselib->markers.first)) { /* add new (on current frame) */ - uiMenuItemIntO(head, "Add New (Current Frame)", 0, "POSELIB_OT_pose_add", "frame", CFRA); + uiItemIntO(layout, "Add New (Current Frame)", 0, "POSELIB_OT_pose_add", "frame", CFRA); /* replace existing - submenu */ - uiMenuLevel(head, "Replace Existing...", poselib_add_menu_invoke__replacemenu); + uiItemLevel(layout, "Replace Existing...", 0, poselib_add_menu_invoke__replacemenu); } - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); /* this operator is only for a menu, not used further */ return OPERATOR_CANCELLED; @@ -449,7 +451,8 @@ static int poselib_stored_pose_menu_invoke (bContext *C, wmOperator *op, wmEvent Object *ob= CTX_data_active_object(C); bAction *act= (ob) ? ob->poselib : NULL; TimeMarker *marker; - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int i; /* sanity check */ @@ -457,14 +460,15 @@ static int poselib_stored_pose_menu_invoke (bContext *C, wmOperator *op, wmEvent return OPERATOR_CANCELLED; /* start building */ - head= uiPupMenuBegin(op->type->name, 0); - uiMenuContext(head, WM_OP_EXEC_DEFAULT); + pup= uiPupMenuBegin(op->type->name, 0); + layout= uiPupMenuLayout(pup); + uiLayoutContext(layout, WM_OP_EXEC_DEFAULT); /* add each marker to this menu */ for (marker=act->markers.first, i=0; marker; marker= marker->next, i++) - uiMenuItemIntO(head, marker->name, ICON_ARMATURE_DATA, op->idname, "index", i); + uiItemIntO(layout, marker->name, ICON_ARMATURE_DATA, op->idname, "index", i); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); /* this operator is only for a menu, not used further */ return OPERATOR_CANCELLED; diff --git a/source/blender/editors/curve/curve_ops.c b/source/blender/editors/curve/curve_ops.c index c27c498f55e..49d86d08db2 100644 --- a/source/blender/editors/curve/curve_ops.c +++ b/source/blender/editors/curve/curve_ops.c @@ -67,16 +67,18 @@ static int specials_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("Specials", 0); - uiMenuItemO(head, 0, "CURVE_OT_subdivide"); - uiMenuItemO(head, 0, "CURVE_OT_switch_direction"); - uiMenuItemO(head, 0, "CURVE_OT_spline_weight_set"); - uiMenuItemO(head, 0, "CURVE_OT_radius_set"); - uiMenuItemO(head, 0, "CURVE_OT_smooth"); - uiMenuItemO(head, 0, "CURVE_OT_smooth_radius"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Specials", 0); + layout= uiPupMenuLayout(pup); + uiItemO(layout, NULL, 0, "CURVE_OT_subdivide"); + uiItemO(layout, NULL, 0, "CURVE_OT_switch_direction"); + uiItemO(layout, NULL, 0, "CURVE_OT_spline_weight_set"); + uiItemO(layout, NULL, 0, "CURVE_OT_radius_set"); + uiItemO(layout, NULL, 0, "CURVE_OT_smooth"); + uiItemO(layout, NULL, 0, "CURVE_OT_smooth_radius"); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index 72806a79c50..78b86ad7f32 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -3562,15 +3562,17 @@ static int toggle_cyclic_invoke(bContext *C, wmOperator *op, wmEvent *event) { Object *obedit= CTX_data_edit_object(C); ListBase *editnurb= curve_get_editcurve(obedit); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; Nurb *nu; for(nu= editnurb->first; nu; nu= nu->next) { if(nu->pntsu>1 || nu->pntsv>1) { if(nu->type==CU_NURBS) { - head= uiPupMenuBegin("Direction", 0); - uiMenuItemsEnumO(head, op->type->idname, "direction"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Direction", 0); + layout= uiPupMenuLayout(pup); + uiItemsEnumO(layout, op->type->idname, "direction"); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } } @@ -4507,18 +4509,21 @@ static int delete_exec(bContext *C, wmOperator *op) static int delete_invoke(bContext *C, wmOperator *op, wmEvent *event) { Object *obedit= CTX_data_edit_object(C); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; if(obedit->type==OB_SURF) { - head= uiPupMenuBegin("Delete", 0); - uiMenuItemEnumO(head, "", 0, op->type->idname, "type", 0); - uiMenuItemEnumO(head, "", 0, op->type->idname, "type", 2); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Delete", 0); + layout= uiPupMenuLayout(pup); + uiItemEnumO(layout, NULL, 0, op->type->idname, "type", 0); + uiItemEnumO(layout, NULL, 0, op->type->idname, "type", 2); + uiPupMenuEnd(C, pup); } else { - head= uiPupMenuBegin("Delete", 0); - uiMenuItemsEnumO(head, op->type->idname, "type"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Delete", 0); + layout= uiPupMenuLayout(pup); + uiItemsEnumO(layout, op->type->idname, "type"); + uiPupMenuEnd(C, pup); } return OPERATOR_CANCELLED; diff --git a/source/blender/editors/include/BIF_transform.h b/source/blender/editors/include/BIF_transform.h index d16ac563eb3..e02202eb8e0 100644 --- a/source/blender/editors/include/BIF_transform.h +++ b/source/blender/editors/include/BIF_transform.h @@ -37,7 +37,7 @@ struct ListBase; struct wmEvent; struct bContext; struct Object; -struct uiMenuItem; +struct uiLayout; void transform_keymap_for_space(struct wmWindowManager *wm, struct ListBase *keymap, int spaceid); void transform_operatortypes(void); @@ -114,7 +114,7 @@ int BIF_menuselectTransformOrientation(void); void BIF_selectTransformOrientation(struct bContext *C, struct TransformOrientation *ts); void BIF_selectTransformOrientationValue(struct bContext *C, int orientation); -void BIF_menuTransformOrientation(struct bContext *C, struct uiMenuItem *head, void *arg); +void BIF_menuTransformOrientation(struct bContext *C, struct uiLayout *layout, void *arg); char * BIF_menustringTransformOrientation(const struct bContext *C, char *title); /* the returned value was allocated and needs to be freed after use */ int BIF_countTransformOrientation(const struct bContext *C); diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index 5a827a2311b..c491dee6ba6 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -53,6 +53,7 @@ struct uiFontStyle; typedef struct uiBut uiBut; typedef struct uiBlock uiBlock; typedef struct uiPopupBlockHandle uiPopupBlockHandle; +typedef struct uiLayout uiLayout; /* Defines */ @@ -199,51 +200,23 @@ void uiRoundRect(float minx, float miny, float maxx, float maxy, float rad); void uiDrawMenuBox(float minx, float miny, float maxx, float maxy, short flag, short direction); void uiDrawBoxShadow(unsigned char alpha, float minx, float miny, float maxx, float maxy); -/* Menus - * - * These functions are used by popup menus, toolbox and header menus. They - * assume uiMenuItem head is already created, which is done by uiMenuButton - * for header menus, or can be done with uiPupMenuBegin for popups. These - * functions do not use uiDefBut functions in order to simplify creating - * them, and to permit other types of menus (radial, ..) in the future. */ +/* Menu Callbacks */ -typedef struct uiMenuItem uiMenuItem; - -typedef void (*uiMenuCreateFunc)(struct bContext *C, uiMenuItem *head, void *arg1); +typedef void (*uiMenuCreateFunc)(struct bContext *C, struct uiLayout *layout, void *arg1); typedef void (*uiMenuHandleFunc)(struct bContext *C, void *arg, int event); -void uiMenuFunc(uiMenuItem *head, uiMenuHandleFunc handlefunc, void *argv); -void uiMenuContext(uiMenuItem *head, int opcontext); - -void uiMenuItemVal(uiMenuItem *head, const char *name, int icon, int argval); - -void uiMenuItemEnumO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, int value); -void uiMenuItemBooleanO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, int value); -void uiMenuItemsEnumO(uiMenuItem *head, char *opname, char *propname); -void uiMenuItemIntO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, int value); -void uiMenuItemFloatO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, float value); -void uiMenuItemStringO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, char *value); -void uiMenuItemO(uiMenuItem *head, int icon, char *opname); - -void uiMenuItemBooleanR(uiMenuItem *head, struct PointerRNA *ptr, char *propname); -void uiMenuItemEnumR(uiMenuItem *head, struct PointerRNA *ptr, char *propname, int value); -void uiMenuItemsEnumR(uiMenuItem *head, struct PointerRNA *ptr, char *propname); - -void uiMenuLevel(uiMenuItem *head, const char *name, uiMenuCreateFunc newlevel); -void uiMenuLevelEnumO(uiMenuItem *head, char *opname, char *propname); -void uiMenuLevelEnumR(uiMenuItem *head, struct PointerRNA *ptr, char *propname); - -void uiMenuSeparator(uiMenuItem *head); - /* Popup Menus * * Functions used to create popup menus. For more extended menus the * uiPupMenuBegin/End functions can be used to define own items with - * the uiMenu functions inbetween. If it is a simple confirmation menu + * the uiItem functions inbetween. If it is a simple confirmation menu * or similar, popups can be created with a single function call. */ -uiMenuItem *uiPupMenuBegin(const char *title, int icon); -void uiPupMenuEnd(struct bContext *C, struct uiMenuItem *head); +typedef struct uiPopupMenu uiPopupMenu; + +uiPopupMenu *uiPupMenuBegin(const char *title, int icon); +void uiPupMenuEnd(struct bContext *C, struct uiPopupMenu *head); +struct uiLayout *uiPupMenuLayout(uiPopupMenu *head); void uiPupMenuOkee(struct bContext *C, char *opname, char *str, ...); void uiPupMenuSaveOver(struct bContext *C, struct wmOperator *op, char *filename); @@ -555,12 +528,16 @@ uiBut *uiDefMenuTogR(uiBlock *block, struct PointerRNA *ptr, char *propname, cha #define UI_LAYOUT_HORIZONTAL 0 #define UI_LAYOUT_VERTICAL 1 -typedef struct uiLayout uiLayout; +#define UI_LAYOUT_PANEL 0 +#define UI_LAYOUT_HEADER 1 +#define UI_LAYOUT_MENU 2 -uiLayout *uiLayoutBegin(int dir, int x, int y, int size, int em); -void uiLayoutContext(uiLayout *layout, int opcontext); +uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em); void uiLayoutEnd(const struct bContext *C, uiBlock *block, uiLayout *layout, int *x, int *y); +void uiLayoutContext(uiLayout *layout, int opcontext); +void uiLayoutFunc(uiLayout *layout, uiMenuHandleFunc handlefunc, void *argv); + /* layout specifiers */ void uiLayoutRow(uiLayout *layout); void uiLayoutColumn(uiLayout *layout); @@ -570,10 +547,9 @@ uiLayout *uiLayoutBox(uiLayout *layout); uiLayout *uiLayoutSub(uiLayout *layout, int n); /* templates */ -void uiTemplateHeaderMenus(uiLayout *layout); -void uiTemplateHeaderButtons(uiLayout *layout); -void uiTemplateHeaderID(uiLayout *layout, struct PointerRNA *ptr, char *propname, int flag, uiIDPoinFunc func); -void uiTemplateSetColor(uiLayout *layout, int color); +void uiTemplateHeader(uiLayout *layout); +void uiTemplateHeaderID(uiLayout *layout, struct PointerRNA *ptr, char *propname, + char *newop, char *openop, char *unlinkop); /* items */ void uiItemO(uiLayout *layout, char *name, int icon, char *opname); @@ -586,11 +562,18 @@ void uiItemStringO(uiLayout *layout, char *name, int icon, char *opname, char *p void uiItemFullO(uiLayout *layout, char *name, int icon, char *idname, struct IDProperty *properties, int context); void uiItemR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname, int expand); -void uiItemFullR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, struct PropertyRNA *prop, int index, int expand); +void uiItemFullR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, struct PropertyRNA *prop, int index, int value, int expand); +void uiItemEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname, int value); +void uiItemsEnumR(uiLayout *layout, struct PointerRNA *ptr, char *propname); -void uiItemL(uiLayout *layout, char *name, int icon); +void uiItemL(uiLayout *layout, char *name, int icon); /* label */ +void uiItemM(uiLayout *layout, char *name, int icon, char *menuname); /* menu */ +void uiItemV(uiLayout *layout, char *name, int icon, int argval); /* value */ +void uiItemS(uiLayout *layout); /* separator */ -void uiItemM(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func); +void uiItemLevel(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func); +void uiItemLevelEnumO(uiLayout *layout, char *name, int icon, char *opname, char *propname); +void uiItemLevelEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname); /* utilities */ #define UI_PANEL_WIDTH 340 diff --git a/source/blender/editors/interface/interface_anim.c b/source/blender/editors/interface/interface_anim.c index 6775a639597..af8aa91f358 100644 --- a/source/blender/editors/interface/interface_anim.c +++ b/source/blender/editors/interface/interface_anim.c @@ -114,44 +114,46 @@ void ui_but_anim_remove_driver(bContext *C) // TODO: refine the logic for adding/removing drivers... void ui_but_anim_menu(bContext *C, uiBut *but) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int length; if(but->rnapoin.data && but->rnaprop) { - head= uiPupMenuBegin(RNA_property_ui_name(but->rnaprop), 0); + pup= uiPupMenuBegin(RNA_property_ui_name(but->rnaprop), 0); + layout= uiPupMenuLayout(pup); length= RNA_property_array_length(but->rnaprop); if(but->flag & UI_BUT_ANIMATED_KEY) { if(length) { - uiMenuItemBooleanO(head, "Delete Keyframes", 0, "ANIM_OT_delete_keyframe_button", "all", 1); - uiMenuItemBooleanO(head, "Delete Single Keyframe", 0, "ANIM_OT_delete_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); - uiMenuItemBooleanO(head, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 1); - uiMenuItemBooleanO(head, "Remove Single Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); + uiItemBooleanO(layout, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 1); + uiItemBooleanO(layout, "Remove Single Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); } else { - uiMenuItemBooleanO(head, "Delete Keyframe", 0, "ANIM_OT_delete_keyframe_button", "all", 0); + uiItemBooleanO(layout, "Delete Keyframe", 0, "ANIM_OT_delete_keyframe_button", "all", 0); - uiMenuItemBooleanO(head, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); + uiItemBooleanO(layout, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); } } else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { if(length) { - uiMenuItemBooleanO(head, "Insert Keyframes", 0, "ANIM_OT_insert_keyframe_button", "all", 1); - uiMenuItemBooleanO(head, "Insert Single Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); + 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); - uiMenuItemBooleanO(head, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 1); - uiMenuItemBooleanO(head, "Add Single Driver", 0, "ANIM_OT_add_driver_button", "all", 0); + uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 1); + uiItemBooleanO(layout, "Add Single Driver", 0, "ANIM_OT_add_driver_button", "all", 0); } else { - uiMenuItemBooleanO(head, "Insert Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); + uiItemBooleanO(layout, "Insert Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); - uiMenuItemBooleanO(head, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 0); + uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 0); } } - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); } } diff --git a/source/blender/editors/interface/interface_api.c b/source/blender/editors/interface/interface_api.c index a184655df83..3153f13bd0b 100644 --- a/source/blender/editors/interface/interface_api.c +++ b/source/blender/editors/interface/interface_api.c @@ -40,6 +40,15 @@ static void api_ui_item_common(FunctionRNA *func) RNA_def_int(func, "icon", 0, 0, INT_MAX, "", "Override automatic icon of the item.", 0, INT_MAX); } +static void api_ui_item_op_common(FunctionRNA *func) +{ + PropertyRNA *parm; + + api_ui_item_common(func); + parm= RNA_def_string(func, "operator", "", 0, "", "Identifier of the operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); +} + void RNA_api_ui_layout(StructRNA *srna) { FunctionRNA *func; @@ -68,9 +77,6 @@ void RNA_api_ui_layout(StructRNA *srna) parm= RNA_def_pointer(func, "layout", "UILayout", "", "Sub-layout to put items in."); RNA_def_function_return(func, parm); - func= RNA_def_function(srna, "template_header_menus", "uiTemplateHeaderMenus"); - //func= RNA_def_function(srna, "template_header_ID", "uiTemplateHeaderID"); - /* items */ func= RNA_def_function(srna, "itemR", "uiItemR"); api_ui_item_common(func); @@ -80,12 +86,97 @@ void RNA_api_ui_layout(StructRNA *srna) RNA_def_property_flag(parm, PROP_REQUIRED); RNA_def_boolean(func, "expand", 0, "", "Expand button to show more detail."); - func= RNA_def_function(srna, "itemO", "uiItemO"); + func= RNA_def_function(srna, "items_enumR", "uiItemsEnumR"); + parm= RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in data."); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "item_level_enumR", "uiItemLevelEnumR"); api_ui_item_common(func); + parm= RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in data."); + RNA_def_property_flag(parm, PROP_REQUIRED); + + /*func= RNA_def_function(srna, "item_enumR", "uiItemEnumR"); + api_ui_item_common(func); + parm= RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in data."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "value", "", 0, "", "Enum property value."); + RNA_def_property_flag(parm, PROP_REQUIRED);*/ + + func= RNA_def_function(srna, "itemO", "uiItemO"); + api_ui_item_op_common(func); + + /*func= RNA_def_function(srna, "item_enumO", "uiItemEnumO"); + api_ui_item_op_common(func); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "value", "", 0, "", "Enum property value."); + RNA_def_property_flag(parm, PROP_REQUIRED);*/ + + func= RNA_def_function(srna, "items_enumO", "uiItemsEnumO"); parm= RNA_def_string(func, "operator", "", 0, "", "Identifier of the operator."); RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "item_level_enumO", "uiItemLevelEnumO"); + api_ui_item_op_common(func); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "item_booleanO", "uiItemBooleanO"); + api_ui_item_op_common(func); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_boolean(func, "value", 0, "", "Value of the property to call the operator with."); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "item_intO", "uiItemIntO"); + api_ui_item_op_common(func); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_int(func, "value", 0, INT_MIN, INT_MAX, "", "Value of the property to call the operator with.", INT_MIN, INT_MAX); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "item_floatO", "uiItemFloatO"); + api_ui_item_op_common(func); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_float(func, "value", 0, -FLT_MAX, FLT_MAX, "", "Value of the property to call the operator with.", -FLT_MAX, FLT_MAX); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "item_stringO", "uiItemStringO"); + api_ui_item_op_common(func); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "value", "", 0, "", "Value of the property to call the operator with."); + RNA_def_property_flag(parm, PROP_REQUIRED); func= RNA_def_function(srna, "itemL", "uiItemL"); api_ui_item_common(func); + + func= RNA_def_function(srna, "itemM", "uiItemM"); + api_ui_item_common(func); + parm= RNA_def_string(func, "menu", "", 0, "", "Identifier of the menu."); + RNA_def_property_flag(parm, PROP_REQUIRED); + + func= RNA_def_function(srna, "itemS", "uiItemS"); + + /* templates */ + func= RNA_def_function(srna, "template_header", "uiTemplateHeader"); + + func= RNA_def_function(srna, "template_header_ID", "uiTemplateHeaderID"); + parm= RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property."); + RNA_def_property_flag(parm, PROP_REQUIRED); + parm= RNA_def_string(func, "property", "", 0, "", "Identifier of pointer property in data."); + RNA_def_property_flag(parm, PROP_REQUIRED); + RNA_def_string(func, "new", "", 0, "", "Operator identifier to create a new ID block."); + RNA_def_string(func, "open", "", 0, "", "Operator identifier to open a new ID block."); + RNA_def_string(func, "unlink", "", 0, "", "Operator identifier to unlink the ID block."); } diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index e0059041774..56acd755205 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -12,10 +12,12 @@ #include "DNA_windowmanager_types.h" #include "BLI_listbase.h" +#include "BLI_string.h" #include "BKE_context.h" #include "BKE_global.h" #include "BKE_idprop.h" +#include "BKE_library.h" #include "BKE_screen.h" #include "BKE_utildefines.h" @@ -38,16 +40,12 @@ /************************ Structs and Defines *************************/ -#define COLUMN_SPACE 5 -#define TEMPLATE_SPACE 5 -#define BOX_SPACE 5 -#define BUTTON_SPACE_X 5 -#define BUTTON_SPACE_Y 2 - #define RNA_NO_INDEX -1 +#define RNA_ENUM_VALUE -2 #define EM_UNIT_X XIC #define EM_UNIT_Y YIC +#define EM_SEPR_Y 6 /* Item */ @@ -55,7 +53,9 @@ typedef enum uiItemType { ITEM_OPERATOR, ITEM_RNA_PROPERTY, ITEM_MENU, - ITEM_LABEL + ITEM_LABEL, + ITEM_VALUE, + ITEM_SEPARATOR } uiItemType; enum uiItemFlag { @@ -69,7 +69,9 @@ typedef struct uiItem { int slot; char *name; + char namestr[UI_MAX_NAME_STR]; int icon; + int disabled; } uiItem; typedef struct uiItemRNA { @@ -77,7 +79,7 @@ typedef struct uiItemRNA { PointerRNA ptr; PropertyRNA *prop; - int index; + int index, value; int expand; } uiItemRNA; @@ -89,11 +91,19 @@ typedef struct uiItemOp { int context; } uiItemOp; -typedef struct uiItemLMenu { +typedef struct uiItemMenu { uiItem item; + char *menuname; uiMenuCreateFunc func; -} uiItemLMenu; + void *arg, *argN; +} uiItemMenu; + +typedef struct uiItemValue { + uiItem item; + + int argval; +} uiItemValue; /* Template */ @@ -104,8 +114,7 @@ typedef enum uiTemplateType { TEMPLATE_SPLIT, TEMPLATE_BOX, - TEMPLATE_HEADER_MENUS, - TEMPLATE_HEADER_BUTTONS, + TEMPLATE_HEADER, TEMPLATE_HEADER_ID } uiTemplateType; @@ -114,7 +123,7 @@ typedef struct uiTemplate { uiTemplateType type; ListBase items; - int color, slot; + int slot; } uiTemplate; typedef struct uiTemplateFlow { @@ -138,9 +147,13 @@ typedef struct uiTemplateHeadID { uiTemplate template; PointerRNA ptr; - char *propname; + PropertyRNA *prop; + int flag; - uiIDPoinFunc func; + short browse; + char *newop; + char *openop; + char *unlinkop; } uiTemplateHeadID; /* Layout */ @@ -148,9 +161,18 @@ typedef struct uiTemplateHeadID { struct uiLayout { ListBase templates; int opcontext; - int dir; + int dir, type; int x, y, w, h; int emw, emh; + + int column_space; + int template_space; + int box_space; + int button_space_x; + int button_space_y; + + uiMenuHandleFunc handlefunc; + void *argv; }; void ui_layout_free(uiLayout *layout); @@ -158,6 +180,14 @@ void ui_layout_end(const bContext *C, uiBlock *block, uiLayout *layout, int *x, /************************** Item ***************************/ +static void ui_item_name(uiItem *item, char *name) +{ + if(!item->name && name) { + BLI_strncpy(item->namestr, name, sizeof(item->namestr)); + item->name= item->namestr; + } +} + #define UI_FIT_EXPAND 1 static int ui_item_fit(int item, int pos, int all, int available, int spacing, int last, int flag) @@ -183,11 +213,10 @@ static int ui_item_fit(int item, int pos, int all, int available, int spacing, i } /* create buttons for an item with an RNA array */ -static void ui_item_array(uiBlock *block, uiItemRNA *rnaitem, int len, int x, int y, int w, int h) +static void ui_item_array(uiLayout *layout, uiBlock *block, uiItemRNA *rnaitem, int len, int x, int y, int w, int h) { PropertyType type; PropertySubType subtype; - char *name; int a; /* retrieve type and subtype */ @@ -195,13 +224,8 @@ static void ui_item_array(uiBlock *block, uiItemRNA *rnaitem, int len, int x, in subtype= RNA_property_subtype(rnaitem->prop); /* create label */ - if(rnaitem->item.name) - name= (char*)rnaitem->item.name; - else - name= (char*)RNA_property_ui_name(rnaitem->prop); - - if(strcmp(name, "") != 0) - uiDefBut(block, LABEL, 0, name, x, y + h - EM_UNIT_Y, w, EM_UNIT_Y, NULL, 0.0, 0.0, 0, 0, ""); + if(strcmp(rnaitem->item.name, "") != 0) + uiDefBut(block, LABEL, 0, rnaitem->item.name, x, y + h - EM_UNIT_Y, w, EM_UNIT_Y, NULL, 0.0, 0.0, 0, 0, ""); /* create buttons */ uiBlockBeginAlign(block); @@ -210,7 +234,7 @@ static void ui_item_array(uiBlock *block, uiItemRNA *rnaitem, int len, int x, in /* special check for layer layout */ int butw, buth; - butw= ui_item_fit(EM_UNIT_X, 0, EM_UNIT_X*10 + BUTTON_SPACE_X, w, 0, 0, UI_FIT_EXPAND); + butw= ui_item_fit(EM_UNIT_X, 0, EM_UNIT_X*10 + layout->button_space_x, w, 0, 0, UI_FIT_EXPAND); buth= MIN2(EM_UNIT_Y, butw); y += 2*(EM_UNIT_Y - buth); @@ -222,7 +246,7 @@ static void ui_item_array(uiBlock *block, uiItemRNA *rnaitem, int len, int x, in uiDefAutoButR(block, &rnaitem->ptr, rnaitem->prop, a+10, "", ICON_BLANK1, x + butw*a, y, butw, buth); uiBlockEndAlign(block); - x += 5*butw + BUTTON_SPACE_X; + x += 5*butw + layout->button_space_x; uiBlockBeginAlign(block); for(a=0; a<5; a++) @@ -305,16 +329,9 @@ static void ui_item_enum_row(uiBlock *block, uiItemRNA *rnaitem, int x, int y, i /* create label + button for RNA property */ static void ui_item_with_label(uiBlock *block, uiItemRNA *rnaitem, int x, int y, int w, int h) { - char *name; - - if(rnaitem->item.name) - name= (char*)rnaitem->item.name; - else - name= (char*)RNA_property_ui_name(rnaitem->prop); - - if(strcmp(name, "") != 0) { + if(strcmp(rnaitem->item.name, "") != 0) { w= w/2; - uiDefBut(block, LABEL, 0, name, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); + uiDefBut(block, LABEL, 0, rnaitem->item.name, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); x += w; } @@ -322,7 +339,7 @@ static void ui_item_with_label(uiBlock *block, uiItemRNA *rnaitem, int x, int y, } /* create buttons for an arbitrary item */ -static void ui_item_buts(uiBlock *block, uiItem *item, int x, int y, int w, int h) +static void ui_item_buts(uiLayout *layout, uiBlock *block, uiItem *item, int x, int y, int w, int h) { if(item->type == ITEM_RNA_PROPERTY) { /* RNA property */ @@ -336,7 +353,18 @@ static void ui_item_buts(uiBlock *block, uiItem *item, int x, int y, int w, int /* array property */ if(rnaitem->index == RNA_NO_INDEX && len > 0) - ui_item_array(block, rnaitem, len, x, y, w, h); + ui_item_array(layout, block, rnaitem, len, x, y, w, h); + /* enum item */ + else if(type == PROP_ENUM && rnaitem->index == RNA_ENUM_VALUE) { + char *identifier= (char*)RNA_property_identifier(rnaitem->prop); + + if(item->icon && strcmp(item->name, "") != 0) + uiDefIconTextButR(block, ROW, 0, item->icon, item->name, x, y, w, h, &rnaitem->ptr, identifier, -1, 0, rnaitem->value, -1, -1, NULL); + else if(item->icon) + uiDefIconButR(block, ROW, 0, item->icon, x, y, w, h, &rnaitem->ptr, identifier, -1, 0, rnaitem->value, -1, -1, NULL); + else + uiDefButR(block, ROW, 0, item->name, x, y, w, h, &rnaitem->ptr, identifier, -1, 0, rnaitem->value, -1, -1, NULL); + } /* expanded enum */ else if(type == PROP_ENUM && rnaitem->expand) ui_item_enum_row(block, rnaitem, x, y, w, h); @@ -352,7 +380,7 @@ static void ui_item_buts(uiBlock *block, uiItem *item, int x, int y, int w, int uiItemOp *opitem= (uiItemOp*)item; uiBut *but; - if(item->icon && item->name) + if(item->icon && strcmp(item->name, "") != 0) but= uiDefIconTextButO(block, BUT, opitem->ot->idname, opitem->context, item->icon, (char*)item->name, x, y, w, h, NULL); else if(item->icon) but= uiDefIconButO(block, BUT, opitem->ot->idname, opitem->context, item->icon, x, y, w, h, NULL); @@ -369,19 +397,53 @@ static void ui_item_buts(uiBlock *block, uiItem *item, int x, int y, int w, int } else if(item->type == ITEM_MENU) { /* menu */ - uiItemLMenu *menuitem= (uiItemLMenu*)item; + uiBut *but; + uiItemMenu *menuitem= (uiItemMenu*)item; - uiDefMenuBut(block, menuitem->func, NULL, (char*)item->name, x, y-2, w-3, h+4, ""); + if(layout->type == UI_LAYOUT_HEADER) { /* ugly .. */ + y -= 2; + w -= 3; + h += 4; + } + + if(item->icon) + but= uiDefIconTextMenuBut(block, menuitem->func, menuitem->arg, item->icon, (char*)item->name, x, y, w, h, ""); + else + but= uiDefMenuBut(block, menuitem->func, menuitem->arg, (char*)item->name, x, y, w, h, ""); + + if(menuitem->argN) { /* ugly .. */ + but->poin= (char*)but; + but->func_argN= menuitem->argN; + } } else if(item->type == ITEM_LABEL) { /* label */ + uiBut *but; - if(item->icon && item->name) - uiDefIconTextBut(block, LABEL, 0, item->icon, (char*)item->name, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); + if(item->icon && strcmp(item->name, "") != 0) + but= uiDefIconTextBut(block, LABEL, 0, item->icon, (char*)item->name, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); else if(item->icon) - uiDefIconBut(block, LABEL, 0, item->icon, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); - else if((char*)item->name) - uiDefBut(block, LABEL, 0, (char*)item->name, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); + but= uiDefIconBut(block, LABEL, 0, item->icon, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); + else + but= uiDefBut(block, LABEL, 0, (char*)item->name, x, y, w, h, NULL, 0.0, 0.0, 0, 0, ""); + + if(item->disabled) { + but->flag |= UI_BUT_DISABLED; + but->lock = 1; + but->lockstr = ""; + } + } + else if(item->type == ITEM_VALUE) { + /* label */ + uiItemValue *vitem= (uiItemValue*)item; + float *retvalue= (block->handle)? &block->handle->retvalue: NULL; + + if(item->icon && strcmp(item->name, "") != 0) + uiDefIconTextButF(block, BUTM, 0, item->icon, (char*)item->name, x, y, w, h, retvalue, 0.0, 0.0, 0, vitem->argval, ""); + else if(item->icon) + uiDefIconButF(block, BUTM, 0, item->icon, x, y, w, h, retvalue, 0.0, 0.0, 0, vitem->argval, ""); + else + uiDefButF(block, BUTM, 0, (char*)item->name, x, y, w, h, retvalue, 0.0, 0.0, 0, vitem->argval, ""); } else { /* separator */ @@ -390,18 +452,21 @@ static void ui_item_buts(uiBlock *block, uiItem *item, int x, int y, int w, int } /* estimated size of text + icon */ -static int ui_text_icon_width(char *name, int icon) +static int ui_text_icon_width(char *name, int icon, int variable) { - if(icon && name && strcmp(name, "") == 0) + if(icon && strcmp(name, "") == 0) return EM_UNIT_X; /* icon only */ else if(icon) - return 10*EM_UNIT_X; /* icon + text */ + return (variable)? UI_GetStringWidth(name) + EM_UNIT_X: 10*EM_UNIT_X; /* icon + text */ else - return 10*EM_UNIT_X; /* text only */ + return (variable)? UI_GetStringWidth(name) + EM_UNIT_X: 10*EM_UNIT_X; /* text only */ } /* estimated size of an item */ -static void ui_item_size(uiItem *item, int *r_w, int *r_h) +#define UI_ITEM_VARY_X 1 +#define UI_ITEM_VARY_Y 2 + +static void ui_item_size(uiItem *item, int *r_w, int *r_h, int flag) { int w, h; @@ -412,7 +477,7 @@ static void ui_item_size(uiItem *item, int *r_w, int *r_h) PropertySubType subtype; int len; - w= ui_text_icon_width(item->name, item->icon); + w= ui_text_icon_width(item->name, item->icon, flag & UI_ITEM_VARY_X); h= EM_UNIT_Y; /* arbitrary extended width by type */ @@ -425,7 +490,7 @@ static void ui_item_size(uiItem *item, int *r_w, int *r_h) /* increase height for arrays */ if(rnaitem->index == RNA_NO_INDEX && len > 0) { - if(item->name && strcmp(item->name, "") == 0 && item->icon == 0) + if(strcmp(item->name, "") == 0 && item->icon == 0) h= 0; if(type == PROP_BOOLEAN && len == 20) @@ -435,11 +500,15 @@ static void ui_item_size(uiItem *item, int *r_w, int *r_h) else h += len*EM_UNIT_Y; } + else if(flag & UI_ITEM_VARY_X) { + if(type == PROP_BOOLEAN && strcmp(item->name, "") != 0) + w += EM_UNIT_X; + } } else { /* other */ - w= ui_text_icon_width(item->name, item->icon); - h= EM_UNIT_Y; + w= ui_text_icon_width(item->name, item->icon, flag & UI_ITEM_VARY_X); + h= (item->type == ITEM_SEPARATOR)? EM_SEPR_Y: EM_UNIT_Y; } if(r_w) *r_w= w; @@ -458,6 +527,25 @@ static void ui_item_free(uiItem *item) } } +/* disabled item */ +static void ui_item_disabled(uiLayout *layout, char *name) +{ + uiTemplate *template= layout->templates.last; + uiItem *item; + + if(!template) + return; + + item= MEM_callocN(sizeof(uiItem), "uiItem"); + + ui_item_name(item, name); + item->disabled= 1; + item->type= ITEM_LABEL; + item->slot= template->slot; + + BLI_addtail(&template->items, item); +} + /* operator items */ void uiItemFullO(uiLayout *layout, char *name, int icon, char *idname, IDProperty *properties, int context) { @@ -467,12 +555,14 @@ void uiItemFullO(uiLayout *layout, char *name, int icon, char *idname, IDPropert if(!template) return; - if(!ot) + if(!ot) { + ui_item_disabled(layout, idname); return; + } opitem= MEM_callocN(sizeof(uiItemOp), "uiItemOp"); - opitem->item.name= name; + ui_item_name(&opitem->item, name); opitem->item.icon= icon; opitem->item.type= ITEM_OPERATOR; opitem->item.slot= template->slot; @@ -484,6 +574,33 @@ void uiItemFullO(uiLayout *layout, char *name, int icon, char *idname, IDPropert BLI_addtail(&template->items, opitem); } +static char *ui_menu_enumpropname(char *opname, char *propname, int retval) +{ + wmOperatorType *ot= WM_operatortype_find(opname); + PointerRNA ptr; + PropertyRNA *prop; + + if(!ot || !ot->srna) + return ""; + + RNA_pointer_create(NULL, ot->srna, NULL, &ptr); + prop= RNA_struct_find_property(&ptr, propname); + + if(prop) { + const EnumPropertyItem *item; + int totitem, i; + + RNA_property_enum_items(&ptr, prop, &item, &totitem); + + for (i=0; iopcontext); } @@ -500,8 +620,10 @@ void uiItemsEnumO(uiLayout *layout, char *opname, char *propname) PointerRNA ptr; PropertyRNA *prop; - if(!ot || !ot->srna) + if(!ot || !ot->srna) { + ui_item_disabled(layout, opname); return; + } RNA_pointer_create(NULL, ot->srna, NULL, &ptr); prop= RNA_struct_find_property(&ptr, propname); @@ -513,7 +635,7 @@ void uiItemsEnumO(uiLayout *layout, char *opname, char *propname) RNA_property_enum_items(&ptr, prop, &item, &totitem); for(i=0; itemplates.last; uiItemRNA *rnaitem; @@ -575,7 +697,7 @@ void uiItemFullR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, Proper rnaitem= MEM_callocN(sizeof(uiItemRNA), "uiItemRNA"); - rnaitem->item.name= name; + ui_item_name(&rnaitem->item, name); rnaitem->item.icon= icon; rnaitem->item.type= ITEM_RNA_PROPERTY; rnaitem->item.slot= template->slot; @@ -583,6 +705,7 @@ void uiItemFullR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, Proper rnaitem->ptr= *ptr; rnaitem->prop= prop; rnaitem->index= index; + rnaitem->value= value; rnaitem->expand= expand; BLI_addtail(&template->items, rnaitem); @@ -592,35 +715,90 @@ void uiItemR(uiLayout *layout, char *name, int icon, PointerRNA *ptr, char *prop { PropertyRNA *prop; + if(!ptr->data || !propname) + return; + prop= RNA_struct_find_property(ptr, propname); - if(!ptr->data) - return; if(!prop) { - printf("uiItemR: property not found: %s\n",propname); + ui_item_disabled(layout, propname); + printf("uiItemR: property not found: %s\n", propname); return; } - uiItemFullR(layout, name, icon, ptr, prop, RNA_NO_INDEX, expand); + uiItemFullR(layout, name, icon, ptr, prop, RNA_NO_INDEX, 0, expand); +} + +void uiItemEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname, int value) +{ + PropertyRNA *prop; + + if(!ptr->data || !propname) + return; + + prop= RNA_struct_find_property(ptr, propname); + + if(!prop) { + ui_item_disabled(layout, propname); + printf("uiItemEnumR: property not found: %s\n", propname); + return; + } + + uiItemFullR(layout, name, icon, ptr, prop, RNA_ENUM_VALUE, value, 0); +} + +void uiItemsEnumR(uiLayout *layout, struct PointerRNA *ptr, char *propname) +{ + PropertyRNA *prop; + + prop= RNA_struct_find_property(ptr, propname); + + if(!prop) { + ui_item_disabled(layout, propname); + return; + } + + if(RNA_property_type(prop) == PROP_ENUM) { + const EnumPropertyItem *item; + int totitem, i; + + RNA_property_enum_items(ptr, prop, &item, &totitem); + + for(i=0; idraw(C, &menu); +} + +void uiItemM(uiLayout *layout, char *name, int icon, char *menuname) { uiTemplate *template= layout->templates.last; - uiItemLMenu *menuitem; + uiItemMenu *menuitem; if(!template) return; + if(!menuname) + return; - menuitem= MEM_callocN(sizeof(uiItemLMenu), "uiItemLMenu"); + menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - menuitem->item.name= name; + ui_item_name(&menuitem->item, name); menuitem->item.icon= icon; menuitem->item.type= ITEM_MENU; menuitem->item.slot= template->slot; - menuitem->func= func; + menuitem->func= ui_item_menutype_func; + menuitem->menuname= menuname; BLI_addtail(&template->items, menuitem); } @@ -636,7 +814,7 @@ void uiItemL(uiLayout *layout, char *name, int icon) item= MEM_callocN(sizeof(uiItem), "uiItem"); - item->name= name; + ui_item_name(item, name); item->icon= icon; item->type= ITEM_LABEL; item->slot= template->slot; @@ -644,6 +822,168 @@ void uiItemL(uiLayout *layout, char *name, int icon) BLI_addtail(&template->items, item); } +/* value item */ +void uiItemV(uiLayout *layout, char *name, int icon, int argval) +{ + uiTemplate *template= layout->templates.last; + uiItemValue *vitem; + + if(!template) + return; + + vitem= MEM_callocN(sizeof(uiItemValue), "uiItemValue"); + + vitem->item.name= name; + vitem->item.icon= icon; + vitem->item.type= ITEM_VALUE; + vitem->item.slot= template->slot; + vitem->argval= argval; + + BLI_addtail(&template->items, vitem); +} + +/* separator item */ +void uiItemS(uiLayout *layout) +{ + uiTemplate *template= layout->templates.last; + uiItem *item; + + if(!template) + return; + + item= MEM_callocN(sizeof(uiItem), "uiItem"); + + item->type= ITEM_SEPARATOR; + item->slot= template->slot; + + BLI_addtail(&template->items, item); +} + +/* level items */ +void uiItemLevel(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func) +{ + uiTemplate *template= layout->templates.last; + uiItemMenu *menuitem; + + if(!template) + return; + if(!func) + return; + + menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); + + if(!icon) + icon= ICON_RIGHTARROW_THIN, + + ui_item_name(&menuitem->item, name); + menuitem->item.icon= icon; + menuitem->item.type= ITEM_MENU; + menuitem->item.slot= template->slot; + + menuitem->func= func; + + BLI_addtail(&template->items, menuitem); +} + +typedef struct MenuItemLevel { + int opcontext; + char *opname; + char *propname; + PointerRNA rnapoin; +} MenuItemLevel; + +static void menu_item_enum_opname_menu(bContext *C, uiLayout *layout, void *arg) +{ + MenuItemLevel *lvl= (MenuItemLevel*)(((uiBut*)arg)->func_argN); + + uiLayoutContext(layout, lvl->opcontext); + uiItemsEnumO(layout, lvl->opname, lvl->propname); +} + +void uiItemLevelEnumO(uiLayout *layout, char *name, int icon, char *opname, char *propname) +{ + wmOperatorType *ot= WM_operatortype_find(opname); + uiTemplate *template= layout->templates.last; + uiItemMenu *menuitem; + MenuItemLevel *lvl; + + if(!ot || !ot->srna) { + ui_item_disabled(layout, opname); + return; + } + if(!template) + return; + + menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); + + if(!icon) + icon= ICON_RIGHTARROW_THIN; + if(!name) + name= ot->name; + + ui_item_name(&menuitem->item, name); + menuitem->item.icon= icon; + menuitem->item.type= ITEM_MENU; + menuitem->item.slot= template->slot; + + lvl= MEM_callocN(sizeof(MenuItemLevel), "MenuItemLevel"); + lvl->opname= opname; + lvl->propname= propname; + lvl->opcontext= layout->opcontext; + + menuitem->func= menu_item_enum_opname_menu; + menuitem->argN= lvl; + + BLI_addtail(&template->items, menuitem); +} + +static void menu_item_enum_rna_menu(bContext *C, uiLayout *layout, void *arg) +{ + MenuItemLevel *lvl= (MenuItemLevel*)(((uiBut*)arg)->func_argN); + + uiLayoutContext(layout, lvl->opcontext); + uiItemsEnumR(layout, &lvl->rnapoin, lvl->propname); +} + +void uiItemLevelEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname) +{ + uiTemplate *template= layout->templates.last; + uiItemMenu *menuitem; + MenuItemLevel *lvl; + PropertyRNA *prop; + + if(!template) + return; + + prop= RNA_struct_find_property(ptr, propname); + if(!prop) { + ui_item_disabled(layout, propname); + return; + } + + menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); + + if(!icon) + icon= ICON_RIGHTARROW_THIN; + if(!name) + name= (char*)RNA_property_ui_name(prop); + + ui_item_name(&menuitem->item, name); + menuitem->item.icon= icon; + menuitem->item.type= ITEM_MENU; + menuitem->item.slot= template->slot; + + lvl= MEM_callocN(sizeof(MenuItemLevel), "MenuItemLevel"); + lvl->rnapoin= *ptr; + lvl->propname= propname; + lvl->opcontext= layout->opcontext; + + menuitem->func= menu_item_enum_rna_menu; + menuitem->argN= lvl; + + BLI_addtail(&template->items, menuitem); +} + /**************************** Template ***************************/ /* single row layout */ @@ -654,7 +994,7 @@ static void ui_layout_row(uiLayout *layout, uiBlock *block, uiTemplate *template /* estimate total width of buttons */ for(item=template->items.first; item; item=item->next) { - ui_item_size(item, &itemw, &itemh); + ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); totw += itemw; maxh= MAX2(maxh, itemh); tot++; @@ -668,11 +1008,11 @@ static void ui_layout_row(uiLayout *layout, uiBlock *block, uiTemplate *template w= layout->w; for(item=template->items.first; item; item=item->next) { - ui_item_size(item, &itemw, &itemh); - itemw= ui_item_fit(itemw, x, totw, w, (tot-1)*BUTTON_SPACE_X, !item->next, UI_FIT_EXPAND); + ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); + itemw= ui_item_fit(itemw, x, totw, w, (tot-1)*layout->button_space_x, !item->next, UI_FIT_EXPAND); - ui_item_buts(block, item, layout->x+x, layout->y-itemh, itemw, itemh); - x += itemw+BUTTON_SPACE_X; + ui_item_buts(layout, block, item, layout->x+x, layout->y-itemh, itemw, itemh); + x += itemw+layout->button_space_x; } layout->y -= maxh; @@ -699,20 +1039,20 @@ static void ui_layout_column(uiLayout *layout, uiBlock *block, uiTemplate *templ for(col=0; colcolumn_space, col == totcol-1, UI_FIT_EXPAND); for(item=template->items.first; item; item=item->next) { if(item->slot != col) continue; - ui_item_size(item, NULL, &itemh); + ui_item_size(item, NULL, &itemh, UI_ITEM_VARY_Y); y -= itemh; - ui_item_buts(block, item, layout->x+x, layout->y+y, itemw, itemh); - y -= BUTTON_SPACE_Y; + ui_item_buts(layout, block, item, layout->x+x, layout->y+y, itemw, itemh); + y -= layout->button_space_y; } - x += itemw + COLUMN_SPACE; + x += itemw + layout->column_space; miny= MIN2(miny, y); } @@ -731,7 +1071,7 @@ static void ui_layout_column_flow(uiLayout *layout, uiBlock *block, uiTemplate * toth= 0; totitem= 0; for(item=template->items.first; item; item=item->next) { - ui_item_size(item, &itemw, &itemh); + ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); maxw= MAX2(maxw, itemw); toth += itemh; totitem++; @@ -760,18 +1100,18 @@ static void ui_layout_column_flow(uiLayout *layout, uiBlock *block, uiTemplate * /* create column per column */ col= 0; for(item=template->items.first; item; item=item->next) { - ui_item_size(item, NULL, &itemh); - itemw= ui_item_fit(1, x, totcol, w, (totcol-1)*COLUMN_SPACE, col == totcol-1, UI_FIT_EXPAND); + ui_item_size(item, NULL, &itemh, UI_ITEM_VARY_Y); + itemw= ui_item_fit(1, x, totcol, w, (totcol-1)*layout->column_space, col == totcol-1, UI_FIT_EXPAND); y -= itemh; emy -= itemh; - ui_item_buts(block, item, layout->x+x, layout->y+y, itemw, itemh); - y -= BUTTON_SPACE_Y; + ui_item_buts(layout, block, item, layout->x+x, layout->y+y, itemw, itemh); + y -= layout->button_space_y; miny= MIN2(miny, y); /* decide to go to next one */ if(col < totcol-1 && emy <= -emh) { - x += itemw + COLUMN_SPACE; + x += itemw + layout->column_space; y= 0; col++; } @@ -789,7 +1129,7 @@ static void ui_layout_split(uiLayout *layout, uiBlock *block, uiTemplate *templa /* estimate total width of buttons */ for(item=template->items.first; item; item=item->next) { - ui_item_size(item, &itemw, &itemh); + ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); totw += itemw; maxh= MAX2(maxh, itemh); tot++; @@ -801,20 +1141,20 @@ static void ui_layout_split(uiLayout *layout, uiBlock *block, uiTemplate *templa /* create buttons starting from left and right */ lx= 0; rx= 0; - w= layout->w - BUTTON_SPACE_X*(tot-1) + BUTTON_SPACE_X; + w= layout->w - layout->button_space_x*(tot-1) + layout->button_space_x; for(item=template->items.first; item; item=item->next) { - ui_item_size(item, &itemw, &itemh); + ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); if(item->slot == UI_TSLOT_LR_LEFT) { itemw= ui_item_fit(itemw, lx, totw, w, 0, 0); - ui_item_buts(block, item, layout->x+lx, layout->y-itemh, itemw, itemh); - lx += itemw + BUTTON_SPACE_X; + ui_item_buts(layout, block, item, layout->x+lx, layout->y-itemh, itemw, itemh); + lx += itemw + layout->button_space_x; } else { itemw= ui_item_fit(itemw, totw + rx, totw, w, 0, 0); - rx -= itemw + BUTTON_SPACE_X; - ui_item_buts(block, item, layout->x+layout->w+rx, layout->y-itemh, itemw, itemh); + rx -= itemw + layout->button_space_x; + ui_item_buts(layout, block, item, layout->x+layout->w+rx, layout->y-itemh, itemw, itemh); } } @@ -836,7 +1176,7 @@ static void ui_layout_split(const bContext *C, uiLayout *layout, uiBlock *block, for(a=0; anumber; a++) { sublayout= split->sublayout[a]; - splitw= ui_item_fit(1, x, split->number, w, (split->number-1)*COLUMN_SPACE, a == split->number-1, UI_FIT_EXPAND); + splitw= ui_item_fit(1, x, split->number, w, (split->number-1)*layout->column_space, a == split->number-1, UI_FIT_EXPAND); sublayout->x= layout->x + x; sublayout->w= splitw; sublayout->y= layout->y; @@ -849,7 +1189,7 @@ static void ui_layout_split(const bContext *C, uiLayout *layout, uiBlock *block, ui_layout_end(C, block, sublayout, NULL, &y); miny= MIN2(y, miny); - x += splitw + COLUMN_SPACE; + x += splitw + layout->column_space; } layout->y= miny; @@ -865,9 +1205,9 @@ static void ui_layout_box(const bContext *C, uiLayout *layout, uiBlock *block, u starty= layout->y; /* some extra padding */ - box->sublayout->x= layout->x + BOX_SPACE; - box->sublayout->w= w - 2*BOX_SPACE; - box->sublayout->y= layout->y - BOX_SPACE; + box->sublayout->x= layout->x + layout->box_space; + box->sublayout->w= w - 2*layout->box_space; + box->sublayout->y= layout->y - layout->box_space; box->sublayout->h= h; box->sublayout->emw= layout->emw; @@ -888,15 +1228,15 @@ static void ui_layout_header_buttons(uiLayout *layout, uiBlock *block, uiTemplat uiBlockBeginAlign(block); for(item=template->items.first; item; item=item->next) { - ui_item_size(item, &itemw, &itemh); - ui_item_buts(block, item, layout->x, layout->y, itemw, itemh); + ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_X); + ui_item_buts(layout, block, item, layout->x, layout->y, itemw, itemh); layout->x += itemw; } uiBlockEndAlign(block); } -static void ui_layout_header_menus(const bContext *C, uiLayout *layout, uiBlock *block, uiTemplate *template) +static void ui_layout_header(const bContext *C, uiLayout *layout, uiBlock *block, uiTemplate *template) { ScrArea *sa= CTX_wm_area(C); @@ -910,16 +1250,127 @@ static void ui_layout_header_menus(const bContext *C, uiLayout *layout, uiBlock uiBlockSetEmboss(block, UI_EMBOSS); } +static void header_id_cb(bContext *C, void *arg_template, void *arg_event) +{ + uiTemplateHeadID *idtemplate= (uiTemplateHeadID*)arg_template; + PointerRNA idptr= RNA_property_pointer_get(&idtemplate->ptr, idtemplate->prop); + ID *idtest, *id= idptr.data; + ListBase *lb= wich_libbase(CTX_data_main(C), ID_TXT); // XXX + int nr, event= GET_INT_FROM_POINTER(arg_event); + + if(event == UI_ID_BROWSE && idtemplate->browse == 32767) + event= UI_ID_ADD_NEW; + else if(event == UI_ID_BROWSE && idtemplate->browse == 32766) + event= UI_ID_OPEN; + + switch(event) { + case UI_ID_BROWSE: { + if(id==0) id= lb->first; + if(id==0) return; + + if(idtemplate->browse== -2) { + /* XXX implement or find a replacement + * activate_databrowse((ID *)G.buts->lockpoin, GS(id->name), 0, B_MESHBROWSE, &idtemplate->browse, do_global_buttons); */ + return; + } + if(idtemplate->browse < 0) + return; + + for(idtest=lb->first, nr=1; idtest; idtest=idtest->next, nr++) { + if(nr==idtemplate->browse) { + if(id == idtest) + return; + + id= idtest; + RNA_id_pointer_create(id, &idptr); + RNA_property_pointer_set(&idtemplate->ptr, idtemplate->prop, idptr); + RNA_property_update(C, &idtemplate->ptr, idtemplate->prop); + /* XXX */ + + break; + } + } + break; + } +#if 0 + case UI_ID_DELETE: + id= NULL; + break; + case UI_ID_FAKE_USER: + if(id) { + if(id->flag & LIB_FAKEUSER) id->us++; + else id->us--; + } + else return; + break; +#endif + case UI_ID_PIN: + break; + case UI_ID_ADD_NEW: + WM_operator_name_call(C, idtemplate->newop, WM_OP_INVOKE_REGION_WIN, NULL); + break; + case UI_ID_OPEN: + WM_operator_name_call(C, idtemplate->openop, WM_OP_INVOKE_REGION_WIN, NULL); + break; +#if 0 + case UI_ID_ALONE: + if(!id || id->us < 1) + return; + break; + case UI_ID_LOCAL: + if(!id || id->us < 1) + return; + break; + case UI_ID_AUTO_NAME: + break; +#endif + } +} + static void ui_layout_header_id(const bContext *C, uiLayout *layout, uiBlock *block, uiTemplate *template) { - uiTemplateHeadID *idtemplate= (uiTemplateHeadID*)template; - PointerRNA idptr; + uiTemplateHeadID *duptemplate, *idtemplate= (uiTemplateHeadID*)template; + uiBut *but; + PointerRNA idptr= RNA_property_pointer_get(&idtemplate->ptr, idtemplate->prop); + ListBase *lb= wich_libbase(CTX_data_main(C), ID_TXT); // XXX - idptr= RNA_pointer_get(&idtemplate->ptr, idtemplate->propname); + if(idtemplate->flag & UI_ID_BROWSE) { + char *extrastr, *str; + + if((idtemplate->flag & UI_ID_ADD_NEW) && (idtemplate->flag && UI_ID_OPEN)) + extrastr= "OPEN NEW %x 32766 |ADD NEW %x 32767"; + else if(idtemplate->flag & UI_ID_ADD_NEW) + extrastr= "ADD NEW %x 32767"; + else if(idtemplate->flag & UI_ID_OPEN) + extrastr= "OPEN NEW %x 32766"; + else + extrastr= NULL; - layout->x= uiDefIDPoinButs(block, CTX_data_main(C), NULL, (ID*)idptr.data, ID_TXT, NULL, - layout->x, layout->y, idtemplate->func, - UI_ID_BROWSE|UI_ID_RENAME|UI_ID_ADD_NEW|UI_ID_OPEN|UI_ID_DELETE); + duptemplate= MEM_dupallocN(idtemplate); + IDnames_to_pupstring(&str, NULL, extrastr, lb, idptr.data, &duptemplate->browse); + + but= uiDefButS(block, MENU, 0, str, layout->x, layout->y, EM_UNIT_X, EM_UNIT_Y, &duptemplate->browse, 0, 0, 0, 0, "Browse existing choices, or add new"); + uiButSetNFunc(but, header_id_cb, duptemplate, SET_INT_IN_POINTER(UI_ID_BROWSE)); + layout->x+= EM_UNIT_X; + + MEM_freeN(str); + } + + /* text button with name */ + if(idptr.data) { + char name[64]; + + text_idbutton(idptr.data, name); + but= uiDefButR(block, TEX, 0, name, layout->x, layout->y, EM_UNIT_X*6, EM_UNIT_Y, &idptr, "name", -1, 0, 0, -1, -1, NULL); + uiButSetNFunc(but, header_id_cb, MEM_dupallocN(idtemplate), SET_INT_IN_POINTER(UI_ID_RENAME)); + layout->x += EM_UNIT_X*6; + + /* delete button */ + if(idtemplate->flag & UI_ID_DELETE) { + but= uiDefIconButO(block, BUT, idtemplate->unlinkop, WM_OP_EXEC_REGION_WIN, ICON_X, layout->x, layout->y, EM_UNIT_X, EM_UNIT_Y, NULL); + layout->x += EM_UNIT_X; + } + } } void ui_template_free(uiTemplate *template) @@ -982,7 +1433,7 @@ uiLayout *uiLayoutBox(uiLayout *layout) box= MEM_callocN(sizeof(uiTemplateBx), "uiTemplateBx"); box->template.type= TEMPLATE_BOX; - box->sublayout= uiLayoutBegin(layout->dir, 0, 0, 0, 0); + box->sublayout= uiLayoutBegin(layout->dir, layout->type, 0, 0, 0, 0); BLI_addtail(&layout->templates, box); return box->sublayout; @@ -1000,7 +1451,7 @@ void uiLayoutSplit(uiLayout *layout, int number, int lr) split->sublayout= MEM_callocN(sizeof(uiLayout*)*number, "uiTemplateSpltSub"); for(a=0; asublayout[a]= uiLayoutBegin(layout->dir, 0, 0, 0, 0); + split->sublayout[a]= uiLayoutBegin(layout->dir, layout->type, 0, 0, 0, 0); BLI_addtail(&layout->templates, split); } @@ -1026,48 +1477,53 @@ uiLayout *uiLayoutSub(uiLayout *layout, int n) return NULL; } -void uiTemplateHeaderMenus(uiLayout *layout) +void uiTemplateHeader(uiLayout *layout) { uiTemplate *template; template= MEM_callocN(sizeof(uiTemplate), "uiTemplate"); - template->type= TEMPLATE_HEADER_MENUS; + template->type= TEMPLATE_HEADER; BLI_addtail(&layout->templates, template); } -void uiTemplateHeaderButtons(uiLayout *layout) -{ - uiTemplate *template; - - template= MEM_callocN(sizeof(uiTemplate), "uiTemplate"); - template->type= TEMPLATE_HEADER_BUTTONS; - - BLI_addtail(&layout->templates, template); -} - -void uiTemplateHeaderID(uiLayout *layout, PointerRNA *ptr, char *propname, int flag, uiIDPoinFunc func) +void uiTemplateHeaderID(uiLayout *layout, PointerRNA *ptr, char *propname, char *newop, char *openop, char *unlinkop) { uiTemplateHeadID *idtemplate; + PropertyRNA *prop; + + if(!ptr->data) + return; + + prop= RNA_struct_find_property(ptr, propname); + + if(!prop) { + printf("uiTemplateHeaderID: property not found: %s\n", propname); + return; + } idtemplate= MEM_callocN(sizeof(uiTemplateHeadID), "uiTemplateHeadID"); idtemplate->template.type= TEMPLATE_HEADER_ID; idtemplate->ptr= *ptr; - idtemplate->propname= propname; - idtemplate->flag= flag; - idtemplate->func= func; + idtemplate->prop= prop; + idtemplate->flag= UI_ID_BROWSE|UI_ID_RENAME; + + if(newop) { + idtemplate->flag |= UI_ID_ADD_NEW; + idtemplate->newop= newop; + } + if(openop) { + idtemplate->flag |= UI_ID_OPEN; + idtemplate->openop= openop; + } + if(unlinkop) { + idtemplate->flag |= UI_ID_DELETE; + idtemplate->unlinkop= unlinkop; + } BLI_addtail(&layout->templates, idtemplate); } -void uiTemplateSetColor(uiLayout *layout, int color) -{ - uiTemplate *template= layout->templates.last; - - if(template) - template->color= color; -} - void uiTemplateSlot(uiLayout *layout, int slot) { uiTemplate *template= layout->templates.last; @@ -1078,35 +1534,88 @@ void uiTemplateSlot(uiLayout *layout, int slot) /********************** Layout *******************/ +static void ui_layout_init_items(const bContext *C, uiLayout *layout) +{ + ARegion *ar= CTX_wm_region(C); + MenuType *mt; + uiTemplate *template; + uiItem *item; + uiItemMenu *menuitem; + uiItemRNA *rnaitem; + uiItemOp *opitem; + PropertyType type; + + for(template=layout->templates.first; template; template=template->next) { + for(item=template->items.first; item; item=item->next) { + /* initialize buttons names */ + if(item->type == ITEM_MENU) { + menuitem= (uiItemMenu*)item; + + if(menuitem->menuname) { + for(mt=ar->type->menutypes.first; mt; mt=mt->next) { + if(strcmp(menuitem->menuname, mt->idname) == 0) { + menuitem->arg= mt; + ui_item_name(item, mt->label); + break; + } + } + } + } + else if(item->type == ITEM_RNA_PROPERTY) { + rnaitem= (uiItemRNA*)item; + ui_item_name(item, (char*)RNA_property_ui_name(rnaitem->prop)); + } + else if(item->type == ITEM_OPERATOR) { + opitem= (uiItemOp*)item; + ui_item_name(item, opitem->ot->name); + } + + ui_item_name(item, ""); + + /* initialize icons */ + if(layout->type == UI_LAYOUT_MENU) { + if(item->type == ITEM_RNA_PROPERTY) { + rnaitem= (uiItemRNA*)item; + type= RNA_property_type(rnaitem->prop); + + if(type == PROP_BOOLEAN) + item->icon= (RNA_property_boolean_get(&rnaitem->ptr, rnaitem->prop))? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; + else if(type == PROP_ENUM && rnaitem->index == RNA_ENUM_VALUE) + item->icon= (RNA_property_enum_get(&rnaitem->ptr, rnaitem->prop) == rnaitem->value)? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; + } + + if(!item->icon) + item->icon= ICON_BLANK1; + } + } + } +} + static void ui_layout_templates(const bContext *C, uiBlock *block, uiLayout *layout) { uiTemplate *template; + ui_layout_init_items(C, layout); + if(layout->dir == UI_LAYOUT_HORIZONTAL) { for(template=layout->templates.first; template; template=template->next) { switch(template->type) { - case TEMPLATE_HEADER_MENUS: - ui_layout_header_menus(C, layout, block, template); + case TEMPLATE_HEADER: + ui_layout_header(C, layout, block, template); break; case TEMPLATE_HEADER_ID: ui_layout_header_id(C, layout, block, template); break; - case TEMPLATE_HEADER_BUTTONS: default: ui_layout_header_buttons(layout, block, template); break; } - } - layout->x += TEMPLATE_SPACE; + layout->x += layout->template_space; + } } else { for(template=layout->templates.first; template; template=template->next) { - if(template->color) { - // XXX oldcolor= uiBlockGetCol(block); - // XXX uiBlockSetCol(block, template->color); - } - switch(template->type) { case TEMPLATE_ROW: ui_layout_row(layout, block, template); @@ -1126,16 +1635,16 @@ static void ui_layout_templates(const bContext *C, uiBlock *block, uiLayout *lay break; } - // XXX if(template->color) - // XXX uiBlockSetCol(block, oldcolor); - - layout->y -= TEMPLATE_SPACE; + layout->y -= layout->template_space; } } } void ui_layout_end(const bContext *C, uiBlock *block, uiLayout *layout, int *x, int *y) { + if(layout->handlefunc) + uiBlockSetButmFunc(block, layout->handlefunc, layout->argv); + ui_layout_templates(C, block, layout); if(x) *x= layout->x; @@ -1154,16 +1663,23 @@ void ui_layout_free(uiLayout *layout) MEM_freeN(layout); } -uiLayout *uiLayoutBegin(int dir, int x, int y, int size, int em) +uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em) { uiLayout *layout; layout= MEM_callocN(sizeof(uiLayout), "uiLayout"); layout->opcontext= WM_OP_INVOKE_REGION_WIN; layout->dir= dir; + layout->type= type; layout->x= x; layout->y= y; + layout->column_space= 5; + layout->template_space= 5; + layout->box_space= 5; + layout->button_space_x= 5; + layout->button_space_y= 2; + if(dir == UI_LAYOUT_HORIZONTAL) { layout->h= size; layout->emh= em*EM_UNIT_Y; @@ -1181,6 +1697,12 @@ void uiLayoutContext(uiLayout *layout, int opcontext) layout->opcontext= opcontext; } +void uiLayoutFunc(uiLayout *layout, uiMenuHandleFunc handlefunc, void *argv) +{ + layout->handlefunc= handlefunc; + layout->argv= argv; +} + void uiLayoutEnd(const bContext *C, uiBlock *block, uiLayout *layout, int *x, int *y) { ui_layout_end(C, block, layout, x, y); @@ -1229,7 +1751,7 @@ void uiRegionPanelLayout(const bContext *C, ARegion *ar, int vertical, char *con } panel->type= pt; - panel->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, PNL_SAFETY, 0, w-2*PNL_SAFETY, em); + panel->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, PNL_SAFETY, 0, w-2*PNL_SAFETY, em); pt->draw(C, panel); @@ -1286,7 +1808,7 @@ void uiRegionHeaderLayout(const bContext *C, ARegion *ar) /* draw all headers types */ for(ht= ar->type->headertypes.first; ht; ht= ht->next) { block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS); - layout= uiLayoutBegin(UI_LAYOUT_HORIZONTAL, xco, yco, 24, 1); + layout= uiLayoutBegin(UI_LAYOUT_HORIZONTAL, UI_LAYOUT_HEADER, xco, yco, 24, 1); if(ht->draw) { header.type= ht; diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c index 181513b58bc..7bc7e2e3c19 100644 --- a/source/blender/editors/interface/interface_regions.c +++ b/source/blender/editors/interface/interface_regions.c @@ -1643,30 +1643,14 @@ static uiBlock *ui_block_func_MENU_ITEM(bContext *C, uiPopupBlockHandle *handle, #define MENU_ITEM_LEVEL_OPNAME_ENUM 31 #define MENU_ITEM_LEVEL_RNA_ENUM 32 -struct uiMenuItem { - struct uiMenuItem *next, *prev; - - int type; +struct uiPopupMenu { + uiLayout *layout; int icon; char name[MAX_MENU_STR]; - - char *opname; /* static string */ - char *propname; /* static string */ - - int retval, enumval, boolval, intval; - float fltval; - char *strval; - int opcontext; - uiMenuHandleFunc eventfunc; - void *argv; - uiMenuCreateFunc newlevel; - PointerRNA rnapoin; - - ListBase items; }; typedef struct uiMenuInfo { - uiMenuItem *head; + uiPopupMenu *pup; int mx, my, popup, slideout; int startx, starty; } uiMenuInfo; @@ -1707,201 +1691,49 @@ typedef struct MenuItemLevel { PointerRNA rnapoin; } MenuItemLevel; -/* make a menu level from enum properties */ -static void menu_item_enum_opname_menu(bContext *C, uiMenuItem *head, void *arg) -{ - MenuItemLevel *lvl= (MenuItemLevel*)(((uiBut*)arg)->func_argN); - - head->opcontext= lvl->opcontext; - uiMenuItemsEnumO(head, lvl->opname, lvl->propname); -} - -static void menu_item_enum_rna_menu(bContext *C, uiMenuItem *head, void *arg) -{ - MenuItemLevel *lvl= (MenuItemLevel*)(((uiBut*)arg)->func_argN); - - head->opcontext= lvl->opcontext; - uiMenuItemsEnumR(head, &lvl->rnapoin, lvl->propname); -} - static uiBlock *ui_block_func_MENU_ITEM(bContext *C, uiPopupBlockHandle *handle, void *arg_info) { uiBlock *block; uiBut *but; uiMenuInfo *info= arg_info; - uiMenuItem *head, *item; - MenuItemLevel *lvl; + uiPopupMenu *pup; ScrArea *sa; ARegion *ar; static int counter= 0; - int width, height, icon; - int startx, starty, x1, y1; char str[16]; - head= info->head; - height= 0; + pup= info->pup; /* block stuff first, need to know the font */ sprintf(str, "tb %d", counter++); block= uiBeginBlock(C, handle->region, str, UI_EMBOSSP); - uiBlockSetButmFunc(block, head->eventfunc, head->argv); block->direction= UI_DOWN; - width= 50; // fixed with, uiMenuPopupBoundsBlock will compute actual width - - for(item= head->items.first; item; item= item->next) { - if(0) height+= PUP_LABELH; // XXX sepr line - else height+= MENU_BUTTON_HEIGHT; - } - - startx= 0; - starty= 0; - /* here we go! */ - if(head->name[0]) { + if(pup->name[0]) { char titlestr[256]; - if(head->icon) { - width+= 20; - sprintf(titlestr, " %s", head->name); - uiDefIconTextBut(block, LABEL, 0, head->icon, titlestr, startx, (short)(starty+height), width, MENU_BUTTON_HEIGHT, NULL, 0.0, 0.0, 0, 0, ""); + if(pup->icon) { + sprintf(titlestr, " %s", pup->name); + uiDefIconTextBut(block, LABEL, 0, pup->icon, titlestr, 0, 0, 200, MENU_BUTTON_HEIGHT, NULL, 0.0, 0.0, 0, 0, ""); } else { - but= uiDefBut(block, LABEL, 0, head->name, startx, (short)(starty+height), width, MENU_BUTTON_HEIGHT, NULL, 0.0, 0.0, 0, 0, ""); + but= uiDefBut(block, LABEL, 0, pup->name, 0, 0, 200, MENU_BUTTON_HEIGHT, NULL, 0.0, 0.0, 0, 0, ""); but->flag= UI_TEXT_LEFT; } //uiDefBut(block, SEPR, 0, "", startx, (short)(starty+height)-MENU_SEPR_HEIGHT, width, MENU_SEPR_HEIGHT, NULL, 0.0, 0.0, 0, 0, ""); } - x1= startx; - y1= starty + height - MENU_BUTTON_HEIGHT; // - MENU_SEPR_HEIGHT; - - for(item= head->items.first; item; item= item->next) { - - if(item->type==MENU_ITEM_LEVEL) { - uiDefIconTextMenuBut(block, item->newlevel, NULL, ICON_RIGHTARROW_THIN, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, NULL); - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_LEVEL_OPNAME_ENUM) { - but= uiDefIconTextMenuBut(block, menu_item_enum_opname_menu, NULL, ICON_RIGHTARROW_THIN, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, NULL); - - /* XXX warning, abuse of func_arg! */ - lvl= MEM_callocN(sizeof(MenuItemLevel), "MenuItemLevel"); - lvl->opname= item->opname; - lvl->propname= item->propname; - lvl->opcontext= item->opcontext; - - but->poin= (char*)but; - but->func_argN= lvl; - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_LEVEL_RNA_ENUM) { - but= uiDefIconTextMenuBut(block, menu_item_enum_rna_menu, NULL, ICON_RIGHTARROW_THIN, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, NULL); - - /* XXX warning, abuse of func_arg! */ - lvl= MEM_callocN(sizeof(MenuItemLevel), "MenuItemLevel"); - lvl->rnapoin= item->rnapoin; - lvl->propname= item->propname; - lvl->opcontext= item->opcontext; - - but->poin= (char*)but; - but->func_argN= lvl; - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_OPNAME_BOOL) { - but= uiDefIconTextButO(block, BUTM, item->opname, item->opcontext, item->icon, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, ""); - RNA_boolean_set(uiButGetOperatorPtrRNA(but), item->propname, item->boolval); - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_OPNAME_ENUM) { - const char *name; - char bname[64]; - - /* If no name is given, use the enum name */ - if (item->name[0] == '\0') - name= ui_menu_enumpropname(item->opname, item->propname, item->enumval); - else - name= item->name; - - BLI_strncpy(bname, name, sizeof(bname)); - - but= uiDefIconTextButO(block, BUTM, item->opname, item->opcontext, item->icon, bname, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, ""); - RNA_enum_set(uiButGetOperatorPtrRNA(but), item->propname, item->enumval); - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_OPNAME_INT) { - but= uiDefIconTextButO(block, BUTM, item->opname, head->opcontext, item->icon, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, ""); - RNA_int_set(uiButGetOperatorPtrRNA(but), item->propname, item->intval); - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_OPNAME_FLOAT) { - but= uiDefIconTextButO(block, BUTM, item->opname, item->opcontext, item->icon, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, ""); - RNA_float_set(uiButGetOperatorPtrRNA(but), item->propname, item->fltval); - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_OPNAME_STRING) { - but= uiDefIconTextButO(block, BUTM, item->opname, item->opcontext, item->icon, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, ""); - RNA_string_set(uiButGetOperatorPtrRNA(but), item->propname, item->strval); - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_OPNAME) { - uiDefIconTextButO(block, BUTM, item->opname, item->opcontext, item->icon, NULL, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, NULL); - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_RNA_BOOL) { - PropertyRNA *prop= RNA_struct_find_property(&item->rnapoin, item->propname); - - if(prop && RNA_property_type(prop) == PROP_BOOLEAN) { - icon= (RNA_property_boolean_get(&item->rnapoin, prop))? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; - uiDefIconTextButR(block, TOG, 0, icon, NULL, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, &item->rnapoin, item->propname, 0, 0, 0, 0, 0, NULL); - } - else { - uiBlockSetButLock(block, 1, ""); - uiDefIconTextBut(block, BUT, 0, ICON_BLANK1, item->propname, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, NULL, 0.0, 0.0, 0, 0, ""); - uiBlockClearButLock(block); - } - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type==MENU_ITEM_RNA_ENUM) { - PropertyRNA *prop= RNA_struct_find_property(&item->rnapoin, item->propname); - - if(prop && RNA_property_type(prop) == PROP_ENUM) { - icon= (RNA_property_enum_get(&item->rnapoin, prop) == item->enumval)? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT; - uiDefIconTextButR(block, ROW, 0, icon, NULL, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, &item->rnapoin, item->propname, 0, 0, item->enumval, 0, 0, NULL); - } - else { - uiBlockSetButLock(block, 1, ""); - uiDefIconTextBut(block, BUT, 0, ICON_BLANK1, item->propname, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, NULL, 0.0, 0.0, 0, 0, ""); - uiBlockClearButLock(block); - } - - y1 -= MENU_BUTTON_HEIGHT; - } - else if(item->type == MENU_ITEM_ITEM) { - uiDefIconTextButF(block, BUTM, B_NOP, item->icon, item->name, x1, y1, width+16, MENU_BUTTON_HEIGHT-1, &handle->retvalue, 0.0, 0.0, 0, item->retval, ""); - y1 -= MENU_BUTTON_HEIGHT; - } - else { - uiDefBut(block, SEPR, 0, "", x1, y1, width+16, MENU_SEPR_HEIGHT-1, NULL, 0.0, 0.0, 0, 0, ""); - y1 -= MENU_SEPR_HEIGHT; - } - } + block->handle= handle; + uiLayoutEnd(C, block, pup->layout, NULL, NULL); if(info->popup) { uiBlockSetFlag(block, UI_BLOCK_LOOP|UI_BLOCK_REDRAW|UI_BLOCK_NUMSELECT|UI_BLOCK_RET_1); uiBlockSetDirection(block, UI_DOWN); /* here we set an offset for the mouse position */ - uiMenuPopupBoundsBlock(block, 1, 0, -height+MENU_BUTTON_HEIGHT/2); + uiMenuPopupBoundsBlock(block, 1, 0, MENU_BUTTON_HEIGHT/2); } else { /* for a header menu we set the direction automatic */ @@ -1932,262 +1764,51 @@ static uiBlock *ui_block_func_MENU_ITEM(bContext *C, uiPopupBlockHandle *handle, uiPopupBlockHandle *ui_popup_menu_create(bContext *C, ARegion *butregion, uiBut *but, uiMenuCreateFunc menu_func, void *arg) { uiPopupBlockHandle *handle; - uiMenuItem *head; + uiPopupMenu *pup; uiMenuInfo info; - head= MEM_callocN(sizeof(uiMenuItem), "menu dummy"); - head->opcontext= WM_OP_INVOKE_REGION_WIN; + pup= MEM_callocN(sizeof(uiPopupMenu), "menu dummy"); + pup->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_MENU, 0, 0, 200, 0); + uiLayoutContext(pup->layout, WM_OP_INVOKE_REGION_WIN); + uiLayoutColumn(pup->layout); - menu_func(C, head, arg); + menu_func(C, pup->layout, arg); memset(&info, 0, sizeof(info)); - info.head= head; + info.pup= pup; info.slideout= (but && (but->block->flag & UI_BLOCK_LOOP)); handle= ui_popup_block_create(C, butregion, but, NULL, ui_block_func_MENU_ITEM, &info); - BLI_freelistN(&head->items); - MEM_freeN(head); + MEM_freeN(pup); return handle; } /*************************** Menu Creating API **************************/ -/* internal add func */ -static uiMenuItem *ui_menu_add_item(uiMenuItem *head, const char *name, int icon, int argval) -{ - uiMenuItem *item= MEM_callocN(sizeof(uiMenuItem), "menu item"); - - BLI_strncpy(item->name, name, MAX_MENU_STR); - if(icon) - item->icon= icon; - else - item->icon= ICON_BLANK1; - item->retval= argval; - - item->opcontext= head->opcontext; - - BLI_addtail(&head->items, item); - - return item; -} - -/* set callback for regular items */ -void uiMenuFunc(uiMenuItem *head, void (*eventfunc)(bContext *, void *, int), void *argv) -{ - head->eventfunc= eventfunc; - head->argv= argv; -} - -/* optionally set different context for all items in one level */ -void uiMenuContext(uiMenuItem *head, int opcontext) -{ - head->opcontext= opcontext; -} - - -/* regular item, with retval */ -void uiMenuItemVal(uiMenuItem *head, const char *name, int icon, int argval) -{ - uiMenuItem *item= ui_menu_add_item(head, name, icon, argval); - - item->type = MENU_ITEM_ITEM; -} - -/* regular operator item */ -void uiMenuItemO(uiMenuItem *head, int icon, char *opname) -{ - uiMenuItem *item= ui_menu_add_item(head, "", icon, 0); - - item->opname= opname; // static! - item->type = MENU_ITEM_OPNAME; -} - -/* single operator item with property */ -void uiMenuItemEnumO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, int value) -{ - uiMenuItem *item= ui_menu_add_item(head, name, icon, 0); - - item->opname= opname; // static! - item->propname= propname; // static! - item->enumval= value; - item->type = MENU_ITEM_OPNAME_ENUM; -} - -/* single operator item with property */ -void uiMenuItemIntO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, int value) -{ - uiMenuItem *item= ui_menu_add_item(head, name, icon, 0); - - item->opname= opname; // static! - item->propname= propname; // static! - item->intval= value; - item->type = MENU_ITEM_OPNAME_INT; -} - -/* single operator item with property */ -void uiMenuItemFloatO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, float value) -{ - uiMenuItem *item= ui_menu_add_item(head, name, icon, 0); - - item->opname= opname; // static! - item->propname= propname; // static! - item->fltval= value; - item->type = MENU_ITEM_OPNAME_FLOAT; -} - -/* single operator item with property */ -void uiMenuItemBooleanO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, int value) -{ - uiMenuItem *item= ui_menu_add_item(head, name, icon, 0); - - item->opname= opname; // static! - item->propname= propname; // static! - item->boolval= value; - item->type = MENU_ITEM_OPNAME_BOOL; -} - -/* single operator item with property */ -void uiMenuItemStringO(uiMenuItem *head, const char *name, int icon, char *opname, char *propname, char *value) -{ - uiMenuItem *item= ui_menu_add_item(head, name, icon, 0); - - item->opname= opname; // static! - item->propname= propname; // static! - item->strval= value; - item->type = MENU_ITEM_OPNAME_STRING; -} - -/* add all operator items with property */ -void uiMenuItemsEnumO(uiMenuItem *head, char *opname, char *propname) -{ - wmOperatorType *ot= WM_operatortype_find(opname); - PointerRNA ptr; - PropertyRNA *prop; - - if(!ot || !ot->srna) - return; - - RNA_pointer_create(NULL, ot->srna, NULL, &ptr); - prop= RNA_struct_find_property(&ptr, propname); - - if(prop && RNA_property_type(prop) == PROP_ENUM) { - const EnumPropertyItem *item; - int totitem, i; - - RNA_property_enum_items(&ptr, prop, &item, &totitem); - - for (i=0; ipropname= propname; // static! - item->rnapoin= *ptr; - item->type = MENU_ITEM_RNA_BOOL; -} - -void uiMenuItemEnumR(uiMenuItem *head, PointerRNA *ptr, char *propname, int value) -{ - uiMenuItem *item= ui_menu_add_item(head, "", 0, 0); - - item->propname= propname; // static! - item->rnapoin= *ptr; - item->enumval= value; - item->type = MENU_ITEM_RNA_ENUM; -} - -/* add all rna items with property */ -void uiMenuItemsEnumR(uiMenuItem *head, PointerRNA *ptr, char *propname) -{ - PropertyRNA *prop; - - prop= RNA_struct_find_property(ptr, propname); - - if(prop && RNA_property_type(prop) == PROP_ENUM) { - const EnumPropertyItem *item; - int totitem, i; - - RNA_property_enum_items(ptr, prop, &item, &totitem); - - for (i=0; itype = MENU_ITEM_LEVEL; - item->newlevel= newlevel; -} - -/* make a new level from enum properties */ -void uiMenuLevelEnumO(uiMenuItem *head, char *opname, char *propname) -{ - uiMenuItem *item= ui_menu_add_item(head, "", 0, 0); - wmOperatorType *ot; - - item->type = MENU_ITEM_LEVEL_OPNAME_ENUM; - ot= WM_operatortype_find(opname); - if(ot) - BLI_strncpy(item->name, ot->name, MAX_MENU_STR); - - item->opname= opname; // static! - item->propname= propname; // static! -} - -/* make a new level from enum properties */ -void uiMenuLevelEnumR(uiMenuItem *head, PointerRNA *ptr, char *propname) -{ - uiMenuItem *item= ui_menu_add_item(head, "", 0, 0); - PropertyRNA *prop; - - item->type = MENU_ITEM_LEVEL_RNA_ENUM; - prop= RNA_struct_find_property(ptr, propname); - if(prop) - BLI_strncpy(item->name, RNA_property_ui_name(prop), MAX_MENU_STR); - - item->rnapoin= *ptr; - item->propname= propname; // static! -} - -/* separator */ -void uiMenuSeparator(uiMenuItem *head) -{ - uiMenuItem *item= ui_menu_add_item(head, "", 0, 0); - - item->type = MENU_ITEM_SEPARATOR; -} /*************************** Popup Menu API **************************/ /* only return handler, and set optional title */ -uiMenuItem *uiPupMenuBegin(const char *title, int icon) +uiPopupMenu *uiPupMenuBegin(const char *title, int icon) { - uiMenuItem *item= MEM_callocN(sizeof(uiMenuItem), "menu start"); + uiPopupMenu *pup= MEM_callocN(sizeof(uiPopupMenu), "menu start"); - item->type = MENU_ITEM_TITLE; - item->opcontext= WM_OP_EXEC_REGION_WIN; - item->icon= icon; + pup->icon= icon; + pup->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_MENU, 0, 0, 200, 0); + uiLayoutContext(pup->layout, WM_OP_EXEC_REGION_WIN); + uiLayoutColumn(pup->layout); /* NULL is no title */ if(title) - BLI_strncpy(item->name, title, MAX_MENU_STR); + BLI_strncpy(pup->name, title, MAX_MENU_STR); - return item; + return pup; } /* set the whole structure to work */ -void uiPupMenuEnd(bContext *C, uiMenuItem *head) +void uiPupMenuEnd(bContext *C, uiPopupMenu *pup) { wmWindow *window= CTX_wm_window(C); uiMenuInfo info; @@ -2197,7 +1818,7 @@ void uiPupMenuEnd(bContext *C, uiMenuItem *head) info.popup= 1; info.mx= window->eventstate->x; info.my= window->eventstate->y; - info.head= head; + info.pup= pup; menu= ui_popup_block_create(C, NULL, NULL, NULL, ui_block_func_MENU_ITEM, &info); menu->popup= 1; @@ -2205,8 +1826,12 @@ void uiPupMenuEnd(bContext *C, uiMenuItem *head) UI_add_popup_handlers(C, &window->handlers, menu); WM_event_add_mousemove(C); - BLI_freelistN(&head->items); - MEM_freeN(head); + MEM_freeN(pup); +} + +uiLayout *uiPupMenuLayout(uiPopupMenu *pup) +{ + return pup->layout; } /* ************** standard pupmenus *************** */ diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 5ef1e68bd59..3bb7581b16c 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -297,7 +297,7 @@ int uiDefAutoButsRNA(const bContext *C, uiBlock *block, PointerRNA *ptr) char *name; int x= 0, y= 0; - layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, x, y, DEF_BUT_WIDTH*2, 20); + layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, x, y, DEF_BUT_WIDTH*2, 20); uiLayoutColumn(layout); uiItemL(layout, (char*)RNA_struct_ui_name(ptr->type), 0); @@ -317,7 +317,7 @@ int uiDefAutoButsRNA(const bContext *C, uiBlock *block, PointerRNA *ptr) uiLayoutColumn(uiLayoutSub(layout, 0)); uiItemL(uiLayoutSub(layout, 0), name, 0); uiLayoutColumn(uiLayoutSub(layout, 1)); - uiItemFullR(uiLayoutSub(layout, 1), "", 0, ptr, prop, -1, 0); + uiItemFullR(uiLayoutSub(layout, 1), "", 0, ptr, prop, -1, 0, 0); } RNA_property_collection_end(&iter); @@ -506,18 +506,7 @@ int uiDefIDPoinButs(uiBlock *block, Main *bmain, ID *parid, ID *id, int id_code, uiBlockSetButLock(block, id->lib!=0, "Can't edit external libdata"); /* name button */ - if(GS(id->name)==ID_SCE) - strcpy(str1, "SCE:"); - else if(GS(id->name)==ID_SCE) - strcpy(str1, "SCR:"); - else if(GS(id->name)==ID_MA && ((Material*)id)->use_nodes) - strcpy(str1, "NT:"); - else { - str1[0]= id->name[0]; - str1[1]= id->name[1]; - str1[2]= ':'; - str1[3]= 0; - } + text_idbutton(id, str1); if(GS(id->name)==ID_IP) len= 110; else if((y) && (GS(id->name)==ID_AC)) len= 100; // comes from button panel (poselib) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index f3868b1f01c..90b26d0f425 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -6587,11 +6587,13 @@ void MESH_OT_subdivide_smooth(wmOperatorType *ot) static int subdivs_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("Subdivision Type", 0); - uiMenuItemsEnumO(head, "MESH_OT_subdivs", "type"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Subdivision Type", 0); + layout= uiPupMenuLayout(pup); + uiItemsEnumO(layout, "MESH_OT_subdivs", "type"); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index eeba0ad22ae..1a3b3e5e031 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -462,14 +462,16 @@ static int object_add_curve_exec(bContext *C, wmOperator *op) static int object_add_curve_invoke(bContext *C, wmOperator *op, wmEvent *event) { Object *obedit= CTX_data_edit_object(C); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin(op->type->name, 0); + pup= uiPupMenuBegin(op->type->name, 0); + layout= uiPupMenuLayout(pup); if(!obedit || obedit->type == OB_CURVE) - uiMenuItemsEnumO(head, op->type->idname, "type"); + uiItemsEnumO(layout, op->type->idname, "type"); else - uiMenuItemsEnumO(head, "OBJECT_OT_surface_add", "type"); - uiPupMenuEnd(C, head); + uiItemsEnumO(layout, "OBJECT_OT_surface_add", "type"); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } @@ -632,20 +634,21 @@ void OBJECT_OT_armature_add(wmOperatorType *ot) static int object_primitive_add_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head= uiPupMenuBegin("Add Object", 0); + uiPopupMenu *pup= uiPupMenuBegin("Add Object", 0); + uiLayout *layout= uiPupMenuLayout(pup); - uiMenuLevelEnumO(head, "OBJECT_OT_mesh_add", "type"); - uiMenuLevelEnumO(head, "OBJECT_OT_curve_add", "type"); - uiMenuLevelEnumO(head, "OBJECT_OT_surface_add", "type"); - uiMenuItemO(head, 0, "OBJECT_OT_text_add"); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_object_add", "type", OB_MBALL); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_object_add", "type", OB_CAMERA); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_object_add", "type", OB_LAMP); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_object_add", "type", OB_EMPTY); - uiMenuItemO(head, 0, "OBJECT_OT_armature_add"); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_object_add", "type", OB_LATTICE); + uiItemLevelEnumO(layout, NULL, 0, "OBJECT_OT_mesh_add", "type"); + uiItemLevelEnumO(layout, NULL, 0, "OBJECT_OT_curve_add", "type"); + uiItemLevelEnumO(layout, NULL, 0, "OBJECT_OT_surface_add", "type"); + uiItemO(layout, NULL, 0, "OBJECT_OT_text_add"); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_MBALL); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_CAMERA); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_LAMP); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_EMPTY); + uiItemO(layout, NULL, 0, "OBJECT_OT_armature_add"); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_LATTICE); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); /* this operator is only for a menu, not used further */ return OPERATOR_CANCELLED; @@ -2622,26 +2625,27 @@ static int parent_set_exec(bContext *C, wmOperator *op) static int parent_set_invoke(bContext *C, wmOperator *op, wmEvent *event) { Object *ob= CTX_data_active_object(C); - uiMenuItem *head= uiPupMenuBegin("Set Parent To", 0); + uiPopupMenu *pup= uiPupMenuBegin("Set Parent To", 0); + uiLayout *layout= uiPupMenuLayout(pup); - uiMenuContext(head, WM_OP_EXEC_DEFAULT); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_OBJECT); + uiLayoutContext(layout, WM_OP_EXEC_DEFAULT); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_OBJECT); /* ob becomes parent, make the associated menus */ if(ob->type==OB_ARMATURE) { - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_ARMATURE); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_BONE); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_ARMATURE); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_BONE); } else if(ob->type==OB_CURVE) { - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_CURVE); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_FOLLOW); - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_PATH_CONST); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_CURVE); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_FOLLOW); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_PATH_CONST); } else if(ob->type == OB_LATTICE) { - uiMenuItemEnumO(head, "", 0, "OBJECT_OT_parent_set", "type", PAR_LATTICE); + uiItemEnumO(layout, NULL, 0, "OBJECT_OT_parent_set", "type", PAR_LATTICE); } - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/physics/editparticle.c b/source/blender/editors/physics/editparticle.c index 96f3ad2f8df..0d58a0bfdcd 100644 --- a/source/blender/editors/physics/editparticle.c +++ b/source/blender/editors/physics/editparticle.c @@ -3839,19 +3839,21 @@ void PE_change_act_psys(Scene *scene, Object *ob, ParticleSystem *psys) static int specials_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) { Scene *scene= CTX_data_scene(C); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("Specials", 0); + pup= uiPupMenuBegin("Specials", 0); + layout= uiPupMenuLayout(pup); - uiMenuItemO(head, 0, "PARTICLE_OT_rekey"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_rekey"); if(scene->selectmode & SCE_SELECT_POINT) { - uiMenuItemO(head, 0, "PARTICLE_OT_subdivide"); - uiMenuItemO(head, 0, "PARTICLE_OT_select_first"); - uiMenuItemO(head, 0, "PARTICLE_OT_select_last"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_subdivide"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_first"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_last"); } - uiMenuItemO(head, 0, "PARTICLE_OT_remove_doubles"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_remove_doubles"); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index bf57e2e7d52..ce7022d8176 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -1573,19 +1573,21 @@ static int repeat_history_invoke(bContext *C, wmOperator *op, wmEvent *event) { wmWindowManager *wm= CTX_wm_manager(C); wmOperator *lastop; - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int items, i; items= BLI_countlist(&wm->operators); if(items==0) return OPERATOR_CANCELLED; - head= uiPupMenuBegin(op->type->name, 0); + pup= uiPupMenuBegin(op->type->name, 0); + layout= uiPupMenuLayout(pup); for (i=items-1, lastop= wm->operators.last; lastop; lastop= lastop->prev, i--) - uiMenuItemIntO(head, lastop->type->name, 0, op->type->idname, "index", i); + uiItemIntO(layout, lastop->type->name, 0, op->type->idname, "index", i); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } @@ -1813,27 +1815,28 @@ static void testfunc(bContext *C, void *argv, int arg) printf("arg %d\n", arg); } -static void newlevel1(bContext *C, uiMenuItem *head, void *arg) +static void newlevel1(bContext *C, uiLayout *layout, void *arg) { - uiMenuFunc(head, testfunc, NULL); + uiLayoutFunc(layout, testfunc, NULL); - uiMenuItemVal(head, "First", ICON_PROP_ON, 1); - uiMenuItemVal(head, "Second", ICON_PROP_CON, 2); - uiMenuItemVal(head, "Third", ICON_SMOOTHCURVE, 3); - uiMenuItemVal(head, "Fourth", ICON_SHARPCURVE, 4); + uiItemV(layout, "First", ICON_PROP_ON, 1); + uiItemV(layout, "Second", ICON_PROP_CON, 2); + uiItemV(layout, "Third", ICON_SMOOTHCURVE, 3); + uiItemV(layout, "Fourth", ICON_SHARPCURVE, 4); } static int testing123(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head= uiPupMenuBegin("Hello world", 0); + uiPopupMenu *pup= uiPupMenuBegin("Hello world", 0); + uiLayout *layout= uiPupMenuLayout(pup); - uiMenuContext(head, WM_OP_EXEC_DEFAULT); - uiMenuItemO(head, ICON_PROP_ON, "SCREEN_OT_region_flip"); - uiMenuItemO(head, ICON_PROP_CON, "SCREEN_OT_screen_full_area"); - uiMenuItemO(head, ICON_SMOOTHCURVE, "SCREEN_OT_region_foursplit"); - uiMenuLevel(head, "Submenu", newlevel1); + uiLayoutContext(layout, WM_OP_EXEC_DEFAULT); + uiItemO(layout, NULL, ICON_PROP_ON, "SCREEN_OT_region_flip"); + uiItemO(layout, NULL, ICON_PROP_CON, "SCREEN_OT_screen_full_area"); + uiItemO(layout, NULL, ICON_SMOOTHCURVE, "SCREEN_OT_region_foursplit"); + uiItemLevel(layout, "Submenu", 0, newlevel1); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); /* this operator is only for a menu, not used further */ return OPERATOR_CANCELLED; diff --git a/source/blender/editors/space_buttons/buttons_header.c b/source/blender/editors/space_buttons/buttons_header.c index 53fb4c388d3..5ca8330694e 100644 --- a/source/blender/editors/space_buttons/buttons_header.c +++ b/source/blender/editors/space_buttons/buttons_header.c @@ -29,6 +29,7 @@ #include #include +#include "DNA_object_types.h" #include "DNA_space_types.h" #include "DNA_scene_types.h" #include "DNA_screen_types.h" @@ -40,6 +41,7 @@ #include "BKE_context.h" #include "BKE_screen.h" +#include "BKE_utildefines.h" #include "ED_screen.h" #include "ED_types.h" @@ -133,8 +135,9 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) { ScrArea *sa= CTX_wm_area(C); SpaceButs *sbuts= (SpaceButs*)CTX_wm_space_data(C); + Object *ob= CTX_data_active_object(C); uiBlock *block; - int xco, yco= 3; + int xco, yco= 3, dataicon= ICON_OBJECT_DATA; block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS); uiBlockSetHandleFunc(block, do_buttons_buttons, NULL); @@ -150,6 +153,22 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) xco+=XIC+xmax; } + + if(ob) { + switch(ob->type) { + case OB_EMPTY: dataicon= ICON_OUTLINER_OB_EMPTY; break; + case OB_MESH: dataicon= ICON_OUTLINER_OB_MESH; break; + case OB_CURVE: dataicon= ICON_OUTLINER_OB_CURVE; break; + case OB_SURF: dataicon= ICON_OUTLINER_OB_SURFACE; break; + case OB_FONT: dataicon= ICON_OUTLINER_OB_FONT; break; + case OB_MBALL: dataicon= ICON_OUTLINER_OB_META; break; + case OB_LAMP: dataicon= ICON_OUTLINER_OB_LAMP; break; + case OB_CAMERA: dataicon= ICON_OUTLINER_OB_CAMERA; break; + case OB_LATTICE: dataicon= ICON_OUTLINER_OB_LATTICE; break; + case OB_ARMATURE: dataicon= ICON_OUTLINER_OB_ARMATURE; break; + default: break; + } + } uiBlockSetEmboss(block, UI_EMBOSS); @@ -157,10 +176,12 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_SCENE, xco, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_SCENE, 0, 0, "Scene"); uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_WORLD, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_WORLD, 0, 0, "World"); uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_OBJECT_DATA, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_OBJECT, 0, 0, "Object"); - uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_EDIT, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_GAME, 0, 0, "Object Data"); - uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_MATERIAL, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_MATERIAL, 0, 0, "Material"); + uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, dataicon, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_DATA, 0, 0, "Object Data"); + if(ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) + uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_MATERIAL, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_MATERIAL, 0, 0, "Material"); uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_TEXTURE, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_TEXTURE, 0, 0, "Texture"); - uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PARTICLES, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PARTICLE, 0, 0, "Particles"); + if(ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) + uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PARTICLES, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PARTICLE, 0, 0, "Particles"); uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PHYSICS, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PHYSICS, 0, 0, "Physics"); xco+= XIC; diff --git a/source/blender/editors/space_image/image_header.c b/source/blender/editors/space_image/image_header.c index 288fc76d8e4..7e009dfc479 100644 --- a/source/blender/editors/space_image/image_header.c +++ b/source/blender/editors/space_image/image_header.c @@ -86,21 +86,21 @@ #define B_SIMA_RECORD 8 #define B_SIMA_PLAY 9 -static void image_view_viewnavmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_view_viewnavmenu(bContext *C, uiLayout *layout, void *arg_unused) { int a; - uiMenuItemO(head, 0, "IMAGE_OT_view_zoom_in"); - uiMenuItemO(head, 0, "IMAGE_OT_view_zoom_out"); + uiItemO(layout, NULL, 0, "IMAGE_OT_view_zoom_in"); + uiItemO(layout, NULL, 0, "IMAGE_OT_view_zoom_out"); - uiMenuSeparator(head); + uiItemS(layout); for(a=0; a<7; a++) { const int ratios[7][2] = {{1, 8}, {1, 4}, {1, 2}, {1, 1}, {2, 1}, {4, 1}, {8, 1}}; char namestr[128]; sprintf(namestr, "Zoom %d:%d", ratios[a][0], ratios[a][1]); - uiMenuItemFloatO(head, namestr, 0, "IMAGE_OT_view_zoom_ratio", "ratio", (float)ratios[a][0]/(float)ratios[a][1]); + uiItemFloatO(layout, namestr, 0, "IMAGE_OT_view_zoom_ratio", "ratio", (float)ratios[a][0]/(float)ratios[a][1]); } } @@ -123,7 +123,7 @@ static void do_viewmenu(bContext *C, void *arg, int event) } #endif -static void image_viewmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) { bScreen *sc= CTX_wm_screen(C); ScrArea *sa= CTX_wm_area(C); @@ -140,44 +140,44 @@ static void image_viewmenu(bContext *C, uiMenuItem *head, void *arg_unused) show_uvedit= ED_space_image_show_uvedit(sima, CTX_data_edit_object(C)); /* create menu */ - uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_view_properties_panel"); // View Properties... - uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_image_properties_panel"); // Image Properties...|N - uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_realtime_properties_panel"); // Real-time properties... - if(show_paint) uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_paint_panel"); // Paint Tool...|C - uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_curves_panel"); // Curves Tool... - if(show_render) uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_compositing_preview_panel"); // Compositing Preview...|Shift P - uiMenuItemO(head, ICON_MENU_PANEL, "IMAGE_OT_toggle_grease_pencil_panel"); // Grease Pencil... + uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_view_properties_panel"); // View Properties... + uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_image_properties_panel"); // Image Properties...|N + uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_realtime_properties_panel"); // Real-time properties... + if(show_paint) uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_paint_panel"); // Paint Tool...|C + uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_curves_panel"); // Curves Tool... + if(show_render) uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_compositing_preview_panel"); // Compositing Preview...|Shift P + uiItemO(layout, NULL, ICON_MENU_PANEL, "IMAGE_OT_toggle_grease_pencil_panel"); // Grease Pencil... - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemBooleanR(head, &spaceptr, "update_automatically"); - // XXX if(show_uvedit) uiMenuItemBooleanR(head, &uvptr, "local_view"); // "UV Local View", Numpad / + uiItemR(layout, NULL, 0, &spaceptr, "update_automatically", 0); + // XXX if(show_uvedit) uiItemR(layout, NULL, 0, &uvptr, "local_view", 0); // "UV Local View", Numpad / - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "View Navigation", image_view_viewnavmenu); - if(show_uvedit) uiMenuItemO(head, 0, "IMAGE_OT_view_selected"); - uiMenuItemO(head, 0, "IMAGE_OT_view_all"); + uiItemLevel(layout, "View Navigation", 0, image_view_viewnavmenu); + if(show_uvedit) uiItemO(layout, NULL, 0, "IMAGE_OT_view_selected"); + uiItemO(layout, NULL, 0, "IMAGE_OT_view_all"); - if(sa->full) uiMenuItemO(head, 0, "SCREEN_OT_screen_full_area"); // "Tile Window", Ctrl UpArrow - else uiMenuItemO(head, 0, "SCREEN_OT_screen_full_area"); // "Maximize Window", Ctr DownArrow + if(sa->full) uiItemO(layout, NULL, 0, "SCREEN_OT_screen_full_area"); // "Tile Window", Ctrl UpArrow + else uiItemO(layout, NULL, 0, "SCREEN_OT_screen_full_area"); // "Maximize Window", Ctr DownArrow } -static void image_selectmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_selectmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "UV_OT_select_border"); - uiMenuItemBooleanO(head, "Border Select Pinned", 0, "UV_OT_select_border", "pinned", 1); // Border Select Pinned|Shift B + uiItemO(layout, NULL, 0, "UV_OT_select_border"); + uiItemBooleanO(layout, "Border Select Pinned", 0, "UV_OT_select_border", "pinned", 1); // Border Select Pinned|Shift B - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "UV_OT_select_all_toggle"); - uiMenuItemO(head, 0, "UV_OT_select_invert"); - uiMenuItemO(head, 0, "UV_OT_unlink_selection"); + uiItemO(layout, NULL, 0, "UV_OT_select_all_toggle"); + uiItemO(layout, NULL, 0, "UV_OT_select_invert"); + uiItemO(layout, NULL, 0, "UV_OT_unlink_selection"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "UV_OT_select_pinned"); - uiMenuItemO(head, 0, "UV_OT_select_linked"); + uiItemO(layout, NULL, 0, "UV_OT_select_pinned"); + uiItemO(layout, NULL, 0, "UV_OT_select_linked"); } #if 0 @@ -190,7 +190,7 @@ static void do_image_imagemenu(void *arg, int event) } #endif -static void image_imagemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_imagemenu(bContext *C, uiLayout *layout, void *arg_unused) { bScreen *sc= CTX_wm_screen(C); SpaceImage *sima= (SpaceImage*)CTX_wm_space_data(C); @@ -208,37 +208,37 @@ static void image_imagemenu(bContext *C, uiMenuItem *head, void *arg_unused) RNA_pointer_create(&sc->id, &RNA_SpaceImageEditor, sima, &spaceptr); /* create menu */ - uiMenuItemO(head, 0, "IMAGE_OT_new"); // New... - uiMenuItemO(head, 0, "IMAGE_OT_open"); // Open... + uiItemO(layout, NULL, 0, "IMAGE_OT_new"); // New... + uiItemO(layout, NULL, 0, "IMAGE_OT_open"); // Open... if(ima) { if(!show_render) { - uiMenuItemO(head, 0, "IMAGE_OT_replace"); // Replace... - uiMenuItemO(head, 0, "IMAGE_OT_reload"); // Reload... + uiItemO(layout, NULL, 0, "IMAGE_OT_replace"); // Replace... + uiItemO(layout, NULL, 0, "IMAGE_OT_reload"); // Reload... } - uiMenuItemO(head, 0, "IMAGE_OT_save"); // Save - uiMenuItemO(head, 0, "IMAGE_OT_save_as"); // Save As... + uiItemO(layout, NULL, 0, "IMAGE_OT_save"); // Save + uiItemO(layout, NULL, 0, "IMAGE_OT_save_as"); // Save As... if(ima->source == IMA_SRC_SEQUENCE) - uiMenuItemO(head, 0, "IMAGE_OT_save_sequence"); // Save Changed Sequence Images + uiItemO(layout, NULL, 0, "IMAGE_OT_save_sequence"); // Save Changed Sequence Images if(!show_render) { - uiMenuSeparator(head); + uiItemS(layout); - if(ima->packedfile) uiMenuItemO(head, 0, "IMAGE_OT_unpack"); // Unpack Image... - else uiMenuItemO(head, 0, "IMAGE_OT_pack"); // Pack Image + if(ima->packedfile) uiItemO(layout, NULL, 0, "IMAGE_OT_unpack"); // Unpack Image... + else uiItemO(layout, NULL, 0, "IMAGE_OT_pack"); // Pack Image /* only for dirty && specific image types : XXX poll? */ if(ibuf && (ibuf->userflags & IB_BITMAPDIRTY)) if(ELEM(ima->source, IMA_SRC_FILE, IMA_SRC_GENERATED) && ima->type != IMA_TYPE_MULTILAYER) - uiMenuItemBooleanO(head, "Pack As PNG", 0, "IMAGE_OT_pack", "as_png", 1); // Pack Image As PNG + uiItemBooleanO(layout, "Pack As PNG", 0, "IMAGE_OT_pack", "as_png", 1); // Pack Image As PNG - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemBooleanR(head, &spaceptr, "image_painting"); + uiItemR(layout, NULL, 0, &spaceptr, "image_painting", 0); /* move to realtime properties panel */ RNA_id_pointer_create(&ima->id, &imaptr); - uiMenuLevelEnumR(head, &imaptr, "mapping"); + uiItemLevelEnumR(layout, NULL, 0, &imaptr, "mapping"); } } @@ -260,30 +260,30 @@ static void image_imagemenu(bContext *C, uiMenuItem *head, void *arg_unused) #endif } -static void image_uvs_showhidemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_uvs_showhidemenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "UV_OT_reveal"); - uiMenuItemO(head, 0, "UV_OT_hide"); - uiMenuItemBooleanO(head, "Hide Unselected", 0, "UV_OT_hide", "unselected", 1); + uiItemO(layout, NULL, 0, "UV_OT_reveal"); + uiItemO(layout, NULL, 0, "UV_OT_hide"); + uiItemBooleanO(layout, "Hide Unselected", 0, "UV_OT_hide", "unselected", 1); } -static void image_uvs_transformmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_uvs_transformmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemEnumO(head, "", 0, "TFM_OT_transform", "mode", TFM_TRANSLATION); - uiMenuItemEnumO(head, "", 0, "TFM_OT_transform", "mode", TFM_ROTATION); - uiMenuItemEnumO(head, "", 0, "TFM_OT_transform", "mode", TFM_RESIZE); + uiItemEnumO(layout, NULL, 0, "TFM_OT_transform", "mode", TFM_TRANSLATION); + uiItemEnumO(layout, NULL, 0, "TFM_OT_transform", "mode", TFM_ROTATION); + uiItemEnumO(layout, NULL, 0, "TFM_OT_transform", "mode", TFM_RESIZE); } -static void image_uvs_mirrormenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_uvs_mirrormenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemEnumO(head, "", 0, "UV_OT_mirror", "axis", 'x'); // "X Axis", M, 1 - uiMenuItemEnumO(head, "", 0, "UV_OT_mirror", "axis", 'y'); // "Y Axis", M, 2 + uiItemEnumO(layout, NULL, 0, "UV_OT_mirror", "axis", 'x'); // "X Axis", M, 1 + uiItemEnumO(layout, NULL, 0, "UV_OT_mirror", "axis", 'y'); // "Y Axis", M, 2 } -static void image_uvs_weldalignmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_uvs_weldalignmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "UV_OT_weld"); // W, 1 - uiMenuItemsEnumO(head, "UV_OT_align", "axis"); // W, 2/3/4 + uiItemO(layout, NULL, 0, "UV_OT_weld"); // W, 1 + uiItemsEnumO(layout, "UV_OT_align", "axis"); // W, 2/3/4 } #if 0 @@ -321,7 +321,7 @@ static void image_uvs_scriptsmenu (void *args_unused) #endif /* DISABLE_PYTHON */ #endif -static void image_uvsmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void image_uvsmenu(bContext *C, uiLayout *layout, void *arg_unused) { bScreen *sc= CTX_wm_screen(C); Scene *scene= CTX_data_scene(C); @@ -338,43 +338,43 @@ static void image_uvsmenu(bContext *C, uiMenuItem *head, void *arg_unused) RNA_id_pointer_create(&scene->id, &sceneptr); /* create menu */ - uiMenuItemBooleanR(head, &uvptr, "snap_to_pixels"); - uiMenuItemBooleanR(head, &uvptr, "constrain_to_image_bounds"); + uiItemR(layout, NULL, 0, &uvptr, "snap_to_pixels", 0); + uiItemR(layout, NULL, 0, &uvptr, "constrain_to_image_bounds", 0); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemBooleanR(head, &uvptr, "live_unwrap"); - uiMenuItemO(head, 0, "UV_OT_unwrap"); - uiMenuItemBooleanO(head, "Unpin", 0, "UV_OT_pin", "clear", 1); - uiMenuItemO(head, 0, "UV_OT_pin"); + uiItemR(layout, NULL, 0, &uvptr, "live_unwrap", 0); + uiItemO(layout, NULL, 0, "UV_OT_unwrap"); + uiItemBooleanO(layout, "Unpin", 0, "UV_OT_pin", "clear", 1); + uiItemO(layout, NULL, 0, "UV_OT_pin"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "UV_OT_pack_islands"); - uiMenuItemO(head, 0, "UV_OT_average_islands_scale"); - uiMenuItemO(head, 0, "UV_OT_minimize_stretch"); - uiMenuItemO(head, 0, "UV_OT_stitch"); + uiItemO(layout, NULL, 0, "UV_OT_pack_islands"); + uiItemO(layout, NULL, 0, "UV_OT_average_islands_scale"); + uiItemO(layout, NULL, 0, "UV_OT_minimize_stretch"); + uiItemO(layout, NULL, 0, "UV_OT_stitch"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "Transform", image_uvs_transformmenu); - uiMenuLevel(head, "Mirror", image_uvs_mirrormenu); - uiMenuLevel(head, "Weld/Align", image_uvs_weldalignmenu); + uiItemLevel(layout, "Transform", 0, image_uvs_transformmenu); + uiItemLevel(layout, "Mirror", 0, image_uvs_mirrormenu); + uiItemLevel(layout, "Weld/Align", 0, image_uvs_weldalignmenu); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemBooleanR(head, &sceneptr, "proportional_editing"); - uiMenuLevelEnumR(head, &sceneptr, "proportional_editing_falloff"); + uiItemR(layout, NULL, 0, &sceneptr, "proportional_editing", 0); + uiItemLevelEnumR(layout, NULL, 0, &sceneptr, "proportional_editing_falloff"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "Show/Hide Faces", image_uvs_showhidemenu); + uiItemLevel(layout, "Show/Hide Faces", 0, image_uvs_showhidemenu); #if 0 #ifndef DISABLE_PYTHON - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "Scripts", image_uvs_scriptsmenu); + uiItemLevel(layout, "Scripts", image_uvs_scriptsmenu); #endif #endif } @@ -939,19 +939,21 @@ static int toolbox_invoke(bContext *C, wmOperator *op, wmEvent *event) { SpaceImage *sima= (SpaceImage*)CTX_wm_space_data(C); Object *obedit= CTX_data_edit_object(C); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int show_uvedit; show_uvedit= ED_space_image_show_uvedit(sima, obedit); - head= uiPupMenuBegin("Toolbox", 0); + pup= uiPupMenuBegin("Toolbox", 0); + layout= uiPupMenuLayout(pup); - uiMenuLevel(head, "View", image_viewmenu); - if(show_uvedit) uiMenuLevel(head, "Select", image_selectmenu); - uiMenuLevel(head, "Image", image_imagemenu); - if(show_uvedit) uiMenuLevel(head, "UVs", image_uvsmenu); + uiItemLevel(layout, "View", 0, image_viewmenu); + if(show_uvedit) uiItemLevel(layout, "Select", 0, image_selectmenu); + uiItemLevel(layout, "Image", 0, image_imagemenu); + if(show_uvedit) uiItemLevel(layout, "UVs", 0, image_uvsmenu); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c index fcafcd22a3d..908b24bd84d 100644 --- a/source/blender/editors/space_image/image_ops.c +++ b/source/blender/editors/space_image/image_ops.c @@ -1125,16 +1125,18 @@ static int pack_invoke(bContext *C, wmOperator *op, wmEvent *event) { SpaceImage *sima= (SpaceImage*)CTX_wm_space_data(C); ImBuf *ibuf= ED_space_image_buffer(sima); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int as_png= RNA_boolean_get(op->ptr, "as_png"); if(!pack_test(C, op)) return OPERATOR_CANCELLED; if(!as_png && (ibuf && (ibuf->userflags & IB_BITMAPDIRTY))) { - head= uiPupMenuBegin("OK", ICON_HELP); - uiMenuItemBooleanO(head, "Can't pack edited image from disk. Pack as internal PNG?", 0, op->idname, "as_png", 1); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("OK", ICON_HELP); + layout= uiPupMenuLayout(pup); + uiItemBooleanO(layout, "Can't pack edited image from disk. Pack as internal PNG?", 0, op->idname, "as_png", 1); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c index fab9317bbd0..5f743afd65d 100644 --- a/source/blender/editors/space_image/space_image.c +++ b/source/blender/editors/space_image/space_image.c @@ -47,6 +47,7 @@ #include "BKE_colortools.h" #include "BKE_context.h" #include "BKE_image.h" +#include "BKE_mesh.h" #include "BKE_screen.h" #include "BKE_utildefines.h" diff --git a/source/blender/editors/space_info/info_header.c b/source/blender/editors/space_info/info_header.c index 8b940bd6ca8..af792d0b22c 100644 --- a/source/blender/editors/space_info/info_header.c +++ b/source/blender/editors/space_info/info_header.c @@ -258,22 +258,22 @@ uiBlock *info_externalfiles(bContext *C, ARegion *ar, void *arg_unused) -static void info_filemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void info_filemenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuContext(head, WM_OP_EXEC_AREA); - uiMenuItemO(head, 0, "WM_OT_read_homefile"); - uiMenuContext(head, WM_OP_INVOKE_AREA); - uiMenuItemO(head, 0, "WM_OT_open_mainfile"); + uiLayoutContext(layout, WM_OP_EXEC_AREA); + uiItemO(layout, NULL, 0, "WM_OT_read_homefile"); + uiLayoutContext(layout, WM_OP_INVOKE_AREA); + uiItemO(layout, NULL, 0, "WM_OT_open_mainfile"); // uiDefIconTextBlockBut(block, info_openrecentmenu, NULL, ICON_RIGHTARROW_THIN, "Open Recent",0, yco-=20, 120, 19, ""); // uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Recover Last Session", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 15, ""); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuContext(head, WM_OP_EXEC_AREA); - uiMenuItemO(head, 0, "WM_OT_save_mainfile"); - uiMenuContext(head, WM_OP_INVOKE_AREA); - uiMenuItemO(head, 0, "WM_OT_save_as_mainfile"); + uiLayoutContext(layout, WM_OP_EXEC_AREA); + uiItemO(layout, NULL, 0, "WM_OT_save_mainfile"); + uiLayoutContext(layout, WM_OP_INVOKE_AREA); + uiItemO(layout, NULL, 0, "WM_OT_save_as_mainfile"); #if 0 if(U.flag & USER_FILECOMPRESS) { diff --git a/source/blender/editors/space_sequencer/sequencer_header.c b/source/blender/editors/space_sequencer/sequencer_header.c index aee589cb982..c8dc4cc006a 100644 --- a/source/blender/editors/space_sequencer/sequencer_header.c +++ b/source/blender/editors/space_sequencer/sequencer_header.c @@ -144,22 +144,22 @@ static uiBlock *seq_viewmenu(bContext *C, ARegion *ar, void *arg_unused) } //static uiBlock *seq_selectmenu(bContext *C, ARegion *ar, void *arg_unused) -static void seq_selectmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void seq_selectmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuContext(head, WM_OP_INVOKE_REGION_WIN); + uiLayoutContext(layout, WM_OP_INVOKE_REGION_WIN); - uiMenuItemEnumO(head, "Strips to the Left", 0, "SEQUENCER_OT_select_active_side", "side", SEQ_SIDE_LEFT); - uiMenuItemEnumO(head, "Strips to the Right", 0, "SEQUENCER_OT_select_active_side", "side", SEQ_SIDE_RIGHT); - uiMenuSeparator(head); - uiMenuItemEnumO(head, "Surrounding Handles", 0, "SEQUENCER_OT_select_handles", "side", SEQ_SIDE_BOTH); - uiMenuItemEnumO(head, "Left Handles", 0, "SEQUENCER_OT_select_handles", "side", SEQ_SIDE_LEFT); - uiMenuItemEnumO(head, "Right Handles", 0, "SEQUENCER_OT_select_handles", "side", SEQ_SIDE_RIGHT); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_select_linked"); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_select_linked"); - uiMenuItemO(head, 0, "SEQUENCER_OT_select_all_toggle"); - uiMenuItemO(head, 0, "SEQUENCER_OT_select_invert"); + uiItemEnumO(layout, "Strips to the Left", 0, "SEQUENCER_OT_select_active_side", "side", SEQ_SIDE_LEFT); + uiItemEnumO(layout, "Strips to the Right", 0, "SEQUENCER_OT_select_active_side", "side", SEQ_SIDE_RIGHT); + uiItemS(layout); + uiItemEnumO(layout, "Surrounding Handles", 0, "SEQUENCER_OT_select_handles", "side", SEQ_SIDE_BOTH); + uiItemEnumO(layout, "Left Handles", 0, "SEQUENCER_OT_select_handles", "side", SEQ_SIDE_LEFT); + uiItemEnumO(layout, "Right Handles", 0, "SEQUENCER_OT_select_handles", "side", SEQ_SIDE_RIGHT); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_select_linked"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_select_linked"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_select_all_toggle"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_select_invert"); } static uiBlock *seq_markermenu(bContext *C, ARegion *ar, void *arg_unused) @@ -210,114 +210,113 @@ static uiBlock *seq_markermenu(bContext *C, ARegion *ar, void *arg_unused) } //static uiBlock *seq_addmenu_effectmenu(bContext *C, ARegion *ar, void *arg_unused) -static void seq_addmenu_effectmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void seq_addmenu_effectmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuContext(head, WM_OP_INVOKE_REGION_WIN); + uiLayoutContext(layout, WM_OP_INVOKE_REGION_WIN); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_ADD); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_SUB); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_MUL); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_CROSS); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_GAMCROSS); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_ALPHAOVER); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_ALPHAUNDER); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_OVERDROP); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_WIPE); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_GLOW); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_TRANSFORM); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_ADD); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_SUB); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_MUL); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_CROSS); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_GAMCROSS); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_ALPHAOVER); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_ALPHAUNDER); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_OVERDROP); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_WIPE); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_GLOW); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_TRANSFORM); /* Color is an effect but moved to the other menu since its not that exciting */ - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_SPEED); - uiMenuSeparator(head); - uiMenuItemEnumO(head, "", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_PLUGIN); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_SPEED); + uiItemS(layout); + uiItemEnumO(layout, NULL, 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_PLUGIN); } //static uiBlock *seq_addmenu(bContext *C, ARegion *ar, void *arg_unused) -static void seq_addmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void seq_addmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuLevel(head, "Effects...", seq_addmenu_effectmenu); - uiMenuSeparator(head); + uiItemLevel(layout, "Effects...", 0, seq_addmenu_effectmenu); + uiItemS(layout); - uiMenuContext(head, WM_OP_INVOKE_REGION_WIN); + uiLayoutContext(layout, WM_OP_INVOKE_REGION_WIN); #ifdef WITH_FFMPEG - uiMenuItemBooleanO(head, "Audio (RAM)", 0, "SEQUENCER_OT_sound_strip_add", "hd", FALSE); - uiMenuItemBooleanO(head, "Audio (HD)", 0, "SEQUENCER_OT_sound_strip_add", "hd", TRUE); + uiItemBooleanO(layout, "Audio (RAM)", 0, "SEQUENCER_OT_sound_strip_add", "hd", FALSE); + uiItemBooleanO(layout, "Audio (HD)", 0, "SEQUENCER_OT_sound_strip_add", "hd", TRUE); #else - uiMenuItemO(head, 0, "SEQUENCER_OT_sound_strip_add"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_sound_strip_add"); #endif - uiMenuItemEnumO(head, "Add Color Strip", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_COLOR); + uiItemEnumO(layout, "Add Color Strip", 0, "SEQUENCER_OT_effect_strip_add", "type", SEQ_COLOR); - uiMenuItemO(head, 0, "SEQUENCER_OT_image_strip_add"); - uiMenuItemO(head, 0, "SEQUENCER_OT_movie_strip_add"); - uiMenuItemO(head, 0, "SEQUENCER_OT_scene_strip_add"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_image_strip_add"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_movie_strip_add"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_scene_strip_add"); #ifdef WITH_FFMPEG - uiMenuItemBooleanO(head, "Movie and Sound", 0, "SEQUENCER_OT_movie_strip_add", "sound", TRUE); + uiItemBooleanO(layout, "Movie and Sound", 0, "SEQUENCER_OT_movie_strip_add", "sound", TRUE); #endif } //static uiBlock *seq_editmenu(bContext *C, ARegion *ar, void *arg_unused) -static void seq_editmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void seq_editmenu(bContext *C, uiLayout *layout, void *arg_unused) { - Scene *scene= CTX_data_scene(C); Editing *ed= seq_give_editing(scene, FALSE); - uiMenuContext(head, WM_OP_INVOKE_REGION_WIN); + uiLayoutContext(layout, WM_OP_INVOKE_REGION_WIN); - uiMenuItemEnumO(head, "", 0, "TFM_OT_transform", "mode", TFM_TRANSLATION); - uiMenuItemEnumO(head, "", 0, "TFM_OT_transform", "mode", TFM_TIME_EXTEND); + uiItemEnumO(layout, NULL, 0, "TFM_OT_transform", "mode", TFM_TRANSLATION); + uiItemEnumO(layout, NULL, 0, "TFM_OT_transform", "mode", TFM_TIME_EXTEND); - // uiMenuItemO(head, 0, "SEQUENCER_OT_strip_snap"); // TODO - add this operator + // uiItemO(layout, NULL, 0, "SEQUENCER_OT_strip_snap"); // TODO - add this operator - uiMenuItemEnumO(head, "Cut Hard", 0, "SEQUENCER_OT_cut", "type", SEQ_CUT_HARD); - uiMenuItemEnumO(head, "Cut Soft", 0, "SEQUENCER_OT_cut", "type", SEQ_CUT_SOFT); + uiItemEnumO(layout, "Cut Hard", 0, "SEQUENCER_OT_cut", "type", SEQ_CUT_HARD); + uiItemEnumO(layout, "Cut Soft", 0, "SEQUENCER_OT_cut", "type", SEQ_CUT_SOFT); - uiMenuItemO(head, 0, "SEQUENCER_OT_images_separate"); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_duplicate_add"); - uiMenuItemO(head, 0, "SEQUENCER_OT_delete"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_images_separate"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_duplicate_add"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_delete"); if (ed && ed->act_seq) { switch(ed->act_seq->type) { case SEQ_EFFECT: - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_effect_change"); - uiMenuItemO(head, 0, "SEQUENCER_OT_effect_reassign_inputs"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_effect_change"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_effect_reassign_inputs"); break; case SEQ_IMAGE: - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_image_change"); // Change Scene... + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_image_change"); // Change Scene... break; case SEQ_SCENE: - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_scene_change"); // Remap Paths... + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_scene_change"); // Remap Paths... break; case SEQ_MOVIE: - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_movie_change"); // Remap Paths... + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_movie_change"); // Remap Paths... break; } } - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "SEQUENCER_OT_meta_make"); - uiMenuItemO(head, 0, "SEQUENCER_OT_meta_separate"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_meta_make"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_meta_separate"); if (ed && (ed->metastack.first || (ed->act_seq && ed->act_seq->type == SEQ_META))) { - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_meta_toggle"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_meta_toggle"); } - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_reload"); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "SEQUENCER_OT_lock"); - uiMenuItemO(head, 0, "SEQUENCER_OT_unlock"); - uiMenuItemO(head, 0, "SEQUENCER_OT_mute"); - uiMenuItemO(head, 0, "SEQUENCER_OT_unmute"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_reload"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_lock"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_unlock"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_mute"); + uiItemO(layout, NULL, 0, "SEQUENCER_OT_unmute"); - uiMenuItemEnumO(head, "Mute Deselected Strips", 0, "SEQUENCER_OT_mute", "type", SEQ_UNSELECTED); + uiItemEnumO(layout, "Mute Deselected Strips", 0, "SEQUENCER_OT_mute", "type", SEQ_UNSELECTED); } void sequencer_header_buttons(const bContext *C, ARegion *ar) diff --git a/source/blender/editors/space_text/space_text.c b/source/blender/editors/space_text/space_text.c index 89852955ca3..577dae433c1 100644 --- a/source/blender/editors/space_text/space_text.c +++ b/source/blender/editors/space_text/space_text.c @@ -127,13 +127,17 @@ static void text_listener(ScrArea *sa, wmNotifier *wmn) if(!wmn->reference || wmn->reference == st->text) { ED_area_tag_redraw(sa); - if(wmn->data == ND_CURSOR) { + if(wmn->data == ND_CURSOR || wmn->action == NA_EDITED) { ARegion *ar; for(ar=sa->regionbase.first; ar; ar= ar->next) if(ar->regiontype==RGN_TYPE_WINDOW) text_update_cursor_moved(st, ar); } + + if(wmn->action == NA_EDITED) + if(st->text) + text_update_edited(st->text); } else if(wmn->data == ND_DISPLAY) ED_area_tag_redraw(sa); @@ -147,6 +151,7 @@ static void text_operatortypes(void) WM_operatortype_append(TEXT_OT_new); WM_operatortype_append(TEXT_OT_open); WM_operatortype_append(TEXT_OT_reload); + WM_operatortype_append(TEXT_OT_unlink); WM_operatortype_append(TEXT_OT_save); WM_operatortype_append(TEXT_OT_save_as); WM_operatortype_append(TEXT_OT_make_internal); @@ -401,9 +406,6 @@ void ED_spacetype_text(void) art->init= text_properties_area_init; art->draw= text_properties_area_draw; - - text_properties_register(art); - BLI_addhead(&st->regiontypes, art); /* regions: header */ diff --git a/source/blender/editors/space_text/text_header.c b/source/blender/editors/space_text/text_header.c index 0ab43cbf455..a3b62adf6c8 100644 --- a/source/blender/editors/space_text/text_header.c +++ b/source/blender/editors/space_text/text_header.c @@ -155,44 +155,46 @@ static uiBlock *text_plugin_scriptsmenu(bContext *C, void *args_unused) } #endif -static void text_editmenu_viewmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void text_editmenu_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemEnumO(head, "Top of File", 0, "TEXT_OT_move", "type", FILE_TOP); - uiMenuItemEnumO(head, "Bottom of File", 0, "TEXT_OT_move", "type", FILE_BOTTOM); + uiItemEnumO(layout, "Top of File", 0, "TEXT_OT_move", "type", FILE_TOP); + uiItemEnumO(layout, "Bottom of File", 0, "TEXT_OT_move", "type", FILE_BOTTOM); } -static void text_editmenu_selectmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void text_editmenu_selectmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "TEXT_OT_select_all"); - uiMenuItemO(head, 0, "TEXT_OT_select_line"); + uiItemO(layout, NULL, 0, "TEXT_OT_select_all"); + uiItemO(layout, NULL, 0, "TEXT_OT_select_line"); } -static void text_editmenu_markermenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void text_editmenu_markermenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "TEXT_OT_markers_clear"); - uiMenuItemO(head, 0, "TEXT_OT_next_marker"); - uiMenuItemO(head, 0, "TEXT_OT_previous_marker"); + uiItemO(layout, NULL, 0, "TEXT_OT_markers_clear"); + uiItemO(layout, NULL, 0, "TEXT_OT_next_marker"); + uiItemO(layout, NULL, 0, "TEXT_OT_previous_marker"); } -static void text_formatmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void text_formatmenu(const bContext *C, Menu *menu) { - uiMenuItemO(head, 0, "TEXT_OT_indent"); - uiMenuItemO(head, 0, "TEXT_OT_unindent"); + uiLayout *layout= menu->layout; - uiMenuSeparator(head); + uiItemO(layout, NULL, 0, "TEXT_OT_indent"); + uiItemO(layout, NULL, 0, "TEXT_OT_unindent"); - uiMenuItemO(head, 0, "TEXT_OT_comment"); - uiMenuItemO(head, 0, "TEXT_OT_uncomment"); + uiItemS(layout); - uiMenuSeparator(head); + uiItemO(layout, NULL, 0, "TEXT_OT_comment"); + uiItemO(layout, NULL, 0, "TEXT_OT_uncomment"); - uiMenuLevelEnumO(head, "TEXT_OT_convert_whitespace", "type"); + uiItemS(layout); + + uiItemLevelEnumO(layout, NULL, 0, "TEXT_OT_convert_whitespace", "type"); } -static void text_editmenu_to3dmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void text_editmenu_to3dmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemBooleanO(head, "One Object", 0, "TEXT_OT_to_3d_object", "split_lines", 0); - uiMenuItemBooleanO(head, "One Object Per Line", 0, "TEXT_OT_to_3d_object", "split_lines", 1); + uiItemBooleanO(layout, "One Object", 0, "TEXT_OT_to_3d_object", "split_lines", 0); + uiItemBooleanO(layout, "One Object Per Line", 0, "TEXT_OT_to_3d_object", "split_lines", 1); } static int text_menu_edit_poll(bContext *C) @@ -200,308 +202,56 @@ static int text_menu_edit_poll(bContext *C) return (CTX_data_edit_text(C) != NULL); } -static void text_editmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void text_editmenu(const bContext *C, Menu *menu) { - uiMenuItemO(head, 0, "ED_OT_undo"); - uiMenuItemO(head, 0, "ED_OT_redo"); + uiLayout *layout= menu->layout; - uiMenuSeparator(head); + uiItemO(layout, NULL, 0, "ED_OT_undo"); + uiItemO(layout, NULL, 0, "ED_OT_redo"); - uiMenuItemO(head, 0, "TEXT_OT_cut"); - uiMenuItemO(head, 0, "TEXT_OT_copy"); - uiMenuItemO(head, 0, "TEXT_OT_paste"); + uiItemS(layout); - uiMenuSeparator(head); + uiItemO(layout, NULL, 0, "TEXT_OT_cut"); + uiItemO(layout, NULL, 0, "TEXT_OT_copy"); + uiItemO(layout, NULL, 0, "TEXT_OT_paste"); - uiMenuLevel(head, "View", text_editmenu_viewmenu); - uiMenuLevel(head, "Select", text_editmenu_selectmenu); - uiMenuLevel(head, "Markers", text_editmenu_markermenu); + uiItemS(layout); - uiMenuSeparator(head); + uiItemLevel(layout, "View", 0, text_editmenu_viewmenu); + uiItemLevel(layout, "Select", 0, text_editmenu_selectmenu); + uiItemLevel(layout, "Markers", 0, text_editmenu_markermenu); - uiMenuItemO(head, 0, "TEXT_OT_jump"); - uiMenuItemO(head, 0, "TEXT_OT_properties"); + uiItemS(layout); - uiMenuSeparator(head); + uiItemO(layout, NULL, 0, "TEXT_OT_jump"); + uiItemO(layout, NULL, 0, "TEXT_OT_properties"); - uiMenuLevel(head, "Text to 3D Object", text_editmenu_to3dmenu); -} + uiItemS(layout); -static void text_filemenu(bContext *C, uiMenuItem *head, void *arg_unused) -{ - SpaceText *st= (SpaceText*)CTX_wm_space_data(C); - Text *text= st->text; - - uiMenuItemO(head, 0, "TEXT_OT_new"); - uiMenuItemO(head, 0, "TEXT_OT_open"); - - if(text) { - uiMenuItemO(head, 0, "TEXT_OT_reload"); - - uiMenuSeparator(head); - - uiMenuItemO(head, 0, "TEXT_OT_save"); - uiMenuItemO(head, 0, "TEXT_OT_save_as"); - - if(text->name) - uiMenuItemO(head, 0, "TEXT_OT_make_internal"); - - uiMenuSeparator(head); - - uiMenuItemO(head, 0, "TEXT_OT_run_script"); - -#ifndef DISABLE_PYTHON - if(BPY_is_pyconstraint(text)) - uiMenuItemO(head, 0, "TEXT_OT_refresh_pyconstraints"); -#endif - } - -#ifndef DISABLE_PYTHON - // XXX uiMenuSeparator(head); - - // 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 -} - -/*********************** datablock browse *************************/ - -static void text_unlink(Main *bmain, Text *text) -{ - bScreen *scr; - ScrArea *area; - SpaceLink *sl; - - /* XXX this ifdef is in fact dangerous, if python is - * disabled it will leave invalid pointers in files! */ - -#ifndef DISABLE_PYTHON - // XXX BPY_clear_bad_scriptlinks(text); - // XXX BPY_free_pyconstraint_links(text); - // XXX free_text_controllers(text); - // XXX free_dome_warp_text(text); - - /* check if this text was used as script link: - * this check function unsets the pointers and returns how many - * script links used this Text */ - if(0) // XXX BPY_text_check_all_scriptlinks (text)) - ; // XXX notifier: allqueue(REDRAWBUTSSCRIPT, 0); - - /* equivalently for pynodes: */ - if(0) // XXX nodeDynamicUnlinkText ((ID*)text)) - ; // XXX notifier: allqueue(REDRAWNODE, 0); -#endif - - for(scr= bmain->screen.first; scr; scr= scr->id.next) { - for(area= scr->areabase.first; area; area= area->next) { - for(sl= area->spacedata.first; sl; sl= sl->next) { - if(sl->spacetype==SPACE_TEXT) { - SpaceText *st= (SpaceText*) sl; - - if(st->text==text) { - st->text= NULL; - st->top= 0; - - if(st==area->spacedata.first) - ED_area_tag_redraw(area); - } - } - } - } - } - - free_libblock(&bmain->text, text); -} - -static void text_idpoin_handle(bContext *C, ID *id, int event) -{ - SpaceText *st= (SpaceText*)CTX_wm_space_data(C); - Text *text; - - switch(event) { - case UI_ID_BROWSE: - st->text= (Text*)id; - st->top= 0; - - text_update_edited(st->text); - WM_event_add_notifier(C, NC_TEXT|ND_CURSOR, st->text); - - ED_undo_push(C, "Browse Text"); - break; - case UI_ID_DELETE: - text= st->text; - - /* make the previous text active, if its not there make the next text active */ - if(text->id.prev) { - st->text = text->id.prev; - WM_event_add_notifier(C, NC_TEXT|ND_CURSOR, st->text); - } - else if(text->id.next) { - st->text = text->id.next; - WM_event_add_notifier(C, NC_TEXT|ND_CURSOR, st->text); - } - - text_unlink(CTX_data_main(C), text); - WM_event_add_notifier(C, NC_TEXT|NA_REMOVED, text); - - ED_undo_push(C, "Delete Text"); - break; - case UI_ID_RENAME: - break; - case UI_ID_ADD_NEW: - WM_operator_name_call(C, "TEXT_OT_new", WM_OP_INVOKE_REGION_WIN, NULL); - break; - case UI_ID_OPEN: - WM_operator_name_call(C, "TEXT_OT_open", WM_OP_INVOKE_REGION_WIN, NULL); - break; - } + uiItemLevel(layout, "Text to 3D Object", 0, text_editmenu_to3dmenu); } /********************** header buttons ***********************/ -static void text_header_draw(const bContext *C, Header *header) -{ - bScreen *sc= CTX_wm_screen(C); - SpaceText *st= (SpaceText*)CTX_wm_space_data(C); - PointerRNA spaceptr; - Text *text= st->text; - uiLayout *layout= header->layout; - - RNA_pointer_create(&sc->id, &RNA_SpaceTextEditor, st, &spaceptr); - - uiTemplateHeaderMenus(layout); - uiItemM(layout, "Text", 0, text_filemenu); - if(text) { - uiItemM(layout, "Edit", 0, text_editmenu); - uiItemM(layout, "Format", 0, text_formatmenu); - } - - /* warning button if text is out of date */ - if(text && text_file_modified(text)) { - uiTemplateHeaderButtons(layout); - uiTemplateSetColor(layout, TH_REDALERT); - uiItemO(layout, "", ICON_HELP, "TEXT_OT_resolve_conflict"); - } - - uiTemplateHeaderButtons(layout); - uiItemR(layout, "", ICON_LINENUMBERS_OFF, &spaceptr, "line_numbers", 0); - uiItemR(layout, "", ICON_WORDWRAP_OFF, &spaceptr, "word_wrap", 0); - uiItemR(layout, "", ICON_SYNTAX_OFF, &spaceptr, "syntax_highlight", 0); - // XXX uiItemR(layout, "", ICON_SCRIPTPLUGINS, &spaceptr, "do_python_plugins", 0); - - uiTemplateHeaderID(layout, &spaceptr, "text", - UI_ID_BROWSE|UI_ID_RENAME|UI_ID_ADD_NEW|UI_ID_OPEN|UI_ID_DELETE, - text_idpoin_handle); - - /* file info */ - if(text) { - char fname[HEADER_PATH_MAX]; - static char headtxt[HEADER_PATH_MAX+17]; - int len; - - if(text->name) { - len = strlen(text->name); - if(len > HEADER_PATH_MAX-1) - len = HEADER_PATH_MAX-1; - strncpy(fname, text->name, len); - fname[len]='\0'; - if(text->flags & TXT_ISDIRTY) - sprintf(headtxt, "File: *%s (unsaved)", fname); - else - sprintf(headtxt, "File: %s", fname); - } - else - sprintf(headtxt, text->id.lib? "Text: External": "Text: Internal"); - - uiTemplateHeaderButtons(layout); - uiItemL(layout, headtxt, 0); - } -} - void text_header_register(ARegionType *art) { - HeaderType *ht; + MenuType *mt; - /* header */ - ht= MEM_callocN(sizeof(HeaderType), "spacetype text header"); - strcpy(ht->idname, "TEXT_HT_header"); - ht->draw= text_header_draw; - BLI_addhead(&art->headertypes, ht); + mt= MEM_callocN(sizeof(MenuType), "spacetype text menu edit"); + strcpy(mt->idname, "TEXT_MT_edit"); + strcpy(mt->label, "Edit"); + mt->draw= text_editmenu; + BLI_addhead(&art->menutypes, mt); + + mt= MEM_callocN(sizeof(MenuType), "spacetype text menu format"); + strcpy(mt->idname, "TEXT_MT_format"); + strcpy(mt->label, "Format"); + mt->draw= text_formatmenu; + BLI_addhead(&art->menutypes, mt); } /************************** properties ******************************/ -static void text_properties_panel_draw(const bContext *C, Panel *panel) -{ - bScreen *sc= CTX_wm_screen(C); - SpaceText *st= CTX_wm_space_text(C); - uiLayout *layout= panel->layout; - PointerRNA spaceptr; - - RNA_pointer_create(&sc->id, &RNA_SpaceTextEditor, st, &spaceptr); - - uiLayoutColumn(layout); - uiItemR(layout, NULL, ICON_LINENUMBERS_OFF, &spaceptr, "line_numbers", 0); - uiItemR(layout, NULL, ICON_WORDWRAP_OFF, &spaceptr, "word_wrap", 0); - uiItemR(layout, NULL, ICON_SYNTAX_OFF, &spaceptr, "syntax_highlight", 0); - - uiLayoutColumn(layout); - uiItemR(layout, NULL, 0, &spaceptr, "font_size", 0); - uiItemR(layout, NULL, 0, &spaceptr, "tab_width", 0); -} - -static void text_find_panel_draw(const bContext *C, Panel *panel) -{ - bScreen *sc= CTX_wm_screen(C); - SpaceText *st= CTX_wm_space_text(C); - uiLayout *layout= panel->layout; - PointerRNA spaceptr; - - RNA_pointer_create(&sc->id, &RNA_SpaceTextEditor, st, &spaceptr); - - /* find */ - uiLayoutRow(layout); - uiItemR(layout, "", 0, &spaceptr, "find_text", 0); - uiItemO(layout, "", ICON_TEXT, "TEXT_OT_find_set_selected"); - uiLayoutColumn(layout); - uiItemO(layout, NULL, 0, "TEXT_OT_find"); - - /* replace */ - uiLayoutRow(layout); - uiItemR(layout, "", 0, &spaceptr, "replace_text", 0); - uiItemO(layout, "", ICON_TEXT, "TEXT_OT_replace_set_selected"); - uiLayoutColumn(layout); - uiItemO(layout, NULL, 0, "TEXT_OT_replace"); - - /* mark */ - uiLayoutColumn(layout); - uiItemO(layout, NULL, 0, "TEXT_OT_mark_all"); - - /* settings */ - uiLayoutColumnFlow(layout, 0); - uiItemR(layout, "Wrap", 0, &spaceptr, "find_wrap", 0); - uiItemR(layout, "All", 0, &spaceptr, "find_all", 0); -} - -void text_properties_register(ARegionType *art) -{ - PanelType *pt; - - /* panels: properties */ - pt= MEM_callocN(sizeof(PanelType), "spacetype text panel"); - strcpy(pt->idname, "TEXT_PT_properties"); - strcpy(pt->label, "Properties"); - pt->draw= text_properties_panel_draw; - BLI_addtail(&art->paneltypes, pt); - - /* panels: find */ - pt= MEM_callocN(sizeof(PanelType), "spacetype text panel"); - strcpy(pt->idname, "TEXT_PT_find"); - strcpy(pt->label, "Find"); - pt->draw= text_find_panel_draw; - BLI_addtail(&art->paneltypes, pt); -} - ARegion *text_has_properties_region(ScrArea *sa) { ARegion *ar, *arnew; @@ -570,75 +320,75 @@ void TEXT_OT_properties(wmOperatorType *ot) { // RMB - uiMenuItem *head; + uiPopupMenu *pup; if(text) { - head= uiPupMenuBegin("Text", 0); + pup= uiPupMenuBegin("Text", 0); if(txt_has_sel(text)) { - uiMenuItemO(head, 0, "TEXT_OT_cut"); - uiMenuItemO(head, 0, "TEXT_OT_copy"); + uiItemO(layout, NULL, 0, "TEXT_OT_cut"); + uiItemO(layout, NULL, 0, "TEXT_OT_copy"); } - uiMenuItemO(head, 0, "TEXT_OT_paste"); - uiMenuItemO(head, 0, "TEXT_OT_new"); - uiMenuItemO(head, 0, "TEXT_OT_open"); - uiMenuItemO(head, 0, "TEXT_OT_save"); - uiMenuItemO(head, 0, "TEXT_OT_save_as"); - uiMenuItemO(head, 0, "TEXT_OT_run_script"); - uiPupMenuEnd(C, head); + uiItemO(layout, NULL, 0, "TEXT_OT_paste"); + uiItemO(layout, NULL, 0, "TEXT_OT_new"); + uiItemO(layout, NULL, 0, "TEXT_OT_open"); + uiItemO(layout, NULL, 0, "TEXT_OT_save"); + uiItemO(layout, NULL, 0, "TEXT_OT_save_as"); + uiItemO(layout, NULL, 0, "TEXT_OT_run_script"); + uiPupMenuEnd(C, pup); } else { - head= uiPupMenuBegin("File", 0); - uiMenuItemO(head, 0, "TEXT_OT_new"); - uiMenuItemO(head, 0, "TEXT_OT_open"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("File", 0); + uiItemO(layout, NULL, 0, "TEXT_OT_new"); + uiItemO(layout, NULL, 0, "TEXT_OT_open"); + uiPupMenuEnd(C, pup); } } { // Alt+Shift+E - uiMenuItem *head; + uiPopupMenu *pup; - head= uiPupMenuBegin("Edit", 0); - uiMenuItemO(head, 0, "TEXT_OT_cut"); - uiMenuItemO(head, 0, "TEXT_OT_copy"); - uiMenuItemO(head, 0, "TEXT_OT_paste"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Edit", 0); + uiItemO(layout, NULL, 0, "TEXT_OT_cut"); + uiItemO(layout, NULL, 0, "TEXT_OT_copy"); + uiItemO(layout, NULL, 0, "TEXT_OT_paste"); + uiPupMenuEnd(C, pup); } { // Alt+Shift+F - uiMenuItem *head; + uiPopupMenu *pup; if(text) { - head= uiPupMenuBegin("Text", 0); - uiMenuItemO(head, 0, "TEXT_OT_new"); - uiMenuItemO(head, 0, "TEXT_OT_open"); - uiMenuItemO(head, 0, "TEXT_OT_save"); - uiMenuItemO(head, 0, "TEXT_OT_save_as"); - uiMenuItemO(head, 0, "TEXT_OT_run_script"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Text", 0); + uiItemO(layout, NULL, 0, "TEXT_OT_new"); + uiItemO(layout, NULL, 0, "TEXT_OT_open"); + uiItemO(layout, NULL, 0, "TEXT_OT_save"); + uiItemO(layout, NULL, 0, "TEXT_OT_save_as"); + uiItemO(layout, NULL, 0, "TEXT_OT_run_script"); + uiPupMenuEnd(C, pup); } else { - head= uiPupMenuBegin("File", 0); - uiMenuItemO(head, 0, "TEXT_OT_new"); - uiMenuItemO(head, 0, "TEXT_OT_open"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("File", 0); + uiItemO(layout, NULL, 0, "TEXT_OT_new"); + uiItemO(layout, NULL, 0, "TEXT_OT_open"); + uiPupMenuEnd(C, pup); } } { // Alt+Shift+V - uiMenuItem *head; + uiPopupMenu *pup; - head= uiPupMenuBegin("Text", 0); - uiMenuItemEnumO(head, "Top of File", 0, "TEXT_OT_move", "type", FILE_TOP); - uiMenuItemEnumO(head, "Bottom of File", 0, "TEXT_OT_move", "type", FILE_BOTTOM); - uiMenuItemEnumO(head, "Page Up", 0, "TEXT_OT_move", "type", PREV_PAGE); - uiMenuItemEnumO(head, "Page Down", 0, "TEXT_OT_move", "type", NEXT_PAGE); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Text", 0); + uiItemEnumO(layout, "Top of File", 0, "TEXT_OT_move", "type", FILE_TOP); + uiItemEnumO(layout, "Bottom of File", 0, "TEXT_OT_move", "type", FILE_BOTTOM); + uiItemEnumO(layout, "Page Up", 0, "TEXT_OT_move", "type", PREV_PAGE); + uiItemEnumO(layout, "Page Down", 0, "TEXT_OT_move", "type", NEXT_PAGE); + uiPupMenuEnd(C, pup); } #endif diff --git a/source/blender/editors/space_text/text_intern.h b/source/blender/editors/space_text/text_intern.h index 7ec75e292ce..50109ba8c42 100644 --- a/source/blender/editors/space_text/text_intern.h +++ b/source/blender/editors/space_text/text_intern.h @@ -43,7 +43,6 @@ struct wmOperatorType; struct wmWindowManager; /* text_header.c */ -void text_properties_register(struct ARegionType *art); void text_header_register(struct ARegionType *art); /* text_draw.c */ @@ -106,6 +105,7 @@ enum { DEL_NEXT_CHAR, DEL_PREV_CHAR, DEL_NEXT_WORD, DEL_PREV_WORD }; void TEXT_OT_new(struct wmOperatorType *ot); void TEXT_OT_open(struct wmOperatorType *ot); void TEXT_OT_reload(struct wmOperatorType *ot); +void TEXT_OT_unlink(struct wmOperatorType *ot); void TEXT_OT_save(struct wmOperatorType *ot); void TEXT_OT_save_as(struct wmOperatorType *ot); void TEXT_OT_make_internal(struct wmOperatorType *ot); diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c index c7fe02975ef..913bd307ab2 100644 --- a/source/blender/editors/space_text/text_ops.c +++ b/source/blender/editors/space_text/text_ops.c @@ -49,6 +49,7 @@ #include "BKE_context.h" #include "BKE_depsgraph.h" #include "BKE_global.h" +#include "BKE_library.h" #include "BKE_main.h" #include "BKE_report.h" #include "BKE_suggestions.h" @@ -269,6 +270,90 @@ void TEXT_OT_reload(wmOperatorType *ot) ot->poll= text_edit_poll; } +/******************* delete operator *********************/ + +static void text_unlink(Main *bmain, Text *text) +{ + bScreen *scr; + ScrArea *area; + SpaceLink *sl; + + /* XXX this ifdef is in fact dangerous, if python is + * disabled it will leave invalid pointers in files! */ + +#ifndef DISABLE_PYTHON + // XXX BPY_clear_bad_scriptlinks(text); + // XXX BPY_free_pyconstraint_links(text); + // XXX free_text_controllers(text); + // XXX free_dome_warp_text(text); + + /* check if this text was used as script link: + * this check function unsets the pointers and returns how many + * script links used this Text */ + if(0) // XXX BPY_text_check_all_scriptlinks (text)) + ; // XXX notifier: allqueue(REDRAWBUTSSCRIPT, 0); + + /* equivalently for pynodes: */ + if(0) // XXX nodeDynamicUnlinkText ((ID*)text)) + ; // XXX notifier: allqueue(REDRAWNODE, 0); +#endif + + for(scr= bmain->screen.first; scr; scr= scr->id.next) { + for(area= scr->areabase.first; area; area= area->next) { + for(sl= area->spacedata.first; sl; sl= sl->next) { + if(sl->spacetype==SPACE_TEXT) { + SpaceText *st= (SpaceText*) sl; + + if(st->text==text) { + st->text= NULL; + st->top= 0; + + if(st==area->spacedata.first) + ED_area_tag_redraw(area); + } + } + } + } + } + + free_libblock(&bmain->text, text); +} + +static int unlink_exec(bContext *C, wmOperator *op) +{ + SpaceText *st= CTX_wm_space_text(C); + Text *text= CTX_data_edit_text(C); + + /* make the previous text active, if its not there make the next text active */ + if(st) { + if(text->id.prev) { + st->text = text->id.prev; + WM_event_add_notifier(C, NC_TEXT|ND_CURSOR, st->text); + } + else if(text->id.next) { + st->text = text->id.next; + WM_event_add_notifier(C, NC_TEXT|ND_CURSOR, st->text); + } + } + + text_unlink(CTX_data_main(C), text); + WM_event_add_notifier(C, NC_TEXT|NA_REMOVED, text); + + return OPERATOR_FINISHED; +} + +void TEXT_OT_unlink(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Unlink"; + ot->idname= "TEXT_OT_unlink"; + + /* api callbacks */ + ot->exec= unlink_exec; + ot->invoke= WM_operator_confirm; + ot->poll= text_edit_poll; +} + /******************* make internal operator *********************/ static int make_internal_exec(bContext *C, wmOperator *op) @@ -2448,31 +2533,35 @@ static int resolve_conflict_exec(bContext *C, wmOperator *op) static int resolve_conflict_invoke(bContext *C, wmOperator *op, wmEvent *event) { Text *text= CTX_data_edit_text(C); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; switch(text_file_modified(text)) { case 1: if(text->flags & TXT_ISDIRTY) { /* modified locally and externally, ahhh. offer more possibilites. */ - head= uiPupMenuBegin("File Modified Outside and Inside Blender", 0); - uiMenuItemEnumO(head, "Reload from disk (ignore local changes)", 0, op->type->idname, "resolution", RESOLVE_RELOAD); - uiMenuItemEnumO(head, "Save to disk (ignore outside changes)", 0, op->type->idname, "resolution", RESOLVE_SAVE); - uiMenuItemEnumO(head, "Make text internal (separate copy)", 0, op->type->idname, "resolution", RESOLVE_MAKE_INTERNAL); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("File Modified Outside and Inside Blender", 0); + layout= uiPupMenuLayout(pup); + uiItemEnumO(layout, "Reload from disk (ignore local changes)", 0, op->type->idname, "resolution", RESOLVE_RELOAD); + uiItemEnumO(layout, "Save to disk (ignore outside changes)", 0, op->type->idname, "resolution", RESOLVE_SAVE); + uiItemEnumO(layout, "Make text internal (separate copy)", 0, op->type->idname, "resolution", RESOLVE_MAKE_INTERNAL); + uiPupMenuEnd(C, pup); } else { - head= uiPupMenuBegin("File Modified Outside Blender", 0); - uiMenuItemEnumO(head, "Reload from disk", 0, op->type->idname, "resolution", RESOLVE_RELOAD); - uiMenuItemEnumO(head, "Make text internal (separate copy)", 0, op->type->idname, "resolution", RESOLVE_MAKE_INTERNAL); - uiMenuItemEnumO(head, "Ignore", 0, op->type->idname, "resolution", RESOLVE_IGNORE); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("File Modified Outside Blender", 0); + layout= uiPupMenuLayout(pup); + uiItemEnumO(layout, "Reload from disk", 0, op->type->idname, "resolution", RESOLVE_RELOAD); + uiItemEnumO(layout, "Make text internal (separate copy)", 0, op->type->idname, "resolution", RESOLVE_MAKE_INTERNAL); + uiItemEnumO(layout, "Ignore", 0, op->type->idname, "resolution", RESOLVE_IGNORE); + uiPupMenuEnd(C, pup); } break; case 2: - head= uiPupMenuBegin("File Deleted Outside Blender", 0); - uiMenuItemEnumO(head, "Make text internal", 0, op->type->idname, "resolution", RESOLVE_MAKE_INTERNAL); - uiMenuItemEnumO(head, "Recreate file", 0, op->type->idname, "resolution", RESOLVE_SAVE); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("File Deleted Outside Blender", 0); + layout= uiPupMenuLayout(pup); + uiItemEnumO(layout, "Make text internal", 0, op->type->idname, "resolution", RESOLVE_MAKE_INTERNAL); + uiItemEnumO(layout, "Recreate file", 0, op->type->idname, "resolution", RESOLVE_SAVE); + uiPupMenuEnd(C, pup); break; } diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index 5d149fb2f9b..e968756b11a 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -620,82 +620,82 @@ static void do_view3d_viewmenu(bContext *C, void *arg, int event) } #endif -static void view3d_view_viewnavmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_view_viewnavmenu(bContext *C, uiLayout *layout, void *arg_unused) { -// uiMenuItemO(head, 0, "VIEW3D_OT_view_fly_mode"); +// uiItemO(layout, NULL, 0, "VIEW3D_OT_view_fly_mode"); -// uiMenuSeparator(head); +// uiItemS(layout); - uiMenuItemsEnumO(head, "VIEW3D_OT_view_orbit", "type"); + uiItemsEnumO(layout, "VIEW3D_OT_view_orbit", "type"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemsEnumO(head, "VIEW3D_OT_view_pan", "type"); + uiItemsEnumO(layout, "VIEW3D_OT_view_pan", "type"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemFloatO(head, "Zoom in", 0, "VIEW3D_OT_zoom", "delta", 1.0f); - uiMenuItemFloatO(head, "Zoom out", 0, "VIEW3D_OT_zoom", "delta", -1.0f); + uiItemFloatO(layout, "Zoom in", 0, "VIEW3D_OT_zoom", "delta", 1.0f); + uiItemFloatO(layout, "Zoom out", 0, "VIEW3D_OT_zoom", "delta", -1.0f); } -static void view3d_view_alignviewmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_view_alignviewmenu(bContext *C, uiLayout *layout, void *arg_unused) { } -static void view3d_viewmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) { ScrArea *sa= CTX_wm_area(C); -// uiMenuItemO(head, ICON_MENU_PANEL, "VIEW3D_OT_toggle_transform_orientations_panel"); // Transform Orientations... -// uiMenuItemO(head, ICON_MENU_PANEL, "VIEW3D_OT_toggle_render_preview_panel"); // render preview... -// uiMenuItemO(head, ICON_MENU_PANEL, "VIEW3D_OT_toggle_view_properties_panel"); // View Properties.... -// uiMenuItemO(head, ICON_MENU_PANEL, "VIEW3D_OT_toggle_background_image_panel"); // Background Image.... -// uiMenuItemO(head, ICON_MENU_PANEL, "VIEW3D_OT_toggle_grease_pencil_panel"); // Grease Pencil.... +// uiItemO(layout, ICON_MENU_PANEL, "VIEW3D_OT_toggle_transform_orientations_panel"); // Transform Orientations... +// uiItemO(layout, ICON_MENU_PANEL, "VIEW3D_OT_toggle_render_preview_panel"); // render preview... +// uiItemO(layout, ICON_MENU_PANEL, "VIEW3D_OT_toggle_view_properties_panel"); // View Properties.... +// uiItemO(layout, ICON_MENU_PANEL, "VIEW3D_OT_toggle_background_image_panel"); // Background Image.... +// uiItemO(layout, ICON_MENU_PANEL, "VIEW3D_OT_toggle_grease_pencil_panel"); // Grease Pencil.... -// uiMenuSeparator(head); +// uiItemS(layout); - uiMenuItemEnumO(head, "", 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_CAMERA); - uiMenuItemEnumO(head, "", 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_TOP); - uiMenuItemEnumO(head, "", 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_FRONT); - uiMenuItemEnumO(head, "", 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_RIGHT); + uiItemEnumO(layout, NULL, 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_CAMERA); + uiItemEnumO(layout, NULL, 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_TOP); + uiItemEnumO(layout, NULL, 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_FRONT); + uiItemEnumO(layout, NULL, 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_RIGHT); - //uiMenuLevel(head, "Cameras", view3d_view_camerasmenu); + //uiItemLevel(layout, "Cameras", view3d_view_camerasmenu); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "VIEW3D_OT_view_persportho"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_view_persportho"); - uiMenuSeparator(head); + uiItemS(layout); -// uiMenuItemO(head, 0, "VIEW3D_OT_view_show_all_layers"); +// uiItemO(layout, NULL, 0, "VIEW3D_OT_view_show_all_layers"); -// uiMenuSeparator(head); +// uiItemS(layout); -// uiMenuItemO(head, 0, "VIEW3D_OT_view_local_view"); -// uiMenuItemO(head, 0, "VIEW3D_OT_view_global_view"); +// uiItemO(layout, NULL, 0, "VIEW3D_OT_view_local_view"); +// uiItemO(layout, NULL, 0, "VIEW3D_OT_view_global_view"); -// uiMenuSeparator(head); +// uiItemS(layout); - uiMenuLevel(head, "View Navigation", view3d_view_viewnavmenu); - uiMenuLevel(head, "Align View", view3d_view_alignviewmenu); + uiItemLevel(layout, "View Navigation", 0, view3d_view_viewnavmenu); + uiItemLevel(layout, "Align View", 0, view3d_view_alignviewmenu); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuContext(head, WM_OP_INVOKE_REGION_WIN); + uiLayoutContext(layout, WM_OP_INVOKE_REGION_WIN); - uiMenuItemO(head, 0, "VIEW3D_OT_clipping"); - uiMenuItemO(head, 0, "VIEW3D_OT_zoom_border"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_clipping"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_zoom_border"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "VIEW3D_OT_viewcenter"); - uiMenuItemO(head, 0, "VIEW3D_OT_viewhome"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_viewcenter"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_viewhome"); - uiMenuSeparator(head); + uiItemS(layout); - if(sa->full) uiMenuItemO(head, 0, "SCREEN_OT_screen_full_area"); // "Tile Window", Ctrl UpArrow - else uiMenuItemO(head, 0, "SCREEN_OT_screen_full_area"); // "Maximize Window", Ctr DownArrow + if(sa->full) uiItemO(layout, NULL, 0, "SCREEN_OT_screen_full_area"); // "Tile Window", Ctrl UpArrow + else uiItemO(layout, NULL, 0, "SCREEN_OT_screen_full_area"); // "Maximize Window", Ctr DownArrow } #if 0 static uiBlock *view3d_viewmenu(bContext *C, ARegion *ar, void *arg_unused) @@ -1208,39 +1208,39 @@ static uiBlock *view3d_select_meshmenu(bContext *C, ARegion *ar, void *arg_unuse return block; } -static void view3d_select_curvemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_select_curvemenu(bContext *C, uiLayout *layout, void *arg_unused) { Object *obedit= CTX_data_edit_object(C); - uiMenuItemO(head, 0, "VIEW3D_OT_select_border"); - uiMenuItemO(head, 0, "VIEW3D_OT_select_circle"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_select_border"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_select_circle"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "CURVE_OT_select_all_toggle"); - uiMenuItemO(head, 0, "CURVE_OT_select_invert"); - uiMenuItemO(head, 0, "CURVE_OT_select_random"); // Random... - uiMenuItemO(head, 0, "CURVE_OT_select_every_nth"); // Every Nth.. + uiItemO(layout, NULL, 0, "CURVE_OT_select_all_toggle"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_invert"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_random"); // Random... + uiItemO(layout, NULL, 0, "CURVE_OT_select_every_nth"); // Every Nth.. - uiMenuSeparator(head); + uiItemS(layout); if(obedit->type == OB_SURF) { - uiMenuItemO(head, 0, "CURVE_OT_select_row"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_row"); } else { - uiMenuItemO(head, 0, "CURVE_OT_de_select_first"); - uiMenuItemO(head, 0, "CURVE_OT_de_select_last"); - uiMenuItemO(head, 0, "CURVE_OT_select_next"); - uiMenuItemO(head, 0, "CURVE_OT_select_previous"); + uiItemO(layout, NULL, 0, "CURVE_OT_de_select_first"); + uiItemO(layout, NULL, 0, "CURVE_OT_de_select_last"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_next"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_previous"); } - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "CURVE_OT_select_more"); - uiMenuItemO(head, 0, "CURVE_OT_select_less"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_more"); + uiItemO(layout, NULL, 0, "CURVE_OT_select_less"); /* commented out because it seems to only like the LKEY method - based on mouse pointer position :( */ - /* uiMenuItemO(head, 0, "CURVE_OT_select_linked"); */ + /* uiItemO(layout, NULL, 0, "CURVE_OT_select_linked"); */ #if 0 G.qual |= LR_CTRLKEY; @@ -3288,44 +3288,44 @@ static uiBlock *view3d_edit_meshmenu(bContext *C, ARegion *ar, void *arg_unused) return block; } -static void view3d_edit_curve_controlpointsmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_edit_curve_controlpointsmenu(bContext *C, uiLayout *layout, void *arg_unused) { Object *obedit= CTX_data_edit_object(C); if(obedit->type == OB_CURVE) { - uiMenuItemEnumO(head, "", 0, "TFM_OT_transform", "mode", TFM_TILT); - uiMenuItemO(head, 0, "CURVE_OT_tilt_clear"); - uiMenuItemO(head, 0, "CURVE_OT_separate"); + uiItemEnumO(layout, NULL, 0, "TFM_OT_transform", "mode", TFM_TILT); + uiItemO(layout, NULL, 0, "CURVE_OT_tilt_clear"); + uiItemO(layout, NULL, 0, "CURVE_OT_separate"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemEnumO(head, "", 0, "CURVE_OT_handle_type_set", "type", 1); - uiMenuItemEnumO(head, "", 0, "CURVE_OT_handle_type_set", "type", 3); - uiMenuItemEnumO(head, "", 0, "CURVE_OT_handle_type_set", "type", 2); + uiItemEnumO(layout, NULL, 0, "CURVE_OT_handle_type_set", "type", 1); + uiItemEnumO(layout, NULL, 0, "CURVE_OT_handle_type_set", "type", 3); + uiItemEnumO(layout, NULL, 0, "CURVE_OT_handle_type_set", "type", 2); - uiMenuSeparator(head); + uiItemS(layout); } - // XXX uiMenuItemO(head, 0, "OBJECT_OT_make_vertex_parent"); Make VertexParent|Ctrl P + // XXX uiItemO(layout, NULL, 0, "OBJECT_OT_make_vertex_parent"); Make VertexParent|Ctrl P // make_parent() - // XXX uiMenuItemO(head, 0, "OBJECT_OT_add_hook"); Add Hook| Ctrl H + // XXX uiItemO(layout, NULL, 0, "OBJECT_OT_add_hook"); Add Hook| Ctrl H // add_hook_menu() } -static void view3d_edit_curve_segmentsmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_edit_curve_segmentsmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "CURVE_OT_subdivide"); - uiMenuItemO(head, 0, "CURVE_OT_switch_direction"); + uiItemO(layout, NULL, 0, "CURVE_OT_subdivide"); + uiItemO(layout, NULL, 0, "CURVE_OT_switch_direction"); } -static void view3d_edit_curve_showhidemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_edit_curve_showhidemenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "CURVE_OT_reveal"); - uiMenuItemO(head, 0, "CURVE_OT_hide"); - uiMenuItemBooleanO(head, "Hide Unselected", 0, "CURVE_OT_hide", "unselected", 1); + uiItemO(layout, NULL, 0, "CURVE_OT_reveal"); + uiItemO(layout, NULL, 0, "CURVE_OT_hide"); + uiItemBooleanO(layout, "Hide Unselected", 0, "CURVE_OT_hide", "unselected", 1); } -static void view3d_edit_curvemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_edit_curvemenu(bContext *C, uiLayout *layout, void *arg_unused) { PointerRNA sceneptr; Scene *scene= CTX_data_scene(C); @@ -3338,7 +3338,7 @@ static void view3d_edit_curvemenu(bContext *C, uiMenuItem *head, void *arg_unuse uiDefIconTextBlockBut(block, view3d_edit_mirrormenu, NULL, ICON_RIGHTARROW_THIN, "Mirror", 0, yco-=20, menuwidth, 19, ""); uiDefIconTextBlockBut(block, view3d_edit_snapmenu, NULL, ICON_RIGHTARROW_THIN, "Snap", 0, yco-=20, 120, 19, ""); - uiMenuSeparator(head); + uiItemS(layout); #endif // XXX uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Insert Keyframe|I", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 2, ""); @@ -3347,26 +3347,26 @@ static void view3d_edit_curvemenu(bContext *C, uiMenuItem *head, void *arg_unuse // common_deletekey(); - uiMenuItemO(head, 0, "CURVE_OT_extrude"); - uiMenuItemO(head, 0, "CURVE_OT_duplicate"); - uiMenuItemO(head, 0, "CURVE_OT_separate"); - uiMenuItemO(head, 0, "CURVE_OT_make_segment"); - uiMenuItemO(head, 0, "CURVE_OT_cyclic_toggle"); - uiMenuItemO(head, 0, "CURVE_OT_delete"); // Delete... + uiItemO(layout, NULL, 0, "CURVE_OT_extrude"); + uiItemO(layout, NULL, 0, "CURVE_OT_duplicate"); + uiItemO(layout, NULL, 0, "CURVE_OT_separate"); + uiItemO(layout, NULL, 0, "CURVE_OT_make_segment"); + uiItemO(layout, NULL, 0, "CURVE_OT_cyclic_toggle"); + uiItemO(layout, NULL, 0, "CURVE_OT_delete"); // Delete... - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "Control Points", view3d_edit_curve_controlpointsmenu); - uiMenuLevel(head, "Segments", view3d_edit_curve_segmentsmenu); + uiItemLevel(layout, "Control Points", 0, view3d_edit_curve_controlpointsmenu); + uiItemLevel(layout, "Segments", 0, view3d_edit_curve_segmentsmenu); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemBooleanR(head, &sceneptr, "proportional_editing"); // |O - uiMenuLevelEnumR(head, &sceneptr, "proportional_editing_falloff"); + uiItemR(layout, NULL, 0, &sceneptr, "proportional_editing", 0); // |O + uiItemLevelEnumR(layout, NULL, 0, &sceneptr, "proportional_editing_falloff"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "Show/Hide Control Points", view3d_edit_curve_showhidemenu); + uiItemLevel(layout, "Show/Hide Control Points", 0, view3d_edit_curve_showhidemenu); } static void do_view3d_edit_mball_showhidemenu(bContext *C, void *arg, int event) @@ -3477,43 +3477,43 @@ static uiBlock *view3d_edit_metaballmenu(bContext *C, ARegion *ar, void *arg_unu return block; } -static void view3d_edit_text_charsmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_edit_text_charsmenu(bContext *C, uiLayout *layout, void *arg_unused) { /* the character codes are specified in UTF-8 */ - uiMenuItemStringO(head, "Copyright|Alt C", 0, "FONT_OT_text_insert", "text", "\xC2\xA9"); - uiMenuItemStringO(head, "Registered Trademark|Alt R", 0, "FONT_OT_text_insert", "text", "\xC2\xAE"); + uiItemStringO(layout, "Copyright|Alt C", 0, "FONT_OT_text_insert", "text", "\xC2\xA9"); + uiItemStringO(layout, "Registered Trademark|Alt R", 0, "FONT_OT_text_insert", "text", "\xC2\xAE"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemStringO(head, "Degree Sign|Alt G", 0, "FONT_OT_text_insert", "text", "\xC2\xB0"); - uiMenuItemStringO(head, "Multiplication Sign|Alt x", 0, "FONT_OT_text_insert", "text", "\xC3\x97"); - uiMenuItemStringO(head, "Circle|Alt .", 0, "FONT_OT_text_insert", "text", "\xC2\x8A"); - uiMenuItemStringO(head, "Superscript 1|Alt 1", 0, "FONT_OT_text_insert", "text", "\xC2\xB9"); - uiMenuItemStringO(head, "Superscript 2|Alt 2", 0, "FONT_OT_text_insert", "text", "\xC2\xB2"); - uiMenuItemStringO(head, "Superscript 3|Alt 3", 0, "FONT_OT_text_insert", "text", "\xC2\xB3"); - uiMenuItemStringO(head, "Double >>|Alt >", 0, "FONT_OT_text_insert", "text", "\xC2\xBB"); - uiMenuItemStringO(head, "Double <<|Alt <", 0, "FONT_OT_text_insert", "text", "\xC2\xAB"); - uiMenuItemStringO(head, "Promillage|Alt %", 0, "FONT_OT_text_insert", "text", "\xE2\x80\xB0"); + uiItemStringO(layout, "Degree Sign|Alt G", 0, "FONT_OT_text_insert", "text", "\xC2\xB0"); + uiItemStringO(layout, "Multiplication Sign|Alt x", 0, "FONT_OT_text_insert", "text", "\xC3\x97"); + uiItemStringO(layout, "Circle|Alt .", 0, "FONT_OT_text_insert", "text", "\xC2\x8A"); + uiItemStringO(layout, "Superscript 1|Alt 1", 0, "FONT_OT_text_insert", "text", "\xC2\xB9"); + uiItemStringO(layout, "Superscript 2|Alt 2", 0, "FONT_OT_text_insert", "text", "\xC2\xB2"); + uiItemStringO(layout, "Superscript 3|Alt 3", 0, "FONT_OT_text_insert", "text", "\xC2\xB3"); + uiItemStringO(layout, "Double >>|Alt >", 0, "FONT_OT_text_insert", "text", "\xC2\xBB"); + uiItemStringO(layout, "Double <<|Alt <", 0, "FONT_OT_text_insert", "text", "\xC2\xAB"); + uiItemStringO(layout, "Promillage|Alt %", 0, "FONT_OT_text_insert", "text", "\xE2\x80\xB0"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemStringO(head, "Dutch Florin|Alt F", 0, "FONT_OT_text_insert", "text", "\xC2\xA4"); - uiMenuItemStringO(head, "British Pound|Alt L", 0, "FONT_OT_text_insert", "text", "\xC2\xA3"); - uiMenuItemStringO(head, "Japanese Yen|Alt Y", 0, "FONT_OT_text_insert", "text", "\xC2\xA5"); + uiItemStringO(layout, "Dutch Florin|Alt F", 0, "FONT_OT_text_insert", "text", "\xC2\xA4"); + uiItemStringO(layout, "British Pound|Alt L", 0, "FONT_OT_text_insert", "text", "\xC2\xA3"); + uiItemStringO(layout, "Japanese Yen|Alt Y", 0, "FONT_OT_text_insert", "text", "\xC2\xA5"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemStringO(head, "German S|Alt S", 0, "FONT_OT_text_insert", "text", "\xC3\x9F"); - uiMenuItemStringO(head, "Spanish Question Mark|Alt ?", 0, "FONT_OT_text_insert", "text", "\xC2\xBF"); - uiMenuItemStringO(head, "Spanish Exclamation Mark|Alt !", 0, "FONT_OT_text_insert", "text", "\xC2\xA1"); + uiItemStringO(layout, "German S|Alt S", 0, "FONT_OT_text_insert", "text", "\xC3\x9F"); + uiItemStringO(layout, "Spanish Question Mark|Alt ?", 0, "FONT_OT_text_insert", "text", "\xC2\xBF"); + uiItemStringO(layout, "Spanish Exclamation Mark|Alt !", 0, "FONT_OT_text_insert", "text", "\xC2\xA1"); } -static void view3d_edit_textmenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_edit_textmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "FONT_OT_file_paste"); - uiMenuSeparator(head); - uiMenuLevel(head, "Special Characters", view3d_edit_text_charsmenu); + uiItemO(layout, NULL, 0, "FONT_OT_file_paste"); + uiItemS(layout); + uiItemLevel(layout, "Special Characters", 0, view3d_edit_text_charsmenu); } static void do_view3d_edit_latticemenu(bContext *C, void *arg, int event) @@ -4527,7 +4527,7 @@ uiBlock *view3d_sculpt_inputmenu(bContext *C, ARegion *ar, void *arg_unused) return block; } -static void view3d_sculpt_menu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_sculpt_menu(bContext *C, uiLayout *layout, void *arg_unused) { bScreen *sc= CTX_wm_screen(C); Sculpt *s = CTX_data_tool_settings(C)->sculpt; @@ -4535,30 +4535,30 @@ static void view3d_sculpt_menu(bContext *C, uiMenuItem *head, void *arg_unused) RNA_pointer_create(&sc->id, &RNA_Sculpt, s, &rna); - uiMenuItemBooleanR(head, &rna, "symmetry_x"); - uiMenuItemBooleanR(head, &rna, "symmetry_y"); - uiMenuItemBooleanR(head, &rna, "symmetry_z"); - uiMenuItemBooleanR(head, &rna, "lock_x"); - uiMenuItemBooleanR(head, &rna, "lock_y"); - uiMenuItemBooleanR(head, &rna, "lock_z"); + uiItemR(layout, NULL, 0, &rna, "symmetry_x", 0); + uiItemR(layout, NULL, 0, &rna, "symmetry_y", 0); + uiItemR(layout, NULL, 0, &rna, "symmetry_z", 0); + uiItemR(layout, NULL, 0, &rna, "lock_x", 0); + uiItemR(layout, NULL, 0, &rna, "lock_y", 0); + uiItemR(layout, NULL, 0, &rna, "lock_z", 0); /* Brush settings */ RNA_pointer_create(&sc->id, &RNA_Brush, s->brush, &rna); /* Curve */ - uiMenuSeparator(head); - uiMenuItemEnumO(head, "", 0, "SCULPT_OT_brush_curve_preset", "mode", BRUSH_PRESET_SHARP); - uiMenuItemEnumO(head, "", 0, "SCULPT_OT_brush_curve_preset", "mode", BRUSH_PRESET_SMOOTH); - uiMenuItemEnumO(head, "", 0, "SCULPT_OT_brush_curve_preset", "mode", BRUSH_PRESET_MAX); + uiItemS(layout); + uiItemEnumO(layout, NULL, 0, "SCULPT_OT_brush_curve_preset", "mode", BRUSH_PRESET_SHARP); + uiItemEnumO(layout, NULL, 0, "SCULPT_OT_brush_curve_preset", "mode", BRUSH_PRESET_SMOOTH); + uiItemEnumO(layout, NULL, 0, "SCULPT_OT_brush_curve_preset", "mode", BRUSH_PRESET_MAX); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemBooleanR(head, &rna, "airbrush"); - uiMenuItemBooleanR(head, &rna, "rake"); - uiMenuItemBooleanR(head, &rna, "anchored"); - uiMenuItemBooleanR(head, &rna, "space"); + uiItemR(layout, NULL, 0, &rna, "airbrush", 0); + uiItemR(layout, NULL, 0, &rna, "rake", 0); + uiItemR(layout, NULL, 0, &rna, "anchored", 0); + uiItemR(layout, NULL, 0, &rna, "space", 0); - uiMenuItemBooleanR(head, &rna, "flip_direction"); + uiItemR(layout, NULL, 0, &rna, "flip_direction", 0); } uiBlock *view3d_sculptmenu(bContext *C, ARegion *ar, void *arg_unused) @@ -4695,59 +4695,59 @@ static uiBlock *view3d_faceselmenu(bContext *C, ARegion *ar, void *arg_unused) return block; } -static void view3d_select_particlemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_select_particlemenu(bContext *C, uiLayout *layout, void *arg_unused) { Scene *scene= CTX_data_scene(C); - uiMenuItemO(head, 0, "VIEW3D_OT_select_border"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_select_border"); - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "PARTICLE_OT_select_all_toggle"); - uiMenuItemO(head, 0, "PARTICLE_OT_select_linked"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_all_toggle"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_linked"); if(scene->selectmode & SCE_SELECT_POINT) { - uiMenuItemO(head, 0, "PARTICLE_OT_select_last"); // |W, 4 - uiMenuItemO(head, 0, "PARTICLE_OT_select_first"); // |W, 3 + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_last"); // |W, 4 + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_first"); // |W, 3 } - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "PARTICLE_OT_select_more"); - uiMenuItemO(head, 0, "PARTICLE_OT_select_less"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_more"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_select_less"); } -static void view3d_particle_showhidemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_particle_showhidemenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiMenuItemO(head, 0, "PARTICLE_OT_reveal"); - uiMenuItemO(head, 0, "PARTICLE_OT_hide"); - uiMenuItemBooleanO(head, "Hide Unselected", 0, "PARTICLE_OT_hide", "unselected", 1); + uiItemO(layout, NULL, 0, "PARTICLE_OT_reveal"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_hide"); + uiItemBooleanO(layout, "Hide Unselected", 0, "PARTICLE_OT_hide", "unselected", 1); } -static void view3d_particlemenu(bContext *C, uiMenuItem *head, void *arg_unused) +static void view3d_particlemenu(bContext *C, uiLayout *layout, void *arg_unused) { Scene *scene= CTX_data_scene(C); // XXX uiDefIconTextBut(block, BUTM, 1, ICON_MENU_PANEL, "Particle Edit Properties|N", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 1, ""); // add_blockhandler(sa, VIEW3D_HANDLER_OBJECT, UI_PNL_UNSTOW); - // XXX uiMenuSeparator(head); + // XXX uiItemS(layout); // // XXX uiDefIconTextBut(block, BUTM, 1, (pset->flag & PE_X_MIRROR)? ICON_CHECKBOX_HLT: ICON_CHECKBOX_DEHLT, "X-Axis Mirror Editing", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 6, ""); // pset->flag ^= PE_X_MIRROR; - uiMenuItemO(head, 0, "PARTICLE_OT_mirror"); // |Ctrl M + uiItemO(layout, NULL, 0, "PARTICLE_OT_mirror"); // |Ctrl M - uiMenuSeparator(head); + uiItemS(layout); - uiMenuItemO(head, 0, "PARTICLE_OT_remove_doubles"); // |W, 5 - uiMenuItemO(head, 0, "PARTICLE_OT_delete"); + uiItemO(layout, NULL, 0, "PARTICLE_OT_remove_doubles"); // |W, 5 + uiItemO(layout, NULL, 0, "PARTICLE_OT_delete"); if(scene->selectmode & SCE_SELECT_POINT) - uiMenuItemO(head, 0, "PARTICLE_OT_subdivide"); // |W, 2 - uiMenuItemO(head, 0, "PARTICLE_OT_rekey"); // |W, 1 + uiItemO(layout, NULL, 0, "PARTICLE_OT_subdivide"); // |W, 2 + uiItemO(layout, NULL, 0, "PARTICLE_OT_rekey"); // |W, 1 - uiMenuSeparator(head); + uiItemS(layout); - uiMenuLevel(head, "Show/Hide Particles", view3d_particle_showhidemenu); + uiItemLevel(layout, "Show/Hide Particles", 0, view3d_particle_showhidemenu); } static char *view3d_modeselect_pup(Scene *scene) @@ -5553,18 +5553,20 @@ void view3d_header_buttons(const bContext *C, ARegion *ar) /* edit face toolbox */ static int editmesh_face_toolbox_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("Edit Faces", 0); + pup= uiPupMenuBegin("Edit Faces", 0); + layout= uiPupMenuLayout(pup); - uiMenuItemO(head, 0, "MESH_OT_fill"); - uiMenuItemO(head, 0, "MESH_OT_beauty_fill"); - uiMenuItemO(head, 0, "MESH_OT_quads_convert_to_tris"); - uiMenuItemO(head, 0, "MESH_OT_tris_convert_to_quads"); - uiMenuItemO(head, 0, "MESH_OT_edge_flip"); - uiMenuItemO(head, 0, "MESH_OT_faces_shade_smooth"); - uiMenuItemO(head, 0, "MESH_OT_faces_shade_solid"); - uiPupMenuEnd(C, head); + uiItemO(layout, NULL, 0, "MESH_OT_fill"); + uiItemO(layout, NULL, 0, "MESH_OT_beauty_fill"); + uiItemO(layout, NULL, 0, "MESH_OT_quads_convert_to_tris"); + uiItemO(layout, NULL, 0, "MESH_OT_tris_convert_to_quads"); + uiItemO(layout, NULL, 0, "MESH_OT_edge_flip"); + uiItemO(layout, NULL, 0, "MESH_OT_faces_shade_smooth"); + uiItemO(layout, NULL, 0, "MESH_OT_faces_shade_solid"); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/space_view3d/view3d_snap.c b/source/blender/editors/space_view3d/view3d_snap.c index ad9d3f85538..7b417c94a73 100644 --- a/source/blender/editors/space_view3d/view3d_snap.c +++ b/source/blender/editors/space_view3d/view3d_snap.c @@ -1113,17 +1113,18 @@ int minmax_verts(Object *obedit, float *min, float *max) static int snap_menu_invoke(bContext *C, wmOperator *unused, wmEvent *event) { - uiMenuItem *head= uiPupMenuBegin("Snap", 0); + uiPopupMenu *pup= uiPupMenuBegin("Snap", 0); + uiLayout *layout= uiPupMenuLayout(pup); - uiMenuItemO(head, 0, "VIEW3D_OT_snap_selected_to_grid"); - uiMenuItemO(head, 0, "VIEW3D_OT_snap_selected_to_cursor"); - uiMenuItemO(head, 0, "VIEW3D_OT_snap_selected_to_center"); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "VIEW3D_OT_snap_cursor_to_selected"); - uiMenuItemO(head, 0, "VIEW3D_OT_snap_cursor_to_grid"); - uiMenuItemO(head, 0, "VIEW3D_OT_snap_cursor_to_active"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_snap_selected_to_grid"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_snap_selected_to_cursor"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_snap_selected_to_center"); + uiItemS(layout); + uiItemO(layout, NULL, 0, "VIEW3D_OT_snap_cursor_to_selected"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_snap_cursor_to_grid"); + uiItemO(layout, NULL, 0, "VIEW3D_OT_snap_cursor_to_active"); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); /* this operator is only for a menu, not used further */ return OPERATOR_CANCELLED; diff --git a/source/blender/editors/transform/transform_ops.c b/source/blender/editors/transform/transform_ops.c index f5a581fc4fd..46a6f121990 100644 --- a/source/blender/editors/transform/transform_ops.c +++ b/source/blender/editors/transform/transform_ops.c @@ -119,11 +119,13 @@ static int select_orientation_exec(bContext *C, wmOperator *op) static int select_orientation_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("Orientation", 0); - BIF_menuTransformOrientation(C, head, NULL); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("Orientation", 0); + layout= uiPupMenuLayout(pup); + BIF_menuTransformOrientation(C, layout, NULL); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index df785f92166..06fc7d99659 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -354,19 +354,19 @@ void BIF_selectTransformOrientationValue(bContext *C, int orientation) { v3d->twmode = orientation; } -void BIF_menuTransformOrientation(bContext *C, uiMenuItem *head, void *arg) +void BIF_menuTransformOrientation(bContext *C, uiLayout *layout, void *arg) { ListBase *transform_spaces = &CTX_data_scene(C)->transform_spaces; TransformOrientation *ts; int i= V3D_MANIP_CUSTOM; - uiMenuItemEnumO(head, "", 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_GLOBAL); - uiMenuItemEnumO(head, "", 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_LOCAL); - uiMenuItemEnumO(head, "", 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_NORMAL); - uiMenuItemEnumO(head, "", 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_VIEW); + uiItemEnumO(layout, NULL, 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_GLOBAL); + uiItemEnumO(layout, NULL, 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_LOCAL); + uiItemEnumO(layout, NULL, 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_NORMAL); + uiItemEnumO(layout, NULL, 0, "TFM_OT_select_orientation", "orientation", V3D_MANIP_VIEW); for(ts = transform_spaces->first; ts; ts = ts->next) - uiMenuItemIntO(head, ts->name, 0, "TFM_OT_select_orientation", "custom_index", i++); + uiItemIntO(layout, ts->name, 0, "TFM_OT_select_orientation", "custom_index", i++); } char * BIF_menustringTransformOrientation(const bContext *C, char *title) { diff --git a/source/blender/editors/uvedit/uvedit_unwrap_ops.c b/source/blender/editors/uvedit/uvedit_unwrap_ops.c index 4d12700d98c..be571c132ab 100644 --- a/source/blender/editors/uvedit/uvedit_unwrap_ops.c +++ b/source/blender/editors/uvedit/uvedit_unwrap_ops.c @@ -1284,18 +1284,22 @@ void UV_OT_cube_project(wmOperatorType *ot) static int mapping_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("UV Mapping", 0); - uiMenuItemO(head, 0, "UV_OT_unwrap"); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "UV_OT_cube_project"); - uiMenuItemO(head, 0, "UV_OT_cylinder_project"); - uiMenuItemO(head, 0, "UV_OT_sphere_project"); - uiMenuItemO(head, 0, "UV_OT_project_from_view"); - uiMenuSeparator(head); - uiMenuItemO(head, 0, "UV_OT_reset"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("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 diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h index d131bfc2081..77b0d6e2d49 100644 --- a/source/blender/makesdna/DNA_screen_types.h +++ b/source/blender/makesdna/DNA_screen_types.h @@ -110,6 +110,11 @@ typedef struct Header { struct uiLayout *layout; /* runtime for drawing */ } Header; +typedef struct Menu { + struct MenuType *type; /* runtime */ + struct uiLayout *layout; /* runtime for drawing */ +} Menu; + typedef struct ScrArea { struct ScrArea *next, *prev; diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h index a3dc657217a..0e19a6845da 100644 --- a/source/blender/makesdna/DNA_space_types.h +++ b/source/blender/makesdna/DNA_space_types.h @@ -137,9 +137,9 @@ typedef struct SpaceButs { short re_align; short oldkeypress; /* for keeping track of the sub tab key cycling */ - char pad, flag; + char flag, texact; - char texact, tab[7]; /* storing tabs for each context */ + char tab[8]; /* storing tabs for each context */ } SpaceButs; @@ -418,8 +418,8 @@ typedef struct SpaceImaSel { /* **************** SPACE DEFINES ********************* */ -/* button defines */ -/* warning: the values of these defines are used in sbuts->tabs[7] */ +/* button defines (deprecated) */ +/* warning: the values of these defines are used in sbuts->tabs[8] */ /* sbuts->mainb new */ #define CONTEXT_SCENE 0 #define CONTEXT_OBJECT 1 @@ -429,7 +429,7 @@ typedef struct SpaceImaSel { #define CONTEXT_SCRIPT 5 #define CONTEXT_LOGIC 6 -/* sbuts->mainb old */ +/* sbuts->mainb old (deprecated) */ #define BUTS_VIEW 0 #define BUTS_LAMP 1 #define BUTS_MAT 2 @@ -446,7 +446,7 @@ typedef struct SpaceImaSel { #define BUTS_CONSTRAINT 13 #define BUTS_EFFECTS 14 -/* sbuts->tab new */ +/* sbuts->tab new (deprecated) */ #define TAB_SHADING_MAT 0 #define TAB_SHADING_TEX 1 #define TAB_SHADING_RAD 2 diff --git a/source/blender/makesrna/intern/rna_context.c b/source/blender/makesrna/intern/rna_context.c index d3089917649..ece5b6cc1f9 100644 --- a/source/blender/makesrna/intern/rna_context.c +++ b/source/blender/makesrna/intern/rna_context.c @@ -37,31 +37,31 @@ static PointerRNA rna_Context_manager_get(PointerRNA *ptr) { bContext *C= (bContext*)ptr->data; - return rna_pointer_inherit_refine(ptr, &RNA_Region, CTX_wm_manager(C)); + return rna_pointer_inherit_refine(ptr, &RNA_WindowManager, CTX_wm_manager(C)); } /*static PointerRNA rna_Context_window_get(PointerRNA *ptr) { bContext *C= (bContext*)ptr->data; - return rna_pointer_inherit_refine(ptr, &RNA_Region, CTX_wm_window(C)); + return rna_pointer_inherit_refine(ptr, &RNA_Window, CTX_wm_window(C)); }*/ static PointerRNA rna_Context_screen_get(PointerRNA *ptr) { bContext *C= (bContext*)ptr->data; - return rna_pointer_inherit_refine(ptr, &RNA_Region, CTX_wm_screen(C)); + return rna_pointer_inherit_refine(ptr, &RNA_Screen, CTX_wm_screen(C)); } static PointerRNA rna_Context_area_get(PointerRNA *ptr) { bContext *C= (bContext*)ptr->data; - return rna_pointer_inherit_refine(ptr, &RNA_Region, CTX_wm_area(C)); + return rna_pointer_inherit_refine(ptr, &RNA_Area, CTX_wm_area(C)); } static PointerRNA rna_Context_space_data_get(PointerRNA *ptr) { bContext *C= (bContext*)ptr->data; - return rna_pointer_inherit_refine(ptr, &RNA_Region, CTX_wm_space_data(C)); + return rna_pointer_inherit_refine(ptr, &RNA_Space, CTX_wm_space_data(C)); } static PointerRNA rna_Context_region_get(PointerRNA *ptr) @@ -73,7 +73,7 @@ static PointerRNA rna_Context_region_get(PointerRNA *ptr) /*static PointerRNA rna_Context_region_data_get(PointerRNA *ptr) { bContext *C= (bContext*)ptr->data; - return rna_pointer_inherit_refine(ptr, &RNA_Region, CTX_wm_region_data(C)); + return rna_pointer_inherit_refine(ptr, &RNA_RegionData, CTX_wm_region_data(C)); }*/ static PointerRNA rna_Context_main_get(PointerRNA *ptr) diff --git a/source/blender/makesrna/intern/rna_screen.c b/source/blender/makesrna/intern/rna_screen.c index 5be3130609c..034fd603367 100644 --- a/source/blender/makesrna/intern/rna_screen.c +++ b/source/blender/makesrna/intern/rna_screen.c @@ -37,7 +37,7 @@ EnumPropertyItem region_type_items[] = { {RGN_TYPE_HEADER, "HEADER", "Header", ""}, {RGN_TYPE_CHANNELS, "CHANNELS", "Channels", ""}, {RGN_TYPE_TEMPORARY, "TEMPORARY", "Temporary", ""}, - {RGN_TYPE_UI, "BUTTONS_WINDOW", "Window", ""}, + {RGN_TYPE_UI, "UI", "UI", ""}, {0, NULL, NULL, NULL}}; #ifdef RNA_RUNTIME diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index 9950d70af24..229a260efce 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -341,7 +341,7 @@ static void rna_def_space_text(BlenderRNA *brna) RNA_def_property_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Text", "Text displayed and edited in this space."); RNA_def_property_pointer_funcs(prop, NULL, "rna_SpaceTextEditor_text_set"); - RNA_def_property_update(prop, NC_TEXT|ND_CURSOR, NULL); + RNA_def_property_update(prop, NC_TEXT|NA_EDITED, NULL); /* display */ prop= RNA_def_property(srna, "syntax_highlight", PROP_BOOLEAN, PROP_NONE); diff --git a/source/blender/makesrna/intern/rna_text.c b/source/blender/makesrna/intern/rna_text.c index 838822119e8..3dacd4c0898 100644 --- a/source/blender/makesrna/intern/rna_text.c +++ b/source/blender/makesrna/intern/rna_text.c @@ -40,6 +40,8 @@ #ifdef RNA_RUNTIME +int text_file_modified(Text *text); + static void rna_Text_filename_get(PointerRNA *ptr, char *value) { Text *text= (Text*)ptr->data; @@ -69,6 +71,12 @@ static void rna_Text_filename_set(PointerRNA *ptr, const char *value) text->name= NULL; } +static int rna_Text_modified_get(PointerRNA *ptr) +{ + Text *text= (Text*)ptr->data; + return text_file_modified(text); +} + static void rna_TextLine_line_get(PointerRNA *ptr, char *value) { TextLine *line= (TextLine*)ptr->data; @@ -174,6 +182,11 @@ static void rna_def_text(BlenderRNA *brna) RNA_def_property_clear_flag(prop, PROP_EDITABLE); RNA_def_property_ui_text(prop, "Dirty", "Text file has been edited since last save."); + prop= RNA_def_property(srna, "modified", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_clear_flag(prop, PROP_EDITABLE); + RNA_def_property_boolean_funcs(prop, "rna_Text_modified_get", NULL); + RNA_def_property_ui_text(prop, "Modified", "Text file on disk is different than the one in memory."); + prop= RNA_def_property(srna, "memory", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flags", TXT_ISMEM); RNA_def_property_clear_flag(prop, PROP_EDITABLE); diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 4ad5273dd5d..405ae9a0f74 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -276,6 +276,121 @@ static StructRNA* rna_Header_refine(struct PointerRNA *htr) return (hdr->type)? hdr->type->py_srna: &RNA_Header; } +/* Menu */ + +static int menu_poll(const bContext *C, MenuType *pt) +{ + PointerRNA ptr; + ParameterList *list; + FunctionRNA *func; + void *ret; + int visible; + + RNA_pointer_create(NULL, pt->py_srna, NULL, &ptr); /* dummy */ + func= RNA_struct_find_function(&ptr, "poll"); + + list= RNA_parameter_list_create(&ptr, func); + RNA_parameter_set_lookup(list, "context", &C); + pt->py_call(&ptr, func, list); + + RNA_parameter_get_lookup(list, "visible", &ret); + visible= *(int*)ret; + + RNA_parameter_list_free(list); + + return visible; +} + +static void menu_draw(const bContext *C, Menu *hdr) +{ + PointerRNA mtr; + ParameterList *list; + FunctionRNA *func; + + RNA_pointer_create(&CTX_wm_screen(C)->id, hdr->type->py_srna, hdr, &mtr); + func= RNA_struct_find_function(&mtr, "draw"); + + list= RNA_parameter_list_create(&mtr, func); + RNA_parameter_set_lookup(list, "context", &C); + hdr->type->py_call(&mtr, func, list); + + RNA_parameter_list_free(list); +} + +static void rna_Menu_unregister(const bContext *C, StructRNA *type) +{ + ARegionType *art; + MenuType *mt= RNA_struct_blender_type_get(type); + + if(!mt) + return; + if(!(art=region_type_find(NULL, mt->space_type, RGN_TYPE_HEADER))) + return; + + BLI_freelinkN(&art->menutypes, mt); + RNA_struct_free(&BLENDER_RNA, type); + + /* update while blender is running */ + if(C) + WM_event_add_notifier(C, NC_SCREEN|NA_EDITED, NULL); +} + +static StructRNA *rna_Menu_register(const bContext *C, ReportList *reports, void *data, StructValidateFunc validate, StructCallbackFunc call, StructFreeFunc free) +{ + ARegionType *art; + MenuType *mt, dummymt = {0}; + Menu dummymenu= {0}; + PointerRNA dummymtr; + int have_function[2]; + + /* setup dummy menu & menu type to store static properties in */ + dummymenu.type= &dummymt; + RNA_pointer_create(NULL, &RNA_Menu, &dummymenu, &dummymtr); + + /* validate the python class */ + if(validate(&dummymtr, data, have_function) != 0) + return NULL; + + if(!(art=region_type_find(reports, dummymt.space_type, RGN_TYPE_HEADER))) + return NULL; + + /* check if we have registered this menu type before, and remove it */ + for(mt=art->menutypes.first; mt; mt=mt->next) { + if(strcmp(mt->idname, dummymt.idname) == 0) { + if(mt->py_srna) + rna_Menu_unregister(C, mt->py_srna); + break; + } + } + + /* create a new menu type */ + mt= MEM_callocN(sizeof(MenuType), "python buttons menu"); + memcpy(mt, &dummymt, sizeof(dummymt)); + + mt->py_srna= RNA_def_struct(&BLENDER_RNA, mt->idname, "Menu"); + mt->py_data= data; + mt->py_call= call; + mt->py_free= free; + RNA_struct_blender_type_set(mt->py_srna, mt); + + mt->poll= (have_function[0])? menu_poll: NULL; + mt->draw= (have_function[1])? menu_draw: NULL; + + BLI_addtail(&art->menutypes, mt); + + /* update while blender is running */ + if(C) + WM_event_add_notifier(C, NC_SCREEN|NA_EDITED, NULL); + + return mt->py_srna; +} + +static StructRNA* rna_Menu_refine(struct PointerRNA *mtr) +{ + Menu *hdr= (Menu*)mtr->data; + return (hdr->type)? hdr->type->py_srna: &RNA_Menu; +} + #else static void rna_def_ui_layout(BlenderRNA *brna) @@ -373,11 +488,55 @@ static void rna_def_header(BlenderRNA *brna) RNA_def_property_flag(prop, PROP_REGISTER); } +static void rna_def_menu(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + FunctionRNA *func; + + srna= RNA_def_struct(brna, "Menu", NULL); + RNA_def_struct_ui_text(srna, "Menu", "Editor menu containing buttons."); + RNA_def_struct_sdna(srna, "Menu"); + RNA_def_struct_refine_func(srna, "rna_Menu_refine"); + RNA_def_struct_register_funcs(srna, "rna_Menu_register", "rna_Menu_unregister"); + + /* poll */ + func= RNA_def_function(srna, "poll", NULL); + RNA_def_function_ui_description(func, "Test if the menu is visible or not."); + RNA_def_function_flag(func, FUNC_REGISTER|FUNC_REGISTER_OPTIONAL); + RNA_def_function_return(func, RNA_def_boolean(func, "visible", 1, "", "")); + RNA_def_pointer(func, "context", "Context", "", ""); + + /* draw */ + func= RNA_def_function(srna, "draw", NULL); + RNA_def_function_ui_description(func, "Draw buttons into the menu UI layout."); + RNA_def_function_flag(func, FUNC_REGISTER); + RNA_def_pointer(func, "context", "Context", "", ""); + + prop= RNA_def_property(srna, "layout", PROP_POINTER, PROP_NONE); + RNA_def_property_struct_type(prop, "UILayout"); + + /* registration */ + prop= RNA_def_property(srna, "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); + 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); + 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); +} + void RNA_def_ui(BlenderRNA *brna) { rna_def_ui_layout(brna); rna_def_panel(brna); rna_def_header(brna); + rna_def_menu(brna); } #endif diff --git a/source/blender/python/intern/bpy_ui.c b/source/blender/python/intern/bpy_ui.c index e7143e8f84c..0959cf0b6b6 100644 --- a/source/blender/python/intern/bpy_ui.c +++ b/source/blender/python/intern/bpy_ui.c @@ -63,20 +63,6 @@ static PyObject *Method_pupMenuEnd( PyObject * self, PyObject * args ) Py_RETURN_NONE; } -static PyObject *Method_menuItemO( PyObject * self, PyObject * args ) -{ - PyObject *py_head; - char *opname; - int icon; - - if( !PyArg_ParseTuple( args, "O!is:menuItemO", &PyCObject_Type, &py_head, &icon, &opname)) - return NULL; - - uiMenuItemO(PyCObject_AsVoidPtr(py_head), icon, opname); - - Py_RETURN_NONE; -} - static PyObject *Method_defButO( PyObject * self, PyObject * args ) { uiBut *but; @@ -405,7 +391,6 @@ static PyObject *Method_getWindowPtr( PyObject * self ) static struct PyMethodDef ui_methods[] = { {"pupMenuBegin", (PyCFunction)Method_pupMenuBegin, METH_VARARGS, ""}, {"pupMenuEnd", (PyCFunction)Method_pupMenuEnd, METH_VARARGS, ""}, - {"menuItemO", (PyCFunction)Method_menuItemO, METH_VARARGS, ""}, {"defButO", (PyCFunction)Method_defButO, METH_VARARGS, ""}, {"defAutoButR", (PyCFunction)Method_defAutoButR, METH_VARARGS, ""}, {"pupBlock", (PyCFunction)Method_pupBlock, METH_VARARGS, ""}, diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index c8a0dbd018a..5a10aa4490e 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -201,7 +201,8 @@ void WM_operator_properties_free(PointerRNA *ptr) int WM_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) { PropertyRNA *prop= RNA_struct_find_property(op->ptr, "type"); - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; if(prop==NULL) { printf("WM_menu_invoke: %s has no \"type\" enum property\n", op->type->idname); @@ -210,9 +211,10 @@ int WM_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) printf("WM_menu_invoke: %s \"type\" is not an enum property\n", op->type->idname); } else { - head= uiPupMenuBegin(op->type->name, 0); - uiMenuItemsEnumO(head, op->type->idname, "type"); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin(op->type->name, 0); + layout= uiPupMenuLayout(pup); + uiItemsEnumO(layout, op->type->idname, "type"); + uiPupMenuEnd(C, pup); } return OPERATOR_CANCELLED; @@ -221,11 +223,13 @@ int WM_menu_invoke(bContext *C, wmOperator *op, wmEvent *event) /* op->invoke */ int WM_operator_confirm(bContext *C, wmOperator *op, wmEvent *event) { - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; - head= uiPupMenuBegin("OK?", ICON_HELP); - uiMenuItemO(head, 0, op->type->idname); - uiPupMenuEnd(C, head); + pup= uiPupMenuBegin("OK?", ICON_HELP); + layout= uiPupMenuLayout(pup); + uiItemO(layout, NULL, 0, op->type->idname); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } @@ -370,21 +374,23 @@ static int recentfile_exec(bContext *C, wmOperator *op) static int wm_recentfile_invoke(bContext *C, wmOperator *op, wmEvent *event) { struct RecentFile *recent; - uiMenuItem *head; + uiPopupMenu *pup; + uiLayout *layout; int i, ofs= 0; - head= uiPupMenuBegin("Open Recent", 0); + pup= uiPupMenuBegin("Open Recent", 0); + layout= uiPupMenuLayout(pup); if(G.sce[0]) { - uiMenuItemIntO(head, G.sce, 0, op->type->idname, "nr", 1); + uiItemIntO(layout, G.sce, 0, op->type->idname, "nr", 1); ofs = 1; } for(recent = G.recent_files.first, i=0; (inext, i++) if(strcmp(recent->filename, G.sce)) - uiMenuItemIntO(head, recent->filename, 0, op->type->idname, "nr", i+ofs+1); + uiItemIntO(layout, recent->filename, 0, op->type->idname, "nr", i+ofs+1); - uiPupMenuEnd(C, head); + uiPupMenuEnd(C, pup); return OPERATOR_CANCELLED; } From 76d000fd9625981189d55fc3fbe4619aaeaf1676 Mon Sep 17 00:00:00 2001 From: Shaul Kedem Date: Wed, 22 Apr 2009 19:13:07 +0000 Subject: [PATCH 03/60] height=0; --- source/blender/editors/space_view3d/view3d_buttons.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index 9a9786cebff..f1a748dff3a 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -1726,7 +1726,7 @@ static void view3d_panel_operator_redo(const bContext *C, ARegion *ar, short cnt wmOperator *op; PointerRNA ptr; uiBlock *block; - int height; + int height = 0; block= uiBeginBlock(C, ar, "view3d_panel_operator_redo", UI_EMBOSS); if(uiNewPanel(C, ar, block, "Last Operator", "View3d", 340, 10, 318, height)==0) return; From 6a5a94a8feadaf1cf4d5fca2b73ca68a0582c20b Mon Sep 17 00:00:00 2001 From: Diego Borghetti Date: Wed, 22 Apr 2009 20:54:27 +0000 Subject: [PATCH 04/60] Add clipping option for bitmap draw mode and remove the "test code" from space_info.c --- source/blender/blenfont/intern/blf_glyph.c | 11 ++++++ source/blender/blenfont/intern/blf_internal.c | 27 ++++++++++++--- .../blender/editors/space_info/space_info.c | 34 ------------------- 3 files changed, 33 insertions(+), 39 deletions(-) diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c index 063093efb1d..bdec76e01ff 100644 --- a/source/blender/blenfont/intern/blf_glyph.c +++ b/source/blender/blenfont/intern/blf_glyph.c @@ -543,6 +543,17 @@ int blf_glyph_bitmap_render(FontBLF *font, GlyphBLF *g, float x, float y) if (!gt->image) return(1); + if (font->flags & BLF_CLIPPING) { + if (!BLI_in_rctf(&font->clip_rec, x + font->pos[0], y + font->pos[1])) + return(0); + if (!BLI_in_rctf(&font->clip_rec, x + font->pos[0], y + gt->height + font->pos[1])) + return(0); + if (!BLI_in_rctf(&font->clip_rec, x + gt->width + font->pos[0], y + gt->height + font->pos[1])) + return(0); + if (!BLI_in_rctf(&font->clip_rec, x + gt->width + font->pos[0], y + font->pos[1])) + return(0); + } + glBitmap(0, 0, 0.0, 0.0, x + font->pos[0], y - font->pos[1], (const GLubyte *)&null_bitmap); glPixelStorei(GL_UNPACK_ROW_LENGTH, gt->pitch * 8); glBitmap(gt->width, gt->height, 0.0, gt->pos_y, 0.0, 0.0, (const GLubyte *)gt->image); diff --git a/source/blender/blenfont/intern/blf_internal.c b/source/blender/blenfont/intern/blf_internal.c index d868a0fa32a..bc569e3d080 100644 --- a/source/blender/blenfont/intern/blf_internal.c +++ b/source/blender/blenfont/intern/blf_internal.c @@ -178,14 +178,15 @@ void blf_internal_texture_draw(FontBLF *font, char *str) dy1= -base_line + y + 16.0; if (font->flags & BLF_CLIPPING) { + /* Don't return, just skip this character and check the others. */ if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], dy + font->pos[1])) - return; + goto next_tex_char; if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], dy1 + font->pos[1])) - return; + goto next_tex_char; if (!BLI_in_rctf(&font->clip_rec, dx1 + font->pos[0], dy1 + font->pos[1])) - return; + goto next_tex_char; if (!BLI_in_rctf(&font->clip_rec, dx1 + font->pos[0], dy + font->pos[1])) - return; + goto next_tex_char; } glBegin(GL_QUADS); @@ -202,7 +203,7 @@ void blf_internal_texture_draw(FontBLF *font, char *str) glVertex3f(dx1, dy, z); glEnd(); } - +next_tex_char: pos += cd->advance; } } @@ -213,15 +214,29 @@ void blf_internal_bitmap_draw(FontBLF *font, char *str) CharDataBLF *cd; unsigned char c; GLint alignment; + float dx; data= (FontDataBLF *)font->engine; glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment); glPixelStorei(GL_UNPACK_ALIGNMENT, 1); + dx= 0; while ((c= (unsigned char) *str++)) { cd= &data->chars[c]; + if (font->flags & BLF_CLIPPING) { + /* The same here, always check all the characters. */ + if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], font->pos[1])) + goto next_bitmap_char; + if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], cd->height + font->pos[1])) + goto next_bitmap_char; + if (!BLI_in_rctf(&font->clip_rec, dx + cd->width + font->pos[0], cd->height + font->pos[1])) + goto next_bitmap_char; + if (!BLI_in_rctf(&font->clip_rec, dx + cd->width + font->pos[0], font->pos[1])) + goto next_bitmap_char; + } + if (cd->data_offset==-1) { GLubyte nullBitmap= 0; glBitmap(1, 1, 0, 0, cd->advance, 0, &nullBitmap); @@ -229,6 +244,8 @@ void blf_internal_bitmap_draw(FontBLF *font, char *str) GLubyte *bitmap= &data->bitmap_data[cd->data_offset]; glBitmap(cd->width, cd->height, cd->xorig, cd->yorig, cd->advance, 0, bitmap); } +next_bitmap_char: + dx += cd->advance; } glPixelStorei(GL_UNPACK_ALIGNMENT, alignment); diff --git a/source/blender/editors/space_info/space_info.c b/source/blender/editors/space_info/space_info.c index 66d807eb69c..12f23f03e66 100644 --- a/source/blender/editors/space_info/space_info.c +++ b/source/blender/editors/space_info/space_info.c @@ -48,7 +48,6 @@ #include "ED_screen.h" #include "BIF_gl.h" -#include "BLF_api.h" #include "WM_api.h" #include "WM_types.h" @@ -133,7 +132,6 @@ static void info_main_area_draw(const bContext *C, ARegion *ar) // SpaceInfo *sinfo= (SpaceInfo*)CTX_wm_space_data(C); View2D *v2d= &ar->v2d; float col[3]; - float width, height; /* clear and setup matrix */ UI_GetThemeColor3fv(TH_BACK, col); @@ -143,38 +141,6 @@ static void info_main_area_draw(const bContext *C, ARegion *ar) UI_view2d_view_ortho(C, v2d); /* data... */ - // XXX 2.50 Testing new font library - Diego - glColor3f(1.0, 0.0, 0.0); - BLF_aspect(1.0); - - BLF_size(14, 96); - BLF_position(5.0, 5.0, 0.0); - - width= BLF_width("Hello Blender, size 14, dpi 96"); - height= BLF_height("Hello Blender, size 14, dpi 96"); - - glRectf(7.0, 20.0, 7.0+width, 20.0+height); - glRectf(5.0+width+10.0, 3.0, 5.0+width+10.0+width, 3.0+height); - BLF_draw("Hello Blender, size 14, dpi 96"); - - glColor3f(0.0, 0.0, 1.0); - BLF_size(11, 96); - BLF_position(200.0, 50.0, 0.0); - BLF_enable(BLF_ROTATION); - BLF_rotation(45.0f); - BLF_draw("Another Hello Blender, size 11 and dpi 96!!"); - - glColor3f(0.8, 0.0, 0.7); - BLF_size(12, 72); - BLF_position(200.0, 100.0, 0.0); - BLF_rotation(180.0f); - BLF_draw("Hello World, size 12, dpi 72"); - - glColor3f(0.8, 0.7, 0.5); - BLF_size(12, 96); - BLF_position(5.0, 200.0, 0.0); - BLF_disable(BLF_ROTATION); - BLF_draw("And this make a new glyph cache!!"); /* reset view matrix */ UI_view2d_view_restore(C); From 7ee587c04a040893c86399b6df7b74b22a737206 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 23 Apr 2009 01:53:11 +0000 Subject: [PATCH 05/60] * Tiny UI tweak, moved the checkbox labels closer to the boxes. --- source/blender/editors/interface/interface_widgets.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index 3025b1bfc29..09b5abf31b8 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -1487,7 +1487,7 @@ static void widget_optionbut(uiWidgetColors *wcol, rcti *rect, int state, int ro widgetbase_draw(&wtb, wcol); /* text space */ - rect->xmin += (rect->ymax-rect->ymin) + delta; + rect->xmin += (rect->ymax-rect->ymin)*0.7 + delta; } From d00c3ef2d6339aa01ddbc56bacd20f1ef4473a27 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 23 Apr 2009 05:56:09 +0000 Subject: [PATCH 06/60] Small changes - font->blur was uninitialized - Use Ctrl+Alt+Shift+P to run scripts from the 3d view not Pkey. (still useful for testing) --- source/blender/blenfont/intern/blf_font.c | 1 + source/blender/editors/space_script/script_ops.c | 2 +- source/blender/editors/space_view3d/view3d_ops.c | 2 +- source/blender/python/intern/bpy_rna.c | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c index 9a4c0fdfa30..6d185378c25 100644 --- a/source/blender/blenfont/intern/blf_font.c +++ b/source/blender/blenfont/intern/blf_font.c @@ -368,6 +368,7 @@ FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size) font->name= BLI_strdup(name); font->filename= NULL; font->engine= (void *)face; + font->blur= 0; blf_font_fill(font); return(font); } diff --git a/source/blender/editors/space_script/script_ops.c b/source/blender/editors/space_script/script_ops.c index d2aa9959a9d..25aea4a8d65 100644 --- a/source/blender/editors/space_script/script_ops.c +++ b/source/blender/editors/space_script/script_ops.c @@ -67,6 +67,6 @@ void script_keymap(wmWindowManager *wm) ListBase *keymap= WM_keymap_listbase(wm, "Script", SPACE_SCRIPT, 0); /* TODO - this is just while we have no way to load a text datablock */ - RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", PKEY, KM_PRESS, 0, 0)->ptr, "filename", "test.py"); + RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", PKEY, KM_PRESS, KM_CTRL|KM_SHIFT|KM_ALT, 0)->ptr, "filename", "test.py"); } diff --git a/source/blender/editors/space_view3d/view3d_ops.c b/source/blender/editors/space_view3d/view3d_ops.c index 41ef16bea4a..8292670de8f 100644 --- a/source/blender/editors/space_view3d/view3d_ops.c +++ b/source/blender/editors/space_view3d/view3d_ops.c @@ -224,7 +224,7 @@ void view3d_keymap(wmWindowManager *wm) RNA_enum_set(WM_keymap_add_item(keymap, "PAINT_OT_texture_paint_radial_control", FKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "mode", WM_RADIALCONTROL_STRENGTH); /* TODO - this is just while we have no way to load a text datablock */ - RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", PKEY, KM_PRESS, 0, 0)->ptr, "filename", "test.py"); + RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", PKEY, KM_PRESS, KM_CTRL|KM_SHIFT|KM_ALT, 0)->ptr, "filename", "test.py"); transform_keymap_for_space(wm, keymap, SPACE_VIEW3D); diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index 0b05b11deff..3df0a349a6a 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1989,7 +1989,7 @@ PyObject *pyrna_basetype_unregister(PyObject *self, PyObject *args) BPy_StructRNA *py_srna; StructUnregisterFunc unreg; - if(!PyArg_ParseTuple(args, "O:register", &py_class)) + if(!PyArg_ParseTuple(args, "O:unregister", &py_class)) return NULL; if(!PyType_Check(py_class)) { From 1ed95e0450d9d7e5a98141b209640ffd0283ab9d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 23 Apr 2009 06:58:02 +0000 Subject: [PATCH 07/60] F8Key reloads all python scripts and redraws for quick testing F7 runs test.py also for testing --- source/blender/editors/screen/screen_ops.c | 3 ++ .../editors/space_script/script_edit.c | 30 +++++++++++++++++++ .../editors/space_script/script_intern.h | 1 + .../blender/editors/space_script/script_ops.c | 2 ++ .../blender/editors/space_view3d/view3d_ops.c | 3 -- source/blender/python/BPY_extern.h | 2 +- source/blender/python/intern/bpy_interface.c | 14 ++++++--- source/creator/creator.c | 2 +- 8 files changed, 48 insertions(+), 9 deletions(-) diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index ce7022d8176..85d4d822c0d 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -2446,6 +2446,9 @@ void ED_keymap_screen(wmWindowManager *wm) WM_keymap_verify_item(keymap, "SCREEN_OT_repeat_last", F4KEY, KM_PRESS, 0, 0); WM_keymap_add_item(keymap, "SCREEN_OT_region_flip", F5KEY, KM_PRESS, 0, 0); WM_keymap_verify_item(keymap, "SCREEN_OT_redo_last", F6KEY, KM_PRESS, 0, 0); + + RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", F7KEY, KM_PRESS, 0, 0)->ptr, "filename", "test.py"); + WM_keymap_verify_item(keymap, "SCRIPT_OT_python_run_ui_scripts", F8KEY, KM_PRESS, 0, 0); /* files */ WM_keymap_add_item(keymap, "FILE_OT_exec", RETKEY, KM_PRESS, 0, 0); diff --git a/source/blender/editors/space_script/script_edit.c b/source/blender/editors/space_script/script_edit.c index cc8764fd67d..797302a8652 100644 --- a/source/blender/editors/space_script/script_edit.c +++ b/source/blender/editors/space_script/script_edit.c @@ -86,3 +86,33 @@ void SCRIPT_OT_python_file_run(wmOperatorType *ot) RNA_def_string_file_path(ot->srna, "filename", "", 512, "Filename", ""); } +static int run_ui_scripts_exec(bContext *C, wmOperator *op) +{ +#ifndef DISABLE_PYTHON + BPY_run_ui_scripts(C, 1); /* reload */ +#endif + return OPERATOR_FINISHED; +} + +static int run_ui_scripts_invoke(bContext *C, wmOperator *op, wmEvent *event) +{ + int ret= run_ui_scripts_exec(C, op); + + if(ret==OPERATOR_FINISHED) + WM_event_add_notifier(C, NC_WINDOW, NULL); + + return ret; +} + + +void SCRIPT_OT_python_run_ui_scripts(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Reload Python Interface"; + ot->idname= "SCRIPT_OT_python_run_ui_scripts"; + + /* api callbacks */ + ot->exec= run_ui_scripts_exec; + ot->invoke= run_ui_scripts_invoke; + ot->poll= ED_operator_areaactive; +} diff --git a/source/blender/editors/space_script/script_intern.h b/source/blender/editors/space_script/script_intern.h index e39dd168e71..59858ee6289 100644 --- a/source/blender/editors/space_script/script_intern.h +++ b/source/blender/editors/space_script/script_intern.h @@ -40,6 +40,7 @@ void script_keymap(struct wmWindowManager *wm); /* script_edit.c */ void SCRIPT_OT_python_file_run(struct wmOperatorType *ot); +void SCRIPT_OT_python_run_ui_scripts(struct wmOperatorType *ot); #endif /* ED_SCRIPT_INTERN_H */ diff --git a/source/blender/editors/space_script/script_ops.c b/source/blender/editors/space_script/script_ops.c index 25aea4a8d65..aa35ba54b7f 100644 --- a/source/blender/editors/space_script/script_ops.c +++ b/source/blender/editors/space_script/script_ops.c @@ -60,6 +60,7 @@ void script_operatortypes(void) { WM_operatortype_append(SCRIPT_OT_python_file_run); + WM_operatortype_append(SCRIPT_OT_python_run_ui_scripts); } void script_keymap(wmWindowManager *wm) @@ -68,5 +69,6 @@ void script_keymap(wmWindowManager *wm) /* TODO - this is just while we have no way to load a text datablock */ RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", PKEY, KM_PRESS, KM_CTRL|KM_SHIFT|KM_ALT, 0)->ptr, "filename", "test.py"); + WM_keymap_add_item(keymap, "SCRIPT_OT_python_run_ui_scripts", PKEY, KM_PRESS, KM_SHIFT, 0); } diff --git a/source/blender/editors/space_view3d/view3d_ops.c b/source/blender/editors/space_view3d/view3d_ops.c index 8292670de8f..f4c8607d174 100644 --- a/source/blender/editors/space_view3d/view3d_ops.c +++ b/source/blender/editors/space_view3d/view3d_ops.c @@ -223,9 +223,6 @@ void view3d_keymap(wmWindowManager *wm) RNA_enum_set(WM_keymap_add_item(keymap, "PAINT_OT_weight_paint_radial_control", FKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "mode", WM_RADIALCONTROL_STRENGTH); RNA_enum_set(WM_keymap_add_item(keymap, "PAINT_OT_texture_paint_radial_control", FKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "mode", WM_RADIALCONTROL_STRENGTH); - /* TODO - this is just while we have no way to load a text datablock */ - RNA_string_set(WM_keymap_add_item(keymap, "SCRIPT_OT_python_file_run", PKEY, KM_PRESS, KM_CTRL|KM_SHIFT|KM_ALT, 0)->ptr, "filename", "test.py"); - transform_keymap_for_space(wm, keymap, SPACE_VIEW3D); } diff --git a/source/blender/python/BPY_extern.h b/source/blender/python/BPY_extern.h index d8e4611d9df..ff3e89a6e25 100644 --- a/source/blender/python/BPY_extern.h +++ b/source/blender/python/BPY_extern.h @@ -99,7 +99,7 @@ extern "C" { /* 2.5 UI Scripts */ int BPY_run_python_script( struct bContext *C, const char *filename, struct Text *text ); // 2.5 working int BPY_run_script_space_draw(struct bContext *C, struct SpaceScript * sc); // 2.5 working - void BPY_run_ui_scripts(struct bContext *C); + void BPY_run_ui_scripts(struct bContext *C, int reload); // int BPY_run_script_space_listener(struct bContext *C, struct SpaceScript * sc, struct ARegion *ar, struct wmNotifier *wmn); // 2.5 working void BPY_update_modules( void ); // XXX - annoying, need this for pointers that get out of date diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index c2773e9e7d1..f37137aa42c 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -347,7 +347,7 @@ int BPY_run_python_script_space(const char *modulename, const char *func) #endif /* XXX this is temporary, need a proper script registration system for 2.5 */ -void BPY_run_ui_scripts(bContext *C) +void BPY_run_ui_scripts(bContext *C, int reload) { #ifdef TIME_REGISTRATION double time = PIL_check_seconds_timer(); @@ -396,13 +396,19 @@ void BPY_run_ui_scripts(bContext *C) mod= PyImport_ImportModuleLevel(path, NULL, NULL, NULL, 0); if (mod) { - Py_DECREF(mod); + if (reload) { + PyObject *mod_orig= mod; + mod= PyImport_ReloadModule(mod); + Py_DECREF(mod_orig); + } } - else { + + if(mod) { + Py_DECREF(mod); /* could be NULL from reloading */ + } else { PyErr_Print(); fprintf(stderr, "unable to import \"%s\" %s/%s\n", path, dirname, de->d_name); } - } } diff --git a/source/creator/creator.c b/source/creator/creator.c index 082f2395b3f..2ac65f7a08a 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -529,7 +529,7 @@ int main(int argc, char **argv) */ BPY_post_start_python(); - BPY_run_ui_scripts(C); + BPY_run_ui_scripts(C, 0); /* dont need to reload the first time */ #endif #ifdef WITH_QUICKTIME From 0a12af1f8e658d4944ffa9ac33dc3596d60edbf6 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 23 Apr 2009 08:13:25 +0000 Subject: [PATCH 08/60] 2.5 Last commit from brecht with feature: * Buttons window data context icon new changes depending on active object. Forgot to check for ob==NULL, crashed files. --- source/blender/editors/space_buttons/buttons_header.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/space_buttons/buttons_header.c b/source/blender/editors/space_buttons/buttons_header.c index 5ca8330694e..50fb24c8ac4 100644 --- a/source/blender/editors/space_buttons/buttons_header.c +++ b/source/blender/editors/space_buttons/buttons_header.c @@ -177,10 +177,10 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_WORLD, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_WORLD, 0, 0, "World"); uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_OBJECT_DATA, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_OBJECT, 0, 0, "Object"); uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, dataicon, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_DATA, 0, 0, "Object Data"); - if(ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) + if(ob && ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_MATERIAL, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_MATERIAL, 0, 0, "Material"); uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_TEXTURE, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_TEXTURE, 0, 0, "Texture"); - if(ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) + if(ob && ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PARTICLES, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PARTICLE, 0, 0, "Particles"); uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PHYSICS, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PHYSICS, 0, 0, "Physics"); From e948fe30783928c389817ed288ecede1cd48dc87 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 23 Apr 2009 09:15:42 +0000 Subject: [PATCH 09/60] - fix for python refcounting crashes, remember PyDict_GetItem and PyDict_GetItemString borrow a ref. - the namespace dictionary wasn't being de-allocated for each run. - clear every error after printing it to avoid stale PyObjects hanging about. --- source/blender/python/intern/bpy_interface.c | 21 +++++++++++--------- source/blender/python/intern/bpy_rna.c | 20 ++++++------------- source/blender/python/intern/bpy_ui.c | 2 +- 3 files changed, 19 insertions(+), 24 deletions(-) diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c index f37137aa42c..27dc95a3f44 100644 --- a/source/blender/python/intern/bpy_interface.c +++ b/source/blender/python/intern/bpy_interface.c @@ -179,7 +179,7 @@ int BPY_run_python_script( bContext *C, const char *fn, struct Text *text ) MEM_freeN( buf ); if( PyErr_Occurred( ) ) { - PyErr_Print(); + PyErr_Print(); PyErr_Clear(); BPY_free_compiled_text( text ); PyGILState_Release(gilstate); return 0; @@ -195,10 +195,12 @@ int BPY_run_python_script( bContext *C, const char *fn, struct Text *text ) } if (!py_result) { - PyErr_Print(); + PyErr_Print(); PyErr_Clear(); } else { Py_DECREF( py_result ); } + + Py_DECREF(py_dict); PyGILState_Release(gilstate); //BPY_end_python(); @@ -220,7 +222,7 @@ static void exit_pydraw( SpaceScript * sc, short err ) script = sc->script; if( err ) { - PyErr_Print( ); + PyErr_Print(); PyErr_Clear(); script->flags = 0; /* mark script struct for deletion */ SCRIPT_SET_NULL(script); script->scriptname[0] = '\0'; @@ -327,13 +329,14 @@ int BPY_run_python_script_space(const char *modulename, const char *func) } } - if (!py_result) - PyErr_Print(); - else + if (!py_result) { + PyErr_Print(); PyErr_Clear(); + } else Py_DECREF( py_result ); Py_XDECREF(module); + Py_DECREF(py_dict); PyGILState_Release(gilstate); return 1; @@ -406,7 +409,7 @@ void BPY_run_ui_scripts(bContext *C, int reload) if(mod) { Py_DECREF(mod); /* could be NULL from reloading */ } else { - PyErr_Print(); + PyErr_Print(); PyErr_Clear(); fprintf(stderr, "unable to import \"%s\" %s/%s\n", path, dirname, de->d_name); } } @@ -527,7 +530,7 @@ static float pydriver_error(ChannelDriver *driver) driver->flag |= DRIVER_FLAG_INVALID; /* py expression failed */ fprintf(stderr, "\nError in Driver: The following Python expression failed:\n\t'%s'\n\n", driver->expression); - PyErr_Print(); + PyErr_Print(); PyErr_Clear(); return 0.0f; } @@ -586,7 +589,7 @@ float BPY_pydriver_eval (ChannelDriver *driver) } fprintf(stderr, "\tBPY_pydriver_eval() - couldn't add variable '%s' to namespace \n", dtar->name); - PyErr_Print(); + PyErr_Print(); PyErr_Clear(); } } diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index 3df0a349a6a..d0e5d508325 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -1144,7 +1144,7 @@ static PyObject * pyrna_func_call(PyObject * self, PyObject *args, PyObject *kw) i++; } else if (kw != NULL) - item= PyDict_GetItemString(kw, pid); + item= PyDict_GetItemString(kw, pid); /* borrow ref */ if (item==NULL) { if(flag & PROP_REQUIRED) { @@ -1957,12 +1957,10 @@ PyObject *pyrna_basetype_register(PyObject *self, PyObject *args) } /* get the context, so register callback can do necessary refreshes */ - item= PyDict_GetItemString(PyEval_GetGlobals(), "__bpy_context__"); + item= PyDict_GetItemString(PyEval_GetGlobals(), "__bpy_context__"); /* borrow ref */ - if(item) { + if(item) C= (bContext*)PyCObject_AsVoidPtr(item); - Py_DECREF(item); - } /* call the register callback */ BKE_reports_init(&reports, RPT_PRINT); @@ -1998,18 +1996,14 @@ PyObject *pyrna_basetype_unregister(PyObject *self, PyObject *args) } /* check we got an __rna__ attribute */ - item= PyDict_GetItemString(((PyTypeObject*)py_class)->tp_dict, "__rna__"); + item= PyDict_GetItemString(((PyTypeObject*)py_class)->tp_dict, "__rna__"); /* borrow ref */ if(!item || !BPy_StructRNA_Check(item)) { - if(item) { - Py_DECREF(item); - } PyErr_SetString(PyExc_AttributeError, "expected a Type subclassed from a registerable rna type (no __rna__ property)."); return NULL; } /* check the __rna__ attribute has the right type */ - Py_DECREF(item); py_srna= (BPy_StructRNA*)item; if(py_srna->ptr.type != &RNA_Struct) { @@ -2026,12 +2020,10 @@ PyObject *pyrna_basetype_unregister(PyObject *self, PyObject *args) } /* get the context, so register callback can do necessary refreshes */ - item= PyDict_GetItemString(PyEval_GetGlobals(), "__bpy_context__"); + item= PyDict_GetItemString(PyEval_GetGlobals(), "__bpy_context__"); /* borrow ref */ - if(item) { + if(item) C= (bContext*)PyCObject_AsVoidPtr(item); - Py_DECREF(item); - } /* call unregister */ unreg(C, py_srna->ptr.data); diff --git a/source/blender/python/intern/bpy_ui.c b/source/blender/python/intern/bpy_ui.c index 0959cf0b6b6..b795409c1c9 100644 --- a/source/blender/python/intern/bpy_ui.c +++ b/source/blender/python/intern/bpy_ui.c @@ -344,7 +344,7 @@ static PyObject *Method_registerKey( PyObject * self, PyObject * args ) static bContext *get_py_context__internal(void) { PyObject *globals = PyEval_GetGlobals(); - PyObject *val= PyDict_GetItemString(globals, "__bpy_context__"); + PyObject *val= PyDict_GetItemString(globals, "__bpy_context__"); /* borrow ref */ return PyCObject_AsVoidPtr(val); } From 5eb4d89cec56ba142536fcb0af8cd93c1f88b830 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 23 Apr 2009 09:59:03 +0000 Subject: [PATCH 10/60] 2.5 Make: removing hidden directories from .app failed. --- source/darwin/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/darwin/Makefile b/source/darwin/Makefile index 2df891d5887..35ecc6de8f1 100644 --- a/source/darwin/Makefile +++ b/source/darwin/Makefile @@ -52,7 +52,7 @@ ifeq ($(APPLICATION), blender) @echo "---> copying ui scripts" @cp -R $(NANBLENDERHOME)/release/ui $(DIR)/bin/$(APPLICATION).app/Contents/MacOS/.blender/ endif - @echo "---> removing CVS directories and Mac hidden files from distribution" + @echo "---> removing SNV directories and Mac hidden files from distribution" @find $(DIR)/bin/$(APPLICATION).app -name CVS -prune -exec rm -rf {} \; @find $(DIR)/bin/$(APPLICATION).app -name .DS_Store -exec rm -f {} \; - @find $(DIR)/bin/$(APPLICATION).app -name .svn -exec rm -rf {} \; + @find $(DIR)/bin/$(APPLICATION).app -name .svn -prune -exec rm -rf {} \; From 1b95d684afd7153a16ebb6d9af16b60b56fc1159 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 23 Apr 2009 15:14:19 +0000 Subject: [PATCH 11/60] 2.5 Two small fixes; - restrict collumns in outliner didn't work - pulldown menu buttons had wrong AA color outline. --- source/blender/editors/interface/interface_widgets.c | 2 +- source/blender/editors/space_outliner/outliner.c | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index 09b5abf31b8..45faab19dbe 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -582,7 +582,7 @@ static void widgetbase_draw(uiWidgetBase *wtb, uiWidgetColors *wcol) glTranslatef(1.0*jit[j][0], 1.0*jit[j][1], 0.0f); /* outline */ - glColor4f(wcol->outline[0], wcol->outline[1], wcol->outline[0], 0.125); + glColor4f(wcol->outline[0], wcol->outline[1], wcol->outline[2], 0.125); glBegin(GL_QUAD_STRIP); for(a=0; atotvert; a++) { glVertex2fv(wtb->outer_v[a]); diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index 57e81a233f7..0d632b3e958 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -4228,17 +4228,14 @@ static void outliner_draw_restrictbuts(uiBlock *block, Scene *scene, ARegion *ar bt= uiDefIconButBitS(block, ICONTOG, OB_RESTRICT_VIEW, 0, ICON_RESTRICT_VIEW_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_VIEWX, (short)te->ys, 17, OL_H-1, &(ob->restrictflag), 0, 0, 0, 0, "Restrict/Allow visibility in the 3D View"); uiButSetFunc(bt, restrictbutton_view_cb, scene, ob); - uiButSetFlag(bt, UI_NO_HILITE); bt= uiDefIconButBitS(block, ICONTOG, OB_RESTRICT_SELECT, 0, ICON_RESTRICT_SELECT_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_SELECTX, (short)te->ys, 17, OL_H-1, &(ob->restrictflag), 0, 0, 0, 0, "Restrict/Allow selection in the 3D View"); uiButSetFunc(bt, restrictbutton_sel_cb, scene, ob); - uiButSetFlag(bt, UI_NO_HILITE); bt= uiDefIconButBitS(block, ICONTOG, OB_RESTRICT_RENDER, 0, ICON_RESTRICT_RENDER_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_RENDERX, (short)te->ys, 17, OL_H-1, &(ob->restrictflag), 0, 0, 0, 0, "Restrict/Allow renderability"); uiButSetFunc(bt, restrictbutton_rend_cb, NULL, NULL); - uiButSetFlag(bt, UI_NO_HILITE); uiBlockSetEmboss(block, UI_EMBOSS); } @@ -4277,12 +4274,10 @@ static void outliner_draw_restrictbuts(uiBlock *block, Scene *scene, ARegion *ar bt= uiDefIconButBitI(block, ICONTOGN, eModifierMode_Realtime, 0, ICON_RESTRICT_VIEW_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_VIEWX, (short)te->ys, 17, OL_H-1, &(md->mode), 0, 0, 0, 0, "Restrict/Allow visibility in the 3D View"); uiButSetFunc(bt, restrictbutton_modifier_cb, scene, ob); - uiButSetFlag(bt, UI_NO_HILITE); bt= uiDefIconButBitI(block, ICONTOGN, eModifierMode_Render, 0, ICON_RESTRICT_RENDER_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_RENDERX, (short)te->ys, 17, OL_H-1, &(md->mode), 0, 0, 0, 0, "Restrict/Allow renderability"); uiButSetFunc(bt, restrictbutton_modifier_cb, scene, ob); - uiButSetFlag(bt, UI_NO_HILITE); } else if(tselem->type==TSE_POSE_CHANNEL) { bPoseChannel *pchan= (bPoseChannel *)te->directdata; @@ -4292,7 +4287,6 @@ static void outliner_draw_restrictbuts(uiBlock *block, Scene *scene, ARegion *ar bt= uiDefIconButBitI(block, ICONTOG, BONE_HIDDEN_P, 0, ICON_RESTRICT_VIEW_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_VIEWX, (short)te->ys, 17, OL_H-1, &(bone->flag), 0, 0, 0, 0, "Restrict/Allow visibility in the 3D View"); uiButSetFunc(bt, restrictbutton_bone_cb, NULL, NULL); - uiButSetFlag(bt, UI_NO_HILITE); } else if(tselem->type==TSE_EBONE) { EditBone *ebone= (EditBone *)te->directdata; @@ -4301,7 +4295,6 @@ static void outliner_draw_restrictbuts(uiBlock *block, Scene *scene, ARegion *ar bt= uiDefIconButBitI(block, ICONTOG, BONE_HIDDEN_A, 0, ICON_RESTRICT_VIEW_OFF, (int)ar->v2d.cur.xmax-OL_TOG_RESTRICT_VIEWX, (short)te->ys, 17, OL_H-1, &(ebone->flag), 0, 0, 0, 0, "Restrict/Allow visibility in the 3D View"); uiButSetFunc(bt, restrictbutton_bone_cb, NULL, NULL); - uiButSetFlag(bt, UI_NO_HILITE); } } From efd1a69d6c12d97594c93857365547a56e6792e9 Mon Sep 17 00:00:00 2001 From: Diego Borghetti Date: Thu, 23 Apr 2009 21:57:41 +0000 Subject: [PATCH 12/60] Move texture draw to blf_util.c, now both font used it. A little cleanup on the internal font, it's possible load the old bmfont with: BLF_load_mem(name, NULL, 0) where name can be: helv, helvb or scr. Note that the internal font also support both draw, texture and bitmap, by default always used texture. Remove some old lang function that I left there and don't exist any more because the locale are now in the RNA. Small changes to Style's, so if we build without freetype2 by default go back to the internal font, this is a little ugly (and have the old problem of scale) but now blender always show text (need work a little more there). --- source/blender/blenfont/BLF_api.h | 36 +++--- source/blender/blenfont/intern/blf.c | 14 ++- source/blender/blenfont/intern/blf_glyph.c | 69 +---------- source/blender/blenfont/intern/blf_internal.c | 108 +++++++++++------- source/blender/blenfont/intern/blf_internal.h | 4 + .../blenfont/intern/blf_internal_types.h | 8 -- source/blender/blenfont/intern/blf_lang.c | 7 +- source/blender/blenfont/intern/blf_util.c | 63 ++++++++++ .../editors/interface/interface_style.c | 19 ++- 9 files changed, 187 insertions(+), 141 deletions(-) diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h index adf9742cc9f..510ff550acc 100644 --- a/source/blender/blenfont/BLF_api.h +++ b/source/blender/blenfont/BLF_api.h @@ -43,6 +43,12 @@ int BLF_load_mem(char *name, unsigned char *mem, int mem_size); void BLF_set(int fontid); int BLF_get(void); +/* + * Return the font type, can be freetype2 or internal, -1 if + * some error happen (no current font). + */ +int BLF_type_get(void); + void BLF_aspect(float aspect); void BLF_position(float x, float y, float z); void BLF_size(int size, int dpi); @@ -74,25 +80,17 @@ void BLF_blur(int size); void BLF_enable(int option); void BLF_disable(int option); -/* Read the .Blanguages file, return 1 on success or 0 if fails. */ -int BLF_lang_init(void); - -/* Free the memory allocate for the .Blanguages. */ -void BLF_lang_exit(void); - -/* Set the current Language. */ -void BLF_lang_set(int id); - -/* Return a string with all the Language available. */ -char *BLF_lang_pup(void); - -/* Return the number of invalid lines in the .Blanguages file, - * zero means no error found. +/* + * Search the path directory to the locale files, this try all + * the case for Linux, Win and Mac. */ -int BLF_lang_error(void); +void BLF_lang_init(void); -/* Return the code string for the specified language code. */ -char *BLF_lang_find_code(short langid); +/* Set the current locale. */ +void BLF_lang_set(const char *); + +/* Set the current encoding name. */ +void BLF_lang_encoding_name(const char *str); /* Add a path to the font dir paths. */ void BLF_dir_add(const char *path); @@ -114,4 +112,8 @@ void BLF_dir_free(char **dirs, int count); #define BLF_MODE_TEXTURE 0 #define BLF_MODE_BITMAP 1 +/* font->type */ +#define BLF_FONT_FREETYPE2 0 +#define BLF_FONT_INTERNAL 1 + #endif /* BLF_API_H */ diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c index e5c1e675294..e43d7905cf9 100644 --- a/source/blender/blenfont/intern/blf.c +++ b/source/blender/blenfont/intern/blf.c @@ -185,7 +185,7 @@ int BLF_load_mem(char *name, unsigned char *mem, int mem_size) if (!font) { #ifdef WITH_FREETYPE2 if (!mem || !mem_size) { - printf("Can't load font, %s from memory!!\n", name); + printf("Can't load font: %s from memory!!\n", name); return(-1); } @@ -193,7 +193,7 @@ int BLF_load_mem(char *name, unsigned char *mem, int mem_size) #endif /* WITH_FREETYPE2 */ if (!font) { - printf("Can't load font, %s from memory!!\n", name); + printf("Can't load font: %s from memory!!\n", name); return(-1); } } @@ -215,6 +215,16 @@ int BLF_get(void) return(global_font_cur); } +int BLF_type_get(void) +{ + FontBLF *font; + + font= global_font[global_font_cur]; + if (font) + return(font->type); + return(-1); +} + void BLF_enable(int option) { FontBLF *font; diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c index bdec76e01ff..510204b0f51 100644 --- a/source/blender/blenfont/intern/blf_glyph.c +++ b/source/blender/blenfont/intern/blf_glyph.c @@ -433,69 +433,6 @@ void blf_glyph_free(GlyphBLF *g) MEM_freeN(g); } -static void blf_glyph_texture_draw(float uv[2][2], float dx, float y1, float dx1, float y2) -{ - - glBegin(GL_QUADS); - glTexCoord2f(uv[0][0], uv[0][1]); - glVertex2f(dx, y1); - - glTexCoord2f(uv[0][0], uv[1][1]); - glVertex2f(dx, y2); - - glTexCoord2f(uv[1][0], uv[1][1]); - glVertex2f(dx1, y2); - - glTexCoord2f(uv[1][0], uv[0][1]); - glVertex2f(dx1, y1); - glEnd(); - -} - -static void blf_glyph_texture5_draw(float uv[2][2], float x1, float y1, float x2, float y2) -{ - float soft[25]= { - 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f, - 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, - 2/60.0f, 5/60.0f, 8/60.0f, 5/60.0f, 2/60.0f, - 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, - 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f}; - - float color[4], *fp= soft; - int dx, dy; - - glGetFloatv(GL_CURRENT_COLOR, color); - - for(dx=-2; dx<3; dx++) { - for(dy=-2; dy<3; dy++, fp++) { - glColor4f(color[0], color[1], color[2], fp[0]*color[3]); - blf_glyph_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); - } - } - - glColor4fv(color); -} - -static void blf_glyph_texture3_draw(float uv[2][2], float x1, float y1, float x2, float y2) -{ - float soft[9]= {1/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 4/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 1/16.0f}; - float color[4], *fp= soft; - int dx, dy; - - glGetFloatv(GL_CURRENT_COLOR, color); - - for(dx=-1; dx<2; dx++) { - for(dy=-1; dy<2; dy++, fp++) { - glColor4f(color[0], color[1], color[2], fp[0]*color[3]); - blf_glyph_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); - } - } - - glColor4fv(color); -} - - - int blf_glyph_texture_render(FontBLF *font, GlyphBLF *g, float x, float y) { GlyphTextureBLF *gt; @@ -525,11 +462,11 @@ int blf_glyph_texture_render(FontBLF *font, GlyphBLF *g, float x, float y) glBindTexture(GL_TEXTURE_2D, gt->tex); if (font->blur==3) - blf_glyph_texture3_draw(gt->uv, dx, y1, dx1, y2); + blf_texture3_draw(gt->uv, dx, y1, dx1, y2); else if (font->blur==5) - blf_glyph_texture5_draw(gt->uv, dx, y1, dx1, y2); + blf_texture5_draw(gt->uv, dx, y1, dx1, y2); else - blf_glyph_texture_draw(gt->uv, dx, y1, dx1, y2); + blf_texture_draw(gt->uv, dx, y1, dx1, y2); return(1); } diff --git a/source/blender/blenfont/intern/blf_internal.c b/source/blender/blenfont/intern/blf_internal.c index bc569e3d080..414ec5abead 100644 --- a/source/blender/blenfont/intern/blf_internal.c +++ b/source/blender/blenfont/intern/blf_internal.c @@ -141,7 +141,58 @@ int blf_internal_get_texture(FontBLF *font) void blf_internal_size(FontBLF *font, int size, int dpi) { - return; + /* dpi don't work here and size is limit to: + * helv: 10, 12 + * helvb: 8, 10, 12 + * scr: 12, 14, 15 + */ + font->dpi= dpi; + + if (font->size != size) { + if (!strcmp(font->name, "helv")) { + if (size == 12) { + font->engine= (void *)&blf_font_helv12; + font->size= 12; + } + else { + font->engine= (void *)&blf_font_helv10; + font->size= 10; + } + } + else if (!strcmp(font->name, "helvb")) { + if (size == 10) { + font->engine= (void *)&blf_font_helvb10; + font->size= 10; + } + else if (size == 12) { + font->engine= (void *)&blf_font_helvb12; + font->size= 12; + } + else { + font->engine= (void *)&blf_font_helvb8; + font->size= 8; + } + } + else { /* scr */ + if (size == 14) { + font->engine= (void *)&blf_font_scr14; + font->size= 14; + } + else if (size == 15) { + font->engine= (void *)&blf_font_scr15; + font->size= 15; + } + else { + font->engine= (void *)&blf_font_scr12; + font->size= 12; + } + } + + if (font->mode == BLF_MODE_TEXTURE) { + if (blf_internal_get_texture(font) != 0) + printf("Can't create texture font!!\n"); + } + } } void blf_internal_texture_draw(FontBLF *font, char *str) @@ -149,7 +200,8 @@ void blf_internal_texture_draw(FontBLF *font, char *str) FontDataBLF *data; CharDataBLF *cd; unsigned char c; - float pos, cell_x, cell_y, x, y, z; + float pos, x, y; + float uv[2][2]; int base_line; GLint cur_tex; float dx, dx1, dy, dy1; @@ -159,7 +211,6 @@ void blf_internal_texture_draw(FontBLF *font, char *str) pos= 0; x= 0.0f; y= 0.0f; - z= 0.0f; glGetIntegerv(GL_TEXTURE_2D_BINDING_EXT, &cur_tex); if (cur_tex != data->texid) @@ -169,8 +220,10 @@ void blf_internal_texture_draw(FontBLF *font, char *str) cd= &data->chars[c]; if (cd->data_offset != -1) { - cell_x= (c%16)/16.0; - cell_y= (c/16)/16.0; + uv[0][0]= ((c%16)/16.0) + 1.0/16.0; + uv[0][1]= (c/16)/16.0; + uv[1][0]= (c%16)/16.0; + uv[1][1]= ((c/16)/16.0) + 1.0/16.0; dx= x + pos + 16.0; dx1= x + pos + 0.0; @@ -189,19 +242,12 @@ void blf_internal_texture_draw(FontBLF *font, char *str) goto next_tex_char; } - glBegin(GL_QUADS); - glTexCoord2f(cell_x + 1.0/16.0, cell_y); - glVertex3f(dx, dy, z); - - glTexCoord2f(cell_x + 1.0/16.0, cell_y + 1.0/16.0); - glVertex3f(dx, dy1, z); - - glTexCoord2f(cell_x, cell_y + 1.0/16.0); - glVertex3f(dx1, dy1, z); - - glTexCoord2f(cell_x, cell_y); - glVertex3f(dx1, dy, z); - glEnd(); + if (font->blur == 3) + blf_texture3_draw(uv, dx, dy, dx1, dy1); + else if (font->blur == 5) + blf_texture5_draw(uv, dx, dy, dx1, dy1); + else + blf_texture_draw(uv, dx, dy, dx1, dy1); } next_tex_char: pos += cd->advance; @@ -328,39 +374,19 @@ FontBLF *blf_internal_new(char *name) font->name= BLI_strdup(name); font->filename= NULL; - if (!strcmp(name, "helv10")) { + if (!strcmp(name, "helv")) { font->engine= (void *)&blf_font_helv10; font->size= 10; } #ifndef BLF_INTERNAL_MINIMAL - else if (!strcmp(name, "helv12")) { - font->engine= (void *)&blf_font_helv12; - font->size= 12; - } - else if (!strcmp(name, "helvb8")) { + else if (!strcmp(name, "helvb")) { font->engine= (void *)&blf_font_helvb8; font->size= 8; } - else if (!strcmp(name, "helvb10")) { - font->engine= (void *)&blf_font_helvb10; - font->size= 10; - } - else if (!strcmp(name, "helvb12")) { - font->engine= (void *)&blf_font_helvb12; - font->size= 12; - } - else if (!strcmp(name, "scr12")) { + else if (!strcmp(name, "scr")) { font->engine= (void *)&blf_font_scr12; font->size= 12; } - else if (!strcmp(name, "scr14")) { - font->engine= (void *)&blf_font_scr14; - font->size= 14; - } - else if (!strcmp(name, "scr15")) { - font->engine= (void *)&blf_font_scr15; - font->size= 15; - } #endif else font->engine= NULL; diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h index 87d5938db9c..a042eefb4d9 100644 --- a/source/blender/blenfont/intern/blf_internal.h +++ b/source/blender/blenfont/intern/blf_internal.h @@ -32,6 +32,10 @@ unsigned int blf_next_p2(unsigned int x); unsigned int blf_hash(unsigned int val); int blf_utf8_next(unsigned char *buf, int *iindex); +void blf_texture_draw(float uv[2][2], float dx, float y1, float dx1, float y2); +void blf_texture5_draw(float uv[2][2], float x1, float y1, float x2, float y2); +void blf_texture3_draw(float uv[2][2], float x1, float y1, float x2, float y2); + char *blf_dir_search(const char *file); int blf_dir_split(const char *str, char *file, int *size); diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h index cf42dc69f77..da2d3c17f79 100644 --- a/source/blender/blenfont/intern/blf_internal_types.h +++ b/source/blender/blenfont/intern/blf_internal_types.h @@ -223,12 +223,4 @@ typedef struct DirBLF { char *path; } DirBLF; -/* font->clip_mode */ -#define BLF_CLIP_DISABLE 0 -#define BLF_CLIP_OUT 1 - -/* font->type */ -#define BLF_FONT_FREETYPE2 0 -#define BLF_FONT_INTERNAL 1 - #endif /* BLF_INTERNAL_TYPES_H */ diff --git a/source/blender/blenfont/intern/blf_lang.c b/source/blender/blenfont/intern/blf_lang.c index c871435ff0f..024172d6db4 100644 --- a/source/blender/blenfont/intern/blf_lang.c +++ b/source/blender/blenfont/intern/blf_lang.c @@ -107,7 +107,7 @@ void BLF_lang_init(void) } } -void BLF_lang_set(char *str) +void BLF_lang_set(const char *str) { #if defined (_WIN32) || defined(__APPLE__) char envstr[12]; @@ -140,14 +140,13 @@ void BLF_lang_set(char *str) setlocale(LC_NUMERIC, "C"); #endif - + textdomain(DOMAIN_NAME); bindtextdomain(DOMAIN_NAME, global_messagepath); /* bind_textdomain_codeset(DOMAIN_NAME, global_encoding_name); */ - textdomain(DOMAIN_NAME); strcpy(global_language, str); } -void BLF_lang_encoding(char *str) +void BLF_lang_encoding(const char *str) { strcpy(global_encoding_name, str); /* bind_textdomain_codeset(DOMAIN_NAME, encoding_name); */ diff --git a/source/blender/blenfont/intern/blf_util.c b/source/blender/blenfont/intern/blf_util.c index a4ccbedc38b..8de6aea754b 100644 --- a/source/blender/blenfont/intern/blf_util.c +++ b/source/blender/blenfont/intern/blf_util.c @@ -30,6 +30,8 @@ #include #include +#include "BIF_gl.h" + unsigned int blf_next_p2(unsigned int x) { @@ -129,3 +131,64 @@ int blf_utf8_next(unsigned char *buf, int *iindex) *iindex= index; return(r); } + +void blf_texture_draw(float uv[2][2], float dx, float y1, float dx1, float y2) +{ + + glBegin(GL_QUADS); + glTexCoord2f(uv[0][0], uv[0][1]); + glVertex2f(dx, y1); + + glTexCoord2f(uv[0][0], uv[1][1]); + glVertex2f(dx, y2); + + glTexCoord2f(uv[1][0], uv[1][1]); + glVertex2f(dx1, y2); + + glTexCoord2f(uv[1][0], uv[0][1]); + glVertex2f(dx1, y1); + glEnd(); + +} + +void blf_texture5_draw(float uv[2][2], float x1, float y1, float x2, float y2) +{ + float soft[25]= { + 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f, + 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, + 2/60.0f, 5/60.0f, 8/60.0f, 5/60.0f, 2/60.0f, + 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, + 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f}; + + float color[4], *fp= soft; + int dx, dy; + + glGetFloatv(GL_CURRENT_COLOR, color); + + for(dx=-2; dx<3; dx++) { + for(dy=-2; dy<3; dy++, fp++) { + glColor4f(color[0], color[1], color[2], fp[0]*color[3]); + blf_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); + } + } + + glColor4fv(color); +} + +void blf_texture3_draw(float uv[2][2], float x1, float y1, float x2, float y2) +{ + float soft[9]= {1/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 4/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 1/16.0f}; + float color[4], *fp= soft; + int dx, dy; + + glGetFloatv(GL_CURRENT_COLOR, color); + + for(dx=-1; dx<2; dx++) { + for(dy=-1; dy<2; dy++, fp++) { + glColor4f(color[0], color[1], color[2], fp[0]*color[3]); + blf_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); + } + } + + glColor4fv(color); +} diff --git a/source/blender/editors/interface/interface_style.c b/source/blender/editors/interface/interface_style.c index 99702097329..87e70523870 100644 --- a/source/blender/editors/interface/interface_style.c +++ b/source/blender/editors/interface/interface_style.c @@ -165,7 +165,11 @@ void uiStyleFontDraw(uiFontStyle *fs, rcti *rect, char *str) xofs= rect->xmax - rect->xmin - BLF_width(str); /* clip is very strict, so we give it some space */ - BLF_clipping(rect->xmin-4, rect->ymin-4, rect->xmax+4, rect->ymax+4); + if (BLF_type_get() == BLF_FONT_INTERNAL) + BLF_clipping(rect->xmin-4, rect->ymin-4, rect->xmax+8, rect->ymax+4); + else + BLF_clipping(rect->xmin-4, rect->ymin-4, rect->xmax+4, rect->ymax+4); + BLF_enable(BLF_CLIPPING); if(fs->shadow) @@ -229,12 +233,21 @@ void uiStyleInit(void) if(font->blf_id == -1) font->blf_id= BLF_load_mem("default", (unsigned char*)datatoc_bfont_ttf, datatoc_bfont_ttf_size); } - + + if (font->blf_id == -1) { + /* when all fail, we go back to the internal font. */ + font->blf_id= BLF_load_mem("helv", NULL, 0); + } + if (font->blf_id == -1) printf("uiStyleInit error, no fonts available\n"); else { BLF_set(font->blf_id); - BLF_size(11, U.dpi); /* ? just for speed to initialize? */ + /* ? just for speed to initialize? + * Yes but only if we used the freetype2 library, + * this build the glyph cache and create the texture. + */ + BLF_size(11, U.dpi); BLF_size(12, U.dpi); BLF_size(14, U.dpi); } From 119d0e91452588da5167257d1902b3dfa36817ea Mon Sep 17 00:00:00 2001 From: Michael Fox Date: Fri, 24 Apr 2009 01:17:54 +0000 Subject: [PATCH 13/60] Small comit, added the colour mode (BW,RGB,RGBA) and object type to rna, and added appropriate entries to the UI --- release/ui/buttons_objects.py | 3 +++ release/ui/buttons_scene.py | 1 + source/blender/makesrna/intern/rna_object.c | 20 ++++++++++++++++++++ source/blender/makesrna/intern/rna_scene.c | 11 +++++++++++ 4 files changed, 35 insertions(+) diff --git a/release/ui/buttons_objects.py b/release/ui/buttons_objects.py index 9c1efacf10a..f971d167f7f 100644 --- a/release/ui/buttons_objects.py +++ b/release/ui/buttons_objects.py @@ -62,6 +62,9 @@ class OBJECT_PT_display(ObjectButtonsPanel): if not ob: return + + layout.row() + layout.itemR(ob, "type", text="Object Type") layout.row() layout.itemR(ob, "max_draw_type", text="Type") diff --git a/release/ui/buttons_scene.py b/release/ui/buttons_scene.py index 3d52cfe2c28..89945c1e531 100644 --- a/release/ui/buttons_scene.py +++ b/release/ui/buttons_scene.py @@ -53,6 +53,7 @@ class RENDER_PT_image(RenderButtonsPanel): layout.row() layout.itemR(rd, "quality") + layout.itemR(rd, "color_mode") layout.row() layout.itemR(rd, "placeholders") diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 1df01e4cabf..15763070401 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -442,6 +442,20 @@ static StructRNA *rna_def_object(BlenderRNA *brna) {PARVERT3, "VERTEX_3", "3 Vertices", ""}, {PARBONE, "BONE", "Bone", ""}, {0, NULL, NULL, NULL}}; + + static EnumPropertyItem object_type_items[] = { + {OB_EMPTY, "EMPTY", "Empty", "An Empty/Null Object"}, + {OB_MESH, "MESH", "Mesh", "A Mesh Object"}, + {OB_CURVE, "CURVE", "Curve", "A Curve Object"}, + {OB_SURF, "SURFACE", "Surface", "A Surface Object"}, + {OB_FONT, "TEXT", "Text", "A Text Object"}, + {OB_MBALL, "META", "Meta", "A Meta Object"}, + {OB_LAMP, "LAMP", "Lamp", "A Lamp Object"}, + {OB_CAMERA, "CAMERA", "Camera", "A Camera Object"}, + {OB_WAVE, "WAVE", "Wave", "A Wave Object"}, + {OB_LATTICE, "LATTICE", "Lattice", "A Lattice Object"}, + {OB_ARMATURE, "ARMATURE", "Armature", "An Armature Object"}, + {0, NULL, NULL, NULL}}; static EnumPropertyItem empty_drawtype_items[] = { {OB_ARROWS, "ARROWS", "Arrows", ""}, @@ -519,6 +533,12 @@ static StructRNA *rna_def_object(BlenderRNA *brna) prop= RNA_def_property(srna, "parent", PROP_POINTER, PROP_NONE); RNA_def_property_ui_text(prop, "Parent", "Parent Object"); + prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "type"); + RNA_def_property_enum_items(prop, object_type_items); + RNA_def_property_clear_flag(prop, PROP_EDITABLE); + RNA_def_property_ui_text(prop, "Type", "Type of Object."); + prop= RNA_def_property(srna, "parent_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "partype"); RNA_def_property_enum_items(prop, parent_type_items); diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 5108bdabbc9..225d92a79a5 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -181,6 +181,12 @@ void rna_def_scene_render_data(BlenderRNA *brna) {R_ALPHAKEY, "STRAIGHT", "Straight Alpha", "Transparent RGB and alpha pixels are unmodified"}, {0, NULL, NULL, NULL}}; + static EnumPropertyItem color_mode_items[] ={ + {R_PLANESBW, "BW", "BW", "Images are saved with BW (grayscale) data"}, + {R_PLANES24, "RGB", "RGB", "Images are saved with RGB (color) data"}, + {R_PLANES32, "RGBA", "RGBA", "Images are saved with RGB and Alpha data (if supported)"}, + {0, NULL, NULL, NULL}}; + static EnumPropertyItem octree_resolution_items[] = { {64, "OCTREE_RES_64", "64", ""}, {128, "OCTREE_RES_128", "128", ""}, @@ -210,6 +216,11 @@ void rna_def_scene_render_data(BlenderRNA *brna) RNA_def_struct_nested(brna, srna, "Scene"); RNA_def_struct_ui_text(srna, "Render Data", "Rendering settings for a Scene datablock."); + prop= RNA_def_property(srna, "color_mode", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_bitflag_sdna(prop, NULL, "planes"); + RNA_def_property_enum_items(prop, color_mode_items); + RNA_def_property_ui_text(prop, "Colour Mode", "What Colour Mode images are saved in (BW, RGB, RGBA)"); + prop= RNA_def_property(srna, "resolution_x", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "xsch"); RNA_def_property_range(prop, 4, 10000); From b47c87d7fdffc4b21f13ac93b05d2c010ccf46b8 Mon Sep 17 00:00:00 2001 From: Michael Fox Date: Fri, 24 Apr 2009 01:27:17 +0000 Subject: [PATCH 14/60] just some fixes in rna descriptions --- source/blender/makesrna/intern/rna_object.c | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/source/blender/makesrna/intern/rna_object.c b/source/blender/makesrna/intern/rna_object.c index 15763070401..6a14fec4656 100644 --- a/source/blender/makesrna/intern/rna_object.c +++ b/source/blender/makesrna/intern/rna_object.c @@ -444,17 +444,17 @@ static StructRNA *rna_def_object(BlenderRNA *brna) {0, NULL, NULL, NULL}}; static EnumPropertyItem object_type_items[] = { - {OB_EMPTY, "EMPTY", "Empty", "An Empty/Null Object"}, - {OB_MESH, "MESH", "Mesh", "A Mesh Object"}, - {OB_CURVE, "CURVE", "Curve", "A Curve Object"}, - {OB_SURF, "SURFACE", "Surface", "A Surface Object"}, - {OB_FONT, "TEXT", "Text", "A Text Object"}, - {OB_MBALL, "META", "Meta", "A Meta Object"}, - {OB_LAMP, "LAMP", "Lamp", "A Lamp Object"}, - {OB_CAMERA, "CAMERA", "Camera", "A Camera Object"}, - {OB_WAVE, "WAVE", "Wave", "A Wave Object"}, - {OB_LATTICE, "LATTICE", "Lattice", "A Lattice Object"}, - {OB_ARMATURE, "ARMATURE", "Armature", "An Armature Object"}, + {OB_EMPTY, "EMPTY", "Empty", ""}, + {OB_MESH, "MESH", "Mesh", ""}, + {OB_CURVE, "CURVE", "Curve", ""}, + {OB_SURF, "SURFACE", "Surface", ""}, + {OB_FONT, "TEXT", "Text", ""}, + {OB_MBALL, "META", "Meta", ""}, + {OB_LAMP, "LAMP", "Lamp", ""}, + {OB_CAMERA, "CAMERA", "Camera", ""}, + {OB_WAVE, "WAVE", "Wave", ""}, + {OB_LATTICE, "LATTICE", "Lattice", ""}, + {OB_ARMATURE, "ARMATURE", "Armature", ""}, {0, NULL, NULL, NULL}}; static EnumPropertyItem empty_drawtype_items[] = { From 6028475441437b0ecaa073ce07ef36f178a1aeb6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 24 Apr 2009 11:36:48 +0000 Subject: [PATCH 15/60] patch from Thomas Dinges, falloff out of the stars struct into the mist. --- source/blender/makesrna/intern/rna_world.c | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/source/blender/makesrna/intern/rna_world.c b/source/blender/makesrna/intern/rna_world.c index fbe67e14c78..7a9638af314 100644 --- a/source/blender/makesrna/intern/rna_world.c +++ b/source/blender/makesrna/intern/rna_world.c @@ -237,6 +237,12 @@ static void rna_def_world_mist(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; + + static EnumPropertyItem falloff_items[] = { + {0, "QUADRATIC", "Quadratic", "Mist uses quadratic progression."}, + {1, "LINEAR", "Linear", "Mist uses linear progression."}, + {2, "INVERSE_QUADRATIC", "Inverse Quadratic", "Mist uses inverse quadratic progression."}, + {0, NULL, NULL, NULL}}; srna= RNA_def_struct(brna, "WorldMistSettings", NULL); RNA_def_struct_sdna(srna, "World"); @@ -268,6 +274,11 @@ static void rna_def_world_mist(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "misthi"); RNA_def_property_range(prop, 0, 100); RNA_def_property_ui_text(prop, "Height", "Factor for a less dense mist with increasing height."); + + prop= RNA_def_property(srna, "falloff", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "mistype"); + RNA_def_property_enum_items(prop, falloff_items); + RNA_def_property_ui_text(prop, "Falloff", "Falloff method for mist."); } static void rna_def_world_stars(BlenderRNA *brna) @@ -275,12 +286,6 @@ static void rna_def_world_stars(BlenderRNA *brna) StructRNA *srna; PropertyRNA *prop; - static EnumPropertyItem falloff_items[] = { - {0, "QUADRATIC", "Quadratic", "Mist uses quadratic progression."}, - {1, "LINEAR", "Linear", "Mist uses linear progression."}, - {2, "INVERSE_QUADRATIC", "Inverse Quadratic", "Mist uses inverse quadratic progression."}, - {0, NULL, NULL, NULL}}; - srna= RNA_def_struct(brna, "WorldStarsSettings", NULL); RNA_def_struct_sdna(srna, "World"); RNA_def_struct_nested(brna, srna, "World"); @@ -309,12 +314,7 @@ static void rna_def_world_stars(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "starcolnoise"); RNA_def_property_range(prop, 0, 1); RNA_def_property_ui_text(prop, "Color Randomization", "Randomizes star color."); - - prop= RNA_def_property(srna, "falloff", PROP_ENUM, PROP_NONE); - RNA_def_property_enum_sdna(prop, NULL, "mistype"); - RNA_def_property_enum_items(prop, falloff_items); - RNA_def_property_ui_text(prop, "Falloff", "Falloff method for mist."); - + /* unused prop= RNA_def_property(srna, "color", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "starr"); From 1d3c2b83a1ef5bcd002d3279f130a2475e2c0181 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 27 Apr 2009 10:00:22 +0000 Subject: [PATCH 16/60] 2.50: fix crashes in the text editor due to undo buffer. --- source/blender/blenkernel/intern/text.c | 48 ++++++++++++++----------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/source/blender/blenkernel/intern/text.c b/source/blender/blenkernel/intern/text.c index 47a33bdee66..8e3d59bbc58 100644 --- a/source/blender/blenkernel/intern/text.c +++ b/source/blender/blenkernel/intern/text.c @@ -1282,24 +1282,28 @@ void txt_insert_buf(Text *text, char *in_buffer) /* Undo functions */ /******************/ -#define MAX_UNDO_TEST(x) \ - while (text->undo_pos+x >= text->undo_len) { \ - if(text->undo_len*2 > TXT_MAX_UNDO) { \ - error("Undo limit reached, buffer cleared\n"); \ - MEM_freeN(text->undo_buf); \ - text->undo_len= TXT_INIT_UNDO; \ - text->undo_buf= MEM_mallocN(text->undo_len, "undo buf"); \ - text->undo_pos=-1; \ - return; \ - } else { \ - void *tmp= text->undo_buf; \ - text->undo_buf= MEM_callocN(text->undo_len*2, "undo buf"); \ - memcpy(text->undo_buf, tmp, text->undo_len); \ - text->undo_len*=2; \ - MEM_freeN(tmp); \ - } \ +static int max_undo_test(Text *text, int x) +{ + while (text->undo_pos+x >= text->undo_len) { + if(text->undo_len*2 > TXT_MAX_UNDO) { + /* XXX error("Undo limit reached, buffer cleared\n"); */ + MEM_freeN(text->undo_buf); + text->undo_len= TXT_INIT_UNDO; + text->undo_buf= MEM_mallocN(text->undo_len, "undo buf"); + text->undo_pos=-1; + return 0; + } else { + void *tmp= text->undo_buf; + text->undo_buf= MEM_callocN(text->undo_len*2, "undo buf"); + memcpy(text->undo_buf, tmp, text->undo_len); + text->undo_len*=2; + MEM_freeN(tmp); + } } + return 1; +} + static void dump_buffer(Text *text) { int i= 0; @@ -1445,7 +1449,8 @@ void txt_print_undo(Text *text) static void txt_undo_add_op(Text *text, int op) { - //XXX MAX_UNDO_TEST(2); + if(!max_undo_test(text, 2)) + return; text->undo_pos++; text->undo_buf[text->undo_pos]= op; @@ -1458,7 +1463,8 @@ static void txt_undo_add_block(Text *text, int op, char *buf) length= strlen(buf); - //XXX MAX_UNDO_TEST(length+11); + if(!max_undo_test(text, length+11)) + return; text->undo_pos++; text->undo_buf[text->undo_pos]= op; @@ -1492,7 +1498,8 @@ static void txt_undo_add_block(Text *text, int op, char *buf) void txt_undo_add_toop(Text *text, int op, unsigned int froml, unsigned short fromc, unsigned int tol, unsigned short toc) { - //XXX MAX_UNDO_TEST(15); + if(!max_undo_test(text, 15)) + return; if (froml==tol && fromc==toc) return; @@ -1535,7 +1542,8 @@ void txt_undo_add_toop(Text *text, int op, unsigned int froml, unsigned short fr static void txt_undo_add_charop(Text *text, int op, char c) { - //XXX MAX_UNDO_TEST(4); + if(!max_undo_test(text, 4)) + return; text->undo_pos++; text->undo_buf[text->undo_pos]= op; From 9b82d1474ff29a5ff246b53e75f12319a58bcdff Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 27 Apr 2009 13:44:11 +0000 Subject: [PATCH 17/60] 2.5 Summary of ain features: - Themes and Styles are now editable. - CTRL+U "Save user defaults" now goes to new .B25.blend, so you can use 2.4x and 2.5x next to each other. If B25 doesn't exist, it reads the regular .B.blend - Press Tkey in 3d window for (unfinished) toolbar WIP. It now only shows the last operator, if appropriate. Nkey properties moved to the other side. A lot of work was done on removing old themes for good and properly getting it work with the 2.5 region system. Here's some notes; - Buttons now all have a complete set of colors, based on button classifications (See outliner -> user prefs -> Interface - Theme colors have been extended with basic colors for region types. Currently colors are defined for Window, Header, List/Channels and for Button/Tool views. The screen manager handles this btw, so a TH_BACK will always pick the right backdrop color. - Menu backdrops are in in Button theme colors. Floating Panels will be in the per-space type Themes. - Styles were added in RNA too, but only for the font settings now. Only Panel font, widget font and widget-label work now. The 'group label' will be for templates mostly. Style settings will be expanded with spacing defaults, label conventions, etc. - Label text colors are stored in per-space Theme too, to make sure they fit. Same goes for Panel title color. Note that 'shadow' for fonts can conflict with text colors; shadow color is currently stored in Style... shadow code needs a bit of work still. --- source/blender/blenloader/intern/readfile.c | 2 +- source/blender/blenloader/intern/writefile.c | 3 +- source/blender/editors/include/UI_interface.h | 1 + source/blender/editors/include/UI_resources.h | 49 +- source/blender/editors/interface/interface.c | 17 +- .../editors/interface/interface_draw.c | 65 +- .../editors/interface/interface_intern.h | 19 +- .../editors/interface/interface_layout.c | 2 +- .../editors/interface/interface_panel.c | 15 +- .../editors/interface/interface_utils.c | 41 + .../editors/interface/interface_widgets.c | 396 ++++----- source/blender/editors/interface/resources.c | 765 ++++++++++++------ source/blender/editors/screen/area.c | 75 +- .../editors/space_action/action_draw.c | 2 +- .../blender/editors/space_graph/space_graph.c | 4 +- .../blender/editors/space_node/space_node.c | 2 +- .../editors/space_view3d/space_view3d.c | 78 +- .../editors/space_view3d/view3d_buttons.c | 1 - .../editors/space_view3d/view3d_intern.h | 6 +- .../blender/editors/space_view3d/view3d_ops.c | 5 +- .../editors/space_view3d/view3d_select.c | 8 +- source/blender/makesdna/DNA_screen_types.h | 1 + source/blender/makesdna/DNA_userdef_types.h | 68 +- source/blender/makesrna/intern/rna_userdef.c | 375 ++++++--- .../blender/windowmanager/intern/wm_files.c | 415 +--------- 25 files changed, 1308 insertions(+), 1107 deletions(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 5c176c4a72b..c8484a63b62 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -178,7 +178,7 @@ READ - read associated 'direct data' - link direct data (internal and to LibBlock) - read FileGlobal -- read USER data, only when indicated (file is ~/.B.blend) +- read USER data, only when indicated (file is ~/.B.blend or .B25.blend) - free file - per Library (per Main) - read file diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c index f93ad5eaf2b..b690c708dc3 100644 --- a/source/blender/blenloader/intern/writefile.c +++ b/source/blender/blenloader/intern/writefile.c @@ -2240,8 +2240,7 @@ int BLO_write_file(Main *mainvar, char *dir, int write_flags, ReportList *report return 0; } - BLI_make_file_string(G.sce, userfilename, BLI_gethome(), ".B.blend"); - + BLI_make_file_string(G.sce, userfilename, BLI_gethome(), ".B25.blend"); write_user_block= BLI_streq(dir, userfilename); err= write_file_handle(mainvar, file, NULL,NULL, write_user_block, write_flags); diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index c491dee6ba6..ea1a8efe9fc 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -589,6 +589,7 @@ void uiRegionHeaderLayout(const struct bContext *C, struct ARegion *ar); void uiAnimContextProperty(const struct bContext *C, struct PointerRNA *ptr, struct PropertyRNA **prop, int *index); + /* Styled text draw */ void uiStyleFontSet(struct uiFontStyle *fs); void uiStyleFontDraw(struct uiFontStyle *fs, struct rcti *rect, char *str); diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index c1b009fffac..1315e22133b 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -794,45 +794,31 @@ typedef enum { } BIFColorID; -/* XXX WARNING: this is saved in file, so do not change order! */ enum { - TH_AUTO, /* for buttons, to signal automatic color assignment */ - -// uibutton colors - TH_BUT_OUTLINE, - TH_BUT_NEUTRAL, - TH_BUT_ACTION, - TH_BUT_SETTING, - TH_BUT_SETTING1, - TH_BUT_SETTING2, - TH_BUT_NUM, - TH_BUT_TEXTFIELD, - TH_BUT_POPUP, - TH_BUT_TEXT, - TH_BUT_TEXT_HI, - TH_MENU_BACK, - TH_MENU_ITEM, - TH_MENU_HILITE, - TH_MENU_TEXT, - TH_MENU_TEXT_HI, - - TH_BUT_DRAWTYPE, - TH_REDALERT, - TH_CUSTOM, - - TH_BUT_TEXTFIELD_HI, - TH_ICONFILE, - + TH_THEMEUI, // common colors among spaces TH_BACK, TH_TEXT, TH_TEXT_HI, + TH_TITLE, + TH_HEADER, TH_HEADERDESEL, + TH_HEADER_TEXT, + TH_HEADER_TEXT_HI, + + /* float panels */ TH_PANEL, + TH_PANEL_TEXT, + TH_PANEL_TEXT_HI, + + TH_BUTBACK, + TH_BUTBACK_TEXT, + TH_BUTBACK_TEXT_HI, + TH_SHADE1, TH_SHADE2, TH_HILITE, @@ -947,13 +933,8 @@ void UI_GetColorPtrBlendShade3ubv(char *cp1, char *cp2, char *col, float fac, in // get pointer from RNA pointer int UI_GetIconRNA(struct PointerRNA *ptr); -struct ScrArea; - // internal (blender) usage only, for init and set active -void UI_SetTheme(struct ScrArea *sa); -void ui_theme_init_userdef (void); -void ui_resources_init (void); -void ui_resources_free (void); +void UI_SetTheme(int spacetype, int regionid); /* only for buttons in theme editor! */ char *UI_ThemeGetColorPtr(struct bTheme *btheme, int spacetype, int colorid); diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c index 221ad23a846..22ecd8ee2f8 100644 --- a/source/blender/editors/interface/interface.c +++ b/source/blender/editors/interface/interface.c @@ -650,7 +650,7 @@ void uiDrawBlock(const bContext *C, uiBlock *block) if(block->flag & UI_BLOCK_LOOP) ui_draw_menu_back(&style, block, &rect); else if(block->panel) - ui_draw_panel(ar, &style, block, &rect); + ui_draw_aligned_panel(ar, &style, block, &rect); if(block->drawextra) block->drawextra(C, block); @@ -1970,12 +1970,6 @@ void uiBlockEndAlign(uiBlock *block) { uiBut *prev, *but=NULL, *next; int flag= 0, cols=0, rows=0; - int theme= UI_GetThemeValue(TH_BUT_DRAWTYPE); - - if ( !(ELEM4(theme, TH_MINIMAL, TH_SHADED, TH_ROUNDED, TH_ROUNDSHADED)) ) { - block->flag &= ~UI_BUT_ALIGN; // all 4 flags - return; - } /* auto align: - go back to first button of align start (ALIGN_DOWN) @@ -3052,10 +3046,15 @@ void UI_init(void) ui_resources_init(); } -void UI_init_userdef() +/* after reading userdef file */ +void UI_init_userdef(void) { - uiStyleInit(); + /* fix saved themes */ + init_userdef_do_versions(); + /* set default colors in default theme */ ui_theme_init_userdef(); + + uiStyleInit(); } void UI_exit(void) diff --git a/source/blender/editors/interface/interface_draw.c b/source/blender/editors/interface/interface_draw.c index 153db7aa77d..8be2084ab01 100644 --- a/source/blender/editors/interface/interface_draw.c +++ b/source/blender/editors/interface/interface_draw.c @@ -61,10 +61,7 @@ void uiSetRoundBox(int type) /* Not sure the roundbox function is the best place to change this * if this is undone, its not that big a deal, only makes curves edges * square for the */ - if (UI_GetThemeValue(TH_BUT_DRAWTYPE) == TH_MINIMAL) - roundboxtype= 0; - else - roundboxtype= type; + roundboxtype= type; /* flags to set which corners will become rounded: @@ -77,10 +74,7 @@ void uiSetRoundBox(int type) int uiGetRoundBox(void) { - if (ELEM3(UI_GetThemeValue(TH_BUT_DRAWTYPE), TH_MINIMAL, TH_SHADED, TH_OLDSKOOL)) - return 0; - else - return roundboxtype; + return roundboxtype; } void gl_round_box(int mode, float minx, float miny, float maxx, float maxy, float rad) @@ -176,10 +170,8 @@ void gl_round_box_shade(int mode, float minx, float miny, float maxx, float maxy coldown[1]= color[1]+shadedown; if(coldown[1]<0.0) coldown[1]= 0.0; coldown[2]= color[2]+shadedown; if(coldown[2]<0.0) coldown[2]= 0.0; - if (UI_GetThemeValue(TH_BUT_DRAWTYPE) != TH_MINIMAL) { - glShadeModel(GL_SMOOTH); - glBegin(mode); - } + glShadeModel(GL_SMOOTH); + glBegin(mode); /* start with corner right-bottom */ if(roundboxtype & 4) { @@ -285,10 +277,8 @@ void gl_round_box_vertical_shade(int mode, float minx, float miny, float maxx, f colRight[1]= color[1]+shadeRight; if(colRight[1]<0.0) colRight[1]= 0.0; colRight[2]= color[2]+shadeRight; if(colRight[2]<0.0) colRight[2]= 0.0; - if (UI_GetThemeValue(TH_BUT_DRAWTYPE) != TH_MINIMAL) { - glShadeModel(GL_SMOOTH); - glBegin(mode); - } + glShadeModel(GL_SMOOTH); + glBegin(mode); /* start with corner right-bottom */ if(roundboxtype & 4) { @@ -379,10 +369,8 @@ void uiRoundRect(float minx, float miny, float maxx, float maxy, float rad) } /* set antialias line */ - if (UI_GetThemeValue(TH_BUT_DRAWTYPE) != TH_MINIMAL) { - glEnable( GL_LINE_SMOOTH ); - glEnable( GL_BLEND ); - } + glEnable( GL_LINE_SMOOTH ); + glEnable( GL_BLEND ); gl_round_box(GL_LINE_LOOP, minx, miny, maxx, maxy, rad); @@ -435,10 +423,8 @@ void uiRoundBox(float minx, float miny, float maxx, float maxy, float rad) gl_round_box(GL_POLYGON, minx, miny, maxx, maxy, rad); /* set antialias line */ - if (UI_GetThemeValue(TH_BUT_DRAWTYPE) != TH_MINIMAL) { - glEnable( GL_LINE_SMOOTH ); - glEnable( GL_BLEND ); - } + glEnable( GL_LINE_SMOOTH ); + glEnable( GL_BLEND ); gl_round_box(GL_LINE_LOOP, minx, miny, maxx, maxy, rad); @@ -663,7 +649,7 @@ static void ui_draw_but_CHARTAB(uiBut *but) #endif // INTERNATIONAL #endif -void ui_draw_but_COLORBAND(uiBut *but, rcti *rect) +void ui_draw_but_COLORBAND(uiBut *but, uiWidgetColors *wcol, rcti *rect) { ColorBand *coba; CBData *cbd; @@ -790,7 +776,7 @@ void ui_draw_but_COLORBAND(uiBut *but, rcti *rect) glEnd(); } -void ui_draw_but_NORMAL(uiBut *but, rcti *rect) +void ui_draw_but_NORMAL(uiBut *but, uiWidgetColors *wcol, rcti *rect) { static GLuint displist=0; int a, old[8]; @@ -802,7 +788,7 @@ void ui_draw_but_NORMAL(uiBut *but, rcti *rect) glGetMaterialfv(GL_FRONT, GL_DIFFUSE, diff); /* backdrop */ - UI_ThemeColor(TH_BUT_NEUTRAL); + glColor3ubv(wcol->inner); uiSetRoundBox(15); gl_round_box(GL_POLYGON, rect->xmin, rect->ymin, rect->xmax, rect->ymax, 5.0f); @@ -892,7 +878,14 @@ static void ui_draw_but_curve_grid(rcti *rect, float zoomx, float zoomy, float o } -void ui_draw_but_CURVE(ARegion *ar, uiBut *but, rcti *rect) +static void glColor3ubvShade(char *col, int shade) +{ + glColor3ub(col[0]-shade>0?col[0]-shade:0, + col[1]-shade>0?col[1]-shade:0, + col[2]-shade>0?col[2]-shade:0); +} + +void ui_draw_but_CURVE(ARegion *ar, uiBut *but, uiWidgetColors *wcol, rcti *rect) { CurveMapping *cumap; CurveMap *cuma; @@ -916,27 +909,27 @@ void ui_draw_but_CURVE(ARegion *ar, uiBut *but, rcti *rect) /* backdrop */ if(cumap->flag & CUMA_DO_CLIP) { - UI_ThemeColorShade(TH_BUT_NEUTRAL, -20); + glColor3ubvShade(wcol->inner, -20); glRectf(rect->xmin, rect->ymin, rect->xmax, rect->ymax); - UI_ThemeColor(TH_BUT_NEUTRAL); + glColor3ubv(wcol->inner); glRectf(rect->xmin + zoomx*(cumap->clipr.xmin-offsx), rect->ymin + zoomy*(cumap->clipr.ymin-offsy), rect->xmin + zoomx*(cumap->clipr.xmax-offsx), rect->ymin + zoomy*(cumap->clipr.ymax-offsy)); } else { - UI_ThemeColor(TH_BUT_NEUTRAL); + glColor3ubv(wcol->inner); glRectf(rect->xmin, rect->ymin, rect->xmax, rect->ymax); } /* grid, every .25 step */ - UI_ThemeColorShade(TH_BUT_NEUTRAL, -16); + glColor3ubvShade(wcol->inner, -16); ui_draw_but_curve_grid(rect, zoomx, zoomy, offsx, offsy, 0.25f); /* grid, every 1.0 step */ - UI_ThemeColorShade(TH_BUT_NEUTRAL, -24); + glColor3ubvShade(wcol->inner, -24); ui_draw_but_curve_grid(rect, zoomx, zoomy, offsx, offsy, 1.0f); /* axes */ - UI_ThemeColorShade(TH_BUT_NEUTRAL, -50); + glColor3ubvShade(wcol->inner, -50); glBegin(GL_LINES); glVertex2f(rect->xmin, rect->ymin + zoomy*(-offsy)); glVertex2f(rect->xmax, rect->ymin + zoomy*(-offsy)); @@ -981,7 +974,7 @@ void ui_draw_but_CURVE(ARegion *ar, uiBut *but, rcti *rect) }*/ /* the curve */ - UI_ThemeColorBlend(TH_TEXT, TH_BUT_NEUTRAL, 0.35); + glColor3ubv(wcol->item); glEnable(GL_LINE_SMOOTH); glEnable(GL_BLEND); glBegin(GL_LINE_STRIP); @@ -1035,7 +1028,7 @@ void ui_draw_but_CURVE(ARegion *ar, uiBut *but, rcti *rect) glScissor(scissor[0], scissor[1], scissor[2], scissor[3]); /* outline */ - UI_ThemeColor(TH_BUT_OUTLINE); + glColor3ubv(wcol->outline); fdrawbox(rect->xmin, rect->ymin, rect->xmax, rect->ymax); } diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h index 06041dc202e..8aaec7f31b0 100644 --- a/source/blender/editors/interface/interface_intern.h +++ b/source/blender/editors/interface/interface_intern.h @@ -40,6 +40,7 @@ struct uiHandleButtonData; struct wmEvent; struct wmWindow; struct uiStyle; +struct uiWidgetColors; /* ****************** general defines ************** */ @@ -47,6 +48,7 @@ struct uiStyle; /* for time being separated from functional types */ typedef enum { /* standard set */ + UI_WTYPE_LABEL, UI_WTYPE_TOGGLE, UI_WTYPE_OPTION, UI_WTYPE_RADIO, @@ -353,7 +355,7 @@ void autocomplete_end(struct AutoComplete *autocpl, char *autoname); /* interface_panel.c */ extern int ui_handler_panel_region(struct bContext *C, struct wmEvent *event); -extern void ui_draw_panel(struct ARegion *ar, struct uiStyle *style, uiBlock *block, rcti *rect); +extern void ui_draw_aligned_panel(struct ARegion *ar, struct uiStyle *style, uiBlock *block, rcti *rect); /* interface_draw.c */ extern void ui_dropshadow(rctf *rct, float radius, float aspect, int select); @@ -362,9 +364,9 @@ extern void gl_round_box(int mode, float minx, float miny, float maxx, float max extern void gl_round_box_shade(int mode, float minx, float miny, float maxx, float maxy, float rad, float shadetop, float shadedown); extern void gl_round_box_vertical_shade(int mode, float minx, float miny, float maxx, float maxy, float rad, float shadeLeft, float shadeRight); -void ui_draw_but_COLORBAND(uiBut *but, rcti *rect); -void ui_draw_but_NORMAL(uiBut *but, rcti *rect); -void ui_draw_but_CURVE(ARegion *ar, uiBut *but, rcti *rect); +void ui_draw_but_COLORBAND(uiBut *but, struct uiWidgetColors *wcol, rcti *rect); +void ui_draw_but_NORMAL(uiBut *but, struct uiWidgetColors *wcol, rcti *rect); +void ui_draw_but_CURVE(ARegion *ar, uiBut *but, struct uiWidgetColors *wcol, rcti *rect); /* interface_handlers.c */ @@ -374,11 +376,20 @@ extern void ui_button_active_cancel(const struct bContext *C, uiBut *but); void ui_draw_anti_tria(float x1, float y1, float x2, float y2, float x3, float y3); void ui_draw_menu_back(struct uiStyle *style, uiBlock *block, rcti *rect); extern void ui_draw_but(ARegion *ar, struct uiStyle *style, uiBut *but, rcti *rect); + /* theme color init */ +struct ThemeUI; +void ui_widget_color_init(struct ThemeUI *tui); /* interface_style.c */ void uiStyleInit(void); void uiStyleExit(void); +/* resources.c */ +void init_userdef_do_versions(void); +void ui_theme_init_userdef(void); +void ui_resources_init(void); +void ui_resources_free(void); + /* interface_anim.c */ void ui_but_anim_flag(uiBut *but, float cfra); diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 56acd755205..f9e08d29370 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -1722,7 +1722,7 @@ void uiRegionPanelLayout(const bContext *C, ARegion *ar, int vertical, char *con // XXX this only hides cruft /* clear */ - UI_GetThemeColor3fv(TH_HEADER, col); + UI_GetThemeColor3fv(TH_BACK, col); glClearColor(col[0], col[1], col[2], 0.0); glClear(GL_COLOR_BUFFER_BIT); diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c index 7d1f8d59552..9f86917217c 100644 --- a/source/blender/editors/interface/interface_panel.c +++ b/source/blender/editors/interface/interface_panel.c @@ -575,7 +575,6 @@ void ui_draw_anti_x(float x1, float y1, float x2, float y2) /* x 'icon' for panel header */ static void ui_draw_x_icon(float x, float y) { - UI_ThemeColor(TH_TEXT_HI); ui_draw_anti_x(x, y, x+9.375, y+9.375); @@ -634,7 +633,7 @@ static void ui_draw_panel_dragwidget(rctf *rect) } -static void ui_draw_panel_header_style(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) +static void ui_draw_aligned_panel_header(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) { Panel *panel= block->panel; Panel *pa; @@ -657,7 +656,7 @@ static void ui_draw_panel_header_style(ARegion *ar, uiStyle *style, uiBlock *blo /* active tab */ /* draw text label */ - UI_ThemeColor(TH_TEXT); + UI_ThemeColor(TH_TITLE); hrect= *rect; hrect.xmin= rect->xmin+pnl_icons; @@ -674,7 +673,7 @@ static void ui_draw_panel_header_style(ARegion *ar, uiStyle *style, uiBlock *blo if((pa->runtime_flag & PNL_ACTIVE) && (pa==panel || pa->paneltab==panel)) { float col[3]; - UI_GetThemeColor3fv(TH_TEXT, col); + UI_GetThemeColor3fv(TH_TITLE, col); /* active tab */ if(pa==panel) @@ -705,7 +704,8 @@ static void rectf_scale(rctf *rect, float scale) rect->ymax= centy + sizey; } -void ui_draw_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) +/* panel integrated in buttonswindow, tool/property lists etc */ +void ui_draw_aligned_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) { Panel *panel= block->panel, *prev; rcti headrect; @@ -741,7 +741,7 @@ void ui_draw_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) /* title */ if(!(panel->flag & PNL_CLOSEDX)) { - ui_draw_panel_header_style(ar, style, block, &headrect); + ui_draw_aligned_panel_header(ar, style, block, &headrect); /* itemrect smaller */ itemrect.xmax= headrect.xmax - 10.0f/block->aspect; @@ -776,7 +776,7 @@ void ui_draw_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) if(panel->control & UI_PNL_SOLID) uiSetRoundBox(15); else uiSetRoundBox(3); - UI_ThemeColorShade(TH_HEADER, -120); + UI_ThemeColorShade(TH_BACK, -120); uiRoundRect(rect->xmin, rect->ymin, rect->xmax, headrect.ymax+1, 8); } if(panel->flag & PNL_OVERLAP) { @@ -796,6 +796,7 @@ void ui_draw_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *rect) ofsx= 6; if(panel->control & UI_PNL_CLOSE) { + UI_ThemeColor(TH_TEXT); ui_draw_x_icon(rect->xmin+2+ofsx, rect->ymax+2); ofsx= 22; } diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 3bb7581b16c..67cca059d77 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -55,6 +55,8 @@ #include "WM_api.h" #include "WM_types.h" +#include "interface_intern.h" + #define DEF_BUT_WIDTH 150 #define DEF_ICON_BUT_WIDTH 20 #define DEF_BUT_HEIGHT 20 @@ -326,6 +328,45 @@ int uiDefAutoButsRNA(const bContext *C, uiBlock *block, PointerRNA *ptr) return -y; } +/* temp call, single collumn, test for toolbar only */ +int uiDefAutoButsRNA_single(const bContext *C, uiBlock *block, PointerRNA *ptr) +{ + CollectionPropertyIterator iter; + PropertyRNA *iterprop, *prop; + uiLayout *layout; + char *name; + int x= 0, y= 0; + + layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, x, y, block->panel->sizex, 20); + + uiLayoutColumn(layout); + uiItemL(layout, (char*)RNA_struct_ui_name(ptr->type), 0); + + iterprop= RNA_struct_iterator_property(ptr->type); + RNA_property_collection_begin(ptr, iterprop, &iter); + + for(; iter.valid; RNA_property_collection_next(&iter)) { + prop= iter.ptr.data; + + if(strcmp(RNA_property_identifier(prop), "rna_type") == 0) + continue; + + uiLayoutSplit(layout, 1, 0); + uiLayoutColumn(uiLayoutSub(layout, 0)); + + name= (char*)RNA_property_ui_name(prop); + uiItemL(uiLayoutSub(layout, 0), name, 0); + + uiItemFullR(uiLayoutSub(layout, 0), "", 0, ptr, prop, -1, 0, 0); + } + + RNA_property_collection_end(&iter); + uiLayoutEnd(C, block, layout, &x, &y); + + return -y; +} + + /***************************** ID Utilities *******************************/ typedef struct uiIDPoinParams { diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index 45faab19dbe..703328345e9 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -85,26 +85,14 @@ typedef struct uiWidgetTrias { } uiWidgetTrias; typedef struct uiWidgetStateColors { - float inner_anim[4]; - float inner_anim_sel[4]; - float inner_key[4]; - float inner_key_sel[4]; - float inner_driven[4]; - float inner_driven_sel[4]; + char inner_anim[4]; + char inner_anim_sel[4]; + char inner_key[4]; + char inner_key_sel[4]; + char inner_driven[4]; + char inner_driven_sel[4]; } uiWidgetStateColors; -typedef struct uiWidgetColors { - float outline[3]; - float inner[4]; - float inner_sel[4]; - float item[3]; - float text[3]; - float text_sel[3]; - short shaded; - float shadetop, shadedown; - -} uiWidgetColors; - typedef struct uiWidgetBase { int totvert, halfwayvert; @@ -133,7 +121,7 @@ typedef struct uiWidgetType { void (*state)(struct uiWidgetType *, int state); void (*draw)(uiWidgetColors *, rcti *, int state, int roundboxalign); void (*custom)(uiBut *, uiWidgetColors *, rcti *, int state, int roundboxalign); - void (*text)(uiFontStyle *, uiBut *, rcti *, float *col); + void (*text)(uiFontStyle *, uiWidgetColors *, uiBut *, rcti *); } uiWidgetType; @@ -518,30 +506,34 @@ static void widget_check_trias(uiWidgetTrias *tria, rcti *rect) /* prepares shade colors */ -static void shadecolors4(float *coltop, float *coldown, float *color, float shadetop, float shadedown) +static void shadecolors4(char *coltop, char *coldown, char *color, short shadetop, short shadedown) { - coltop[0]= CLAMPIS(color[0]+shadetop, 0.0f, 1.0f); - coltop[1]= CLAMPIS(color[1]+shadetop, 0.0f, 1.0f); - coltop[2]= CLAMPIS(color[2]+shadetop, 0.0f, 1.0f); + coltop[0]= CLAMPIS(color[0]+shadetop, 0, 255); + coltop[1]= CLAMPIS(color[1]+shadetop, 0, 255); + coltop[2]= CLAMPIS(color[2]+shadetop, 0, 255); coltop[3]= color[3]; - coldown[0]= CLAMPIS(color[0]+shadedown, 0.0f, 1.0f); - coldown[1]= CLAMPIS(color[1]+shadedown, 0.0f, 1.0f); - coldown[2]= CLAMPIS(color[2]+shadedown, 0.0f, 1.0f); + coldown[0]= CLAMPIS(color[0]+shadedown, 0, 255); + coldown[1]= CLAMPIS(color[1]+shadedown, 0, 255); + coldown[2]= CLAMPIS(color[2]+shadedown, 0, 255); coldown[3]= color[3]; } -static void round_box_shade_col4(float *col1, float *col2, float fac) +static void round_box_shade_col4(char *col1, char *col2, float fac) { - float col[4]; + int faci, facm; + char col[4]; - col[0]= (fac*col1[0] + (1.0-fac)*col2[0]); - col[1]= (fac*col1[1] + (1.0-fac)*col2[1]); - col[2]= (fac*col1[2] + (1.0-fac)*col2[2]); - col[3]= (fac*col1[3] + (1.0-fac)*col2[3]); + faci= floor(255.1f*fac); + facm= 255-faci; - glColor4fv(col); + col[0]= (faci*col1[0] + facm*col2[0])>>8; + col[1]= (faci*col1[1] + facm*col2[1])>>8; + col[2]= (faci*col1[2] + facm*col2[2])>>8; + col[3]= (faci*col1[3] + facm*col2[3])>>8; + + glColor4ubv(col); } static void widgetbase_draw(uiWidgetBase *wtb, uiWidgetColors *wcol) @@ -554,14 +546,14 @@ static void widgetbase_draw(uiWidgetBase *wtb, uiWidgetColors *wcol) if(wtb->inner) { if(wcol->shaded==0) { /* filled center, solid */ - glColor4fv(wcol->inner); + glColor4ubv(wcol->inner); glBegin(GL_POLYGON); for(a=0; atotvert; a++) glVertex2fv(wtb->inner_v[a]); glEnd(); } else { - float col1[4], col2[4]; + char col1[4], col2[4]; shadecolors4(col1, col2, wcol->inner, wcol->shadetop, wcol->shadedown); @@ -582,7 +574,7 @@ static void widgetbase_draw(uiWidgetBase *wtb, uiWidgetColors *wcol) glTranslatef(1.0*jit[j][0], 1.0*jit[j][1], 0.0f); /* outline */ - glColor4f(wcol->outline[0], wcol->outline[1], wcol->outline[2], 0.125); + glColor4ub(wcol->outline[0], wcol->outline[1], wcol->outline[2], 32); glBegin(GL_QUAD_STRIP); for(a=0; atotvert; a++) { glVertex2fv(wtb->outer_v[a]); @@ -614,11 +606,11 @@ static void widgetbase_draw(uiWidgetBase *wtb, uiWidgetColors *wcol) glTranslatef(1.0*jit[j][0], 1.0*jit[j][1], 0.0f); if(wtb->tria1.tot) { - glColor4f(wcol->item[0], wcol->item[1], wcol->item[2], 0.125); + glColor4ub(wcol->item[0], wcol->item[1], wcol->item[2], 32); widget_trias_draw(&wtb->tria1); } if(wtb->tria2.tot) { - glColor4f(wcol->item[0], wcol->item[1], wcol->item[2], 0.125); + glColor4ub(wcol->item[0], wcol->item[1], wcol->item[2], 32); widget_trias_draw(&wtb->tria2); } @@ -766,7 +758,7 @@ static void widget_draw_text(uiFontStyle *fstyle, uiBut *but, rcti *rect) } /* draws text and icons for buttons */ -static void widget_draw_text_icon(uiFontStyle *fstyle, uiBut *but, rcti *rect, float *col) +static void widget_draw_text_icon(uiFontStyle *fstyle, uiWidgetColors *wcol, uiBut *but, rcti *rect) { short t, pos, ch; short selsta_tmp, selend_tmp, selsta_draw, selwidth_draw; @@ -811,7 +803,7 @@ static void widget_draw_text_icon(uiFontStyle *fstyle, uiBut *but, rcti *rect, f but->drawstr[selend_tmp]= ch; - UI_ThemeColor(TH_BUT_TEXTFIELD_HI); + glColor3ubv(wcol->item); glRects(rect->xmin+selsta_draw+1, rect->ymin+2, rect->xmin+selwidth_draw+1, rect->ymax-2); } } else { @@ -862,7 +854,7 @@ static void widget_draw_text_icon(uiFontStyle *fstyle, uiBut *but, rcti *rect, f else if(but->flag & UI_TEXT_LEFT) rect->xmin += 5; - glColor3fv(col); + glColor3ubv(wcol->text); widget_draw_text(fstyle, but, rect); } @@ -879,22 +871,22 @@ static void widget_draw_text_icon(uiFontStyle *fstyle, uiBut *but, rcti *rect, f /* uiWidgetStateColors - float inner_anim[4]; - float inner_anim_sel[4]; - float inner_key[4]; - float inner_key_sel[4]; - float inner_driven[4]; - float inner_driven_sel[4]; + char inner_anim[4]; + char inner_anim_sel[4]; + char inner_key[4]; + char inner_key_sel[4]; + char inner_driven[4]; + char inner_driven_sel[4]; */ static struct uiWidgetStateColors wcol_state= { - {0.45, 0.75, 0.3f, 1.0f}, - {0.35, 0.65, 0.2f, 1.0f}, - {0.95, 0.9, 0.4f, 1.0f}, - {0.85, 0.8, 0.3f, 1.0f}, - {0.7f, 0.0, 1.0f, 1.0f}, - {0.6f, 0.0, 0.9f, 1.0f} + {115, 190, 76, 255}, + {90, 166, 51, 255}, + {240, 235, 100, 255}, + {148, 204, 76, 255}, + {180, 0, 255, 255}, + {153, 0, 230, 255} }; /* uiWidgetColors @@ -910,153 +902,172 @@ static struct uiWidgetStateColors wcol_state= { */ static struct uiWidgetColors wcol_num= { - {0.1f, 0.1f, 0.1f}, - {0.7f, 0.7f, 0.7f, 1.0f}, - {0.6f, 0.6f, 0.6f, 1.0f}, - {0.35f, 0.35f, 0.35f}, + {25, 25, 25, 255}, + {180, 180, 180, 255}, + {153, 153, 153, 255}, + {90, 90, 90, 255}, - {0.0f, 0.0f, 0.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {255, 255, 255, 255}, 1, - -0.08f, 0.0f + -20, 0 }; static struct uiWidgetColors wcol_numslider= { - {0.1f, 0.1f, 0.1f}, - {0.7f, 0.7f, 0.7f, 1.0f}, - {0.6f, 0.6f, 0.6f, 1.0f}, - {0.5f, 0.5f, 0.5f}, + {25, 25, 25, 255}, + {180, 180, 180, 255}, + {153, 153, 153, 255}, + {128, 128, 128, 255}, - {0.0f, 0.0f, 0.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {255, 255, 255, 255}, 1, - -0.08f, 0.0f + -20, 0 }; static struct uiWidgetColors wcol_text= { - {0.1f, 0.1f, 0.1f}, - {0.6f, 0.6f, 0.6f, 1.0f}, - {0.6f, 0.6f, 0.6f, 1.0f}, - {0.35f, 0.35f, 0.35f}, + {25, 25, 25, 255}, + {153, 153, 153, 255}, + {153, 153, 153, 255}, + {90, 90, 90, 255}, - {0.0f, 0.0f, 0.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {255, 255, 255, 255}, 1, - 0.0f, 0.1f + 0, 25 }; static struct uiWidgetColors wcol_option= { - {0.0f, 0.0f, 0.0f}, - {0.25f, 0.25f, 0.25f, 1.0f}, - {0.25f, 0.25f, 0.25f, 1.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {63, 63, 63, 255}, + {63, 63, 63, 255}, + {255, 255, 255, 255}, - {0.0f, 0.0f, 0.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {255, 255, 255, 255}, 1, - 0.1f, -0.08f + 25, -20 }; /* button that shows popup */ static struct uiWidgetColors wcol_menu= { - {0.0f, 0.0f, 0.0f}, - {0.25f, 0.25f, 0.25f, 1.0f}, - {0.25f, 0.25f, 0.25f, 1.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {63, 63, 63, 255}, + {63, 63, 63, 255}, + {255, 255, 255, 255}, - {1.0f, 1.0f, 1.0f}, - {0.8f, 0.8f, 0.8f}, + {255, 255, 255, 255}, + {204, 204, 204, 255}, 1, - 0.1f, -0.08f + 25, -20 }; /* button that starts pulldown */ static struct uiWidgetColors wcol_pulldown= { - {0.0f, 0.0f, 0.0f}, - {0.25f, 0.25f, 0.25f, 1.0f}, - {0.18f, 0.48f, 0.85f, 1.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {63, 63, 63, 255}, + {46, 124, 217, 255}, + {255, 255, 255, 255}, - {1.0f, 1.0f, 1.0f}, - {0.0f, 0.0f, 0.0f}, + {255, 255, 255, 255}, + {0, 0, 0, 255}, 0, - 0.1f, -0.08f + 25, -20 }; /* button inside menu */ static struct uiWidgetColors wcol_menu_item= { - {0.0f, 0.0f, 0.0f}, - {0.0f, 0.0f, 0.0f, 0.3}, - {0.23f, 0.53f, 0.9f, 1.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {0, 0, 0, 76}, + {59, 135, 230, 255}, + {255, 255, 255, 255}, - {1.0f, 1.0f, 1.0f}, - {0.0f, 0.0f, 0.0f}, + {255, 255, 255, 255}, + {0, 0, 0, 255}, 0, - 0.15f, 0.0f + 38, 0 }; /* backdrop menu + title text color */ static struct uiWidgetColors wcol_menu_back= { - {0.0f, 0.0f, 0.0f}, - {0.0f, 0.0f, 0.0f, 0.6}, - {0.18f, 0.48f, 0.85f, 0.8f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {0, 0, 0, 153}, + {46, 124, 217, 204}, + {255, 255, 255, 255}, - {1.0f, 1.0f, 1.0f}, - {0.0f, 0.0f, 0.0f}, + {255, 255, 255, 255}, + {0, 0, 0, 255}, 0, - 0.1f, -0.08f + 25, -20 }; static struct uiWidgetColors wcol_radio= { - {0.0f, 0.0f, 0.0f}, - {0.25f, 0.25f, 0.25f, 1.0f}, - {0.34f, 0.5f, 0.76f, 1.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {63, 63, 63, 255}, + {86, 128, 194, 255}, + {255, 255, 255, 255}, - {1.0f, 1.0f, 1.0f}, - {0.0f, 0.0f, 0.0f}, + {255, 255, 255, 255}, + {0, 0, 0, 255}, 1, - 0.1f, -0.1f + 25, -25 }; static struct uiWidgetColors wcol_regular= { - {0.1f, 0.1f, 0.1f}, - {0.6f, 0.6f, 0.6f, 1.0f}, - {0.4f, 0.4f, 0.4f, 1.0f}, - {0.1f, 0.1f, 0.1f}, + {25, 25, 25, 255}, + {153, 153, 153, 255}, + {100, 100, 100, 255}, + {25, 25, 25, 255}, - {0.0f, 0.0f, 0.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {255, 255, 255, 255}, 0, - 0.0f, 0.0f + 0, 0 }; -static struct uiWidgetColors wcol_regular_shade= { - {0.1f, 0.1f, 0.1f}, - {0.6f, 0.6f, 0.6f, 1.0f}, - {0.4f, 0.4f, 0.4f, 1.0f}, - {0.1f, 0.1f, 0.1f}, +static struct uiWidgetColors wcol_tool= { + {25, 25, 25, 255}, + {153, 153, 153, 255}, + {100, 100, 100, 255}, + {25, 25, 25, 255}, - {0.0f, 0.0f, 0.0f}, - {1.0f, 1.0f, 1.0f}, + {0, 0, 0, 255}, + {255, 255, 255, 255}, 1, - 0.1f, -0.1f + 25, -25 }; +/* called for theme init (new theme) and versions */ +void ui_widget_color_init(ThemeUI *tui) +{ + + tui->wcol_regular= wcol_regular; + tui->wcol_tool= wcol_tool; + tui->wcol_radio= wcol_radio; + tui->wcol_text= wcol_text; + tui->wcol_option= wcol_option; + tui->wcol_num= wcol_num; + tui->wcol_numslider= wcol_numslider; + tui->wcol_menu= wcol_menu; + tui->wcol_pulldown= wcol_pulldown; + tui->wcol_menu_back= wcol_menu_back; + tui->wcol_menu_item= wcol_menu_item; + + tui->iconfile[0]= 0; +} + /* ************ button callbacks, state ***************** */ /* copy colors from theme, and set changes in it based on state */ @@ -1078,7 +1089,7 @@ static void widget_state(uiWidgetType *wt, int state) /* only flip shade if it's not "pushed in" already */ if(wt->wcol.shaded && wt->wcol.shadetop>wt->wcol.shadedown) { - SWAP(float, wt->wcol.shadetop, wt->wcol.shadedown); + SWAP(short, wt->wcol.shadetop, wt->wcol.shadedown); } } else { @@ -1089,11 +1100,28 @@ static void widget_state(uiWidgetType *wt, int state) else if(state & UI_BUT_DRIVEN) QUATCOPY(wt->wcol.inner, wcol_state.inner_driven) - if(state & UI_ACTIVE) /* mouse over? */ - VecMulf(wt->wcol.inner, 1.1f); + if(state & UI_ACTIVE) { /* mouse over? */ + wt->wcol.inner[0]= wt->wcol.inner[0]>=240? 255 : wt->wcol.inner[0]+15; + wt->wcol.inner[1]= wt->wcol.inner[1]>=240? 255 : wt->wcol.inner[1]+15; + wt->wcol.inner[2]= wt->wcol.inner[2]>=240? 255 : wt->wcol.inner[2]+15; + } } } +/* labels use theme colors for text */ +static void widget_state_label(uiWidgetType *wt, int state) +{ + /* call this for option button */ + widget_state(wt, state); + + if(state & UI_SELECT) + UI_GetThemeColor4ubv(TH_TEXT_HI, wt->wcol.text); + else + UI_GetThemeColor4ubv(TH_TEXT, wt->wcol.text); + +} + + /* special case, button that calls pulldown */ static void widget_state_pulldown(uiWidgetType *wt, int state) { @@ -1342,7 +1370,8 @@ static void widget_numslider(uiBut *but, uiWidgetColors *wcol, rcti *rect, int s uiWidgetBase wtb, wtb1; rcti rect1; double value; - float offs, fac, outline[3]; + float offs, fac; + char outline[3]; widget_init(&wtb); widget_init(&wtb1); @@ -1368,11 +1397,11 @@ static void widget_numslider(uiBut *but, uiWidgetColors *wcol, rcti *rect, int s VECCOPY(outline, wcol->outline); VECCOPY(wcol->outline, wcol->item); VECCOPY(wcol->inner, wcol->item); - SWAP(float, wcol->shadetop, wcol->shadedown); + SWAP(short, wcol->shadetop, wcol->shadedown); widgetbase_draw(&wtb1, wcol); VECCOPY(wcol->outline, outline); - SWAP(float, wcol->shadetop, wcol->shadedown); + SWAP(short, wcol->shadetop, wcol->shadedown); /* outline */ wtb.outline= 1; @@ -1384,13 +1413,17 @@ static void widget_numslider(uiBut *but, uiWidgetColors *wcol, rcti *rect, int s static void widget_swatch(uiBut *but, uiWidgetColors *wcol, rcti *rect, int state, int roundboxalign) { uiWidgetBase wtb; + float col[4]; widget_init(&wtb); /* half rounded */ round_box_edges(&wtb, roundboxalign, rect, 4.0f); - ui_get_but_vectorf(but, wcol->inner); + ui_get_but_vectorf(but, col); + wcol->inner[0]= FTOCHAR(col[0]); + wcol->inner[1]= FTOCHAR(col[1]); + wcol->inner[2]= FTOCHAR(col[2]); widgetbase_draw(&wtb, wcol); @@ -1545,48 +1578,55 @@ static void widget_disabled(rcti *rect) static uiWidgetType *widget_type(uiWidgetTypeEnum type) { + bTheme *btheme= U.themes.first; static uiWidgetType wt; /* defaults */ - wt.wcol_theme= &wcol_regular; + wt.wcol_theme= &btheme->tui.wcol_regular; wt.state= widget_state; wt.draw= widget_but; wt.custom= NULL; wt.text= widget_draw_text_icon; switch(type) { + case UI_WTYPE_LABEL: + wt.draw= NULL; + wt.state= widget_state_label; + break; + case UI_WTYPE_TOGGLE: break; case UI_WTYPE_OPTION: - wt.wcol_theme= &wcol_option; + wt.wcol_theme= &btheme->tui.wcol_option; wt.draw= widget_optionbut; + wt.state= widget_state_label; break; case UI_WTYPE_RADIO: - wt.wcol_theme= &wcol_radio; + wt.wcol_theme= &btheme->tui.wcol_radio; wt.draw= widget_radiobut; break; case UI_WTYPE_NUMBER: - wt.wcol_theme= &wcol_num; + wt.wcol_theme= &btheme->tui.wcol_num; wt.draw= widget_numbut; break; case UI_WTYPE_SLIDER: - wt.wcol_theme= &wcol_numslider; + wt.wcol_theme= &btheme->tui.wcol_numslider; wt.custom= widget_numslider; break; case UI_WTYPE_EXEC: - wt.wcol_theme= &wcol_regular_shade; + wt.wcol_theme= &btheme->tui.wcol_tool; wt.draw= widget_roundbut; break; /* strings */ case UI_WTYPE_NAME: - wt.wcol_theme= &wcol_text; + wt.wcol_theme= &btheme->tui.wcol_text; wt.draw= widget_textbut; break; @@ -1602,31 +1642,31 @@ static uiWidgetType *widget_type(uiWidgetTypeEnum type) /* start menus */ case UI_WTYPE_MENU_RADIO: - wt.wcol_theme= &wcol_menu; + wt.wcol_theme= &btheme->tui.wcol_menu; wt.draw= widget_menubut; break; case UI_WTYPE_MENU_POINTER_LINK: - wt.wcol_theme= &wcol_menu; + wt.wcol_theme= &btheme->tui.wcol_menu; wt.draw= widget_menubut; break; case UI_WTYPE_PULLDOWN: - wt.wcol_theme= &wcol_pulldown; + wt.wcol_theme= &btheme->tui.wcol_pulldown; wt.draw= widget_pulldownbut; wt.state= widget_state_pulldown; break; /* in menus */ case UI_WTYPE_MENU_ITEM: - wt.wcol_theme= &wcol_menu_item; + wt.wcol_theme= &btheme->tui.wcol_menu_item; wt.draw= widget_menu_itembut; wt.state= widget_state_menu_item; break; case UI_WTYPE_MENU_BACK: - wt.wcol_theme= &wcol_menu_back; + wt.wcol_theme= &btheme->tui.wcol_menu_back; wt.draw= widget_menu_back; break; @@ -1698,13 +1738,16 @@ static int widget_roundbox_set(uiBut *but, rcti *rect) /* conversion from old to new buttons, so still messy */ void ui_draw_but(ARegion *ar, uiStyle *style, uiBut *but, rcti *rect) { + bTheme *btheme= U.themes.first; + ThemeUI *tui= &btheme->tui; + uiFontStyle *fstyle= &style->widget; uiWidgetType *wt= NULL; /* handle menus seperately */ if(but->dt==UI_EMBOSSP) { switch (but->type) { case LABEL: - widget_draw_text_icon(&style->widgetlabel, but, rect, wcol_menu_back.text); + widget_draw_text_icon(&style->widgetlabel, &tui->wcol_menu_back, but, rect); break; case SEPR: break; @@ -1722,9 +1765,11 @@ void ui_draw_but(ARegion *ar, uiStyle *style, uiBut *but, rcti *rect) switch (but->type) { case LABEL: if(but->block->flag & UI_BLOCK_LOOP) - widget_draw_text_icon(&style->widgetlabel, but, rect, wcol_menu_back.text); - else - widget_draw_text_icon(&style->widgetlabel, but, rect, wcol_regular.text); + widget_draw_text_icon(&style->widgetlabel, &tui->wcol_menu_back, but, rect); + else { + wt= widget_type(UI_WTYPE_LABEL); + fstyle= &style->widgetlabel; + } break; case SEPR: break; @@ -1781,13 +1826,13 @@ void ui_draw_but(ARegion *ar, uiStyle *style, uiBut *but, rcti *rect) ui_draw_but_HSVCUBE(but, rect); break; case BUT_COLORBAND: - ui_draw_but_COLORBAND(but, rect); + ui_draw_but_COLORBAND(but, &tui->wcol_regular, rect); break; case BUT_NORMAL: - ui_draw_but_NORMAL(but, rect); + ui_draw_but_NORMAL(but, &tui->wcol_regular, rect); break; case BUT_CURVE: - ui_draw_but_CURVE(ar, but, rect); + ui_draw_but_CURVE(ar, but, &tui->wcol_regular, rect); break; default: @@ -1808,7 +1853,7 @@ void ui_draw_but(ARegion *ar, uiStyle *style, uiBut *but, rcti *rect) wt->custom(but, &wt->wcol, rect, state, roundboxalign); else if(wt->draw) wt->draw(&wt->wcol, rect, state, roundboxalign); - wt->text(&style->widget, but, rect, wt->wcol.text); + wt->text(fstyle, &wt->wcol, but, rect); if(state & UI_BUT_DISABLED) if(but->dt!=UI_EMBOSSP) @@ -1828,39 +1873,4 @@ void ui_draw_menu_back(uiStyle *style, uiBlock *block, rcti *rect) } -/* test function only */ -void drawnewstuff() -{ - rcti rect; - - rect.xmin= 10; rect.xmax= 10+100; - rect.ymin= -30; rect.ymax= -30+18; - widget_numbut(&wcol_num, &rect, 0, 15); - - rect.xmin= 120; rect.xmax= 120+100; - rect.ymin= -30; rect.ymax= -30+20; - widget_numbut(&wcol_num, &rect, 0, 15); - - rect.xmin= 10; rect.xmax= 10+100; - rect.ymin= -60; rect.ymax= -60+20; - widget_menubut(&wcol_menu, &rect, 0, 15); - - rect.xmin= 120; rect.xmax= 120+100; - widget_but(&wcol_regular, &rect, 0, 15); - - rect.xmin= 10; rect.xmax= 10+100; - rect.ymin= -90; rect.ymax= -90+20; - widget_radiobut(&wcol_radio, &rect, 1, 9); - - rect.xmin= 109; rect.xmax= 110+100; - rect.ymin= -90; rect.ymax= -90+20; - widget_radiobut(&wcol_radio, &rect, 0, 6); - - rect.xmin= 240; rect.xmax= 240+30; - rect.ymin= -90; rect.ymax= -90+30; - widget_roundbut(&wcol_regular_shade, &rect, 0, 15); -} - - - diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c index 039ebcc91f9..332705f9066 100644 --- a/source/blender/editors/interface/resources.c +++ b/source/blender/editors/interface/resources.c @@ -40,30 +40,38 @@ #include "MEM_guardedalloc.h" + +#include "DNA_curve_types.h" #include "DNA_listBase.h" #include "DNA_userdef_types.h" #include "DNA_screen_types.h" #include "DNA_space_types.h" +#include "BLI_blenlib.h" + #include "IMB_imbuf.h" #include "IMB_imbuf_types.h" +#include "BKE_DerivedMesh.h" +#include "BKE_global.h" +#include "BKE_main.h" +#include "BKE_texture.h" #include "BKE_utildefines.h" #include "BIF_gl.h" +#include "UI_interface.h" #include "UI_resources.h" #include "UI_interface_icons.h" -//#include "UI_icons.h" -#include "BLI_blenlib.h" +#include "interface_intern.h" /* global for themes */ typedef void (*VectorDrawFunc)(int x, int y, int w, int h, float alpha); static bTheme *theme_active=NULL; static int theme_spacetype= SPACE_VIEW3D; - +static int theme_regionid= RGN_TYPE_WINDOW; void ui_resources_init(void) { @@ -86,7 +94,6 @@ char *UI_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid) static char error[4]={240, 0, 240, 255}; static char alert[4]={240, 60, 60, 255}; static char headerdesel[4]={0,0,0,255}; - static char custom[4]={0,0,0,255}; char *cp= error; @@ -96,51 +103,9 @@ char *UI_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid) if(colorid < TH_THEMEUI) { switch(colorid) { - case TH_BUT_OUTLINE: - cp= btheme->tui.outline; break; - case TH_BUT_NEUTRAL: - cp= btheme->tui.neutral; break; - case TH_BUT_ACTION: - cp= btheme->tui.action; break; - case TH_BUT_SETTING: - cp= btheme->tui.setting; break; - case TH_BUT_SETTING1: - cp= btheme->tui.setting1; break; - case TH_BUT_SETTING2: - cp= btheme->tui.setting2; break; - case TH_BUT_NUM: - cp= btheme->tui.num; break; - case TH_BUT_TEXTFIELD: - cp= btheme->tui.textfield; break; - case TH_BUT_TEXTFIELD_HI: - cp= btheme->tui.textfield_hi; break; - case TH_BUT_POPUP: - cp= btheme->tui.popup; break; - case TH_BUT_TEXT: - cp= btheme->tui.text; break; - case TH_BUT_TEXT_HI: - cp= btheme->tui.text_hi; break; - case TH_MENU_BACK: - cp= btheme->tui.menu_back; break; - case TH_MENU_ITEM: - cp= btheme->tui.menu_item; break; - case TH_MENU_HILITE: - cp= btheme->tui.menu_hilite; break; - case TH_MENU_TEXT: - cp= btheme->tui.menu_text; break; - case TH_MENU_TEXT_HI: - cp= btheme->tui.menu_text_hi; break; - - case TH_BUT_DRAWTYPE: - cp= &btheme->tui.but_drawtype; break; - case TH_ICONFILE: - cp= btheme->tui.iconfile; break; - case TH_REDALERT: cp= alert; break; - case TH_CUSTOM: - cp= custom; break; } } else { @@ -198,11 +163,46 @@ char *UI_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid) switch(colorid) { case TH_BACK: - cp= ts->back; break; + if(theme_regionid==RGN_TYPE_WINDOW) + cp= ts->back; + else if(theme_regionid==RGN_TYPE_CHANNELS) + cp= ts->list; + else if(theme_regionid==RGN_TYPE_HEADER) + cp= ts->header; + else + cp= ts->button; + break; case TH_TEXT: - cp= ts->text; break; + if(theme_regionid==RGN_TYPE_WINDOW) + cp= ts->text; + else if(theme_regionid==RGN_TYPE_CHANNELS) + cp= ts->list_text; + else if(theme_regionid==RGN_TYPE_HEADER) + cp= ts->header_text; + else + cp= ts->button_text; + break; case TH_TEXT_HI: - cp= ts->text_hi; break; + if(theme_regionid==RGN_TYPE_WINDOW) + cp= ts->text_hi; + else if(theme_regionid==RGN_TYPE_CHANNELS) + cp= ts->list_text_hi; + else if(theme_regionid==RGN_TYPE_HEADER) + cp= ts->header_text_hi; + else + cp= ts->button_text_hi; + break; + case TH_TITLE: + if(theme_regionid==RGN_TYPE_WINDOW) + cp= ts->title; + else if(theme_regionid==RGN_TYPE_CHANNELS) + cp= ts->list_title; + else if(theme_regionid==RGN_TYPE_HEADER) + cp= ts->header_title; + else + cp= ts->button_title; + break; + case TH_HEADER: cp= ts->header; break; case TH_HEADERDESEL: @@ -213,8 +213,25 @@ char *UI_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid) headerdesel[2]= cp[2]>10?cp[2]-10:0; cp= headerdesel; break; + case TH_HEADER_TEXT: + cp= ts->header_text; break; + case TH_HEADER_TEXT_HI: + cp= ts->header_text_hi; break; + case TH_PANEL: cp= ts->panel; break; + case TH_PANEL_TEXT: + cp= ts->panel_text; break; + case TH_PANEL_TEXT_HI: + cp= ts->panel_text_hi; break; + + case TH_BUTBACK: + cp= ts->button; break; + case TH_BUTBACK_TEXT: + cp= ts->button_text; break; + case TH_BUTBACK_TEXT_HI: + cp= ts->button_text_hi; break; + case TH_SHADE1: cp= ts->shade1; break; case TH_SHADE2: @@ -340,11 +357,55 @@ char *UI_ThemeGetColorPtr(bTheme *btheme, int spacetype, int colorid) return cp; } +#define SETCOLTEST(col, r, g, b, a) if(col[3]==0) {col[0]=r; col[1]=g; col[2]= b; col[3]= a;} + +/* use this call to init new variables in themespace, if they're same for all */ +static void ui_theme_init_new_do(ThemeSpace *ts) +{ + SETCOLTEST(ts->header_text, 0, 0, 0, 255); + SETCOLTEST(ts->header_title, 0, 0, 0, 255); + SETCOLTEST(ts->header_text_hi, 255, 255, 255, 255); + + SETCOLTEST(ts->panel_text, 0, 0, 0, 255); + SETCOLTEST(ts->panel_title, 0, 0, 0, 255); + SETCOLTEST(ts->panel_text_hi, 255, 255, 255, 255); + + SETCOLTEST(ts->button, 145, 145, 145, 245); + SETCOLTEST(ts->button_title, 0, 0, 0, 255); + SETCOLTEST(ts->button_text, 0, 0, 0, 255); + SETCOLTEST(ts->button_text_hi, 255, 255, 255, 255); + + SETCOLTEST(ts->list, 165, 165, 165, 255); + SETCOLTEST(ts->list_title, 0, 0, 0, 255); + SETCOLTEST(ts->list_text, 0, 0, 0, 255); + SETCOLTEST(ts->list_text_hi, 255, 255, 255, 255); +} + +static void ui_theme_init_new(bTheme *btheme) +{ + ui_theme_init_new_do(&btheme->tbuts); + ui_theme_init_new_do(&btheme->tv3d); + ui_theme_init_new_do(&btheme->tfile); + ui_theme_init_new_do(&btheme->tipo); + ui_theme_init_new_do(&btheme->tinfo); + ui_theme_init_new_do(&btheme->tsnd); + ui_theme_init_new_do(&btheme->tact); + ui_theme_init_new_do(&btheme->tnla); + ui_theme_init_new_do(&btheme->tseq); + ui_theme_init_new_do(&btheme->tima); + ui_theme_init_new_do(&btheme->timasel); + ui_theme_init_new_do(&btheme->text); + ui_theme_init_new_do(&btheme->toops); + ui_theme_init_new_do(&btheme->ttime); + ui_theme_init_new_do(&btheme->tnode); + +} + #define SETCOL(col, r, g, b, a) col[0]=r; col[1]=g; col[2]= b; col[3]= a; -/* initialize +/* initialize default theme, can't be edited Note: when you add new colors, created & saved themes need initialized - in usiblender.c, search for "versionfile" + use function below, init_userdef_do_versions() */ void ui_theme_init_userdef(void) { @@ -361,39 +422,22 @@ void ui_theme_init_userdef(void) strcpy(btheme->name, "Default"); } - UI_SetTheme(NULL); // make sure the global used in this file is set + UI_SetTheme(0, 0); // make sure the global used in this file is set /* UI buttons */ - SETCOL(btheme->tui.outline, 130, 130, 130, 255); - SETCOL(btheme->tui.neutral, 165, 165, 165, 255); - SETCOL(btheme->tui.action, 165, 165, 165, 255); - SETCOL(btheme->tui.setting, 165, 165, 165, 255); - SETCOL(btheme->tui.setting1, 165, 165, 165, 255); - SETCOL(btheme->tui.setting2, 165, 165, 165, 255); - SETCOL(btheme->tui.num, 165, 165, 165, 255); - SETCOL(btheme->tui.textfield, 143, 142, 143, 255); - SETCOL(btheme->tui.textfield_hi,255, 151, 26, 255); - SETCOL(btheme->tui.popup, 174, 174, 174, 255); - - SETCOL(btheme->tui.text, 0,0,0, 255); - SETCOL(btheme->tui.text_hi, 255, 255, 255, 255); - - SETCOL(btheme->tui.menu_back, 220, 220, 220, 235); - SETCOL(btheme->tui.menu_item, 255, 255, 255, 20); - SETCOL(btheme->tui.menu_hilite, 110, 110, 110, 255); - SETCOL(btheme->tui.menu_text, 0, 0, 0, 255); - SETCOL(btheme->tui.menu_text_hi, 255, 255, 255, 255); - - btheme->tui.but_drawtype= TH_ROUNDSHADED; - BLI_strncpy(btheme->tui.iconfile, "", sizeof(btheme->tui.iconfile)); + ui_widget_color_init(&btheme->tui); + /* common (new) variables */ + ui_theme_init_new(btheme); + /* space view3d */ SETCOL(btheme->tv3d.back, 90, 90, 90, 255); SETCOL(btheme->tv3d.text, 0, 0, 0, 255); SETCOL(btheme->tv3d.text_hi, 255, 255, 255, 255); + SETCOL(btheme->tv3d.header, 185, 185, 185, 255); SETCOL(btheme->tv3d.panel, 165, 165, 165, 127); - + SETCOL(btheme->tv3d.shade1, 160, 160, 160, 100); SETCOL(btheme->tv3d.shade2, 0x7f, 0x70, 0x70, 100); @@ -583,188 +627,19 @@ void ui_theme_init_userdef(void) } -char *UI_ThemeColorsPup(int spacetype) -{ - char *cp= MEM_callocN(32*32, "theme pup"); - char *str = cp; - - if(spacetype==0) { - str += sprintf(str, "Outline %%x%d|", TH_BUT_OUTLINE); - str += sprintf(str, "Neutral %%x%d|", TH_BUT_NEUTRAL); - str += sprintf(str, "Action %%x%d|", TH_BUT_ACTION); - str += sprintf(str, "Setting %%x%d|", TH_BUT_SETTING); - str += sprintf(str, "Special Setting 1%%x%d|", TH_BUT_SETTING1); - str += sprintf(str, "Special Setting 2 %%x%d|", TH_BUT_SETTING2); - str += sprintf(str, "Number Input %%x%d|", TH_BUT_NUM); - str += sprintf(str, "Text Input %%x%d|", TH_BUT_TEXTFIELD); - str += sprintf(str, "Text Input Highlight %%x%d|", TH_BUT_TEXTFIELD_HI); - str += sprintf(str, "Popup %%x%d|", TH_BUT_POPUP); - str += sprintf(str, "Text %%x%d|", TH_BUT_TEXT); - str += sprintf(str, "Text Highlight %%x%d|", TH_BUT_TEXT_HI); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Menu Background %%x%d|", TH_MENU_BACK); - str += sprintf(str, "Menu Item %%x%d|", TH_MENU_ITEM); - str += sprintf(str, "Menu Item Highlight %%x%d|", TH_MENU_HILITE); - str += sprintf(str, "Menu Text %%x%d|", TH_MENU_TEXT); - str += sprintf(str, "Menu Text Highlight %%x%d|", TH_MENU_TEXT_HI); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Drawtype %%x%d|", TH_BUT_DRAWTYPE); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Icon File %%x%d|", TH_ICONFILE); - } - else { - // first defaults for each space - str += sprintf(str, "Background %%x%d|", TH_BACK); - str += sprintf(str, "Text %%x%d|", TH_TEXT); - str += sprintf(str, "Text Highlight %%x%d|", TH_TEXT_HI); - str += sprintf(str, "Header %%x%d|", TH_HEADER); - - switch(spacetype) { - case SPACE_VIEW3D: - str += sprintf(str, "Panel %%x%d|", TH_PANEL); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "Wire %%x%d|", TH_WIRE); - str += sprintf(str, "Lamp %%x%d|", TH_LAMP); - str += sprintf(str, "Object Selected %%x%d|", TH_SELECT); - str += sprintf(str, "Object Active %%x%d|", TH_ACTIVE); - str += sprintf(str, "Object Grouped %%x%d|", TH_GROUP); - str += sprintf(str, "Object Grouped Active %%x%d|", TH_GROUP_ACTIVE); - str += sprintf(str, "Transform %%x%d|", TH_TRANSFORM); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Vertex %%x%d|", TH_VERTEX); - str += sprintf(str, "Vertex Selected %%x%d|", TH_VERTEX_SELECT); - str += sprintf(str, "Vertex Size %%x%d|", TH_VERTEX_SIZE); - str += sprintf(str, "Edge Selected %%x%d|", TH_EDGE_SELECT); - str += sprintf(str, "Edge Seam %%x%d|", TH_EDGE_SEAM); - str += sprintf(str, "Edge Sharp %%x%d|", TH_EDGE_SHARP); - str += sprintf(str, "Edge UV Face Select %%x%d|", TH_EDGE_FACESEL); - str += sprintf(str, "Face (transp) %%x%d|", TH_FACE); - str += sprintf(str, "Face Selected (transp) %%x%d|", TH_FACE_SELECT); - str += sprintf(str, "Face Dot Selected %%x%d|", TH_FACE_DOT); - str += sprintf(str, "Face Dot Size %%x%d|", TH_FACEDOT_SIZE); - str += sprintf(str, "Active Vert/Edge/Face %%x%d|", TH_EDITMESH_ACTIVE); - str += sprintf(str, "Normal %%x%d|", TH_NORMAL); - str += sprintf(str, "Bone Solid %%x%d|", TH_BONE_SOLID); - str += sprintf(str, "Bone Pose %%x%d", TH_BONE_POSE); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_IPO: - str += sprintf(str, "Panel %%x%d|", TH_PANEL); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "Window Sliders %%x%d|", TH_SHADE1); - str += sprintf(str, "Ipo Channels %%x%d|", TH_SHADE2); - str += sprintf(str, "Vertex %%x%d|", TH_VERTEX); - str += sprintf(str, "Vertex Selected %%x%d|", TH_VERTEX_SELECT); - str += sprintf(str, "Vertex Size %%x%d|", TH_VERTEX_SIZE); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_FILE: - str += sprintf(str, "Selected file %%x%d", TH_HILITE); - break; - case SPACE_NLA: - //str += sprintf(str, "Panel %%x%d|", TH_PANEL); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "View Sliders %%x%d|", TH_SHADE1); - str += sprintf(str, "Bars %%x%d|", TH_SHADE2); - str += sprintf(str, "Bars selected %%x%d|", TH_HILITE); - str += sprintf(str, "Strips %%x%d|", TH_STRIP); - str += sprintf(str, "Strips selected %%x%d|", TH_STRIP_SELECT); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_ACTION: - //str += sprintf(str, "Panel %%x%d|", TH_PANEL); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "RVK Sliders %%x%d|", TH_FACE); - str += sprintf(str, "View Sliders %%x%d|", TH_SHADE1); - str += sprintf(str, "Channels %%x%d|", TH_SHADE2); - str += sprintf(str, "Channels Selected %%x%d|", TH_HILITE); - str += sprintf(str, "Long Key %%x%d|", TH_STRIP); - str += sprintf(str, "Long Key selected %%x%d|", TH_STRIP_SELECT); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_IMAGE: - str += sprintf(str, "%%l|"); - str += sprintf(str, "Vertex %%x%d|", TH_VERTEX); - str += sprintf(str, "Vertex Selected %%x%d|", TH_VERTEX_SELECT); - str += sprintf(str, "Vertex Size %%x%d|", TH_VERTEX_SIZE); - str += sprintf(str, "Face %%x%d|", TH_FACE); - str += sprintf(str, "Face Selected %%x%d", TH_FACE_SELECT); - break; - case SPACE_SEQ: - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "Window Sliders %%x%d|", TH_SHADE1); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Movie Strip %%x%d|", TH_SEQ_MOVIE); - str += sprintf(str, "Image Strip %%x%d|", TH_SEQ_IMAGE); - str += sprintf(str, "Scene Strip %%x%d|", TH_SEQ_SCENE); - str += sprintf(str, "Audio Strip %%x%d|", TH_SEQ_AUDIO); - str += sprintf(str, "Effect Strip %%x%d|", TH_SEQ_EFFECT); - str += sprintf(str, "Plugin Strip %%x%d|", TH_SEQ_PLUGIN); - str += sprintf(str, "Transition Strip %%x%d|", TH_SEQ_TRANSITION); - str += sprintf(str, "Meta Strip %%x%d|", TH_SEQ_META); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_SOUND: - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "Window Slider %%x%d|", TH_SHADE1); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_BUTS: - str += sprintf(str, "Panel %%x%d|", TH_PANEL); - break; - case SPACE_IMASEL: - str += sprintf(str, "Tiles %%x%d|", TH_PANEL); - str += sprintf(str, "Scrollbar %%x%d|", TH_SHADE1); - str += sprintf(str, "Scroll Handle %%x%d|", TH_SHADE2); - str += sprintf(str, "Selected File %%x%d|", TH_HILITE); - str += sprintf(str, "Active File %%x%d|", TH_ACTIVE); - str += sprintf(str, "Active File Text%%x%d|", TH_GRID); - break; - case SPACE_TEXT: - str += sprintf(str, "Scroll Bar %%x%d|", TH_SHADE1); - str += sprintf(str, "Selected Text %%x%d|", TH_SHADE2); - str += sprintf(str, "Cursor %%x%d|", TH_HILITE); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Syntax Builtin %%x%d|", TH_SYNTAX_B); - str += sprintf(str, "Syntax Special %%x%d|", TH_SYNTAX_V); - str += sprintf(str, "Syntax Comment %%x%d|", TH_SYNTAX_C); - str += sprintf(str, "Syntax Strings %%x%d|", TH_SYNTAX_L); - str += sprintf(str, "Syntax Numbers %%x%d|", TH_SYNTAX_N); - break; - case SPACE_TIME: - str += sprintf(str, "Grid %%x%d|", TH_GRID); - str += sprintf(str, "Current Frame %%x%d", TH_CFRAME); - break; - case SPACE_NODE: - str += sprintf(str, "Wires %%x%d|", TH_WIRE); - str += sprintf(str, "Wires Select %%x%d|", TH_EDGE_SELECT); - str += sprintf(str, "%%l|"); - str += sprintf(str, "Node Backdrop %%x%d|", TH_NODE); - str += sprintf(str, "In/Out Node %%x%d|", TH_NODE_IN_OUT); - str += sprintf(str, "Convertor Node %%x%d|", TH_NODE_CONVERTOR); - str += sprintf(str, "Operator Node %%x%d|", TH_NODE_OPERATOR); - str += sprintf(str, "Group Node %%x%d|", TH_NODE_GROUP); - break; - } - } - return cp; -} -void UI_SetTheme(ScrArea *sa) +void UI_SetTheme(int spacetype, int regionid) { - if(sa==NULL) { // called for safety, when delete themes + if(spacetype==0) { // called for safety, when delete themes theme_active= U.themes.first; theme_spacetype= SPACE_VIEW3D; + theme_regionid= RGN_TYPE_WINDOW; } else { // later on, a local theme can be found too theme_active= U.themes.first; - theme_spacetype= sa->spacetype; - + theme_spacetype= spacetype; + theme_regionid= regionid; } } @@ -985,3 +860,395 @@ void UI_GetColorPtrBlendShade3ubv(char *cp1, char *cp2, char *col, float fac, in col[2] = b; } + +/* ************************************************************* */ + +/* patching UserDef struct and Themes */ +void init_userdef_do_versions(void) +{ +// countall(); + + /* the UserDef struct is not corrected with do_versions() .... ugh! */ + if(U.wheellinescroll == 0) U.wheellinescroll = 3; + if(U.menuthreshold1==0) { + U.menuthreshold1= 5; + U.menuthreshold2= 2; + } + if(U.tb_leftmouse==0) { + U.tb_leftmouse= 5; + U.tb_rightmouse= 5; + } + if(U.mixbufsize==0) U.mixbufsize= 2048; + if (BLI_streq(U.tempdir, "/")) { + char *tmp= getenv("TEMP"); + + strcpy(U.tempdir, tmp?tmp:"/tmp/"); + } + if (U.savetime <= 0) { + U.savetime = 1; +// XXX error(".B.blend is buggy, please consider removing it.\n"); + } + /* transform widget settings */ + if(U.tw_hotspot==0) { + U.tw_hotspot= 14; + U.tw_size= 20; // percentage of window size + U.tw_handlesize= 16; // percentage of widget radius + } + if(U.pad_rot_angle==0) + U.pad_rot_angle= 15; + + if(U.flag & USER_CUSTOM_RANGE) + vDM_ColorBand_store(&U.coba_weight); /* signal for derivedmesh to use colorband */ + + if (G.main->versionfile <= 191) { + strcpy(U.plugtexdir, U.textudir); + strcpy(U.sounddir, "/"); + } + + /* patch to set Dupli Armature */ + if (G.main->versionfile < 220) { + U.dupflag |= USER_DUP_ARM; + } + + /* added seam, normal color, undo */ + if (G.main->versionfile <= 234) { + bTheme *btheme; + + U.uiflag |= USER_GLOBALUNDO; + if (U.undosteps==0) U.undosteps=32; + + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* check for alpha==0 is safe, then color was never set */ + if(btheme->tv3d.edge_seam[3]==0) { + SETCOL(btheme->tv3d.edge_seam, 230, 150, 50, 255); + } + if(btheme->tv3d.normal[3]==0) { + SETCOL(btheme->tv3d.normal, 0x22, 0xDD, 0xDD, 255); + } + if(btheme->tv3d.face_dot[3]==0) { + SETCOL(btheme->tv3d.face_dot, 255, 138, 48, 255); + btheme->tv3d.facedot_size= 4; + } + } + } + if (G.main->versionfile <= 235) { + /* illegal combo... */ + if (U.flag & USER_LMOUSESELECT) + U.flag &= ~USER_TWOBUTTONMOUSE; + } + if (G.main->versionfile <= 236) { + bTheme *btheme; + /* new space type */ + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* check for alpha==0 is safe, then color was never set */ + if(btheme->ttime.back[3]==0) { + btheme->ttime = btheme->tsnd; // copy from sound + } + if(btheme->text.syntaxn[3]==0) { + SETCOL(btheme->text.syntaxn, 0, 0, 200, 255); /* Numbers Blue*/ + SETCOL(btheme->text.syntaxl, 100, 0, 0, 255); /* Strings red */ + SETCOL(btheme->text.syntaxc, 0, 100, 50, 255); /* Comments greenish */ + SETCOL(btheme->text.syntaxv, 95, 95, 0, 255); /* Special */ + SETCOL(btheme->text.syntaxb, 128, 0, 80, 255); /* Builtin, red-purple */ + } + } + } + if (G.main->versionfile <= 237) { + bTheme *btheme; + /* bone colors */ + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* check for alpha==0 is safe, then color was never set */ + if(btheme->tv3d.bone_solid[3]==0) { + SETCOL(btheme->tv3d.bone_solid, 200, 200, 200, 255); + SETCOL(btheme->tv3d.bone_pose, 80, 200, 255, 80); + } + } + } + if (G.main->versionfile <= 238) { + bTheme *btheme; + /* bone colors */ + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* check for alpha==0 is safe, then color was never set */ + if(btheme->tnla.strip[3]==0) { + SETCOL(btheme->tnla.strip_select, 0xff, 0xff, 0xaa, 255); + SETCOL(btheme->tnla.strip, 0xe4, 0x9c, 0xc6, 255); + } + } + } + if (G.main->versionfile <= 239) { + bTheme *btheme; + + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* Lamp theme, check for alpha==0 is safe, then color was never set */ + if(btheme->tv3d.lamp[3]==0) { + SETCOL(btheme->tv3d.lamp, 0, 0, 0, 40); +/* TEMPORAL, remove me! (ton) */ + U.uiflag |= USER_PLAINMENUS; + } + + } + if(U.obcenter_dia==0) U.obcenter_dia= 6; + } + if (G.main->versionfile <= 241) { + bTheme *btheme; + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* Node editor theme, check for alpha==0 is safe, then color was never set */ + if(btheme->tnode.syntaxn[3]==0) { + /* re-uses syntax color storage */ + btheme->tnode= btheme->tv3d; + SETCOL(btheme->tnode.edge_select, 255, 255, 255, 255); + SETCOL(btheme->tnode.syntaxl, 150, 150, 150, 255); /* TH_NODE, backdrop */ + SETCOL(btheme->tnode.syntaxn, 129, 131, 144, 255); /* in/output */ + SETCOL(btheme->tnode.syntaxb, 127,127,127, 255); /* operator */ + SETCOL(btheme->tnode.syntaxv, 142, 138, 145, 255); /* generator */ + SETCOL(btheme->tnode.syntaxc, 120, 145, 120, 255); /* group */ + } + /* Group theme colors */ + if(btheme->tv3d.group[3]==0) { + SETCOL(btheme->tv3d.group, 0x10, 0x40, 0x10, 255); + SETCOL(btheme->tv3d.group_active, 0x66, 0xFF, 0x66, 255); + } + /* Sequence editor theme*/ + if(btheme->tseq.movie[3]==0) { + SETCOL(btheme->tseq.movie, 81, 105, 135, 255); + SETCOL(btheme->tseq.image, 109, 88, 129, 255); + SETCOL(btheme->tseq.scene, 78, 152, 62, 255); + SETCOL(btheme->tseq.audio, 46, 143, 143, 255); + SETCOL(btheme->tseq.effect, 169, 84, 124, 255); + SETCOL(btheme->tseq.plugin, 126, 126, 80, 255); + SETCOL(btheme->tseq.transition, 162, 95, 111, 255); + SETCOL(btheme->tseq.meta, 109, 145, 131, 255); + } + } + + /* set defaults for 3D View rotating axis indicator */ + /* since size can't be set to 0, this indicates it's not saved in .B.blend */ + if (U.rvisize == 0) { + U.rvisize = 15; + U.rvibright = 8; + U.uiflag |= USER_SHOW_ROTVIEWICON; + } + + } + if (G.main->versionfile <= 242) { + bTheme *btheme; + + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* long keyframe color */ + /* check for alpha==0 is safe, then color was never set */ + if(btheme->tact.strip[3]==0) { + SETCOL(btheme->tv3d.edge_sharp, 255, 32, 32, 255); + SETCOL(btheme->tact.strip_select, 0xff, 0xff, 0xaa, 204); + SETCOL(btheme->tact.strip, 0xe4, 0x9c, 0xc6, 204); + } + + /* IPO-Editor - Vertex Size*/ + if(btheme->tipo.vertex_size == 0) { + btheme->tipo.vertex_size= 3; + } + } + } + if (G.main->versionfile <= 243) { + /* set default number of recently-used files (if not set) */ + if (U.recent_files == 0) U.recent_files = 10; + } + if (G.main->versionfile < 245 || (G.main->versionfile == 245 && G.main->subversionfile < 3)) { + bTheme *btheme; + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + SETCOL(btheme->tv3d.editmesh_active, 255, 255, 255, 128); + } + if(U.coba_weight.tot==0) + init_colorband(&U.coba_weight, 1); + } + if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 11)) { + bTheme *btheme; + for (btheme= U.themes.first; btheme; btheme= btheme->next) { + /* these should all use the same colour */ + SETCOL(btheme->tv3d.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tipo.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tact.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tnla.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tseq.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tsnd.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->ttime.cframe, 0x60, 0xc0, 0x40, 255); + } + } + if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 11)) { + bTheme *btheme; + for (btheme= U.themes.first; btheme; btheme= btheme->next) { + /* these should all use the same color */ + SETCOL(btheme->tv3d.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tipo.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tact.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tnla.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tseq.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->tsnd.cframe, 0x60, 0xc0, 0x40, 255); + SETCOL(btheme->ttime.cframe, 0x60, 0xc0, 0x40, 255); + } + } + if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 13)) { + bTheme *btheme; + for (btheme= U.themes.first; btheme; btheme= btheme->next) { + /* action channel groups (recolor anyway) */ + SETCOL(btheme->tact.group, 0x39, 0x7d, 0x1b, 255); + SETCOL(btheme->tact.group_active, 0x7d, 0xe9, 0x60, 255); + + /* bone custom-color sets */ + // FIXME: this check for initialised colors is bad + if (btheme->tarm[0].solid[3] == 0) { + /* set 1 */ + SETCOL(btheme->tarm[0].solid, 0x9a, 0x00, 0x00, 255); + SETCOL(btheme->tarm[0].select, 0xbd, 0x11, 0x11, 255); + SETCOL(btheme->tarm[0].active, 0xf7, 0x0a, 0x0a, 255); + /* set 2 */ + SETCOL(btheme->tarm[1].solid, 0xf7, 0x40, 0x18, 255); + SETCOL(btheme->tarm[1].select, 0xf6, 0x69, 0x13, 255); + SETCOL(btheme->tarm[1].active, 0xfa, 0x99, 0x00, 255); + /* set 3 */ + SETCOL(btheme->tarm[2].solid, 0x1e, 0x91, 0x09, 255); + SETCOL(btheme->tarm[2].select, 0x59, 0xb7, 0x0b, 255); + SETCOL(btheme->tarm[2].active, 0x83, 0xef, 0x1d, 255); + /* set 4 */ + SETCOL(btheme->tarm[3].solid, 0x0a, 0x36, 0x94, 255); + SETCOL(btheme->tarm[3].select, 0x36, 0x67, 0xdf, 255); + SETCOL(btheme->tarm[3].active, 0x5e, 0xc1, 0xef, 255); + /* set 5 */ + SETCOL(btheme->tarm[4].solid, 0xa9, 0x29, 0x4e, 255); + SETCOL(btheme->tarm[4].select, 0xc1, 0x41, 0x6a, 255); + SETCOL(btheme->tarm[4].active, 0xf0, 0x5d, 0x91, 255); + /* set 6 */ + SETCOL(btheme->tarm[5].solid, 0x43, 0x0c, 0x78, 255); + SETCOL(btheme->tarm[5].select, 0x54, 0x3a, 0xa3, 255); + SETCOL(btheme->tarm[5].active, 0x87, 0x64, 0xd5, 255); + /* set 7 */ + SETCOL(btheme->tarm[6].solid, 0x24, 0x78, 0x5a, 255); + SETCOL(btheme->tarm[6].select, 0x3c, 0x95, 0x79, 255); + SETCOL(btheme->tarm[6].active, 0x6f, 0xb6, 0xab, 255); + /* set 8 */ + SETCOL(btheme->tarm[7].solid, 0x4b, 0x70, 0x7c, 255); + SETCOL(btheme->tarm[7].select, 0x6a, 0x86, 0x91, 255); + SETCOL(btheme->tarm[7].active, 0x9b, 0xc2, 0xcd, 255); + /* set 9 */ + SETCOL(btheme->tarm[8].solid, 0xf4, 0xc9, 0x0c, 255); + SETCOL(btheme->tarm[8].select, 0xee, 0xc2, 0x36, 255); + SETCOL(btheme->tarm[8].active, 0xf3, 0xff, 0x00, 255); + /* set 10 */ + SETCOL(btheme->tarm[9].solid, 0x1e, 0x20, 0x24, 255); + SETCOL(btheme->tarm[9].select, 0x48, 0x4c, 0x56, 255); + SETCOL(btheme->tarm[9].active, 0xff, 0xff, 0xff, 255); + /* set 11 */ + SETCOL(btheme->tarm[10].solid, 0x6f, 0x2f, 0x6a, 255); + SETCOL(btheme->tarm[10].select, 0x98, 0x45, 0xbe, 255); + SETCOL(btheme->tarm[10].active, 0xd3, 0x30, 0xd6, 255); + /* set 12 */ + SETCOL(btheme->tarm[11].solid, 0x6c, 0x8e, 0x22, 255); + SETCOL(btheme->tarm[11].select, 0x7f, 0xb0, 0x22, 255); + SETCOL(btheme->tarm[11].active, 0xbb, 0xef, 0x5b, 255); + /* set 13 */ + SETCOL(btheme->tarm[12].solid, 0x8d, 0x8d, 0x8d, 255); + SETCOL(btheme->tarm[12].select, 0xb0, 0xb0, 0xb0, 255); + SETCOL(btheme->tarm[12].active, 0xde, 0xde, 0xde, 255); + /* set 14 */ + SETCOL(btheme->tarm[13].solid, 0x83, 0x43, 0x26, 255); + SETCOL(btheme->tarm[13].select, 0x8b, 0x58, 0x11, 255); + SETCOL(btheme->tarm[13].active, 0xbd, 0x6a, 0x11, 255); + /* set 15 */ + SETCOL(btheme->tarm[14].solid, 0x08, 0x31, 0x0e, 255); + SETCOL(btheme->tarm[14].select, 0x1c, 0x43, 0x0b, 255); + SETCOL(btheme->tarm[14].active, 0x34, 0x62, 0x2b, 255); + } + } + } + if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 16)) { + U.flag |= USER_ADD_VIEWALIGNED|USER_ADD_EDITMODE; + } + if ((G.main->versionfile < 247) || (G.main->versionfile == 247 && G.main->subversionfile <= 2)) { + bTheme *btheme; + + /* adjust themes */ + for (btheme= U.themes.first; btheme; btheme= btheme->next) { + char *col; + + /* IPO Editor: Handles/Vertices */ + col = btheme->tipo.vertex; + SETCOL(btheme->tipo.handle_vertex, col[0], col[1], col[2], 255); + col = btheme->tipo.vertex_select; + SETCOL(btheme->tipo.handle_vertex_select, col[0], col[1], col[2], 255); + btheme->tipo.handle_vertex_size= btheme->tipo.vertex_size; + + /* Sequence/Image Editor: colors for GPencil text */ + col = btheme->tv3d.bone_pose; + SETCOL(btheme->tseq.bone_pose, col[0], col[1], col[2], 255); + SETCOL(btheme->tima.bone_pose, col[0], col[1], col[2], 255); + col = btheme->tv3d.vertex_select; + SETCOL(btheme->tseq.vertex_select, col[0], col[1], col[2], 255); + } + } + if (G.main->versionfile < 250) { + bTheme *btheme; + + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + /* this was not properly initialized in 2.45 */ + if(btheme->tima.face_dot[3]==0) { + SETCOL(btheme->tima.editmesh_active, 255, 255, 255, 128); + SETCOL(btheme->tima.face_dot, 255, 133, 0, 255); + btheme->tima.facedot_size= 2; + } + + /* DopeSheet - (Object) Channel color */ + SETCOL(btheme->tact.ds_channel, 82, 96, 110, 255); + SETCOL(btheme->tact.ds_subchannel, 124, 137, 150, 255); + /* DopeSheet - Group Channel color (saner version) */ + SETCOL(btheme->tact.group, 79, 101, 73, 255); + SETCOL(btheme->tact.group_active, 135, 177, 125, 255); + + /* Graph Editor - (Object) Channel color */ + SETCOL(btheme->tipo.ds_channel, 82, 96, 110, 255); + SETCOL(btheme->tipo.ds_subchannel, 124, 137, 150, 255); + /* Graph Editor - Group Channel color */ + SETCOL(btheme->tipo.group, 79, 101, 73, 255); + SETCOL(btheme->tipo.group_active, 135, 177, 125, 255); + } + + /* adjust grease-pencil distances */ + U.gp_manhattendist= 1; + U.gp_euclideandist= 2; + + /* adjust default interpolation for new IPO-curves */ + U.ipo_new= BEZT_IPO_BEZ; + } + + if (G.main->versionfile < 250 || (G.main->versionfile == 250 && G.main->subversionfile < 1)) { + bTheme *btheme; + + for(btheme= U.themes.first; btheme; btheme= btheme->next) { + + /* common (new) variables, it checks for alpha==0 */ + ui_theme_init_new(btheme); + + if(btheme->tui.wcol_num.outline[3]==0) + ui_widget_color_init(&btheme->tui); + } + } + + /* GL Texture Garbage Collection (variable abused above!) */ + if (U.textimeout == 0) { + U.texcollectrate = 60; + U.textimeout = 120; + } + if (U.memcachelimit <= 0) { + U.memcachelimit = 32; + } + if (U.frameserverport == 0) { + U.frameserverport = 8080; + } + + /* funny name, but it is GE stuff, moves userdef stuff to engine */ +// XXX space_set_commmandline_options(); + /* this timer uses U */ +// XXX reset_autosave(); + +} + + + diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c index 54775c4e5ab..f7d1723b689 100644 --- a/source/blender/editors/screen/area.c +++ b/source/blender/editors/screen/area.c @@ -65,12 +65,15 @@ /* general area and region code */ -static void region_draw_emboss(ARegion *ar) +static void region_draw_emboss(ARegion *ar, rcti *scirct) { - short winx, winy; + rcti rect; - winx= ar->winrct.xmax-ar->winrct.xmin; - winy= ar->winrct.ymax-ar->winrct.ymin; + /* translate scissor rect to region space */ + rect.xmin= scirct->xmin - ar->winrct.xmin; + rect.ymin= scirct->ymin - ar->winrct.ymin; + rect.xmax= scirct->xmax - ar->winrct.xmin; + rect.ymax= scirct->ymax - ar->winrct.ymin; /* set transp line */ glEnable( GL_BLEND ); @@ -78,19 +81,19 @@ static void region_draw_emboss(ARegion *ar) /* right */ glColor4ub(0,0,0, 50); - sdrawline(winx, 0, winx, winy); + sdrawline(rect.xmax, rect.ymin, rect.xmax, rect.ymax); /* bottom */ glColor4ub(0,0,0, 80); - sdrawline(0, 0, winx, 0); + sdrawline(rect.xmin, rect.ymin, rect.xmax, rect.ymin); /* top */ glColor4ub(255,255,255, 60); - sdrawline(0, winy, winx, winy); + sdrawline(rect.xmin, rect.ymax, rect.xmax, rect.ymax); /* left */ glColor4ub(255,255,255, 50); - sdrawline(0, 0, 0, winy); + sdrawline(rect.xmin, rect.ymin, rect.xmin, rect.ymax); glDisable( GL_BLEND ); } @@ -190,49 +193,75 @@ void ED_area_overdraw(bContext *C) } +/* get scissor rect, checking overlapping regions */ +static void region_scissor_winrct(ARegion *ar, rcti *winrct) +{ + *winrct= ar->winrct; + + if(ELEM(ar->alignment, RGN_OVERLAP_LEFT, RGN_OVERLAP_RIGHT)) + return; + + while(ar->prev) { + ar= ar->prev; + + if(ar->flag & RGN_FLAG_HIDDEN); + else if(ar->alignment==RGN_OVERLAP_LEFT) { + winrct->xmin= ar->winrct.xmax + 1; + } + else if(ar->alignment==RGN_OVERLAP_RIGHT) { + winrct->xmax= ar->winrct.xmin - 1; + } + else break; + } +} + /* only exported for WM */ void ED_region_do_draw(bContext *C, ARegion *ar) { wmWindow *win= CTX_wm_window(C); ScrArea *sa= CTX_wm_area(C); ARegionType *at= ar->type; - + rcti winrct; + + /* checks other overlapping regions */ + region_scissor_winrct(ar, &winrct); + /* if no partial draw rect set, full rect */ if(ar->drawrct.xmin == ar->drawrct.xmax) - ar->drawrct= ar->winrct; - - /* extra clip for safety */ - ar->drawrct.xmin= MAX2(ar->winrct.xmin, ar->drawrct.xmin); - ar->drawrct.ymin= MAX2(ar->winrct.ymin, ar->drawrct.ymin); - ar->drawrct.xmax= MIN2(ar->winrct.xmax, ar->drawrct.xmax); - ar->drawrct.ymax= MIN2(ar->winrct.ymax, ar->drawrct.ymax); + ar->drawrct= winrct; + else { + /* extra clip for safety */ + ar->drawrct.xmin= MAX2(winrct.xmin, ar->drawrct.xmin); + ar->drawrct.ymin= MAX2(winrct.ymin, ar->drawrct.ymin); + ar->drawrct.xmax= MIN2(winrct.xmax, ar->drawrct.xmax); + ar->drawrct.ymax= MIN2(winrct.ymax, ar->drawrct.ymax); + } /* note; this sets state, so we can use wmOrtho and friends */ wmSubWindowScissorSet(win, ar->swinid, &ar->drawrct); + UI_SetTheme(sa?sa->spacetype:0, ar->type?ar->type->regionid:0); + /* optional header info instead? */ if(ar->headerstr) { float col[3]; - UI_SetTheme(sa); UI_GetThemeColor3fv(TH_HEADER, col); glClearColor(col[0], col[1], col[2], 0.0); glClear(GL_COLOR_BUFFER_BIT); - UI_ThemeColor(TH_MENU_TEXT); + UI_ThemeColor(TH_TEXT); glRasterPos2i(20, 6); BMF_DrawString(G.font, ar->headerstr); } else if(at->draw) { - UI_SetTheme(sa); at->draw(C, ar); - UI_SetTheme(NULL); } - if(sa) - region_draw_emboss(ar); - uiFreeInactiveBlocks(C, &ar->uiblocks); + if(sa) + region_draw_emboss(ar, &winrct); + /* XXX test: add convention to end regions always in pixel space, for drawing of borders/gestures etc */ ED_region_pixelspace(ar); diff --git a/source/blender/editors/space_action/action_draw.c b/source/blender/editors/space_action/action_draw.c index a551b4f463c..6eae581aa40 100644 --- a/source/blender/editors/space_action/action_draw.c +++ b/source/blender/editors/space_action/action_draw.c @@ -999,7 +999,7 @@ void draw_channel_strips(bAnimContext *ac, SpaceAction *saction, ARegion *ar) /* get theme colors */ - UI_GetThemeColor3ubv(TH_SHADE2, col2); + UI_GetThemeColor3ubv(TH_BACK, col2); UI_GetThemeColor3ubv(TH_HILITE, col1); UI_GetThemeColor3ubv(TH_GROUP, col2a); UI_GetThemeColor3ubv(TH_GROUP_ACTIVE, col1a); diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c index 782611aaad7..66ebc145621 100644 --- a/source/blender/editors/space_graph/space_graph.c +++ b/source/blender/editors/space_graph/space_graph.c @@ -293,7 +293,7 @@ static void graph_channel_area_draw(const bContext *C, ARegion *ar) float col[3]; /* clear and setup matrix */ - UI_GetThemeColor3fv(TH_SHADE2, col); + UI_GetThemeColor3fv(TH_BACK, col); glClearColor(col[0], col[1], col[2], 0.0); glClear(GL_COLOR_BUFFER_BIT); @@ -359,7 +359,7 @@ static void graph_buttons_area_draw(const bContext *C, ARegion *ar) float col[3]; /* clear */ - UI_GetThemeColor3fv(TH_HEADER, col); + UI_GetThemeColor3fv(TH_BACK, col); glClearColor(col[0], col[1], col[2], 0.0); glClear(GL_COLOR_BUFFER_BIT); diff --git a/source/blender/editors/space_node/space_node.c b/source/blender/editors/space_node/space_node.c index 493ef6954b5..775f46b8e04 100644 --- a/source/blender/editors/space_node/space_node.c +++ b/source/blender/editors/space_node/space_node.c @@ -201,7 +201,7 @@ static void node_channel_area_draw(const bContext *C, ARegion *ar) float col[3]; /* clear and setup matrix */ - UI_GetThemeColor3fv(TH_SHADE2, col); + UI_GetThemeColor3fv(TH_BACK, col); glClearColor(col[0], col[1], col[2], 0.0); glClear(GL_COLOR_BUFFER_BIT); diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index b7682225fe3..0c41d6b4917 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -88,13 +88,41 @@ ARegion *view3d_has_buttons_region(ScrArea *sa) BLI_insertlinkafter(&sa->regionbase, ar, arnew); arnew->regiontype= RGN_TYPE_UI; - arnew->alignment= RGN_ALIGN_LEFT; + arnew->alignment= RGN_ALIGN_RIGHT; arnew->flag = RGN_FLAG_HIDDEN; return arnew; } +ARegion *view3d_has_tools_region(ScrArea *sa) +{ + ARegion *ar, *arnew; + + for(ar= sa->regionbase.first; ar; ar= ar->next) + if(ar->regiontype==RGN_TYPE_TOOLS) + return ar; + + /* add subdiv level; after header */ + for(ar= sa->regionbase.first; ar; ar= ar->next) + if(ar->regiontype==RGN_TYPE_HEADER) + break; + + /* is error! */ + if(ar==NULL) return NULL; + + arnew= MEM_callocN(sizeof(ARegion), "tools for view3d"); + + BLI_insertlinkafter(&sa->regionbase, ar, arnew); + arnew->regiontype= RGN_TYPE_TOOLS; + arnew->alignment= RGN_OVERLAP_LEFT; + + arnew->flag = RGN_FLAG_HIDDEN; + + return arnew; +} + + /* ******************** default callbacks for view3d space ***************** */ @@ -474,7 +502,7 @@ static void view3d_buttons_area_draw(const bContext *C, ARegion *ar) float col[3]; /* clear */ - UI_GetThemeColor3fv(TH_HEADER, col); + UI_GetThemeColor3fv(TH_BACK, col); glClearColor(col[0], col[1], col[2], 0.0); glClear(GL_COLOR_BUFFER_BIT); @@ -517,6 +545,40 @@ static void view3d_buttons_area_listener(ARegion *ar, wmNotifier *wmn) } } +/* add handlers, stuff you only do once or on area/region changes */ +static void view3d_tools_area_init(wmWindowManager *wm, ARegion *ar) +{ + ListBase *keymap; + + keymap= WM_keymap_listbase(wm, "View2D Buttons List", 0, 0); + WM_event_add_keymap_handler(&ar->handlers, keymap); + keymap= WM_keymap_listbase(wm, "View3D Generic", SPACE_VIEW3D, 0); + WM_event_add_keymap_handler(&ar->handlers, keymap); + // XXX +20 temp... need init for this + UI_view2d_region_reinit(&ar->v2d, V2D_COMMONVIEW_PANELS_UI, ar->winx+20, ar->winy); +} + + +static void view3d_tools_area_draw(const bContext *C, ARegion *ar) +{ + float col[3]; + + /* clear */ + UI_GetThemeColor3fv(TH_BACK, 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); + + view3d_tools_area_defbuts(C, ar); + + /* restore view matrix? */ + UI_view2d_view_restore(C); +} + + /* * Returns true if the Object is a from an external blend file (libdata) */ @@ -788,6 +850,18 @@ void ED_spacetype_view3d(void) art->init= view3d_buttons_area_init; art->draw= view3d_buttons_area_draw; BLI_addhead(&st->regiontypes, art); + + /* regions: tool(bar) */ + art= MEM_callocN(sizeof(ARegionType), "spacetype view3d region"); + art->regionid = RGN_TYPE_TOOLS; + art->minsizex= 120; // XXX + art->minsizey= 50; // XXX + art->keymapflag= ED_KEYMAP_UI|ED_KEYMAP_FRAMES; + art->listener= view3d_buttons_area_listener; + art->init= view3d_tools_area_init; + art->draw= view3d_tools_area_draw; + BLI_addhead(&st->regiontypes, art); + /* regions: header */ art= MEM_callocN(sizeof(ARegionType), "spacetype view3d region"); diff --git a/source/blender/editors/space_view3d/view3d_buttons.c b/source/blender/editors/space_view3d/view3d_buttons.c index f1a748dff3a..5dad3f8cc7d 100644 --- a/source/blender/editors/space_view3d/view3d_buttons.c +++ b/source/blender/editors/space_view3d/view3d_buttons.c @@ -984,7 +984,6 @@ static void view3d_panel_transform_spaces(const bContext *C, ARegion *ar, short for (index = V3D_MANIP_CUSTOM, ts = transform_spaces->first ; ts ; ts = ts->next, index++) { - UI_ThemeColor(TH_BUT_ACTION); if (v3d->twmode == index) { but = uiDefIconButS(block,ROW, B_REDR, ICON_CHECKBOX_HLT, xco,yco,XIC,YIC, &v3d->twmode, 5.0, (float)index, 0, 0, "Use this Custom Transform Orientation"); } diff --git a/source/blender/editors/space_view3d/view3d_intern.h b/source/blender/editors/space_view3d/view3d_intern.h index ae77b4293bf..927773bf2ec 100644 --- a/source/blender/editors/space_view3d/view3d_intern.h +++ b/source/blender/editors/space_view3d/view3d_intern.h @@ -134,9 +134,12 @@ void setviewmatrixview3d(Scene *scene, View3D *v3d, RegionView3D *rv3d); /* view3d_buttons.c */ void VIEW3D_OT_properties(struct wmOperatorType *ot); - void view3d_buttons_area_defbuts(const struct bContext *C, ARegion *ar); +/* view3d_buttons.c */ +void VIEW3D_OT_toolbar(struct wmOperatorType *ot); +void view3d_tools_area_defbuts(const struct bContext *C, ARegion *ar); + /* view3d_snap.c */ int minmax_verts(Object *obedit, float *min, float *max); @@ -150,6 +153,7 @@ void VIEW3D_OT_snap_menu(struct wmOperatorType *ot); /* space_view3d.c */ ARegion *view3d_has_buttons_region(ScrArea *sa); +ARegion *view3d_has_tools_region(ScrArea *sa); #endif /* ED_VIEW3D_INTERN_H */ diff --git a/source/blender/editors/space_view3d/view3d_ops.c b/source/blender/editors/space_view3d/view3d_ops.c index f4c8607d174..0ed43bead17 100644 --- a/source/blender/editors/space_view3d/view3d_ops.c +++ b/source/blender/editors/space_view3d/view3d_ops.c @@ -84,10 +84,12 @@ void view3d_operatortypes(void) WM_operatortype_append(VIEW3D_OT_setcameratoview); WM_operatortype_append(VIEW3D_OT_drawtype); WM_operatortype_append(VIEW3D_OT_editmesh_face_toolbox); - WM_operatortype_append(VIEW3D_OT_properties); WM_operatortype_append(VIEW3D_OT_localview); WM_operatortype_append(VIEW3D_OT_layers); + WM_operatortype_append(VIEW3D_OT_properties); + WM_operatortype_append(VIEW3D_OT_toolbar); + WM_operatortype_append(VIEW3D_OT_snap_selected_to_grid); WM_operatortype_append(VIEW3D_OT_snap_selected_to_cursor); WM_operatortype_append(VIEW3D_OT_snap_selected_to_center); @@ -108,6 +110,7 @@ void view3d_keymap(wmWindowManager *wm) WM_keymap_add_item(keymap, "PAINT_OT_weight_paint_toggle", TABKEY, KM_PRESS, KM_CTRL, 0); WM_keymap_add_item(keymap, "VIEW3D_OT_properties", NKEY, KM_PRESS, 0, 0); + WM_keymap_add_item(keymap, "VIEW3D_OT_toolbar", TKEY, KM_PRESS, 0, 0); /* only for region 3D window */ keymap= WM_keymap_listbase(wm, "View3D", SPACE_VIEW3D, 0); diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index d03586da2d5..9c4f0b576da 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -765,7 +765,7 @@ void VIEW3D_OT_select_lasso(wmOperatorType *ot) ot->poll= WM_operator_winactive; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag= OPTYPE_UNDO; RNA_def_collection_runtime(ot->srna, "path", &RNA_OperatorMousePath, "Path", ""); RNA_def_enum(ot->srna, "type", lasso_select_types, 0, "Type", ""); @@ -1546,7 +1546,7 @@ void VIEW3D_OT_select_border(wmOperatorType *ot) ot->poll= ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag= OPTYPE_UNDO; /* rna */ RNA_def_int(ot->srna, "event_type", 0, INT_MIN, INT_MAX, "Event Type", "", INT_MIN, INT_MAX); @@ -1599,7 +1599,7 @@ void VIEW3D_OT_select(wmOperatorType *ot) ot->poll= ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag= OPTYPE_UNDO; /* properties */ RNA_def_enum(ot->srna, "type", prop_select_types, 0, "Type", ""); @@ -1834,7 +1834,7 @@ void VIEW3D_OT_select_circle(wmOperatorType *ot) ot->poll= ED_operator_view3d_active; /* flags */ - ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + ot->flag= OPTYPE_UNDO; 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); diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h index 77b0d6e2d49..7a6e48f2ca9 100644 --- a/source/blender/makesdna/DNA_screen_types.h +++ b/source/blender/makesdna/DNA_screen_types.h @@ -217,6 +217,7 @@ typedef struct ARegion { #define RGN_TYPE_CHANNELS 2 #define RGN_TYPE_TEMPORARY 3 #define RGN_TYPE_UI 4 +#define RGN_TYPE_TOOLS 5 /* region alignment */ #define RGN_ALIGN_NONE 0 diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h index c1a0e72256f..91c81023c8c 100644 --- a/source/blender/makesdna/DNA_userdef_types.h +++ b/source/blender/makesdna/DNA_userdef_types.h @@ -98,41 +98,62 @@ typedef struct uiStyle { } uiStyle; - -/* global, button colors */ -typedef struct ThemeUI { +typedef struct uiWidgetColors { char outline[4]; - char neutral[4]; - char action[4]; - char setting[4]; - char setting1[4]; - char setting2[4]; - char num[4]; - char textfield[4]; - char textfield_hi[4]; - char popup[4]; + char inner[4]; + char inner_sel[4]; + char item[4]; char text[4]; - char text_hi[4]; - char menu_back[4]; - char menu_item[4]; - char menu_hilite[4]; - char menu_text[4]; - char menu_text_hi[4]; + char text_sel[4]; + short shaded; + short shadetop, shadedown; + short pad; +} uiWidgetColors; + +typedef struct ThemeUI { + + /* Interface Elements (buttons, menus, icons) */ + uiWidgetColors wcol_regular, wcol_tool, wcol_radio, wcol_text, wcol_option; + uiWidgetColors wcol_num, wcol_numslider; + uiWidgetColors wcol_menu, wcol_pulldown, wcol_menu_back, wcol_menu_item; - char but_drawtype; - char pad[3]; char iconfile[80]; // FILE_MAXFILE length + } ThemeUI; /* try to put them all in one, if needed a special struct can be created as well * for example later on, when we introduce wire colors for ob types or so... */ typedef struct ThemeSpace { + /* main window colors */ char back[4]; + char title[4]; char text[4]; char text_hi[4]; + + /* header colors */ char header[4]; + char header_title[4]; + char header_text[4]; + char header_text_hi[4]; + + /* button/tool regions */ + char button[4]; + char button_title[4]; + char button_text[4]; + char button_text_hi[4]; + + /* listview regions */ + char list[4]; + char list_title[4]; + char list_text[4]; + char list_text_hi[4]; + + /* float panel */ char panel[4]; + char panel_title[4]; + char panel_text[4]; + char panel_text_hi[4]; char shade1[4]; char shade2[4]; @@ -166,8 +187,12 @@ typedef struct ThemeSpace { char handle_vertex[4]; char handle_vertex_select[4]; + char handle_vertex_size; char hpad[3]; + + char pad[4]; + } ThemeSpace; @@ -190,7 +215,6 @@ typedef struct bTheme { struct bTheme *next, *prev; char name[32]; - /* Interface Elements (buttons, menus, icons) */ ThemeUI tui; /* Individual Spacetypes */ @@ -213,7 +237,7 @@ typedef struct bTheme { /* 20 sets of bone colors for this theme */ ThemeWireColor tarm[20]; /*ThemeWireColor tobj[20];*/ - + } bTheme; typedef struct SolidLight { diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index 74faa0f4a96..37fb11ee039 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -30,8 +30,11 @@ #include "rna_internal.h" #include "DNA_curve_types.h" +#include "DNA_space_types.h" #include "DNA_userdef_types.h" +#include "BKE_utildefines.h" + #ifdef RNA_RUNTIME static void rna_userdef_lmb_select_set(struct PointerRNA *ptr,int value) @@ -118,130 +121,264 @@ static PointerRNA rna_UserDef_system_get(PointerRNA *ptr) #else +static void rna_def_userdef_theme_ui_font_style(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + srna= RNA_def_struct(brna, "ThemeFontStyle", NULL); + RNA_def_struct_sdna(srna, "uiFontStyle"); + RNA_def_struct_ui_text(srna, "Font Style", "Theme settings for Font."); + + prop= RNA_def_property(srna, "points", PROP_INT, PROP_NONE); + RNA_def_property_range(prop, 6, 48); + RNA_def_property_ui_text(prop, "Points", ""); + + prop= RNA_def_property(srna, "shadow", PROP_INT, PROP_NONE); + RNA_def_property_range(prop, 0, 5); + RNA_def_property_ui_text(prop, "Shadow Size", "Shadow size in pixels (0, 3 and 5 supported)"); + + prop= RNA_def_property(srna, "shadx", PROP_INT, PROP_NONE); + RNA_def_property_range(prop, -10, 10); + RNA_def_property_ui_text(prop, "Shadow X Offset", "Shadow offset in pixels"); + + prop= RNA_def_property(srna, "shady", PROP_INT, PROP_NONE); + RNA_def_property_range(prop, -10, 10); + RNA_def_property_ui_text(prop, "Shadow Y Offset", "Shadow offset in pixels"); + + prop= RNA_def_property(srna, "shadowalpha", PROP_FLOAT, PROP_NONE); + RNA_def_property_range(prop, 0.0f, 1.0f); + RNA_def_property_ui_text(prop, "Shadow Alpha", ""); + + prop= RNA_def_property(srna, "shadowcolor", PROP_FLOAT, PROP_NONE); + RNA_def_property_range(prop, 0.0f, 1.0f); + RNA_def_property_ui_text(prop, "Shadow Brightness", "Shadow color in grey value"); +} + + +static void rna_def_userdef_theme_ui_style(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + rna_def_userdef_theme_ui_font_style(brna); + + srna= RNA_def_struct(brna, "ThemeStyle", NULL); + RNA_def_struct_sdna(srna, "uiStyle"); + RNA_def_struct_ui_text(srna, "Style", "Theme settings for style sets."); + + prop= RNA_def_property(srna, "paneltitle", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "paneltitle"); + RNA_def_property_struct_type(prop, "ThemeFontStyle"); + RNA_def_property_ui_text(prop, "Panel Font", ""); + + prop= RNA_def_property(srna, "grouplabel", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "grouplabel"); + RNA_def_property_struct_type(prop, "ThemeFontStyle"); + RNA_def_property_ui_text(prop, "Group Label Font", ""); + + prop= RNA_def_property(srna, "widgetlabel", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "widgetlabel"); + RNA_def_property_struct_type(prop, "ThemeFontStyle"); + RNA_def_property_ui_text(prop, "Widget Label Font", ""); + + prop= RNA_def_property(srna, "widget", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "widget"); + RNA_def_property_struct_type(prop, "ThemeFontStyle"); + RNA_def_property_ui_text(prop, "Widget Font", ""); + +} + +static void rna_def_userdef_theme_ui_wcol(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + srna= RNA_def_struct(brna, "ThemeWidgetColors", NULL); + RNA_def_struct_sdna(srna, "uiWidgetColors"); + RNA_def_struct_ui_text(srna, "Theme Widget Color Set", "Theme settings for widget color sets."); + + prop= RNA_def_property(srna, "outline", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Outline", ""); + + prop= RNA_def_property(srna, "inner", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 4); + RNA_def_property_ui_text(prop, "Inner", ""); + + prop= RNA_def_property(srna, "inner_sel", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 4); + RNA_def_property_ui_text(prop, "Inner Selected", ""); + + prop= RNA_def_property(srna, "item", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 4); + RNA_def_property_ui_text(prop, "Item", ""); + + prop= RNA_def_property(srna, "text", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Text", ""); + + prop= RNA_def_property(srna, "text_sel", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Text Selected", ""); + + prop= RNA_def_property(srna, "shaded", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "shaded", 1); + RNA_def_property_ui_text(prop, "Shaded", ""); + + prop= RNA_def_property(srna, "shadetop", PROP_INT, PROP_NONE); + RNA_def_property_range(prop, -100, 100); + RNA_def_property_ui_text(prop, "Shade Top", ""); + + prop= RNA_def_property(srna, "shadedown", PROP_INT, PROP_NONE); + RNA_def_property_range(prop, -100, 100); + RNA_def_property_ui_text(prop, "Shade Down", ""); + +} + static void rna_def_userdef_theme_ui(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; - static EnumPropertyItem button_theme_styles[] = { - {TH_MINIMAL, "MINIMAL", "Minimal", ""}, - {TH_SHADED, "SHADED", "Shaded", ""}, - {TH_ROUNDED, "ROUNDED", "Rounded", ""}, - {TH_ROUNDSHADED, "ROUNDSHADED", "Round Shaded", ""}, - {TH_OLDSKOOL, "OLDSKOOL", "Old Skool", ""}, - {0, NULL, NULL, NULL}}; - + rna_def_userdef_theme_ui_wcol(brna); + srna= RNA_def_struct(brna, "ThemeUserInterface", NULL); RNA_def_struct_sdna(srna, "ThemeUI"); RNA_def_struct_ui_text(srna, "Theme User Interface", "Theme settings for user interface elements."); - prop= RNA_def_property(srna, "outline", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Outline", ""); - - prop= RNA_def_property(srna, "neutral", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Neutral", ""); - - prop= RNA_def_property(srna, "action", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Action", ""); - - prop= RNA_def_property(srna, "setting", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Setting", ""); - - prop= RNA_def_property(srna, "special_setting_1", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "setting1"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Special Setting 1", ""); - - prop= RNA_def_property(srna, "special_setting_2", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "setting2"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Special Setting 2", ""); - - prop= RNA_def_property(srna, "number_input", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "num"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Number Input", ""); - - prop= RNA_def_property(srna, "text_field", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "textfield"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Text Field", ""); - - prop= RNA_def_property(srna, "textfield_highlight", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "textfield_hi"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Text Field Highlight", ""); - - prop= RNA_def_property(srna, "popup", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Popup", ""); - - prop= RNA_def_property(srna, "text", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Text", ""); - - prop= RNA_def_property(srna, "text_highlight", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "text_hi"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Text highlight", ""); - - prop= RNA_def_property(srna, "menu_background", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "menu_back"); - RNA_def_property_array(prop, 4); - RNA_def_property_ui_text(prop, "Menu Background", ""); - - prop= RNA_def_property(srna, "menu_item", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Menu Item", ""); - - prop= RNA_def_property(srna, "menu_highlight", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "menu_hilite"); - RNA_def_property_array(prop, 4); - RNA_def_property_ui_text(prop, "Menu Highlight", ""); - - prop= RNA_def_property(srna, "menu_text", PROP_FLOAT, PROP_COLOR); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Menu Text", ""); - - prop= RNA_def_property(srna, "menu_text_highlight", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "menu_text_hi"); - RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Menu Text Highlight", ""); - - prop= RNA_def_property(srna, "button_draw_type", PROP_ENUM, PROP_NONE); - RNA_def_property_enum_sdna(prop, NULL, "but_drawtype"); - RNA_def_property_enum_items(prop, button_theme_styles); - RNA_def_property_ui_text(prop, "Button Draw Type", ""); - + prop= RNA_def_property(srna, "wcol_regular", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_regular"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Regular Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_tool", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_tool"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Tool Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_radio", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_radio"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Radio Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_text", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_text"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Text Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_option", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_option"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Option Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_num", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_num"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Number Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_numslider", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_numslider"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Slider Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_menu", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_menu"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Menu Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_pulldown", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_pulldown"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Pulldown Widget Colors", ""); + + prop= RNA_def_property(srna, "wcol_menu_back", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_menu_back"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Menu Backdrop Colors", ""); + + prop= RNA_def_property(srna, "wcol_menu_item", PROP_POINTER, PROP_NEVER_NULL); + RNA_def_property_pointer_sdna(prop, NULL, "wcol_menu_item"); + RNA_def_property_struct_type(prop, "ThemeWidgetColors"); + RNA_def_property_ui_text(prop, "Menu Item Colors", ""); + + prop= RNA_def_property(srna, "icon_file", PROP_STRING, PROP_FILEPATH); RNA_def_property_string_sdna(prop, NULL, "iconfile"); RNA_def_property_ui_text(prop, "Icon File", ""); } -static void rna_def_userdef_theme_spaces_main(StructRNA *srna) +static void rna_def_userdef_theme_spaces_main(StructRNA *srna, int spacetype) { PropertyRNA *prop; + /* window */ prop= RNA_def_property(srna, "back", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Back", ""); + RNA_def_property_ui_text(prop, "Window Back", ""); + prop= RNA_def_property(srna, "title", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Window Title", ""); + prop= RNA_def_property(srna, "text", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Text", ""); + RNA_def_property_ui_text(prop, "Window Text", ""); - prop= RNA_def_property(srna, "text_highlight", PROP_FLOAT, PROP_COLOR); - RNA_def_property_float_sdna(prop, NULL, "text_hi"); + prop= RNA_def_property(srna, "text_hi", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); - RNA_def_property_ui_text(prop, "Text Highlight", ""); + RNA_def_property_ui_text(prop, "Window Text Highlight", ""); + /* header */ prop= RNA_def_property(srna, "header", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Header", ""); + + prop= RNA_def_property(srna, "header_text", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Header Text", ""); + + prop= RNA_def_property(srna, "header_text_hi", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Header Text Highlight", ""); + + /* buttons */ + if(! ELEM(spacetype, SPACE_BUTS, SPACE_OUTLINER)) { + prop= RNA_def_property(srna, "button", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Button Back", ""); + + prop= RNA_def_property(srna, "button_title", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Button Title", ""); + + prop= RNA_def_property(srna, "button_text", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Button Text", ""); + + prop= RNA_def_property(srna, "button_text_hi", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "Button Text Highlight", ""); + } + + /* list/channels */ + if(ELEM4(spacetype, SPACE_IPO, SPACE_ACTION, SPACE_NLA, SPACE_NODE)) { + prop= RNA_def_property(srna, "list", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "List Back", ""); + + prop= RNA_def_property(srna, "list_title", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "List Title", ""); + + prop= RNA_def_property(srna, "list_text", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "List Text", ""); + + prop= RNA_def_property(srna, "list_text_hi", PROP_FLOAT, PROP_COLOR); + RNA_def_property_array(prop, 3); + RNA_def_property_ui_text(prop, "List Text Highlight", ""); + } } static void rna_def_userdef_theme_spaces_vertex(StructRNA *srna) @@ -314,7 +451,7 @@ static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme 3D View", "Theme settings for the 3D View."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_VIEW3D); prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -382,18 +519,18 @@ static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Current Frame", ""); } -static void rna_def_userdef_theme_space_ipo(BlenderRNA *brna) +static void rna_def_userdef_theme_space_graph(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; - /* space_ipo */ + /* space_graph */ srna= RNA_def_struct(brna, "ThemeGraphEditor", NULL); RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Graph Editor", "Theme settings for the Ipo Editor."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_IPO); prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -464,7 +601,7 @@ static void rna_def_userdef_theme_space_file(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme File Browser", "Theme settings for the File Browser."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_FILE); prop= RNA_def_property(srna, "selected_file", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "hilite"); @@ -497,17 +634,17 @@ static void rna_def_userdef_theme_space_file(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Active File Text", ""); } -static void rna_def_userdef_theme_space_oops(BlenderRNA *brna) +static void rna_def_userdef_theme_space_outliner(BlenderRNA *brna) { StructRNA *srna; - /* space_oops */ + /* space_outliner */ srna= RNA_def_struct(brna, "ThemeOutliner", NULL); RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Outliner", "Theme settings for the Outliner."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_OUTLINER); } static void rna_def_userdef_theme_space_info(BlenderRNA *brna) @@ -520,7 +657,7 @@ static void rna_def_userdef_theme_space_info(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme User Preferences", "Theme settings for the User Preferences."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_INFO); } static void rna_def_userdef_theme_space_text(BlenderRNA *brna) @@ -534,7 +671,7 @@ static void rna_def_userdef_theme_space_text(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Text Editor", "Theme settings for the Text Editor."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_TEXT); prop= RNA_def_property(srna, "line_numbers_background", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "grid"); @@ -593,7 +730,7 @@ static void rna_def_userdef_theme_space_node(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Node Editor", "Theme settings for the Node Editor."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_NODE); prop= RNA_def_property(srna, "wires", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "wire"); @@ -647,7 +784,7 @@ static void rna_def_userdef_theme_space_buts(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Buttons Window", "Theme settings for the Buttons Window."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_BUTS); prop= RNA_def_property(srna, "panel", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -665,7 +802,7 @@ static void rna_def_userdef_theme_space_time(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Timeline", "Theme settings for the Timeline."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_TIME); prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -688,7 +825,7 @@ static void rna_def_userdef_theme_space_sound(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Audio Window", "Theme settings for the Audio Window."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_SOUND); prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -716,7 +853,7 @@ static void rna_def_userdef_theme_space_image(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme Image Editor", "Theme settings for the Image Editor."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_IMAGE); rna_def_userdef_theme_spaces_vertex(srna); rna_def_userdef_theme_spaces_face(srna); @@ -812,7 +949,7 @@ static void rna_def_userdef_theme_space_action(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme DopeSheet", "Theme settings for the DopeSheet."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_ACTION); prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -885,7 +1022,7 @@ static void rna_def_userdef_theme_space_nla(BlenderRNA *brna) RNA_def_struct_sdna(srna, "ThemeSpace"); RNA_def_struct_ui_text(srna, "Theme NLA Editor", "Theme settings for the NLA Editor."); - rna_def_userdef_theme_spaces_main(srna); + rna_def_userdef_theme_spaces_main(srna, SPACE_NLA); prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); @@ -1041,9 +1178,12 @@ static void rna_def_userdef_themes(BlenderRNA *brna) static void rna_def_userdef_dothemes(BlenderRNA *brna) { + + rna_def_userdef_theme_ui_style(brna); rna_def_userdef_theme_ui(brna); + rna_def_userdef_theme_space_view3d(brna); - rna_def_userdef_theme_space_ipo(brna); + rna_def_userdef_theme_space_graph(brna); rna_def_userdef_theme_space_file(brna); rna_def_userdef_theme_space_nla(brna); rna_def_userdef_theme_space_action(brna); @@ -1053,7 +1193,7 @@ static void rna_def_userdef_dothemes(BlenderRNA *brna) rna_def_userdef_theme_space_text(brna); rna_def_userdef_theme_space_time(brna); rna_def_userdef_theme_space_node(brna); - rna_def_userdef_theme_space_oops(brna); + rna_def_userdef_theme_space_outliner(brna); rna_def_userdef_theme_space_info(brna); rna_def_userdef_theme_space_sound(brna); rna_def_userdef_theme_colorset(brna); @@ -1791,6 +1931,11 @@ void RNA_def_userdef(BlenderRNA *brna) RNA_def_property_collection_sdna(prop, NULL, "themes", NULL); RNA_def_property_struct_type(prop, "Theme"); RNA_def_property_ui_text(prop, "Themes", ""); + + prop= RNA_def_property(srna, "uistyles", PROP_COLLECTION, PROP_NONE); + RNA_def_property_collection_sdna(prop, NULL, "uistyles", NULL); + RNA_def_property_struct_type(prop, "ThemeStyle"); + RNA_def_property_ui_text(prop, "Styles", ""); /* nested structs */ prop= RNA_def_property(srna, "view", PROP_POINTER, PROP_NEVER_NULL); diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index 066b1321947..5e27b0da70d 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -94,400 +94,6 @@ #include "wm.h" #include "wm_window.h" -/***/ - -/* define for setting colors in theme below */ -#define SETCOL(col, r, g, b, a) {col[0]=r; col[1]=g; col[2]= b; col[3]= a;} - -/* patching UserDef struct and Themes */ -static void init_userdef_themes(void) -{ -// countall(); - - /* the UserDef struct is not corrected with do_versions() .... ugh! */ - if(U.wheellinescroll == 0) U.wheellinescroll = 3; - if(U.menuthreshold1==0) { - U.menuthreshold1= 5; - U.menuthreshold2= 2; - } - if(U.tb_leftmouse==0) { - U.tb_leftmouse= 5; - U.tb_rightmouse= 5; - } - if(U.mixbufsize==0) U.mixbufsize= 2048; - if (BLI_streq(U.tempdir, "/")) { - char *tmp= getenv("TEMP"); - - strcpy(U.tempdir, tmp?tmp:"/tmp/"); - } - if (U.savetime <= 0) { - U.savetime = 1; -// XXX error(".B.blend is buggy, please consider removing it.\n"); - } - /* transform widget settings */ - if(U.tw_hotspot==0) { - U.tw_hotspot= 14; - U.tw_size= 20; // percentage of window size - U.tw_handlesize= 16; // percentage of widget radius - } - if(U.pad_rot_angle==0) - U.pad_rot_angle= 15; - - if(U.flag & USER_CUSTOM_RANGE) - vDM_ColorBand_store(&U.coba_weight); /* signal for derivedmesh to use colorband */ - - if (G.main->versionfile <= 191) { - strcpy(U.plugtexdir, U.textudir); - strcpy(U.sounddir, "/"); - } - - /* patch to set Dupli Armature */ - if (G.main->versionfile < 220) { - U.dupflag |= USER_DUP_ARM; - } - - /* added seam, normal color, undo */ - if (G.main->versionfile <= 234) { - bTheme *btheme; - - U.uiflag |= USER_GLOBALUNDO; - if (U.undosteps==0) U.undosteps=32; - - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* check for alpha==0 is safe, then color was never set */ - if(btheme->tv3d.edge_seam[3]==0) { - SETCOL(btheme->tv3d.edge_seam, 230, 150, 50, 255); - } - if(btheme->tv3d.normal[3]==0) { - SETCOL(btheme->tv3d.normal, 0x22, 0xDD, 0xDD, 255); - } - if(btheme->tv3d.face_dot[3]==0) { - SETCOL(btheme->tv3d.face_dot, 255, 138, 48, 255); - btheme->tv3d.facedot_size= 4; - } - } - } - if (G.main->versionfile <= 235) { - /* illegal combo... */ - if (U.flag & USER_LMOUSESELECT) - U.flag &= ~USER_TWOBUTTONMOUSE; - } - if (G.main->versionfile <= 236) { - bTheme *btheme; - /* new space type */ - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* check for alpha==0 is safe, then color was never set */ - if(btheme->ttime.back[3]==0) { - btheme->ttime = btheme->tsnd; // copy from sound - } - if(btheme->text.syntaxn[3]==0) { - SETCOL(btheme->text.syntaxn, 0, 0, 200, 255); /* Numbers Blue*/ - SETCOL(btheme->text.syntaxl, 100, 0, 0, 255); /* Strings red */ - SETCOL(btheme->text.syntaxc, 0, 100, 50, 255); /* Comments greenish */ - SETCOL(btheme->text.syntaxv, 95, 95, 0, 255); /* Special */ - SETCOL(btheme->text.syntaxb, 128, 0, 80, 255); /* Builtin, red-purple */ - } - } - } - if (G.main->versionfile <= 237) { - bTheme *btheme; - /* bone colors */ - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* check for alpha==0 is safe, then color was never set */ - if(btheme->tv3d.bone_solid[3]==0) { - SETCOL(btheme->tv3d.bone_solid, 200, 200, 200, 255); - SETCOL(btheme->tv3d.bone_pose, 80, 200, 255, 80); - } - } - } - if (G.main->versionfile <= 238) { - bTheme *btheme; - /* bone colors */ - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* check for alpha==0 is safe, then color was never set */ - if(btheme->tnla.strip[3]==0) { - SETCOL(btheme->tnla.strip_select, 0xff, 0xff, 0xaa, 255); - SETCOL(btheme->tnla.strip, 0xe4, 0x9c, 0xc6, 255); - } - } - } - if (G.main->versionfile <= 239) { - bTheme *btheme; - - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* Lamp theme, check for alpha==0 is safe, then color was never set */ - if(btheme->tv3d.lamp[3]==0) { - SETCOL(btheme->tv3d.lamp, 0, 0, 0, 40); -/* TEMPORAL, remove me! (ton) */ - U.uiflag |= USER_PLAINMENUS; - } - - /* check for text field selection highlight, set it to text editor highlight by default */ - if(btheme->tui.textfield_hi[3]==0) { - SETCOL(btheme->tui.textfield_hi, - btheme->text.shade2[0], - btheme->text.shade2[1], - btheme->text.shade2[2], - 255); - } - } - if(U.obcenter_dia==0) U.obcenter_dia= 6; - } - if (G.main->versionfile <= 241) { - bTheme *btheme; - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* Node editor theme, check for alpha==0 is safe, then color was never set */ - if(btheme->tnode.syntaxn[3]==0) { - /* re-uses syntax color storage */ - btheme->tnode= btheme->tv3d; - SETCOL(btheme->tnode.edge_select, 255, 255, 255, 255); - SETCOL(btheme->tnode.syntaxl, 150, 150, 150, 255); /* TH_NODE, backdrop */ - SETCOL(btheme->tnode.syntaxn, 129, 131, 144, 255); /* in/output */ - SETCOL(btheme->tnode.syntaxb, 127,127,127, 255); /* operator */ - SETCOL(btheme->tnode.syntaxv, 142, 138, 145, 255); /* generator */ - SETCOL(btheme->tnode.syntaxc, 120, 145, 120, 255); /* group */ - } - /* Group theme colors */ - if(btheme->tv3d.group[3]==0) { - SETCOL(btheme->tv3d.group, 0x10, 0x40, 0x10, 255); - SETCOL(btheme->tv3d.group_active, 0x66, 0xFF, 0x66, 255); - } - /* Sequence editor theme*/ - if(btheme->tseq.movie[3]==0) { - SETCOL(btheme->tseq.movie, 81, 105, 135, 255); - SETCOL(btheme->tseq.image, 109, 88, 129, 255); - SETCOL(btheme->tseq.scene, 78, 152, 62, 255); - SETCOL(btheme->tseq.audio, 46, 143, 143, 255); - SETCOL(btheme->tseq.effect, 169, 84, 124, 255); - SETCOL(btheme->tseq.plugin, 126, 126, 80, 255); - SETCOL(btheme->tseq.transition, 162, 95, 111, 255); - SETCOL(btheme->tseq.meta, 109, 145, 131, 255); - } - if(!(btheme->tui.iconfile)) { - BLI_strncpy(btheme->tui.iconfile, "", sizeof(btheme->tui.iconfile)); - } - } - - /* set defaults for 3D View rotating axis indicator */ - /* since size can't be set to 0, this indicates it's not saved in .B.blend */ - if (U.rvisize == 0) { - U.rvisize = 15; - U.rvibright = 8; - U.uiflag |= USER_SHOW_ROTVIEWICON; - } - - } - if (G.main->versionfile <= 242) { - bTheme *btheme; - - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* long keyframe color */ - /* check for alpha==0 is safe, then color was never set */ - if(btheme->tact.strip[3]==0) { - SETCOL(btheme->tv3d.edge_sharp, 255, 32, 32, 255); - SETCOL(btheme->tact.strip_select, 0xff, 0xff, 0xaa, 204); - SETCOL(btheme->tact.strip, 0xe4, 0x9c, 0xc6, 204); - } - - /* IPO-Editor - Vertex Size*/ - if(btheme->tipo.vertex_size == 0) { - btheme->tipo.vertex_size= 3; - } - } - } - if (G.main->versionfile <= 243) { - /* set default number of recently-used files (if not set) */ - if (U.recent_files == 0) U.recent_files = 10; - } - if (G.main->versionfile < 245 || (G.main->versionfile == 245 && G.main->subversionfile < 3)) { - bTheme *btheme; - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - SETCOL(btheme->tv3d.editmesh_active, 255, 255, 255, 128); - } - if(U.coba_weight.tot==0) - init_colorband(&U.coba_weight, 1); - } - if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 11)) { - bTheme *btheme; - for (btheme= U.themes.first; btheme; btheme= btheme->next) { - /* these should all use the same colour */ - SETCOL(btheme->tv3d.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tipo.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tact.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tnla.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tseq.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tsnd.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->ttime.cframe, 0x60, 0xc0, 0x40, 255); - } - } - if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 11)) { - bTheme *btheme; - for (btheme= U.themes.first; btheme; btheme= btheme->next) { - /* these should all use the same color */ - SETCOL(btheme->tv3d.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tipo.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tact.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tnla.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tseq.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->tsnd.cframe, 0x60, 0xc0, 0x40, 255); - SETCOL(btheme->ttime.cframe, 0x60, 0xc0, 0x40, 255); - } - } - if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 13)) { - bTheme *btheme; - for (btheme= U.themes.first; btheme; btheme= btheme->next) { - /* action channel groups (recolor anyway) */ - SETCOL(btheme->tact.group, 0x39, 0x7d, 0x1b, 255); - SETCOL(btheme->tact.group_active, 0x7d, 0xe9, 0x60, 255); - - /* bone custom-color sets */ - // FIXME: this check for initialised colors is bad - if (btheme->tarm[0].solid[3] == 0) { - /* set 1 */ - SETCOL(btheme->tarm[0].solid, 0x9a, 0x00, 0x00, 255); - SETCOL(btheme->tarm[0].select, 0xbd, 0x11, 0x11, 255); - SETCOL(btheme->tarm[0].active, 0xf7, 0x0a, 0x0a, 255); - /* set 2 */ - SETCOL(btheme->tarm[1].solid, 0xf7, 0x40, 0x18, 255); - SETCOL(btheme->tarm[1].select, 0xf6, 0x69, 0x13, 255); - SETCOL(btheme->tarm[1].active, 0xfa, 0x99, 0x00, 255); - /* set 3 */ - SETCOL(btheme->tarm[2].solid, 0x1e, 0x91, 0x09, 255); - SETCOL(btheme->tarm[2].select, 0x59, 0xb7, 0x0b, 255); - SETCOL(btheme->tarm[2].active, 0x83, 0xef, 0x1d, 255); - /* set 4 */ - SETCOL(btheme->tarm[3].solid, 0x0a, 0x36, 0x94, 255); - SETCOL(btheme->tarm[3].select, 0x36, 0x67, 0xdf, 255); - SETCOL(btheme->tarm[3].active, 0x5e, 0xc1, 0xef, 255); - /* set 5 */ - SETCOL(btheme->tarm[4].solid, 0xa9, 0x29, 0x4e, 255); - SETCOL(btheme->tarm[4].select, 0xc1, 0x41, 0x6a, 255); - SETCOL(btheme->tarm[4].active, 0xf0, 0x5d, 0x91, 255); - /* set 6 */ - SETCOL(btheme->tarm[5].solid, 0x43, 0x0c, 0x78, 255); - SETCOL(btheme->tarm[5].select, 0x54, 0x3a, 0xa3, 255); - SETCOL(btheme->tarm[5].active, 0x87, 0x64, 0xd5, 255); - /* set 7 */ - SETCOL(btheme->tarm[6].solid, 0x24, 0x78, 0x5a, 255); - SETCOL(btheme->tarm[6].select, 0x3c, 0x95, 0x79, 255); - SETCOL(btheme->tarm[6].active, 0x6f, 0xb6, 0xab, 255); - /* set 8 */ - SETCOL(btheme->tarm[7].solid, 0x4b, 0x70, 0x7c, 255); - SETCOL(btheme->tarm[7].select, 0x6a, 0x86, 0x91, 255); - SETCOL(btheme->tarm[7].active, 0x9b, 0xc2, 0xcd, 255); - /* set 9 */ - SETCOL(btheme->tarm[8].solid, 0xf4, 0xc9, 0x0c, 255); - SETCOL(btheme->tarm[8].select, 0xee, 0xc2, 0x36, 255); - SETCOL(btheme->tarm[8].active, 0xf3, 0xff, 0x00, 255); - /* set 10 */ - SETCOL(btheme->tarm[9].solid, 0x1e, 0x20, 0x24, 255); - SETCOL(btheme->tarm[9].select, 0x48, 0x4c, 0x56, 255); - SETCOL(btheme->tarm[9].active, 0xff, 0xff, 0xff, 255); - /* set 11 */ - SETCOL(btheme->tarm[10].solid, 0x6f, 0x2f, 0x6a, 255); - SETCOL(btheme->tarm[10].select, 0x98, 0x45, 0xbe, 255); - SETCOL(btheme->tarm[10].active, 0xd3, 0x30, 0xd6, 255); - /* set 12 */ - SETCOL(btheme->tarm[11].solid, 0x6c, 0x8e, 0x22, 255); - SETCOL(btheme->tarm[11].select, 0x7f, 0xb0, 0x22, 255); - SETCOL(btheme->tarm[11].active, 0xbb, 0xef, 0x5b, 255); - /* set 13 */ - SETCOL(btheme->tarm[12].solid, 0x8d, 0x8d, 0x8d, 255); - SETCOL(btheme->tarm[12].select, 0xb0, 0xb0, 0xb0, 255); - SETCOL(btheme->tarm[12].active, 0xde, 0xde, 0xde, 255); - /* set 14 */ - SETCOL(btheme->tarm[13].solid, 0x83, 0x43, 0x26, 255); - SETCOL(btheme->tarm[13].select, 0x8b, 0x58, 0x11, 255); - SETCOL(btheme->tarm[13].active, 0xbd, 0x6a, 0x11, 255); - /* set 15 */ - SETCOL(btheme->tarm[14].solid, 0x08, 0x31, 0x0e, 255); - SETCOL(btheme->tarm[14].select, 0x1c, 0x43, 0x0b, 255); - SETCOL(btheme->tarm[14].active, 0x34, 0x62, 0x2b, 255); - } - } - } - if ((G.main->versionfile < 245) || (G.main->versionfile == 245 && G.main->subversionfile < 16)) { - U.flag |= USER_ADD_VIEWALIGNED|USER_ADD_EDITMODE; - } - if ((G.main->versionfile < 247) || (G.main->versionfile == 247 && G.main->subversionfile <= 2)) { - bTheme *btheme; - - /* adjust themes */ - for (btheme= U.themes.first; btheme; btheme= btheme->next) { - char *col; - - /* IPO Editor: Handles/Vertices */ - col = btheme->tipo.vertex; - SETCOL(btheme->tipo.handle_vertex, col[0], col[1], col[2], 255); - col = btheme->tipo.vertex_select; - SETCOL(btheme->tipo.handle_vertex_select, col[0], col[1], col[2], 255); - btheme->tipo.handle_vertex_size= btheme->tipo.vertex_size; - - /* Sequence/Image Editor: colors for GPencil text */ - col = btheme->tv3d.bone_pose; - SETCOL(btheme->tseq.bone_pose, col[0], col[1], col[2], 255); - SETCOL(btheme->tima.bone_pose, col[0], col[1], col[2], 255); - col = btheme->tv3d.vertex_select; - SETCOL(btheme->tseq.vertex_select, col[0], col[1], col[2], 255); - } - } - if (G.main->versionfile < 250) { - bTheme *btheme; - - for(btheme= U.themes.first; btheme; btheme= btheme->next) { - /* this was not properly initialized in 2.45 */ - if(btheme->tima.face_dot[3]==0) { - SETCOL(btheme->tima.editmesh_active, 255, 255, 255, 128); - SETCOL(btheme->tima.face_dot, 255, 133, 0, 255); - btheme->tima.facedot_size= 2; - } - - /* DopeSheet - (Object) Channel color */ - SETCOL(btheme->tact.ds_channel, 82, 96, 110, 255); - SETCOL(btheme->tact.ds_subchannel, 124, 137, 150, 255); - /* DopeSheet - Group Channel color (saner version) */ - SETCOL(btheme->tact.group, 79, 101, 73, 255); - SETCOL(btheme->tact.group_active, 135, 177, 125, 255); - - /* Graph Editor - (Object) Channel color */ - SETCOL(btheme->tipo.ds_channel, 82, 96, 110, 255); - SETCOL(btheme->tipo.ds_subchannel, 124, 137, 150, 255); - /* Graph Editor - Group Channel color */ - SETCOL(btheme->tipo.group, 79, 101, 73, 255); - SETCOL(btheme->tipo.group_active, 135, 177, 125, 255); - } - - /* adjust grease-pencil distances */ - U.gp_manhattendist= 1; - U.gp_euclideandist= 2; - - /* adjust default interpolation for new IPO-curves */ - U.ipo_new= BEZT_IPO_BEZ; - } - - /* GL Texture Garbage Collection (variable abused above!) */ - if (U.textimeout == 0) { - U.texcollectrate = 60; - U.textimeout = 120; - } - if (U.memcachelimit <= 0) { - U.memcachelimit = 32; - } - if (U.frameserverport == 0) { - U.frameserverport = 8080; - } - - MEM_CacheLimiter_set_maximum(U.memcachelimit * 1024 * 1024); - - // sets themes, fonts, .. from userdef - UI_init_userdef(); - - /* funny name, but it is GE stuff, moves userdef stuff to engine */ -// XXX space_set_commmandline_options(); - /* this timer uses U */ -// XXX reset_autosave(); - -} /* To be able to read files without windows closing, opening, moving we try to prepare for worst case: @@ -612,6 +218,14 @@ static void wm_window_match_do(bContext *C, ListBase *oldwmlist) } } +/* in case UserDef was read, we re-initialize all, and do versioning */ +static void wm_init_userdef() +{ + UI_init_userdef(); + MEM_CacheLimiter_set_maximum(U.memcachelimit * 1024 * 1024); + +} + void WM_read_file(bContext *C, char *name, ReportList *reports) { int retval; @@ -639,7 +253,7 @@ void WM_read_file(bContext *C, char *name, ReportList *reports) // XXX mainwindow_set_filename_to_title(G.main->name); // XXX sound_initialize_sounds(); - if(retval==2) init_userdef_themes(); // in case a userdef is read from regular .blend + if(retval==2) wm_init_userdef(); // in case a userdef is read from regular .blend if (retval!=0) G.relbase_valid = 1; @@ -663,6 +277,7 @@ void WM_read_file(bContext *C, char *name, ReportList *reports) /* called on startup, (context entirely filled with NULLs) */ /* or called for 'Erase All' */ +/* op can be NULL */ int WM_read_homefile(bContext *C, wmOperator *op) { ListBase wmbase; @@ -676,7 +291,11 @@ int WM_read_homefile(bContext *C, wmOperator *op) free_ttfont(); /* still weird... what does it here? */ G.relbase_valid = 0; - if (!from_memory) BLI_make_file_string(G.sce, tstr, home, ".B.blend"); + if (!from_memory) { + BLI_make_file_string(G.sce, tstr, home, ".B25.blend"); + if(!BLI_exists(tstr)) + BLI_make_file_string(G.sce, tstr, home, ".B.blend"); + } strcpy(scestr, G.sce); /* temporary store */ /* prevent loading no UI */ @@ -697,7 +316,7 @@ int WM_read_homefile(bContext *C, wmOperator *op) strcpy(G.sce, scestr); /* restore */ - init_userdef_themes(); + wm_init_userdef(); /* When loading factory settings, the reset solid OpenGL lights need to be applied. */ GPU_default_lights(); @@ -987,7 +606,7 @@ int WM_write_homefile(bContext *C, wmOperator *op) char tstr[FILE_MAXDIR+FILE_MAXFILE]; int write_flags; - BLI_make_file_string("/", tstr, BLI_gethome(), ".B.blend"); + 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); From 7f21e7f4a30332e6f7483304b5d1fdce0c4976e7 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 27 Apr 2009 13:55:38 +0000 Subject: [PATCH 18/60] 2.5 Forgot to add new file! This is the toolbar, it get overlayed on top of view, not changing main window display. --- .../editors/space_view3d/view3d_toolbar.c | 195 ++++++++++++++++++ 1 file changed, 195 insertions(+) create mode 100644 source/blender/editors/space_view3d/view3d_toolbar.c diff --git a/source/blender/editors/space_view3d/view3d_toolbar.c b/source/blender/editors/space_view3d/view3d_toolbar.c new file mode 100644 index 00000000000..9f16e124f77 --- /dev/null +++ b/source/blender/editors/space_view3d/view3d_toolbar.c @@ -0,0 +1,195 @@ +/** + * $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) 2009 Blender Foundation. + * All rights reserved. + * + * + * Contributor(s): Blender Foundation + * + * ***** END GPL LICENSE BLOCK ***** + */ + +#include +#include +#include +#include + +#include "DNA_ID.h" +#include "DNA_action_types.h" +#include "DNA_armature_types.h" +#include "DNA_curve_types.h" +#include "DNA_camera_types.h" +#include "DNA_lamp_types.h" +#include "DNA_lattice_types.h" +#include "DNA_meta_types.h" +#include "DNA_mesh_types.h" +#include "DNA_meshdata_types.h" +#include "DNA_object_types.h" +#include "DNA_space_types.h" +#include "DNA_scene_types.h" +#include "DNA_screen_types.h" +#include "DNA_userdef_types.h" +#include "DNA_view3d_types.h" +#include "DNA_world_types.h" + +#include "MEM_guardedalloc.h" + +#include "BLI_arithb.h" +#include "BLI_blenlib.h" +#include "BLI_editVert.h" +#include "BLI_rand.h" + +#include "BKE_action.h" +#include "BKE_brush.h" +#include "BKE_context.h" +#include "BKE_curve.h" +#include "BKE_customdata.h" +#include "BKE_depsgraph.h" +#include "BKE_idprop.h" +#include "BKE_mesh.h" +#include "BKE_object.h" +#include "BKE_global.h" +#include "BKE_scene.h" +#include "BKE_screen.h" +#include "BKE_utildefines.h" + +#include "BIF_gl.h" +#include "BIF_transform.h" + +#include "WM_api.h" +#include "WM_types.h" + +#include "RNA_access.h" +#include "RNA_define.h" + +#include "ED_armature.h" +#include "ED_curve.h" +#include "ED_image.h" +#include "ED_keyframing.h" +#include "ED_mesh.h" +#include "ED_object.h" +#include "ED_particle.h" +#include "ED_screen.h" +#include "ED_types.h" +#include "ED_util.h" + +#include "UI_interface.h" +#include "UI_resources.h" +#include "UI_view2d.h" + +#include "view3d_intern.h" // own include + + +/* ******************* view3d space & buttons ************** */ + + +/* op->invoke */ +static void redo_cb(bContext *C, void *arg_op, void *arg2) +{ + wmOperator *lastop= arg_op; + + if(lastop) { + int retval; + + printf("operator redo %s\n", lastop->type->name); + ED_undo_pop(C); + retval= WM_operator_repeat(C, lastop); + if((retval & OPERATOR_FINISHED)==0) { + printf("operator redo failed %s\n", lastop->type->name); + ED_undo_redo(C); + } + } +} + +static void view3d_panel_operator_redo(const bContext *C, ARegion *ar, short cntrl) +{ + /* XXX temp */ + extern int uiDefAutoButsRNA_single(const bContext *C, uiBlock *block, PointerRNA *ptr); + wmWindowManager *wm= CTX_wm_manager(C); + wmOperator *op; + PointerRNA ptr; + uiBlock *block; + int height = 0; + + block= uiBeginBlock(C, ar, "view3d_panel_operator_redo", UI_EMBOSS); + if(uiNewPanel(C, ar, block, "Operator", "View3d", 0, 10, 120, height)==0) return; + + /* only for operators that are registered and did an undo push */ + for(op= wm->operators.last; op; op= op->prev) + if((op->type->flag & OPTYPE_REGISTER) && (op->type->flag & OPTYPE_UNDO)) + break; + + if(op==NULL) + return; + if(op->type->poll && op->type->poll(C)==0) + return; + + uiBlockSetFunc(block, redo_cb, op, NULL); + + if(!op->properties) { + IDPropertyTemplate val = {0}; + op->properties= IDP_New(IDP_GROUP, val, "wmOperatorProperties"); + } + + RNA_pointer_create(&wm->id, op->type->srna, op->properties, &ptr); + height= uiDefAutoButsRNA_single(C, block, &ptr); + + uiNewPanelHeight(block, height); + + uiEndBlock(C, block); +} + + +void view3d_tools_area_defbuts(const bContext *C, ARegion *ar) +{ + uiBeginPanels(C, ar); + + view3d_panel_operator_redo(C, ar, 0); + + uiEndPanels(C, ar); +} + + +static int view3d_toolbar(bContext *C, wmOperator *op) +{ + ScrArea *sa= CTX_wm_area(C); + ARegion *ar= view3d_has_tools_region(sa); + + if(ar) { + ar->flag ^= RGN_FLAG_HIDDEN; + ar->v2d.flag &= ~V2D_IS_INITIALISED; /* XXX should become hide/unhide api? */ + + ED_area_initialize(CTX_wm_manager(C), CTX_wm_window(C), sa); + ED_area_tag_redraw(sa); + } + return OPERATOR_FINISHED; +} + +void VIEW3D_OT_toolbar(wmOperatorType *ot) +{ + ot->name= "Toolbar"; + ot->idname= "VIEW3D_OT_toolbar"; + + ot->exec= view3d_toolbar; + ot->poll= ED_operator_view3d_active; + + /* flags */ + ot->flag= 0; +} From c36fb8c913dd935239c4a9f641766a642bf1bebf Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 27 Apr 2009 15:43:35 +0000 Subject: [PATCH 19/60] 2.5 Fix repeat crash with transform. Just remove stupid twmat, don't need to cache results in view3d. Made it more safe too. --- source/blender/blenloader/intern/readfile.c | 1 - .../editors/space_view3d/space_view3d.c | 1 - source/blender/editors/transform/transform.c | 14 +++--------- .../transform/transform_orientations.c | 22 ++++++++++--------- source/blender/makesdna/DNA_view3d_types.h | 1 - 5 files changed, 15 insertions(+), 24 deletions(-) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index c8484a63b62..d48d96ef977 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -4522,7 +4522,6 @@ static void view3d_split_250(View3D *v3d, ListBase *regions) rv3d->dist= v3d->dist; VECCOPY(rv3d->ofs, v3d->ofs); QUATCOPY(rv3d->viewquat, v3d->viewquat); - Mat4One(rv3d->twmat); } } } diff --git a/source/blender/editors/space_view3d/space_view3d.c b/source/blender/editors/space_view3d/space_view3d.c index 0c41d6b4917..9ed7dd50d2e 100644 --- a/source/blender/editors/space_view3d/space_view3d.c +++ b/source/blender/editors/space_view3d/space_view3d.c @@ -183,7 +183,6 @@ static SpaceLink *view3d_new(const bContext *C) rv3d->persp= 1; rv3d->view= 7; rv3d->dist= 10.0; - Mat4One(rv3d->twmat); return (SpaceLink *)v3d; } diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index d588a73789c..3231c066196 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -985,9 +985,8 @@ void saveTransform(bContext *C, TransInfo *t, wmOperator *op) RNA_boolean_set(op->ptr, "mirror", t->flag & T_MIRROR); } - if (RNA_struct_find_property(op->ptr, "constraint_mode")) + if (RNA_struct_find_property(op->ptr, "constraint_axis")) { - RNA_int_set(op->ptr, "constraint_mode", t->con.mode); RNA_int_set(op->ptr, "constraint_orientation", t->current_orientation); if (t->con.mode & CON_APPLY) @@ -1038,18 +1037,11 @@ int initTransform(bContext *C, TransInfo *t, wmOperator *op, wmEvent *event, int return 0; } - initTransformOrientation(C, t); - if(t->spacetype == SPACE_VIEW3D) { //calc_manipulator_stats(curarea); - if (t->ar->regiontype == RGN_TYPE_WINDOW) - { - RegionView3D *rv3d = t->ar->regiondata; - Mat3CpyMat4(t->spacemtx, rv3d->twmat); - } - Mat3Ortho(t->spacemtx); - + initTransformOrientation(C, t); + t->draw_handle = ED_region_draw_cb_activate(t->ar->type, drawTransform, t, REGION_DRAW_POST); } else if(t->spacetype == SPACE_IMAGE) { diff --git a/source/blender/editors/transform/transform_orientations.c b/source/blender/editors/transform/transform_orientations.c index 06fc7d99659..d3e4e2b1421 100644 --- a/source/blender/editors/transform/transform_orientations.c +++ b/source/blender/editors/transform/transform_orientations.c @@ -405,7 +405,6 @@ int BIF_countTransformOrientation(const bContext *C) { void applyTransformOrientation(bContext *C, TransInfo *t) { TransformOrientation *ts; View3D *v3d = CTX_wm_view3d(C); - RegionView3D *rv3d= CTX_wm_region_view3d(C); int selected_index = (v3d->twmode - V3D_MANIP_CUSTOM); int i; @@ -414,7 +413,6 @@ void applyTransformOrientation(bContext *C, TransInfo *t) { if (selected_index == i) { strcpy(t->spacename, ts->name); Mat3CpyMat3(t->spacemtx, ts->mat); - Mat4CpyMat3(rv3d->twmat, ts->mat); break; } } @@ -448,14 +446,11 @@ static int count_bone_select(bArmature *arm, ListBase *lb, int do_it) void initTransformOrientation(bContext *C, TransInfo *t) { View3D *v3d = CTX_wm_view3d(C); - RegionView3D *rv3d = CTX_wm_region_view3d(C); Object *ob = CTX_data_active_object(C); 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}; - if(t->spacetype != SPACE_VIEW3D) return; - switch(t->current_orientation) { case V3D_MANIP_GLOBAL: strcpy(t->spacename, "global"); @@ -500,28 +495,35 @@ void initTransformOrientation(bContext *C, TransInfo *t) if (type == ORIENTATION_NONE) { - Mat4One(rv3d->twmat); + Mat3One(t->spacemtx); } else { - Mat4CpyMat3(rv3d->twmat, mat); + Mat3CpyMat3(t->spacemtx, mat); } break; } /* no break we define 'normal' as 'local' in Object mode */ case V3D_MANIP_LOCAL: strcpy(t->spacename, "local"); - Mat4CpyMat4(rv3d->twmat, ob->obmat); - Mat4Ortho(rv3d->twmat); + Mat3CpyMat4(t->spacemtx, ob->obmat); + Mat3Ortho(t->spacemtx); break; case V3D_MANIP_VIEW: + if (t->ar->regiontype == RGN_TYPE_WINDOW) { + RegionView3D *rv3d = t->ar->regiondata; float mat[3][3]; + strcpy(t->spacename, "view"); Mat3CpyMat4(mat, rv3d->viewinv); Mat3Ortho(mat); - Mat4CpyMat3(rv3d->twmat, mat); + Mat3CpyMat3(t->spacemtx, mat); + } + else + { + Mat3One(t->spacemtx); } break; default: /* V3D_MANIP_CUSTOM */ diff --git a/source/blender/makesdna/DNA_view3d_types.h b/source/blender/makesdna/DNA_view3d_types.h index 3b56fd96493..5d9aac45102 100644 --- a/source/blender/makesdna/DNA_view3d_types.h +++ b/source/blender/makesdna/DNA_view3d_types.h @@ -78,7 +78,6 @@ typedef struct RegionView3D { float viewinv[4][4]; float persmat[4][4]; float persinv[4][4]; - float twmat[4][4]; /* transform widget */ float viewquat[4], dist, zfac; /* zfac is initgrabz() result */ float camdx, camdy; /* camera view offsets, 1.0 = viewplane moves entire width/height */ From 58cdd37f52591dd47962e00c72564f579e1fc4a7 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 27 Apr 2009 18:05:58 +0000 Subject: [PATCH 20/60] UI: * Made separator item work horizontal & vertical. * Add colon (:) automatic for int/float/enum/string. * Added space variables to uiStyle and use them in the layout engine. * Added initial World buttons by Thomas Dinges, thanks! * Added some code for modifiers in the Object Data context. This will become a template though. * Use a common poll() callback in the scripts to reduce code. --- release/ui/buttons_data.py | 56 ++++++++ release/ui/buttons_objects.py | 31 ++--- release/ui/buttons_scene.py | 12 -- release/ui/buttons_world.py | 130 ++++++++++++++++++ source/blender/editors/armature/poselib.c | 2 +- source/blender/editors/include/UI_interface.h | 9 +- source/blender/editors/interface/interface.c | 2 +- .../blender/editors/interface/interface_api.c | 4 +- .../editors/interface/interface_handlers.c | 2 +- .../editors/interface/interface_layout.c | 115 +++++++++------- .../editors/interface/interface_regions.c | 6 +- .../editors/interface/interface_style.c | 6 + .../editors/interface/interface_utils.c | 6 +- source/blender/editors/object/object_edit.c | 6 +- source/blender/editors/object/object_intern.h | 3 + .../blender/editors/object/object_modifier.c | 98 +++++++++++++ source/blender/editors/object/object_ops.c | 2 + source/blender/editors/screen/screen_ops.c | 2 +- .../editors/space_image/image_header.c | 24 ++-- .../space_sequencer/sequencer_header.c | 2 +- .../blender/editors/space_text/text_header.c | 10 +- .../editors/space_view3d/view3d_header.c | 18 +-- source/blender/makesdna/DNA_userdef_types.h | 10 +- source/blender/makesrna/RNA_enum_types.h | 1 + source/blender/makesrna/intern/rna_modifier.c | 78 ++++++----- source/blender/makesrna/intern/rna_scene.c | 6 +- 26 files changed, 477 insertions(+), 164 deletions(-) create mode 100644 release/ui/buttons_data.py create mode 100644 release/ui/buttons_world.py create mode 100644 source/blender/editors/object/object_modifier.c diff --git a/release/ui/buttons_data.py b/release/ui/buttons_data.py new file mode 100644 index 00000000000..b141b3fb8c3 --- /dev/null +++ b/release/ui/buttons_data.py @@ -0,0 +1,56 @@ + +import bpy + +class DataButtonsPanel(bpy.types.Panel): + __space_type__ = "BUTTONS_WINDOW" + __region_type__ = "WINDOW" + __context__ = "data" + +class DATA_PT_modifiers(DataButtonsPanel): + __idname__ = "DATA_PT_modifiers" + __label__ = "Modifiers" + + def draw(self, context): + ob = context.active_object + layout = self.layout + + if not ob: + return + + layout.row() + layout.item_menu_enumO("OBJECT_OT_modifier_add", "type") + + for md in ob.modifiers: + sub = layout.box() + + sub.row() + sub.itemR(md, "expanded", text="") + sub.itemR(md, "name", text="") + + sub.itemR(md, "render", text="") + sub.itemR(md, "realtime", text="") + sub.itemR(md, "editmode", text="") + sub.itemR(md, "on_cage", text="") + + if md.expanded: + sub.row() + sub.itemS() + + if md.type == "ARMATURE": + self.armature(sub, md) + + def armature(self, layout, md): + layout.column() + layout.itemR(md, "object") + layout.row() + layout.itemR(md, "vertex_group") + layout.itemR(md, "invert") + layout.column_flow() + layout.itemR(md, "use_vertex_groups") + layout.itemR(md, "use_bone_envelopes") + layout.itemR(md, "quaternion") + layout.itemR(md, "b_bone_rest") + layout.itemR(md, "multi_modifier") + +bpy.types.register(DATA_PT_modifiers) + diff --git a/release/ui/buttons_objects.py b/release/ui/buttons_objects.py index f971d167f7f..8e76bf50837 100644 --- a/release/ui/buttons_objects.py +++ b/release/ui/buttons_objects.py @@ -6,6 +6,9 @@ class ObjectButtonsPanel(bpy.types.Panel): __region_type__ = "WINDOW" __context__ = "object" + def poll(self, context): + return (context.active_object != None) + class OBJECT_PT_transform(ObjectButtonsPanel): __idname__ = "OBJECT_PT_transform" __label__ = "Transform" @@ -14,9 +17,6 @@ class OBJECT_PT_transform(ObjectButtonsPanel): ob = context.active_object layout = self.layout - if not ob: - return - layout.row() layout.itemR(ob, "location") layout.itemR(ob, "rotation") @@ -30,9 +30,6 @@ class OBJECT_PT_groups(ObjectButtonsPanel): ob = context.active_object layout = self.layout - if not ob: - return - layout.row() layout.itemR(ob, "pass_index") layout.itemR(ob, "parent") @@ -59,13 +56,7 @@ class OBJECT_PT_display(ObjectButtonsPanel): def draw(self, context): ob = context.active_object layout = self.layout - - if not ob: - return - layout.row() - layout.itemR(ob, "type", text="Object Type") - layout.row() layout.itemR(ob, "max_draw_type", text="Type") layout.itemR(ob, "draw_bounds_type", text="Bounds") @@ -86,18 +77,15 @@ class OBJECT_PT_duplication(ObjectButtonsPanel): ob = context.active_object layout = self.layout - if not ob: - return - layout.column() layout.itemR(ob, "dupli_type", text="", expand=True) if ob.dupli_type == "FRAMES": layout.column_flow() - layout.itemR(ob, "dupli_frames_start", text="Start:") - layout.itemR(ob, "dupli_frames_end", text="End:") - layout.itemR(ob, "dupli_frames_on", text="On:") - layout.itemR(ob, "dupli_frames_off", text="Off:") + layout.itemR(ob, "dupli_frames_start", text="Start") + layout.itemR(ob, "dupli_frames_end", text="End") + layout.itemR(ob, "dupli_frames_on", text="On") + layout.itemR(ob, "dupli_frames_off", text="Off") class OBJECT_PT_animation(ObjectButtonsPanel): __idname__ = "OBJECT_PT_animation" @@ -107,9 +95,6 @@ class OBJECT_PT_animation(ObjectButtonsPanel): ob = context.active_object layout = self.layout - if not ob: - return - layout.split(number=2) sub = layout.sub(0) @@ -119,7 +104,7 @@ class OBJECT_PT_animation(ObjectButtonsPanel): sub.itemR(ob, "time_offset_particle", text="Particle") sub.itemR(ob, "time_offset_parent", text="Parent") sub.itemR(ob, "slow_parent") - sub.itemR(ob, "time_offset", text="Offset:") + sub.itemR(ob, "time_offset", text="Offset") sub = layout.sub(1) sub.column() diff --git a/release/ui/buttons_scene.py b/release/ui/buttons_scene.py index 89945c1e531..fa996987043 100644 --- a/release/ui/buttons_scene.py +++ b/release/ui/buttons_scene.py @@ -13,9 +13,6 @@ class RENDER_PT_shading(RenderButtonsPanel): scene = context.scene layout = self.layout - if not scene: - return - rd = scene.render_data layout.column_flow() @@ -40,9 +37,6 @@ class RENDER_PT_image(RenderButtonsPanel): scene = context.scene layout = self.layout - if not scene: - return - rd = scene.render_data layout.column_flow() @@ -70,9 +64,6 @@ class RENDER_PT_antialiasing(RenderButtonsPanel): scene = context.scene layout = self.layout - if not scene: - return - rd = scene.render_data layout.row() @@ -95,9 +86,6 @@ class RENDER_PT_render(RenderButtonsPanel): scene = context.scene layout = self.layout - if not scene: - return - rd = scene.render_data layout.row() diff --git a/release/ui/buttons_world.py b/release/ui/buttons_world.py new file mode 100644 index 00000000000..699f7c331f4 --- /dev/null +++ b/release/ui/buttons_world.py @@ -0,0 +1,130 @@ + +import bpy + +class WorldButtonsPanel(bpy.types.Panel): + __space_type__ = "BUTTONS_WINDOW" + __region_type__ = "WINDOW" + __context__ = "world" + + def poll(self, context): + return (context.scene.world != None) + +class WORLD_PT_world(WorldButtonsPanel): + __label__ = "World" + + def draw(self, context): + world = context.scene.world + layout = self.layout + + layout.row() + layout.itemR(world, "blend_sky") + layout.itemR(world, "paper_sky") + layout.itemR(world, "real_sky") + + layout.row() + layout.itemR(world, "horizon_color") + layout.itemR(world, "zenith_color") + layout.itemR(world, "ambient_color") + +class WORLD_PT_color_correction(WorldButtonsPanel): + __label__ = "Color Correction" + + def draw(self, context): + world = context.scene.world + layout = self.layout + + layout.row() + layout.itemR(world, "exposure") + layout.itemR(world, "range") + +class WORLD_PT_mist(WorldButtonsPanel): + __label__ = "Mist" + + def draw(self, context): + world = context.scene.world + layout = self.layout + + layout.row() + layout.itemR(world.mist, "enabled", text="Enable") + layout.itemR(world.mist, "falloff") + + layout.column_flow() + layout.itemR(world.mist, "start") + layout.itemR(world.mist, "depth") + layout.itemR(world.mist, "height") + layout.itemR(world.mist, "intensity") + +class WORLD_PT_stars(WorldButtonsPanel): + __label__ = "Stars" + + def draw(self, context): + world = context.scene.world + layout = self.layout + + layout.row() + layout.itemR(world.stars, "enabled", text="Enable") + + layout.column_flow() + layout.itemR(world.stars, "size") + layout.itemR(world.stars, "min_distance", text="MinDist") + layout.itemR(world.stars, "average_separation", text="StarDist") + layout.itemR(world.stars, "color_randomization", text="Colnoise") + +class WORLD_PT_ambient_occlusion(WorldButtonsPanel): + __label__ = "Ambient Occlusion" + + def draw(self, context): + world = context.scene.world + layout = self.layout + + ao = world.ambient_occlusion + + layout.row() + layout.itemR(ao, "enabled", text="Enable") + + layout.row() + layout.itemR(ao, "gather_method", expand=True) + + if ao.gather_method == 'RAYTRACE': + layout.row() + layout.itemR(ao, "samples") + layout.itemR(ao, "distance") + + layout.row() + layout.itemR(ao, "sample_method") + if ao.sample_method == 'ADAPTIVE_QMC': + layout.row() + layout.itemR(ao, "threshold") + layout.itemR(ao, "adapt_to_speed") + + if ao.sample_method == 'CONSTANT_JITTERED': + layout.row() + layout.itemR(ao, "bias") + + if ao.gather_method == 'APPROXIMATE': + layout.row() + layout.itemR(ao, "passes") + layout.itemR(ao, "error_tolerance") + + layout.row() + layout.itemR(ao, "correction") + layout.itemR(ao, "pixel_cache") + + layout.row() + layout.itemS() + + layout.row() + layout.itemR(ao, "falloff") + layout.itemR(ao, "strength") + + layout.column() + layout.itemR(ao, "blend_mode", expand=True) + layout.itemR(ao, "color", expand=True) + layout.itemR(ao, "energy") + +bpy.types.register(WORLD_PT_world) +bpy.types.register(WORLD_PT_mist) +bpy.types.register(WORLD_PT_stars) +bpy.types.register(WORLD_PT_ambient_occlusion) +bpy.types.register(WORLD_PT_color_correction) + diff --git a/source/blender/editors/armature/poselib.c b/source/blender/editors/armature/poselib.c index 9b4a9d63439..43590346299 100644 --- a/source/blender/editors/armature/poselib.c +++ b/source/blender/editors/armature/poselib.c @@ -339,7 +339,7 @@ static int poselib_add_menu_invoke (bContext *C, wmOperator *op, wmEvent *evt) uiItemIntO(layout, "Add New (Current Frame)", 0, "POSELIB_OT_pose_add", "frame", CFRA); /* replace existing - submenu */ - uiItemLevel(layout, "Replace Existing...", 0, poselib_add_menu_invoke__replacemenu); + uiItemMenuF(layout, "Replace Existing...", 0, poselib_add_menu_invoke__replacemenu); } uiPupMenuEnd(C, pup); diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index ea1a8efe9fc..26042f70b4a 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -48,6 +48,7 @@ struct PointerRNA; struct PropertyRNA; struct ReportList; struct rcti; +struct uiStyle; struct uiFontStyle; typedef struct uiBut uiBut; @@ -532,7 +533,7 @@ uiBut *uiDefMenuTogR(uiBlock *block, struct PointerRNA *ptr, char *propname, cha #define UI_LAYOUT_HEADER 1 #define UI_LAYOUT_MENU 2 -uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em); +uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em, struct uiStyle *style); void uiLayoutEnd(const struct bContext *C, uiBlock *block, uiLayout *layout, int *x, int *y); void uiLayoutContext(uiLayout *layout, int opcontext); @@ -571,9 +572,9 @@ void uiItemM(uiLayout *layout, char *name, int icon, char *menuname); /* menu */ void uiItemV(uiLayout *layout, char *name, int icon, int argval); /* value */ void uiItemS(uiLayout *layout); /* separator */ -void uiItemLevel(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func); -void uiItemLevelEnumO(uiLayout *layout, char *name, int icon, char *opname, char *propname); -void uiItemLevelEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname); +void uiItemMenuF(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func); +void uiItemMenuEnumO(uiLayout *layout, char *name, int icon, char *opname, char *propname); +void uiItemMenuEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname); /* utilities */ #define UI_PANEL_WIDTH 340 diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c index 22ecd8ee2f8..fa25153a158 100644 --- a/source/blender/editors/interface/interface.c +++ b/source/blender/editors/interface/interface.c @@ -444,7 +444,7 @@ static int ui_but_equals_old(uiBut *but, uiBut *oldbut) if(but->funcN != oldbut->funcN) return 0; if(oldbut->func_arg1 != oldbut && but->func_arg1 != oldbut->func_arg1) return 0; if(oldbut->func_arg2 != oldbut && but->func_arg2 != oldbut->func_arg2) return 0; - if(!but->funcN && (but->poin != oldbut->poin || but->pointype != oldbut->pointype)) return 0; + if(!but->funcN && ((but->poin != oldbut->poin && (uiBut*)oldbut->poin != oldbut) || but->pointype != oldbut->pointype)) return 0; return 1; } diff --git a/source/blender/editors/interface/interface_api.c b/source/blender/editors/interface/interface_api.c index 3153f13bd0b..1cd804851b5 100644 --- a/source/blender/editors/interface/interface_api.c +++ b/source/blender/editors/interface/interface_api.c @@ -92,7 +92,7 @@ void RNA_api_ui_layout(StructRNA *srna) parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in data."); RNA_def_property_flag(parm, PROP_REQUIRED); - func= RNA_def_function(srna, "item_level_enumR", "uiItemLevelEnumR"); + func= RNA_def_function(srna, "item_menu_enumR", "uiItemMenuEnumR"); api_ui_item_common(func); parm= RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property."); RNA_def_property_flag(parm, PROP_REQUIRED); @@ -124,7 +124,7 @@ void RNA_api_ui_layout(StructRNA *srna) parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); RNA_def_property_flag(parm, PROP_REQUIRED); - func= RNA_def_function(srna, "item_level_enumO", "uiItemLevelEnumO"); + func= RNA_def_function(srna, "item_menu_enumO", "uiItemMenuEnumO"); api_ui_item_op_common(func); parm= RNA_def_string(func, "property", "", 0, "", "Identifier of property in operator."); RNA_def_property_flag(parm, PROP_REQUIRED); diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 924d7df8c45..5aa2cded642 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -2833,11 +2833,11 @@ static uiBut *ui_but_find_mouse_over(ARegion *ar, int x, int y) ui_window_to_block(ar, block, &mx, &my); for(but=block->buttons.first; but; but= but->next) { - /* give precedence to already activated buttons */ if(but->flag & UI_NO_HILITE) continue; if(ui_but_contains_pt(but, mx, my)) + /* give precedence to already activated buttons */ if(!butover || (!butover->active && but->active)) butover= but; } diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index f9e08d29370..6ed02a38ca1 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -9,6 +9,7 @@ #include "DNA_ID.h" #include "DNA_scene_types.h" #include "DNA_screen_types.h" +#include "DNA_userdef_types.h" #include "DNA_windowmanager_types.h" #include "BLI_listbase.h" @@ -45,6 +46,8 @@ #define EM_UNIT_X XIC #define EM_UNIT_Y YIC + +#define EM_SEPR_X 6 #define EM_SEPR_Y 6 /* Item */ @@ -165,14 +168,10 @@ struct uiLayout { int x, y, w, h; int emw, emh; - int column_space; - int template_space; - int box_space; - int button_space_x; - int button_space_y; - uiMenuHandleFunc handlefunc; void *argv; + + uiStyle *style; }; void ui_layout_free(uiLayout *layout); @@ -187,6 +186,15 @@ static void ui_item_name(uiItem *item, char *name) item->name= item->namestr; } } +static void ui_item_name_add_colon(uiItem *item) +{ + int len= strlen(item->namestr); + + if(len != 0 && len+1 < sizeof(item->namestr)) { + item->namestr[len]= ':'; + item->namestr[len+1]= '\0'; + } +} #define UI_FIT_EXPAND 1 @@ -215,6 +223,7 @@ static int ui_item_fit(int item, int pos, int all, int available, int spacing, i /* create buttons for an item with an RNA array */ static void ui_item_array(uiLayout *layout, uiBlock *block, uiItemRNA *rnaitem, int len, int x, int y, int w, int h) { + uiStyle *style= layout->style; PropertyType type; PropertySubType subtype; int a; @@ -234,7 +243,7 @@ static void ui_item_array(uiLayout *layout, uiBlock *block, uiItemRNA *rnaitem, /* special check for layer layout */ int butw, buth; - butw= ui_item_fit(EM_UNIT_X, 0, EM_UNIT_X*10 + layout->button_space_x, w, 0, 0, UI_FIT_EXPAND); + butw= ui_item_fit(EM_UNIT_X, 0, EM_UNIT_X*10 + style->buttonspacex, w, 0, 0, UI_FIT_EXPAND); buth= MIN2(EM_UNIT_Y, butw); y += 2*(EM_UNIT_Y - buth); @@ -246,7 +255,7 @@ static void ui_item_array(uiLayout *layout, uiBlock *block, uiItemRNA *rnaitem, uiDefAutoButR(block, &rnaitem->ptr, rnaitem->prop, a+10, "", ICON_BLANK1, x + butw*a, y, butw, buth); uiBlockEndAlign(block); - x += 5*butw + layout->button_space_x; + x += 5*butw + style->buttonspacex; uiBlockBeginAlign(block); for(a=0; a<5; a++) @@ -507,8 +516,14 @@ static void ui_item_size(uiItem *item, int *r_w, int *r_h, int flag) } else { /* other */ - w= ui_text_icon_width(item->name, item->icon, flag & UI_ITEM_VARY_X); - h= (item->type == ITEM_SEPARATOR)? EM_SEPR_Y: EM_UNIT_Y; + if(item->type == ITEM_SEPARATOR) { + w= EM_SEPR_X; + h= EM_SEPR_Y; + } + else { + w= ui_text_icon_width(item->name, item->icon, flag & UI_ITEM_VARY_X); + h= EM_UNIT_Y; + } } if(r_w) *r_w= w; @@ -860,7 +875,7 @@ void uiItemS(uiLayout *layout) } /* level items */ -void uiItemLevel(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func) +void uiItemMenuF(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func) { uiTemplate *template= layout->templates.last; uiItemMenu *menuitem; @@ -872,7 +887,7 @@ void uiItemLevel(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func) menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - if(!icon) + if(!icon && layout->type == UI_LAYOUT_MENU) icon= ICON_RIGHTARROW_THIN, ui_item_name(&menuitem->item, name); @@ -896,11 +911,11 @@ static void menu_item_enum_opname_menu(bContext *C, uiLayout *layout, void *arg) { MenuItemLevel *lvl= (MenuItemLevel*)(((uiBut*)arg)->func_argN); - uiLayoutContext(layout, lvl->opcontext); + uiLayoutContext(layout, WM_OP_EXEC_REGION_WIN); uiItemsEnumO(layout, lvl->opname, lvl->propname); } -void uiItemLevelEnumO(uiLayout *layout, char *name, int icon, char *opname, char *propname) +void uiItemMenuEnumO(uiLayout *layout, char *name, int icon, char *opname, char *propname) { wmOperatorType *ot= WM_operatortype_find(opname); uiTemplate *template= layout->templates.last; @@ -916,7 +931,7 @@ void uiItemLevelEnumO(uiLayout *layout, char *name, int icon, char *opname, char menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - if(!icon) + if(!icon && layout->type == UI_LAYOUT_MENU) icon= ICON_RIGHTARROW_THIN; if(!name) name= ot->name; @@ -945,7 +960,7 @@ static void menu_item_enum_rna_menu(bContext *C, uiLayout *layout, void *arg) uiItemsEnumR(layout, &lvl->rnapoin, lvl->propname); } -void uiItemLevelEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname) +void uiItemMenuEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA *ptr, char *propname) { uiTemplate *template= layout->templates.last; uiItemMenu *menuitem; @@ -963,7 +978,7 @@ void uiItemLevelEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - if(!icon) + if(!icon && layout->type == UI_LAYOUT_MENU) icon= ICON_RIGHTARROW_THIN; if(!name) name= (char*)RNA_property_ui_name(prop); @@ -989,6 +1004,7 @@ void uiItemLevelEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA /* single row layout */ static void ui_layout_row(uiLayout *layout, uiBlock *block, uiTemplate *template) { + uiStyle *style= layout->style; uiItem *item; int tot=0, totw= 0, maxh= 0, itemw, itemh, x, w; @@ -1009,10 +1025,10 @@ static void ui_layout_row(uiLayout *layout, uiBlock *block, uiTemplate *template for(item=template->items.first; item; item=item->next) { ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); - itemw= ui_item_fit(itemw, x, totw, w, (tot-1)*layout->button_space_x, !item->next, UI_FIT_EXPAND); + itemw= ui_item_fit(itemw, x, totw, w, (tot-1)*style->buttonspacex, !item->next, UI_FIT_EXPAND); ui_item_buts(layout, block, item, layout->x+x, layout->y-itemh, itemw, itemh); - x += itemw+layout->button_space_x; + x += itemw+style->buttonspacex; } layout->y -= maxh; @@ -1021,6 +1037,7 @@ static void ui_layout_row(uiLayout *layout, uiBlock *block, uiTemplate *template /* multi-column layout */ static void ui_layout_column(uiLayout *layout, uiBlock *block, uiTemplate *template) { + uiStyle *style= layout->style; uiItem *item; int col, totcol= 0, x, y, miny, itemw, itemh, w; @@ -1039,7 +1056,7 @@ static void ui_layout_column(uiLayout *layout, uiBlock *block, uiTemplate *templ for(col=0; colcolumn_space, col == totcol-1, UI_FIT_EXPAND); + itemw= ui_item_fit(1, x, totcol, w, (totcol-1)*style->columnspace, col == totcol-1, UI_FIT_EXPAND); for(item=template->items.first; item; item=item->next) { if(item->slot != col) @@ -1049,10 +1066,10 @@ static void ui_layout_column(uiLayout *layout, uiBlock *block, uiTemplate *templ y -= itemh; ui_item_buts(layout, block, item, layout->x+x, layout->y+y, itemw, itemh); - y -= layout->button_space_y; + y -= style->buttonspacey; } - x += itemw + layout->column_space; + x += itemw + style->columnspace; miny= MIN2(miny, y); } @@ -1062,6 +1079,7 @@ static void ui_layout_column(uiLayout *layout, uiBlock *block, uiTemplate *templ /* multi-column layout, automatically flowing to the next */ static void ui_layout_column_flow(uiLayout *layout, uiBlock *block, uiTemplate *template) { + uiStyle *style= layout->style; uiTemplateFlow *flow= (uiTemplateFlow*)template; uiItem *item; int col, x, y, w, emh, emy, miny, itemw, itemh, maxw=0; @@ -1101,17 +1119,17 @@ static void ui_layout_column_flow(uiLayout *layout, uiBlock *block, uiTemplate * col= 0; for(item=template->items.first; item; item=item->next) { ui_item_size(item, NULL, &itemh, UI_ITEM_VARY_Y); - itemw= ui_item_fit(1, x, totcol, w, (totcol-1)*layout->column_space, col == totcol-1, UI_FIT_EXPAND); + itemw= ui_item_fit(1, x, totcol, w, (totcol-1)*style->columnspace, col == totcol-1, UI_FIT_EXPAND); y -= itemh; emy -= itemh; ui_item_buts(layout, block, item, layout->x+x, layout->y+y, itemw, itemh); - y -= layout->button_space_y; + y -= style->buttonspacey; miny= MIN2(miny, y); /* decide to go to next one */ if(col < totcol-1 && emy <= -emh) { - x += itemw + layout->column_space; + x += itemw + style->columnspace; y= 0; col++; } @@ -1141,7 +1159,7 @@ static void ui_layout_split(uiLayout *layout, uiBlock *block, uiTemplate *templa /* create buttons starting from left and right */ lx= 0; rx= 0; - w= layout->w - layout->button_space_x*(tot-1) + layout->button_space_x; + w= layout->w - style->buttonspacex*(tot-1) + style->buttonspacex; for(item=template->items.first; item; item=item->next) { ui_item_size(item, &itemw, &itemh, UI_ITEM_VARY_Y); @@ -1149,11 +1167,11 @@ static void ui_layout_split(uiLayout *layout, uiBlock *block, uiTemplate *templa if(item->slot == UI_TSLOT_LR_LEFT) { itemw= ui_item_fit(itemw, lx, totw, w, 0, 0); ui_item_buts(layout, block, item, layout->x+lx, layout->y-itemh, itemw, itemh); - lx += itemw + layout->button_space_x; + lx += itemw + style->buttonspacex; } else { itemw= ui_item_fit(itemw, totw + rx, totw, w, 0, 0); - rx -= itemw + layout->button_space_x; + rx -= itemw + style->buttonspacex; ui_item_buts(layout, block, item, layout->x+layout->w+rx, layout->y-itemh, itemw, itemh); } } @@ -1165,6 +1183,7 @@ static void ui_layout_split(uiLayout *layout, uiBlock *block, uiTemplate *templa /* split in columns */ static void ui_layout_split(const bContext *C, uiLayout *layout, uiBlock *block, uiTemplate *template) { + uiStyle *style= layout->style; uiTemplateSplt *split= (uiTemplateSplt*)template; uiLayout *sublayout; int a, x, y, miny, w= layout->w, h= layout->h, splitw; @@ -1176,7 +1195,7 @@ static void ui_layout_split(const bContext *C, uiLayout *layout, uiBlock *block, for(a=0; anumber; a++) { sublayout= split->sublayout[a]; - splitw= ui_item_fit(1, x, split->number, w, (split->number-1)*layout->column_space, a == split->number-1, UI_FIT_EXPAND); + splitw= ui_item_fit(1, x, split->number, w, (split->number-1)*style->columnspace, a == split->number-1, UI_FIT_EXPAND); sublayout->x= layout->x + x; sublayout->w= splitw; sublayout->y= layout->y; @@ -1189,7 +1208,7 @@ static void ui_layout_split(const bContext *C, uiLayout *layout, uiBlock *block, ui_layout_end(C, block, sublayout, NULL, &y); miny= MIN2(y, miny); - x += splitw + layout->column_space; + x += splitw + style->columnspace; } layout->y= miny; @@ -1198,6 +1217,7 @@ static void ui_layout_split(const bContext *C, uiLayout *layout, uiBlock *block, /* element in a box layout */ static void ui_layout_box(const bContext *C, uiLayout *layout, uiBlock *block, uiTemplate *template) { + uiStyle *style= layout->style; uiTemplateBx *box= (uiTemplateBx*)template; int starty, startx, w= layout->w, h= layout->h; @@ -1205,9 +1225,9 @@ static void ui_layout_box(const bContext *C, uiLayout *layout, uiBlock *block, u starty= layout->y; /* some extra padding */ - box->sublayout->x= layout->x + layout->box_space; - box->sublayout->w= w - 2*layout->box_space; - box->sublayout->y= layout->y - layout->box_space; + box->sublayout->x= layout->x + style->boxspace; + box->sublayout->w= w - 2*style->boxspace; + box->sublayout->y= layout->y - style->boxspace; box->sublayout->h= h; box->sublayout->emw= layout->emw; @@ -1433,7 +1453,7 @@ uiLayout *uiLayoutBox(uiLayout *layout) box= MEM_callocN(sizeof(uiTemplateBx), "uiTemplateBx"); box->template.type= TEMPLATE_BOX; - box->sublayout= uiLayoutBegin(layout->dir, layout->type, 0, 0, 0, 0); + box->sublayout= uiLayoutBegin(layout->dir, layout->type, 0, 0, 0, 0, layout->style); BLI_addtail(&layout->templates, box); return box->sublayout; @@ -1451,7 +1471,7 @@ void uiLayoutSplit(uiLayout *layout, int number, int lr) split->sublayout= MEM_callocN(sizeof(uiLayout*)*number, "uiTemplateSpltSub"); for(a=0; asublayout[a]= uiLayoutBegin(layout->dir, layout->type, 0, 0, 0, 0); + split->sublayout[a]= uiLayoutBegin(layout->dir, layout->type, 0, 0, 0, 0, layout->style); BLI_addtail(&layout->templates, split); } @@ -1563,7 +1583,12 @@ static void ui_layout_init_items(const bContext *C, uiLayout *layout) } else if(item->type == ITEM_RNA_PROPERTY) { rnaitem= (uiItemRNA*)item; + type= RNA_property_type(rnaitem->prop); + ui_item_name(item, (char*)RNA_property_ui_name(rnaitem->prop)); + + if(ELEM4(type, PROP_INT, PROP_FLOAT, PROP_STRING, PROP_ENUM)) + ui_item_name_add_colon(item); } else if(item->type == ITEM_OPERATOR) { opitem= (uiItemOp*)item; @@ -1593,6 +1618,7 @@ static void ui_layout_init_items(const bContext *C, uiLayout *layout) static void ui_layout_templates(const bContext *C, uiBlock *block, uiLayout *layout) { + uiStyle *style= layout->style; uiTemplate *template; ui_layout_init_items(C, layout); @@ -1611,7 +1637,7 @@ static void ui_layout_templates(const bContext *C, uiBlock *block, uiLayout *lay break; } - layout->x += layout->template_space; + layout->x += style->templatespace; } } else { @@ -1635,7 +1661,7 @@ static void ui_layout_templates(const bContext *C, uiBlock *block, uiLayout *lay break; } - layout->y -= layout->template_space; + layout->y -= style->templatespace; } } } @@ -1663,7 +1689,7 @@ void ui_layout_free(uiLayout *layout) MEM_freeN(layout); } -uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em) +uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em, uiStyle *style) { uiLayout *layout; @@ -1673,12 +1699,7 @@ uiLayout *uiLayoutBegin(int dir, int type, int x, int y, int size, int em) layout->type= type; layout->x= x; layout->y= y; - - layout->column_space= 5; - layout->template_space= 5; - layout->box_space= 5; - layout->button_space_x= 5; - layout->button_space_y= 2; + layout->style= style; if(dir == UI_LAYOUT_HORIZONTAL) { layout->h= size; @@ -1713,6 +1734,7 @@ void uiLayoutEnd(const bContext *C, uiBlock *block, uiLayout *layout, int *x, in void uiRegionPanelLayout(const bContext *C, ARegion *ar, int vertical, char *context) { + uiStyle *style= U.uistyles.first; uiBlock *block; PanelType *pt; Panel *panel; @@ -1751,7 +1773,7 @@ void uiRegionPanelLayout(const bContext *C, ARegion *ar, int vertical, char *con } panel->type= pt; - panel->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, PNL_SAFETY, 0, w-2*PNL_SAFETY, em); + panel->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, PNL_SAFETY, 0, w-2*PNL_SAFETY, em, style); pt->draw(C, panel); @@ -1781,6 +1803,7 @@ void uiRegionPanelLayout(const bContext *C, ARegion *ar, int vertical, char *con void uiRegionHeaderLayout(const bContext *C, ARegion *ar) { + uiStyle *style= U.uistyles.first; uiBlock *block; uiLayout *layout; HeaderType *ht; @@ -1808,7 +1831,7 @@ void uiRegionHeaderLayout(const bContext *C, ARegion *ar) /* draw all headers types */ for(ht= ar->type->headertypes.first; ht; ht= ht->next) { block= uiBeginBlock(C, ar, "header buttons", UI_EMBOSS); - layout= uiLayoutBegin(UI_LAYOUT_HORIZONTAL, UI_LAYOUT_HEADER, xco, yco, 24, 1); + layout= uiLayoutBegin(UI_LAYOUT_HORIZONTAL, UI_LAYOUT_HEADER, xco, yco, 24, 1, style); if(ht->draw) { header.type= ht; diff --git a/source/blender/editors/interface/interface_regions.c b/source/blender/editors/interface/interface_regions.c index 7bc7e2e3c19..59725cc4954 100644 --- a/source/blender/editors/interface/interface_regions.c +++ b/source/blender/editors/interface/interface_regions.c @@ -1763,12 +1763,13 @@ static uiBlock *ui_block_func_MENU_ITEM(bContext *C, uiPopupBlockHandle *handle, uiPopupBlockHandle *ui_popup_menu_create(bContext *C, ARegion *butregion, uiBut *but, uiMenuCreateFunc menu_func, void *arg) { + uiStyle *style= U.uistyles.first; uiPopupBlockHandle *handle; uiPopupMenu *pup; uiMenuInfo info; pup= MEM_callocN(sizeof(uiPopupMenu), "menu dummy"); - pup->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_MENU, 0, 0, 200, 0); + pup->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_MENU, 0, 0, 200, 0, style); uiLayoutContext(pup->layout, WM_OP_INVOKE_REGION_WIN); uiLayoutColumn(pup->layout); @@ -1793,10 +1794,11 @@ uiPopupBlockHandle *ui_popup_menu_create(bContext *C, ARegion *butregion, uiBut /* only return handler, and set optional title */ uiPopupMenu *uiPupMenuBegin(const char *title, int icon) { + uiStyle *style= U.uistyles.first; uiPopupMenu *pup= MEM_callocN(sizeof(uiPopupMenu), "menu start"); pup->icon= icon; - pup->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_MENU, 0, 0, 200, 0); + pup->layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_MENU, 0, 0, 200, 0, style); uiLayoutContext(pup->layout, WM_OP_EXEC_REGION_WIN); uiLayoutColumn(pup->layout); diff --git a/source/blender/editors/interface/interface_style.c b/source/blender/editors/interface/interface_style.c index 87e70523870..db5dacf5a75 100644 --- a/source/blender/editors/interface/interface_style.c +++ b/source/blender/editors/interface/interface_style.c @@ -115,6 +115,12 @@ static uiStyle *ui_style_new(ListBase *styles, const char *name) style->widget.uifont_id= UIFONT_DEFAULT; style->widget.points= 11; style->widget.shadowalpha= 0.25f; + + style->columnspace= 5; + style->templatespace= 5; + style->boxspace= 5; + style->buttonspacex= 5; + style->buttonspacey= 2; return style; } diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 67cca059d77..4ae90dee0bc 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -293,13 +293,14 @@ uiBut *uiDefAutoButR(uiBlock *block, PointerRNA *ptr, PropertyRNA *prop, int ind int uiDefAutoButsRNA(const bContext *C, uiBlock *block, PointerRNA *ptr) { + uiStyle *style= U.uistyles.first; CollectionPropertyIterator iter; PropertyRNA *iterprop, *prop; uiLayout *layout; char *name; int x= 0, y= 0; - layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, x, y, DEF_BUT_WIDTH*2, 20); + layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, x, y, DEF_BUT_WIDTH*2, 20, style); uiLayoutColumn(layout); uiItemL(layout, (char*)RNA_struct_ui_name(ptr->type), 0); @@ -331,13 +332,14 @@ int uiDefAutoButsRNA(const bContext *C, uiBlock *block, PointerRNA *ptr) /* temp call, single collumn, test for toolbar only */ int uiDefAutoButsRNA_single(const bContext *C, uiBlock *block, PointerRNA *ptr) { + uiStyle *style= U.uistyles.first; CollectionPropertyIterator iter; PropertyRNA *iterprop, *prop; uiLayout *layout; char *name; int x= 0, y= 0; - layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, x, y, block->panel->sizex, 20); + layout= uiLayoutBegin(UI_LAYOUT_VERTICAL, UI_LAYOUT_PANEL, x, y, block->panel->sizex, 20, style); uiLayoutColumn(layout); uiItemL(layout, (char*)RNA_struct_ui_name(ptr->type), 0); diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 1a3b3e5e031..37b50da39b4 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -637,9 +637,9 @@ static int object_primitive_add_invoke(bContext *C, wmOperator *op, wmEvent *eve uiPopupMenu *pup= uiPupMenuBegin("Add Object", 0); uiLayout *layout= uiPupMenuLayout(pup); - uiItemLevelEnumO(layout, NULL, 0, "OBJECT_OT_mesh_add", "type"); - uiItemLevelEnumO(layout, NULL, 0, "OBJECT_OT_curve_add", "type"); - uiItemLevelEnumO(layout, NULL, 0, "OBJECT_OT_surface_add", "type"); + uiItemMenuEnumO(layout, NULL, 0, "OBJECT_OT_mesh_add", "type"); + uiItemMenuEnumO(layout, NULL, 0, "OBJECT_OT_curve_add", "type"); + uiItemMenuEnumO(layout, NULL, 0, "OBJECT_OT_surface_add", "type"); uiItemO(layout, NULL, 0, "OBJECT_OT_text_add"); uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_MBALL); uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_CAMERA); diff --git a/source/blender/editors/object/object_intern.h b/source/blender/editors/object/object_intern.h index 1c56b0c7115..7203f56b40f 100644 --- a/source/blender/editors/object/object_intern.h +++ b/source/blender/editors/object/object_intern.h @@ -84,5 +84,8 @@ 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); +/* object_modifier.c */ +void OBJECT_OT_modifier_add(struct wmOperatorType *ot); + #endif /* ED_OBJECT_INTERN_H */ diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c new file mode 100644 index 00000000000..b430cdd67bc --- /dev/null +++ b/source/blender/editors/object/object_modifier.c @@ -0,0 +1,98 @@ +/** + * $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) 2001-2002 by NaN Holding BV. + * All rights reserved. + * + * Contributor(s): Blender Foundation, 2009 + * + * ***** END GPL LICENSE BLOCK ***** + */ + +#include +#include + +#include "DNA_modifier_types.h" +#include "DNA_object_types.h" +#include "DNA_scene_types.h" + +#include "BLI_listbase.h" + +#include "BKE_context.h" +#include "BKE_depsgraph.h" +#include "BKE_modifier.h" + +#include "RNA_access.h" +#include "RNA_define.h" +#include "RNA_enum_types.h" + +#include "ED_screen.h" + +#include "WM_api.h" +#include "WM_types.h" + +#include "object_intern.h" + +/********************* add modifier operator ********************/ + +static int modifier_add_exec(bContext *C, wmOperator *op) +{ + Scene *scene= CTX_data_scene(C); + Object *ob = CTX_data_active_object(C); + ModifierData *md; + int type= RNA_enum_get(op->ptr, "type"); + ModifierTypeInfo *mti = modifierType_getInfo(type); + + if(mti->flags&eModifierTypeFlag_RequiresOriginalData) { + md = ob->modifiers.first; + + while(md && modifierType_getInfo(md->type)->type==eModifierTypeType_OnlyDeform) + md = md->next; + + BLI_insertlinkbefore(&ob->modifiers, md, modifier_new(type)); + } + else + BLI_addtail(&ob->modifiers, modifier_new(type)); + + DAG_object_flush_update(scene, ob, OB_RECALC_DATA); + WM_event_add_notifier(C, NC_OBJECT|ND_MODIFIER, ob); + + return OPERATOR_FINISHED; +} + +void OBJECT_OT_modifier_add(wmOperatorType *ot) +{ + /* identifiers */ + ot->name= "Add Modifier"; + ot->description = "Add a modifier to the active object."; + ot->idname= "OBJECT_OT_modifier_add"; + + /* api callbacks */ + ot->invoke= WM_menu_invoke; + ot->exec= modifier_add_exec; + + ot->poll= ED_operator_object_active; + + /* flags */ + ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; + + /* XXX only some types should be here */ + RNA_def_enum(ot->srna, "type", modifier_type_items, 0, "Type", ""); +} + diff --git a/source/blender/editors/object/object_ops.c b/source/blender/editors/object/object_ops.c index 6c8c6e6b60f..e668c494fba 100644 --- a/source/blender/editors/object/object_ops.c +++ b/source/blender/editors/object/object_ops.c @@ -98,6 +98,8 @@ void ED_operatortypes_object(void) WM_operatortype_append(OBJECT_OT_armature_add); WM_operatortype_append(OBJECT_OT_object_add); WM_operatortype_append(OBJECT_OT_primitive_add); + + WM_operatortype_append(OBJECT_OT_modifier_add); } void ED_keymap_object(wmWindowManager *wm) diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index 85d4d822c0d..e441a93fe23 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -1834,7 +1834,7 @@ static int testing123(bContext *C, wmOperator *op, wmEvent *event) uiItemO(layout, NULL, ICON_PROP_ON, "SCREEN_OT_region_flip"); uiItemO(layout, NULL, ICON_PROP_CON, "SCREEN_OT_screen_full_area"); uiItemO(layout, NULL, ICON_SMOOTHCURVE, "SCREEN_OT_region_foursplit"); - uiItemLevel(layout, "Submenu", 0, newlevel1); + uiItemMenuF(layout, "Submenu", 0, newlevel1); uiPupMenuEnd(C, pup); diff --git a/source/blender/editors/space_image/image_header.c b/source/blender/editors/space_image/image_header.c index 7e009dfc479..457d322f565 100644 --- a/source/blender/editors/space_image/image_header.c +++ b/source/blender/editors/space_image/image_header.c @@ -155,7 +155,7 @@ static void image_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemS(layout); - uiItemLevel(layout, "View Navigation", 0, image_view_viewnavmenu); + uiItemMenuF(layout, "View Navigation", 0, image_view_viewnavmenu); if(show_uvedit) uiItemO(layout, NULL, 0, "IMAGE_OT_view_selected"); uiItemO(layout, NULL, 0, "IMAGE_OT_view_all"); @@ -238,7 +238,7 @@ static void image_imagemenu(bContext *C, uiLayout *layout, void *arg_unused) /* move to realtime properties panel */ RNA_id_pointer_create(&ima->id, &imaptr); - uiItemLevelEnumR(layout, NULL, 0, &imaptr, "mapping"); + uiItemMenuEnumR(layout, NULL, 0, &imaptr, "mapping"); } } @@ -357,24 +357,24 @@ static void image_uvsmenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemS(layout); - uiItemLevel(layout, "Transform", 0, image_uvs_transformmenu); - uiItemLevel(layout, "Mirror", 0, image_uvs_mirrormenu); - uiItemLevel(layout, "Weld/Align", 0, image_uvs_weldalignmenu); + uiItemMenuF(layout, "Transform", 0, image_uvs_transformmenu); + uiItemMenuF(layout, "Mirror", 0, image_uvs_mirrormenu); + uiItemMenuF(layout, "Weld/Align", 0, image_uvs_weldalignmenu); uiItemS(layout); uiItemR(layout, NULL, 0, &sceneptr, "proportional_editing", 0); - uiItemLevelEnumR(layout, NULL, 0, &sceneptr, "proportional_editing_falloff"); + uiItemMenuEnumR(layout, NULL, 0, &sceneptr, "proportional_editing_falloff"); uiItemS(layout); - uiItemLevel(layout, "Show/Hide Faces", 0, image_uvs_showhidemenu); + uiItemMenuF(layout, "Show/Hide Faces", 0, image_uvs_showhidemenu); #if 0 #ifndef DISABLE_PYTHON uiItemS(layout); - uiItemLevel(layout, "Scripts", image_uvs_scriptsmenu); + uiItemMenuF(layout, "Scripts", image_uvs_scriptsmenu); #endif #endif } @@ -948,10 +948,10 @@ static int toolbox_invoke(bContext *C, wmOperator *op, wmEvent *event) pup= uiPupMenuBegin("Toolbox", 0); layout= uiPupMenuLayout(pup); - uiItemLevel(layout, "View", 0, image_viewmenu); - if(show_uvedit) uiItemLevel(layout, "Select", 0, image_selectmenu); - uiItemLevel(layout, "Image", 0, image_imagemenu); - if(show_uvedit) uiItemLevel(layout, "UVs", 0, image_uvsmenu); + uiItemMenuF(layout, "View", 0, image_viewmenu); + if(show_uvedit) uiItemMenuF(layout, "Select", 0, image_selectmenu); + uiItemMenuF(layout, "Image", 0, image_imagemenu); + if(show_uvedit) uiItemMenuF(layout, "UVs", 0, image_uvsmenu); uiPupMenuEnd(C, pup); diff --git a/source/blender/editors/space_sequencer/sequencer_header.c b/source/blender/editors/space_sequencer/sequencer_header.c index c8dc4cc006a..0e9a9d7130b 100644 --- a/source/blender/editors/space_sequencer/sequencer_header.c +++ b/source/blender/editors/space_sequencer/sequencer_header.c @@ -235,7 +235,7 @@ static void seq_addmenu_effectmenu(bContext *C, uiLayout *layout, void *arg_unus //static uiBlock *seq_addmenu(bContext *C, ARegion *ar, void *arg_unused) static void seq_addmenu(bContext *C, uiLayout *layout, void *arg_unused) { - uiItemLevel(layout, "Effects...", 0, seq_addmenu_effectmenu); + uiItemMenuF(layout, "Effects...", 0, seq_addmenu_effectmenu); uiItemS(layout); uiLayoutContext(layout, WM_OP_INVOKE_REGION_WIN); diff --git a/source/blender/editors/space_text/text_header.c b/source/blender/editors/space_text/text_header.c index a3b62adf6c8..83c144d88c5 100644 --- a/source/blender/editors/space_text/text_header.c +++ b/source/blender/editors/space_text/text_header.c @@ -188,7 +188,7 @@ static void text_formatmenu(const bContext *C, Menu *menu) uiItemS(layout); - uiItemLevelEnumO(layout, NULL, 0, "TEXT_OT_convert_whitespace", "type"); + uiItemMenuEnumO(layout, NULL, 0, "TEXT_OT_convert_whitespace", "type"); } static void text_editmenu_to3dmenu(bContext *C, uiLayout *layout, void *arg_unused) @@ -217,9 +217,9 @@ static void text_editmenu(const bContext *C, Menu *menu) uiItemS(layout); - uiItemLevel(layout, "View", 0, text_editmenu_viewmenu); - uiItemLevel(layout, "Select", 0, text_editmenu_selectmenu); - uiItemLevel(layout, "Markers", 0, text_editmenu_markermenu); + uiItemMenuF(layout, "View", 0, text_editmenu_viewmenu); + uiItemMenuF(layout, "Select", 0, text_editmenu_selectmenu); + uiItemMenuF(layout, "Markers", 0, text_editmenu_markermenu); uiItemS(layout); @@ -228,7 +228,7 @@ static void text_editmenu(const bContext *C, Menu *menu) uiItemS(layout); - uiItemLevel(layout, "Text to 3D Object", 0, text_editmenu_to3dmenu); + uiItemMenuF(layout, "Text to 3D Object", 0, text_editmenu_to3dmenu); } /********************** header buttons ***********************/ diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index e968756b11a..fba8e0c4eb7 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -660,7 +660,7 @@ static void view3d_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemEnumO(layout, NULL, 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_FRONT); uiItemEnumO(layout, NULL, 0, "VIEW3D_OT_viewnumpad", "type", V3D_VIEW_RIGHT); - //uiItemLevel(layout, "Cameras", view3d_view_camerasmenu); + //uiItemMenuF(layout, "Cameras", view3d_view_camerasmenu); uiItemS(layout); @@ -677,8 +677,8 @@ static void view3d_viewmenu(bContext *C, uiLayout *layout, void *arg_unused) // uiItemS(layout); - uiItemLevel(layout, "View Navigation", 0, view3d_view_viewnavmenu); - uiItemLevel(layout, "Align View", 0, view3d_view_alignviewmenu); + uiItemMenuF(layout, "View Navigation", 0, view3d_view_viewnavmenu); + uiItemMenuF(layout, "Align View", 0, view3d_view_alignviewmenu); uiItemS(layout); @@ -3356,17 +3356,17 @@ static void view3d_edit_curvemenu(bContext *C, uiLayout *layout, void *arg_unuse uiItemS(layout); - uiItemLevel(layout, "Control Points", 0, view3d_edit_curve_controlpointsmenu); - uiItemLevel(layout, "Segments", 0, view3d_edit_curve_segmentsmenu); + uiItemMenuF(layout, "Control Points", 0, view3d_edit_curve_controlpointsmenu); + uiItemMenuF(layout, "Segments", 0, view3d_edit_curve_segmentsmenu); uiItemS(layout); uiItemR(layout, NULL, 0, &sceneptr, "proportional_editing", 0); // |O - uiItemLevelEnumR(layout, NULL, 0, &sceneptr, "proportional_editing_falloff"); + uiItemMenuEnumR(layout, NULL, 0, &sceneptr, "proportional_editing_falloff"); uiItemS(layout); - uiItemLevel(layout, "Show/Hide Control Points", 0, view3d_edit_curve_showhidemenu); + uiItemMenuF(layout, "Show/Hide Control Points", 0, view3d_edit_curve_showhidemenu); } static void do_view3d_edit_mball_showhidemenu(bContext *C, void *arg, int event) @@ -3513,7 +3513,7 @@ static void view3d_edit_textmenu(bContext *C, uiLayout *layout, void *arg_unused { uiItemO(layout, NULL, 0, "FONT_OT_file_paste"); uiItemS(layout); - uiItemLevel(layout, "Special Characters", 0, view3d_edit_text_charsmenu); + uiItemMenuF(layout, "Special Characters", 0, view3d_edit_text_charsmenu); } static void do_view3d_edit_latticemenu(bContext *C, void *arg, int event) @@ -4747,7 +4747,7 @@ static void view3d_particlemenu(bContext *C, uiLayout *layout, void *arg_unused) uiItemS(layout); - uiItemLevel(layout, "Show/Hide Particles", 0, view3d_particle_showhidemenu); + uiItemMenuF(layout, "Show/Hide Particles", 0, view3d_particle_showhidemenu); } static char *view3d_modeselect_pup(Scene *scene) diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h index 91c81023c8c..ab2b7ba498a 100644 --- a/source/blender/makesdna/DNA_userdef_types.h +++ b/source/blender/makesdna/DNA_userdef_types.h @@ -94,8 +94,14 @@ typedef struct uiStyle { short minlabelchars; /* in characters */ short minwidgetchars; /* in characters */ - int pad; - + + short columnspace; + short templatespace; + short boxspace; + short buttonspacex; + short buttonspacey; + + short pad; } uiStyle; typedef struct uiWidgetColors { diff --git a/source/blender/makesrna/RNA_enum_types.h b/source/blender/makesrna/RNA_enum_types.h index f8c0ba18c29..065c1eba606 100644 --- a/source/blender/makesrna/RNA_enum_types.h +++ b/source/blender/makesrna/RNA_enum_types.h @@ -32,6 +32,7 @@ extern EnumPropertyItem prop_mode_items[]; extern EnumPropertyItem space_type_items[]; extern EnumPropertyItem region_type_items[]; +extern EnumPropertyItem modifier_type_items[]; #endif /* RNA_ENUM_TYPES */ diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c index 5c609550d3f..3263c6d4bfc 100644 --- a/source/blender/makesrna/intern/rna_modifier.c +++ b/source/blender/makesrna/intern/rna_modifier.c @@ -40,6 +40,39 @@ #include "WM_types.h" +EnumPropertyItem modifier_type_items[] ={ + {eModifierType_Subsurf, "SUBSURF", "Subsurf", ""}, + {eModifierType_Lattice, "LATTICE", "Lattice", ""}, + {eModifierType_Curve, "CURVE", "Curve", ""}, + {eModifierType_Build, "BUILD", "Build", ""}, + {eModifierType_Mirror, "MIRROR", "Mirror", ""}, + {eModifierType_Decimate, "DECIMATE", "Decimate", ""}, + {eModifierType_Wave, "WAVE", "Wave", ""}, + {eModifierType_Armature, "ARMATURE", "Armature", ""}, + {eModifierType_Hook, "HOOK", "Hook", ""}, + {eModifierType_Softbody, "SOFTBODY", "Softbody", ""}, + {eModifierType_Boolean, "BOOLEAN", "Boolean", ""}, + {eModifierType_Array, "ARRAY", "Array", ""}, + {eModifierType_EdgeSplit, "EDGE_SPLIT", "Edge Split", ""}, + {eModifierType_Displace, "DISPLACE", "Displace", ""}, + {eModifierType_UVProject, "UV_PROJECT", "UV Project", ""}, + {eModifierType_Smooth, "SMOOTH", "Smooth", ""}, + {eModifierType_Cast, "CAST", "Cast", ""}, + {eModifierType_MeshDeform, "MESH_DEFORM", "Mesh Deform", ""}, + {eModifierType_ParticleSystem, "PARTICLE_SYSTEM", "Particle System", ""}, + {eModifierType_ParticleInstance, "PARTICLE_INSTANCE", "Particle Instance", ""}, + {eModifierType_Explode, "EXPLODE", "Explode", ""}, + {eModifierType_Cloth, "CLOTH", "Cloth", ""}, + {eModifierType_Collision, "COLLISION", "Collision", ""}, + {eModifierType_Bevel, "BEVEL", "Bevel", ""}, + {eModifierType_Shrinkwrap, "SHRINKWRAP", "Shrinkwrap", ""}, + {eModifierType_Fluidsim, "FLUID_SIMULATION", "Fluid Simulation", ""}, + {eModifierType_Mask, "MASK", "Mask", ""}, + {eModifierType_SimpleDeform, "SIMPLE_DEFORM", "Simple Deform", ""}, + {eModifierType_Multires, "MULTIRES", "Multires", ""}, + {0, NULL, NULL, NULL}}; + + #ifdef RNA_RUNTIME #include "BKE_context.h" @@ -634,10 +667,10 @@ static void rna_def_modifier_armature(BlenderRNA *brna) RNA_def_struct_ui_text(srna, "Armature Modifier", "Armature deformation modifier."); RNA_def_struct_sdna(srna, "ArmatureModifierData"); - prop= RNA_def_property(srna, "armature", PROP_POINTER, PROP_NONE); + prop= RNA_def_property(srna, "object", PROP_POINTER, PROP_NONE); RNA_def_property_pointer_sdna(prop, NULL, "object"); RNA_def_property_struct_type(prop, "Object"); - RNA_def_property_ui_text(prop, "Armature", "Armature object to deform with."); + RNA_def_property_ui_text(prop, "Object", "Armature object to deform with."); RNA_def_property_update(prop, NC_OBJECT|ND_MODIFIER, "rna_Modifier_update"); prop= RNA_def_property(srna, "vertex_group", PROP_STRING, PROP_NONE); @@ -668,7 +701,12 @@ static void rna_def_modifier_armature(BlenderRNA *brna) prop= RNA_def_property(srna, "b_bone_rest", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "deformflag", ARM_DEF_B_BONE_REST); - RNA_def_property_ui_text(prop, "Quaternion", "Make B-Bones deform already in rest position"); + RNA_def_property_ui_text(prop, "B-Bone Rest", "Make B-Bones deform already in rest position"); + RNA_def_property_update(prop, NC_OBJECT|ND_MODIFIER, "rna_Modifier_update"); + + prop= RNA_def_property(srna, "multi_modifier", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_boolean_sdna(prop, NULL, "multi", 0); + RNA_def_property_ui_text(prop, "Multi Modifier", "Use same input as previous modifier, and mix results using overall vgroup"); RNA_def_property_update(prop, NC_OBJECT|ND_MODIFIER, "rna_Modifier_update"); } @@ -1524,38 +1562,6 @@ void RNA_def_modifier(BlenderRNA *brna) StructRNA *srna; PropertyRNA *prop; - static EnumPropertyItem type_items[] ={ - {eModifierType_Subsurf, "SUBSURF", "Subsurf", ""}, - {eModifierType_Lattice, "LATTICE", "Lattice", ""}, - {eModifierType_Curve, "CURVE", "Curve", ""}, - {eModifierType_Build, "BUILD", "Build", ""}, - {eModifierType_Mirror, "MIRROR", "Mirror", ""}, - {eModifierType_Decimate, "DECIMATE", "Decimate", ""}, - {eModifierType_Wave, "WAVE", "Wave", ""}, - {eModifierType_Armature, "ARMATURE", "Armature", ""}, - {eModifierType_Hook, "HOOK", "Hook", ""}, - {eModifierType_Softbody, "SOFTBODY", "Softbody", ""}, - {eModifierType_Boolean, "BOOLEAN", "Boolean", ""}, - {eModifierType_Array, "ARRAY", "Array", ""}, - {eModifierType_EdgeSplit, "EDGE_SPLIT", "Edge Split", ""}, - {eModifierType_Displace, "DISPLACE", "Displace", ""}, - {eModifierType_UVProject, "UV_PROJECT", "UV Project", ""}, - {eModifierType_Smooth, "SMOOTH", "Smooth", ""}, - {eModifierType_Cast, "CAST", "Cast", ""}, - {eModifierType_MeshDeform, "MESH_DEFORM", "Mesh Deform", ""}, - {eModifierType_ParticleSystem, "PARTICLE_SYSTEM", "Particle System", ""}, - {eModifierType_ParticleInstance, "PARTICLE_INSTANCE", "Particle Instance", ""}, - {eModifierType_Explode, "EXPLODE", "Explode", ""}, - {eModifierType_Cloth, "CLOTH", "Cloth", ""}, - {eModifierType_Collision, "COLLISION", "Collision", ""}, - {eModifierType_Bevel, "BEVEL", "Bevel", ""}, - {eModifierType_Shrinkwrap, "SHRINKWRAP", "Shrinkwrap", ""}, - {eModifierType_Fluidsim, "FLUID_SIMULATION", "Fluid Simulation", ""}, - {eModifierType_Mask, "MASK", "Mask", ""}, - {eModifierType_SimpleDeform, "SIMPLE_DEFORM", "Simple Deform", ""}, - {eModifierType_SimpleDeform, "MULTIRES", "Multires", ""}, - {0, NULL, NULL, NULL}}; - /* data */ srna= RNA_def_struct(brna, "Modifier", NULL); RNA_def_struct_ui_text(srna , "Modifier", "Modifier affecting the geometry data of an object."); @@ -1571,7 +1577,7 @@ void RNA_def_modifier(BlenderRNA *brna) prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_EDITABLE); RNA_def_property_enum_sdna(prop, NULL, "type"); - RNA_def_property_enum_items(prop, type_items); + RNA_def_property_enum_items(prop, modifier_type_items); RNA_def_property_ui_text(prop, "Type", ""); /* flags */ diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 225d92a79a5..d61db6cc6e8 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -475,7 +475,11 @@ void RNA_def_scene(BlenderRNA *brna) prop= RNA_def_property(srna, "camera", PROP_POINTER, PROP_NONE); RNA_def_property_flag(prop, PROP_EDITABLE); - RNA_def_property_ui_text(prop, "Active Camera", "Active camera used for rendering the scene."); + RNA_def_property_ui_text(prop, "Camera", "Active camera used for rendering the scene."); + + 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."); prop= RNA_def_property(srna, "cursor_location", PROP_FLOAT, PROP_VECTOR); RNA_def_property_float_sdna(prop, NULL, "cursor"); From a010139085aba2f14aab27da4181414a7551a9f8 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 29 Apr 2009 02:47:28 +0000 Subject: [PATCH 21/60] * Updated icons from Jendryzch. Thanks! --- release/datafiles/blenderbuttons | Bin 131741 -> 143029 bytes release/datafiles/prvicons | Bin 9534 -> 12878 bytes .../editors/datafiles/blenderbuttons.c | 8589 +++++++++-------- source/blender/editors/datafiles/prvicons.c | 703 +- source/blender/editors/include/UI_resources.h | 22 +- .../editors/interface/interface_utils.c | 18 + .../blender/editors/space_outliner/outliner.c | 18 + 7 files changed, 4922 insertions(+), 4428 deletions(-) diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons index be589cf130fad4f74bcee2b6926c300331d8e46c..e33602d9e8a00c3c892ff8915aa6af7785c3e52a 100644 GIT binary patch literal 143029 zcmb5WbyQYS*FE~s4}zqCG)Rkplyo;pr${MEcSwmKA<`|~EiK(5(jp)&EhU1Wgf!g6 z`+ncOf7~&CWBeFL!1Kg;&faUUHP@VT6RM%6aPtPm4Fm#lQ%O-)3xPm2fPV-iCY&*8 zA(Dq5=&sUAI!O3>iG21J{*UdX_{bHWKXv^NMVd9u6Hb!5$r-q5J6gDTJaKuB@bK{9 zw05v{HGkstoYT?8GHpkc0)e1ID9K9cc&2Y>czEjQUiK`y4j%L~GUmrBV&67ol{RBS zk$O)T_D2ST6sMxaK%<%n2lYm1^Np}O1MjQoKI8^`mO~+lxuYdZ6n2kkT!TnSF-837 z{4%*IDW$*mqb$nshSz#Z%Hsu}ujRWJnY&F%8p@*@1k%D9%Hhe(W6x3_##{5K7WVU9 zJ#;$Ecuhd$t{{)h$yDDRH0CulTu9wx2}^AgOV!RTo{3r8_HD8mIE*Z;I1-MSJUzH; zIsWhL&19=ixn%0-cLg-NBR0)(yFQnH?Q?t=M_E=sF~75Lx%*uH(}^m0GrfVf zEs<2VRY@Lc-fzlFadxqr!-n6HV9pj}!T0aXZ1z&iz4F#Cl1`gGl9d^RZ*DpHZytf5 z{)iX1is<m}L5SNz-20UjElWl{EP?0x`aI|>K1bdu4 zU_yg0h!AxS%b2f@@=n;8Mr^&6oHOdritt>c@my7&%ssias0aT4Zb|ork4{E1ZyP-A zCE~0xXB&CtTGFc}GcW36D?fEcDNm(IzgG9~E7{qn6Iw_3G6Ib@_s_(S>0&Yk70>1qzr& z%I2L>(RUP2XHD70Mc|`)^y&v#$XE$z%unT@?BG$*RoYVL(vl|AS#jA-HuWHwg zuUkS}6xKWQnF0nPf^}rf2MW zJZ#GD@1QvJ!2Y`(F*?22$a!ZilajEGj!pvc!+1htVUL~G%#9Q8-7FE09o%NW7e7aq zEu&Ua5$+AnF&Cj8O-3D;dxKnJf#fmcYiR* zULf5vHw3@xE(U8V^L7}w-d9RW#!Z^XR9#_|Yk8_pX!JsaF@!p@rZQ>JU)=Zf&y#0k zENbb=w}^?+!n;x7D4n!e*z02mE1a+i?tZFS zTc%fqa8bFu7J6+A7RG{@*>xNRCB-`Q1aXI_y`ug{-a&38?exrW_ z2aKxH=8AY&M8X~zOADkd?H3erT`2v_k~NRzS-ap}s2#5C{>`km3hF+@O((@M#HFr? zV14DmT-=57t2S?CWf%=HFfj1Nezsl=+apuD3aNg&+!YeP%Ht`6MCo-F&$>zZz-)WE zdihu8<(%sSg`~Gy3 zncg<6wL(c$#>m|0+!qy$LL1({{lIQIi&+5T&*%c3-{3{d#h;I_(by2vcJ+L9hUI%S zTuNH;b8~a17aKTJZpA7OdqOyVpdcD(?_n*qv)*f47Ji;Os&IFH?3de;Am^%55&>%7 z=-bz5SkmQsdA3s(8YMaea@;>zh;T8{3e_@hAPCS=Fv~IV|25MXO8;HvIx}-uf>Qx> zlDE2r2}>l4b?)9GA$h&wg$!8QAKDkyD>HZ<%b*aj;q~*-dr3V3*Rv^G$tq&ly9F)Q zPfV`>_sV;mV_>&MZQP##HBp&l=0$X9r=J2ICL&_mPkzSo#ZWq)X89Ys_aje!xU#ad z^G4t1ej2D(dcmB|TyRSvnnt%)RT(UmGBTKp8L5JeSQykk*A&TH{S;}@yo)R{+P zGqH4ILPA24&*3lr7o)jykx2SvUQ0Z5sgFYfixELV=w*g=H|{3hP!~JYk$wK`I%I>h zF>N=#W(2M+PMP{$EWni2{=Ko*wdwXgUCpv^&hDq1@RK@2ZtsJiF&+n;EkhfARq<|& zWSrz_LvLmsJE#$#QcICsxK)PbFg6@%%s)C>twU6_qV z6>o>`26i5g-9i0{OGoIBBT3>fSozmdY%$d2ssVFkb3H|#hU=;UMFZ=$37+J}i2;fo zYRp<4m6!Ogiyek2W_V-P`({$fEJ^&1_%xiO-?L;@O(SVe^CJ9_@dV3|*a^C>Kg4d*vNEIA2gk6Hh@@Da#9h#?-siGFgT z9zu^qeN*2=dbNRm<44_b$QVY8EJL%urt(%YyJNf@Qu9r9_z8!?}k&wf%jS^FL58!xiTS9sa_Rw8wi!_*=npX(&`_EnxRPA+n3v)?5!n>`8*&Z zBD(LiB$=O|Z?^fZAUom5atQ4kwW2_^BJ(rRz`rak5oAsDTwGi&+1Y0D(KKS>Gqu)Z zPo))eMB}uC$MZCQ9(GW^RDFk}izU!vRo}f>wDt5u*qr#8n3(8ENp(gj#WRbgWo1D9samCm3?i^n-8{hzwnU-P*o>gpoKw2)@K%6 z!pjt-7(~Fvz#x;tA|yoa?Cc!Fh#ki$RXQPEG=^c!38AP>I1p}iEW{FDdrM>Kk}{PD_CXCR?9PcBYDXI|`{Q#l(ZMIPZx^jLYX z*0`?x34i?(y5hN^fQAL{t>&<>u#?}j4Og^t(cH+bpw$(Ykyqk=moI5ub+eG~UQ&6v z?hgr^y+r%?mXP62q?x8Pl0=U1;_OHPif{GH6Bos}pb#2wq;Ljajl~dP1z9O6lyEb^ z7aAs?MXkT(TVm4(XDVt{Tb@eF-zAt|vitQ&ptmMB|q$6t{8n|4AVOW5U+fN)Z% zaG5na%NsIF^*i`EN{iy;vEXHCl*DO#=SDc8^h=^)3@M~l1-g{~*k(lW&WjeYT*Wx5 z?i*MI3HA1~q@u$N4<3+mb8{=>8w$BFZ8*w%8}R`CN+U4&oSKzonhr}xHcoUbgjZjn z%f684xhtjzr*8K7y(V0DzKfe=OHp<(MBna_-xp~C^u>PY?HhhSSg&|kM#1wVaLo89oOj!fOmyN}X3hQ{Yt_+eV7qe~ zwzB@P+U8%9B@AHyfRuXvoXIn@H=L{eZ9o8O0cD%Vl(&~*4{e}FT#LF6KePOdL|aJ6 zpb}#cg0rZlA-g97i%p@z4s+}r09{`!yISQ`$ZvjjTkj3Z(=>J=<-1oe1gRjwf9OmV zc7N|u=BZHeY;{e(Im?AAWoO`JWCERpe8gG(rOlhl`hrRypxs1B*PKe_}n#5qRfVl<0C5R50 zEZ|6kSn6lVD)T@OSN_O6WyqH@hV9l)S~RsA%o?V+DUQ(kca>vgAJ7@EPoh*~?&T#E zMJ0qPjim8A{~NPzbNFlG9@ZAVO+7g|3|Y<3gIpcBQ7eB2*emHcIBpgc6#SfT@i0(@ zb*J_tyN!kByWeMjpKOv34kuW5OH<90hWzXK&qjZ?uvMvieM>VYiF`e_`T1zk4`1`v zvYT*XIDUbSmvZ~LMz6k!7gO$G|69(fxtEkX;*W3;1}S5h6oDuZ#NMx}O=cwUhdfd5 z1`;~Yd&}j|?BuYF{_AAX(9^Tn@iU%0RW{kz48fyLNM~;|!7tZS5xwdXc6ZdK`D)bP z!O*$vG`<;3`BpIv`5dZB+tEV!__)rOOtD!Om&5IvVSuz|lVy(xw;)MLFiE8yppFa; z-V09Snm#_g$3=%S+^Sbvmv7qf3dIuOk~KwS&&Kv$3Agc%k{E(-ueA(U#mduV?;Z7g zyB(=<#@|vL$xU!m-U&wJH6NN>)oNk38DlF|N4@XSm}|{%%+_*^tWXykqcsfNkSFzr);Z?=};!-|zHF zgY`;vGx2E4N)BzNlm0_xbciI`MdeCK1|IGYODx{9djqijf>OYtb@FUJNUccwd7U9| z$W2Ppe|nGN7_ImyfC)J{K|SIS^~h0*(F$vvyQCAvPf`i!T1L)>k36kDX3WO=)ox;J zOuZ*0ahYmSGs99D-pGnq{>ZRFAjeWDHh03tH&yi$3DeUj@;WiJOG<2VlML~5v3D}} z$!TZH$==dQyKHa-Z{3#unki=6emMDfN>f>a3ObHTCl&*(ywPGpIZf0*lnC#gxu$7i z7BxlE@B-^bmkQGk8Z102Nl4iVeMRT7X}es^0c%&Rm{(V^;)R`*Q7Z(LlsI*Ukx8bn z$N`fIXS9&GL5vItTLSnl4fXD*f;$v9*niSkD4jIue$M50qT-w6Aw2G>y!n^*)v?qX z^^-rBcs%#Y)}j6;?&#$3wY>@%KdAI!JYiQW+LxUUy{!poon{x>(4|-|OotEdO-A$$ zEnUmUrWO|KN_nHlx-Kp*Cq0pr#Lezo@0P?=8yx1fE-Y&3Kd&eu>3etE&m44n`jEofRg$89#7(_GhWnDBHY`HffNgYL@T1_X-`KHG6dLo%zM-Al)B7ax*uT^4KO}=D7t$Z^wfuOI2ZEk4Tb}jPChs-( zmGU1VZ2#97Zjmqfky;rU<6L|(m(ux-O^Sj4c@S8#Aql;Gn?Qa-p8wJnvMJsyO}x2i z^g%@l^5^L1$hT+&+rbVG5F}(JrI>Wy;{InOXn4`g*HlH{*RM1RY#De*kF!k{pvcbp zxurmtl$ecKs#~fzD;TAMe}MYKY`ELG$*A{eXP#11-$VLsOlqokOQ%_5?8b@F@HwTe zjZHfj2ggN%7R4V;g5|!xzWXp@B1n33gum8lHMDfYIWi$%O(SUN^L3S#2YPc^_n>sO z5F#p?)>C)wAEa%4N#QkTEx`I!(p#eQKER~S`;al{JWcC#r#pciK@qhQg-$`Qq*W6> zqK)!41J>pFr(m2)b`Fl;NJL3VNlQ-@_1V68wAepNe`UnKn7a{!nP0wqv8U=SnA&*c z^7$g{{Ys0+E}mzrrG{c%ISIV{LISBz; zH;TqWfe?|c9XU8Sz$<^;U~&pTRG@9`-Q#iKgXn^m#!IwQf`fzoGN1;9Z*FcfMAJ&p zSm#m!iSQl&qZqZY+wH%r@#^ngTwRx4n*IP#J4_XFUEgL_O?`=H_R89Nvmrr?O?rL{ zIEKGj02~@v+1Q+K(u$uiBC4EMdejoM;?mMu;s{)@3Jx~j-rcd74#Fmu7e5%030;AO zgtKHk{9!f8Xi|VpE!0R;S(m<0MSeB*UKh;j54b3;u? zTkP-aD@JH&5A*PHGI(aH&(_;Njx(v$H(A~BO&{!SJgQJ)>%J*4N1)8>d-m_Ql5mEa zkVnwB{cpH7(?E^YyKhZ0LS0g}HV~6WvKG)Uirr1pE}f9iXNyluqvSg^GF5F#7xO+q zdT;NGX0-!2U_9ZteaLFrN12_Pni?%}aWJ+FLwL=ky#M!mw)D_jOs~Qy6vnxSIexR_ zvv>AQOf(`8`-hFZcRcP)sFOu38?|SP*jDXJTS%@!DVCx`rGo z%F0@AW`Dm(e#kuMv)lIT^5V?&Y^vk(uos&3g(9_#@1)9H{QU0FZ%@ub?tFNiUq_2I z8M6M$gy40@(97sR&80ZpEXs;HJ?gmfy$es4hFRLkal45ra|P6*-yf(ig}vR~InWc% z;c&H%QdnI4vc&Ivg%(>^SNAJC zN);0Vu%{n*4qr0qJ|gAKb0wAsO)n#>fq3V>6^4jsB_7+;qpSh~M>wSu-`5=d z&SpcWOng-Bc~TxC6y@Z)n@Y5cnxVfbxBTAVxabJs(ADC$`6(5*(&+$3v&?|-55M;7 zsFTLV#wte!z@7$e-gP`#N2LX*7g6EiXa#)v#d@XPZ*Ed1Od&8txcV2p+h~GfVwwsK z%SpE;%W+DX{3s*k5y(p-%}SRyr8VcXX7_`PvnV3vM-L{E{}x?cskC&8#@v`^7@) z$>YzAV%EG_n3f6f%J|jsatInE2s_N|1TAk;1O>m%Gf!wa;~~~gZ6P_e%(;!Js;7(j zyb$*1@if`}Mj)n=Y|&-yof-$U0VX~TuC(IEBYTI1R&uCyfvjPTP%7_CQt??405wJ} z=7%ONy89DX*F(8vSVS5v1!p(9!-P&%DGt>JgZB|k>4xxbvw{t0SK`=X?OSrItE*;^ z8eLE&RaJ+?y58J;%>U}#lLL{En0V6q_SIs$FMM)?S}Vdby)88N8|0F_6!(WD ziY#u+A~H}IQJqkV1I~o40?!N${!2mWpjmCFG~n)Rr5)K0eEoD(FfuRteUH6`sI8}e z@Xyum)$hC^6a;;cw|LuHwac_Hkt2aaIX0-f&+ z6cCHHGA$lM=?^a&NY5WXJRfvA{;=o__rBFOj6 zv&4P*0_e;j-SvI>^0`no&FSE$X1a(69)uyRa%!igk0{r#di3Z~YK3vjwoCpg>*ityWM+SsAsv(oqh$Y$7azS$ipDH6oZUS|cN zC=qEkF?BZnu8fxzOV-VGsYB}ndwY94P#2x38fg8Qlh+~49=}UW6g!wUkEY%M%*?C2 zDXwfSG$&FvvFY|sUq|OWH7zYo7>G@@=g*(xM^cN_KS!$etlF5AtjL-b}MQ`>WGU zmY;6TRTh1e>X}*^yoX;!c3Iao#08wG$awCqI~tweRH<1X+KRx@S3`uYL#pIT7j#Cg zu^jH{48;2TtF$t=vGF!sp$jT;ERYh{NbuE(Pu~Gz2D!ev`q80*eQl<}k=Ei%^6Lx{ zkEeU9{nM>pyqVs=*#5liqoe##Q`1W*Ep9*GTvzD0*bdYzEaVtw^~{&+O&gga+6D%S zkL&HQfx}HszOA9W0d+b=gqHUyK+R2p}RVIxNDy+iwHI8BEBfp#X5zct1OqT0=3Z9pPhx_B%iXR^M=PK zeu_vLhvrS@?m2^Uy{x{(b7NiIU|^g{pjvB?NA}PoF3BCbU~HjCXP1@X%E`%DO_q^U z;bFC(tW$!ZBUzv&RiM>rf%Dt=d%eAg=kllEnXAjAj$!Nof2fwrE71~|1-Bw81?27R zIliU~1*Y&?esXB&vf{hL!J&Ev5aK8uNCTvqGQnm?#BJ_RptJ-6Z>;lS_ID+*bOkN< z)6X@K%HDE8s+;$_x|rR5arO{F7xXqkOM!p`k;9-5ory_NNa_3cF$oFd30m)O)I{n) zU<{yq>^S(QVyL`n?V0kRWuDVkn4O({SoCmQ`)hYN*?y+iKSWg!k)=^)Uys}^Ib0gi z>0XU8=o|#*-QrzZOLgu(Z+1#u(Bu}{W88Xmb#df=hl_9_pN;UHWKZv+Tfab94)T`$ zUep(?FkCq;HO*VxPd=f;NEKyz-^gXng(V2{3uWJ*4%zs(hmxUPDsiw00@dyJcU?Ah zSdpXUj|JfQP}Lz&aj69FmldXuIPg*Y-Ky*Wxq?7?07_XVE<(HTAzO{XJ#5l&49Ivg zYHDgfesqVMB0hSP@=!!bntTo{1SS`=z|E@4Ywd4P%%}77^BkHs;VZFtpAMtTH?6I$ z_bRU}*G^iK$ZTd_jb&l9;=U`A_HDhy;xp)s&|_plhIfB^6lL=09x1JiuCeiN^IE$H zlsr5t z3iNV491zL?FLs=-aaqmQ|7YG4+4bK&x3GAy@Zov5+pqBw2KxLnzQHA{)Ts( zc$|XtTM`ly>N^}Y694N3K#{DR>P6G=R!kkTcuwh6AI&5#zJNevdY!v=+}0=9>-PEm zy-vKhf$H_1#QKB{|1~^_Eo?{$%NF8#R;%>DAb@V^;%J^@8w8zVo{lS?Ps`LLWaudN zrU{5?=kuE!vZHM(XG!FepEau?g_-{x$zi>B5BEe2sO+}`Y)Di-3XduS&S5}EXusf_ zfSpYulQ$xMzz`k(PsKyoTl&yrVFz4^Yh6rfjLBc%IXQTJau{X6q5 zk3NYo{5tj_$@#=yfF9eM_9vhCUi(NlLO3LtF8lUar8M_70r{abz_PGGe zc#9`ju!dcDAN~pkPB||(_lJnIVo}G%Z%4GsrgaJ)-&40iQ1TWqohHrhpW8xiXaiLC zv~{bZMG|@9uSMbfthl~@ve%%0i;tO^IoHy`Yf^wIh?Sb6Eiy3)rBHNO1z}a&K)7-w z_W(VY^~bx%4kht(6cwN5?;;0A6e^4wJJXdZyQH7A1c+&qk^${SXdDVT9ae3^O(2<6Vc*~tKcNlx; z*UN3~Bd1t)M{|;j&=HXvjeb|J);vHbd3i@afG&vNE^|$FYqnt*;Q2v5AShxff|!hq zc~408iMgycS%AqUOK#oqSA!tqm2Cy;*PGx@!1JNuVXm*k!}zyz_EP<y|BDl*aRXtK17@g9XGeLyP8^*1@v|R4^XQO%M1B! zCs_v%L$t!+mh3+VTi*XA1ywdD)-GMtf>o)Z>`YUXEW zAGB_mb^cv91!eCh$io2H3VF3$K_+}|X}OQkc=QOn(MRN&g@wgafM$XoJ993G3(&j0 z=MSe$D-Az9Q~HgDFIqLX?DQ~N)-;YWZEVx7(>c8j)?83SHFO;g&-f^scrCvMec9ME z1CzmuI_R;zDqL-DFCYX`V5&Cmva@G=s229S6#Zhso0ObfoFd{;L4y!}v3*QDjiyj( zbuLnSoL1^2wh&-_BfuZJl!?%{{aFPnNvEs)!M5J<{EJ>2)S{<9^B^ZD^V_~t$J5Jx zBx8;0FgE#voL8-l1c=|*KOe2Lm_H%h!~2k5lero0ss`}{I4#Et?ynDZ!Agt*(6pSJ zhJ0LWRs9F_@A2)K8mx`stX{~ZPpS=^wx_w9GEp{4%gZO^bj&dGXo6-;feBY9++A-b zSiBtTvQ2K-d35~Z);`USN>Kb$0R`2L+tj&K_Ff=P@hJEd?{RSzLBDimp}dJsaccdq zzRq^)0Tv=dt$`K+t?znqaj~SkdmRz|_@>)!@t2-A3T^>}wTBeO8jwbB`{c>;&h+$j zHwFeq9z?|Y4|q*I^m^jjk00AUNE^~2K-ZO)4zK{_0qcR|g6PL*JRF?&?#nbxt53&^B~IZzcH_-XfyI}^JYmEog%NZ}&mW;I*J8^=sF`ZkPCJVi!1iAx^hD?= zMGIjH0}LG}xM+wUY^J`c$hDIq)ig}aTZzoAC}^0+d^hE7%3Aq{(}mEa2nc9tqe0Rz zU;6mk{ou}o*o*Dy;mVFn@3GoizI%^8e73lMdmK<+L1JPeI+CW7CvE6nK=*N5C~G#M z+`Nj3$q26oALs(-3-!iYT3RWoslpcH#hRwAAZs^6m;4l3D+qO}?H3|CcS%zDtOH;b zz5F+0SqER{(0H)RSQANSQi^*1nFC9T$!xo?&vo+xGc}MwMvo5F3EFhPq=2$(QV8~p zSXKQPm9!!f?P@$=n6@bx1_B$Q#%hrmh!I5RiCaeKMJcDGV9f;b=IEP)yt7v zidpgTrt|bu#sug(Usd+G{bEz!OM;uo42lk+0#y1c>BJh3-G%Ga%Nk}-XQMlU)N4E} z8QYZSGHpLMkCY!9wWyib*VC)duCK4RmJ2=$#_#;{{=kfy1n6%ZFk zwBfPn>(LIxb0r8zrJpu41f72@0A_~rvfITZ+OCt}eNg&AZU$xxB*Qn3#BKib4h`Cfd}u=uHqW~b zJFYJ95mB%#=8%ZRS7#h3RczA6H!2nNAjzvB7UOfNn)c4?ItPs~I(eXY;TQ=VP6RkHPfI*kMek~2$571qNo`^MBQjAC@ zBkln_`R`x4V_?w{kZj8K9j$32(F78He zB&8*-fWzDhgF;k#17w1ZzG%m{;o-9rkOw(bk~rtFJXXU}O4+G|=-V{&Vb`P>t9zHCqH@F8n8Oa61KjDlDlX3*;<*}uE zCvr40?kcqhq9+=D(E(B2yMC(0SBI-}OkXH*vHgX%bt2eP!IIb^``8uq5X}xL_Pcj~ z5x#nVs%d0Ib?9QkmYM_WQ+E6a8*^n?{=)p~f8?Hs7y<+}YGkqcE<##SGEyUG%<})W zIH#;n6p^c)*=%MgQt*WSRsKJ!JLDEs|J8Z!=i>4j{Li~V zA?Xve3@aNdc>jAj*>E^r#pv*`rDa!dcsp*z|2E{#wmD`1kPt z`+x+SemvQeXzTy#T%B)uZl(sxAvZt%fAW=T;fZA+Q`7%m=KtpY=n<&@(6bXrK0bqDzMLgzed(a~gU_{9KulACUS~PaNocNCY)* zswpsuAEgn|h@?+)tG0h@`)$qSNTOyvQB5+Csj?Vcw7N=4N&>*nDP=Azs;Hp#IuoFG zzC8Z(MBA4vIX(Sc3i=SSwY4>(UgyU3R9i_T%JBY@*TPF!Hr}@KX+R%l*38(+UoG3z zeg6QtAXy^!VFybP0X;A8zFM0}WqgSH=C^JiqGnJ)ykdXVS&jZ+$xtI>L85wQhR`9Q zc9l%mSgLyrA4dvjaDs!=YcZhvDcfS3kB7s7jr-w9kvc8P6Nf0&C8L%XZi^`~5@imWW2KR0$0;<6kneQm~K&B?}Q?FH-e?B&T?(i||VO_16? z0dpD02;zF3t-h}>*}J&75800!9P)ss=;SbMPX{@I5=rmWWCX|0smd(QR%It7y}T3w z^ZSWk3u;9*)QGpajlDK?6|TY=yle#%u|EZ=@O;6{mf=1IgL&Bfj)RximAKcLJk#Y) zoTKt)4hX{OW~uhyYq3i=B_77*%fS6e@nh3}s+%$qc@J~>U0veh7VzY-So|54uCFaf z)%d%9_Lq^QG?@4vF8UrBmja-^ZcKr%B8hccQm~x}_%#^^Q;~wV=idjcEEPGuV zYTlaFP)-xc`1%Y1hTtNvOfF|Zsx!L>vsZ|+?1XpdV;}6Jt=B$GMwL}7%P@xBidssL z(mpet{g+&Dc>j?fGAM>rHI>h6X#b2&d2?B1!VM*lwV?XC?IQPq8k#`DuJ>#xnLDrY z`%|w8%x!G`EB}S^dhDS5!K(}%;dbx&PAjA2Yqz-o7Cw#W3$PoUay+j82~0flD41~I zBvb4Cw)vFlB0~ZV3LT&Iw`Y^k2r3Mx@G5jTE{gkxlXBcreJ(96+JzMMXx};Fv<#f| z9m$r;0~)Y&vCcM0oR?R7^x)_#RWH3r%VXJ8;2_6-9xeE&cle&Y@NIeVTa@{xGC5aa zdQ#Imi8?j06ml7Yk<7x<68{vO@?MDPc3%-NWX8UGhnY8u{0{@CRoPMo@&F=?jFT z@ooz!EJ%6}P30+t_a_tjrjUPGXN*yG@)zE36 zvh0i1k+0HMCgiTGSLr@??lu(_#0|Rd%tk6Ohm5%kQbht(K}O0GYYM@Kfniw?eD(;N z{2S=Q!?fN%>A^}+{+2ZiXxo4#aXH1f@d&N&uo%RFqbr1V@>L=MPrBCWqQAGAYY{~$ zUyxQl<57|7a2b6u1l?1NeH27edFP#=WH;e?902bnHxQ>syH}|6tK7<)CsrKSw!rG@ zY5*r_@)5TQJ;0zSHZx~KZHhV_FvQ?wbULtm#L|DIusA8lU#wm_wu4S~Rl>$dCf07z zl@o&*LGY;{KmUBcFwLRa90HIV@uw4u)~qjvUQtQuHTZj#3j*L^4IA)4ilO?eD=B#$ zuBSQD2tnU*8(~mohVllFIt<+AAP9qbr+C69npCRM(>U8@L86L_$Bkl+=Ys!pclUA& z3r$d;v*({J_xmXipA6H!<^vu&3RH8fGLhkZ`e=dOW_)s}zyX8VwBiXUwLCnmZsWg@N+}q2*%#3+AQTb8U;f#Dz&H6+@bmv|fE9Ab- zs864ypAUxT!ldMFQ!S9~DAEPRl$DkFw4d*(JZDZ@lq#68*(%s9TDu>}K$HIA^Ph-qWFk}m_A}@3@J$^CG5-7sg9?Y=O><<1xfe8N|W^$Xbgos`A7mX zGOS2>*U__2YeB0GFACcZ-Y;Y<(W4MaN+m896kz>1m00}2FaZvX=|*RU)-+?GD44uG za%Lo|mbNy-Xj-$~49{U4lgjmui;qwZZpm5I8N#%|Sh8nX45h~6OPp&=faG0*K&8AF z)uT+~ih)qNupSFE-HZJ3bWSsUkWl(9f^HZ17PX(>>(~)X*T3Bsa4@2wU-eSnloP1l z`^XX$qlo}hW-S^fu13fHR}rhR!kaW+tFgyZroM-y2$jGgt`lmTlgc)d4PP1eWwi4b z_2^*ScWG=ULKp!jz2gI_NTS=@<73Y?s#U+JxDJ{0B;=fCjx&fKx_rdM#J+ss=kL$V zs@@Aky-lRWy&ih*oy4n}C*Q0V2^^yo%uLJA_JscRyE;OF)_bCr39(u?!n*_BzrWjP z#5ryE0K^jh+~y9*gkcsyQz!1X9C?{s_6gk2;Y;JQ=Gig5I!($=iHXU!!VW+rDhGp5 zc|7$uj(@9V{(>K$RvgGr3y`S#*(8-e^8oV(%Q)&Mg$EO{)mGex4?Nb;($7K3&DJW3 zNltzXq&pe{$Oy3ZsueM$q@)zBB{KW@G!*z8-d_T4Rls`Uz3yBtVW3&wM|ZAO^O2F9 zV`kNxG?GVc&%w+pZDaFZW&!!3!oxw&-voynGjO>J3JYwrkOA$UQAygtffGqTU1v*{ z>38Y%^73TEpx!Q}0@@^6BI)m%%B9aD5vhndtWr?4aNofvfPyT<(U5h<-ZP%fk&$H=`nLo|Y!KDa5rBbjN6Np1c^Nq7G;W5yJUQT; znXV~vV3(yE(k@ba0wg@>sIX)Sg-6 zM8&epag5sr7upt^Iq}xFbow8-=uQcq@lDpERK2uMaR;$|PZYmpJ_<-LOsGR2-|Lpb zsvd20HiryE&%%NQlZ|6lbJQyV)Cdk=5$%mbzGVTCeNLI z<~XfIVAAvTs;3K9XL#%%By*c<7#YnufW=}3rPbI}l{y9!p|)h(D3NUQAU^3G7cJh> z4j5dXfGhlXqqOpce^%$-qpXD7XII`-3mt@Uj9%h=KX=VM#9ys30!IZ5SN&~?)1M5m zZu7vF^ENc}wR~QQIp(T*WAoJHq~X7vdE0ZaM8(9!_`_5{U6m}IxGV7Uu^va)am$;W z^Pl3ahtnB^N&A;5zOfbB=F_z=Yi+0SRCZfQs8DE*cND;Q8vSMta#1umep{!l@`k6d@2K(ebgOH!t-1O82iqymm0nuE2w1vCu0#AITZdtp z4WVF!k_0EPVZ9x>R!w1H51{xLE4gyv*EHb4fg7-CS&GwO^YY~rcK_wppL#gIbD7E@ zA0Y|Y;R#Plg8PzV?Us_jaiP#OqPVSn7$#&W8< z+d+kaf5tC2?4+4j9QHVL_q+ebgL3=f%xP zhTF>Vs2ZHPnSF`Z0?L@Swss_xdot)RM)H-2LF*-mW9$UgzgJp&g=R7F{@q+usT zrq?<-SbND}!-am&poep4Xz2Zv%Rl0HqcW)5YOu?3D0>_uNtV8eaoezkVSnT++N0ob zvM_|%qlPa&72|}imt)Q9tu}+-7q=fvg9kYpi}ob}P~bh(9&@jOhgbo=vdi~qz9`wl z%M=;Xwe0B!MxQH#W;g3J2#0jEx!!z}N-TPGAO=si=Ueno&layPONT6cB$8=J+&XUa z)m?FLY*dIH8jC8R$BR`z${I-HJsZ39c;G0@&_h%IU`h}?G-h!W|V<}@|@;z=szBeh_QGtuz=HKxJ@<+;xA zCYXZLH!g;i2#s#BAwmfPA|i0F#~bi2fJ)|gC2j-J;XD~N)0ZE9@<&i71h+US_E@$I z+_`JX+eR_uMo|k}IAHSz9r}`&8e5T6Ww5gKtBA6lYwH%&d}U?jkIqzJCInLs?EeCL zSG4t5VW&lnoQ_A-iWBHNxnS&oS`br7vY;9WJ^+xZ%MI&3?X3-tmg-klrGjWA1FjsX zI8b^Mbg1j}jY~^Q6Azu{-KAW=quNxQZnCbIpVH{11?|`2Wsz%9rd2JkSl)TxQg(8A zwhJPwv=F{CRnbc%y`s8$FF5=375ZkwHI%1LBGnj!Zr#NxaAT#V#n^4(o;&LkWtVR8>2Mz~~C zM)t%E$=TF3tAm|cuyo>mP`^-A7c{n-8XEqvI`hCR35^2u`klbLvR+#beF<_pzik~V zFT_sRbT=%%3U6!_Hm5GhSIvMN1+l*#xcU30FwG}UGqfO!yt2J z`CXECcXz{Ubas@xG+~vVf@IRP03sJc5;Sn=4!wG8U!H(z$@iBJK<>S&Pf0>Vh@$yW z!y1eUU4AD;PQi4}bRp*lJ1H#8VOQz*@eqGLmo;b}E(8-#lc`52Q(T_LDIwkjf2%An zhaJIEU>>S=-_q03)y?s{x)dK>yst`dBSDLjp3wth`0=9WO5{6`(pmWV`C*Ktz%#SD z2)(%5-yhu}&_n}MDdqZR+_)5Py1w_`#WLB%$Q7lt?e<^d-t;vKd-sA9{nGFq6nD)= zRt$F~Crvi1&ud5i1aX-uDJMsA;iMRR`J%(-Pzrv|)NCwb)BDIU9S!nfjjL(CT$i{y ziH45l-|w@Bt|2R-L?0)?su~L+6E?9me-ZT5++2!n&DPe|{F-mR6Vn;TN`=Srg%o(j z(&Z|lrG#`RAtpg454Z767b%zKr39lT4DrI@L)Fsx>U&z%JH2^R=&XgSJIfeQu~}6= zEi~~g=iWwfY8npK5fZrkP)}g_&(1$gLy;4Uv51;8gj$qwTgVgjcUq8G2g(l1}O##O9jF<@pd z%=SIrUzpYUyVlc9M+Z!DsQ6T#N7A{5<4}J*%UME=_$WIU7t#IO1bux$DQYJDsZc=3 zFZV;n_GxwnI);W5CT5b|zqTi6r9xM(6bDRA*xRsZD#4oc-N;#B`jRV z-;?o2-Og4Z3Aa7j-6eJe>Sz)RGxLB)40GC$JVLTuPaEM9;B(VIhFbku6w1og$pHIQ z-_TKI>)rsry7=X>C&F=Orp|U5b`gpE9aEP$OxalQ+3n6WZXw0IM~8r&P&G4QA3iKP zU7>NYcA>myZ1&0gg+v%4SVb-*9(u0!`(v@eHbBQk6Y&N5u%{V}&vy5H8uvq3cvj<| zLRxh))23&RqQ!1Z_iw|jnhN-CD`n45XG2}wMWmGxwi~8o7A^R7$yV0?;REs_Y(Tp*AUjb%T%TH+(bv$?38E46&i?R$2-TnE#c%1emYskJ^K+n$F2PcWHSyO1xKD8< zNyv~AnZVfAgPo2kw_wyN8w8Sg!eyyQc$d>;dcQy>T2XK@y348tC1@S&%s&n_>HhqA z33fbc6gDltp_D{QX=xFG$(~$~*r`(6YZjmq*g)(S+o=H~_78(WT={}rDx1g-56cFk zUAIX+A1h3JKjpJS+woUx7sdmSjgJ4#I{rP`$YKx?nJx0V|BYF?pf4elDd^x@h4Xs} ztUxLwBO{nXS6~K@!Re?zIXU?c2?2Pd6{tB8*drJqJR+qh1h zS;^1}4$%G2Ri*OIJGMAp^5Cz=VJ14!)EBXpgs=4OYc3T&JJ?{e z{(Ce*NgsAc{Qn{AJK(Ww-~MkxLRLmZMwA&D*?Y^p?UAie_TI`YQOSsGZhK{KAqgQn zTOlhed;gF7d49k5eLtUnpPq(1x7&4{*LfbtcO7*6SZq~zo`F>}({+!hobveW2>d*i zew6!+ok0Ku8rc9rXe3%arW{@DH~q4V|5(bGM#~ngD$!f7SJD`Eh)FulM8gX5Sh;8mrdSD zfpI>?XJn-Gv63uGlCmrGn1hkndled-d8OL;s@PakQdn5pWTujG1!Nd2IB&jV5y;VJ zlf=Afw)W^gI#;~!(EZ3$=FQ*KS@+&55#GleLXRh>PLf?y4RA_~1P~pjhoIqsF7RB( zT8<4G!cQO>18oWvY+HZ-KF`g4oIl_)Dra-Ta{;igj(o`v1_* z*f z-Pl30no0z&E{S|3b|`j7Y3uCcF%hBVbG5^%BI}+d(6fBNn`{A@mof0qLdilETm<^} zLBseJTo~Ml_k6ZUm+NKU-rh!CxRFrAzjt@lT%3=el8ax&3p{i=c%1`xL?1*Qu zgo&~H7XGv5)HnEp=^Ns-pc9;{uojsv$PJgjnsT1DaXZE2vb|C%CIgl*k(f61*jZii zI`mFkTU)?Zke3K-^x5RZ#+!&xa_9$LxpvzOU>rzyATX?Ph=L7g4%lx1{`fd3B762K zTTIY`c#yY#f#`}i$;p3o&uDBX%8D-L8U^$ne}6kQ$3Dbf~#~g&+aTgEV5S`ASAC*-aa)PvT zZhieBb+7Z1!q))_*^`bGu1b5!mb1{2{qsbX9GP9C)(6Yr6|5x*u)^UPQuy-wr7| z`+vsCU+K6r>fdKUC0JToE`r3FL0tT%VX>A zx`u{!Y!To%H4c6Knh4gc8BgM0GG<=vQjA6uV(|blI!Rz7Q1pJrIyZ}u!8+}wS?iuX zn!5${zh4p~Ma9zQ%k1{CWWB8ztDEn96X23rTPON;<5_?F`sbr3HB$vkyoF=8K%{GQ z;fR3Ck!sS?;PqzzeQx@w?STJwVBv^I*1$41a?uW}$7JXc0^T)RqVi|5h6o`0TDKKa z=pjNty7dz*fKVk&%>KRq`;9}M!%b~|@*4yj_@4>y6jX!2i< zBgRx$SMPwMp{qNNon6cU>Pek|S~<fP?oCqkn3dEGvmBR z08fhkM+-UVzs`njLwn4*uWK}T*xOW1@Kjj*kuJO|S7tY8JkGbyRaCuX`Q;VsL(e4z zWU=lLAT4bkh`qhN(3Tbn5UnV;uvC9dDa7e9VAO<+pu!QuiIh68?O%2`f_<;Bb$>R) zm2`5thJ}^H(1VP!jm(SyGjn{GH}>f}&T$V-Vyq06!`b5FF-az+oFMvm+3i<^XYFDS zyu4~Xl@iRoN1+%bkiUGc)Rm49Zwxr|!Kb66+x;_s%?JVkPQ^8-%kN>Z9^Vj{;qXp1 z)DdHmv!yhD`!T0iIG?zwe!7Gvn*H3e`e)B;5>&tBnvWrkxC`}q8%rL_Cru&!us#d= z@tv(8-IM=;(j!W8aA<^^b#Y7a%x@S%#p*8)z ztu_t6^~kGS-dd`SPK%vKYvs4rJN=YKxh{gIJ09(>`h-t;_mdfSI$*eE`W%D}3=z}Q z)nMu}%6|klrDAZBzApeA-I`Ian(98YaGV_`0#zAA%(FV6KzHT<+r=>~lv`Y-UZ?AT zux^2WOR98i9!#m%xy^zGZ1|!xJ%q~GhKjOj0kS|%TUD3vsFG(ack^9g0KbzasxG~| z0=S6uDGoe^Jv35jr?LaZjP=I7AEl-(Ty*eFgXlG3g`%k2EN;vVwu=l6dKMO3I=?N9 z)3Y;8IO_3mdd7XVX*ViwFWR)VVGoJ;9gX9#YRfAU#anqtwKu{e9ITzR`%`ndGzq8GfBxj7$R zwkI;PQhC%O)n6#XYvMO$EV#!$?Dw|2=!+}OUH|3zA#j(?W+M7RYS&#(dU@3%ZT0o#(&q zj!P`5Jwp~s4cD&R9jWkBkFx(3clEJlS%ICexj6&4z|mINpQr?rHn8-ecM;=SCk)tX zI9;P$tI*pF8o&b}6k<)jXUgHjWuaZ4)bsD5(wjN>D;Q~_gQ|m7Q*-C3SVS$qWIILI z--Cnj+}t~e*t$=`Yq#C9Szj`O33AuRKd}-QIwDW%R!oHQ3ZeAZEjYsh#o$u+!|s;% zJUEzyk}@2Y+#HDCKHdd=C-8)(nXwx#4Kaw1S5K?^Z8iyGn3zq$JGpTu%`X#7ztAIb zzDuw2yYZSvh*5YghD7e(5d{0V0~KZ}KU5tnz*=G>+&23AZ|O63)0>Z9$i^u%19OdT zQ^4S&l3bf6(<8JsK;VBrF_Rb)$%r5!~3y^d9mFIO?S!XAu2$P^w_! zu&6b}&&I4C%1O)O?9&0K&o2)zt-aOjD@sr(*8O?H|DgyP=Z^(0)uP^> zzn)*;`TXF}ViFIl`cIVkneg2AUl;A~dR5BKw+IXgjG}b3US^p74c(Y!ohbV@0AFY1bjB%5fJ|MIqS9fOYnpN9Yzjp^cSc< z?t!N?{CBs37#LW5_W!(qGq%pXkylm0ve;3tqI_%vP!Nou$*4!ul-fOJ*jQMSSp(WV z8ag>$JAU~e;gX?93Sqq^#5;p?h?0Tn7+PLmnbI*&{zMf`#N5xH+X(|UQ%|Z4DUr&q zj=3fKI9Z~7ICbDm7e~j&t^X1%X)g9(q+5S$ePk#vFCV8h!pqA`7YH~z`$&<>7akM`Q>Tm%XodHFAB8TfSf{`_COlwQR8#K*FvZM!D!_C?)k(S0u!g#)YIRTf^Me6 z^j+o8_1sk*_g9b(VFit7IF=NyCyJ0d>UNjKM>nUsL1qo*x9{JxKoA=vI|y0cH*{Y5 z^z1MjoAxH&KAmv7j1e(rswa0|LJ(3pAKA*hDG?)@DZEs`%7V(pW#GMa>z2YLCpTu} zHI*gmPfs}F)gg_BcRR&%W_x|Clnx48IAG7GpA*umQcX9jPJd@O6A|qrk>-px=_HL< z-_vFzJ)l!^Sgf6r5E|N$t;{(2PC4Me9Eo@-q3#>7`aERVl%x~YR^E6iqGmm7L$nvX zk;@0Y@_8exgFfOsxqljizLeGnaJipUUyANDtP{a`0GlTC=#+PjB|#kvfM#Es1X1eJ z+js9SO{%o74p-#NWHsa;wU`w>t+fUVA1h$Uh2^i9lpK0_kZf_k32BAjbU(WBBXw=h zC*fQ?;dKWJn}CKzA$|)H@5y#3z-9q2!5ZnEs+d^o6-?{ zAbw>_iG|)GE;uronG{OLm42~tTLG;>7~T}FK9!bB-W6COeL z$%BxcSt)o}=Mw5TRx*768un5RW!gJ`oZB)iZTs4<9bAtc)IxljDj_6FCgS9ZQxE4?_)~9y$|4rbI-l1qlh;cb-wB>aa;F<7q_Zb^W~Scn z1s*LEaAVZ#`+sUWKYy;x2D4Hm?CL__zMBMm8<}=!xH@S%`~H3RV~?3ApP9`!N!P!w zYMhGG2(+W+dmNluPfhDzL2+u=$>a5 zI1Dv=3Qwp}HEE?C*c%Bx=)8+hjQal(IPw$zj~bHye}$3!-)K|hzM64w_-`b9R6Teg zMg>Y@Gm`&`C8-sz#5QT(Lk(|VJ%Cq3OBOc}L`jsaszY1!d}05*g)e74!3%QA4Y=zm zxBk&I5`1atMStY#Xz&6xydHdTDo|9>BwGb*P0A(uKQF^|lZh)6>n2Ahe06x~`SW?H z9Y#++)k_T7*#9TqHu3ibH3!ju6`NQ8SG@Uu|Cr@w64GiW`gMxyV7b9`wF_Pmfer`z z=SvL>Vo9QSF<4N6^&H5kajd@Ge`7=b$V!t$0T+9wO8UdHQ z;x7EKAALxq0KX3^7>htlZ=ll!|t!_1Ioq1G%Y}4HdQ9+-Hop;ode;7REl*WDW z>J?4yfX#89c7d5vOhku;5^thP1IRO$hU^HY?u1nC9URbIqotibgkrmEtkl%>s@a{O z&b5)k1LI(vt8EZi<9m;t{RtIn_jQAgI?j9`Z2|!WLkQUSd{s)vS^#^vzP7&ZuS?b; z2U!_LCo)`3?WV=mS#nT%-3F5im8qH3+~@Q4dsqiyO){E z)xT31g@t`6P<*uoJgKRv_Rw_=xdFfM3yxpcG_V}ELm)%Cah2T&C1Qrdv>6C!e8K1) z&&AVnj>q6m-jEn663@b62vPCz?rT=#!ER2SN|gENosXu!W(jEow^qRJ!eVU@Mvn`{ zCwTG&2dqJ_W{)6nt#I(aqn_Gm0dNxrTii?B=UZDKN%{T+$i!TDT1SrocHAwuPXoTm zQTnS<>|oV}2Q2BZYr&u&9buuTpF?}64jka^&VcRl95mCrN6X90ZDv-z86;*q7bhzzu%B#3F1RcVu0rFwr=h{1_lOBF)^__q|!ITWFg9KM-&i!!+CoPZ3q$(#4bClq(a!uM#r0!z6Q7b8y;TX zYfuU57LvmSk%ZcxT(n=nS+5kxM@#4(X>08#@2`Oo$#G>MEBqL0$-f)G(|3OVuCW1b z;%Z34ojistEW5|ON#wP#v~n>7`Stl9s^bJ}hPHx7f5MUbIwNG4CLTig*Qp)%btXiu z^L&^GFeiz@mx-Ef`KZYs#B<~yKr6WkpRWuT+3V~0l`9NbpKj1}HqC&r=IlAWmBUo+ zb|>iRJl?$?i`L+Fv<8Kfhf)(5N77 zY?faEeV?#49!iX2<}u54915?$YqU+ieXtu8LyW6i$kuLSw>9x&K%&~wc**G*Th>XP z>+tH!N2*e+i(-i^78CegH`y3Sb zApU*Eqy!I8Vhq!>`Io_t(R@&`-8HV&FmHgA;4Z7@^tfO9`^VPY>c4{fD+lpITVG%B z0`8s?|D_8|6}Te7%sG3G#63gEsZ;0~}TNGK@6R%I_hYDM|w^XE4p z@Uh1zvw&2FUd{Fr_ftf@UDiRBhmF9xeE9>$CmTLC*agVAK|}~qDEAe}I)aq>*glwV)z{Q`UbI}C z`#yw+_(^Z7*hx0@9A~h|)cBtMD04s}2R-55O(R};YLwz7k&uuK0q8G$4m9qBZn0r& zPY*s`C}wkWv&~out&r1PP_=rR_&hAF-*p94q@+B}dZi|Gv=RZvX#IEQfX$l^AHcQ} z43yqGlqtt(jm^wcL%91Ydi<8zkdafrbSOR zZT99)soNIC^8i~6cp~DaX#=SeSR%*{=*I~RjJB*?w@hc)PB?fsk1XU z!DQjHG?eGBFq9%{vFCKVT*H$fH$?$1qYEf)#+<;%UI8Xe;WZFXJpB%#NXgKoG@!ii zOgPBIWaHtZ$jUixadU6|2922wnBBvACz`RPa!y~4LbGLe!$>03=Ivf-M9HZ_d+TdCv<6P$rUz@=sZxZ!`(X=r2+$= zBgBnF-3bw-6_CNT&C_6+0SVD?MnnYe6Hp!Ksi>%6Aov`ne!NdfDL(l7w+${BY#H(- z(n-QY1cZdq+i=`oK#;8+Ii4KK8W23RHlett=HM%cr@~WgNAtDrfPU!7F=l{?<8zGoyHY|2hN=+2>ulA^KPG{ZH1%NuHP}q!NJa-yT)` zg{P8MPE-3uW}Yx)?vJ28_)+H31ZcM@G--^-cWubR2_QxAs%)u4UP= zph$xl5uw#AcCxY|_hCqaHT>R_)(K4y7hvPW-M0SD5u3s8Znr&-0-k+~xPpuKBm_E3 zY*J~8F-d;`P33T;a$rf{wr71R7y#FQfUj~Mj0G!br6M|*EqY|6{GKbp%J%l!%UGf> zq{ryr6D<{APmWkk`LpdXdSDStSCdLtt0nTF*n=h(N9jItU6#}u&$9nGc{9kulH9Du z;2kAN1(=|3Xvy;tCN_3%A$SoGGBhvXj?oDZT4p>zD*q zLaw~Ld|0%f-EpcmBcAC6^v`yD)Nzmkh=fR;BUn8%G<0+lc%O`PuK0L)HP%C(ZOScI zW+hT!HGtBB*p`eN;9R(Yh}K5I4f^5_M4qq_@62%7#(P5E-R67ug!Ze6epx5Up0HElXP*L zIx6f0V6-H7U&PWZ{W~@@jYsxTX@fR=FM)0N0?4ez(9?m;4zYW;dv1c7smbIuJR({k zM)?Kpp}u;Ch8Ig*H!Y;SQ~(UPrYjKBVexGIY1sJFFA%1&CMz!=12$kSHa0f9GMB~f z9zdvf^c%gl%@C!t8Mp7z5K~d*Z}0E#=j$06WFymA9+Cx1%gEfpuo(jBWedo77DGZp zXnqPh*aI%*qhlD0WPHgeFA*F0k;oMo{kpok+JG}*C~hOO6#8`wqv4AN8srY`4cqX6 z{LxuH>mKyzf7Bj4IEm4{_3>v)L2kd|g%|hL~KKAf?sYZzvPQ!!F2ATZU z@?J7mZH?R^C4i&r%FxnEkPw_M+HjX$y9rCtb`X$d8%aq7R}atj*4CR{pQhx5gv(OI zHb`X5U#L9n0s{m2jd4dH#cvtJ|mlHL^3V{&)+M(^;*IsHR;J~O7v{} z(N%f)Y-B`LKFcc95r)AnUz&o1+ZCkeDjE9tHX)dT6jD+^Wd(H2cDi)NG8}TX@V|n%vKWFnTmgOZFJVAn)0jhOVHnNv`(5GhtFHZ%jc1ki4>@(~r|1P1ZW z$Gf&5^o?Uudd#f!7YsHUEMy!C(=95XE>6&OZ(Mp^{ABydkFkpHGKDNYK3U(Z6<(Xa zR)5dkHMhB0TIaJ@a0KGu!WMwOG3VYD?1GDR6ud9Fy71^xLm)rI_C*33KGo=b4LYS< zcq=DHWF2(V`Ig|g&?SU~zaywp3RzHKy?`b38xF@aB3j{LlAy`79{A4aB+d^l(QzsQ zI{Dhhs>4G!m2Jy_&jtAI=lc59#})1mTiLo9s{Ed``#EDgZ)!IuUu^j6+m+{Cu*DdN z@cQM^`#pt6EAA)Xb8EosZ%jaegW~8(h7k>2Wepm%ooo{oVKTxaATJw4mPC5Om4UusOo{UIS4kg1s>(0W zzjdZd1viU$|6PbF;De6t6?pJQsUb#?Ke+WxnMKFTaM;q`n)6X>T_Ytm%*oF7f+N<; z6zGZ?*uA$3_%7^aH6a-p;?3X$QEOq}k0oNkeXb!K{Qc>D8Dgw*+aY<#3kekoJU3om z=+Z*hU`jD|jkK@2;jvJ4WR6RaFj5#6yTL@kCS>TfU3l|pjWnCC}Gv08(d zyxGB-1pZrw)Fsbcs4Hu=^nzQzujc2bA{Q4H;9P8j10H%JAm`AL$9$z~C;bqKOD`zs zH48155B&II%akJ{;;7Vuw0ktQX4e3L&b@Y0|3_F-jPoB8y zmwEa#-M;w@{yJN7dwwSU5 z7y+Cb%f;dR>j_xd0_dLWIxTI=1KbSQ4WUf@tD>X?A-P8eaKipI7M<;Y)WYH&__S+~ zrt^^l0aT*YqenUR@f7gP)B?pfh8AQH7{71L8e1!c*XG;a+r!rIld4E$J5hjqX9(=} z0=e^VDMRg}D(mDNHzlwfTIe49*}`p(xgSYEGpFcK?Rs zLZcO`K+{u@%9Md4>BfNj}t+8nxmh#iEp* zQ);?zIqJQ0?zg;g3)^>I`^CLue*kTcAxFXtO_?9p*i*+2HbW;Z{)GLp-npczj=q6Q zCZ3+3CfQXW4874ANyTtRufUNdFtP9L<+TOAb@_s?j_~oS zXgUcKbkbFnTCyMs2?g2Ne%h7t6* z)+%vluFz{iW6jp{SCewpd*Se-m>%=hp?Z;vCX(Al*=_H$R+^dB@}W5jw;ivQKSO?ZBj2xXOjo#&YHr?<&X zXbSE{&rdZEDcyy}c21%);-wJ_B6TmL%M7KU~^&A25>CCFqmhq^6dD zJWsC^M235Hu1jD{nDv33NDHj)hJdh`#wGpvo1+?U{i7r}7OA03jwthP*WFzmi6kQ< zGlRmKe=w@eDUmTECUv$YXL5?VL`vM>gbfP%(%(<j*fw(CU@8`J8$|Az{qd4A}Iya|XMd{DA_hlz;>XU^?;rKvtX9_-}YOlqWLR`(tb^W}3vU_h4yQwq6Y<;Q)Wk8r*n$bQFb(udDS1 zCZMvB(8K?PlH)nE(!^5RkuF-FzX=W0=x~9~122e-sfGH2_FG?H4oGF8jC9TggyN=( zvT_UnG$vTzdlKQKJpBchQ2%3SfP{gw`0&Aq!3Sn*fbb}u!@z=-jm>abMT@M1s|DmN z89frF*;;tI*Iixd<2dkKNeF}q-`>Ocsybw`x8HtSldQ!lC!dE>?YfB1@aV&qb-8uI z={HrL3ZXnnLG)X??BdBnDWqB(OplZJUvNGqXZXC2G35ghD2MOgzn>B97ZHtK@&<}y zh2YZTBmgT=@a|jqpZ;(nM({lueF}#5>4L$=caXUUTapDZOYcR!d4ep0txhgM(%mYA zCds&h-Mt?2%!(Lf!VaM@nL0SxYze$3iP}tn0RnJ#z~K@GHfHS~r5Y>?!^33yUij0E z-mXc={M{44K6YUXZ&|`Qk;qew*>woV{xE~s1xqGAG$_qP2uQA^s0GvHRfHeU<~4GZ zw)F#o6EJZu!x$FYWkpwT+X?}7F11c_OMZ8v!Lu})xcpLwrDD0pY3Bglr=LMVLG@74 zN5Xx|&8_gEASd^)f@F_~qsxtD#Wut-E8O1=$*P92Z64J|_qo3d26*O#9P!K8UW6h0 z2trBjml)TTp9A2Egl{cb1vgPsY2Xh!3=QpTdt1)2$rQ4i8LP`az!R*gYFxjr#os-1 zkA@mXZJ6E;kyTF>^>%P_a%uwh(bOK|(%;$#dU#ZuL+syG(7)izYWk%jed-%=SUqd( zm2F8GtQ_FYrkz9IweRcgy+|kI@_BM{Qe+cQgH*iGwnM-xEy4Vrg77mLZ^{0f1gPvC zD8?_kK)Bk8e(%Bt@$k@VXlOv0YAh`14VxK7WJfu=1ZpE_Q|6m*Z)=O^Jbn6;{Z?84 zQpUC7ZGr>lJ<8Vfp>*#WVlwM%MN@&vEgeQ<5M86oov_GH^pNXt@u&Q=28s7VO`Wlh z0bv|HhifBCZ(Pj;M3bsM-wL#b30>@%zorM(mK=349^^M=i6sp&-q6twKXs6#QS!BP*A*wyxs zmKm4inYS(kRq@|c7)AjpWMDbNdHQ9L!rA9w+B3MRu@Nna6lZ5I^!4!APX)#PQ7MF0 zQN>;_a!C^CPm|cJ0y%~nnH+fX(xqj=*EREegiR8qy-iVpsxv8V`Lnc?n_!)&tJ^O! zuz%s+3&74MW?7G>_oN`~sUby093bIp?d-f<_JG^S1Tx%Gk_4SC+JNsLN5jW~e?hwG z@3A>!ucoX_iY=86hqw+*XOkL(>;?5=-JT{$ZZd!oPH!cGo+>28B17T&sdxIR{3!_O zK%Rz!#ghDSe=6X!jJOOsYSDQMd&cO(P5=VKtU!jb2djp+555#A9^@bi?$H&7?8_+a zX46^E9PdqFc(jFZA|V!75(uDh$cyo(At$$njQ=Vyl;(gqnOc+V4pMn~wKO~S?yV5C zuK(JN`%i0^K=f3c3Yk|aFs>cNkq1YOolmD%1H0Rg9Imv)61wR^`o#-`|*9`=di1d-;DQi7E@675Ce1 zB`9F|CP;7G=k-meHz_QB>T(&=#jvPBe4OO=`y#XnZNH|^0M?Jn?P~~@D-1ih45oVb z*Glnv%g}K>-%NPf*t(f}lWyO-HQxkx$vYa1!f&nX+UDF4Tf4im0RiGnN~BLl3gTFB zF=LgP=jME2neEQNx)Ns!5qt%nz2j^^-uS7-{RE*Nt%m^AomcyCs}m5~?71ZKeKM?a znwlgCL6sMhtW9dTiSNNo3;EJ2Q_#_^O~Y9m>`(Qsi^*}k9Az_JZaofe&BJ*h7^p*j zZA2+6L8osG<`i)tlpHveNCALR?lc3RI=J{*mEsqB9quoU!1y^w$lTI7MDIMK(4$aE zT3gy(1&DB?1yGwU@CBJ(=8i5W*d&mTtL4**Li*rJ`bvLA^I#ceWlk6Fa#JQ8e~H7-ieDf147mjn}&)!FXK(31s|5aya;Z+_?m);ph!wJ5Mg zE#?^;-8LrdbiTu^bj-rcY~3P~BtbD&vDCiTc&tVv=2wz8s6dt^7nQ5qRml8+^l`WM zfga23m%$66-C8#gomE)Iq+N*g0;7vMZv#>2SSZ<2h9IJo2xl!@>(tt-2+1o3~v9N~;%GM!nbbf_H)Y z;uR7)N*b}7zBEUPScUT?6{~FG?F^Jg;((gYG(d*mok~M{UXYbOAjT@m%Ug~gu@i$- zscI-0&oT;9=odDZMK=AP$;2%id{Bh z+uDGO8kWXQ)Zpp4g18;4{y`E~$i8LPAbUm4=KKTHe2qtt1W4lx_PI*vb=!}2mOerl z1UU7hhd!(b|3Z@?0Io+r{AkfJ38gEYB(C`ZW23^H_xUEo?RI-yXxlZo$8g$*v%FNh zz>Sx6Jc#G$%iGm8*@up@<5GmDRFAcCroB3lNA{xtw6PHqVmm?29R{Xh!S|eaO`G*fU}tOCRU^E4D*Y?7h)w3LZ#()6R_6m$>-8FnY^ICX2EF~+A?EA&IS7`z7mviJT_VYHcdC2=hsSZzfh|M(f=gtvx@9m5{K-5}sfF5Y7%={8A1M14jQ>7Ca#`re*lala^}_&KJ4`5!TkH+VYc~J6biv!3bKlLjpD%!l>hi4L8UJmya|9r8*eJ3P z;>MkG6~E(FE76gLYgn55uGyO71ec_7VNe4Yp0ppmh>rHiZ!76D)L_L85Yj{x(zmn4 zb3A`l!r3@ANX9hYKQBnV6?BL+nh)*8|M2qgn_gxT^(O4;C;At30`Ueude`jfG`q9U$m4%H7AGg6k-amNq$H`!^#w*^?RD}9Iv{5|-X z65H5n0|Sv20}=H&KYMS79Or9x&Rx=sbs9CK#FpnR(#25HWxt!I(s}E(=yNEa zl!4E-s}e?!Yp5y^&fw?){0}|^NZKJ-T>-dc=;`>!Zu@>-YiDFKV-RFC66Cv zh!NT4pXCiXLb)WE_rIo~MKeUWaXxQP;&>j0guLmC9XzXcpLrU>qDU-zC6k`9^m_>G zqtb;V&xw(C@m2=Ev7{uyxl7|gIRR4v;eEo-SR{}PV976$t^;vN?Fcbf3g(`#N`Bed z@-dMVYbX;rSIKpb$6=f~JKXwS7_pe?9V8_Un5as(Z{(52Xl2YiMtUPpstbZY80H-=3tzDcrnz_|hr8fD5V!*vfC z*%ubw*%y+<3+YG~)N4{ydgTuqC7w_@C(f^0apsp0GZxq^*w~@@d0*F${~f=R7t3R^ z5YX|cte#k!O^|3tTbr~ghCad~|5*~a3!#z#?Lw@wbv}bjhgo9pBeV_?2HU{{3I1QO zmyve^ar&(|441Uy&udEU9|6mqMBmE|{6&YqUVBvd$}ej<#zZIVs-!a(J^~e#zYH4k zf0l@sQ{HgoR4EHaIun^*D`!%ae8h8oyK)EsSz^Oj{%MSlNu{8*lb{`@aQwY0?@M>my zF30*34}YqF{U0gRt8&4=j0fyGk6Z*kyrlmT)mjdNQU5V0at)>ABJ&}adkA+Fj?ZqU zgIAG}S+Ph0TH(sdhHVI7`3zOd)P4O-*?X3wr^pm>F<}eI&AvAe8n=2S1nQaf|GB1u0(FCdwKJhe_|ROBrhTM7d!nsf8pR>}-ol6Mm$K1KFrMa9_)^FB2U<|3oPX85!i zOTa>IoZ4XTN%=p=$d1&A-*+dQvOL*N&Pg9D*o?)i?Lpuf4z6nG+Lfcir88L82VJcR zbcIShfw(TvCK!8&WT>6VS$h}l9uX<*A;|lbo#@mRUz)jd@!6pBM(TfLWWg_Fg5AaV z-T8w?_9xM0b{k|nugPg*0r6;9Jm=l)HegrfU_Ir={34HiO0?pmyqmIfYZ=6Vj{Fh& zS9m7M4V8VNsC?Ey0&%9wg9n9Wn{c2Y<|fFRe3PjKp8hLFJI{6MF#~g-`sYg)ng6U8 z(7BOCE4=$p=pJ_gHpchNa@vh=g!CcW1)AjlzlN+@B9)lu<$sRZHzMAFb0^kzEdNKy zwpo%ByfamU6X{M;kMZJ0as8zGzZ<>t=KLuA!K68)CD&O0MhC`@X+N9_4IzA?&2mrR zevY-{UB9jSY;TqLtj`u3bka^zX50zR-+XRPO|8esFzF62eMA+wgzX(!r0F=37?b7- z;xhCre_3~##3=;49l*JB2}D0qSsg%V3q^M~C_t_;;z}E7lEFNORWX8MPKq5>%wuT? zrBSahq@<)gzz-6STfY_ZO)%i}&`qz3O!?cH`%pK=ioDqV9j2?N$M3oj++U}K&u)NN zV-2J6le4jBvF;?~=9pe`3L`ED$2-a*;40;N5YTdHoRsS>4fM>Wzv%te^`I)^uT%lD z-*t?5FPbR{QEGT%x-rICV5`lvkgZj=@MvGcvwb*FwXOGJH=60=B-c=Zqn&{?80H>A z84Pt^7XqwFmmFbm0FESCPz&g@x1oSsXqf#KSZm5BBO?=RZE%x>jBFPu$uC?qoyA2P zC%uQW48MLZQ4&WVHneLD^uzG>q+w7yZr(0o(EY=cZwIHJ~ov?Zz-pMt4W`R5SWajXwInOcClvZEw^Q?IFg4_MGE78bn+~DV2m{nw9DAR_)fG*D)^7{nC;%95BJq`)j_?4T{ z-fLZXPU?8)Qw%KRWQJT4l^QGv~OwE_fl6VtAypf2Q!H`@XEk1#0DB*qds4ah> zKNJDObOyxh5tMCINPr7vQZML5YkMn~6;(9&wG!e7NwN z(Y@;>bLEhq_6F>MYO#ZqjMTD(w4#2M;+dNGWZg5hNzC(~XZR6ieJSq%LaMlmI(+nJ z0bA9mqp~9{pONs+1D1LYseEp!cnszIj%oRE#V!(O?ziF3F9{NAIAP%lY!0bjYbLAR zYMl%aix(!Yr@!usH2>E1L+zcwl-6%HP(v7ja#P%QK1yH}?&=r}pANJIK#reBeQNRY2S2t#<$3% z*xOetVB_Hfx~j8y))DevVT>x@FopY48>7s%CZFcDZv*f*uhFmmnnhEZGo|20^7SIn z>`5TrL6`g`f5Z+6%zthIm#G?h%A?QNI>?{0K)we-Xxyuyq|yYugACHDNkN#ZCp2jP zJ^iP9WCu;o$VxA)&y_&PS~oX<=zI@8jC5%JXT!t7d{iKC1-%_r-sVGtZBL*JZGfFf z>u5RaHKU+lty>znxd3=pgu&cKw4z>4U6A-)p9d?)7uMTE1zRs^($wz&Uoym_Ytp(J z%0wb;vbZm>w+MpjJe4Yxff@xh0wLOf>IwJ~wvb2|vBe=e0~=&-kmAFn1jSQ1M=;Xx z*ye*3A7p5Efvu-!3e2V25ax}b$CXZ0xKX_ab7JauZ=iHsu5ZI&^3O_*gb1t9FH`ei z55)Miq4Tc$X<*>~pk;{-)H4DEx+*H)s%L^zH}{-!Q;A2ODK;v-@r#qrCvKJc5+`wA zGkU(cN+PF#3I`a-6ZNLAqpmZF;zrw#!*FJ4_@v4gT4UX*5ZWF)b~X9F3Dl^92V7(?v!^ zycYm9{da)fd?5-Y6OvBX!IVb?jvVy>czkbOAs`_5Go1gf6UgjYZ0@$iM``q`Zfo(y z^Rua9W4voia&x7rUsgEq?@sXy(aVUh&@SQ=MUl!_ViHt%Fb5Kt)w0_YT_Ln%d9T9# zq3FkjXY-1_yc+$|yCk7<&my(AabXiU*0($-2+0&MKpw+3y#!`K^r8VEpa87Tzs(Va zG`5DtqxJduwl-7QAFClWSvEr>Xo-Daw?69%0+hsOAc&4b2YPORQ=^aYrl{aZdwbS5 zZ20vO1kty%mo{cn3%O)#^`@t%cj}g!T$NT_>1YuB`SWL+yW@cweoTdpw^4i_h|38+;Yfe|-c3Nlu%L;Mz*tsgZ88W5)JX!( zt$mf@Sy1_x&WEZE_1__}5OmzF=L1jgCr~p;E1Fq%>gMEYu#~y2Af0F~gGdIvhE;|S z&B4Z)uTqW#nPw>X^Q2>#HlRl4QjFn)n1su#d&eqOhD~T7(G*NA1GK7|Ide=VHNH!a z)FE)L`BEy!v|d1icGsQx+0$anB%*4x1`fB(XbI!TdGVtR!F6po$JcwtZ}L8!Cu3u$F*EuiI!5>B=s#;7QU zMJj?pJ?ITPfv;siA)TklX;dBpwTsJO#S#QbRvaR?_+Tns_d|GjpRbSn+=L&}Gjx0b zZzLW?B&tv(34u;(gWO5E7q_d#;yE0oaGyzM1i^PFogw-3DF-Nv!qKNIGcz_EuI=DA zgqWxvH(FsC6cU0aH-M5hh15|om#JFkBw(2s?%n&?2RVNqn|W9 zJp2jP&oNLHYw}Rtc_yh`5WHraou0>yMAa@$J-y#<@ezETGPy(GyuKwNK}SVJ#lpgZ zKpY+)$H#lZI*WD_G%@%6iXSKMm@LIAW^7R&a4Y1;% zDw@tZt1>X11Hc0toyjsF%fUbu*+R___W84{m#^=9Fp>CowIn`PH^2>Ufeg24c*H|X zAmAGFGa-&I)2PNPkA^6!Wxe2b@4|^P}BMp>*5k!Ce~fqE^T1Ob=or(~0m27l;fWQn_9QTCdkr9}L1-t3u%z@Y zc=Zs(G&HAAA?Ozij!htFD(G=T343+Q#4F|29$l6XC|7y>+j}9ABO;HI@nKgD!BncI zUCDP5jSIy{9CsPPCQ1Z-*7u~}FY7Q7DK$it6FK-3joU&T%5-=L@n`OJC8d5LCTZ*8 z>3p@8&s1SL(p_55xRjJA7+!P>#9r`qr7bKhR^-N>dgS|%=Uq`Xi0?5LlaZF@_V}Y8 z*Jbs$Qb2FR=C7!!A(1kxSE_=E$xW}+PPhrmz2peR7;Rg<+<#;E^hC@Mh0hkgx z=7)m<<}t;~mrXrGPMm=VEI~X#7eDtvn_p9%BScIhpLok$Q#6G5e}&-F2g49izw7zw$;$ zwkJk~S8Ybpsy3ROF<;`7kbf?Ft4hx#)W1peiP1X5ym)_VEDm2(sIK1?@vi?!d>+wt za5sqB?ZOkb#^}w5ho1KMNY@*&Fj#e*XSV9L2P1 z{l>>xBh5ybq5*D1xnuk71B;How#o&Z&AM(JT5jJ!IF;R<(U3m88_&G_TPeMg73)fI z(~UK`EZxG*OFz&P>VBt41kS(+*4iJ*$;on%aWB$+z3wo65s2SSlgMZ?`eVX9;$zSB;=oS@Hmtts3_tN$u8J>`Gk?@S zEh_B&!KP&mSLDX7pByfOnE?gnGlYYK1IWjoB_>iWxCp7JsxnYSnm>Mg`K=;WnE5B} zFPzu%hE^aLX`Pmq_H9}k(F@tXe;7z#%x!E$LrWv9Lv0YeJ;tYV>N!7Wqg~L=NUrDN z_{yQNfW~?{WH79r9r;9qg-CCR;=-(&H%7|Cg@BZ>{~K>C*`tp|eL`!k-sx>YQ%Pn9 zqY}$e=igQu3}Y9V84gBEw=F(;`CRJHXiPDQA0^Dq%S_VdV9J(IGERkfH~9= z0%(T4X^TIG;Erk)tT{dr`P9|raJ1~Xusp1T$D2V#;ny)$g@0R1i|f1p=LB3EEPqyB zJQy`v^`o~p3SybFV6^dXC^^Im86hRZp|7v62gK3K*XiiE(1T8f^72?<-W*49mp8ZE zjvSHEy?)L7?ly70%X?Q?;?KO5t#RS=NnFaE^y)s%`&!JXsBqMvNcM#FpYY?h)qLV2fIM) zQ{MA1L3X{e?tC^gs*aHmS8=n+u%`SuisEu}?ixE*uTuvnFEl6$i;IMFvib#^zhC&g zMdyLR0z;ETEx)xwQgA~&r=i&rr`SuRLlA?T76{{>(7HXmvG{W}vW%|CLw@_M4mGCh z51)`ibBm9KLFVxd9yVjX5hda-FJFP*zS<=jN@$batpu}ff-FrXQ?o*`f-*PtYTjfdGkGmr&bmGPK%(o><4~& z>{ggL1@QP|KJI~n#a_yemj~3t2dnNaPWrH_Ozhs|Td)X!mc>M*<`_2eZt{npSo@pQ zTv{KdEJ4)$TxC=_=?htr$BvW!Er9nxTTKjMOJEauU;T5;h@+=%aF7%%p=Rh2-6?Ew zcIo#RBCW?C)9Eg1mtZQP2J5k3m5*r?a9?%Sr7UC9t6p8k3VIwo$?nJ%-Z}rwdYp~j ze5*lD8_ ztH?Q^A}3-GozL&WANye6{7pvfFRfMbF;Dm^Ke^0Ehk2Jj=jZ0U`&y0JBh&0*>?q{;*ua4EIq*Zt zdp=F4Aa?QwU7}C=*xK0bJ9p@~N4@Ef`knUTql%`}-?sO)w4C~Otw$8vXUD6^Y-5}ixh=eqPv=Y+& zo9Djqy?=jajC-%+Qs?Zw_F8j3^NEm`Ki(4DSzg{h#f8DV@6D7R>6Xb`RqcR@Z`@4ZI{;cAlOOfIfO{h>#2kz-ee62BHlgKSVL$` z^;iChKiV0poOVr!NzW5`D*mWo=vUFKP$FT7eyp*R%jP4JjCmB)#ez?$2L3shjnc)2 z?ji+(GZknRv$qoY3)W`lGaCuSq6aq?(74;w+IMs-nszN`TMY8m8v0lMm4R9?54Jul zNFU$_0jtP&lZPdW%F6T4#_jFgzU0RXH#P`m`UGv%y>GriC9zRhocP*Lcst;HF4uOt zrAP4ZpFfQd4p0(RR>rArSU&*$Ca`5bi2A&UjV0^>M587n!!QYMpZa(Wuqb@yVM_8M z2#7plAS!u>^uveU7i#<9xHw{+#BRV>2`MSlFinD7UH^rrPM_}n3S|f*?D_tkt6nzd zUewZ!V6ax2gyp2Twa|K<2ik-|Wa68YRqyFq&>A0;Npfh zGzfvvKTnMrEQKq883>X@BNgULenv)XJEftuiT2bJkC~#tvfD?cu2dySdje(OZT@WP z-RAk20qs}yKVKa_&2koz!QRl<(saA0{(xI9gL-1PG>D$)^#}H4RZaBbMo);LIs$vw z;dP`2FO}O;{<^tYRG){Z%AJ@v?h?5uraC%urs*k)Tq$fe=yGmPwie+eGP0NzC%c|- z2kxZrAG&{W9OK1MaHXXqjTFT9Nop-}t1rR{aCto2VN88SUQMy?M!bEvK36=ioxY+f zuQVjv6T;aqeUxuG)unnN14n+wL@TrPqx{BS3=9R->Ee4Ii6lDI*+2J+K58r|ca}dD zQ{fn8L&V(`=3+0^`|Zx7jcOa?(I-Di?W=2EG4QN-{21tQ{2&oF^@r_1kx?;ORc!aN z?o2p_!S=&J`R$;fUu)x;`?HrW?x%`U2j4`{qCeV3ZC3$fFdJBzWTd2|T9lvRIwO<2 z!Dq~%HIQnjc|ZCD?o>8HS#vEvz7jFi(Aa2%^jU6l1j5q{*k{w=;Ny40Ov(lHnGSMt z{aml5T}3%KhCa0`arPBrmjCSOvHA<07b#LXi<}iI!qnC_%k8~nc5=Y(V!IM74l1N^ zrxgG(Ai$*pcHK7$yoeUm5EBcKDU=ece$dA(j_~+w=QodK)TLsD7Pn4n_t6Q{{ z&@UL9PL1yAU`Rnq=xE9$n-1wiaweSt$$~W&ox68?)YRKjQ>ZIsFxyfIx$o1_<@EUJ z-9d}#{rYs~_(~7QVh<~lg4~c2Bh*yu@o&9EHM_@HDS_~oFlyp952=F=mmA7%ujV-3 znd-)T{4}AscI&bDspZtNWg<@CaEbdRZQ|q7;-+h=SqNSK3N_nt>-D8mwN`O}#?vz32@J#0lMiL6ftK%j0mqIJ-Qy z_`Bs56+%s5{4o!_Qd~1#{^q>A-(Z;{6F4_~(k(b>bX=&&px+2U_idurU7YOfe-)+D z!LZH{T#HwbGHA!2<=Kxihg+qw?tsqJFf;AZg8kxtO+`~kSrF||BU`Hp9z;q9!35AY zVMj>E+$Bvta7&xSS5>Bm;`<|=b8E}kT* zIkdfb_3G)3-9YnuC2-#v5#GEX_W>2cM#%6cI_bN(+zl2p$G&wTSzPus0pBL*+;WJn zB)SOWi$MIpke!#Tc>V&UEk;4oY@~6pLZR@X;pE)WtuG?4ghho#+c!8ET3E>J-q=`b zr$egd85R+-Ee!Te8BU^CUP8FIxatTzTzvc$fkZgLc(5g6!CAcTCyS2enCE?KbEg9X zv}^mttzt9#zfBh{5K7?3U%L-f+o+@KhV&B!{dy4rH|J)WtJ=eK2njrop`_6#-m=Hi zzI|E{UhGQ2W00Wkvgl_Ba99DNZKBrwPdRw7R+JSF{~FQBUeR>te_(J)r7FLrSy~}B`JzZk3jARf zt&Jut+e;r35<(6BR30nHM}F)_c6Dv75gyGeHI~&qZ!hqu>j3kq;qf{{`TSA2Y*jXl zkq?%-*%CDM38|@#PfN9oi^|lqRg>Yjo;;IxV9t+}py>n0{1Lccg{s6vbqOlXGDMv$+-K8x-grItDqi_y$76eJ91Lr2FFdy3+bZD8P+n3R;M z(#o0TKb-oaRr6r+G!5~wHfP{81<^6nLik~@ZnV_@e8sk#XG28p-z_FB7XXpF^A zvk(7h^spy`;IS+~hvZOEQK5fuSsS8?gQAB8uyHRi?fd6y=>Nt1KDwkXHZ?*XC;aTy z;a~S2$71`L|6JZHA*c#SBN=hYO&G{y<)r$ZwgSyRgAG;93ha#%1CCU`8equbuh!j#)eH>q{QUgRpt61ob{Q+%OH1$n z!8iBzocIU5BKd8Vz9~V>SA`P%H1DnCn!aKGH^JMgGyDtG&Rk3PIV@Z*T0o&|LPnOf zKrJ44cW8MJqqnzr@-N4RrUaJDjYZTpqI}}w52&vSst-C^#D3O$Zs1n@2~eF*L_tI} z3?-60|61=guztOxDNN6h+g|B#N0k(B2VgQcSrq}{fIJ%j@=bup2{-IId%*A(L5|9kAu>l;KtP~PN1QfnXK}H-8lcCxm-v(z z4F=Ib=gtOee}h5|4i#nP4@%5@W2+U_)#)HE^q=u(C#b6H`ehqv>lpi*{Nh-NYu?W( z&j;4AD?$d7EnKofkd008*;NxnsLMhb2R;$8nVB)LdQ#?~Pvk@7E;v&GbV$ms_u$rR z>7R8@#%Vb@bYGMU(DF4FDlG@MfSyIt)6?ULFwtmpeHs#0p6&BLTmTx`+|#2p%S?z# zinBEiz_mdwyft%IZIK`tSBFmm>lcc*J`G{>^5*8I7ib-rT8yrP5LYo24bg`9+X6tH zU4rqq6H|UGukzdLQ(mWe|6x$Dl|WA1Pp4lU;h~7xtPc9wN7&)2FCAs9xTtJ z=d%7;8RB?!?%}`u4Oz(GTC8sD(p}gz}@Cb6elz?J&aR z>21T^+(l`hLNOFKIRupFSeM+&mOf*7Pg zL{N~8?_&l+680!8TpCv67^@H&(E9Huo4!avJ1=8y5yWbp=pIA-r0<}qL`1czu$CP-IdR1{$v zW=Z|0M!1F>#gy3|0)VHJ`||kNEdL_fk{$F?f;Cp2vqdJSmO`B+-qhGQ|7*`X4V(4| z--Sr>0-F}ZD1YiI(6Fk%o5#xTZPxY-Mfi>6}wjeGMmIjsQ|a zUrUH}128FME+3fPm^wNd6`)zK{gzl+M@>f4OzS9`f9UO$!V2;tzb<(q=R>S zO3HUQ_V8e%lUe;^y1TRUh;s77>?$rJFmJ)8?WzNZm}@E_*9S1g;_}$k_zQIADuA=t zwM%qpFM!Pepo&;GKnY~Q`k-AZ+%U4Edo7LnJKpG1;yQEisHrIkb4_gc!z5`tA4Z}E zKhypILw;M5QiNJM67aPtbB!R7))#HwIj&l zn|G9aN^Ql7M=<3)UD3$pbtB0w+wG=FcDGmDQnm;sI@e7@!<655mGGEH(WA ziCGvLa%?c*sN+52gNqdos%iCcyP9Xm_w(a1eEg7pk)5-%cfnACN|R-r#LaEL&dtq@ zQ5=NQZz_5j!agA$#*dy`UOVDsUGOU$Gv&uH*|Vp zYBMcjtcj5at20Y?#*u$$TTE0tQvkhiPoPPs!DIXE;3{Rg=L%0y@B=!VBvyXBSW{){ z{-X?YbGg*{FFv7iir-107(oMD{_>idZ~)Q)Ty?%UahYxMB8XQzIXM~IXe(r9?(8Li@eemyG+K>8szTsH^*dfX#Q7mywY{=Cv`p;wF~Kc>>E6fq*@OEjl{dF(Enm zWTd@4dj%?&To@FyBU1z9o;~}1J48YP4w@Hm(D-NyL9sOk9ckJoz5LI z)h+UhTv)eRNN~a%z{-9O>g^=}H&m!ay~_(fdg9!8p$`+zXira1aGR1f(?bdT@>Era z4V?y^z_rgI{r5MUUxxsSC4uep2B_-!JP)yMyeI)Vb}|?^?0Pr9N1Eutihs;J4!_db z8Gex}kj?JE0=o_77^$G*-~u?h=t!pXC1Ycv`vnRfv{T(2^zYCzCN78IhKn@g& zxcdk+w3L9vOw~Z}jxAt$F(BuU!Q54PG!!HO%60?-sLWk3hHT13L4k9+vbI(XEJduS zy}Z04$+>doKmc?TEbyPnM>W>G3k~h8gngz-K7X8a_3DLIaSa8iz}28gDS@lE41W@t zw+L?Q21s624zO!ZKo&X#x<^)ZHMPi=?^Qg(bK}CF+SKR$wdus@@dVu*v3N9Pd}VFTyfKke%31a>uXQB_&~$19S-H`}gsQ$` z#i%MQo~rDM+GA-md5w)$9v;vdy@tjb2|En`)z{G2`nFgs)`ROjt)rJ^oHW#&#@-#)z>$Ujp^l*gL*HN)-W~J>4+YShnE}oUQ92!8~x7K7VG+G z{@@xgItT%v2dyS5fa}kmJ%bUP903ZAkdP1(JsUT9DCq0$Z2~$Y5SY=Ya9a-WO7^`d zvSNeNGXf^@#Xpu->`Px_5|NPD!5}N<e#|H?-YNzI z3BQ8ITKGwhR8XX~f#kUq#?9HxERr8&!Um0#w3yHsjoSr`OHK4d(saP7Y8e6#j3H6> zhZqE;FK?#X)tsHdLc9$S12F`z2Fk;)fD(}ji-_o#>Q*K8S#TpH%*=8?LZsX3 z>*wbb6&-y~b8ZJif{XU47E4+KsgcDhbHbA~m0?XM+8h1(=fT1yUgTHaRrTgBTus9C z^uO-qXCa`n$gboHOX_>IOW5X90Q$6)f7~!o6bRAh2*`0p~jc z|G;EQ{UsJ{0Ne;=AdgUj_eyG*Fb13CtHOeUwWLSB2W?1@lZXhcZ-o^Z!bfjIsjuy=Tw!VNXfR9pM z%Wr&V0x`g9^nr=WK0({FSpgx8>K!)fqN~+|bw^%bUoV-KS@^d9`mgWO(e^IrOkApc zii*!-lcH)rJnHHe>$)aw^*Y=8`BCToYlO*o^N*kUNd(4z z1=g<|e6@&G2fm2SQQr;1t%+_on`*sUDAT#cQjnKtO1y6rR>fizwoi@F)cxnC_#pD? zXAN(tvQyhTduEK3Uf68ZCz#1+E4N7|w2QZ+jwpR*8*2 zk2pCwDeuL+gyshsFaw)rF1X=Q7M*83m6v}5ZWM;C7VTf3KXxIqh;S#bq?R!0YY*$^ z*=6bs{v_-3$~XQcNz@Hv4!wRjTDP{=*MGJ&)~ z2e(A${C*jDDRqMGBWn3oynI4&f%Sd{wCWTqo114`suU$4B0)eQ>jLjTH^5)-Z*^6b zlWyGB6Dh0>ZgAvEWE(UC!pZmeQB80!XwZX@UeM9kBi2pxdV>JCrG6O}W-^*5M-N5D zaejQD5_42RJ|vw_eh_l|_%{rj_zfB=>O;G+Pv660DS9snC0~GL;AVRz8*Je&xsvs$ z2vvC%VD)Xi*D6Nl!KK}jod49>fZJ`hHw3CaJvg44!Ns~8*v-k%gN)72UeM6yO>?~% zhf!G&Qd4veoxM3cLeub^I4*%}UkSt)AXDdNj2{q<+lFt#I{pLfP5sFuNL7~O>zRbS zMqEzLGMk{F>qzAM5i=Ni+I%1&$LZk1BJ4}|pJPU+thP1CiZTQ%*O!MRuyM>{><7ex)x!T}QI78q5tp-w}3a3Iw_N zJ%pW}cdb5<%v^RCAH)1GP=EX;uyqzL!2;Lv^2mk6L}OZ)IsJd(hciU>})-EFf5jUIbVj|Y;bw61L}+8$2K-h3@RT=#9eWMv?s8N6-$+m`o6@i96T&C{dsX)U_p_u`WVkoyvp?=!&E z^FM&!KM3WBC*0Af6!3=3ZG~5EZte=m<0E}InadROQR>mM0(4h!5U9_l`LN=Ln0Pl^ zu*0N##nc3I zTV2v&RGj#=*?jY|tpB}V*xgoJFY&2tb9q#MThoW`lIQkjxi}+aZm_{rJ3&6P_@O3p zvaUu#HtEnnQmFCfJx-@LWvA^|F3OoxZlKNl1Gmn4bKnpWBMnm4er3Pfp?XlETW4CP zGCXATtU*Qn2XWU@4mcfbfzxUAj}3Qj^Jds8V^BoFp{1qCeSkg|AA_;k|a8bo|0q?8Gh&u21b@%VF?Kd25h8GU_6*93bY<4a8xFRdE~|` zyAGhkEni;j53_^&EkA5U)%x%cWd{cbwgD@d=rk~8%9N&S2bRD-VcSGyfma~7EV#i2 zI_(ORCnK;G`d~1jspC*rrOI>wR>@u9P>nEAVSl-B``*1TAK{wBK7DXi^Ji=6_wO)R z*r*a3eCN{0*fg-lN1@G|Xa(~1b=|zL{UlIUPhj{ARwW@vP&l^$MuAOh2*K2W$bdEm zD7N>IZZU!}y||#|udQll4u)AkGj zt|Sj*-o8z{OGMOh7aSa^5aJZy!(&juC9<#G5w2sYPM zUF+Zf*8RD3(L$hqZ6YDJw~LO}=XfrJ)DU&nnNFB2N%`V~W^z)~cXCEdS)pN6Exyo! zQFvUR122~Zz)@OoECaHqZjBrpDY6^}xD>V@OjX|+HFnVtOg`W1w$ibNrCAdPJ|&d= zQbvqyp4cwz{B#(vQpXG=#(dc-YD~RW4B6x&iICb2QJ7Si)o^uO#KVtxI)oBx)ZIGP39vDx&OHUWgP%FYj$TKTooi2gl>6|zm zz%Ugn0jJYNf5|>U`HhL9bg+_nH@tQq&XFXwv#gKH>hkKdb93t0w4N}4`er{pIWRDw z$&n-lZr%CROPaSbWaivHE(nE^t=Z$4;y539ROO?D$H}b8|ih#l5C}=rIS%qBBUV8 zxqCBfIv6No1^8feH3TI^r=1A3`LQ-j!X?}QQ`!G0c-3J~*M_5@iI16iqv04k!qgMC zXYYTo7exYzJ|I_v#TE_*6+Ws=wNyncTV<@hy!d(MH2RZS2~Wvaep6pmB83Vf{R)nz zd=49(F9$a244Nfx)F!%qntg6!$#MhTndfn+f_2R1=zHpylsuv3v$hM3UiDvlPD`yy zh5s4O>SgIWQ!3c=pi~RLF`smE-up^xsAspt?1=Gep>vD7jp|d&3qB{%-?l>=x6b49 z&*BtRxv*11pf7@vkr4)?$krSVdLOpI?cU5PX~e~$;|$LPDL-x4Ly5<`7l#fM-Pnj< z1cxk^u073POF}b+itmQaiPWym=p+tVeJ-oYzMxWWF%nNDTsj23Et__s#sD}#h&zI- z34?$@5+pM6KYC`nC=X}n=L4Pe^rk;Usc8bG4Deyh zb^s^|)ol65&j=OcA(gOu-xrUqM5^IgbWc*$gOkc?a#}L9)EA)mky}nZ>ju7U@CCQH_ALBxC@85eeCCDRmgsg||rU9dCw$*h-e(g;!*!W!rz~Hj@Q0q`ev@Y|>1WM*!Mb&uq9Ic3F*35dK`^9}A@4j6p+HAwvQH*qADh}P=b zn!uePt%eV7&;m?>&6^t-2S(!D0LX^=^z3X1tXK7o3`J1dV6k?YJX{2Mh;IBSixg9S z^(UAD+ClOxQ(XTQcW`4R4=XDx1SUEe+1YJAL%e0mf0E!oiA`&SRE~uKr}+zfn14wg zi7X=E9@zoR%6}_xEbu>*pVa;_bf3;W?#R8zNI6^Uv-o4dN50p2J- z7!;F(fp0>~$?2p7Yq+w=09xz!Z{H45!~IwX*cZnXgs#14CxtB5^c<*I9F&+|WD-_W zo~-dhcOQH@FfvH{ku^v~;o&%Z)K$NJ^GgP%&MJwpWS@0xWZ^# zJzO>wTqC42uLES|FEWn8+gsSG_S0!e2rUZ4+gE=0Wip5dx-0jR#uUA+qPbVfT#YK2y2e{t1hCYNyJ3952IBvG# zIjyY9J9hW%meC)cX44Lx{qqvRrlmqhZRZA0z$E|-;e%@(kJ;5cE%*@t?EjfqWVJa1 z%rI7@VU`6f0A%6uMCmrEc{(`9`E(8s@AMTp1uik>t=<>lBml-KQ{S-cGe?}8mtPG1 z_E(jTVZXa!o&hA+M__DQbqT^#?%}Ur{YlF|hy~yzT2_ECuK*5`d4Ra(xF@EnZGT(= z9@msuc111D#YgRfj*fJ;eJ2z8{zBvVnW@7bbgQW!!BlhNH+1ZwfL_&u{NYRk6m<1( zhHGrTFM&pG<_MC=I_`pEDql=|xKZu99M%Td4SZ2nQ3=vfQ>%Y5-~2O?4Zgkc z_-eJw&V)8w+!qyHDgEH!Uwfa)Zj(5c6uMeQs+-YKeyfbA#lwOJ20!ZKZtp=;Z&8cp zQ1OZ1HKRze(2#8WsIU^oX#tD?eQVt|*iz^5I&W04QQllcl$y>_mxz!3@E5c#}KRs*VN)?QZj2uJq)jvZ?$&Rod z=UTgQJIgAoZw$!HSrdEvw~%oQmxqpyPBQKNdu|Q}1}k;L3@F`nZ5$jPZFdrgS2Kjs zKve+u-5olII}}l?onU5Xt$o-d+|tq#1e5AJd?sy(5czyb$Odv;_!0%?MWZIZcwk}O zPmn)!^Y_0Xs?eE@P%9d@;Vl3*g&1p@!5t|NAh{dT<%&7{haqxetyU1MIrJ8bz3k2Y zf}(juvFn)KAwI&1|056BN#V4$^|-^XH;5=QlzIz#%h1qVI+?jYDgXH={8y(pmi#2` zDXzzcK7AOuhyIJklm8`-C=Z>U2^BlH>TfW6&@Zrp8G&->>=s+l6O0L$|FBQ~!!X%j z5jGa6=a7WL0r`rSiNFQA)PKFA@W{%MbQ9!@;tq!ibkhHM@p2oqE&VsY#m2&Do$Y^r zI_UneW;qtE!SsKB+1s|6LpN-T?)U$GcYSa-Jgdmp_r8a1Tk6sO&6M%x^O>uB3ViVD zKV6c>R_6cpR|T(XnzeMp(w_AF*U!KYIh+4~?%I6@fAdJV3^r{kcMh<7MgpBlKMmqC^H-u-UFUU|DR@_Gl|LS9Sn zahF}^mnaHtp=dU8cVFnUql}cZD%cZvt^a(o$P+!1I4f0lp$ z^78Wj#pNYgL`1|J-@z<_gRxDW@n5^oXFBLYMZ(UEu)G8uV$~()Sw<_A z0)@0}v{mzLxTgR74;SG0Mref4pbdx(o=8ZvnF2F9Eus;5`QdZM2X|LK7tz#!B?MM_s-N`^F17d=HoAX+lXoV#%{xk{6WU8@_gSN-1HTR#&9oy?fZb9?VyM z2m9VcditH&$lv(3%Kv0}8P~3t<%K7Y+W>}01ZHD*Ee!8PKvgz;etKH-DW-Q};kvxF z^}20f2DBj<+OwpDgwCwMF-CqNgv-d-c;Os27j&2^9R@I-NVqD*P_Df z6olmD;Uf@h*7}PreExR?S|;(jmd_{W=P?l6Kv3q+K@HzX40^j?@N1~G{zaU_mkOPl z2A~Sx&JgwxroMf9T$&?EU&DWBemckR$xdq&I2PvAhO?2(r~cDA)h1)Jt< zplaUw___GS)-fMW#=Hr72X1%DM~^bX1qb>tWwH)6JFlfi)mziY#PfwVUnH#`>PWpD zI&@9^1@j0P>&L-dW{^-)%*Dgw_W0x>3(>lghSS+z*-0&3d(_H z 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

c61 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 literal 131741 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�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 Do1G)5 diff --git a/release/datafiles/prvicons b/release/datafiles/prvicons index 5863afefbdcbe928a539debbe7e608e58aaf249b..2f7151722097f0ed9874505d84f284064a8fe1ed 100644 GIT binary patch literal 12878 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 literal 9534 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 diff --git a/source/blender/editors/datafiles/blenderbuttons.c b/source/blender/editors/datafiles/blenderbuttons.c index f998fde739c..c57a0f0feca 100644 --- a/source/blender/editors/datafiles/blenderbuttons.c +++ b/source/blender/editors/datafiles/blenderbuttons.c @@ -1,4123 +1,4476 @@ /* DataToC output of file */ -int datatoc_blenderbuttons_size= 131741; +int datatoc_blenderbuttons_size= 143029; 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, 0, 8, 6, 0, 0, 0, - 94,187, 18, 70, 0, 0, 1, 57,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,173,145,177, 74,195, 80, 20,134,191, 27, 69,197,161, 86, 8,226,224,112, 39, 81, 80,108,213,193,140, 73, 91, -138, 32, 88,171, 67,146,173, 73, 67,149,210, 36,220,220,170,125, 8, 71,183, 14, 46,238, 62,129,147,163,224,160,248, 4,190,129, -226,212,193, 33, 72,112, 18,193,111,250,206,207,225,112,224, 7,163, 98,215,157,134, 81,134, 65,172, 85,187,233, 72,215,243,229, -236, 19, 51, 76, 1, 64, 39,204, 82,187,213, 58, 0,136,147, 56,226, 39, 2, 62, 95, 17, 0,207,155,118,221,105,240, 55,230,195, - 84,105, 96, 2,108,119,163, 44, 4, 81, 1,250, 23, 58,213, 32,198,128, 25,244, 83, 13,226, 14, 48,213, 73,187, 6,226, 1, 40, -245,114,127, 1, 74, 65,238,111, 64, 73,185,158, 15,226, 3, 48,123,174,231,131, 49, 7,152, 65,238, 43,128,169,163, 75, 13, 80, - 75,210,145, 58,235,157,106, 89,181, 44, 75,218,221, 36,136,228,241, 40,211,209, 32,147,251,113,152,168, 52, 81, 29, 29,117,129, -252, 63, 0, 22,243,197,118,211,145,107, 85,203,218, 91,231,159,113, 61, 95,230,246,126,132, 0,196,210, 99,145, 21,132, 67,117, -254,221,133,177,243,251, 92,220, 24, 47,195,225, 45, 76, 79,138,108,247, 10,110, 54, 96,225,186,200, 86,171, 80,222,130,251,241, - 23,194,179, 79,254, 28, 9,179, 39, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160,189,167,147, 0, 0, 0, 9,112, - 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 0, 7,116, 73, 77, 69, 7,217, 4, 20, 16, 14, 38,131, -182,138, 76, 0, 0, 32, 0, 73, 68, 65, 84,120,218,236, 93,119,120, 84, 85,226, 61,247,181,201,180,132, 20,146, 64, 40, 65,138, - 72, 9, 93,138, 32, 29,130, 16, 84, 64, 84,196, 31,224,234,162,171,162,226,170, 65, 69,176,145,192, 42, 32,184,148,197, 93, 68, - 41, 10, 22, 52, 40, 44, 69,138, 52, 33,184, 2, 34,132, 22, 4, 66, 73, 34,144, 76, 50,153,246,230,254,254,200,188,231,100,152, -242, 6, 38, 8,120,207,247,205, 55, 51,111,222, 59,115,251, 61,247,220,251,238, 35,148, 82, 84, 23, 8, 33,105,148,210,125,140, -147,113, 50, 78,198,201, 56, 25, 39,227,100,156,127, 38,112, 87,144,168, 17, 87,100,132, 16,234,121,245,184,222, 57,171, 49,238, - 52,130,156, 61, 60,156,147,111,144,112,246,184, 94, 57,149,248, 70,146,215, 59, 13, 35,149,158, 94,225,164,145, 14,103,117,113, - 70,186, 94, 70,178,140,250,201,247,201, 55, 72, 56,123, 92,111,156,190,229, 39, 18,188,254,202,228,213,166,167,159,112,210, 72, -135,179,186, 56, 35,221, 95, 70,170,140, 6,201,251,136,245, 77,215, 51,132, 63, 90, 96, 0, 0,165,148,120,241,147,235,149,211, - 59, 29, 20,254, 72,134, 53,130,216, 24,105, 78,159,244,140, 20, 38, 83, 74, 9, 33,100, 19,128, 30,145,140,123, 36,242,221, 39, -174, 17,225,173, 78,113, 21,201,114, 95,221,156,145,170, 75,190,156,145, 40,247,254,242,189, 26,243, 40, 82,225,140, 72, 93,170, -142, 50,239,167,252, 92, 53,175, 47,103, 36,234,146, 47,103, 36,202,253,181,224,140, 68, 93,242,199, 25,137,114, 31, 40,239,153, -131,117,109,132,128,111,197,238,121, 61, 11,161,106,118,177,122,220, 8,156, 17,206,163,201, 30,206, 72,142,102,122, 70, 42,143, -124,203, 78, 36, 70, 93,222,156,145, 42,155,126,194,121,213,249,228,143,243,106,195, 27, 32,156, 17,143,251,213,150,251,107,197, - 25,225, 60,138, 72, 93,242,225,236, 25,225, 65, 64,207, 72,214, 37,111,206, 72,213, 37, 63,225,188,234,124,242,199,121,181,225, - 13, 16,206,136,199, 61,130,142,104,196,121,111, 58, 7,171, 58,197, 85,117,136, 55,101,148, 20,233,142, 44,146, 34,171,186,156, -182, 72,185, 56,126,120, 55, 69,144,110, 99,164,195,233, 9, 31,169, 14, 33, 76, 41,157, 76, 8,153,116, 61, 87,104, 86,151, 88, - 93,186,222,234,146,191,114,115,181,117,169,186, 6,207,222,156,145, 18, 66,126,226,126, 85,117,201,247,218, 72,212,165, 16,156, -164, 58,226, 31,233,250,116, 61,130,187, 94, 2, 82, 13,235,123,104,117,184, 98,213, 24,239, 72,134,179,231,141, 16,247,234, 8, - 39, 33,100,114, 53,197,253, 70, 73, 83, 86,151, 88, 93,186,238,234,146, 79,153,236, 25, 41,103, 40,210, 3, 41, 95,206, 72,174, - 67,138,100, 25,173,238,184, 71,178, 46, 85, 71,222,223, 40, 8,219,193,170,174,209,241,141,192, 89, 29,220,213, 20,247, 77,213, - 49, 58,168,134,117, 93, 17, 15, 39,165,116, 50, 34, 56,229,168,196, 57,146, 97,173,206,105,194,234, 40,155,213, 89,222, 35,185, -206,163,154,226,126,163,228,123,196,195, 25,169,186,228, 39,207,175, 58,172,254,210, 47,210, 83,216,145, 44,155,213,201, 25, 9, -238,234, 8,103,117,229,253,141, 4, 82,157,219, 52, 48, 48, 48, 48, 48, 48, 48, 48,252, 25,225,215,193, 74, 75, 75,219,208,177, - 99,199,166, 63,254,248,163,131, 82, 10, 66, 8, 8, 33,224, 56, 14,132, 16,184,221,238, 51,187,119,239,190,131, 37, 31, 3, 3, -131,166,145, 28, 33, 28,126, 95,146,224,174, 28,204,178,209, 29, 3, 3,195, 77,220,238,249,107,227, 90,183,110,157,247,227,143, - 63,214,249,239,127,255, 11,131,193, 0,147,201, 4,147,201, 4,179,217, 12,147,201,132, 65,131, 6,157,221,178,101, 75,163,112, -255,236,150, 91,110, 57,228,114,185,106,133,165, 0, 5,161, 48, 63, 63,191, 41,165, 84,246,247,123,237,218,181, 15, 17, 66,234, -134,217,216, 23, 23, 20, 20, 52,164,148,186,174, 21,103,199,142, 29,243,101, 89, 78, 12,135, 83,167,211,157,218,182,109, 91, 83, - 86, 76,175, 13,238,184,227,142, 67, 78,167, 51,236,242, 89,167, 78,157,166,203,151, 47,247, 91, 62, 59,117,234,116,220,237,118, - 39,104, 44, 67, 0, 0,142,227,142,239,220,185,179, 77, 32, 1,210,174, 93,187,176,203, 39,128,194,220,220,220, 6,129,126,108, -211,166,205, 33,158,231, 35,202,169,160,125,251,246, 98,237,218,181, 23, 0,184, 47,216,121,162, 40, 22, 95,184,112,161,225,198, -141, 27, 93,172, 52, 50, 48, 48,220,232,240,235, 96,185,221,238,211,143, 63,254,184,105,207,158, 61,129, 28,172,243, 87,242,103, -118,187,189,110,254,186,117, 16,146,147, 65,237,118,184,226,226, 64, 41,133,219,237, 6,159,151, 7,234,112, 0, 14, 7, 92,109, -218, 0, 0,156, 78, 39,218,183,111,159,148,154,154, 42, 2,144, 3,208,214, 26, 55,110, 28,162,163,163, 81, 81, 81,129,138,138, - 10,216,108, 54,216,108, 54,216,237,118,216,237,118, 56, 28, 14, 56, 28, 14, 56,157, 78,216,108, 54,236,217,179, 39, 54, 53, 53, - 85, 0, 16,168, 33,175,245,244,211, 79,195,108, 54,171,124,202,187,194,225,205,103,179,217,240,211, 79, 63, 5,229,148,101, 57, -113,211,166, 77, 48,153, 76,112,187,221,144,101, 25,178, 44,195,237,118,195,237,118, 43,233,238,125, 62,210,211,211,107,177, 34, -122,237, 96,183,219,235,110,121,251,109,240, 53,107,130, 58,157,112, 53,111,174,230,143,248,253,247,128,211, 9,234,116,194,217, -175,159, 90,110,239,190,251,238,164,162,162,162,128,229,211,229,114, 37,109,122,225, 5,112,209,209,160, 21, 21, 48, 14, 25, 2, - 84,218, 55, 40,157, 57, 19,212,233, 4,117, 56, 96,206,204, 4,165, 20, 69, 69, 69,214,180,180,180,253,168, 92,167, 64, 3, 8, -177, 90,235,215,175, 87,203, 12,165, 20,138, 22, 83,234, 41,207,243,234,235,135, 31,126,192,243,207, 63, 31, 84,220,243, 60, 95, -107,244,232,209,112, 56, 28,106,221, 81, 62, 59,157, 78,181,188,187, 92, 46, 56,157, 78,216,237,118,156, 58,117, 42,228,128, 65, - 17, 87,245,234,213, 27, 48,125,250,116,228,228,228,224,150, 91,110,129, 36, 73,106,248,148,240, 62,251,236,179,177,158, 54,137, - 9, 44, 6, 6,134,155, 83, 96,237,219,183,175, 55, 0, 12, 29, 58,116, 67, 90, 90, 90,211, 95,126,249,197,161, 52,222,158, 87, -237,135, 30,122, 40, 95,105,204, 41,165,103, 62,254,248, 99, 77, 83,134, 66,114, 50,242,227,227, 1, 0,151,114,115,149, 17, 59, -162,219,182, 85,207,113,252,242, 11, 56,142, 67, 74, 74,138, 58,170, 15, 6,179,217,140,254,253,251, 67,167,211,161,125,251,246, -144, 36, 9,162, 40, 6,124,105,129,209,104,196,235,175,191,174,184, 20, 48,233,163,240,183, 59, 59, 67, 79,128,255,252,244, 11, -108,178, 27,130, 32, 64, 16, 4,205,156, 38,147, 9,159,126,250, 41, 36, 73,242,251, 90,191,126, 61,238,185,231, 30, 72,146,132, -248,248,120,252,153, 54,100,187, 94,192,215,172,137,211,237,218, 93, 94, 62, 7, 15,190,172,124, 38, 37, 37,105, 42,159, 92,116, - 52,206,222,117, 23, 0,160, 96,243,102,232,116, 58, 72,146,132,152, 55,223, 4, 21, 69,112,146, 4,199, 99,143,193, 98,177, 88, - 71,143, 30,189,221,104, 52,174,253,237,183,223,130,114,202,178,140,157, 59,119, 66,146, 36, 68, 69, 69, 93,246,210,233,116,136, -138,138,194,178,101,203,112,242,228, 73, 77,113,183, 90,173,120,251,237,183, 65, 8,169, 82,135, 2,125,214,224,200,113, 3, 7, - 14,156, 91,183,110,221,126,211,167, 79, 55, 73,146,132, 57,115,230, 64, 16, 4, 12, 26, 52, 8,241,241,241, 88,187,118, 45, 36, - 73,194, 11, 47,188,192, 10, 31, 3, 3,195,205, 47,176,188, 26,200, 58,175,190,250,106,141,197,139, 23, 35, 42, 42, 10, 6,131, - 1, 70,163, 17, 70,163,177,202,231, 87, 94,121, 69,214,250,135,212,110,175,218,249,112, 28, 56,142, 11,120, 76, 75, 7,102,183, -219, 49,124,248,112, 0, 8, 41,174,180,138, 33,155,205, 6, 65, 16,208,168,126, 34, 94, 29,222, 1, 93,121, 10,107, 49,128,162, - 50,140,174, 45,224,127,117,111,197,236, 95,139,113,162,196, 2, 65,208,118, 51,166, 44,203, 1,197,149, 36, 73,248,248,227,143, - 49,124,248,112, 72,146,116, 89,154, 48, 92, 27, 80,167, 51,172,242,169,137,179,162, 66,177,137, 84,113,165,211,233, 0,157, 14, -156, 40,130, 72, 18, 44, 22,139,117,232,208,161,187, 12, 6,195,146,196,196,196,130, 80,162,136, 82,138,168,168,168,203, 4,150, - 78,167, 83,197,213,242,229,203,177,120,241, 98,116,234,212, 73,115,153,151, 36, 9, 79, 61,245,212,101,191,173, 92,185, 82, 21, - 88,130, 32, 64,146,164, 80,226,138, 0,224, 68, 81,188,255, 31,255,248, 7,167,156,159,144,144, 0, 81, 20,145,150,150, 6,179, -217,140,173, 91,183,170,245,130,129,129,129, 33, 8, 68, 0,109, 0, 36,162,114,198,160, 20, 64,172,215,239,133,158,247, 68,175, -239,187,252,240,220,238, 57, 71,249, 93,249,110, 7,160,243,115,188, 24,128,193,243,178, 1,216, 6,160,165,215,255, 40,215,193, -247,127, 5, 79, 99,216, 3,192, 70, 0, 61,189, 55,191,163,148,158,126,235,173,183, 76,126, 28,172, 42,211,134,148, 82,205, 83, -134,114,124,188,234, 12,212,104,223,254,247,198,253,231,159,213,142, 75,236,218, 21,196,104, 4,222,121, 71, 19,167,221,110,199, -249,243,231, 47, 27,121, 95,169,192, 34,132,192,233,116,194, 96,136,194,119,243,187,227,204, 49, 23,222,206, 57,137,149, 63, 28, -135, 32, 8,200,184,173, 9,134,185,128,236,120, 61,198,186,100, 56,220,218,214,234,186, 92, 46,191, 78,128,242, 34,132, 84,249, -204,112,237,225,106,222, 92,115,249, 36, 47,191,172,137,211, 56,100, 8,206,108,217, 2, 73,146,144,208,175, 31,224,113,173,132, - 93,187, 32, 73, 18,202,202,202,172, 15,116,236,248,253, 5,189,126,241,160, 65,131,142,175, 93,187,214, 24, 82,180, 81, 90, 69, - 76,121,187, 86,222,226, 74, 20, 69, 56,125, 68, 99, 48,129, 21,168,126, 40,229, 53, 28, 7, 11, 0,220,110, 55,253,246,219,111, - 49,103,206, 28, 36, 36, 36,160,127,255,254,168, 85,171, 22,150, 47, 95, 14, 74, 41,158,122,234, 41, 24, 12, 6, 24, 12, 6, 86, -230, 25, 24,254,164, 8,164, 65,124,208,125,194,132, 9, 29,178,179,179,167,116,233,210,101,217,182,109,219,150, 18, 66,114,188, -218,196, 12, 15, 87,142,215,247,219,125, 68,150, 8, 32,145, 16,146,163,156,239,253,221,235,120, 95, 0, 58,229,251,132, 9, 19, - 90,102,103,103, 79,201,204,204,124, 57, 43, 43, 75,154, 48, 97, 66,171,236,236,236, 41,202,255,248, 11,135,183,131,229,119, 23, -224,207, 63,255,188,183,111, 12,155, 55,111,190,161,115,231,206, 77,247,236,217,227, 45,186,106,223,126,251,237,249,148,210,144, -119, 23, 42,107,186, 2,185, 2, 28,199,129,152, 76,128,201,164, 53, 99,224,116, 58, 33, 8, 2, 56,142,195,218,181,107, 97, 48, - 24, 48,112,224,192,128, 2, 75,171, 43,166,211, 73, 16, 98, 57,252,223,244,221, 40,186, 80,174, 78, 9,174,203, 63,137, 31,244, -122,188,218,162, 53,204,150,124,148,216,236, 97, 57, 88, 58,157, 78,237,172, 36, 73,194,147, 79, 62, 9,187,221, 14,142,227,212, - 99, 30,225,202,122,156, 63,166,178,107, 42,159, 84,163,139,229,118,187,127,119,173, 36, 9,156, 36,129,120,242,185,172,172,204, - 58,100,200,144, 93, 23,244,250,197,167, 78,157,250, 1,128, 94,171,192, 82, 68,149,194,237, 79, 92, 9,130, 0,135,195,161,121, -160, 18,200, 73, 10, 87, 96,209,202, 6,197, 13,128, 54,104,208, 64,189, 38, 57, 57, 25,177,177,177,234,218, 54,189, 94, 15,131, -193,192, 28, 44, 6,134, 63, 55,180, 60,137, 32, 42, 59, 59,123,138,183,128,241, 21, 52,222,194,201, 71, 68,121,139,180,150, 33, -218,255, 28, 95,209,164,252, 47, 33, 36, 39, 43, 43, 43, 35, 68, 56, 10,125, 5,150,230,109,246,121,158,175, 51,127,254,252, 26, - 95,126,249, 37,204,102, 51, 98, 99, 99, 17, 19, 19,131,216,216, 88, 12, 27, 54, 44,228, 84,161,219,237, 14, 56,237,194,243,124, -165, 96, 51,155, 43, 59, 49,141, 29,152,195,225,128, 40,138,224, 56, 14, 79, 60,241,132,186, 46,234,106,166, 8,237,118, 59,120, -142, 7,162,110, 1,197, 78, 85, 92,169, 47,157, 14,249,245, 91,131,156, 61, 13, 65,208, 54, 67,234,118,187,213, 78, 79, 20, 69, -188,246,218,107,120,247,221,119,171,220, 64, 32,138, 34,218,182,109,139,188,188, 60, 86,229,254, 0,132, 85, 62, 5, 65,147, 88, - 87,220, 38, 73,146,192,233,116, 32, 30,129, 85, 86, 86,102, 29, 49, 98,196,247, 37, 37, 37,139,155, 54,109,122, 4,149,219, 24, -104, 18,213,132, 16,149, 83,175,215, 7, 20, 87,130, 32,104,118,176,148,122,228,141,191,254,245,175, 85,222, 1,224,169,167,158, -210, 90,143, 40, 0,136,162,136,190,125,251,162, 85,171, 86, 88,185,114, 37,220,110, 55,158,124,242, 73, 24, 12, 6,204,156, 57, - 19, 46,151, 11, 83,167, 78,101,133,143,129,225,207, 61,176, 13,165, 65,172,153,153,153, 47, 19, 66,114, 60, 78,210,254, 32, 66, -202, 31,110,247, 17,105,133, 1,218,235, 12,127, 34,203,251,179,130, 9, 19, 38,180,244, 19,142, 93,151, 9, 44, 47,245, 24,170, - 3, 58, 61,118,236, 88,147,178, 71,150, 34, 12,120,158,215,116,119, 33,119,232, 16,204,158, 5,237,246, 3, 7,126, 23, 22,221, -187,131,152, 76, 32, 70, 35,184, 85,171, 42, 59,174,216, 88,224,165,151, 66,166,154,211,233, 84, 5, 86,113,113,113, 68,214, 96, - 57,157, 78,240,146,136, 29,102, 17, 84,228,171,136, 43, 81, 20,193, 9, 34,242, 19,111, 5, 17,254, 11, 65,214,118,211,147, 34, -176,148, 23,199,113,120,246,217,103,213, 52,224, 56, 14, 93,187,118, 85,132, 44,171,113,127, 0,132, 45, 91, 96,206,200,208, 84, - 62, 73,116, 52,240,239,127,135,228, 44,155, 51, 7,209,111,191, 13, 34,138, 16,118,236,128, 78,167,131,197, 98,177,222,211,182, -237, 46, 75,108,236,226, 19, 39, 78,252, 0,128, 27, 62,124,120,141, 14, 29, 58,240, 26, 27, 35,191,211,130, 75,151, 46,173, 34, -174, 4, 65,128,203,165,173,124, 6,115,176,252,185, 89, 26,132, 37,189,251,238,187,193,243, 60,106,212,168,129,232,232,104,245, -238, 75,197,185,114,185, 92,112,185, 92,154,215, 49, 50, 48, 48,220,156,208,160, 65,108, 89, 89, 89,251,179,178,178, 84, 39,201, -215,193, 10,128, 65, 30, 49,149,168,136, 51, 84,174,165,218, 21, 36, 44, 25,129,132,151,247,177,236,236,236, 41,126,194,161, 78, - 75, 6,220,104,180, 83,167, 78, 77,189,183,105,224,121, 30,178, 44,159,249,249,231,159,175,106,131, 81,234, 53, 93,225, 45,206, - 20, 87,128,152, 76, 97, 47, 34, 86,166, 8,121,158, 87,197,203,162, 69,139, 96, 54,155, 49,102,204,152,171, 16, 88, 60,190,146, -242, 0, 73,184,204,193,226, 69, 17,191,214,168, 7, 78, 20, 33,200, 78, 77, 78, 70, 73, 73, 9, 36, 73,194,123,239,189,135, 87, - 94,121, 69, 73, 83,213, 29,241, 22, 90, 12,127, 80, 37,247,114,123, 66,149, 79,158,231,161,105,175, 76,151, 11,144, 36,192, 51, -149,103,177, 88,172, 35, 70,140,248,222, 18, 27,187,184,113,227,198,138,115,197, 25,141, 70,240, 60,175,201,193,226, 56,206,175, -184, 82,234,129, 90, 78,121, 62, 44, 7, 75,146, 36,172, 90,181, 74,173, 43,222,206, 85,184, 2,203, 59,172,155, 55,111,198,158, - 61,123,240,196, 19, 79,192, 96, 48, 96,214,172, 89,112,185, 92,120,227,141, 55, 96, 48, 24, 42,167, 79, 25, 24, 24, 24, 2, 35, - 78, 17, 56, 30,145, 84,197, 89,162,148,102,120,139,160, 64, 83,133, 30,199,105,115,136,255, 90,229, 17,102,126,161, 56,105, 62, -131,222, 28, 95,113, 38, 40,202,209,251,157,227,184, 58,243,230,205,171,177,121,243,102, 24,141, 70,117,163,209, 17, 35, 70,200, - 87,157, 68,138,192,242, 76,183,168,194,194,211,129,113, 94, 29,152,214, 69,175,138,131,229, 45,176, 38, 77,154, 4, 65, 16,176, - 96,193, 2, 0,192,223,255,254,247,176, 4,150,195,225, 0,117, 3,219,228,141, 72,153,211, 26,244, 67, 61,206,109,254, 5,162, - 40,162, 86,199,126,112,119, 24,134, 98, 93, 12, 76,212,173,121,244,125,225,194, 5, 28, 56,112, 0,132, 16,188,254,250,235, 85, -246, 0,242, 94,227, 3, 0,107,215,174, 5,254, 68,207,108,186,238, 4,150,134,242,169, 56, 73, 90, 56,137, 78, 7,222, 35,174, -134, 12, 25,178,171,164,164,100,241,137, 19, 39,118, 1, 32, 35, 71,142,172, 97, 52, 26,177,112,225, 66, 43, 0,113,197,138, 21, - 6, 45,162,197,159,184,242, 39,176,100, 89, 14,171, 30,133, 26,140, 92,137,192, 34,132, 64,150,101,213,185,114, 58,157,234,247, -168,168, 40, 86,240, 24, 24,254,228,238,149,247,123, 0, 20,250,172,115, 34, 62, 78, 83,161, 63, 97,229, 61, 29,232,245,217,233, -135,215,238, 51,117,232,123, 92,121, 47,206,202,202,250, 78,113,174,188,142, 87, 9, 71, 64, 7,139, 82,170,110, 52,170,116, 34, - 28,199, 65,150,229,243, 87,155,144,174, 54,109,224, 60,120, 16, 60,207, 67,234,217,179,114, 45,139,209, 8,110,229,202,223, 59, -174, 73,147, 64, 77, 38,208, 1, 3,180,113,122,238,206,243, 22, 88, 23, 47, 94,132, 40,138,120,235,173,183,192,113, 28,166, 78, -157,138, 58,117,234,224,204,153, 51, 88,189,122,181, 38, 78,206,205, 65, 63, 58, 30,250,177,209,224,158,104,140,150,131,199,226, - 82,105, 3,236,181,155,208,172, 44, 15,113, 27, 38,193, 33,107,159,222,112, 58,157,234,222, 69,148, 82,213,189, 82,166, 77,100, - 89, 86, 55,117,156, 54,109, 26,216,147, 68,174, 61, 28,125,250,104, 46,159,238,158,218, 30, 8,111,120,246, 89, 56, 70,143,134, -197, 98,177, 62,208,165,203,214, 18,189,254,227,230,205,155,171,107,174,140, 70, 35,244,122, 61, 81,156, 44, 45,156,202, 77, 29, -161,196,149,242, 89,107,249,244,222,134, 33, 18, 2, 75,105, 59,198,140, 25,131,218,181,107, 99,246,236,217, 85,156,171,151, 95, -126, 25, 78,167, 19, 51,103,206,100,133,143,129,129, 33, 24,118,133,113,238,237, 94, 98,105,215, 21,242,238,186,218, 0,251,109, -121,247,238,221,219, 59,208, 5,222,211,135, 74, 3, 74, 41, 61,179,103,207,158, 59,252, 52,174,105,148,210,125,222,199,100, 89, -254,125, 81,183,201, 84,233, 12, 24,141, 85, 28, 28,106, 54,131, 51,155, 1, 63,119,252,249,227, 84, 4, 22,199,113, 85, 70,223, -130, 32,224,210,165, 75, 16, 69, 17,179,103,207, 70, 76, 76, 12,108, 54, 27,180,132,211,225,112,128,231,121,148,159, 40,199,241, -137,123, 17,101, 58,130,166,253,162, 17, 45, 30, 69,147, 45, 95,194,229,178, 3, 94, 83,134, 90, 56, 27, 54,108,136,241,227,199, -171,139,147,125, 95,222,113,165,148,226,246,219,111, 15,201,121,181, 96,156, 85, 57,189,239,114, 13, 85, 62, 57,159, 60, 11, 22, - 78,229,110,193, 50,147,233,227, 19,199,142,237, 2,192,141, 28, 57, 50,198,104, 52, 98,254,252,249, 86, 0,220,155,111,190,105, -104,208,160, 1,175, 37,156, 60,207, 95, 38,174,194, 17, 88,129,234,145,239,246, 33,207, 60,243,204,101, 27,141, 6, 18, 88,129, -226,206,243, 60,106,214,172, 9,163,209, 8,151,203,165, 58, 87,122,189, 94,221, 29, 62,208, 96,130,149, 79,198,201, 56,255, 60, -156,127,144, 24,171, 54,132,189,178, 84,153, 62,220,177, 99, 7,162,163,163, 81,163, 70,141,176,166, 14,157, 78, 39, 18, 19, 19, - 65, 41,133,144,157, 13,160,242,201,175,118, 81, 84, 31,249, 33,246,238, 13, 55,199,193, 82, 94, 14,135,195, 17,114, 26,198,106, -181, 86, 89,128,174,136, 43,239,142,193, 98,177,168,155,135,106,129,194,169,184, 98, 68,166, 56,182,110,197,229,119, 19,134,177, -147,187, 44,203, 72, 74, 74,170,178,134, 71,233, 4,253,116,212, 0,155, 34,188,230,112, 58,157,136,243, 60,194, 73,204,204, 4, - 8, 1, 37, 4, 54,143,211,232,114,185, 32,118,233, 2,202,243, 40,177, 90,225,112, 56,160,215,235,131,114, 22, 23, 23, 91, 31, -124,240,193,239, 41,165, 31, 13, 30, 60, 56, 15,149, 11, 44,169,201,100,210,241, 60, 79, 1,252, 6,128,158, 63,127,190,198,185, -115,231,220, 46,151,171, 94,168,112,238,216,177, 3,199,142, 29, 67,187,118,237,212,199,215, 40, 47,229, 17, 76, 87,226, 96,249, -219,163,237, 74,119,114,247,106, 51, 80,163, 70, 13,232,116, 58,188,245,214, 91,144, 36, 9, 6, 67,229, 44,232,204,153, 51, 43, -211, 58, 12, 62, 6, 6, 6,134, 27, 1, 97, 11, 44,101,250,240,199, 31,127,116, 40,141,167,214,141, 70, 37, 73, 42,108,213,170, - 85, 88, 15, 60,150, 36,233,226,137, 19, 39, 92, 65, 84,244,217,141, 27, 55,134,245,144, 90,158,231, 67,114,238,216,177, 35, 44, - 78,142,227,130,114,138,162, 88,152,158,158, 30, 86,220,163,162,162,206,179, 34,122,237, 32,138, 98,225,160, 65,131,252,231,209, -172, 89,129,174,185,136, 32,207,206, 19, 69,241, 88,203,150, 45,127, 49,153, 76,223, 38, 36, 36,252,182,101,203,150,132,118,237, -218, 85,121,248,115,187,118,237,106,249,148, 37, 59, 2, 60,135,208,131,179, 47,190,248, 98,184,229,179, 48,196,104,244,236,217, -179,103,195,173, 71,133, 33, 27, 24, 65, 56, 59,110,220,184,186, 90,235, 58,216,115, 8, 25, 24, 24,254,172, 2, 43,216,244, 97, - 40,228,231,231, 55,136,116, 4, 78,159, 62,221,244, 70,224,220,177, 99, 71, 3, 86,220,174,111, 84, 71, 30,237,216,177, 35, 45, -210,156,185,185,185, 17, 47,159,187,119,239,110, 90, 29,105,250,217,103,159, 53,101, 37,139,129,129,225,207, 8,182, 31, 0, 3, - 3, 3, 3, 3, 3, 3, 3, 19, 88, 12, 12, 12, 12, 12, 12, 12, 12,215, 55, 8, 0,191, 83, 24,225,220, 29, 64, 8, 9,123, 26, - 36, 20, 63,227,100,156,140,147,113, 50, 78,198,201, 56,111, 62,206, 80,220,215,241,221,137,225, 9,172,234,220,107,137,221,194, -202, 56, 25, 39,227,100,156,140,147,113, 50,206, 63, 35,216, 20, 33, 3, 3, 3, 3, 3, 3, 3, 3, 19, 88, 55, 7,136,214,231, - 0, 49, 48, 48, 48, 48, 48, 48,220,112, 8,184, 77, 67,199,142, 29,243,101, 89, 14,107,223, 38, 81, 20, 11,181,222,234, 78, 8, - 17, 82, 82, 82,134, 24, 12,134, 30,162, 40,118, 1, 0,167,211,185,221,106,181,110, 42, 40, 40,248,130, 82,122, 69,251,225, 36, - 39, 39, 55,224, 56,238, 33, 66,200,112, 0,160,148, 46,119,187,221, 75,206,157, 59,151,127,189, 8, 43, 73,146, 38,222,121,231, -157,119, 18, 66, 22, 82, 74,151, 68,144,251,130,191,227,148,210,184, 43,229,172, 95,191,126,172,203,229,234, 0,160,173,231,208, -143,130, 32,236,254,245,215, 95, 47,178,234,115,115,224, 74,234, 58, 80,185,175,221,246,237,219, 27, 68,146, 83,167,211,157,218, -182,109,155,223,173, 29, 58,117,234,116,200,229,114,213,141,100, 56, 59,117,234,148,239,114,185,194, 14,103, 84, 84,212,169,173, - 91,183, 54,141, 36,231,181, 14,103, 32,116,232,208,225,115, 74,105,186,167, 77, 89,179,123,247,238,161,172,150, 48, 48, 68, 80, - 96,201,178,156,184,105,211, 38,152, 76, 38,165,147,134, 44,203,234, 46,209,110,183, 91,125,134,158,178,195,117,255,254,253, 53, - 53, 0,245,234,213,107,209,180,105,211,197, 79, 61,245, 84,189,193,131, 7,235,146,147,147, 65, 8,193,217,179,103, 27,231,228, -228, 60, 48,123,246,236,151,235,213,171, 55,242,228,201,147, 63,107,225, 75, 76, 76, 52, 73,146,116, 47,165,116,100,235,214,173, -239,120,225,133, 23, 72,215,174, 93, 33,203, 50, 54,108,216, 48, 97,250,244,233,153, 41, 41, 41,219, 8, 33,139, 29, 14,199,151, -133,133,133,101,127, 96,154,247, 30, 55,110,220, 3,127,251,219,223,106, 62,250,232,163,255, 7, 96, 73, 4,185,117, 17, 20,107, - 66,237,218,181,199, 3,200,244,229,117,185, 92,246,148,148,148,236, 51,103,206, 76,191, 82, 33,204,112,253,192,187,174, 43,207, -196,116,185, 92,106,221,150,101, 89,125,202,130, 98,188, 82, 74,209,183,111,223,196,112, 56,149,118, 67,225, 5, 0,183,219,237, -125, 13,210,211,211,107, 5,226,116,187,221,181, 20, 78,239,112, 41,124,190,235, 73,149,176,222,121,231,157, 1,195,233,114,185, - 18,191,255,254,123,232,245,122,149,203, 55,140,222,188,202, 67,171,123,245,234, 85, 43, 92, 78,229,179, 63, 78, 0,232,218,181, -235, 53, 13,167,151,120, 75,114,185, 92,179, 8, 33, 58,158,231, 95,160,148,166,175, 94,189, 26,178, 44, 99,208,160, 65,233,157, - 58,117,106, 44,203,242, 63,140, 70,163,219,102,179, 61,177,115,231, 78,182, 1, 50, 3,195,213, 8, 44, 0, 48,153, 76, 88,186, -116,169,250,120, 12,223, 71,209,120,127, 78, 77, 77,213,244,135,181,107,215,110,215,160, 65,131, 53, 95,124,241,133, 33, 41, 41, - 73, 61,238,112, 56, 16, 19, 19,131, 49, 99,198,232,250,246,237,219,120,228,200,145, 27,107,215,174,157,126,230,204,153, 61,193, -248,234,212,169,243,120, 82, 82,210,155,227,199,143, 55,220,125,247,221,136,139,171,106,214,100,100,100, 96,224,192,129,228,216, -177, 99, 93,151, 47, 95,222,245,163,143, 62,122,183, 78,157, 58,175,157, 62,125,122, 94,168,176,214,173, 91, 55, 78,175,215,191, -159,156,156,156,118,252,248,241,109, 58,157,238,197,138,138,138,167,106,215,174, 61,194, 98,177,156,180,217,108, 79,254,250,235, -175,199,195, 17, 45,241,241,241,127, 31, 59,118,108,124,105,105,169,156,155,155,123, 88, 57,174,215,235,159,239,220,185,115,199, -239,190,251,110, 9,165,244,243, 43,113,174, 92, 46,215,238, 96,191,107,117,178, 90,180,104, 33,213,174, 93,123, 13,128,142,131, - 7, 15, 62, 49,121,242,100, 26, 27, 27, 27,205,113, 28, 41, 46, 46,190, 48,109,218, 52,233,211, 79, 63,157, 84,187,118,237,244, - 22, 45, 90,164,255,252,243,207, 14, 86,149,110,108,152, 76, 38,124,242,201, 39, 85, 30,135,227,253,220, 65,223,199,229,196,199, -199, 87, 11, 39,165, 52,232,212,185,193, 96,192,134, 13, 27, 46,123, 52, 86,160,151,217,108, 6, 33, 4,132, 16, 66, 3,220,209, -163,215,235,177,110,221, 58,245, 65,215,161, 56,141, 70, 35, 16, 98,121, 69,184,156,102,179, 57,100,122, 94, 97, 56, 67, 46, 69, -112,185, 92,179,166, 77,155, 54, 40, 58, 58, 26, 47,189,244,210,255, 82, 83, 83, 17, 19, 19,131,249,243,231, 35, 46, 46, 14,178, - 44,255,239,157,119,222, 33, 39, 79,158,196,204,153, 51,231, 2, 24,194,106, 12, 3,195, 85, 10, 44, 0, 85, 26,193, 96, 2,203, - 31,124,239, 48,104,208,160, 65,148,217,108, 94,242,213, 87, 95, 25, 18, 18,126,127, 90,136,221,110, 71,105,105, 41, 44, 22, 11, - 74, 75, 75, 97, 50,153, 48,103,206, 28,195, 67, 15, 61,180,164, 65,131, 6,173,243,243,243,109,129, 56, 41,165,217, 63,253,244, -147,232,114,185,160,211,249, 55,112, 56,142, 67,227,198,141,241,204, 51,207,160, 91,183,110,198, 7, 31,124, 48, 27,192,188, 64, -156, 94,194,228,195, 45, 91,182,116, 73, 74, 74,210,127,249,229,151,250, 57,115,230,228, 13, 28, 56,208, 50,106,212,168,218, 23, - 47, 94,172,157,145,145,241, 53,128, 22, 90,226,238,193, 3,227,199,143,111, 17, 23, 23,199, 77,155, 54,237, 98,105,105,233, 7, -158,227, 79,205,156, 57,115, 84,143, 30, 61,106, 62,250,232,163,110, 66,200, 23,254, 58,131, 32,119,108,232, 60,241, 20,194,117, -182,252,113, 94,188,120,241,101, 0, 29, 23, 45, 90,180,175, 79,159, 62,245, 41,165,197, 0,206, 2, 64, 82, 82,146,126,250,244, -233,198, 30, 61,122,252,248,196, 19, 79,116,244,156, 59, 89, 99, 56,175, 24,140,179,122, 57,221,110, 55, 68, 81,196,176, 97,195, - 64, 8,169,242, 28, 67,165,158,111,217,178, 5,253,251,247,135, 40,138,120,244,209, 71, 53,115, 62,248,224,131,112,185, 92,151, -113,174, 95,191,190,138,208,226, 56, 78, 51,167,242,140,208, 80, 47,173,156, 90, 69,203,245,194,217,171, 87, 47,236,220,185,243, -170, 57,149,102,254,167,159,126, 66,235,214,173,177,120,241, 98,194,243, 60,118,238,220, 9,131,193,128,209,163, 71, 35, 45, 45, -141, 24, 12, 6, 28, 59,118, 12, 22,139,133,176,122,196, 56,171,139, 51, 4, 68, 0,109, 0, 36, 2,144, 1,148, 2,136, 5, 96, -247,244,113,197, 0, 12,158,151, 13,128, 5, 64, 77,207,181, 69,158,193,134,247, 99,202, 10, 81,245,161,208,183,123,184,149, 71, -128,121, 59,202,118,159,126, 84,249,238,251, 94,133, 91,240, 8, 9,165, 51,239, 73, 41,221,228,149,128,154,196,149, 40,138,208, -178,102,219,237,118,143,205,204,204, 76,242, 22, 87, 54,155,173,138,184,178, 88, 44, 40, 40, 40, 64,253,250,245, 49,124,248,240, -164, 69,139, 22,141, 5,240, 94,176, 68,231,121, 30, 63,252,240, 3,206,159, 63,143, 86,173, 90,225,150, 91,110,169,114,194,209, -163, 71,241,205, 55,223,224,194,133, 11,104,223,190,189,146, 81,126,145,146,146,146, 16, 27, 27, 59,142,227,184,251, 59,117,234, -148, 82, 88, 88, 72,206,158, 61,139,212,212,212,228, 47,190,248, 2,123,247,238, 53,231,230,230,194,225,112, 72, 93,186,116,169, -223,188,121,243, 19,162, 40,174, 58,119,238,220,187,193,214,121, 17, 66,248,186,117,235,190,252,248,227,143,235, 10, 10, 10,220, - 31,125,244,209,119,148,210,189,132,144,251, 95,121,229,149,199,210,211,211,107,238,217,179,167,116,215,174, 93, 59,168,198,189, - 51,252, 56, 87,130,111,131,108,177, 88,112,226,196,137,221, 37, 37, 37,156,231,124, 59,165,180, 86, 16,215,174, 17,128,241,247, -223,127,255, 97,143,184,250,213, 83,152, 1, 0,178, 44, 59, 75, 75, 75,203,122,244,232, 81,187,111,223,190, 7,215,173, 91, 55, -190,110,221,186,139, 79,157, 58,117,148,141, 87,110, 92,184, 92, 46,136,162,136,111,191,253, 54,168,219,180,117,235, 86,213,113, - 89,177, 98,133, 38,206,175,190,250, 42,164,131, 21, 70, 27,162,138, 7,223,135,174,207,157, 59, 23,227,198,141,171,114,204,227, - 94, 81, 79,227, 74, 3,113, 6, 18, 66,183, 52,108,136,179,103,206, 84,225,228, 56,174,202,212,102, 48,206,143, 62,250, 8, 25, - 25, 25,200,201,201, 9,250,126,215, 93,119,105,138,187, 34,174, 28, 14,135, 26,198, 35, 71,142,248,229,253,231, 63,255, 9, 45, - 77, 9,207,243,227,151, 45, 91,246,211,133, 11, 23,132,220,220, 92,232,245,122, 24, 12, 6,245,253,236,217,179,176,219,237,248, -244,211, 79, 93, 28,199, 61,207,106, 11, 67,164, 17, 72,131,248,160,251,132, 9, 19, 58,100,103,103, 79,233,210,165,203,178,109, -219,182, 45, 37,132,228, 80, 74, 51,148,247, 9, 19, 38,180,204,206,206,158,146,153,153,249,114, 86, 86,214,126, 66, 72, 14, 0, -248,126,247,232,155, 12, 31,241,150,168,240,120,194, 84,229, 92,127,223,125,223,125,185, 5,175, 3,196,171, 33, 82, 58, 83,205, - 2,203,223,104,201, 23,209,209,209, 3, 6, 12, 24, 32, 5, 19, 87,165,165,165, 40, 45, 45,197,161, 67,135,144,150,150, 38, 69, - 71, 71, 15, 8, 33,176, 42,149,133, 32, 32, 37, 37, 5, 69, 69, 69,216,183,111, 31, 82, 83, 83,225,116, 58,177,102,205, 26, 92, -188,120, 81,109,216,237,118,123, 80,158,164,164,164,217, 15, 61,244,208,192,177, 99,199,242,255,253,239,127,209,172, 89, 51,220, -114,203, 45,216,182,109, 27, 28, 14, 7,234,213,171,135, 46, 93,186, 96,197,138, 21,104,211,166, 13,247,215,191,254,181,230,254, -253,251, 71,207,154, 53,171, 51,128,118, 65,168,219, 12, 29, 58,180,102,116,116, 52,198,141, 27, 71,237,118,251, 12, 66, 72,218, -176, 97,195, 38, 63,253,244,211, 9,249,249,249,142,199, 30,123,108,187,221,110,159, 31, 70,185, 12,232, 92,185, 92, 46, 88, 44, - 22,148,148,148,160,180,180, 84, 40, 41, 41,225,160, 97,141,150,219,237,190, 19, 0, 63,113,226, 68, 80, 74,127,243, 22, 87,118, -187, 29, 22,139, 5, 22,139,197, 45,203,242,165,177, 99,199, 90,215,173, 91,199,123,174, 97, 2,235, 6,134, 82,215,135, 14, 29, - 90,197, 29, 90,191,126, 61, 50, 50, 50, 46,155,230,211, 34, 8, 20,206, 7, 30,120, 64, 21, 70, 74,155,177,122,245,106, 77,142, - 75, 32,145,225,207,193,226, 56,206,239,177, 80, 34, 67,225,244,247, 2,112, 25,167, 86, 33, 40, 8, 2,198,142, 29, 11, 81, 20, -241,220,115,207, 65, 20, 69,164,165,165, 65, 20, 69,116,234,212, 9,162, 40,162, 87,175, 94, 97,115,110,222,188, 25,157, 59,119, - 86,195,152,150,150,134,118,237,218, 65, 20, 69,116,235,214, 13,162, 40,162,127,255,254,154, 56,149, 5,237,105,105,105,120,226, -137, 39,240,197, 23, 95, 96,209,162, 69,234,239,195,134, 13,195,208,161, 67, 97,177, 88,144,156,156, 44, 20, 20, 20,236,239,208, -161, 3, 91,248,206, 16,113,248,211, 32, 62,136,202,206,206,158,226, 35,140,170, 64,249,157, 16,146,147,149,149,149,225, 45,134, -188,191,123,185, 76,222,226,173,165,183, 3,229, 45,158, 2,136, 50,223,240,123,159, 95, 88, 69, 96,121, 34,214,211, 95, 3, 41, - 73,146,218,160, 5, 18, 90, 90, 80, 81, 81,209, 74,113,175, 42, 42, 42,170, 8, 42, 79,199,173,126,182,219,237,104,216,176, 33, - 42, 42, 42, 90,133,169,132, 81,187,118,109, 56, 28, 14, 44, 88,176, 64, 21, 86, 10, 28, 14, 71,168, 76,174,221,187,119,111, 62, - 63, 63, 31,167, 79,159,134,219,237,198,246,237,219, 33,138, 34,172, 86, 43,108, 54, 27, 86,172, 88, 1,158,231,113,244,232, 81, -232,245,122,180,110,221,154,200,178, 28, 27, 34,104, 61,122,247,238, 13, 66, 8, 86,175, 94,125,156, 82,154,103, 52, 26, 23, 78, -153, 50, 37,206,102,179,185, 71,141, 26,117,252,183,223,126,123, 25,128, 75,175,215, 79,236,209,163, 71,215,117,235,214,125,236, -114,185, 22,135, 91, 80,109, 54, 91,149,180, 44, 41, 41,193,165, 75,151,180, 94,222, 22, 0, 98, 98, 98,106, 2, 56,163, 28, 44, - 47, 47, 71,121,121, 57, 74, 74, 74, 80, 94, 94, 14,171,213,234, 48, 26,141, 58,175,107,254,195,154,136, 27, 95, 96,173, 94,189, -186,138,203, 36,138, 34, 54,108,216,112,153, 3,165,211,233,176,106,213, 42, 77,110,211,215, 95,127, 29,212,185,242,110, 99, 66, -173,193,242, 22, 67, 31,124, 80, 57,195,254,204, 51,207,248,157, 54,244, 94,186,112,223,125,247,145, 80,225, 20, 69, 17,105,111, -114, 0,100,252,250,142, 65,109,215,124, 57,181,184, 66, 10,231,252,249,243, 53, 57, 88, 3, 7, 14,212,204,233, 27,174,125,251, -246,249,229,157, 59,119,110,200,244, 84, 22,180,199,196,196,168,211,130, 0,144,145,145,241,188,217,108,238, 86, 81, 81,113, 79, - 78, 78, 14, 46, 94,188,136,134, 13, 27, 34, 41, 41, 9, 59,119,238, 76,103, 53,134,161,154, 92,172,158, 65, 78,177,102,102,102, -190, 76, 8,201, 81, 28, 41, 95,167,201,223,119, 63,255,163,136, 32,101,122,240,118, 31,241,166, 76, 29, 14, 10,114,173,221, 71, - 80,249, 78, 17,238, 10,233, 96, 41,115,254,222, 13, 87, 32,129,165,101,244, 73, 41,229, 9, 33, 85, 4, 64, 32, 7,203,233,116, -162,184,184, 24,148, 82, 62,146,153, 24, 74, 96, 21, 23, 23,191,240,212, 83, 79,173,156, 49, 99, 70,204, 3, 15, 60,128,239,191, -255, 30,205,155, 55,135,205,102, 67, 66, 66, 2,142, 31, 63, 14,158,231,145,151,151,135,212,212, 84,152, 76, 38,188,246,218,107, - 22,171,213,250, 90, 48, 94, 73,146,122,118,239,222, 29,185,185,185,184,112,225,194,122, 66, 72,227,199, 30,123,236,174,186,117, -235,114,111,191,253,182,237,240,225,195,211, 0, 92, 52,155,205,239,125,244,209, 71,253,218,181,107,103, 26, 53,106, 20, 37,132, - 44,163,148,202, 90,227, 87, 86, 86,118,153,184, 82,190,107, 28, 69,136,132, 16, 74, 8, 81,231, 64, 20,241,171,188, 74, 74, 74, - 96,179,217,168,211,233,228, 42, 47,161, 34,107, 30,110,108, 40,157,247,240,225,195, 47,155, 46,147, 36, 9,107,214,172,193,208, -161, 67,161,211,233, 32, 73,146, 50,213, 30,170, 44, 65, 20, 69,140, 24, 49, 66, 21, 4, 95,125,245,149, 95,113,165,184, 82, 90, - 57,121,158,199,211, 79, 63, 13, 81, 20, 49,103,206, 28, 60,251,236,179,224, 56, 14,211,167, 79, 7,207,243,152, 56,113,162,191, -233,135,160,156,162, 40,226,104, 86,229,123,253,191, 91, 80, 52,167,242, 38,156,152, 26, 53, 42,207, 11, 49, 45,232,143,211,159, -115, 37, 8, 2,122,246,236, 9, 81, 20, 53, 9, 43,127,225, 60,112,224,128,250,185, 83,167, 78,232,218,181, 43, 68, 81, 68,191, -126,253, 84, 94,173, 79,233,144,101, 25,243,231,207, 87,167, 5, 61,121,213,121,252,248,241,247,248, 59,191, 69,139, 22,172,194, - 48,252, 17, 14,150, 45, 43, 43,107,127, 86, 86,150, 95,135,202,215, 73, 10,230, 52,121, 9,171, 93,240, 76, 13,102,102,102,190, -140,202,181, 91,187, 52, 92,171,243,157, 34,244,119,190,175,131,245,122,160,209, 98, 48,129,165,172, 75, 8, 5,163,209,184,191, -168,168,168, 83, 84, 84,148,218,241,251, 19, 39, 80,170,230, 0, 0, 32, 0, 73, 68, 65, 84, 87, 22,139, 5, 60,207,227,252,249, -243, 48, 26,141,251, 35,153,137,161,166, 8, 79,157, 58,181,171,110,221,186,143,252,245,175,127, 29,111,183,219, 91, 10,130, 32, -217,108, 54,221,215, 95,127, 77,214,172, 89,131, 90,181,106,225,153,103,158,161, 22,139,197, 65, 8,177,139,162,120,188,172,172, -108,222,241,227,199,131, 58, 77,141, 27, 55,190,213,100, 50, 97,235,214,173, 0,176, 3,192,195, 79, 60,241, 4,231,116, 58, 49, -119,238,220,115, 0,182,198,198,198,126,188,124,249,242, 14,173, 91,183,214,173, 93,187,214,178,115,231,206,117, 90,197,149,178, -222,202, 59, 13,189,211,184,164,164, 68, 83,250,112, 28,247, 63, 74,233,200,242,242,242, 18,131,193,160, 47, 41, 41,113,120, 59, -140, 22,139, 5,101,101,101,144,101, 89, 56,119,238,220, 41, 0,205, 56,142,251, 31,107, 30,110, 14,129,181,106,213,170,128,110, -147,226,110, 41, 3,170, 53,107,214,104,114,197, 86,174, 92,121,153, 43,230,235, 10,105,157, 38,163,148, 86, 89,115, 5, 64, 29, - 0,114, 28,135,204,204, 76,232,245,122,188,245,214, 91,200,204,204, 84, 93,172,162,162, 34,162,133,179,209, 4,155,167,141,133, -122,173,195,110,175, 12, 31,199,105, 22, 89,222,156,190, 47,239,184,135,217, 1, 85,225,136, 4, 39,128, 85,131, 6, 13, 26, 20, - 23, 23,135,209,163, 71,195,104, 52, 98,200,144, 33,168,168,168, 24, 6, 0,217,217,217,152, 48, 97, 2, 0, 96,210,164, 73,152, - 60,121, 50,202,203,203,109,172,198, 48, 84,147,131,245,122,144, 83,226,188,215, 84,133,193,155,227,125,190,194,225, 43,138, 60, -142,216,230, 80, 92,254,174, 13, 4, 65, 81,142,193, 42,116, 40,247, 74, 25, 81,106,112, 87, 54,110,220,184,177,253,189,247,222, - 43,120,119,252,190, 66,203, 51,223,143,163, 71,143,186,202,202,202, 54,106, 25,129, 69,202,193,242,136,172, 53, 0,212,222, 35, - 33, 33, 97,137,197, 98, 25,152,148,148, 36,218,237,118, 92,186,116,233,232,145, 35, 71, 90,135, 83,120, 76, 38,147, 30, 0, 46, - 94,188, 8, 0, 23, 1, 52,185,245,214, 91,145,155,155,139,223,126,251, 45, 7, 64,191,201,147, 39,119,236,220,185,179,184,108, -217, 50,235,147, 79, 62,249,169,195,225,152,165, 53, 78,254, 28,193,178,178, 50, 92,186,116, 9,229,229,229,154,167, 8, 9, 33, -219, 40,165,152, 50,101, 74,201,228,201,147, 27,148,148,148,148, 93,186,116, 73,246,118,198,202,203,203,137,209,104, 20,150, 46, - 93, 26,173, 92,195,154,135,155, 67, 96, 93,233, 29,111,161, 28, 44,111,183, 74, 17, 90, 58,157, 14,203,151, 47,247, 93, 43, 21, - 82,101, 41,174,213, 51,207, 60, 3,189, 94,143,247,222,123, 79,109,131,252,221,209, 76, 8,241,123,247,155,111, 56, 27,191,108, - 71,193,204, 88,136,162,136,196, 39, 11,171, 76,197,249,171, 42, 90,194,249,143,127,252, 35, 98, 83,132,106, 56, 27, 55, 6, 0, -204,159, 63, 31,195,135, 15,199,214,173, 91, 3, 78, 17,134, 10,103,110,110,238,253,237,218,181,107,228,114,185,246,180,106,213, - 74, 56,123,246, 44,134, 14, 29,138,229,203,151,195,211,145, 33, 51, 51,179,202, 53, 22,139,133, 9, 44,134,136,187, 87, 26, 78, - 43,244, 89, 63, 69,188,167,235,130,188,251,158, 15,175, 99,222,188,133, 0,156,126,254,175,208,143,168,242,253, 15,239,115, 10, - 47,115,176,180, 52,186,193,196,150, 22,129, 69, 8,153, 61,105,210,164,177,221,186,117,139,139,137,137, 65, 65, 65,129, 95, 7, - 43, 38, 38, 6, 14,135, 3, 27, 55,110, 44, 37,132,204, 14, 65,235,114, 58,157, 66, 82, 82, 18,138,138,138, 2,222,221,195,113, - 28, 12, 6, 3, 44, 22, 11, 0,132,187, 57,166,189,180,180,212, 57, 98,196, 8,113,246,236,217,176, 90,173, 97, 53, 48,132, 16, -174,103,207,158, 18, 80,185,150, 9, 64, 89,157, 58,117, 26,233,245,122,228,231,231, 3,192,113, 0,189, 6, 12, 24, 32, 20, 23, - 23,211,177, 99,199,174,119,187,221,175, 80, 74, 67, 13,151,227, 1, 32, 58, 58,250, 12, 0,108,223,190,253, 23,127,235,218, 94, -126,249,229,102,158,206, 43, 30, 1,238,164,242, 18,151,251, 83, 82, 82, 62, 92,180,104,209,232, 30, 61,122,108,111,211,166, 77, -195, 11, 23, 46, 92,178, 88, 44,246,242,242,114, 74, 41, 21,140, 70,163,184,101,203,150,188,188,188,188, 12, 0, 31,158, 58,117, -106, 63,107, 34,110,124, 68, 82, 92,121, 11, 2, 95, 7,203,247, 61, 28, 78, 37,156,227,199,143,199,251,239,191, 15, 74,169, 42, -172, 56,142,195,148, 41, 83, 0, 0,175,188,242, 74,192,237, 99, 2,113, 22,204, 52, 32,229,217,139, 85,142, 1, 0,241,132,239, - 74,166, 8, 39, 77,154, 4, 81, 20,171, 76,225, 9,130,160, 10,170,112,166, 8,213,112, 22, 20, 84,138,192,196, 68, 60,244,208, - 67,232,215,175, 31,238,186,235, 46, 16, 66,170,240,106,157, 34,228, 56,238,157,169, 83,167, 10,122,189, 30,118,187, 29,229,229, -229, 40, 46, 46, 70, 32, 7,203,106,181, 70,177,218,194,240, 7, 96,215, 53,230,189,234,255, 19,180, 52, 18, 87,186, 77,131,239, -211,182,143, 29, 59, 86,146,146,146, 50,102,196,136, 17,203,230,204,153, 99,104,212,168, 17, 14, 30, 60,136, 11, 23, 46,192,225, -112, 64,146, 36,164,164,164,192, 98,177,224,179,207, 62, 43,183, 90,173, 99, 10, 10, 10, 74,130,113, 18, 66,222, 24, 48, 96,192, -164,137, 19, 39,242, 45, 90,180,192,133, 11, 23, 96,177, 88,212,198,133, 16,130,152,152, 24, 24,141, 70,236,219,183, 15, 59,118, -236,144, 9, 33,111, 4,227,244,211,168,157, 60,126,252,184,123,214,172, 89,168,168,168,176,185, 92,174, 83, 26, 68,149, 55,167, -193,179,233, 31,202,202,202, 0,192, 86,191,126,253, 20, 79,154, 0,192,175,141, 27, 55,126,181, 81,163, 70,228,227,143, 63,166, -110,183,123,157, 63,113,229, 27, 78, 74,169,205,115, 92,167,184, 99,190,107,218, 74, 74, 74, 32,203,178,206,251,252, 80,113,119, - 58,157, 47,137,162,216,109,204,152, 49, 93, 6, 13, 26,244,211,200,145, 35, 43, 98, 99, 99, 19,120,158,183, 30, 61,122,244,183, -229,203,151, 71, 29, 57,114, 36, 3,192, 49,167,211,249,146, 22,206, 8,216,199,140,179, 26, 57,149,186, 30,108,223,166, 80,131, -168, 64,156,163, 70,141, 82, 5,150,242, 82,156, 43, 95, 78, 63,187,177, 95, 22,119,101, 90,236,197, 23, 95,172, 18,190, 87, 95, -125, 53, 96,216,108, 54, 27,209,194,121, 97,126,237,170, 11,218, 3,136, 42,173,225,124,253,245,215,175,216,193, 10, 22,206,222, -189,123,195, 98,177, 64, 16, 4,172, 93,187, 54,216, 34,119, 45,101,169, 98,245,234,213,208,235,245,248,236,179,207, 92,201,201, -201, 66,108,108,108, 64, 7,171,162,162, 34,138,213, 35,198, 89, 29,156, 55, 27,130, 10, 44,151,203,133,122,245,234,169,226,137, -227, 56,101, 95, 25,240, 60, 15,142,227,192,243, 60,194,121,110,113, 65, 65,193,250,148,148,148, 17, 67,134, 12,249,207,232,209, -163,205,205,154, 53, 19, 83, 83, 83, 97,181, 90,145,159,159,143,252,252,124,215,134, 13, 27, 74,173, 86,235, 35, 5, 5, 5,235, - 67,241,157, 62,125,250,221,148,148,148, 85, 15, 63,252,240,155,109,218,180, 25, 56,126,252,120, 52,108,216, 16,151, 46, 93, 66, - 92, 92, 28,146,146,146,112,252,248,113,172, 88,177, 2,151, 46, 93,250, 6,192,196,130,130,130,188,112, 18,201, 96, 48,204,152, - 58,117,106,247,228,228,228,102,197,197,197,167, 36, 73,122, 57,220,132,118, 56, 28, 50, 0,190,168,168, 8, 0,172, 6,131,129, - 0,192,145, 35, 71, 0,224,215,250,245,235,199, 0,192,250,245,235, 9,128,157, 97,210,199, 3,192,128, 1, 3,126,243,109,252, -189,156, 43,205, 40, 44, 44, 44,107,220,184,113, 87,171,213,154,181,106,213,170,209, 1,238, 22,251,208, 96, 48, 76, 56,114,228, - 72, 25,171, 70, 55, 73, 99, 32, 8,208,233,116, 87, 36,174,130,113,126,246,217,103,126,157, 43, 95, 78,173,237,136,175, 8, 84, -246,187, 10, 54, 80, 12,209, 81,248,141,115, 32, 78, 45,225, 84, 56,179,179,179, 33,138, 34,250,246,237, 91,101, 81,251,149, 56, - 88, 10,167,242, 4, 12,179,217, 12, 89,150, 49,112,224,192,171,226,165,148, 62,157,147,147,227,162,148, 26, 57,142,251,123, 65, - 65,193,126,197, 85,244,231, 96, 49, 48, 48, 92,165,192, 18, 69,177, 80,235,179, 5, 21,232,116,186, 66,141, 34,107, 93,227,198, -141,155, 47, 88,176,224, 73,179,217,220,203,106,181,166,121,132,204, 62,139,197,242,157, 32, 8,255, 44, 40, 40, 40,213,250,191, - 30,193, 52, 60, 37, 37,165,203,195, 15, 63,252,230, 29,119,220,209,233,177,199, 30,131, 32, 8,248,244,211, 79,113,250,244,233, -157, 30, 97,181,253, 74, 18,233,216,177, 99, 37, 8,126,251,104,168, 6,172, 76, 20,197,121,221,186,117,123,108,219,182,109, 31, - 80, 74,207,232,245,250,127,247,236,217,115,212,247,223,127,255, 31, 74,233, 73, 81, 20, 63,232,218,181,235,152,157, 59,119,126, - 76, 41, 61, 17, 38,191, 45, 88,195,239,207,185, 10,133, 35, 71,142,148, 2,120,178,118,237,218,239,243, 60,223, 85,150,229,182, - 0,192,243,252,143,178, 44,111, 61,115,230,204, 65, 86,125,110, 30,184,221,110, 36, 38, 38, 86, 25, 52, 41, 83,111, 87, 42,174, -220,110, 55,146,146,146,192,113,156,202,171,108, 16, 26,100, 90,144, 4, 19, 24,110,183, 27,209,209,209, 42,167, 50,232, 11, 81, - 63,168,221,110, 15,186, 6, 43, 92, 78,132, 88,219,116,133,156,208,194,105,183,219, 35, 22, 78, 0,200,205,205, 45, 6,240,176, -242,189,125,251,246,171, 14, 30, 60, 56, 40,144,131,197,192,192,112,149, 2,107,199,142, 29, 13,170,243,143, 61, 29,120,150,231, - 21, 17,120, 4, 84,239,148,148,148,140,109,219,182, 41, 83, 87, 83, 11, 10, 10,114,254,232,132,118, 58,157,147, 9, 33,111, 83, - 74,157, 0, 80, 81, 81,241, 10, 33,100,146,242,176,100,167,211, 57,145, 16,242,250,213, 60, 60,153, 82,106,140,116,184, 61, 66, -138,137,169,155, 24,162, 40, 22, 14, 24, 48, 32, 49,220,235,130, 13,168, 68, 81, 44, 76, 79, 79, 15,155, 51, 42, 42,234,124, 16, -206,179,189,122,245,170,123, 5,225,188, 88,167, 78, 29,191,119,194, 72,146, 84,216,189,123,247,136,134,243, 74, 57,131,165,103, -117,132, 51,136,224,186, 63, 37, 37,101, 91, 66, 66, 66, 35,155,205, 38, 89,173, 86,201,219, 5, 52, 24, 12, 69,172,214, 48, 48, - 92,133,192,186,145,225, 17, 84, 57,215, 91,184, 20,113,229,245,221, 21,236, 59, 3,195,181, 64,117, 12,166,170,131,115,235,214, -173, 77, 35,205,185,125,251,246, 6,127, 86,206, 16,109,232, 29,172,102, 48, 48, 92, 29, 56,150, 4, 12, 12, 12, 12, 12, 12, 12, - 12,145, 5, 1,144,230,239,135,112,238, 14, 32,132,164,133,251,199,161,248, 25, 39,227,100,156,140,147,113, 50, 78,198,121,243, -113,134,226,190, 89,238, 78, 36, 90,247, 74,185, 34,114,118, 11, 43,227,100,156,140,147,113, 50, 78,198,201, 56,255,132, 96, 83, -132, 12, 12, 12, 12, 12, 12, 12, 12, 76, 96, 49, 48, 48, 48, 48, 48, 48, 48, 48,129,197,192,192,192,192,192,192,192,192, 4, 22, - 3, 3, 3, 3, 3, 3, 3, 3, 3, 19, 88, 12, 12, 12, 12, 12, 12, 12, 12,215, 13,170,245, 46, 66, 6, 6, 6, 6, 6, 6, 6, -134, 63, 35, 84, 7,139, 16,178,137, 16,178,137, 37, 9, 3, 3, 3, 3, 3, 3,195,181,196,205,168, 65, 4, 79,196, 40,174,226, - 97,198, 12, 12, 12, 12, 12, 12, 12, 12, 87, 40,174,110, 74, 13, 66, 40,165, 32,132, 80, 74, 41, 97,217,204,192,192,192,192,192, -192,112,173, 5,214,205,168, 65,216, 34,119, 6, 6, 6, 6, 6, 6, 6,134,106, 18, 88,175,179, 53, 88, 12, 12, 12, 12, 12, 12, - 12,127, 0,110, 74, 13,162,222, 69, 72, 8,233, 1, 0,148, 82, 38,178, 24, 24, 24, 24, 24, 24, 24,174,157, 24,185, 9, 53, 8, -219,166,129,129,129,129,129,129,129,129, 33,194,168,214, 53, 88,132,144, 52,198,201, 56, 25, 39,227,100,156,140,147,113, 50, 78, - 38,176, 24, 24, 24, 24, 24, 24, 24, 24, 24,152,192, 98, 96, 96, 96, 96, 96, 96, 96, 96, 2,139,129,129,129,129,129,129,129,129, - 9, 44, 6, 6, 6, 6, 6, 6, 6, 6, 6, 38,176, 24, 24, 24, 24, 24, 24, 24, 24,254, 32, 16, 0,126,239, 4,160,148,238,211, - 76,114, 5,119, 19,132,226,103,156,140,147,113, 50, 78,198,201, 56, 25,231,205,199, 25,138, 59, 28,253,113, 93, 11, 44, 45,251, - 96, 17,207,131,130,194, 38, 39, 36, 45,210, 9,197, 56, 25, 39,227,100,156,140,179,122, 56,175,164,173,247,199, 73, 8, 33, 94, -131,120, 0,160,158,142,147, 94, 79,225,188, 81,242,168, 58,210,179,186,243,136, 1, 16, 66, 36, 32,135,202,105, 68, 66, 8,113, - 3,112,211, 8,236, 76,234,201, 88, 46, 82,124, 12,213,160,188, 43,243,136,252, 62,160, 96,249,196,192,112, 19,215,247,136,181, -245, 94,109, 7,175,112, 2,144, 1,200,132, 16, 92, 77, 91, 82, 29,125,146, 55, 39,128,106,139,251,149,182,163,213,145,158,213, -153, 71, 12, 33, 4, 22, 33,132, 52,111,222, 92,236,218,181,235, 15,177,177,177, 77,188,127, 27, 60,120, 48, 0, 64,150,101,249, -155,111,190,137, 14,231,207,122,246,236, 41, 8,130,240, 85, 70, 70, 70, 15, 95, 62, 79, 47, 46,231,228,228, 68, 95,207, 9, 54, -108,216,176, 82,135,195,193,251, 30,151, 36, 73,254,236,179,207,162,111,134, 66, 65, 8, 17,154, 52,105, 50,204,104, 52, 26,148, - 99,109,219,182,245,254,157,238,217,179,103,161, 22,174,215, 95,127,157, 91,180,104,209, 86,163,209,104,228, 56, 14,130, 32, 64, - 16, 4,148,149,149, 21, 13, 31, 62,188, 31, 0, 44, 89,159,191, 54,202,104, 72,128, 27,112,187, 41,168,155,162,188,162,172,120, - 76,122,227,126,147, 38, 77,114,179,106,122,121, 61, 10, 53, 56,242, 3,215,198,141, 27, 93, 44,245, 52,215, 1,165, 77,186,242, -139,171, 54,180, 3,100,224, 65,207,215, 10, 14, 40, 38, 64, 94, 2,240,217, 57,192, 90,229,228,107,216,185, 41, 29,109,221,186, -117,223, 75, 78, 78, 30, 83, 90, 90, 90,206,243, 60, 8, 33,180,101,203,150,151, 69,135, 16, 2,183,219,125,106,255,254,253, 29, - 66,116,220, 98,253,250,245,167, 39, 38, 38,142, 42, 47, 47, 47, 39,132,128, 16, 66, 9, 33, 72, 75, 75, 83, 57,149,119,183,219, -125,106,223,190,125, 29,174, 85, 56,255,200,184, 43, 92, 90,226,238,205, 89,183,110,221,233,201,201,201,163, 44, 22, 75, 57,199, -113, 42,103,203,150, 45,175, 56,156,145,226,100, 8, 67, 96, 53,106,212, 72, 74, 76, 76,220,156,154,154,218,120,193,130, 5,200, -203,203, 67,179,102,205, 32,203, 50,220,110, 55, 40,165, 24, 54,108, 24, 31,110,167, 32,138,226,170, 58,117,234,220,177, 96,193, - 2,228,228,228,224,246,219,111, 7, 33, 4,178, 44, 67,150,101, 60,253,244,211,252, 85, 54, 22, 38, 65, 16,158,214,233,116,119, -186, 92,174,219, 60,194,231, 96, 69, 69,197, 22,151,203, 53,155, 82, 90,118,181, 9,230,112, 56,248,175,191,254,218,159,240, 10, - 26,246, 78,157, 58, 29,114,185, 92,117,195,249, 47,157, 78,119,106,219,182,109, 77, 3,253,222,165, 75,151, 67, 14,135, 35, 44, -206,168,168,168, 83, 91,183,110,109, 26, 76, 92, 53,110,220,248,190,150, 45, 91,234, 63,253,244, 83,156, 62,125, 26, 6,131, 1, -110,183, 27,178, 44,195,233,116,226,222,123,239, 37,225,252,167,209,104, 52,110,219,182,173, 81,116,116, 52,202,202,202,112,225, -194, 5, 60,240,192, 3,106,103, 31,165, 55, 36,204,204,154,216,216,233,116,225,183, 18, 43,206, 95,176, 98,222,220,185, 55,124, -229,234,210,165,203, 6,187,221, 30,175,124, 23, 69,241,183,157, 59,119,246,190, 90, 94,171,213,122,140, 82, 26,171,177,111, 7, - 0,240, 60,127, 17, 64,253, 16,245, 39, 21,192, 64, 65, 16, 26, 9,130,208,148, 82, 90,223,229,114, 37,121,202,226,121,158,231, -127,117, 56, 28,135,236,118,251, 81, 0,223, 80, 74, 79,220,164,226,170, 62, 0, 87, 74, 74, 74,129,103, 52,127,213,156, 50,240, - 32,165,180, 6, 0, 92,186,116,169,198,201,147, 39,107,125,253,245,215, 45,167, 76,153,210, 91, 87, 81, 49,205, 14, 28, 8,118, -125,211,166, 77,119,139,162,152,234,213, 14,157,200,203,203,139, 68,103,199,213,169, 83,231,189,187,238,186,235,225,121,243,230, - 25,119,238,220,105,108,213,170, 21, 42, 59, 91,168,237, 61,165, 84, 45, 91,157, 59,119, 1,249,221,221,190, 44,249, 0, 8, 41, - 41, 41, 51, 7, 12, 24, 48, 98,238,220,185,198,125,251,246, 25,155, 52,105,162,114,122,167,167,167, 83, 71,251,246, 29, 64, 0, - 66, 61,211, 84,145, 10,103,117,196,189, 69,139, 22,248,249,231,159,131,198, 61, 61, 61,125,196,188,121,243,140,123,247,238, 53, -222,122,235,173,126,227,174,196,191, 67,135,219,131, 22, 71,239,244,156, 63,127,190, 49, 55, 55,215,216,188,121,115,143, 72,131, - 26,198, 48,226, 94, 29,156, 12, 90, 4, 22, 33,132,235,217,179,231, 55,245,235,215,111,177, 96,193, 2,194,243, 60,114,115,115, - 81, 92, 92,140, 58,117,234,192,108, 54, 67,175,215,135,255, 71,130,240,149, 71, 92,113, 60,207, 99,195,189,247,194, 10, 96,152, -221, 14, 73,146,112,228,200,145,171,109, 20,187, 69, 71, 71, 47, 88,178,100, 73,108,151, 46, 93,184,147, 39, 79, 34, 45, 45, 13, - 69, 69, 69,237, 55,110,220,216,118,236,216,177,163, 8, 33,143, 81, 74,191,143,196,200,246,155,111,190,129,201,100,130,209,104, -132,201,100,130,195,225, 8,122,157,219,237,174,181, 97,195, 6, 68, 71, 71, 67,150,101, 80, 74,171, 84, 96,223,138,231,114,185, -208,183,111,223, 90, 65, 45, 9,151,171,214,230,205,155, 85, 1,228,205, 37,203, 50,116, 58, 29, 56,142, 83, 28, 71, 56, 28, 14, -244,232,209,163, 86,176, 17, 93,147, 38, 77,134, 41,226,138,231,121, 44, 91,182, 12,201,201,201, 72, 74, 74,130,217,108,134,209, -104,188,146,188, 71,116,116, 52,190,250,234, 43,196,197,197,161, 65,131, 6, 16,132,223,139,158,236,114,163,220,106, 71,198, 45, -139, 48,122,109, 39,196,155, 37,184, 92,242, 13, 95,185,236,118,123,252,158, 61,123,212,239,189,123,247, 54,183,107,215,238,167, - 64,231,107, 21, 96,178, 44, 39,108,217,178, 5, 6,131, 65, 91,231, 46,203,232,216,177, 99, 66,136,114,157,158,144,144,176,164, - 75,151, 46, 98, 98, 98, 34,111, 48, 24, 96, 50,153, 16, 27, 27, 11,189, 94, 15,183,219, 93,223,229,114,213,183,217,108,119,158, - 63,127, 94,254,226,139, 47,222, 32,132, 60, 68, 41, 93,115,147,137,171, 91, 82, 82, 82,254, 1, 0, 5, 5, 5, 47, 24, 12,134, -227,145, 18, 89, 10,106,212,168,129, 26, 53,106, 32, 45, 45, 13, 67,135, 14,141,109,219,182,237,223, 27,216,108,143,231, 3,246, -128, 74,128,227,234,238,223,191, 63,193,107,192,198,223,122,235,173,231,252, 25, 94,158, 54,224,212,209,163, 71, 59,132,136, 43, - 87,171, 86,173,119, 6, 12, 24,112,255,188,121,243,162, 1,224,223,255,254, 55, 6, 14, 28,136, 90,181,106,193, 96, 48, 64,146, - 36, 72,146, 4, 81, 20,213,119,175, 78,218,175,150,175, 85,171,214,180,129, 3, 7,222, 55,119,238,220,104, 0,248,232,163,143, -144,158,158,142,132,132, 4, 68, 71, 71, 35, 42, 42, 10, 58,157,174, 10,183, 23, 39,213, 18,206,233,157, 59,163, 55, 0,241,223, -255, 70,108,108, 44, 82, 71,142,132, 94,146,192,239,218,133,152,152, 24,111, 78,205,113,207,205,205,197,185,115,231,252,198,157, -231,121, 68, 69, 69, 85,218,143, 21, 21,129, 92, 33, 53,238, 10,231,162, 69,139,212,184,155,205,102, 63,113,231, 66,185,139,124, -173, 90,181,166,165,167,167,223, 55,127,254,124,149,179, 79,159, 62,136,143,143, 71,116,116, 52, 36, 73,130, 78,167,243,151, 71, -215,132,147, 65,163,192, 82,214, 70,153, 76,166,206, 31,124,240, 1,120,158, 87, 59,200,168,168, 40,181,112,232,116,186,176,109, -232,140,140,140, 30, 11, 22, 44, 80, 57,109, 62,231, 92,137,104,243,226,239,117,231,157,119, 46, 90,181,106, 85,148, 32, 8,184, -116,233, 18, 54,111,222,140,216,216, 88, 24, 12, 6, 12, 27, 54,140,235,213,171, 87,124,175, 94,189,150, 16, 66, 70, 83, 74,191, -187,154, 68,163,148,170, 98,195,100, 50,193,100, 50,105,117,114,176,114,229, 74, 8,130, 80,165,224,122, 87,100,229,123, 98, 98, -162, 86, 71, 10,219,182,109, 3,199,113,234,245,162, 40, 98,213,170, 85,120,254,249,231,113,238,220, 57,245, 55, 13,225, 36, 70, -163,209,160,136, 43,143, 3,168, 52, 54, 68, 16, 4,226, 57, 78,195, 89,100, 42, 8, 2, 46, 94,188,136,154, 53,107, 34, 46, 46, - 14, 81, 81, 81, 85, 42,172,211,229, 70, 65, 81, 41,134,127,219, 6,101,214, 18,148,148, 18, 56,156,206,155,174,178,125,240,193, - 7,146, 44,203,138,224, 86, 93, 65,143, 43,133,199, 31,127, 60, 94, 43,151,193, 96,192,154, 53,107,212,178,164,116, 2, 74,163, -232,125,188,110,221,186, 90,202,209,171,203,151, 47,143, 90,186,116,169, 58,216,209,233,116, 48,153, 76,136,137,137, 65,108,108, - 44,226,227,227,145,144,144,128,182,109,219,242,143, 62,250, 40,223,173, 91,183, 87, 1,220, 52, 2,139, 16, 18, 99, 48, 24, 38, - 46, 95,190, 92, 2,128,190,125,251, 78,180, 90,173,207, 2, 40,185, 90,145,197, 3,203, 8, 33, 15,122,242, 78,223,175, 95, 63, -221, 63,255,249, 79,220,118,219,109, 24, 55,110, 92,252,187,211,166, 13, 6,176, 34, 88,155,227,141, 89,179,102,197, 42,101, 72, - 25,172, 41,175,178,178, 50, 60,247,220,115, 33,219,100, 0, 92, 74, 74,202, 95,254,245,175,127,153,149,227,241,241,241,151,181, - 69,190,239,129, 92, 82, 47, 87,232,145,249,243,231,171,156, 9, 9, 9,106, 27,167,188,126, 61,248, 19, 54, 44,158, 1, 83,124, - 45,140,124, 97,106,216,225,236, 8,160, 35,199,193,221,186, 53, 12, 6, 3, 18,140, 70, 64,146,224,246,136, 43, 45,225,244,229, -228,121, 94,141, 39,165, 20, 21, 21, 21, 40, 45, 45,133, 44,203,176,219,237,104,223,190, 61, 8, 33,184,229,150, 91, 2,185, 66, -151,197,189,102,205,154,151,197,221,187,157,246, 30,104, 6,226, 76, 73, 73,121,228,131, 15, 62,240,155,158,130, 32, 64,146, 36, - 44, 90,180, 72,147,147, 29, 14,103,152,249,206,160,197,193, 82, 70, 38,121,121,121,216,189,123, 55, 68, 81, 68, 82, 82, 18, 58, -118,236,168, 88,211, 16, 4, 1, 28,199, 97,240,224,193,229,190, 23, 75,146, 84,248,217,103,159, 53,240, 52, 10,202, 29, 6, 28, - 0,172, 95,191, 30,171,210,211, 97, 3,208, 48, 43, 11,173, 50, 50,112, 72,167, 3, 15, 32,169,168, 8, 60,207,251,229,244, 94, -155,229,231, 78, 8,179,201,100,154,151,147,147, 19, 37,203, 50,138,138,138, 0, 0, 25, 25, 25,224,121, 30,191,252,242, 11, 38, - 79,158,140, 47,190,248, 2,171, 87,175,214, 55,107,214,108, 30, 33,164, 29,165,212,226,197, 95,133,243,158,123,238,201,115,187, -221,117,252, 37,152, 36, 73, 0,128,232,232,104,232,245,122,152,205,102,191,194,197,223,221, 21,178, 44, 99,200,144, 33, 32,132, -128,231,121,117, 61,146,119,101, 83, 62,239,221,187, 87, 19,167,219,237, 70,183,110,221, 0, 0, 38,147, 9,102,179, 25,223,125, -247,187,126,108,215,174, 29,236,118, 59, 18, 19, 19,177,111,223, 62, 77,156,103,206,156,193,146, 37, 75, 32, 73, 18,226,226,226, - 32,138,162,180,126,253,250,215,140, 70, 99, 12,207,243,136,139,139, 67, 70, 70,198, 44,101,253,156,219,237,150, 87,173, 90, 21, - 29,136, 83, 16, 4, 88,173, 86, 85, 96,197,197,197, 85,117,226,220, 46,156, 58,119, 17,105,173,108,232,221, 67, 66,206,234, 50, -236,216,224, 14, 25,206,171,197,181,224, 60,113,226, 4,142, 28, 57,162, 78,175, 42,211,225,223,175, 95, 18,119, 52,111,151, 73, -233, 56, 41,165,208,185, 46,161, 75, 43,178, 19,110,124,182,125, 63,125, 39, 84, 56, 5, 65,128, 44,203, 88,189,122, 53,142, 31, - 63,142,245,235,215,163,162,162, 2, 53,107,214, 68,108,108, 44, 58,119,238,140, 71, 30,121,196,175,192,242,229,148,101,121, 9, - 33,164,245,200,145, 35,201, 55,223,124,131,162,162, 34,148,150,150,194,225,112,192,225,112, 64, 20, 69,117, 64,145,146,146, 2, -142,227,104, 69, 69,197,146,155, 33,143, 60,237,136, 0, 96,194,251,239,191,159,208,190,125,123, 0,192,251,239,191,159,240,200, - 35,143, 76, 0,240, 42, 0,215,149,132,211, 0,212, 65,229,197,171, 81,249,194,235, 86, 43,121,115,229,202, 33, 0, 70,125,249, -229,151, 24, 49, 98, 4,222,153, 54,173,149,175,192,242,230,116,187,221,216,181,107, 23,118,238,220, 9,151,203, 5, 89,150,213, -119,239,207,202,123, 32, 49,232, 19, 78, 98,177, 88, 42,118,238,220,105, 94,184,112, 33,226,227,227,209,160, 65, 3,213,101,242, - 21, 3,202, 43, 84,220, 45, 22, 75,197,190,125,251,204, 75,150, 44, 65,124,124, 60,234,215,175, 15,163,209,168,114, 74,146,132, - 61,223,173,194, 19,163,238, 65,225,209,159, 48,235,217, 7, 52,135,115,122,231,206,232, 12,192, 52,111, 30,202,154, 55, 71,195, - 62,125, 32, 72, 18,108, 63,254, 88, 25,190,222,189, 65,117, 58,136,219,183,107,230,220,181,107, 23, 40,165, 72, 77, 77,133,213, -106, 69, 76, 76,140, 26,214,117,235,214,225,238,187,239,198,226,197,139,209,185,115,103, 77,113,223,187,119,175, 26,247,122,245, -234, 93, 22,119, 69,196, 52,108,216, 16, 23, 47, 94, 68,163, 70,141,130,114,150,149,149, 85,228,230,230,154, 23, 47, 94,140,248, -248,120,212,173, 91, 23, 70,163,177,138, 19,246,250,235,175, 87,225,104,221,186,245, 85,115,134,155,239,215, 0,183, 3,240,118, - 30,236, 0,116, 94,239,133, 0,118,249, 57, 79, 57, 46, 2,104,227,249, 77, 6, 80, 10, 32,214, 15, 95, 32,158, 34,143,195,154, -232,115,190,239,255, 84, 21, 88,132, 16,165, 54,246, 4,240, 61, 0, 52,107,214, 12,197,197,197,136,138,138, 66,199,142, 29, 81, - 88, 88,168, 90,135,110,183, 27,183,221,118, 27,222,126,251,109,112, 28, 7,167,211, 9, 74, 41,120,158,199,189,247,222,235,207, -122,113, 3,192, 29,119,220,129,223, 60, 7, 90,101,100,160,110,221,186, 56,233,229,196,164,165,165, 97,210,164, 73,234,180, 22, -165, 20, 86,171, 21, 15, 62,248, 32, 31,196, 29,121,234,163,143, 62,138,145, 36, 9,103,206,156,129, 50,210,148, 36, 9,199,142, - 29,195,204,153, 51,241,200, 35,143,224,248,241,227,168, 95,191, 62, 38, 78,156,104,158, 56,113,226, 83, 0,178,130, 52,150,201, -159,127,254,185, 90,168,236,118, 59, 74, 75, 75, 81, 90, 90,138,197,139, 23, 3, 64, 21, 7, 75,235,180,153,219,237,198,234,213, -171,253,142, 14,125, 71, 12, 90, 71, 11,110,183, 27, 59,119,238, 84,197,153, 32, 8,170,251, 68, 8,193,254,253,251,193,113,156, - 42, 12, 67,245, 61, 74,220,146,147,147, 97, 48, 24, 32,138,162,244,195, 15, 63, 76,174, 85,171,150,105,212,168, 81, 40, 45, 45, - 69, 74, 74, 10,250,247,239, 15,183,219, 13,135,195, 17,114,237,156, 32, 8, 32,132,160,102,205,154,136,137,137,241, 51,213, 41, - 99,208,144,139, 0, 42,195,152, 49,192,132,255,204,186, 57, 70, 48, 78,167, 19, 21, 21, 21, 85,196,213,246, 77,159,198,237,248, -254,155,184,220, 93,155, 42, 51,249,208,221,191,119,199, 48,180,108,251,240,111,169,173,110, 37, 63,236,205, 11, 62,157,205,243, - 60,198,143, 31,143,204,204, 76, 12, 31, 62, 28,235,215,175,199, 75, 47,189,132, 71, 30,121, 68,235, 8,217, 59,156,255,121,248, -225,135,255,178,124,249,242, 91,199,143, 31,207, 41,117,210,104, 52,130, 16, 2,155,205, 6,171,213,138,138,138, 10, 28, 60,120, -208,253,232,163,143, 30,182,219,237,255,185,137, 6,155,143, 63,247,220,115,205, 31,122,232, 33,245,192, 67, 15, 61,132,253,251, -247, 55,159, 49, 99,198,227,253,250,245,123, 63, 92, 23,203, 0,212,173, 81,171,214, 12, 0, 48,156, 61,251,156, 21, 56, 5, 0, -111, 2,233, 50,112,247,218,181,107, 1, 0,245,235,215,135, 27,104, 78,128,143,120, 96,153, 11,248,214,159,131,229,114,185, 80, - 81, 81,113,153,152,242,247, 30, 42,156,148, 82, 74, 8,113,243, 60,143,180,180, 52,164,167,167, 67,167,211,193,108, 54,171,237, -188,111,155, 20,168,163,245,109,146,120,158, 71,147, 38, 77,208,167, 79, 31, 72,146, 4,147,201,164, 14, 72, 21,135,181,117,183, -190, 88,182,248, 29, 60,156,222, 18,255,215, 61, 25,159,237, 45,210, 20,206, 59, 57, 14, 93, 37, 9,150,102,205, 16, 29, 29, 13, -206, 96, 0,241,154,202,162, 70, 35, 56, 31,135, 60, 88, 56,211,210,210,112,246,236, 89,228,231,231, 35, 63, 63, 31, 28,199,161, -107,215,174,208,233,116, 16, 4, 1,121,121,121,120,227,141, 55, 96,183,219, 67,113, 82, 0,110,142,227,208,164, 73, 19,244,238, -221, 27, 58,157, 14, 70,163,241,178,169, 65, 81, 20, 81, 90, 90,138,198,141, 27, 99,229,202,149,184,243,206, 59, 67,114, 54,111, -222, 28, 61,123,246, 84,103, 20,148,165, 58, 74,122,122,196,157,154, 14,222, 55, 37,105,225, 92,254,131, 13,175,255,247, 44,202, -237,133,248,173,220, 93,101, 6,184, 94, 77, 61, 78, 44, 25, 88,221,238,177,170, 65, 40,165,155, 2,156,150, 72, 8,201,241, 42, - 27, 25,132,144, 28,239,247, 64,231,121, 62,118,159, 48, 97, 66,135,236,236,236, 41, 93,186,116, 89,182,109,219,182,165,129,248, - 2,241, 76,152, 48,161,101,118,118,246, 20,239,243,253,252,207,229, 14, 86,101, 57, 38, 20, 94,187,187,215,169, 83, 71,157,119, - 54,155,205, 85, 58,105,151,203,133,255,252,231, 63, 72, 74, 74, 82,215,232, 36, 39, 39, 7,172, 36,138,219,113,159,103,173,210, - 65, 73,194, 73, 0, 45, 60, 13,129,203,229,130,195,225,192,138, 21, 43, 16, 29, 29,173, 86,116,179,217, 28, 52, 99,116, 58, 93, -247, 59,238,184,131, 43, 45, 45, 85, 69,137, 40,138, 56,118,236, 24,222,125,247, 93, 60,244,208, 67,104,220,184, 49,100, 89, 70, - 73, 73, 9,122,246,236, 41, 24,141,198,238,193, 4,150,226, 76,127,254,249,231,234,212,165,210,120, 41, 80, 4,150,214,117, 48, -138, 24, 26, 50,100, 8,120,158,247,235, 90,121, 55,104, 91,182,108,209,204,217,185,115,103, 24,141, 70, 53,189,190,253,246,247, -246,185, 99,199,142,160,148, 34, 49, 49, 17,223,127,255,125,200, 70,183,109,219,182,112,187,221, 72, 74, 74,130, 36, 73,100,253, -250,245,175,121,196, 21, 17, 69, 17, 63,254,248, 35,246,239,223,143,196,196, 68,152, 76, 38, 77, 83,187,165,165,165, 69, 35, 70, -140,112, 41,194, 15, 0, 74, 74, 74,206,252,222,185,219,139,239, 29,240,153, 79, 88, 28,197, 55, 67,175,237,112, 56, 80, 94, 94, -142,195,135, 15,195,106,181, 66,150,101, 28, 61,178, 79, 55,229,141,113,228,245,231,187, 2, 0, 94,155,125, 6,214,173,181,213, -107,118,124,249, 87,115,175, 7, 22,125, 12, 32, 53, 24,183,213,106,133,195,225, 64,106,106, 42,114,115,115, 81, 86, 86,134, 62, -125,250, 92,230,144,106,116,117,236,132,144,222,131, 7, 15,222, 50,125,250,244,134, 45, 90,180, 32,101,101,101, 40, 43, 43, 67, -121,121, 57,148,207,251,246,237,163, 75,151, 46, 61, 94, 94, 94,222,139, 82,106,191, 73,166, 6, 7,246,235,215,175,255,219,111, -191,125,217,111,111,191,253, 54, 14, 28, 56,208,127,237,218,181,249,183,222,122,235, 55, 90, 69, 86, 3, 64,231, 18,197,151, 62, -253,244, 83, 9, 0,122,247,238,253, 82, 3,167,243,249,124,192,222,162, 85,171,251,182,109,219, 86, 67, 25,152,213,168, 81, 3, -148, 82,190,188,188,188,198, 29,119,220,113, 31, 2, 8, 44,167,211, 9,171,213,170,254,191,247, 20,161,247, 98,100,142,227, 96, - 54,155,227,110,189,245, 86,155,103,224, 91,118,240,224, 65,127,107,240,220,149,119,141, 1,181,106,213,130, 40,138,208,235,245, - 85,214,223,132,114, 49,252, 64,174,236, 71,168, 58,237,244,243,247,171,113,241,200, 15,144, 8,133, 91,118,194,237,114, 64,118, - 58,192,195,141, 3, 71, 79,163, 69, 74,200, 54, 68, 13, 39, 55,123, 54,228,142, 29,209,104,208, 32,112,162, 8,199,142, 29,149, -142,208,192,129,128, 78, 7,227,230,205, 90,195, 89, 37,238,185,185,185, 24, 55,110, 28,166, 78,157, 10,131,193,160, 14, 84, 15, - 30, 60,136, 79, 62,249, 4,253,250,245,211, 28,119, 66, 42,167, 90,149, 52,156, 48, 97, 2, 10, 10, 10, 48, 99,198, 12,116,232, -208, 1,162, 40,226,226,197,139,184,227,142, 59,112,238,220, 57, 77,156,148,186, 17, 31, 31, 15, 81, 20, 17, 21, 21,117,217, 26, - 49,165,223, 11, 39,143,188, 57,159,189, 55, 10, 31,110, 61, 8,192,141,115, 75,186, 87,233,143,166,124,114,228,154,212, 67, 47, - 13, 66, 66,156,151,161,145, 79, 57, 79, 73,228,168,236,236,236, 41,190,215,135,226,243,254,221,231,122,187,143, 40, 59, 23,114, -138, 80, 17, 67,110,183, 27,102,179, 89, 93,111,229,219,145, 42,191,121,143,110, 66, 53,230,110,183, 91, 45, 0,188,159,209,248, -129, 3, 7,112,224, 64,213,155,105, 62,248,224,131,160,156, 46,151,235,182,184,184, 56,156, 61,123,214,187,113,193,107, 19, 39, -226,255, 70,141, 82,197,149, 78,167, 67,102,102, 38,238,186,235, 46,216,108,182,219, 52, 52,186,234,186, 51,183,219,173, 58,117, - 58,157, 14,111,188,241, 6,246,239,223, 95,101, 97,187, 78,167,147, 53,100, 56,214,172, 89, 19,210,193,146, 36, 73,117,241,180, -112,238,217,179,231,178,181, 56, 74, 99,251,191,255,253, 79,237,108,181,186, 98,178, 44,195,104, 52, 18, 73,146,136,209,104,140, - 25, 53,106, 84,149, 53, 62,146, 36, 65,175,215,171,233, 19, 10, 67,134, 12, 9,218, 58, 61, 62,248,182,126,184, 73,225,114,185, - 96,179,217,112,233,210, 37, 76,158, 60,217,115,116,226, 89, 0,232,216,247, 53, 60,254,112,167,122, 62, 54,179, 82, 2, 67,182, -148,241,241,241, 88,188,120, 49, 68, 81, 68, 78, 78, 14, 98, 98, 98, 48,116,232, 80,196,196,196,224,197, 23, 95,196, 3, 15, 60, - 16,214,226, 84, 74,105, 9, 33,164,207,115,207, 61,183,101,218,180,105,245,234,215,175, 15,135,195, 1,187,221, 14,135,195,129, -163, 71,143, 98,217,178,101,167,202,203,203,251, 80, 74, 75,110, 18,113, 85,247,214, 91,111,253,235,226,197,139,225, 61, 0,240, -110,151, 22, 47, 94,140,110,221,186,253, 53, 47, 47,239, 23, 0,249, 90,120, 79, 2,143,191, 51,117,106, 61,101,250,126,234,212, -169,245,254, 62,126,252,227, 0,222, 59,176,119,239,199, 99,198,140,121,110,249,242,229, 85,174, 25, 51,102, 12, 14,236,221,251, -113,160,122,174,184,161, 60,207,227,217,103,159, 13, 21, 4, 17, 0,108, 54, 27,250,244,233, 19,112, 64,213,162, 69, 11,200,178, -172,184,213,151, 45,108,246,110,223, 53,182, 31,202,102,149,234,160,252,196,174, 53, 24,255,196,112, 64,118, 1,142, 50,192, 81, - 14,234, 40, 7,181,151,129,232, 12,160,206,138,144, 3, 63, 37,156, 49, 49, 49,149, 2, 72,175, 7,188,250, 31, 98, 52,130,120, -156, 43, 45,225,244,141,251,137, 19, 39,240,228,147, 79,194,110,183, 99,232,208,161,168,168,168,128,205,102, 67, 69, 69, 5, 26, - 54,108, 8,171,213,170,197, 17, 84,182, 51, 80, 93,192,231,158,123, 14, 29, 58,116,192, 27,111,188,129, 23, 95,124, 17, 13, 27, - 54,196,227,143, 63,142,101,203,150,161,101,203,150, 40, 47, 47, 15,201,169,244,157,102,179, 25,130, 32,168,109,176,119, 94, 41, - 2, 43, 84,220,131,113,130, 84,110,135,229,155,239,147,255,175,249,245, 86,103,115,180,136, 44,175,243,114,149, 49,105,102,102, -230,203,132,144,156,204,204,204,151,179,178,178,246,107,225, 11,240,251, 42,207,251, 32,175, 99,185, 33, 5,150,119,133, 86, 70, - 51, 74,102, 40, 2, 70, 17, 88, 57, 57, 57, 88,177, 98, 69, 21, 1, 21, 74, 96, 29,240,100,110,115,207, 40, 76,249,222,204,237, - 70,143, 30, 61,208,186,117,235, 42,238, 85, 40,135,136, 82,138, 3, 7, 14, 96,203,150, 45,184,235,174,187, 80, 94, 94, 14,167, -221,142,103,127,250, 9, 45, 70,142,132,221, 51,165, 25, 21, 21,133,119,223,125, 87,115,135,163,196, 63, 42, 42, 74,181,231, 69, - 81, 68,219,182,109, 33, 8, 2,126,252,241, 71,124,253,245,215, 97,221, 82,231,118,187,113,223,125,247, 85, 17, 67,190, 2, 75, -169, 60,171, 86,173,210, 28,206, 30, 61,122,192,108, 54,171,233,246,197, 23, 95,168,191,119,239,222, 29,132, 16, 36, 37, 37, 33, - 39, 39, 71,115, 56, 21,241,196,243, 60,202,202,202,144,155,155, 11,157, 78,167,174,207,208,235,245,106,250, 48, 4, 23, 88,229, -229,229,176,219, 43,205,158, 99,199,142, 85,249,221,238,184,114, 19, 72, 41, 71, 22,139, 5, 27, 55,110,196, 39,159,124,162,142, -144,189,197,118,152,163,200, 34, 66, 72,223, 23, 95,124,113,227,155,111,190, 89, 59, 33, 33, 1, 74,181, 76, 0, 0, 32, 0, 73, - 68, 65, 84, 1, 14,135, 3, 39, 78,156,192,194,133, 11,207,148,149,149,245,165,148, 22,221, 68, 89, 68,243,242,242,138, 19, 19, - 19, 21,123, 62,198,110,183, 19,207,160,137, 2, 80,132,100, 25, 0,135, 22,247, 74, 4,122, 14,189,239,190,222,222, 11,205,159, -123,238, 57,236,216,177,163,183,184, 98,197, 62, 39,176,145, 95,177, 34,109,198,140, 25,234, 57, 51,102,204,192,231, 43, 86,108, -144,129,141,193,202,146,213,106, 85,219,176,221,187,119,107,110, 35,130, 13, 36,149, 37, 21,129,214, 92,133,179,100,129, 82, 74, -211,210,210, 42,215, 20,122,218,178,219,238,188, 7,211,223,251, 0, 81, 28,197,189, 61,154, 32,201, 44,128, 24,227, 33,245,200, - 4,137,245,152,180,147,219,132, 28,240, 82, 74, 81,231,133, 23, 16,111, 52,194,230,113,170,164, 33, 67, 0,157, 14,134,181,107, - 33,138, 34,172, 35, 71, 2,146, 4,227,194,208,219,244,121,199,253,200,145, 35,216,186,117, 43,154, 53,107,134,195,135, 15,171, -251, 84,113, 28,167, 14,176,181,198,221, 83,118, 32, 73, 18,206,158, 61,139,140,140, 12, 72,146,132, 15, 63,252, 16,155, 54,109, -194,139, 47,190,136, 49, 99,198,160, 87,175, 94,151, 25, 10,254, 56, 91,182,108, 89, 37,143, 2,173,143, 10, 39,143,252,113, 42, -198,209,149,228,251, 53,173,176,191,187, 69,254,166,204, 6,249,113,158,110, 71,229,218, 40, 91, 86, 86,214,254,172,172,172, 12, - 66, 72, 78, 86, 86, 86, 70, 16, 7,107, 80, 8,135,107, 16, 42,215, 92, 5,111,163,189, 10, 27, 69,229, 26, 44, 21,193,110,207, - 52,155,205,248,203, 95,254,130,151, 94,122, 9, 9, 9, 9, 72, 77, 77,213, 84,160,131, 97,211,166, 77,216,180,105, 83,149, 99, - 43, 87,174, 12,122,141, 36, 73, 7,147,147,147,219, 61,240,192, 3,184,120,241, 34, 10, 10, 10, 16, 19, 19,131, 22,239,188,131, -189,127,251, 27,218,204,155, 7,174,119,229,157,239, 81, 81, 81,200,203,203, 67, 84, 84,212,193, 80, 65, 85, 92, 59,101,171, 3, -197,142, 87,210,133, 42,126,102, 24,139, 50, 40,165, 88,181,106, 85,208,181, 87,222,119,177,104,229,220,190,125,251,101, 14,150, -146,222,202,111,202,130,104,173, 48, 24, 12, 84, 17, 88, 70,163, 17,241,241,241, 85,132, 85, 56, 14,214,207,217,217,107,121,131, - 33, 65, 20, 69, 72,162, 8, 65, 20,225,176, 88,138, 83,159,122,170, 31, 0, 44, 92,184,112,171,201,100, 82, 55, 34, 21, 69, 17, -229,229,229, 69,247,221,119,223, 13,239,108,217,237,118,117,237, 82,152,141, 72,200,115, 28, 14, 7, 36, 73,194, 87, 95,125,133, -219,111,191, 29,237,219,183, 87,243, 90,153,226,208, 58, 69,232,243,223,167, 9, 33, 3,102,205,154,181,105,250,244,233,177, 22, -139, 5, 11, 23, 46, 44, 41, 45, 45, 29, 64, 41, 61,125, 51, 9, 96, 79,124,254,226,213, 70,125, 12,160,134,231,107, 9,128,135, -195,189,123,176,121,171, 86, 15, 47,244,211,193, 47, 92,184, 16,135, 15, 31,126, 24,123,247,110,172, 7,204,123,233,165,151, 26, -183,111,223,190, 30, 0,188,244,210, 75, 39,235, 1,243,130,149, 7,197,193, 10, 53,144,245, 55, 96,210, 50,179, 16,232,206,193, - 43,237,100, 21,145,209,123,216,104,156,255,245, 8, 90,152,127, 67,114,156, 25,238,178,243,144,250, 76,198,222,223,140,152, 57, -111, 77, 88,241,208, 69, 69,129,120,220, 54, 73,146, 0,131, 1,188, 94,255,123, 56, 61,107,178,194,225, 20, 69, 17, 7, 15, 30, -132,209,104,132, 44,203,151,137, 41,173,179, 9,222,121,165,184, 75,211,167, 79,199, 11, 47,188,128, 15, 63,252, 16,123,247,238, - 69,155, 54,109,208,183,111, 95,156, 63,127, 30, 63,253,244, 19,108, 54,155,230,112,122,247, 23, 7, 14, 28,192,186,117,235,112, -232,208, 33,156, 60,121,242,138,242,199,151,211,183,223, 95,180,238, 87,140,238,151,122,205,234,162, 63, 13, 18, 4,185, 62,238, - 17,148,245, 80,138, 32,242,253, 14, 32, 78, 57,150,153,153,249,178,214,235,188,191, 43, 14, 88, 16,225,117,185,192,162,148, 18, -127, 98, 72, 73,116,239, 10,170,124, 86,220, 18,147,201,132,212,212, 84, 77,149,158,231,121,212,183, 88, 20,129,162, 58, 87, 10, -134, 15, 31,142,180,180,180, 42,107,176, 66, 85,110,155,205,182,229,187,239,190,107, 51,100,200, 16, 46, 47, 47, 15,146, 36, 85, -222, 86,219,165, 11,218,204,155,135,125,227,199,163,199,177, 99,168,112, 58,149, 91,219,157,229,229,229, 91, 52,100,182,186, 48, - 81, 17, 17,202, 66,126,165, 50, 79,158, 60,217,239,190, 45,193, 42, 94,160, 17,162,247,139,227, 56,205, 98,200,237,118,171, 29, - 41,207,243,234,139, 16,162,142,118,195,117, 49, 20,219, 92,225,229, 56, 14, 53,106,212, 80, 43,163,178, 6, 64,171,192, 18, 12, -134,132, 89,195,135, 55,118, 78,156,136,232,185,115,225,122,254,121,188,222,181,171,250,187,201,100, 50,110,219,182,173,145,193, - 96, 0,165, 20,133,133,133,184,255,254,251,111,138, 93,199,101, 89, 86, 23,136, 71, 26,159,126,250, 41,142, 29, 59, 6,135,195, -129,183,222,122,171,138,184,242,126, 93,161,240, 56,218,174, 93, 59,247,128, 1, 3,176,125,251,118,232,245,122, 39,165,244, 40, -243, 36, 67,227,231,189,123, 87,152, 76,166, 7, 1,152, 47, 94,188,200,215,168, 81, 3, 70,163, 17, 86,171,245, 18,239,185, 83, - 48, 31,176, 27,156,206,169,247,223,127,255, 12, 0, 16,156,206,169,193,246,193,186, 26,129, 21,202,193,242,238, 84,175,212,185, -242,199, 41,138, 34, 4,158,199,178,233,175,162,133,185, 24,237,110, 49,161,162, 40, 31, 81, 49, 53, 65, 98, 27, 96,230,188, 53, - 56,144,255, 91, 88,156,220, 39,159, 64,174, 87, 15,226,131, 15,130, 68, 69, 65,159,147, 3, 73,146, 96,253,203, 95, 64,116, 58, - 24, 23, 44,184,162,112,150,151,151, 7,116,170,180, 58, 88,190,156,146, 36,161, 93,187,118,104,210,164, 9, 54,110,220,136,118, -237,218,225,240,225,195, 56,124,248, 48,242,243,243,177,119,239, 94, 92,184,112, 65, 51,167,146, 71,159,124,242, 9, 10, 11, 11, - 33, 73, 18, 74, 74, 74,112,252,248,241,128,235,159,195,201,119, 5, 81,131, 42, 55,210,174,159,104,184,102, 2,203,159, 6,241, -131, 34,159,181, 78,202,119,187,143,216,241,253,238,123, 62, 0,156, 7,192,135,184,206,247,123, 81, 86, 86,214, 70,197,249,242, -240,242,129,214, 95, 85,113,176,124,251,133,123,238,185,231,178, 94, 57, 42, 42, 10,247,220,115, 15,120,158, 71,108,108, 44,106, -212,168,129,166, 77,155,134,220,100,211, 35,174,228, 17, 35, 70, 92,198,169,215,235,113,239,189,247, 98,233,210,165, 0, 0,223, -117, 9, 95,125,245, 85,168, 41,152,217,127,249,203, 95, 70,247,233,211, 39, 54, 37, 37, 5,103,206,156, 81,239,116, 36,189,122, -161,251,209,163,176,203, 50, 76, 38, 19,142, 30, 61,138,217,179,103,151, 57, 28,142,217,161, 50,219, 91, 96, 41,110, 13, 33, 68, -237,176, 8, 33,244,192,129, 3, 97,183, 62, 90,196, 85,184, 80, 68,149,183,200,122,226,137, 39,212,239,225, 52,146,146, 36,209, - 65,131, 6,169,207, 32,140,139,139, 67, 66, 66, 2,206,157, 59,167, 54, 26, 38,147, 73, 21, 87, 90, 4,150,168,211,193,245,218, -107, 16, 26, 52,192,175,123,246,160, 97,124, 60,248,230,205,171,140, 16, 45, 22, 11,210,211,211, 33, 8, 2,230,206,157,123,197, -194,224,122,131,114,247, 96,106,106,106, 68, 55,171,116, 56, 28,120,236,177,199,252,174,127, 84, 22, 61,187,221,110, 56,157, 78, -173,119,144, 94,145,139,118,179, 35, 53, 53, 53, 96,253, 9,148, 62,202,150, 12, 60,240,230,175,191,254,218,170, 70,141, 26,232, -223,191, 63,190,254,242,203,175, 38,122,237, 27,102, 5, 78, 25,206,158,125,214,243,249,116,168,188, 80,238, 34,140,124, 62,146, -203,220,171,171,157, 30, 34,164,242,206,229,111, 23,189,135, 22,166, 66,180,169, 31,133,173, 59,126, 66,167,122, 20,212, 38, 93, - 41, 43,204,102,115,101, 59,105, 50,169,119, 15, 18, 66, 64, 12, 6, 32,204,253, 25, 21, 78,165,126, 40,109,239,213, 58, 88, 74, -220,149,116,124,244,209, 71,241,210, 75, 47,161,127,255,254, 56,124,248, 48, 54,111,222,140,188,188, 60,140, 27, 55, 14, 45, 91, -182, 68,122,122,186,166,112, 42,124, 95,124,241, 5, 46, 93,186,164, 14, 70, 43, 42, 42,240,218,107,175, 93, 81,220,189,243, 93, - 21,148,107,135, 1, 0, 62, 92,123,226,122,171,142, 63,132,248, 30,238,245,213, 14,191,189,216,215, 95,127,237,247,153,122,131, - 7, 15, 46,191,251,238,187,113,232,208, 33,152, 76, 38, 52,109,218, 20, 54,155, 45, 96,103,232,253,180,237, 47,191,252, 50, 32, -231, 61,247,220,131,134, 13, 27, 86,113,174, 2,109,125,224,251, 4,111, 74,169,133, 16,242, 84,247,238,221, 63, 88,191,126,189, -190,101,203,150, 40, 46, 46,134,219,237,198,132, 9, 19,240,254,251,239,195,100, 50,225,248,241,227, 24, 52,104,144,213, 98,177, - 60,229,189, 7,150, 63, 78,143,112,171, 34, 34,148,233,194, 42,114,186,168,136, 4, 25, 33,248,125,210,248,172, 89,179, 48,127, -235, 86,140,245,114,112,252,225,253,247,223,215,196, 73, 41,197, 59,239,188, 19, 49,206,157, 59,119, 46,244,201,159,217,233,233, -233, 56,121,242,100,149,105,193, 96, 2,203,151, 83, 18, 4, 68,207,153,131, 83, 63,253,132, 70,183,221, 6,201,237, 6, 90,181, -250,189, 16, 10, 2,234,212,169,131,183,222,122, 11, 53,107,214, 68, 82, 82,210,101,101,234, 90, 61,181, 62,146,156,162, 40,110, -126,231,157,119,186,253,235, 95,255,226, 12, 6, 3,118,239,222,141,226,226,226,203,132,146, 42,148, 19, 6, 65, 46, 94,229,201, - 87,185, 44, 88, 56, 43, 42, 42, 48,123,246,108, 77,249, 62,127,254,252, 43,138,187,183, 83,162, 69,108,221,136,121, 20, 66, 92, -197,156, 56,113,194,223,162,243,101,240,185,211,207, 31, 39, 1,246, 45, 93,186,180, 85,171, 86,173,148,186, 55,106,218,127,255, -251,192,100,171,181, 2,168,220,124,212, 35,198, 66,134,147, 82, 74, 12, 6, 3,210,210,210,224,116, 58,195,114,177,188,207,245, - 13,167,178,214,232,106, 6,122,254, 56, 57,142, 3,207,243, 56,186,237,107,100, 12,168,141,109, 59,243,176,254,148, 9,245,162, - 10, 80,187,188, 16,238,194, 95,240,236,125,237, 48,115, 69,229,147, 14,246,238, 14,205, 73, 8,129,249,233,167, 65,140, 70,232, - 87,172,128, 40,138,176, 61,249,100,229, 26, 44, 79,219, 86,241,230,155,128, 78, 7,253,139, 47,106, 10,167,239, 76,141,178, 28, -196, 91, 92, 5,115,176, 2,197, 29,168,220, 54,225,194,133, 11,248,232,163,143,240,200, 35,143,224,252,249,243, 56,126,252, 56, - 14, 29, 58,132,101,203,150,105,238,227,124,243, 40, 51, 51, 19,207, 63,255, 60, 56,142, 67, 90, 90, 26, 38, 79,158,140, 46, 93, -186,132,157, 71,190,249,238,139, 80,238, 85,117,212,205,155, 13, 97,219, 4, 28,199,161,102,205,154,234,230,154,222, 29,108,184, -214,181,183,152, 49, 24, 12, 48, 24, 12, 85,182, 62,184,251,238,187, 67, 58, 88,158,198,103, 45, 33,100, 76,227,198,141,231,101, -103,103,155,251,244,233,195, 39, 39, 39, 99,224,192,129, 56,113,226, 4, 86,173, 90,229,156, 49, 99, 70,185,197, 98,121,156, 82, -186, 65,107,163,228, 45, 34,252,236, 94, 79,155, 52,105,162,121,136, 39,138,226,175, 71,143, 30,109,240,238,187,239,114,101, 0, -102,112,156,218, 8,113,158,207,222,248,238,187,239, 92, 58,157, 46,232, 29, 75, 58,157, 78,229, 44, 39, 4, 51, 60,149,155,243, -226, 14,151, 51, 16,188,167, 75,255,159,189,243, 14,143,162,248,255,248,123,118,175, 39,164, 64, 72,128, 36, 23, 66, 66,239, 73, -104,130, 20, 21, 68, 65,138, 72, 81, 80, 17,148,162, 8,162,210, 69,154, 8,138,168, 95, 4, 5, 68,137,128, 52,165, 8, 34, 74, -239, 53,161, 67,130, 64, 2, 41, 64, 10,169,215,182,206,239,143,148, 95, 8, 41,151, 16, 1,113, 94,207,115,207,229,246, 54,239, -155,153,157,157,125,239,103,202, 22, 44, 19,103, 26, 98,173, 86, 11, 50,105, 18,106,185,187, 67,171,170, 32, 28, 7,228, 62, 76, - 53,239,251,179,103,207,226,227,143, 63,134, 86,171,197,134, 13, 27, 30,139,147,203,108, 54,191,127,227,198,141,213, 61,123,246, -172, 91,236, 49,148,211,242,205, 85, 88,239,223, 17,177,169,123,110,227, 37,167,151,112, 44, 98,247,237,219,103,158, 57,115, 38, -159,194,113,152, 83,160,107, 56,239, 85,240,184,236,217,179, 71, 49,153, 76,113,247,147,151,255, 80, 52,203, 26, 23, 23,231, 97, - 54,155,113,249,242,101,130,255, 31,143, 85,240,188,123, 25, 69, 44,165, 80, 24,127, 96,203,130, 5, 11,158, 31, 60,120,112,149, -250,245,235,231, 77, 62,209,231,190,144,187,178,251,118, 39,203,127,243,103,159,125,246,250,207, 63,255,172,207, 59, 95, 98, 98, - 98, 74,139, 70, 99,249,242,229, 66,105, 23,193,188, 39, 61,228, 69, 93,202, 19, 69, 47, 46,170, 30,214,115, 24,190,221,246, 61, -124,154, 62,143,126, 61,158,196,193,133,175,163,127, 67, 27,196,117,175,160, 73,191,149, 8,159,148, 19,189,105,190,126,146, 83, -215, 30,163,187, 59,248,220,217,130, 28,199, 1, 46, 46, 32, 5,162, 47, 36,119, 69,247,178, 92,207,242,204, 69,113,249, 46,107, -121,240, 60,143,160,160, 32, 4, 7, 7,163, 93,187,118, 8, 9, 9,193, 83, 79, 61,133, 51,103,206,224,204,153, 51, 24, 61,122, -116,153, 31, 57, 86,240, 24, 61,251,236,179,120,238,185,231,238,251, 24, 21, 62,238,140, 71,196, 96,121,123,123, 67,175,215,151, -219, 80, 21, 70, 16,132,124, 99,101, 50,153,242, 67,211,206,152,171, 2, 13,208,110, 66, 72,139, 15, 63,252,240, 29,147,201,212, - 33,111, 41, 6,131,193, 16,101,179,217,246,139,162,184,136, 82,154,225,252, 77, 25,185,203, 80, 20,177, 3,210,211,211,157, 54, - 88,138,162,116,126,239,189,247,118, 59, 28,142, 64,103,246, 55,153, 76, 9, 22,139,165,115, 73,251, 72,146,212,121,204,152, 49, - 21,170, 89, 76,218,239, 50, 85,121,239,206,142,237,210,234,116,208,143, 31, 15, 78, 20, 65, 56, 14,180, 80, 4, 75,171,213,194, -211,211, 19,155, 55,111,134,151,151,215, 99,115,114,173, 95,191, 94, 1,208,191,164,125,158,104, 74,142, 1,104,252, 68,191,223, -147, 47, 92,163,129, 33,245, 72,236,209,205,195,188, 75,185, 33,121,250,139, 47,190,216, 41,138, 98,128, 51,233,208,235,245, 55, - 68, 81, 44,243,113, 87, 85,149,220,188,121, 19,243,230,205,179,164,166,166, 30,254,143,180,137, 75, 58,119,238,252,241,206,157, - 59, 53,102,179,249,190,132, 98, 1, 65,239,112,124, 17, 26, 26, 58,126,242,228,201,158, 61,122,244,128,217,108,134,135,135, 71, -153,181,226,226,226,134, 3,168,214,161, 67,135,110,121,139, 50,230,181,191, 5,159, 6,144,247,158, 59,255, 70, 85, 20,229,220, -173, 91,183, 90,150,208,208,229,223,140, 85,148,185,202, 91,135, 13, 0,158,233,251, 6,158,233,251, 70,126,186,118,253,210, 9, - 17, 9,127, 33,140, 75,128, 99,233,147, 32,238,121, 85,152, 43, 85,147,227, 56,152, 86,173,186,107, 25, 27,211, 23, 95,220,125, -243,241,254,251,101, 74,103,193, 27,209,138, 26,131,197,243, 60, 82, 82, 82, 16, 29, 29,141,219,183,111,195,106,181,226,226,197, -139, 16, 4, 1,105,105,105,200,155,105, 88,158,116, 86,228, 49,170,104, 77,198,125, 26, 44,157, 78,151,220,183,111, 95,239,210, -246, 41,163,219, 87,222,120,227,141, 18,175,212,174,174,174, 78,141,248,206, 53, 80,179, 1,204,206,125,134, 21,236,118,123,153, -111,189,181, 90,109, 82,223,190,125,125, 74,201,103, 58,114,150,219,119,138, 99,199,142, 37, 1,104, 84,145, 7,239,159,208, 44, -226, 68, 84,134, 15, 31, 94,226,241,169, 84,169, 82,137,229, 32,100,100,164, 78, 56,112, 32,199, 84, 53,110, 12, 52,109,138,236, - 59,119, 82,243,150,144,205,202,202, 74,121,245,213, 87,229,130,221,130, 5, 23, 34,125,172,161,184, 22,218,164,134,207,169,104, - 26, 8, 0,167,162,115, 76,150, 65,135,107,165, 28,247, 38,255,116,210, 18, 19, 19,207, 54,110,220,248,239,180,180,180,175, 40, -165,241,255,137,195, 65,233,105, 66,200,204,218,181,107, 15, 7, 80, 92,152, 97,141,179, 17, 61, 1,184, 88,205,110, 31, 57,125, -234,212,151,166, 77,157, 90, 87, 5,188, 0, 24,129,156, 46,194, 50, 70, 16,123, 86,116,126, 21, 69,137,111,219,182,109,153,255, -167,180,239, 75, 88, 73, 28, 63,195, 12,156, 44,187,230, 63,145,206, 60,205,166, 77,155,162,121,243,230,249,239,121, 20,220, 30, - 18, 18, 2, 69, 81,226,101, 89, 46, 81, 51, 52, 52, 20, 13, 27, 54, 44,118,133,246,194, 99,174, 30,118,222,243,200,123,184, 78, - 72,200,167,229,210,100, 20,113,253,252, 39, 67,255,143,219,152, 12,166,201, 52,153, 38,211,124, 20, 52, 73,105, 33,159,123,124, -124,206,227,202, 42, 82,179, 64, 66, 27,177, 99,196, 52, 25,247, 25,193, 98, 48, 24, 12,198,195, 39,207, 48, 61, 10,154,132, 29, - 14, 6,163,216,115,163,200,174,134,178, 56, 83, 66, 72,153,187, 43, 74,211,103,154, 76,147,105, 50, 77,166,201, 52,153,230,227, -167, 89,154,246,227, 18, 25, 99, 93,132, 76,147,105, 50, 77,166,201, 52,153, 38,211,124,232,154,143, 27,108,234, 0,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,131,197, 96, 48, 24, 12, 6,131,193, - 96, 6,139,193, 96, 48, 24, 12, 6,227,145,129,252,135,158, 49,198, 96, 48, 24, 12, 6,131,241, 64, 96, 17, 44, 6,131,193, 96, - 48, 24,140, 10, 70, 3, 0,121, 15, 15, 5, 0, 74, 41, 91,152,151,193, 96, 48, 24, 12,198, 3,225,113,245, 32, 26,102,172, 24, - 12, 6,131,193, 96, 60, 76, 30, 71, 15,194, 21,229, 32, 25, 12, 6,131,193, 96, 48, 30, 20,143,163, 7,225, 30,103,247,200, 96, - 48, 24, 12, 6,227,209,231,177,143, 96,177, 40, 22,131,193, 96, 48, 24,140, 7,205,227,232, 65,216, 50, 13, 12, 6,131,193, 96, - 48, 24, 21,204, 63,186, 76, 3, 33,164, 9,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, 67,130, 0, 40,114, 38, 0,165,244,156,211, 34,229,152, 77, 80,154, 62,211,100,154, 76,147,105, - 50, 77,166,201, 52, 31, 63,205,210,180,203,226, 63, 30,105,131,245, 79,174,131, 69, 8,105, 82,209, 5,197, 52,153, 38,211,100, -154, 76,147,105, 50,205,199, 79,243,113,131,117, 17, 50, 24, 12, 6,131,193, 96, 84, 48, 26, 86, 4, 12,134,115,132,133,133,153, - 12, 6,195, 51,123,246,236,209, 93,188,120, 17,199,143, 31,167,171, 86,173,146, 28, 14,199,174,136,136, 8, 27, 43,161,199,131, -230,205,155,119,230,121,254, 3, 0, 80, 20,101,254,233,211,167,119,222,199, 93, 62, 9, 14, 14,126,219, 96, 48,116,213,106,181, - 53, 20, 69, 33, 14,135,227,166,213,106,221,149,152,152,184,128, 82,170,150, 67, 51,204,203,203,235,205, 38, 77,154,212,190,122, -245,106,124, 92, 92,220, 26, 0, 59, 1,116, 54,155,205, 47, 7, 7, 7,251,159, 59,119,238, 74,106,106,234, 50, 74,105,196,195, - 74, 39,131,193, 12,150,115, 39, 31,231,238,238,254,148, 86,171, 29,102,179,217,154, 27,141,198,243, 28,199, 45, 75, 73, 73,249, -147,157,120,143, 47,132, 16,190, 70,141, 26, 79,251,248,248,140,201,204,204,108,237,233,233,121,242,206,157, 59, 95, 95,191,126, -125, 39,165, 84, 41,167, 38,231,226,226,210, 73,163,209, 12, 21, 4, 33,204, 96, 48,156, 85, 85,245,135,172,172,172, 29, 15,179, - 46,181,107,215,238,172,162, 40,126, 37,237, 99, 48, 24,180,187,119,239,230, 55,110,220, 72,127,254,249,231, 59, 47,191,252,178, -235,144, 33, 67, 52,225,225,225, 75, 0,140, 47,188,127,155, 54,109, 98, 37, 73,242,118,230,247,181, 90,109,242,209,163, 71, 3, - 89,173,123,248,240, 60,255,193,144,185,123,219,169, 20, 8,159,212, 9,185,230,165, 92,132,134,134,126,223,171, 87,175,190,245, -234,213,211,168,170, 10, 73,146,224,112, 56,234, 70, 70, 70,182,255,243,207, 63, 67, 1,188, 90,198,243,231,249,137, 19, 39, 46, -154, 57,115,102, 85,173, 86, 75, 36, 73,106,181,118,237,218,103, 71,142, 28,121,246,187,239,190,107, 58, 96,192,128, 74,121,219, -167, 77,155,246, 44, 33,100, 2,165,116,253,131, 78, 39,131,193, 40,197, 96,185,187,187,215, 54,153, 76,195,221,220,220,186,214, -169, 83, 39, 97,200,144, 33, 39, 68, 81,252,155,231,121,186, 98,197,138,209,130, 32,124,225,231,231,183,195,225,112, 44, 78, 77, - 77,141, 46, 99, 67, 81, 27,192, 16, 0,207, 2,240, 5,112, 11,192,159, 0,150, 83, 74, 47,151, 39, 51,254,254,254,141, 77, 38, -211,251, 60,207,183,180, 88, 44,126, 46, 46, 46, 55, 1,156,200,202,202,250, 58, 49, 49,241,116,121, 52,205,102,115, 16,128, 17, - 58,157,174,157, 44,203,129, 90,173,246,134, 36, 73,135, 20, 69, 89, 28, 31, 31,127,165, 60,154,109,107,186,119,163,174,110,115, - 68, 98,244,183, 56, 20,157,171,158,151,116,212, 17,175, 88, 51, 62, 62,126, 61,107,211,195,174, 20,190,190,190,245,170, 87,175, -254,110,157, 58,117, 94,170, 89,179,166,110,208,160, 65,186,142, 29, 59, 98,223,190,125, 79,174, 90,181,170,149, 78,167, 19, 91, -181,106,181, 33, 33, 33, 97, 65, 98, 98,162, 83,199,221, 96, 48, 4, 87,170, 84,233, 45, 23, 23,151,174,245,235,215,191, 57,106, -212,168,232,200,200,200,168,166, 77,155,198, 45, 94,188,248,221,232,232,232,121, 62, 62, 62,127,217,237,246,239,179,178,178, 46, - 63,232, 60, 59, 28,142,224,131, 7, 15, 66,167,211, 21,249,189,170,170,232,215,175, 31,244,122, 61, 22, 47, 94, 76,142, 31, 63, - 62,211,102,179, 77, 93,180,104,145, 87,120,120,248,139, 69, 25, 44, 73,146,188,143, 30, 61, 10,173, 86,123,143,158,162, 40,144, - 36, 9,178, 44,195,225,112,160,107,215,174,222,172, 57,122, 52,160,148, 86,167, 0,182,159,177, 3,128,231,253,104, 25,141,198, -122, 47,190,248,162, 38, 37, 37, 5, 26,141, 6,162, 40,226,214,173, 91, 8, 14, 14,230, 29, 14, 71,221,178,234,213,175, 95,255, -205, 57,115,230,120,111,219,182, 77, 92,181,106,149,208,185,115,103,237,144, 33, 67,220, 58,118,236,216,214,223,223,159,251,241, -199, 31, 29, 59,119,238,148, 6, 13, 26,164,255,244,211, 79,189,183,111,223,222, 23,192,250, 7,157, 78, 6,131, 81,130,193,114, -113,113,217,166,215,235, 3,250,245,235,183,127,234,212,169,223,120,121,121, 73, 0,176,122,245,106,223,254,253,251,223,124,231, -157,119, 98,211,211,211, 53, 51,103,206,108,178,114,229,202, 95, 77, 38,211,109,155,205,246,140, 19,198,138, 0,120,135,227,184, - 17, 45, 91,182,220,166, 40,202,149, 61,123,246,204,125,230,153,103,122, 1,160, 39, 79,158,252,149, 16,242, 35,128,255, 57, 27, -209, 32,132,240,181,106,213,154,226,231,231, 55,230,187,239,190, 51,212,170, 85, 11, 46, 46, 46,200,202,202, 50, 95,190,124,217, -127,204,152, 49,221,131,131,131,191,243,240,240,152, 17, 17, 17, 33, 57,169, 73,252,252,252, 70,185,187,187,127, 60,127,254,124, - 99,189,122,245,136,171,171, 43, 18, 18, 18, 26,157, 56,113,162,225,215, 95,127,253,154,217,108,254, 52, 62, 62,222,233,116,118, - 34, 68, 99,175, 93,245,183,202,117, 91,118,248,110,233, 50, 82,221,197, 5, 90,142,131, 36,138,218,120,139,165,214,168,183, 71, -172,108, 83,183,218,145,108,109, 82,247, 11, 23,168,248, 48, 42, 68,112,112,240, 89, 55, 55,183,128, 23, 95,124, 81,219,175, 95, - 63, 4, 7, 7,231,127,247,234,171,175,226,213, 87, 95,213, 93,189,122, 85,183,126,253,250,215, 87,174, 92,249, 74,173, 90,181, -226, 98, 98, 98,154,148, 98,174,182,154, 76,166,154,195,135, 15, 63, 61,126,252,248,253,110,110,110, 34,128,196,179,103,207, 42, -131, 6, 13,250,123,232,208,161,241, 89, 89, 89,152, 50,101, 74,205, 85,171, 86,173, 51, 24, 12, 73, 14,135,227,217, 7,157,119, -163,209,136, 43, 87,174,220, 99,132,146,146,146,144,154,154, 10,155,205,134,244,244,116,228,222,225,219, 85, 85, 5,199,113, 64, -206,108,220,226, 34, 83,136,142,190,215,131, 74,146, 4,155,205, 6, 81, 20, 33,136, 34, 52,122, 3, 58,116,238,242, 55,161,216, -154,101,183, 46, 56,117,248,240, 13,214, 60, 61, 28, 56,142,187,186,101,255,149, 32, 0, 34,128,168,251,148, 83, 1, 96,255,254, -253,184,125,251, 54,146,147,147,145,156,156, 12,179,217,140,242, 68,108,163,162,162, 22,133,134,134,146, 83,167, 78,109, 3,176, -124,237,218,181, 61,239,220,185,243,191,113,227,198, 85,158, 55,111, 94,218,248,241,227,199, 0,248,109,237,218,181,175, 54,107, -214,172,219,153, 51,103, 22, 62,140,116, 50, 24,140, 18, 6,185, 83, 74,107, 4, 4, 4,220, 88,177, 98, 69,135, 17, 35, 70, 52, - 72, 77, 77,213, 2,128,183,183,183, 3, 0,210,211,211, 53,111,189,245, 86,227, 31,126,248,161,131,209,104,140, 87, 20,165,106, - 17, 26, 69,205, 48, 24,233,226,226,242,220,133, 11, 23, 62,175, 93,187,182,113,246,236,217,123, 93, 93, 93,177,112,225,194,221, -254,254,254, 30,209,209,209,159,186,186,186,182, 7, 48,166,152,116,221,163, 25, 24, 24, 56,185,111,223,190, 99, 14, 29, 58,100, -104,214,172, 25,220,220,220,192,243, 60, 60, 61, 61,209,186,117,107,178,127,255,126, 67,247,238,221, 71,102,100,100,204,118, 86, -211,108, 54,143,121,225,133, 23,166, 69, 68, 68,152,218,182,109, 75,180, 90, 45, 50, 50, 50,160,211,233,240,196, 19, 79,144, 53, -171, 86,153, 90,132,132, 76, 54,155,205, 83,157,213,116,212,169,186,181,255,136,241, 29,183,254,241, 39,241,241,241,129, 99,230, - 76,100, 52,110, 12,199,132, 9,168, 86,189, 58,182,108,219, 78, 94,120,245,237,182,110,146,207, 54,103, 53, 43,224,110,253, 46, - 77,187,221, 30, 28, 18, 18,194, 31, 62,124,216,113,229,202, 21, 91,225, 89,166,148, 82, 92,184,112,193,250,199, 31,127, 88,188, -188,188, 32, 8, 66, 80,105,154,148,210,234,237,219,183,151,194,195,195,219, 14, 31, 62, 92,123,235,214,173, 35, 0,162, 43, 87, -174, 28, 15, 32, 33, 41, 41, 41,230,149, 87, 94,241, 91,185,114,229,211, 85,171, 86, 77,164,148,122, 63,140,188,231, 25,170,194, -175,188,237,190,190,190,216,186,117, 43,186,119,239,142, 54,109,218,124,214,179,103, 79,195,241,227,199, 41, 33,228,143,178,164, - 83, 85, 85,216,108, 54,216,108, 54,196,199,199,227,203, 5, 11,113,236,240, 33,172, 93,241,147,239,168,183, 71,190,229,225,226, -118, 56,164,109,219,128, 7,157,119,166,153,255,125, 66,142,185, 34, 86, 74,233,245,242,106,190,248,226,139,141, 2, 3, 3,125, -214,157,175,140, 52, 93,125, 40, 90, 15,168,122, 79, 40, 94, 45,240,183,238, 57,248,250,250,250, 4, 6, 6,182, 46,139, 38,165, -116,119,100,100,100,111, 74,233, 50, 74,169, 66, 41,221, 56,126,252,248,183, 9, 33,155,198,143, 31,255, 46,165,116, 99,238,246, -240,211,167, 79,247,165,148,238,127, 24,233,100,117,137,105,254, 3,180, 4,208, 61,247,213, 10, 64,235, 66,159,245,133,246,235, - 92,204,123,247, 66,159, 91, 22,250,191,150, 21,106,176, 8, 33, 52,239, 85, 32,130, 35, 45, 94,188,120,195,210,165, 75, 23, 39, - 39, 39,251, 4, 5, 5,141,125,242,201, 39,219, 93,189,122,213,165, 67,135, 14,237,124,125,125,223,143,140,140,244,233,211,167, -207,210,215, 94,123,237, 23, 66,136,236, 68, 84, 40,136,227,184,119, 14, 31, 62,188,166,126,253,250,142,155, 55,111,122,118,238, -220, 57, 13, 0,194,194,194,178,211,211,211, 43,121,123,123, 43,155, 55,111,254,149, 16,242, 6, 33,164,212,208,180,159,159, 95, -179,170, 85,171,142,153, 61,123,182,129,231,249,226, 34, 40,248,228,147, 79, 12,238,238,238,111,248,251,251,183, 42, 77,211,215, -215,183,158,155,155,219,148,175,190,250,202,104,183,219, 33,203, 50,188,189,189,225,226,226,130,212,148, 20, 36,221,184,129,244, -196,120, 76, 30, 59,198,228,106, 50,141,242,243,243,107, 90,154,230,147,181,220, 94,112,245,109,208,126,244,152,177,176, 15, 29, - 10,171,209, 8,235,251,239,195, 17, 17, 1,235,220,185,112, 84,174, 12,251,179,207, 98,236,216, 15,160,247, 9,110,243, 68, 64, -165,190, 15,203,117,127,252,241,199,220,216,177, 99, 13, 91,183,110, 53,118,236,216, 81, 88,190,124,121,150,197, 98,193,162, 69, -139,178,194,194,194,236,139, 23, 47, 54,182,105,211,198,245,233,167,159,214, 58, 25, 17,144, 86,174, 92,121,118,201,146, 37,179, - 47, 95,190,172,173, 83,167,206,204,230,205,155,119,203,202,202,210,182,110,221,186,123, 64, 64,192,156,200,200,200,202,207, 63, -255,252,172, 41, 83,166,172, 6, 32,225, 17,129,231,121,240, 60, 15,157, 78,135,166, 77,155, 98,237,218,181,240,243,243,195,247, -223,127,239, 89,173, 90, 53,151,240,240,240,140,244,244,244,175,202,162, 41, 8, 2, 28, 14, 7,172, 86, 43,142,158, 56,137, 63, -126,219,132, 21,171,126,198,235,111,190,149, 38,203,178, 99,228,240,183,220,220,140, 46,163,217,253,223,195, 33,103,124, 33,177, - 2, 52,155, 16, 34, 0, 64,237,218,181,245,254,254,254,173,106,215,174,173,119, 86,199,102,179,125,243,229,151, 95,250,113, 6, - 79, 28, 20,186, 97, 45,157,137, 29, 30,139,144, 28, 56, 30,213,204,117,240,252,243,207,123, 3,248,178, 2,210,187,149, 82, 58, -136, 82,186,185, 60,255,255, 79,167, 51, 44, 44,172, 93, 88, 88,216,193,176,176,176,107,185,239,237,238, 55,207,139,167,146,167, -126,252, 88,255,247,119,147,136,245,199,143,245,127, 47,158, 74,158, 98, 53,247,223, 75, 81, 30,164, 8,188, 9, 33, 91, 9, 33, - 91, 39, 77,154,244, 20, 0,175, 66,159,219, 22,220, 15,128,190,168,247,188, 87,129,237,222,185,198,202,187,192,231, 10, 65, 83, -224, 36, 45,178,155,195,108, 54,219,230,205,155,183,195, 98,177,236,249,223,255,254,215,114,236,216,177,175,250,249,249,237,239, -219,183,239, 87,238,238,238, 82, 81,227, 75, 74,224,245, 54,109,218,108, 48,155,205,106, 66, 66,130, 78,146, 36,221,181,107,215, - 12,146, 36, 17,173, 86, 75,109, 54,155,246,220,185,115, 58, 73,146,148,198,141, 27,175, 59,119,238,220, 16, 0, 19, 74, 18, 52, -153, 76,195,151, 46, 93,106, 44,206, 92, 41,138,130,236,236,108,200,178,140, 25, 51,102, 24,199,141, 27,247, 54,128,227, 37,105, -106,181,218,183, 23, 45, 90,100,148, 36, 41,127,252, 76,116,116, 52, 50,210,210, 32,101,103, 67,204,206,132,156,157, 1,141,213, - 29, 99, 94, 29,104,156,243,253, 15,163, 1, 12, 45, 73, 83,212, 87,154,245,211,247, 63, 64,146, 36, 8,107,214, 20,185,143,180, -119, 47, 32, 8,248,228,211,185,228,131,225,175,204, 0,240,203, 67,186,192,128,231,121,188,241,198, 27, 68, 16, 4,253,150, 45, - 91,244, 77,155, 54, 85, 66, 66, 66,220,122,245,234, 5, 89,150,145,145,145, 1,163,209, 88, 22, 89,165, 86,173, 90,214,165, 75, -151,110, 72, 77, 77,221,242,217,103,159,181, 95,176, 96,193, 48,111,111,239,109,253,251,247,159,236,230,230, 38,234,245,122,200, -178,236,254,168,157,252, 58,157, 14, 38,147, 9,254,254,254,232,211,167, 15, 22, 44, 88, 0,158,231, 83,121,158,223,145,157,157, - 61,239,220,185,115, 49,101, 53, 88,118,187, 29, 54,155, 13,215, 98,175, 67,146, 36,132,175, 92,137, 67,123,247,124, 68, 41,157, -185,122,197, 79, 46,139,150, 44,233, 5,224, 3,214,244, 62, 88,250,245,235,199, 19, 66, 60,107, 87, 55, 90, 8, 71,173, 71, 40, -173, 28, 16, 16,240,170, 44,203, 79,155,205,230,170,113,113,113, 41,254,254,254, 59, 5, 65,248, 45, 57, 57,217, 82, 74,164,146, -200,178,140,225,173,210, 49,178, 13, 7, 89,150,145,158,158,142, 27, 55,110,224,252,249,243, 56,118,236,124,185,210, 24, 24, 24, -248,186,201,100,122, 70,167,211,213,164,148,114, 22,139,229,134, 32, 8,123, 18, 18, 18,126,160,229, 88,216,240,159, 74,103, 1, -230,244,233,211,167,134,135,135, 7, 34, 35, 35,107,156, 57,115,102, 14,128, 39,239,235,156, 36,186,197,253,223,222,227,235,226, - 86, 13, 73,209,107,125,183,109,158,185, 24, 64, 29, 86,131,255,213, 55, 54,164,148, 93,146, 41,165, 47,228, 26,178,173,115,230, -204,121, 33,247,255, 94, 40,248,217,137,223,121,161, 8,131,183,181,168,237, 21,102,176, 8, 33,180,164, 12,186,186,186,202, 83, -166, 76, 57,178,111,223,190,176,118,237,218, 29, 42,163,177,202,163, 77,221,186,117, 35,254,250,235, 47,175, 26, 53,106, 56, 84, - 85, 37,238,238,238,178,155,155,155,146, 59,182,133,198,196,196,104, 99, 98, 98, 42,121,121,121, 41, 0,218,148, 38,168,213,106, - 91, 7, 5, 5, 21,123, 33,203,206,206, 70, 86, 86, 22, 28, 14, 7,170, 85,171, 70, 56,142, 43, 53,252,167,209,104,218,214,169, - 83,135,100,101,101,161, 90,181,106, 56,115,230, 12,236,217,217,144, 44, 89,144, 51,179,160,100,103,128,102,166,195,146,145,142, - 32,159,170,132,231,249, 82,163, 98, 50,111, 50,251,186,186, 66,152, 56, 17,226,223,127, 3, 58, 29,116, 53,107, 2, 98,206, 80, - 43, 49, 54, 22,208,235,193, 13, 29,138, 58,111,190, 9, 25, 6,223,135, 88,209, 33, 8, 2,172, 86, 43,116, 58, 29, 94,122,233, - 37,236,219,183, 79,108,217,178,165, 49, 62, 62, 30,130, 32,128,227,184,252,238, 51, 39, 27,113,133,227, 56, 10, 0, 94, 94, 94, -210,188,121,243,118,119,232,208,161, 83,231,206,157,119,232,245,255, 31, 20,112, 56, 28, 42, 0,250, 40,157,248, 6,131, 1, 90, -173, 22,132, 16, 84,170, 84, 9, 89, 89, 89,184,116,233, 82,205,242,104, 41,138,146, 51,238, 42, 55,138,165, 40, 10,142,158, 56, - 2,163,201,132,214,237, 59, 76, 86, 85,213,164,213,104,192,231, 14,238, 98, 60, 56, 90,183,110, 29,170,163,242,236,183,125,197, -128,231,250,248, 91,140, 46, 26, 75,159,109, 66,167,224,218,173,123,207,254,100,118,165,160,160, 32,215, 83,167, 78,101,207,158, - 61,219,239,228,201,147, 0,240,115, 73,122, 9, 9, 9,155,230,206,157, 91,185, 83,167, 78,181,180, 90, 45, 73, 79, 79, 71,114, -114, 50,146,146,146, 16, 23, 23, 71, 99, 98, 98,174, 73,146,180,161, 44,105,108,222,188,249,183,131, 6, 13,122,165, 81,163, 70, - 90, 74, 41, 36, 73,130,213,106,109,118,236,216,177,238, 7, 15, 30,108, 11,224,141,178,230, 59, 49, 49,113,227,220,185,115, 93, - 59,117,234, 84, 87,171,213,114, 21,145,206, 66,212,112,115,115,195,206,157, 59,225,225,225, 1, 0, 53,238,247, 88, 9,146,232, -235,226,238, 11,196,126, 5, 31,207, 0, 8,146,232,203,106,240,191, 63,138, 85,138,201, 58, 1,160,251,253,154,161,127,202, 76, -149, 43,130,149,199,237,219,183, 13, 89, 89, 89, 26, 74, 41,167, 40,138, 70, 85, 85, 98, 48, 24,202,218,149,211,176,111,223,190, -191,118,237,218, 53, 61, 55, 50, 32,121,121,121,201,105,105,105,200,200,200,128, 44,203,138,187,187,187,181,122,245,234,214, 6, - 13, 26,100,238,217,179,167,212, 46, 66,155,205,230, 95, 84, 36,197,106,181, 34, 59, 59, 59,223, 96, 89,173, 86,184,187,187,195, - 98,177,148,122,114,139,162, 24, 96, 50,153,144,156,156,140,148,148, 20,216,179, 51, 33,102,101, 67,206,206,132,156,153, 1, 53, - 43, 3, 52, 59, 11,170,170,160,178,183, 55, 4, 65,240, 47, 77,211,234, 80,244, 90, 0,182, 13, 27,128,247,222, 43,222,220,236, -217, 3,151,122,245, 96,179,137, 15,109,141,178,130, 55,193,162, 40, 66,150,101, 80, 74,169, 32, 8, 16, 4,161,160,105, 42,163, -183,200, 49,100,167, 79,159,118, 79, 74, 74, 50, 82, 74,249,236,236,108,131,197, 98,225,170, 86,173,106, 7, 64,101, 89, 86, 30, -181, 19, 95,150,101,136,162, 8, 81, 20,225,112, 56,202,148,239,194,251,230,205, 28,204,157, 6, 15, 65, 18,240,245,130,111,177, -105,221, 90, 92,188,120,193,111,234,204, 79, 32,201, 50, 20,149,141, 43,126, 80, 52,107,214,172, 11,207,243, 95,183,241, 80,221, -198,248, 75,217, 85,245,170, 37,122,209,187,150, 51,102,147,205,110, 19,125,231, 44,248,212,139, 82, 96,202,148, 41,183,251,247, -239, 95,105,236,216,177,141, 7, 12, 24,208,185, 81,163, 70,191, 92,184,112, 65, 44,166, 17,215, 13, 25, 50,228, 68,229,202,149, -131, 86,174, 92,153,116,243,230,205, 42,146, 36,153, 4, 65, 16, 5, 65,184, 38, 8,194, 97, 73,146,246, 36, 38, 38,158, 42, 75, - 90, 93, 93, 93,155, 12, 24, 48, 64,155,150,150,150, 63,219, 47, 57, 57, 25,161,161,161,252,174, 93,187, 26,150, 39,255, 23, 47, - 94, 92,224,145,141,136, 51, 0, 0, 32, 0, 73, 68, 65, 84,231,231,183,127,203,150, 45,207, 84,170, 84, 41, 68,175,215, 87, 83, - 85, 85,177,217,108, 73, 54,155,237,108,121,210, 89,136,155,145,145,145, 53,220,221,221, 17, 31, 31, 15, 0, 55,239,247,152,233, -181,186,248,164,203,107,253,125, 60,130,112,245,226,239,208,107,117,241,172, 38, 63,246, 17,172,150, 5, 35, 86, 37,152, 36,219, -196,137, 19, 39, 19, 66,182, 78,156, 56,113,114, 9, 17, 44,165,224,126, 5,246,119, 84,184,193, 42, 10,139,197,162, 57,113,226, -132,215,237,219,183, 43,249,248,248, 88, 26, 54,108,152, 78, 8, 1,165,148,100,102,102,186, 36, 37, 37,185,184,186,186, 58,106, -214,172,153,233,228,239,253,253,222,123,239,245,156, 48, 97,194,206,129, 3, 7,222, 4,128,180,180, 52,220,190,125, 27,169,169, -169, 16, 69, 17, 9, 9, 9,228,192,129, 3,213,118,237,218,245, 52,128,216,210, 4, 77, 38, 83,124, 86, 86, 86, 29, 79, 79,207, -124,115,144,103,170, 10,190,139,162,136,172,172, 44,184,186,186,150,122,114,107,181,218,196,228,228,228, 96,193,225, 64,114,124, -124,142,177,202,206,130,146,153, 14, 37, 51, 3,196,146, 5,157, 36,193,160,213, 34,235, 78, 42,116, 58,221,237,210, 52, 93, 12, -188, 32,200,178,158,239,209, 3, 32,197,215, 35,218,182, 45,238, 52,110, 12,227,214, 13,210, 67,172,232, 69,126, 46,108, 22,202, - 98, 52,238,220,185,195, 45, 88,176,160, 97,116,116,116, 37, 31, 31,159,148,206,157, 59,199, 16, 66, 40,199,113,106, 82, 82, 82, -149,232,232,232, 58,158,158,158, 22,173, 86,155,252, 48,141, 84, 81,219, 44, 22, 11, 28, 14, 7,236,118, 59,210,211,211,161,209, -104,208,161, 67,135, 61, 14,135, 99, 35, 33,100,197,177, 99,199,178,138,211,148, 36,233,158,178, 84, 20, 37,223,100,105, 8,143, -141,235,214, 97,225,146,133,216,176, 97, 11,237,223,183, 15,217,183,255, 0, 84,149, 38,176, 38,247,193,192,243,252,167,135, 38, -188,228, 70, 20, 57, 59,125,247, 58,235,194, 56,189,229,247,211,231, 14, 89,237, 2, 95, 43, 56,168, 65, 96,205, 90,218,169,211, - 38, 36,157,185,116, 52, 54,237,187,180,234, 31,126,248, 97,205, 58,117,234, 84,139,137,137, 9, 6,112,169, 40, 77, 55, 55,183, -128,193,131, 7,191,150,158,158,174,253,225,135, 31, 86,197,197,197, 29,162,148, 94, 43,100,194,154, 19, 66, 62,205,109,135,125, - 0, 40, 0,118, 81, 74, 87,151,228,217, 9, 33,216,187,119,239, 61,179,253, 20, 69, 41,183, 43, 79, 76, 76, 76,111,211,166, 77, -147,232,232,232,173,105,105,105,107,239,105,191, 92, 92,186, 55,110,220,184,239,241,227,199,103, 81, 74,175,150, 69,155,227,184, - 9,231,207,159,255,132, 82, 26, 64, 8,185,193,113,220, 71,247,123,204, 68, 42,190,189,109,211,244, 69,130, 40,152,245, 58,125, -156, 72,197,119, 88, 77,126,236,201, 27, 35,133,130,198,169, 8, 99,116,120,206,156, 57,166,185,115,231, 98,206,156, 57,231,139, -138, 96,229, 25,173, 57,115,230,156,207,219,175,192,254,251, 43,212, 96, 21,229, 28, 21, 69, 49,206,157, 59,183,109,163, 70,141, - 18,219,181,107,151,104, 54,155,109,121, 23, 8,141, 70, 35,249,248,248,100,200,178,108,191,125,251,118,213,253,251,247,215,162, -148, 58, 51,248,115,159,155,155,155,238,228,201,147, 53,214,174, 93,219, 44, 42, 42,170, 94,247,238,221,243,163, 3,241,241,241, -245,190,254,250,107,197, 96, 48,164,240, 60, 31, 1,160,212, 65, 62,146, 36, 29,187,124,249,114,237,214,173, 91, 19, 73,146,238, - 50, 85, 5,255,214,235,245,136,143,143,167,170,170,158,112,194, 96,156, 56,115,234, 84,112,227,250,245,115,204, 85, 86, 6,148, -204, 12, 40, 25,233, 32,214,108,232, 36, 17,174, 46, 42, 12,122, 23,156,207,185, 35, 43,117,181,100,141,108,187, 17,155,153, 89, -167,230,188,121,208,121,122, 2,162,152,223, 45, 8, 32,191,187,144,222,188,137,147, 71,142, 64,163, 58, 18, 31,166,209,168, 82, -165, 10, 50, 51, 51,225,112, 56, 64, 41, 5,165, 52,223, 80,233,245,122,228,142,151,114, 54,116,229,209,171, 87,175, 39, 91,183, -110, 29,245,198, 27,111,236,110,216,176,225,245,188,186,238,226,226, 34,214,175, 95, 63,209,225,112,100, 95,187,118,173,222,202, -149, 43,219,170,170, 90,233, 97,228,187,176, 25,202,139,224,229,153,171,228,228,100,252,249,231,159, 56,124,248, 48, 46, 92,184, -208,242,216,177, 99, 77, 55,109,218,244, 97,163, 70,141, 90, 95,184,112,225,182,179, 6, 43,175, 44, 41,165,160, 57,179,227,177, -249,183, 63,208,173,123, 71,146,101,201,196,214,109,127,129, 82, 90,131,181,167, 15, 12, 11,100,197,226,216,183,198,250,198, 69, - 67,122,178,128, 89,167, 78, 69, 28,232,222,189,251,206,224, 90,117,221, 1, 64,112,208,202, 46, 58, 47,147, 70,163,209, 3, 64, - 64, 64, 64, 24,165,244,127,200,153,137,116, 15,189,123,247,110, 83,173, 90,181,102,219,183,111, 63, 27, 23, 23,119,184,176,185, - 2,128,122,245,234,125,116,238,220,185,103,181, 90, 45, 41,208,248, 83, 0, 69, 26,172, 23, 95,124,177,142,217,108,174,178,237, -178, 7, 50,117,193, 80,185,116, 80,222, 0,197,179, 25,174,235, 26,161,122,245, 75, 85,234,214,173,219,244,242,229,203,103,203, -146,121, 66,136,185,127,255,254, 27,150, 45, 91, 86,175,107,215,174,122, 0,247, 24,172, 6, 13, 26,244,218,181,107,215,139, 35, - 71,142,108, 74, 8,233, 75, 41,117,122, 13,192, 19, 39, 78, 28, 1, 80,161,131,208, 71,204,162,123, 0,212,103, 85,247, 63, 19, -189, 2, 10,140,193, 2,144,140,156,103, 41, 23,252,156,183,214,165, 80, 96,223,228, 2, 81, 43,161, 80,212,171,168,239,146, 81, -129,147,172, 52, 37, 92,100,247, 30, 63,126,188,121, 88, 88,216,213, 60,115,149,119, 62,230,253,225,234,234, 42, 0,160, 81, 81, - 81, 13, 21, 69, 57,236,196,239, 45,143,136,136,216,246,237,183,223,126, 30, 16, 16,224,232,213,171, 23,247,201, 39,159,108,205, -139, 98,125,249,229,151,180, 91,183,110,191, 71, 71, 71,147,139, 23, 47,126, 4,224,197,210, 4,109, 54,219,146,119,222,121,167, -239,129, 3, 7,140,130, 32, 32, 61, 61,253,174,232, 85, 86, 86, 22,100, 89, 6,207,243,248,246,219,111, 29, 22,139,229,219, 82, -239,142, 68,241,135,207, 62,251,172,247,234,229, 63, 26,121, 73,128, 61, 61, 13,106,102, 58, 56,171, 5, 26, 81,128, 65,171,160, - 70, 29, 87,100, 37,233,176,240,207,189, 54, 73,146,150,148, 26, 21,115, 88, 38,191, 61,124,216,175, 59,118,239,129,246,233,167, - 33,109,223,126,239,157, 94,181,106,176,139, 34,230,204,158, 69,137, 45,125,234,195,168,232, 90,173,246,210,176, 97,195,170, 13, - 31, 62,188,114,147, 38, 77, 32,138, 34, 36, 73,202,143,188,120,121,121, 1, 0,226,226,226, 16, 25, 25,153,193,243,124,169,209, - 59, 69, 81,246, 93,191,126,189,209,208,161, 67,175, 60,247,220,115, 62,162, 40,106,210,210,210,110,230,222, 25,107,252,253,253, - 77,122,189,158, 36, 37, 37,165,223,185,115,199, 71, 85,213,195, 15, 35,239,146, 36,225,227,143, 63, 70,120,116, 52, 6,215,171, -151,111, 54, 29, 14, 71, 78,119,158, 32,224,175,191,254,194,254,253,251,177,106,213,170,212,151, 94,122,201, 99,224,192,129, 30, -171, 86,173, 26, 5,224,163,226,204,234,248,241,227,177,229,218, 53,244, 40, 98,172, 32,165, 4, 9,137, 9,144, 36, 9, 27, 54, -236, 72,212,106,180,158, 95,126, 62,215, 52,110,242,100,194,154,221, 7,131,170,170,211,219,205,223, 52,138,227, 92, 68, 0,139, - 78,157, 58,121, 24, 0, 76, 38,147,247,252,249,243,245, 0, 48,239,243,121, 90, 74,169, 86,150,101, 8,130,128, 89,179,102, 25, -135, 15, 31, 94,236,108,163, 95,126,249, 37,125,230,204,153, 85,222,124,243,205, 46,123,247,238, 53, 16, 66,118,228,222,136,165, -230, 70,170,170, 2, 56, 82,181,106,213,234,235,214,173, 11,122,246,217,103, 93, 75, 75,167,221,110,255,110,201,146, 37, 53,231, -239,119,195, 54, 75, 31,196,209,254,160, 85, 40,170,232,178,208,176,210, 13,116,172, 17, 87, 99,213,170, 85,139, 0, 56, 61, 75, -143, 16,210,224,165,151, 94, 90,187,108,217,178,192, 97,195,134, 37, 28, 62,124, 56,158, 16, 82, 84, 93, 78, 29, 60,120,240,141, -240,240,240, 32, 85, 85, 55, 19, 66,122,149,197,100, 49, 24, 21,192,137,127,104,223,127,140,146, 12,214,104, 66, 72,195,121,243, -230,125,242,195, 15, 63,180,158, 60,121,242,222, 54,109,218,164,229, 25,172, 91,183,110, 85, 57,112,224, 64, 39,171,213, 42, 43, -138, 50,170,168, 53, 49, 10, 63,109,155, 82,122,131, 16,242,117,187,118,237, 94, 89,177, 98,197, 42, 87, 87,215,180,157, 59,119, - 86,241,245,245,189, 19, 17, 17,225,206,113, 92,214,229,203,151, 53, 59,119,238, 28, 0, 96, 73, 81, 39,112, 97,205,132,132,132, - 51,181,106,213,250,223,135, 31,126, 56,102,234,212,169,198,188, 53,134,178,178,178, 96,183,219,161,213,106,193,243, 60,214,172, - 89,227, 16, 4,225,199,248,248,248,227, 78,104, 30, 11, 12, 12, 92,246,197,188, 47,134,189, 59,228,117, 61,151,153, 14,219,157, - 20, 64,116,192,160,225, 96, 14,171, 12, 91, 26,143, 69,127, 30, 20,146,109,182, 95,227,226,226, 14,148,166,121,232,122,230,246, - 54,117,188,247,204,154, 49,237,169,137,191,252, 2, 40, 10,200,235,175, 3,187,118, 1, 77,154, 64, 77, 76,132, 93, 20, 49,101, -210, 4,240,182,164, 67,199,174,103,111, 44, 77,179, 34, 40,172,121,227,198,141,214,178, 44, 15,154, 57,115,230,244,224,224, 96, -237,144, 33, 67, 60, 3, 3, 3,161,170, 42,116, 58, 29, 18, 18, 18,112,252,248,241,204, 59,119,238,136,148,210,143, 19, 19, 19, -127, 46, 77, 83, 81,148,145,132,144,134, 31,124,240,193,172, 79, 62,249, 68,251,197, 23, 95, 28,233,210,165,139,159, 86,171,213, - 53,107,214,204,123,255,254,253,166, 77,155, 54, 61, 99,177, 88, 64, 41, 29,227, 76, 93,170,232,188,235,116,186,228, 75,151, 46, - 85,157, 55,111, 30,185,149,158,142,233, 58, 29,196,220, 9, 8,121,145,187,105,211,166,193,213,213, 21, 95,126,249, 37, 78,156, - 56,241,101,106,106,234,251, 11, 22, 44,240, 90,179,102, 77,191, 60,131, 85, 80,211,104, 52, 94, 63,115,230,140,121,241,226,197, - 92,156, 44,227, 43, 73,186, 39,162, 53,126,202, 71, 16, 5, 17,132,240,136, 60,186,127,246,147,157,158,153, 89,217,211,211,164, -170,148, 62,200,227,254, 95,214, 60,125,250,244, 62, 0,251, 74,184,187,206,187,153, 67, 74, 74, 10, 82, 82, 82,224,225,225,145, -183,104,114,145,154, 54,155,237,236,132, 9, 19, 78, 45, 94,188,184,203,161, 67,135, 94,218,183,111,223,115,187,119,239,182,199, -198,198,202,146, 36,209, 26, 53,106,104,158,124,242, 73, 99,183,110,221, 92, 12, 6, 3, 55,101,202,148,212,217,179,103,123,229, - 26,176, 34, 53, 85, 85,229, 85, 85,197,251,237, 51, 49,254, 41, 13, 28,142,156, 27,202,196,196, 4, 92,184,112, 1,135, 15, 71, -129, 16,194,149,177, 60,191, 88,181,106, 85, 45,189, 94, 79, 86,175, 94,109, 94,189,122,245,219,165,149,223,138, 21, 43,106,174, - 94,189,250,127,132,144,238,148, 82,149,213, 37,166,201, 40,163,193,202,109, 88, 46, 2,232, 77, 8,105, 59,110,220,184, 25,254, -254,254,169,138,162,232,182,108,217,242, 92,102,102,102, 21, 69, 81,166, 81, 74, 15,150, 49, 20,184,140, 16,130, 1, 3, 6, 76, -242,247,247,255,253,252,249,243, 79,189,244,210, 75,235,182,108,217,242,180,162, 40,215,175, 94,189, 58, 25,192,183, 0,190,115, - 86, 51, 54, 54,246,211, 29, 59,118,144, 35, 71,142,140,158, 56,113,162,193,199,199,135,120,122,122,194,102,179, 33, 46, 46,142, - 46, 95,190,220, 33, 8,194, 98, 15, 15,143, 25,206,106, 86,169, 82,101,234,142, 67,135,244,103, 47,156,123,245,189,151,251, 25, -107,250,153,225,198,153,145,117, 39, 21, 7, 15, 37,224,127,127, 29,176,167, 8,194, 58,142,227,156,158, 74,239,127, 37,165,215, -142,245, 63,108,218,191,119,239, 83,179,230,124, 70,234,191,249, 38, 92,106,213, 66, 70,157, 58, 56,190,127, 63,230,204,158, 69, -121, 75,210, 33,249,202,237, 23, 30, 86,133,200,125,198,224, 79,129,129,129,235, 46, 95,190, 60,124,242,228,201, 19, 67, 67, 67, -169,195,225,208,109,219,182,205,114,243,230, 77, 85, 85,213,207,181, 90,237,226,216,216, 88, 71, 25,116, 47, 2,120,145, 16,210, -118,232,208,161,211,253,252,252,146,100, 89,214,140, 31, 63,254,169,180,180,180,106,148,210,233,101,173, 75, 21,137, 40,138,207, -140, 27, 55,110, 15,128, 74, 5,187, 67,239, 58, 89, 52, 26, 93,102,102, 38, 81, 85, 85,178,219,237,201,121,145,209,226,206, 35, - 73,146,158,154, 58,117,234, 30,187,221, 94,179,184,223,213, 25, 77, 56,120,248, 8, 6, 13,232,175,104,120,254,147,129, 3,250, -235, 15, 31, 61,166, 80,170,110,102,205,211,163, 9,165, 20,185, 55, 3,180,132,125,226, 8, 33, 31,157, 60,121,210, 56, 98,196, -136,144, 65,131, 6,185, 61,253,244,211,174,133,162,239,234,150, 45, 91,172, 75,150, 44, 73,221,183,111, 95,196,208,161, 67,123, - 34,103,245,248, 34, 73, 76, 76,220,190,112,225, 66,143,142, 29, 59,214, 86, 20, 5, 41, 41, 41,249, 99,176,226,227,227,113,253, -250,245, 27,138,162,252, 94,198,236,188, 55,112,224,192,141,225,225,225, 1,195,134, 13, 75, 88,179,102,205,239, 0,138, 26, 83, -235,218,167, 79,159,238,225,225,225, 1,195,135, 15,143, 3,240, 1, 91,225,157,193,184, 15,131, 85,160,177, 56, 12,224, 25, 66, -200, 11,132, 16, 47,187,221,190,130, 82,186,245, 62, 26,168,101,132,144,157,113,113,113,131, 1,248,125,243,205, 55,223, 0,136, - 7,112, 25, 64,207,162,198, 43, 56, 97, 10,102,250,251,251,111,154, 62,125,122,133, 60,139, 48,247,145, 58, 99,125,125,125,127, -249,104,233,242, 9,170,170, 54, 87, 37,177, 10,120, 77, 58,207,243,103, 36, 73,250, 44, 46, 46,174, 76,134, 96,125, 78, 58,123, -180,174,233,254,252,132,145,131,102,203,188, 41,192,226,144,245, 46,122,141,160,163,246, 56,206,150, 49,253, 88,108,214, 35,113, - 97,205, 53, 79,255,171, 93,187,246,242,227,199,143,127, 8, 96, 68,118,118,246, 18,163,209,248,197,149, 43, 87,178,238,227,216, - 31, 6,208, 57,183, 46,249, 88,173,214,181,247, 83,151, 42,138,136,136,136,107, 97, 97, 97,193, 0, 76,197,237,195,243,252,130, -237,219,183,191,216,165, 75, 23,187,195,225,152,215,165, 75, 23,205,169, 83,167, 40,165,116, 79, 81,251, 31, 59,118, 44, 9, 64, -137, 51,187, 66,218,182, 13, 8, 95,177,226,240,144,193,131,221, 22,125,253,101,229, 19, 17,145,202,143,225,225, 89, 22,187,125, - 1,107,158, 30, 13,242, 2, 85, 90,173, 22, 46, 46, 46,112,119,119, 71,114,114,114,169,147, 60, 40,165, 87, 9, 33,125,198,141, - 27,215,118,220,184,113,207,249,249,249, 53,172, 89,179,166, 63,199,113,220,205,155, 55, 83,226,226,226,110,136,162,184, 7,192, -118, 0,186,160,160,160, 51, 0,214, 20,167,119,225,194,133,207,252,252,252,246,111,220,184,241, 57,163,209, 88, 95,167,211, 85, - 22, 69,145,179, 90,173,105,130, 32, 68,137,162,248, 71, 66, 66,194,209, 50,158,143,127, 19, 66,158,215,104, 52, 27,150, 45, 91, - 86,239,230,205,155, 53,247,237,219,119,207, 34,199, 97, 97, 97, 75,195,195,195, 3, 70,142, 28,121,109,245,234,213,125, 89,247, - 32,131,225, 68,219, 81,142,117,233,202,210, 48, 61, 86,161,206,192,192, 64,131,179, 81, 27, 22, 58,126,252, 52,155, 52,105,226, - 89,173, 90,181,126,163, 71,143,214,215,175, 95, 31, 81, 81, 81, 88,180,104,145,144,152,152,184,254,220,185,115,233,229, 77,103, - 72,219,182, 1,174, 70,227,104,128,188, 0,208,173, 22,187,253,174,103, 17,178, 99,244,112, 52,123,245,234,181,201, 96, 48,212, -226, 56,142, 80, 74,105,222,163,147,242,102,128, 10,130, 16,179,123,247,238,222,143, 67,222, 9, 33,230, 86,173, 90,205,136,138, -138,250, 43, 51, 51,243,158, 65,238, 6,131,161,123,104,104,232,128, 35, 71,142, 76, 47, 60,139,144,213, 37,166,201,184,143, 8, - 22,227,174,168, 14,227, 63, 74,174,137,202,159,208, 16, 20, 20,132,238,221,187,223,183,110,174,153,250, 0,108,229,246, 71,138, -205,155, 55,247,254,175,228,149, 82, 26,135, 18, 22, 41,117, 56, 28,191, 3,248,157,213, 10, 6,195,121,216,106,209, 12, 6,131, -193, 96, 48, 24, 21, 12, 1,208,164,152, 59, 26,167, 67,127,132,144, 38,229,184, 99, 58,199, 52,153, 38,211,100,154, 76,147,105, - 50,205,255,150,102, 1,237,153,197,124,149,144,171,179,244, 95,109,176,216, 24, 44,166,201, 52,153, 38,211,100,154, 76,147,105, - 62,108,205, 66,250,195,254,237, 6,139,117, 17, 50, 24, 12, 6,131,193, 96, 48,131,197, 96, 48, 24, 12, 6,131,241,104,227,212, - 44, 66,189, 94,223, 16,192,107, 0,170, 17, 66,110, 83, 74, 87, 8,130,112,241,191, 86, 88,122,189,190, 33, 33,228, 53, 74,105, - 53, 0,183, 1, 60,220,114, 32,132,204,152,158,179,178,254,180,233,160,248, 39,251,123, 25, 12, 6,131,193, 96,220,191,193,170, - 21, 16,240, 18,225,240,133, 36,171,158,158,158,158,220,194,133, 11,185, 30, 61,122, 96,203,150, 45, 24,253,238,187,111,251,251, -251,170, 90, 94,147, 14,170,124, 24,115, 35,225, 87,103,126,172, 79,159, 62,177,146, 36, 21,251,252, 46,158,231,147, 55,109,218, - 20,120,191,153,242, 11,237, 31, 43, 73, 98,177,191,163,209,104,147, 19, 79,173,119,234,119, 2, 2,252, 94,226, 64,190,144, 85, -213,179,114,229,202,220, 55,223,124,147, 95, 14,163, 70,141,122,219,236,239,175,106, 53, 92, 58, 85,241, 97,204,141, 27,191, 62, -176, 35, 87,192, 92, 1,192,140,233, 32,211, 8,193, 35,105,178,114,211, 58,109, 26, 40,192, 76, 32,131,193, 96, 48,254,195, 6, -139, 16,250,245,234, 37, 95,120,166,166,166, 97,205,230, 63,209,160, 65, 3, 92,184,112, 1, 13, 26, 52,192,147,173,154,113, 93, -159,104,206,241, 28,170,126,252,205,202,175, 1, 56,101, 44, 36, 73,242,222,184,113, 35, 8, 33,249, 11,246,229, 45,218,151,149, -149,133, 49, 99,198,120, 87, 68,166, 36, 73,244,190,118, 98, 3, 52, 60,129,172, 80,136, 50,133, 36,171, 16, 21,138, 76,171,140, -167,187, 15,116,250,119, 8, 37, 95,255,248,205, 60,207,244,140, 12,108,216,182,227,174,114,120,186, 93, 75,174, 95,183, 78,156, -139, 73, 87,117,248,132,207,156, 46,135,138,160,160,185,186,203,100, 1,143,156,129,201, 75,235,140, 25, 32, 64,206,178,216,211, -167,131, 82, 22,113, 99, 48, 24, 12,198,127,205, 96, 57, 36,197,179, 90, 21, 15, 44,255,241, 71,140,159, 56, 11,245,235,215, 7, -165, 20,132, 16, 76,158, 58, 19, 95,205,154,136, 1,207,119,128, 36,171,158,197,105, 20,179, 98, 48, 98, 98, 98, 96,179,217,238, -122, 53,110,220,216,169, 4, 59, 59,107, 65,195, 19,252, 30,153, 5, 81, 82, 33,202,185, 47, 73,197, 83, 77,220,202,164, 41, 41, -170,167,167, 71, 37, 44, 91,242, 29,198,205,156,119, 87, 57, 76,152, 60, 21,139,230,126,132,177, 35, 95,135, 67, 82, 60,203,147, -206,178,240, 56,105, 78,159, 14, 50, 99, 6, 33,206,118,109,178,242,100,154, 76,147,105, 50,205,199, 91,243,177, 52, 88,132,144, -142, 0,246,230, 22, 90,126,100, 68, 18,236,104,100,246,194,119,243, 63, 1, 5, 7, 21, 20, 80, 1,170, 74,168, 85,213, 5, 54, -171,181,204, 63,168,170, 42, 68, 81,132, 36, 73, 88,186,116, 41,178,179,179,161,170, 42, 26, 52,104, 0, 0, 8, 11, 11, 43, 40, - 26, 23, 17, 17, 81,191, 52, 77,239, 38,189,162, 8,136,185,224,182,105,243,126,192,161,200,171,160, 20, 48,152, 92,208,119,208, -112, 40, 42,133, 40,149,253,249,164,118,139, 21,213, 42,105,241,213,236,169,224,180, 58,112, 32,224, 56, 2,142,168,168,239, 95, - 25, 14,155,237,129, 31,184,105,211, 65, 11, 71,177,166, 77, 7,197,180,127, 87, 5,124,164,187, 54, 25, 12, 6,131,241,143, 83, -156, 7,121, 44, 12, 22,128,189, 69,101, 74,176, 91,225, 95, 89,135,234,149, 60, 32,203, 10,206,139, 53,144,101,181, 67, 20, 37, - 92, 23, 69, 92, 57,117, 19,109,219,182, 69,239,222,189,179, 5, 65,128, 78,167,203,220,188,121,179, 95,105, 6, 75,146, 36,136, -162, 8,139,197,130, 85,171, 86, 65,163,209,228, 63, 56, 53,239, 58, 75, 41, 69,187,118,237,204, 78, 29, 28, 16,243,149,227,191, -194,205,200, 67, 86, 41,100,153, 66, 86, 0, 89,165,176, 10, 42,250, 12,253, 8,178,170, 66, 81, 85, 8, 98,233,215,241,187, 12, - 91,149,150,232, 53,105, 13,128, 74,249,223,187, 27, 40,198,183,227,160,211, 27,160,215,241,112,216,172, 15,254,200, 81, 74,167, - 17,130,127,219, 32,247,105,211,168, 10, 16,146,211, 93, 88,192,100, 61,130, 93,155, 12, 6,131,193,120, 32,236,125,156,140, 85, - 97,131,149,239, 34, 41,165,251,254,223, 96,217, 32, 75, 10, 36, 89,129, 44,201,200,200,182,225,243,207, 63,135,193, 96, 0, 33, - 36,223, 44,169,170,202, 73,146,132,110,221,186,121,150,246,131,138,162,228, 71,176, 40,165,224,121, 30,173, 91,183,190,103,191, -163, 71,203,244, 80,120,184, 25,121,212,234, 60,233,158,237,199,126,253, 4,148, 82, 40, 10,133,172, 80, 8,178,114,223,134, 45, -164, 99, 63, 56, 4, 41,103,184, 54, 5,236, 86,235,195, 57,122,148,210,124, 99,242,175,138, 92, 81, 58,109, 26,232,140, 25,132, - 45, 19,194, 96, 48, 24,140, 34, 61,200, 99,101,176,144, 19,162,203,119,145, 14,155, 13,146, 36, 67,150, 21, 72, 82,142, 49, 50, -153, 76,232,208,161, 67,222,245, 61,255,253,207, 63,255,132, 40,138,165,254, 96,222,160,118, 81, 20,161,170, 42, 40,165, 88,179, -102, 13,180, 90,109,254, 75,167,211,149, 57, 35,178, 66, 49,105,194,251,208,105, 57,104,121, 14, 58, 13, 7,173,134,135, 66, 41, - 40, 5, 84,149, 66, 81, 41, 28,146,115,129,146,146, 12, 27, 0,136, 14, 17,160, 20, 20, 20, 54,139,133,157, 25, 12, 6,131,193, - 96,220, 31,119,121,144,199,197, 96,117, 34,132,220,227, 60, 4,155, 37, 55,122,165, 64,146,229,124, 3, 53,127,254,124,104, 52, - 26,232,245,122,104, 52,154,124, 67,228,140,193,178,219,237, 8, 10, 10,130, 32, 8,104,208,160, 1, 40,165,120,249,229,151,239, -217,239,248,241,227,101,202,136,164, 80,204,249,236,203,123,182, 31, 92, 63, 11, 77, 27,214, 66,203, 58,174,176,139, 42, 50,173, -242,125, 27, 54, 0,176, 11, 18, 84,228, 44, 58, 96,179, 88,217,105,193, 96, 48, 24, 12, 70,249, 40,210,131, 60, 22, 6, 43, 55, - 36,119,143,107,180, 91,173,144, 37, 57,223,100, 9,130, 0, 85, 85,241,238,187,239,222, 35,180,107,215, 46, 8,130, 80,242,143, -105, 52,201,111,189,245,214, 93, 75, 36, 80, 74,241,235,175,191,194, 96, 48,220, 21,197, 34,164,108, 38, 86, 82, 40,166,127,244, - 33,244, 26, 30, 90, 77,158, 33,226,160,170,192,150,223,255,194,150,223,255,202,223,151,231,181,201,247, 99,216, 0, 64, 16, 68, -128,230, 68,224, 44,217, 89,236,244,112, 18, 66, 8, 97,203, 51, 48, 24, 12, 6,163,128, 15, 40,210,131, 60, 22, 6,171, 56,236, - 54, 11,164, 2, 99,176, 68, 81,132, 44,203, 88,186,116,233, 93,221,121, 90,173, 22, 28,199,149, 26,193,218,184,113,227, 93,139, -123,134,133,133, 89, 41,165,232,219,183,111,126,119,227, 27,111,188,129, 97,195,134,149,217, 96,201, 10,197,140,217,243,243,117, -186,117,110,143, 94,207,119,132,154,123, 41, 79, 58,183,201,165,162, 12, 27, 0, 8,142,156, 49, 88, 20,128, 53,139,117, 17, 58, - 75,254,242, 12,211,168,202, 74,131,193, 96, 48, 24,143, 43,197, 26, 44,173,134,203,188,114,253,150,123, 85, 87, 19,100,213, 14, - 69,205, 25, 55,165, 40, 10,134, 13, 27,150,191,223, 43,175,188,130,215, 94,123,173, 72,131,229,204,211,182, 85, 85,197,193,131, - 7, 65, 8, 1,199,113,249,175, 18, 34, 32, 69,106, 90, 28, 42, 14,173,155, 9,149, 82,168, 20, 80,115, 39, 36, 56,228,210,131, - 37, 69,105,150,102,216, 12,110,158,224, 9, 5, 33,192,149,248,219,208,240, 92,102, 89,243, 94, 86,254,173,154,211,167,131, 78, - 47,180,164, 68, 89, 7,184,179,242,100,154, 76,147,105, 50,205,199, 91,243, 63, 99,176, 8, 37, 31, 44,222,122,116,190,164,168, -238,121,219, 26, 53,106, 4, 81, 20,177,125,251,246,124,227,193,243,124,126,151,158, 51, 99,176, 10, 17,215,161, 67,135,146,150, - 98,136,115, 70,132,130,198,181,120,170,191,185,164,239,203,154,176,210, 12,219,178,125,231,255,191, 16, 57, 46,147, 35,228, 3, - 86,157,138, 41,127,154, 55,223,242,238,229, 25, 24, 12, 6,131,193,248,207, 25,172,216,184,184, 53, 0,214, 20,220,214,173, 91, -183,164, 94,189,122,153,100, 89,134,195,225,128, 40,138, 16, 4, 1,162, 40,194,225,112,192,104, 52,150,105,197, 77,103, 22, 17, -117,134,228,115,155,235, 87,100,161, 56, 99,216, 18, 19, 19,235,179,234, 83,118,171,149,243, 60, 66,102,180, 24, 12, 6,131,241, - 31, 53, 88, 69, 97,179,217,124, 1,104, 18, 18, 18,238,249,238,214,173, 91, 0, 32, 63, 14,133, 82,209,134,141, 81,178,209,250, - 55,174, 64,207, 96, 48, 24, 12, 70,133, 25,172,189,123,247,202,143,139,137, 98, 60, 66, 70,139,153, 43, 6,131,193, 96, 60,102, -176,149,180, 25, 12, 6,131,193, 96, 48, 42, 24, 2,160, 73, 81, 95,148,101,118, 0, 33,164, 73, 89,127,184, 52,125,166,201, 52, -153, 38,211,100,154, 76,147,105, 62,126,154,165,105, 83, 74,207, 17, 66,134, 81, 74,151,254,171, 13,214, 63,185,230, 35,155,194, -202, 52,153, 38,211,100,154, 76,147,105, 50,205,114,232,255,235, 13, 22,235, 34,100, 60, 52,194,134, 71,154, 88, 41, 48, 24, 12, - 6,227,113, 68,243, 40, 38, 42, 44, 44,172, 58,165, 52,148,227,184,202,148,210,157, 17, 17, 17,183,216,161, 42,215, 29,128,134, - 82, 42, 63,138,154,230, 1,235, 54, 24,212,236,103,125,123, 93,140,107,171, 51, 54, 94,191,190,175,194,142, 24,131,193, 96, 48, -152,193,202,165, 85,171, 86,129,138,162, 12, 4, 48, 0,192,217,136,136,136,129,101,213,120,226,137, 39,140,146, 36,141, 0,208, - 10,156, 38,180,110,179, 14, 53, 66, 91,119, 64,154, 85,197,206,117, 95,196,116,234,212,169,197,222,189,123, 29,101,209,108,209, -162,197, 6, 74,105,215, 98, 76,194,167, 39, 79,158,156, 93, 22,189,230,205,155,119,230,121,254, 3, 0, 80, 20,101,254,233,211, -167,119, 62,138, 7,212,219,219,219,213,221,221,253,163,218,181,107,119, 30, 56,112, 96,112,187,118,237, 82, 19, 19, 19, 79, 72, -146, 52, 55, 33, 33,225,108,121, 53, 61, 61, 61, 63,106,220,184,241,179,111,188,241, 70,173,118,237,218,165, 38, 36, 36,156,144, -101,185, 92,154,109,198, 30,171, 73, 45, 41, 93, 55, 46,126, 7, 35,103,173, 9, 56, 43, 27, 7, 2, 88, 81,102, 35, 62,124, 99, -117, 78,195,107, 78, 44,234, 25, 15, 0,129,129,129, 53, 37, 73,234,168,170,106, 83,141, 70,115,150,231,249,125,177,177,177,215, -239,167, 60,255, 45,154, 12, 70,121, 81,215, 87,206, 31, 39,194,245, 75, 35, 0,224,225,225,193, 33,231, 73, 96,154,204,204, 76, -149, 82,170, 20,181, 31,131,193,168, 96,131,213,168, 81, 35, 87,157, 78,215,155,227,184, 65,205, 91,182,107,219,179,239,235, 68, -226, 76,248,228,253, 87,202, 28,217, 8, 11, 11,107, 5,194, 47,125,109,244,156,224,128,160, 6, 48,184,120,192, 34, 0,183, 51, - 84,232,173, 10,204,205,174,212,186,118,108, 77, 91, 0,187,203,162, 75, 41,237,186,110,219, 49,220, 76, 87, 64, 72,206,104,126, -142, 3,178,237, 42, 38, 15,121,114, 50,128, 50, 25, 44,142,227, 38, 13,157,187,175,149, 74,129, 31, 39,118,208, 1,120,228, 12, -150,175,175,239, 19,109,218,180, 89,241,254,251,239, 87,247,242,242,130,171,171, 43,180, 90,109,181,132,132,132, 30,163, 70,141, -122,222,207,207,111, 66, 66, 66,194,226,178,106,118,237,218,117,213,135, 31,126,232, 67, 8,129, 70,163,129, 78,167,171,150,144, -144,208,227,131, 15, 62, 40,179, 38, 33,132,107,252,244,144, 33,110, 62, 29,192,113, 4, 30,174, 70,100,196,158,237, 23, 24,248, -238,250,216,216, 88,167, 77,116,200,240,109, 83, 41, 12,227, 84,153,144, 38,175, 44,217,126,103,255,204, 27,245,234,213, 35, 67, -134, 12,185,163, 40,138, 77,146, 36,239,240,240,240, 81,190,190,190,148,227,184,189, 14,135,227, 96, 74, 74, 74,118, 73, 9,155, -145,251, 56,159, 21, 43, 60, 43, 9,130,233, 73, 74,105,135,250,245,235,147,161, 67,135,166, 74,146,100,179,219,237, 62, 43, 86, -172,112, 94,179, 0, 85,171, 86,173,164,215,235,219, 83, 74, 59,222, 87, 58, 11,208,175, 51, 57,189,126, 39,109, 94,222,239, 11, -101,223, 3,128,145, 82,122,203,137,125,125, 0,184, 80, 74, 99, 30,180,230, 63,129,159,159, 95, 6,165, 84, 91,150,255,209,233, -116, 85,202, 82, 95, 31,117,184,126,105,132, 16, 66, 2, 70, 87, 35,215,111,223,166, 25, 25, 25,121,207, 10,149, 10,155,170,130, - 70,139,193, 96, 84,128,193, 34,132,144,144,144,144,118,132,144, 87, 3,131,106,247,238, 51,112,184, 41,176, 78, 19,100,171,238, -136, 73,161,136,220,243, 51, 8, 33,191, 58,171, 87,187,118,109,189,135,135,199,199, 1,117, 91,140, 30, 54,118, 58,119,238,182, - 17,251, 98, 20,104, 56, 1, 60, 0,193,154,140,204,155, 81,184, 29,189,215,166, 40,202,177,242,100, 46, 33, 77,198,254, 40, 1, - 60,151, 99,174,120,142, 64, 83,254,251,174,234, 20,192, 31,103,108, 32,132,212,120,212, 14,164,217,108,126,182, 71,143, 30,235, -199,140, 25,163,177, 90,173,176,219,237,160,148,194,104, 52,194,215,215, 23,191,254,250,171,102,192,128, 1,159,251,251,251,159, -142,143,143, 63,238,172,230,224,193,131,215,191,243,206, 59,154,168,168, 40,136,162, 8,147,201, 4,163,209,136, 42, 85,170, 32, - 60, 60, 92,243,230,155,111, 58,165,217,160, 65,131,214, 6,131, 97, 86,203,150, 45, 91,212, 14,246,230, 83,170,212, 5, 0, 4, - 4,213,129, 27,110,119,184,118,211, 39, 57, 52, 52, 52,218,106,181,206,142,142,142,254,173, 36,173, 38,111,111,243,212,128,188, -191,248,253,182,156,134,231,201,200,175, 14,118, 91,253,219,190,133, 29,194,106,167, 1,176,108,219,182,205,222,173, 91, 55, 97, -232,208,161, 98,116,116, 52,247,213, 87, 95, 53,219,189,123,119, 79,127,127,255, 3,241,241,241, 63, 23,165, 57, 99, 58,200,182, -155,191, 93, 18, 37,217,191,114, 7,201,241,188,255,133,111,222,124,115, 88,166,191,191,191,148,171,233,232,214,173,155, 48,124, -248,112,225,234,213,171,100,254,252,249, 77,118,236,216,241,130,217,108, 62, 16,151,243,212,131, 98, 9, 29,176,224, 47,159,230, - 47,235,186,183,172,124,232,221,145,111,101,248,250,250,202,229, 77,103, 33,234,220,231,247, 5,225, 1,204, 36,132, 44,167,148, - 30, 41,161, 29,104, 14,160, 31,128,175, 30,146,102,137,152, 76,166, 88,187,221,238, 13, 0, 70,163, 49,217,102,179, 5, 58,113, - 51, 70, 22, 44, 88, 0,157, 78, 7,142,227,160, 40, 10, 20, 69,129,170,170,160,148,230,191,231, 77, 8,154, 56,113,226, 99,217, -157, 77, 41,165,157,130, 2,105,167,160,156, 34,187, 45,202, 3,171,233, 52,249,245, 48, 58,203,162,191,149,146, 34,130,193, 96, - 84,172,193, 10, 13, 13,221,216,173,207,235, 93,218,116,232, 2, 89, 87, 13, 81, 73, 4,113, 49, 20, 26, 94, 6, 7, 21, 49, 39, - 54, 83,158,231,127, 46,116,194,158, 43, 46, 2,230,225,225,185,167,239,240,233, 13,131, 26,183,199,214, 11, 34, 84, 69, 64,202, -165, 63,144,126,253, 56, 44,183, 47, 9,146, 35,251, 2, 33,228,176, 94,175,255,234,236,217,179,214,210, 52,139, 34,231, 25,130, - 20,132, 18, 64, 5, 0, 10,112,164,168,134,165, 84, 77,142,227,206,110,222,115,193, 76,180,174, 0,112,213,137,198,170,194,103, - 87, 20,167,233,231,231,215,109,212,168, 81,107,187,119,239,206,165,164,164, 0, 0, 54,109,218,132,147, 39, 79,194,108, 54, 99, -252,248,241, 8, 8, 8,192,140, 25, 51,248,193,131, 7,207, 1,240,148, 51,154, 31,189,246,218,218,238, 67,135,114, 39, 79,158, -132, 44,203,216,185,115, 39,206,157, 59,135, 26, 53,106, 96,204,152, 49, 8, 8, 8,192,148, 41, 83,248, 17, 35, 70,148,168,217, -162, 69,139, 11,129,129,129,230,215, 94,123,141,235,209,163, 7, 73,202, 2, 70, 44,140,202,169,128, 58, 3,250,247,123,137,123, -254,179,183,176, 99,199,142,134,203,151, 47, 95,209,162, 69, 11,225,228,201,147,222, 78,151, 39, 33,180,146,187, 87, 42,128, 36, - 0,112,119,119,119, 5, 96, 5, 96,173, 87,175,158,230,219,111,191,149,163,162,162,174,118,237,218,245, 57, 0, 63, 23,167, 41, -203,106,245, 31, 38,119,193,208, 79,119, 24,166, 77,251, 56,137,227,180, 18, 0, 17, 0, 60, 61, 61,243, 53,131,131,131, 53, 11, - 23, 46,148,162,162,162, 98,114, 53,215,148,148, 78, 73,235,213,182,249,147,141,197,189,113,169, 77, 50, 86, 95, 57,252,206,139, -134, 29,141,131,170,100,151, 55,157,253, 58,147,211,121,230,169, 95,103, 98, 45, 37,202,101, 5,240,119,225, 72, 86, 97, 77, 74, -233, 29, 66,200, 50, 0,107, 8, 33,131,138, 50, 68,132,144, 39, 0,172, 2,208,155, 82,154, 92, 90,253, 44,168,105, 48, 24,116, -130, 32,120, 22, 54, 62,101,213, 44,144, 22,107, 68, 68, 4,194,194,194, 80,240, 61,239,198, 34,119, 31,111,103,207, 35,158,231, -241,221,119,223,129,227, 56,232,116, 58,104,181, 90,232,116,186,123, 94,205,155, 55, 7,165, 20,132, 16,167,207,119, 66, 8, 31, - 16, 16,240,190, 70,163, 25, 44, 8,130,159,193, 96,184, 41, 73,210, 42, 47, 47,175,207, 35, 34, 34,164,135,221,134,112,253,210, - 72,144,127,181,106,102,157,241,214,187,239,188, 42,248, 24,117,186,172, 52, 59,249,252,199,213, 63, 79, 30, 49, 8,158, 70, 35, -117, 72, 10,157,186,240, 71, 1, 0,241, 29,195,105,111,247, 39, 58, 74,169,248,160,219, 58,166,249,120,107,150, 66, 75, 0, 5, -207,105, 1,128, 62,247,239, 20,228,116, 84,121, 21,218, 94,112,191,188,247,188,118,198, 59,247,255,104, 1,221,100, 0, 39, 42, -212, 96, 17, 66, 40,165,148,228,189, 23, 83,152,110,241, 54, 79,100,199,120, 67,195,169,208,240, 4, 26, 30, 0, 8, 82,227, 47, -194,158,157,114, 56, 34, 34, 34,214,153, 31, 53, 26,141,179,250,141,156,221, 80,241,106,137,223,207, 8,144, 50,227, 16,191,239, - 11,106, 77,190,188,140,231,249,229,138,162, 92,138,140,140,148,238, 55,115, 42, 5,148,130,198, 74, 5, 8,202, 29,221, 46,248, -192,232,155,143,138, 67,246,245,245,237, 57, 97,194,132,159, 67, 67, 67,201,202,149, 43,209,164, 73, 19, 44, 91,182,140, 94,190, -124,249,107, 66,200,215,177,177,177, 79, 89, 44,150,229, 63,255,252, 51,218,180,105, 3, 15, 15,143,230, 97, 97, 97,218,146, 26, -118, 95, 95,223,158, 43,222,125,247,231,166,237,218,145,249,157, 59,195,247,229,151,177,118,223, 62, 26, 19, 19,243, 53, 33,228, -235,184,184,184,167,236,118,251,242,239,191,255, 30, 45, 90,180, 40, 85,147,231,121,255, 53,107,214,240, 46, 46, 46,224,121, 30, - 53,141,128,143,167, 14,159,175,139, 66,114,134, 29,227,122,251, 66,163,209,160,115,231,206,240,243,243,211,140, 28, 57,178,196, -217,173,231,190,237,150, 30, 50,124,219,151, 35,230, 31,154,192, 17,142, 6,249,104,246,120,240,233, 23, 1, 79, 13, 0, 15,111, -111,111, 9, 0, 4, 65,200,248,253,247,223,229,200,200,200, 42, 65, 65, 65, 94,101, 41,215, 83,167, 78, 91, 43, 87,246, 74,173, - 85,171,150, 6,128,135,151,151,215,125,105,190,218,173,153, 62,219, 38, 96,239,201,107, 79, 14,157,179,167, 93, 45, 95,183, 51, -189, 90, 86,217, 5,192, 82, 86,205, 60,179,212,175, 51,177,174, 95,127, 56, 25, 84, 1,228, 44, 9, 98,134, 4, 37, 67,130,152, - 41, 67,186, 35,245, 27,243,101,147,245, 59,169, 75, 25, 26,204,227,132,144, 65, 0, 86, 21, 54, 89, 5,140,208, 32, 74,233,217, -178,106, 10,130,176, 51,207,248, 24,141, 70,111, 66,114,140,161,209,104,148,236,118,251,243,101,209, 4,128,136,136, 8,132,134, -134, 86,202,213,164,121,239,185,134,181,204,228, 61,180,158,231,121,132,134,134,162, 71,143, 30,168, 87,175, 30,226,227,227,177, -119,239, 94, 92,190,124, 57, 63,194, 85, 22, 8, 33,124, 96, 96,224,238, 46, 93,186, 52, 26, 61,122,180, 49, 32, 32, 0, 81, 81, - 81,230,111,191,253,246,189,131, 7, 15,118, 15, 11, 11,107, 95,210,185,248, 32,232, 20, 20, 72,205, 58, 35,222,127,123,160,224, -227,170,211,165,158, 63, 76, 92, 56, 13, 70, 63, 89, 27, 53, 1,255,216, 12, 0, 0, 32, 0, 73, 68, 65, 84, 60,140,184,113,244, - 32,177,139,148,124, 48,236, 85,177, 83, 80, 32,173,103,170,132, 91, 52,149,141,193, 98, 84, 24,206,120, 16, 0,222,132,144,173, - 5,218,150, 23,242, 62, 79,156, 56,113,242,156, 57,115,206, 19, 66,182, 22,220, 94,112,191,130,239,185,191,185,149, 82,250,194, -164, 73,147, 26,207,157, 59,247,211,188,125, 31, 74, 4, 75,171,213,190,114,110,251,215,135,234,138,180,134, 79,227,238,185,109, - 25, 1, 64,113,253,244,118,168,170,186,202, 25,157,144,144,144,246,230,250,109,222,242,173,215, 6,219, 78, 59,144,117,229, 79, -220, 58,178, 40, 78,149,133, 17,167, 78,157,218, 95, 17,153, 10, 13, 13,237, 93,185,106, 13, 56, 68,154,107,176,238, 54, 89,143, - 11, 1, 1, 1, 47,205,158, 61, 59, 60, 56, 56,152,172, 95,191, 30,148, 82,252,242,203, 47,244,202,149, 43, 35,111,222,188,185, - 50,239,122, 92,175, 94,189, 69, 60,207,155, 56,142,131,217,108,214,157, 57,115,198, 23,192,245,226, 52,215, 78,152,240, 83,243, -122,245,144,208,175, 31,158,148,101,252,176, 98, 5,189,174,170,119,105,214,173, 91,119,145, 70,163, 49,241, 60,143,128,128, 0, -221,233,211,167,139,213, 4, 0, 73,146,112,230,204, 25,104, 52, 26, 84,169, 82, 5,159,189,230,143, 99,151,238,160,105,144, 15, -108,105,241, 88,183,235, 20, 98, 98, 98,224,233,233,233,156, 1, 90,210,109, 86,205,186,161, 13, 86,172, 90,151,104,160,105,231, - 82, 83, 83,189, 82, 83, 83,225,238,238,158,161, 40,138,244,249,231,159,107,175, 92,185,226, 97, 52, 26, 97, 48, 24, 32, 73, 82, -153,156,181, 44,203, 92, 69,107, 86,118, 51,162,207,211,141,116,207,181,173,139,131,167,175,135,125,241,107, 76,147,184,139,123, -134,220,143, 38,168, 2, 28,105, 31,121,207,118,255,193,222,229,188, 43, 61,146,107,178,182, 17, 66,116,185,155,147,114,223, 7, -149,212,213, 87,138,102,254,103,135,195, 81, 48,202,164, 45,143,102, 88, 88, 88,158,134, 90,232,230, 45, 57, 47,114,101, 52, 26, -147,157,213, 83, 20, 5,122,189, 30,141, 27, 55,198, 7, 31,124,128,168,168, 40, 28, 60,120, 16, 62, 62, 62,232,218,181, 43, 52, - 26, 13,226,226,226,202,108,176,252,252,252,222,127,230,153,103, 26, 44, 88,176,192, 24, 27, 27,139,168,168, 40,184,187,187, 99, -214,172, 89,166,137, 19, 39, 6, 29, 58,116,104, 18,128,153, 15,211, 92, 13,123,179,191,232,227,162,211, 74, 87, 35,116,158, 85, - 43,145,189,183,178,208,167,153, 63,234,249,122, 64,151,113, 25,123,179,237,240,215,234,225, 65,120,237,164,161, 3,169, 69,167, -255,187, 83, 80, 32,221,123, 45,150,153, 44,198, 3,167,176, 9,202, 51, 78,115,230,204,121,161, 40, 83, 85,132,153,187,107,251, -220,185,115, 63, 45,240, 57,173, 34,211,202, 21,116,144, 37,237, 40, 73,210, 19,158, 85,125,189,135, 13,236, 10, 85, 5,100, 21, -144, 21, 10,171,213,130, 91, 81,123,173,162, 40,110, 42,237,199, 26, 53,106,228, 74,120,221,226, 55, 70, 77, 37,219, 78, 57, 96, -191, 19,139,155,135, 23,222,208,112,180, 85, 5,155,171,240,169,159,255,128, 19,215,132,220,110,194,156, 72,150,162,230,252,253, - 56,224,235,235, 91,239,133, 23, 94, 8, 15, 10, 10, 34,235,214,173,131,195,225, 64, 92, 92, 28,141,140,140, 28,158,144,144,176, -178, 64, 3, 63,248,249,231,159, 55,241, 60, 15, 73,146,112,237,218, 53,203,237,219,183,227,138,211, 28,218,190,125,120, 83,127, -127,196, 15, 28, 8, 37, 35, 3,103, 76, 38,122,130,210,123, 52,123,247,238,109,210,233,114,174,191, 87,175, 94, 45, 86,179, 80, -197,134, 32, 8, 72, 72, 72,192,217,200, 99,176,196, 29,193,218, 21, 75,176, 98,197, 10,196,196,196, 64,163,209, 64,150,157,159, - 39, 33, 91,147, 28,193,190,166,172,130,219, 50, 51, 51, 61, 34, 35, 35,213, 75,151, 46,121,228, 93, 56, 1, 64, 85,213,114, 91, -235,194,154,249, 17,210,114,106,154, 12, 90, 60,213, 34,136,151, 84,170,187,239,116, 42, 89, 69,143,137, 17,239, 72,247,209,128, - 29, 1,160, 43, 48,238,200,167,188,230,170,144,241,185,167,107,173,188, 68, 68, 68,228, 69,172,238,194,102,179, 5, 82, 74, 93, - 34, 34, 34,224,204,248,171, 2,199, 18,122,189, 30, 61,123,246,196,165, 75,151,144,144,144, 0,158,231,225,112, 56,224,112, 56, - 16, 26, 26, 10,157, 78, 87,230,244, 27, 12,134, 87, 70,143, 30,237, 18, 19, 19,131,212,212, 84,112, 28, 7, 89,150,161, 40, 10, -222,124,243, 77, 23,163,209, 56,224,161, 55, 38, 28,111, 73, 57,127, 84,189,157,225,192, 29,139, 72, 95,106,102,166,238, 70, 29, -110,102, 88,145,146,105, 71,191,230,102,202, 17, 66,143,109,253, 19,153, 7,142,211, 83,155,126,191,193, 46,243,140,127, 34,138, - 85,196,182, 97,132,144, 97,133, 13,210,253, 26,180,162, 52, 38, 77,154,212, 24,128,225, 31,137, 96,229,133,231,138, 51, 45,158, - 85,125,195, 39,205, 89,166,217,120,134, 71,218,205,104,216,147,162, 97, 14,237,133,164,232, 67,160,138,248,219,133, 11, 23, 44, - 78, 52, 54,239,247,121,107,122,192,129, 88, 3,108,162, 29,201, 7,191, 80, 9,149,135, 29, 59, 22,145, 85, 81,230,202,211,171, -122,248, 71,159,253,160,249,237,188, 22,119, 18,163, 17,181,121, 2, 20,209, 90,248,160,253, 89,198, 3, 79,194,194,194,170,215, -169, 97, 2,167, 51,224, 40, 33, 62,253,250,245,227,215,175, 95,255,208, 6,187, 38, 38, 38, 70,251,250,250,126, 34, 8,194, 84, -142,227,112,235,214, 45,122,250,244,233, 97,241,241,241,171,243,246, 49,155,205,207,182,106,213,234,235,137, 19, 39,130, 16,130, -221,187,119,195, 98,177, 28,162,148,170, 37,105, 86, 57,127,126,106, 71,171, 21,155,188,188,232, 18, 69,185, 71,179, 75,151, 46, - 95,143, 29, 59, 22,132, 16, 28, 56,112,160, 68,205,130,196,164, 80, 88, 28, 64,160, 23, 7, 79, 79, 79,236,221,187, 55,127,188, - 75,186,228, 6, 69,214,195, 87,107, 43,119,153,168,170, 74,210,211,211,121,155,205,198, 75,146,196,105, 52, 26,154,119, 17,150, - 36, 73,173, 40, 77, 69, 81,238, 75,179,208,141,203,253,165, 83,202, 40,218, 72, 9,201, 21,209,237, 36,228,190,235,239,199, 92, -229, 25,159,188, 1,232, 6,131, 33,223,168,148, 37,202, 84, 76, 4,171, 92,223, 23,101,176,180, 90, 45,234,212,169,131, 35, 71, -142,192,221,221, 29,149, 42, 85,130,201,100,130,193, 96,128,187,187, 59,244,122, 61, 56,142, 43,147,201, 18, 69,209,223,223,223, - 31,127,255,253, 55,140, 70, 99,254, 75,175,215,163, 94,189,122,176, 90,173,190, 15,243,162,150, 32,202, 95, 44, 93,186,250,195, -170, 94,198,235,153, 86,209,189,166,167,139,182,111,211, 90,166,230, 53,245,196, 97, 83, 96,179,171,184, 74,236,202,111,215, 19, -109,215,110, 91,148,106, 58,195,173,219,162,163, 75,188, 32,125,201, 44, 1,163,130, 35, 83,247,120,144,162, 86,114,175,136,110, -188,162, 76,214,220,185,115, 63, 45, 24, 5,171, 80,131, 85,162,105,169,234, 27, 62,241,211,101,154,245,145, 28,210,111, 70,225, -250,246,201,178, 34, 90,147, 85, 85,170,145,118,245, 32, 84, 85, 93,233,100,166,158,172, 30,212, 20,135, 78,137,176, 71,253, 10, - 33,253,218,194,136,136,136, 67, 21,105,174, 38,207,253, 65,179,225,140, 6,119, 18,163,113,245,247,137,138, 44, 88,222,138,140, -140, 92, 87, 94,221,214,173, 91,215,126,162, 69,200,119,175, 86, 19,219,244,236, 23, 4,189, 73,135, 9, 87, 53,207, 92, 56, 28, -123,160, 69,139, 22,195, 79,158, 60,121,225, 33,154,172,185,213,171, 87,215,154,205,230, 9, 9, 9, 9,111, 38, 38, 38,174, 45, - 16,101,234,214,167, 79,159,181, 35, 70,140,224,220,221,221,145,154,154,138,105,211,166,217,120,158,159,224,140,230, 46, 47,175, - 9, 39, 20,229, 30,205,142,189,134,175,157,240,222,235,156, 86,171, 69, 74, 74, 10,102,204,152, 81,170, 38, 53,214, 32, 47,127, -117, 3,149, 76, 90, 24,116, 70,196, 29,178,224,211,222, 57, 93, 69, 58,157, 14, 39, 51,155,128,115, 15,128, 73,167, 65,100,124, - 26, 36,183, 11, 36,108,120,164, 54, 98, 73,104,169, 38,129, 16,162,164,164,164,104, 99, 98, 98,140,130, 32,112,129,129,129,118, - 32,167,139, 47, 45, 45, 77,167,215,235, 65, 8, 17,101, 89, 46, 83,236, 50, 45, 45, 77,115,229,202, 53,131, 36, 73,197,106,138, -162,120,223,241,208,251, 77, 39,164,140,162, 67,126, 98,202,253, 26,172, 56, 66,136, 57,239,239,138,168,175,118,187,221,187, 64, -215, 32, 40,117,126,124, 88, 49, 17,172,114,127, 95, 68,219, 4,189, 94,143, 43, 87,174,192,219,219, 27,178, 44,195,213,213, 21, - 38,147, 9, 38,147, 9, 54,155, 13,122,189, 30, 60,207, 23, 57,200,189, 56,244,122,125,124, 84, 84, 84, 29, 79, 79, 79,168,170, -122,151,201,138,137,137,129,171,171,107,226,195,188,168, 93,137,143, 31, 87,219,223, 31, 72,181,127, 8, 0,127,219,179,176, 77, -159,152,210,160, 67,251,170, 13,196,115,184,112, 35, 29,219,206, 36,105,174,165, 88,220, 0,224,182,232,240,140, 23,164,190,215, - 18, 19, 55, 50, 75,192,120, 72,145,174,173, 5,141, 22, 33,100,235,196,137, 19, 39,151, 87,111,226,196,137,147,239, 55, 42, 86, -162,193,202, 27, 84, 86,120,112, 89,104,104,104,111, 15,175, 26,225,227, 62,249, 94,243,243, 73, 14, 25, 55, 47, 33,113,199, 20, - 89, 17,173,131,181, 90,237,145, 27,135,150,172,226, 56,206,118,250,244,233,131, 78, 20, 10, 23,214,166,125, 83, 94, 87, 9,148, -218, 96, 79, 56, 6,141, 70,243,117, 69,154,171,137,115,150,105,214,159,210, 32,237,102, 20,174,255, 49, 73, 81, 68,107,185,205, - 85,167, 78,157, 52,217,217,217, 99, 26,187, 42, 31,125, 16, 32,233,252,244, 42, 46,126, 55, 1, 81, 1,238,104,220,198,132,192, -250, 74,179, 99,127, 58, 14,135,133,133,205,119, 56, 28,115, 47, 92,184,240, 80,166, 47,223,186,117,107,150,191,191,255,111,137, -137,137,249, 51, 58,124,125,125,123, 14, 26, 52,104, 85,199,142, 29,185,213,171, 87,163, 87,175, 94,248,248,227,143,105, 74, 74, -202,187,137,137,137, 87,203,171,217,103,244,242,159,251,117,127,130,244, 31,247, 21,166,190,245, 20,126, 88, 56,187, 84,205, 42, -221, 87, 30, 51,251,118,231,235, 86,177, 97,100,255,118, 57,119, 10,107, 47,225,242,237,156,128,167,164,106,144,129,106,248,110, - 72, 51,112, 28,193,254,147,151,177,252,118, 19,146, 16,187,247, 28, 16, 90,191,164,116, 42,138, 66,126,250,233, 39,247,164,164, - 36,174, 94,189,122,119,154, 53,107,102,209,235,245,170,205,102, 83,140, 70,163,236,234,234,170,218,237,118,253,245,235,215, 43, - 39, 36, 36,240,121,221,112,206,176, 99,199,142, 26,245,235, 55, 76, 13, 9, 9, 41, 86, 51, 49, 49,145, 43,139,102, 81,220,111, - 58,139,141, 96,137,247, 23,193,162,148,214, 39,132, 88,239,199, 4,253, 83,228, 70,194, 0,192, 82,220, 82, 12,101,137, 96,229, -141,171,210,235,245, 56,124,248, 48,158,123,238, 57,168,170, 10,131,193,144,191, 44,201,241,227,199,161,211,233,192,243,124,153, -210, 42,138,226,234,133, 11, 23,126, 56,119,238, 92,215,188,110, 72, 23, 23, 23,232,245,122,204,159, 63,223, 98,179,217,214, 62, -236,242,188,154,144, 48, 30,126,126,199, 0,180,166,160, 60, 98, 83,198,218,100, 25,178, 35, 39,128,121, 41, 37, 5,177, 14,113, -133,134,144,108, 16, 34, 93, 77, 72,248, 21, 12, 70, 5, 71,175,138,242, 32,133, 72, 46, 20,189, 18, 10,124, 78, 70,206,179,149, - 95,200,253, 27, 69,252, 45, 20,177, 45,117,206,156, 57,123, 10, 68,174,146, 43, 50, 95,197, 70,176, 66, 66, 66,158,241,172,234, - 27,254,225, 39,223,107, 86, 28,227,145,126,243, 34, 82,246,124, 36,171,146,109,112,100,100,100,222,120,171,206,206,254, 80, 88, - 88, 88,237,154,245, 91,187, 36,101,169,160,170, 12, 57,227, 90,210,201, 19,199,146,238, 55, 3, 33, 33, 33,207,120,122, 85, 15, - 31, 63,123,153,102,117,132, 6,233,137,151,144,184, 99,202,125,153,171,230,205,155,119, 54,104,184, 31, 70,251, 75, 85, 94,168, - 42, 67,161,192,202, 91, 90,172, 57,117,236,160, 72, 84, 71,227, 39,140,157,155,180,211,227,153, 1, 46,154,171,103,197, 9, 39, -119,226,157,144,144,144,193,167, 78,157,218,254, 48, 42,103,124,124,124,190, 17,242,247,247,239, 51,100,200,144,159, 58,117,234, - 68,182,111,223, 14, 85, 85, 49,111,222, 60,122,230,204,153,209, 5,163, 81,101,213,236, 51,122,249, 79, 47,245,236, 66,166,172, -151,112,199,234,130,113,211,191,162, 66,226,217, 82, 53, 27,153,117,141,190,251,232, 85, 0,192,209, 11,183,176,235, 76, 26, 18, - 82,172, 24,218, 10,184, 0, 64, 67, 36, 84,230,110, 97,234,242,179,104, 22, 88, 9,125,159,170,139, 14, 45,234,226,155,159,254, - 48, 87,237,250,105,245,148, 63, 39, 23,187, 72,165,170,170, 41, 59,118,236,112,153, 58,117,106,118,141, 26, 53, 52,217,217,217, - 92,193, 49, 76, 58,157, 14, 53,106,212,144,211,211,211,197, 29, 59,118,212, 82, 85,245, 78,137, 39,131,134,187, 53,244,211, 29, -254,122, 78,181,247,238,221,135, 86,173, 90, 85, 99,179,217,138,212, 76, 77, 77, 21,119,239,222, 29,164,170,106, 74,105,101,201, - 43, 89, 41,243, 87,237,247,236,215,185,153,182,150,239,189,131,248,203,154,206,187, 13,214, 29, 9,230,215,171, 66,184, 35, 65, - 72,150, 33,166, 74, 16,147, 37,200,150, 71,110, 58, 71,121, 7,160,151, 18, 9,243,174,168, 8,150, 78,167, 67, 92, 92, 28,118, -237,218,133, 86,173, 90,193,205,205, 13, 22,139, 5, 71,142, 28,193,173, 91,183,242, 35, 88,101,225,198,141, 27, 95,106,181,218, -110,163, 70,141,170, 63, 98,196, 8,215, 6, 13, 26, 32, 54, 54, 22, 95,126,249,165,245,236,217,179, 49, 85,170, 84,153,243, 8, - 92,220, 40,128, 13, 0, 54, 4, 7,248,214, 5, 48, 86, 80, 84,252,122,238, 58,158,244,201, 41, 94, 66,105,118,182, 44,207, 74, - 74, 74, 74, 2,131,241,112, 56,241,111, 75,176,166,132,187,186,113, 79,244,157,170, 9, 63,170, 65, 90,194,121,100, 28,248,184, -176,185,114, 38,148,151,255,180,109, 69, 81,154, 55, 14,121, 2, 87,111,203,144, 51, 99, 1,170,156, 42,103,120,240,174, 39,120, -115, 28,247, 97,219,190, 83, 53, 43, 78,104,144,145,120, 17,201,123,166,150,217, 92, 21,161, 57,113,207,184,190, 85, 32,203, 56, -179,109, 45,190,138,211, 89,174,217,200,132, 83,167, 34,127,162,148,210,144,144,144, 1,241,151,165, 47, 91, 63,111,116,127,169, -207,203,232,211, 91,118, 29,251, 70,248,120, 0,219,139,211,172,160,208,104,137,154,190,190,190,245, 26, 54,108, 24,222,173, 91, - 55,178,105,211, 38,100,101,101, 33, 45, 45, 13, 71,143, 30,125, 39, 49, 49,241,167,242,106,214,104,212, 35,188,119,143, 46,100, -234, 47, 10,162,143,173, 67, 37,199, 13, 56,110, 30,115, 74,243, 92,156,120,122,224,248, 31, 67, 12, 70, 19, 20,147, 31, 62,236, -229,139, 6,222, 4, 54,235,255, 15,217,107, 89,249,111,100, 35, 29, 7, 79, 85,199,111,127,237, 7,175, 90,113, 35,201, 30,159, -178,235,255,205, 85, 81,233, 76, 78, 78, 30,175,211,233, 58, 12, 25, 50,228,229,246,237,219,187, 13, 27, 54, 44,201,221,221,221, -162,215,235,249, 42, 85,170,232, 41,165,250,191,254,250,203,247,214,173, 91,149, 1,172, 73, 78, 78,222, 95, 92, 58,167, 77, 7, -197,244,158, 13, 46, 94, 4, 57,113,194,183,253,224,221,218, 1,237,219,183,175, 52,108,216,176,228,130,154,138,162,232,255,250, -235, 47,191, 91,183,110,121, 2, 88,157,156,156,124,160,180,242, 60,179, 38, 41,168, 78,215,248,143, 23,221,201,122, 55,216,223, -155,127,177,115, 99,109,229, 74, 57,207,185, 46,107, 58,129, 66,235, 96,141,254,170,105, 73,117,166,184,117,176, 30, 70,253,180, -217,108,129,101,141,138, 57,147,206,200,200, 72,107,225,245,176, 74,138, 96, 21,167,169,215,235,161,209,104,144,156,156,140, 29, - 59,118,220,181, 22,150, 94,175,207, 95,198,161, 44,154,148, 82,133, 16,242,180,162, 40,239,143, 29, 59,118,176,213,106,245,115, -113,113,185, 41, 8,194,170,202,149, 43,151,184, 14,214,131, 58, 70,234,250,202, 52,111,149,118,170,208,235,208, 0,188, 5,249, -230, 42,247, 31,147, 12, 6,131, 88,120,255,135, 85,151,152,230,227,169,249,184, 81,210, 24, 44,211,193,136,203,224, 13, 73,200, - 58,246,121,153,205, 85, 81,220,186, 99, 71,188, 81,134,116, 39, 26, 0, 78, 87,208,221,151,219,255,177,119,158, 97, 81, 92, 13, - 27,126,206,204,246, 93,122,147,166,136,160, 8, 42, 42, 75, 81, 20, 91, 52,246, 36, 38, 49,177, 70,141, 74, 98, 52, 38,154,188, -198,222, 43,118,141,137,190,177,183,168,137, 26, 99,111,216, 21, 4,236, 88, 64, 80,122,175,203, 46,203,238,204,249,126, 8,126, -232,171,178,128, 73, 76, 50,247,117,205,181, 48, 59,115,239,153,178,103,159, 57,115,102,230, 92,116, 28,196,242, 28, 20, 92, 94, -200,241, 6,109,173,250, 92,149,239, 56, 6, 24,141,208,159,217,129, 47,239,203,115, 8,195, 6, 70, 71, 71,102, 84,188, 31, 19, - 19,243,115,203,150, 45, 79, 29,221,162,185,218,185,157,209,238, 70,194,111, 96, 24,230, 47,191,195,113,121, 39,245,185,123,246, -236,153,170,209,104,144,155,155, 75, 35, 34, 34, 62, 75, 73, 73,217, 86, 91,231,178, 13,239, 79,189,127,175, 0,138,162, 43,180, -244,209,254,207, 43, 95, 85,248, 42,242, 15, 14,106,219,100,248,145, 96,146,127, 51, 80,121,255,199,175,127,203,113,182,114, 30, - 53,138, 56, 57, 57,193,218,218, 26,182,182,182, 40, 46, 46, 70,252,213,195, 84,155,150, 86,106, 52, 83,255,160,119,234,116, 60, -235,228, 59,231, 77,216,246, 20,192, 25,181, 90,125, 49, 60, 60,188,219,133, 11, 23,222,233,212,169, 83,102,112,112,112,113,116, -116,180, 91, 66, 66,130, 3,128, 3, 14, 14, 14, 71,170,188,215, 16,165,116,250,255, 95,149, 22,174, 86,171, 47,148, 59,123,119, -238,220, 57,171, 85,171, 86,197,209,209,209,110,137,137,137,246, 28,199,253,230,233,233,121, 52, 60, 60,220,104,218, 62, 58,157, - 7, 48,195,247,237,111,195, 98,243, 85, 75,227, 83,114, 63,242,109,228, 66, 0,144,106,151, 19,207,221, 7,235, 21,247,185,170, -234,125, 19,136,250, 3,118,211, 90, 59,159,111, 9,243,243,243,171, 95, 17,166,158,127,173,198,119, 30,205,155, 55, 71,229, 43, - 29, 25,134,121,102, 96, 89, 22, 34,145,168, 38,117, 20, 7, 32,172,124,120,163,121,152,146,166,247,116,117,221,244,121,216,143, - 67, 42,198,149,137,153,237,165, 90,254,104, 70, 82, 82, 49, 4, 4, 4,106, 31,176, 68, 34,209,183,154,168, 21,179, 40,165,246, - 0,190,139,142,142, 62, 90,155, 15,146, 72, 36, 23,162,143,253, 55, 95,234, 18,107,165, 75, 58,171, 97, 8,217,242, 58, 22,128, - 16,242, 31, 77,212,138, 89, 0,108,121,158,159, 18, 19, 19,115,160,182, 78,142,227,150,180, 93,186, 31,128,130,112, 28,183,248, - 90, 84,116,198,243,211,196,196,196,100,183,104,209, 98,196,248, 79,183, 60,125, 0,244,155,176, 65, 43, 58,169, 55,104,208, 96, -194,227,199,143,159,185, 2,176,182, 78,133, 99,192, 4, 67,118, 76,104, 74, 74,202,246,234,204,127,251,167,110, 23,129,110, 23, -129, 9, 75,189,188,188,250, 78,154, 52,105,181,143,143,143,194,206,206,142, 92,185,114,133,198,199,199, 27, 53, 26,205,226,155, - 55,111,206,169,209, 47,246,147, 80,114,192,217,217,249,228,241,227,199,223, 59,118,236, 88, 32,207,243, 17, 60,207,207, 77, 77, - 77,213,214,214,121,244,232,209,247,142, 28, 57, 18, 72, 41,189, 68, 41,253, 45, 37, 37, 69, 87, 19,231,141, 99, 97, 37, 0, 66, -155,190, 53,121, 90,140, 38,101, 45, 43, 49,247,125,248,240, 97,108, 45,202,249,160,150,239, 87,197,190, 63, 96, 23,173,181,179, - 58,183, 95, 48, 49, 0,209,175,190,250,170, 58,179,176, 21,183, 40,249,167, 80,241,124, 65,166,111, 30,201,211,106,135, 1, 10, - 3, 0, 59, 30, 52,181,180,180,108, 71, 70, 70,246, 13,110,151,149,129,223,109, 45,252,106, 10, 8, 84,163,114,249,195, 6, 0, -205, 42,255, 31, 28, 28,108,214,188,121,243,119,154, 53,107,166,124, 93,206, 63,162,156,255, 4,167,139,139, 75,179, 55,217,217, -184,113,227,175,130,130,130, 50, 91,180,104,241, 3, 0,145,176,221,223, 60, 39, 0,213, 31,224,172, 35,108, 35,193, 41, 56, 5, -167, 9,254,145,127,164,255,207, 24, 68,127,102,152,187,112,225, 66, 49,128,223,132, 88,251,199, 83,185,147,250,155,232,140,141, -141, 93, 14, 96,185,176,165,222,232,131, 47,205, 31,224,204, 16,214,172,128,128,192,191, 1, 70, 88, 5, 2, 2, 2, 2, 2, 2, - 2, 2,175, 23, 2,160,217, 75,142, 52, 77,110,173, 32,132, 52,171,193,145,236, 77,193, 41, 56, 5,167,224, 20,156,130, 83,112, -254,187,156, 85,185, 41,165, 55, 9, 33, 35, 95,116, 39,247,191, 85,192,170,238,213, 54,213,146, 11,151,176, 10, 78,193, 41, 56, - 5,167,224, 20,156,130,179,250,254,191,125,192, 18, 78, 17, 10, 8, 8, 8, 8, 8, 8, 8,188,102, 68,194, 42, 16, 48, 5, 23, - 23,151, 89,173, 90,181, 26, 25, 25, 25,185,226,241,227,199, 53,186,251,116, 64, 64, 64,115,165, 82, 57,195,104, 52,170,141, 70, -163, 76,161, 80,196, 22, 21, 21,253,112,245,234,213,157, 53, 45, 87, 64, 64,128,191, 82,169,156,102, 52, 26, 91,148, 59,111,231, -231,231,175,142,137,137,249,229, 77,114, 10, 8, 8, 8, 8, 8, 1,235, 41,203, 39, 19, 71, 73, 41, 68,163,150,208,100, 0,168, - 95,191,190,155,193, 96,104,207,243,188,175, 72, 36,186,193,178,236,153,196,196,196, 71,181, 41,192,223,197,249,119,129, 16, 82, - 71,169, 84, 14, 38,132,116,161,148, 30, 45, 41, 41,217, 74, 41,173,213,227, 45,234,212,169, 99,223,183,111,223,241, 43, 86,172, -192,176, 97,195, 38,216,219,219,175,202,202,202,170,214, 21,102,109,219,182, 29,165, 80, 40,102,124,241,197,104,133,191,191, 63, - 81, 42,149,184,119,239,158,223,210,165, 75,150,183,111,223,254,195,179,103,207,126, 64, 41,173,214,227, 93, 66, 66, 66,190, 86, - 40, 20,147,191,250,234, 43, 89,203,150, 45,137, 68, 34,193,181,107,215,252, 87,174, 92,185,166,125,251,246,125,206,158, 61, 59, -128, 86,243, 28,248,243, 78,185, 92,142,155, 55,111,250, 47, 89,178,164, 70, 78,117,104,180, 88,162, 44, 19, 1, 64, 89,137,196, - 24,181,214,207, 96,234, 56,161,122, 18, 16, 16, 16,248, 7, 6,172, 53, 19,201, 84, 41,240, 45, 36, 32, 51, 67,165, 71,214, 29, -180,125,236,229,229, 69,134, 13, 27,150,203,113,156,214, 96, 48,216,111,218,180,105,180,179,179, 51,101, 24, 38,188,180,180,244, -124,118,118,182, 73,119,250,181,179,179, 51,147, 74,165, 33,148,210,118, 94, 94, 94,100,248,240,225,185, 6,131, 65,171,211,233, - 28,182,109,219, 54,198,217,217,153, 55,217, 73, 8,153, 57, 3,100,219, 54,107,149, 78, 39,111, 75, 41,109,255,186,202,249, 55, - 10, 85, 82,185, 92,222, 91, 44, 22,127,106,107,107,107,215,189,123,247,235,117,234,212,185,147,145,145,209,248,240,225,195,135, - 44, 44, 44,178, 12, 6,195, 6,157, 78,119,128, 82, 90,237, 59,206,139,197, 98, 55, 66, 8, 82, 82, 82, 32, 22,139,197, 82,169, -180, 62,128, 91,166,206, 31, 20, 20,212, 76, 34,145,204,250, 97,253, 14,185,145, 53, 71,142,145, 71, 78, 33, 32,177,243,194,140, -249,203, 85,139,231, 78,105,211,186,117,235,175, 0, 44,173, 78, 43,147, 66,161,152,188,107,215, 46,185,131,131, 3,120,158, 71, - 81, 81, 17,188,189,189, 49,103,206, 28,229,252,249,243,223, 10, 10, 10,250, 12,192, 15, 53,117, 82, 74, 81, 86, 86,134,166, 77, -155, 34, 44, 44, 76, 57, 99,198,140,106, 57,213,235,162,197,134,178,187, 65,101, 37,220, 4, 0, 32, 98,118, 97,135,153, 54, 87, - 13,101,119,253,171, 26,167, 94,135, 43, 81, 35,133,144, 37,240,231,226,236,236,220,218,221,221,253,231,199,143, 31, 95,102, 89, -246,147,196,196,196,210,215, 80, 63,185, 0,168, 15,192, 10, 79, 46,172,202, 3,240,136,210, 39, 7,238, 53,193,174, 97,199, 30, -144, 42, 7, 1,212,151, 0, 0,195,220,160, 6,205,214,236,216,211,135,106,229,148,169, 6,131,114,190, 4,224,193,176, 55, 9, -167,217,152,121,251,244, 49, 97,207, 16,120,109, 1,107,199, 68, 98, 5,138,113, 35,251,141,100, 88,150, 37,107,127, 94,215,227, -248,239,255, 93,237,211,178,123, 30, 0,205,161, 67,135,116, 61,122,244,208,127,250,233,167,101,247,238,221, 99,150, 45, 91,214, -252,212,169, 83,239,184,186,186,158, 75, 78, 78,126,233, 93,190,215, 77, 83,221,227, 12, 37,174,211, 62, 85,148,230, 72, 71,174, - 28, 57,114, 84,161,179,179,179,177,220, 89,218,163, 71, 15,125,104,104,168,190,146,243, 93, 87, 87,215,179,175,114,206,156, 1, - 34,201, 85, 30,233,208,156, 72, 28,189,250, 93, 28, 62,242,203, 66,103,103,103, 35,195, 48,197, 53, 45,231,223, 9,115,115,243, - 69, 42,149,170,151,159,159, 95,236,215, 95,127,125,230,157,119,222,201, 2,128, 77,155, 54,185, 46, 92,184,240, 6,128,139,191, -253,246,155,253,178,101,203,250, 69, 71, 71,207, 54, 55, 55,255,189,168,168,232, 63, 38, 86,140,140,163,163,227,164,174, 93,187, - 78, 24, 48, 96, 0,204,205,205, 49,100,200, 16,232,116,186, 11,206,206,206,179,211,210,210,150,152,210,154, 35,147,201, 38,127, -254,249,231, 50, 94,100,142, 41,155,227,144, 91,252, 36, 55, 40,165, 12,190,232, 44,195,135, 31,246, 85,206,159, 63,239,187,234, - 4, 44,165, 82, 57,237,171,175,190,146, 57, 56, 56, 0, 0,138,139,139, 81, 92, 92,140,162,162, 34,148,150,150,226,157,119,222, - 81,254,248,227,143,211,170, 19,176, 42, 59,239,221,187, 7,189, 94, 15,173, 86, 11,157, 78, 7,115,115,115,244,233,211, 71,185, -122,245,106,147,157, 78,233, 16, 63, 42,227,151,141,255,252, 35, 59, 0, 88,242,195,238,101,128,182, 61, 53, 97,156, 83, 58, 66, - 0, 8, 1,235,213,251, 39, 11,224, 29,177, 88,252,142,167,167,167, 95, 92, 92,220,117,131,193,240, 27,128,253,148, 82, 67, 45, -221, 29,156,156,156,102,164,165,165,253, 72, 41,221,249,111, 89,167, 30, 30, 30, 59,183,111,223,110,115,232,208,161,158,115,230, -204,121, 31,192,246, 90,172, 67, 49,128,160,242,127,239,149, 7, 43,148, 7, 45, 47, 66,136, 59,128,203,213, 57,232,179,111,210, - 65,197, 67,177, 57,184, 67,215,224,190, 31,246, 49,179,183,177,132,166,148,195,253,196,244,186,199, 14,253, 26,226,232,219,243, - 50,199,149,124,146,117, 59, 92, 83, 93,103,167,110,239, 4,119,122,171,179,153,165,165, 21,114,138, 12,136, 79, 76,174,119,230, -248,254, 54,117,124,123,158, 7, 12,195, 51,110, 28, 43, 17,190,117, 2,213,193,164, 78,238, 4,160, 54, 86,202, 28, 0,233, 0, -138, 45, 44, 44,202, 0,148, 0,200,243,242,242, 42, 88,179,102, 77,202,254,253,251, 79, 81, 74,223,170, 60,223,255, 60, 84,148, - 43,117,252,108,192, 24,200, 36,188,100,210,119,227,114,157,157,157, 51,171,112,158,172,202, 9, 0, 22, 10,109,112,159, 14, 86, -190,117,153, 53,159,223, 56, 49, 60, 48, 55, 45,170, 4,224, 52, 22,102,102,134,154,148,243,117,240,103, 57,245,122,253,187, 86, - 86, 86, 5,185,185,185, 42,131,193, 64, 10,181, 6,241,221,100,157,197, 99,173,147,227,221,100,157, 69,161,214, 32, 54, 24, 12, - 36, 51, 51, 83, 37,151,203, 11, 74, 75, 75,223, 53,181,156, 78, 78, 78,211,230,207,159, 63,113,195,134, 13, 76, 64, 64, 0,204, -205,205,209,186,117,107,108,221,186, 85, 52,125,250,244,153, 78, 78, 78,223,154, 82, 78, 74,105,128, 90,173, 38, 60,128,188, 98, - 35, 78,207, 87,227, 66, 88, 0, 74,244, 60, 10, 10,139,193, 48, 12, 68, 34, 17,241,243,243,243, 48,117,217,141, 70, 99,139,150, - 45, 91, 18, 0, 40, 42, 42, 42, 15, 87, 79,134,226, 98, 13, 36, 18, 41,120,158,151,180,108,217,210,169, 38, 78,189, 94,143,250, -245,235,195,205,205, 13, 69, 69, 69, 40, 44, 44,132, 68, 34,169,150, 83,175, 20, 19, 10,234,160,144,203,108, 21,114,153, 45, 5, -117, 0, 0, 83,198,233,149, 98,242, 87,238,159,132, 16, 59,150,101,127,244,244,244,140,102, 89,246,191,132,144, 58,181,113, 18, - 66,212,132,144,153, 74,165,242,160,143,143,207,125,149, 74,117,152, 16, 50,155, 16, 18, 84, 19, 39, 33, 68,170, 84, 42, 15,205, -155, 55,111,107, 76, 76,204, 7, 39, 79,158,172,127,253,250,245,247, 22, 45, 90,180,201,204,204,236, 24, 33, 68, 81,155,239,166, -187,187,251, 15, 17, 17, 17,234, 54,109,218,172, 33,132,200, 94,199,247,157, 16,194, 18, 66,154,147,138,135, 29,190, 33,117, 72, - 5,174,174,174, 30, 45, 91,182,180,101, 89, 22, 33, 33, 33,224, 56,174, 77, 45,157, 65, 0, 50, 40,165,231, 41,165,217,148, 82, -174,124,200,161,148, 94, 0,144, 12, 32,184, 58, 78, 30,138,205, 95,125,253,159, 46,223,124, 57,194, 44,250, 17,135,255, 30, 75, -195,174,243, 89, 72, 41,146,161,203,187,159, 90,116,232, 62,160, 51,203, 42, 55, 87,215, 57,105,226,196, 46,195,135, 12, 52,187, -153,202, 96,247,133,108,156,143, 45, 68, 9,177, 70,135,119, 71, 90,249, 4,116,239, 6, 34, 89,251, 38,108,163,127,186,243, 95, -209,130,213,127, 62,205, 95, 51,145, 44,253,113,231,186, 9, 12, 33, 84,101,211,236,180,150,186,222, 41,159,222,210,222,222,222, - 80,254, 35, 84,112,240,224, 65, 99,116,116,180, 77,131, 6, 13,108, 77,223, 50, 32,215,175, 95,211,218, 57,184,103,184,187,187, -191, 22,103,231,224,142, 82, 93,169, 22,215,239,222,108,115, 96, 93,187, 96,107, 7,239,235, 14,141, 71,156, 2, 23,172,209, 27, -141,249, 53, 42,231,223, 0,150,101,181,123,246,236,249,239,241,227,199,157,166, 76,155,213,101,214,127,207, 56, 88, 52,237,103, -109,224, 45,204, 78, 46,143, 41,206,191,185, 45, 47,247,238,145, 76,117,139,166,167,250,244,233,147,182,120,241,226, 47,171,114, -186,186,186,202, 69, 34, 81,163,158, 61,123,142,255,228,147, 79,144,152,152,136,111,190,249, 70,123,237,218,181, 92,127,127,127, -155,176,176, 48,197,200,145, 35,113,233,210,165,201,238,238,238,191, 25, 12,134,164,228,228,228,151, 62,159,143,227, 56,153, 92, - 46,135,182,188, 77,161,204, 72, 1,240, 79, 91,158, 24,154, 15,145, 72, 4,158,231, 27, 18, 66, 30,154,210, 42,102, 52, 26,101, -114,185, 28, 26,141, 6,197,197,197, 72,201, 42,198,163, 12, 13,138, 52,165,208,106, 13, 40,209, 24, 32, 86,218,194,104,204,240, - 38,132,164, 87,199,201,113, 28,180, 90, 45, 52, 26, 13,180, 90, 45,180, 90, 45,120,158, 71, 97, 97, 33,196, 98, 49,213,235,245, - 94, 0,210,170,220, 54, 82,133, 17, 96,194,126,220,180,127,114,249,241, 76,152, 25,116,124,142, 9,227,158,204,251,151,181, 12, -201,236,236,236,142,236,217,179,167,113,195,134, 13,145,144,144,224,213,183,111, 95,127, 66, 72, 48,165,180,164,154, 46, 37,195, - 48,179,135, 14, 29, 58,178,127,255,254,164, 81,163, 70, 16,137, 68, 48, 26,141, 46,113,113,113,237,118,237,218, 53, 78, 36, 18, -109,228, 56,238, 59, 83,239, 28, 79, 8, 97,100, 50,217,230,181,107,215,182, 13, 10, 10,194,230,205,155,113,229,202, 21, 62, 48, - 48,144, 25, 60,120, 48,220,220,220, 2, 63,249,228,147,237,132,144, 15,202, 31,180, 92,221,229,175, 55,112,224, 64, 87,150,101, -209,186,117,107,201,133, 11, 23, 90, 0,184, 92,203,117,170,114,113,113, 57,214,177, 99,199,230, 39, 78,156,184, 70, 8,233, 90, -157, 59,229, 59, 59, 59,247,170, 83,167,206, 28,115,115,115,147, 31, 6, 88, 92, 92, 92,146,153,153, 57, 41, 57, 57,121,175,137, -179, 4,249,250,250,194,104, 52,194,210,210, 18, 78, 78, 78,173, 93, 93, 93,191,180,176,176,120,167,168,168,232,187,164,164,164, -171,213, 88, 94,103, 0, 12,165, 52,174,252,127, 55, 0,141,202,223,126, 64, 41, 77,164,148, 38, 16, 66,156, 8, 33,174,166,156, - 46,180,107,216,177, 71,155, 78, 61,130, 67,130,154, 49,243,247, 36,130,227,121,136,192, 65,196,242,200,230,196, 32,132,160,158, - 87, 0, 91,231,230,213, 64, 59,239,206, 61,178, 99, 79, 28, 50,197,217,189,119,159, 54, 94,141,188,152, 37,251, 30, 35, 63,229, - 38,151, 17,123, 42,135, 48, 12,220, 91,116,177,173,239,213,146,245,108,217, 73,156,158,120,179,189,173, 87,187,142, 57,247,206, -158, 22, 98,131, 64,181, 3, 22, 33,132, 82, 74,159, 30, 89,141,154, 79,103,251,122,215,241,222,185,125, 99,170,198, 96,115, 51, - 39, 39,199, 54, 39, 39, 7, 22, 22, 22, 5, 28,199, 25, 22, 45, 90, 36,142,139,139,179,148,203,229,144,201,100, 48, 24, 12,213, -234, 76,204,243, 60,121,221, 78,149,210, 12,109,212,193, 18,255,102,106,220,142,187,163,142, 62, 61,182,217,165,152,194, 79,239, -223,143,175,177,243,239, 66,151, 46, 93,210, 26,169,187, 30, 92,117,202,240,159,229,163, 3,148,148,231, 40, 97, 88,213,152, 21, - 60, 9,244,113, 93,111, 35, 41,200,103, 89,182, 74, 79,189,122,245,102,116,236,216,241, 43,145, 72, 36, 30, 49, 98, 4, 0, 96, -236,216,177, 69,145,145,145,190, 25, 25, 25, 89,117,235,214,117, 26, 63,126,252,245, 61,123,246, 40, 63,253,244, 83,145, 86,171, -141, 17,139,197,212,201,201,105,126, 90, 90,218,220, 23, 57, 37, 18,201,141, 59,119,238,180,181,112,105, 6, 59,115, 6, 93, 39, - 71, 3, 0,204,228, 20,121,217,233,136,127,124, 3,110,110,110,138,122,245,234,253,236,228,228,196,183,106,213,106,177,171,171, -235,252,221,187,119,191,244,199, 81,161, 80,220,190,118,237,154,191,143,143, 15,138,139,139,145,148,169,193,134, 75, 4, 37, 58, - 5, 0, 5, 24,152,193,204,218, 69, 38,166,218,157, 65, 65, 65, 76,235,214,173, 23,184,184,184, 44,173,202,121,231,206, 29,255, -166, 77,155,194, 96, 48, 32, 42, 42, 10, 26,141, 6,122,189, 30,121,121,121, 72, 72, 72,128,135,135,135,156,231,249,253, 61,123, -246,228,114,114,114,102, 68, 68, 68,172,124, 89,120, 59,242,165,103, 89,251, 25,225,235,244,218,162, 95, 0,192,214,214, 53,239, -247, 25,126,250,246, 51,138,171, 28,119,228, 75,207, 50,140,249,203,118,213, 65,147, 39, 79,110,108, 99, 99,131,207, 62,251, 12, - 51,103,206,196,180,105,211, 60, 63,251,236,179, 97, 0, 86, 85,227, 71, 86,225,232,232,120,110,197,138, 21, 94,109,218,180,193, -161, 67,135,176, 99,199, 14, 60,124,248,208,232,238,238, 46, 10, 10, 10,194,244,233,211,209,181,107,215,161, 99,198,140,105, 91, - 30,224, 76, 9, 29,131,167, 77,155,214,171,109,219,182, 24, 58,116,104,233,233,211,167, 7, 3, 56,121,226,196,137,246,103,207, -158,221,182,117,235, 86,197,220,185,115,187,140, 27, 55,110, 4,128, 31,107,176,252,189,219,181,107, 7, 0,104,219,182, 45, 22, - 45, 90,212,185, 54, 1,139, 16, 34,181,177,177,249,117,203,150, 45,205,189,188,188, 48,104,208,160, 22, 31,125,244,209,175,132, -144,222,148, 82,189, 41, 14, 71, 71,199,217,235,214,173,243, 80, 40, 20, 38,127,174, 94,175,183, 14, 13, 13,157, 5, 96,175,137, -117,114,171,102,205,154, 33, 60, 60, 28,157, 59,119, 70,211,166, 77, 61, 66, 67, 67,231,119,237,218, 21, 95,127,253,245, 9,103, -103,103,143,212,212,212, 28, 19, 63,190, 30,128,251,229,203, 95, 23,128, 7,128, 75,229,239, 5, 16, 66, 64, 41, 77, 44,159,198, -171,188, 53,235,213,200, 85,131,222,233,221,211,236,215,139,153,224,120, 30,222, 46,114,248,212,179, 64, 98,166, 14,143, 82,114, - 32, 38,101, 48, 87,200,224, 27,220,211, 42, 55, 35,113, 16,128,170,251, 99, 73,149,131,222,123,167,167,106,239,165, 76,228,167, -220,162,137,145,187,206,112,165,218, 47, 0,224,206,185,173, 43,157,172,229,157, 26,181, 80,179, 37, 33,239, 90,133,239,203, 24, - 4, 64, 8, 88,127,220,129,221, 51, 25,228, 31,219,130, 85, 65,110,145,168,212,210,193,183, 72,147,146,242,116, 92, 97, 97,161, -229,253,251,247, 51, 99, 99, 99, 45,197, 98, 49, 56,142,171,248,114,242, 53, 45,196,235,118, 74, 37, 82, 52,247,242,101,163,110, - 92,149,196,198,198, 90,178,172,132,190,142,114,190,233,220, 76,229,234, 26,120, 86, 37,151,136,158,110, 90,158, 72, 84,133,196, -177,174, 13, 10,242,171,154, 95,173, 86,139, 59,117,234,244,213,250,245,235,197,105,105,105,176,178,178,130,193, 96, 64,116,116, -116, 74, 70, 70, 70, 22, 0, 36, 37, 37,165,185,186,186,166,113, 28,231,233,237,237,141,208,208, 80, 52,110,220,152,140, 31, 63, -126, 28, 33,100,254,139,174, 4, 44, 44, 44,252,126,201,146, 37, 45,103,206, 91,170, 28, 24, 68,160, 41,209,229,118,171,243, 0, - 0, 32, 0, 73, 68, 65, 84,163,184,184, 24,169,137,247, 33, 51, 82,204,157, 59, 23,114,185, 28, 0,216,156,156, 28,118,225,194, - 5, 19,174, 93,187,246, 22,128,246, 47, 43,107,126,126,254,234,229,203,151,175, 89,180,104,145, 82,171,213, 66,171,211,161, 72, - 43,197,149,165,129, 79, 14,197,199, 69, 96,193,194, 69,104,230,166, 82,164,164,164, 96,250,244,233,223, 60,124,248,176, 53,128, -247, 94,229, 12, 11, 11, 91,179,100,201, 18,165,153,153, 25, 40,165,224,121, 30, 73, 73, 73, 0,128,217,179,231,160,252, 7,142, - 77, 75, 75, 99,231,205,155, 59, 71, 38,147,117, 2,208,251, 37, 77,232, 20, 64, 41, 33, 72,119,113,105,224, 33,147, 49,147, 93, - 92, 74, 47,134, 79, 79,222, 65, 8,210,159, 76, 3,234,188,206,249,227,199,155,165,193,122, 61, 86,167,165, 37, 60,160, 20, 20, -211,255,186,227, 0, 59, 59,187,207,223,125,247, 93, 44, 88,176, 0, 7, 14, 28,248,206,198,198,102,193,204,153, 51,225,228,228, - 20, 74, 8, 89, 93,141,171, 40,231, 46, 91,182,204,203,219,219, 27,159,124,242,137,254,196,137, 19, 51, 0, 28, 0,240,248,220, -185,115,117, 55,109,218,212, 99,215,174, 93,179,150, 47, 95, 46, 95,181,106,149,199, 7, 31,124, 16, 6,224,243,170,164,117,234, -212, 25,211,191,127,127, 44, 94,188, 24,167, 79,159, 30, 64, 41, 61, 90,254,214, 49, 66,200,135,243,230,205, 59, 52,101,202, 20, - 44, 91,182,236,139,234, 6, 44, 66,136,202,219,219,251,187,110,221,186,225,220,185,115, 8, 9, 9, 65,112,112,240, 24, 66,200, - 26, 74,105, 78, 13,126, 52, 24,115,115,243,205,155, 54,109,106, 83,191,126,125,204,153, 51, 7,223,126,251, 45,214,175, 95,223, -102,208,160, 65,155, 9, 33,253, 77,185,122,214,194,194,194, 76,161, 80, 96,193,130, 5,244,241,227,199, 85,126,151,157,156,156, -172,166, 78,157, 74, 44, 44, 44, 44, 77, 40, 35,235,226,226, 98,225,232,232,216,198,209,209, 17, 43, 86,172,128,131,131, 3,198, -141, 27, 7, 91, 91, 91,104, 52, 26,244,233,211, 71,124,249,242,229,190, 0,214,152,184,232, 54, 0, 42, 90,188, 26, 3,184, 68, - 41, 45, 46,255,188, 8, 60, 57, 53,152,136, 39,253,178, 76,106,149, 99, 40,109, 98,109,101,137,212, 27, 25, 16,193, 8,239,122, -230,184, 26,167, 65, 25, 71,161, 80,153, 65, 83,148,143, 22,158,246, 40, 44,113, 5, 40,223,196, 20,167,132, 37, 45,165, 50, 5, - 50, 11, 11,144,126,231,100,174,129, 47, 27,147, 31,127, 54, 25, 0,108, 60, 59,140,185, 25,113,248,124,159,238, 33,246,153,121, -245, 64, 41,231, 47,196, 32,129,234, 80,173, 27,141,242, 60, 79,114,115,115, 69, 90,173,150, 53, 24, 12, 76,229,180,105, 48, 24, -106, 20, 92,254, 8,103,101,254, 8,231,155, 74, 67, 7, 38,141,101,241,204,169, 58, 2,170, 51, 35,217,105,166,204, 31, 21, 21, -101, 56,123,246,236,246,137, 19, 39, 98,233,210,165,136,143,143,135, 88, 44,134,183,183,183,163,189,189,189, 10, 0, 26, 52,104, - 96,209,172, 89, 51, 7,150,101, 17, 23, 23,135, 29, 59,118, 96,198,140, 25, 52, 42, 42,106,243,203,126, 40,162,163,163,127, 47, - 45, 45, 61,180,104,238,212,146,210,236,123, 80,114, 89,160,133, 9, 80,178, 90, 12, 29, 57, 6, 15,179, 56,196, 36, 20, 33, 38, -161, 8,169, 26, 25,190, 24, 55,153,113,119,119,247, 11, 12, 12,252,244,101,101,141,137,137,249,165,164,164,228,228,172, 89,179, - 74, 30, 62,124, 8,173, 86, 11, 0, 40, 51,242, 40, 51, 62, 91, 12, 23, 23, 23, 44, 88,176, 64,165, 82,169,130,213,106,117,255, - 87, 57, 53, 26,205,201,105,211,166,149,196,197,197,161,160,160, 0,233,233,233, 32,132, 96,248,168,241,120,152,197, 63, 45,103, - 78,153, 57,190,250,207,116,166,110,221,186,237, 91,182,108,249,254,171,214,171,139,139,171,135,183,183,199,214,203,151, 47, 15, -244,240,240, 24, 89, 17,172, 40, 5, 5, 0, 55, 55,183,225, 81, 81, 81,131, 91,180,240,222,230,228,228,220,232, 47, 62,138,108, -247,241,199, 31, 55,226,121, 30,187,119,239,190, 69, 41, 93,181,111,223,190,168,210,210, 82,244,239,223,191, 62,128, 46, 38,122, -212, 3, 6, 12, 24, 25, 18, 18,130,177, 99,199,150,157, 56,113,162, 13,165,116, 37,165,244, 17,125,194, 99, 74,233,154,240,240, -240, 86, 99,198,140, 41, 13, 12, 12,196,144, 33, 67, 6, 19, 66,218, 84,225,109,213,191,127,127, 47,158,231,177, 99,199,142,155, -149,194, 85, 69,168, 61,179,123,247,238, 8,189, 94,143,129, 3, 7,186, 19, 66,218, 87, 99,217, 37,114,185,124,219,156, 57,115, - 44, 83, 82, 82, 48,120,240,224,210,187,119,239, 98,250,244,233, 10, 75, 75,203,189,132, 16, 85,117,215,167, 92, 46, 95,189,102, -205,154, 94,190,190,190,248,252,243,207,245,107,214,172,249,102,212,168, 81,122,181, 90,141,239,191,255,190,151, 84, 42, 93, 93, - 29, 95,122,122,122, 65,120,120,184,107, 85, 67, 70, 70,134, 73,183,102,169, 95,191,190,101,211,166, 77, 35, 2, 2, 2,146,154, - 55,111,222, 0, 0,110,221,186,149,189,123,247,110,106,107,107,139, 35, 71,142, 96,221,186,117,104,219,182, 45,204,205,205, 63, -172, 70, 81,105,249,128, 74,175,207,191,255,252,116, 85, 58, 11, 74,140, 16, 49, 12,196, 44,197,163, 12, 45,202, 56, 10,137,152, -129,152, 5, 68, 12,133,173,185, 24, 98, 49, 11, 16, 98,146,147, 33, 4,121, 26, 3, 68, 44,129, 88, 42, 38, 44,199,203, 43,222, - 99,197,188, 92, 42,149, 19, 7, 75, 9,164, 34, 2,134, 64, 64,224,245,181, 96,149, 87, 58, 92,118,118,182, 56, 33, 33, 65,174, -215,235,153,250,245,235,235, 0,192,104, 52, 50,121,121,121, 18,169, 84, 10, 66, 72,153,209,104,172,214, 33,119,110,110,158, 56, -241,241,253,215,234,124, 17, 70,163,145, 41, 41,201,147,190, 78,231,155,200,221,187,119,205, 30, 36,164,170,234,176, 62, 81, 99, - 86, 69, 5, 81, 64, 76, 40, 53,200,180,119, 47,103,103, 94,147,192, 82,166,116,117,117,173,178,255,204,195,135, 15,191,112,118, -118, 94, 72, 41,245,166,148,254,178,116,233, 82,178,114,229, 74,171, 81,163, 70,221,114,118,118, 78,245,242,242,170,183,116,233, - 82,115, 0,216,186,117, 43,127,248,240,225,222, 50,153,236,110, 98, 98, 98,198,171,188,103,206,156, 25, 26, 24, 24,248,233, 15, - 63,252, 48,203,104, 52,202,236,237,237,101, 91,182,108, 65, 74,190, 30, 83,182,252,255,149,133, 42, 25,139,177, 93, 85,232,208, -161, 19,243,248,241,227,111, 0,172,127,153,243,236,217,179, 3,130,130,130, 62,251,254,251,239,167,193,204, 77, 38,107, 60, 76, -210,105,226,147,211,143, 78, 54,178,167, 21, 98, 65, 65, 1,242,242,242,208,167, 79, 31,229,182,109,219, 62, 7,176,163, 42,231, -170, 85,171,166,113, 28, 39,177,183,183,151,109,223,190, 29, 9,217,122,124,183, 41, 14, 69,186, 39,229, 52,147,137, 48,166,179, - 12,157, 58,117, 98, 83, 83, 83, 39, 0,248,245, 69, 62, 87, 87, 87, 79,111,111,239,173,219,183,111,111,188,124,249,242,188,251, -247,239,151, 56, 57, 57, 77,121,110, 50,253,252,249,243,115,183,108,217,210,112,240,224,193,219,156,156,156, 6,165,165,165,221, -253, 43,246, 35, 75, 75,203,217,161,161,161,248,249,231,159,145,151,151,183,186,124,253,173,222,190,125,251,166,225,195,135, 99, -243,230,205,179, 9, 33,199, 77,104,197,122,187, 95,191,126, 56,124,248, 48, 78,157, 58, 53,139, 82, 26,251,146, 86,190, 56, 66, -200,212,253,251,247,135,245,239,223, 31, 27, 54,108,232, 2,224,194, 43,188,157,186,118,237,138, 67,135, 14, 33, 55, 55,247,133, - 29,143, 11, 10, 10,214, 29, 56,112, 32,176,107,215,174,152, 63,127,254, 91, 0,206,152, 80,207,121, 89, 90, 90,174, 93,177, 98, -133,218,215,215, 23, 3, 6, 12,208,149,149,149,189,247,205, 55,223,236,217,185,115,167,217,230,205,155,253, 70,140, 24,113,150, - 16, 50,138, 82, 26, 97,202,186,100, 89,118,230,170, 85,171, 62,233,208,161, 3,198,143, 31,111, 60,122,244,104, 95, 74,233, 73, - 66, 72,252,132, 9, 19,126, 93,188,120, 49,187,120,241,226, 79, 88,150,205,230, 56,110,250, 95,177,189,121,158,159,191,100,201, -146,198, 77,154, 52,129, 78,167, 67,124,124, 60,210,211,211,127,206,204,204, 60,121,243,230,205,185,105,105,105,251, 28, 29, 29, -135,142, 27, 55,206,197,223,223, 95, 93,175, 94, 61, 43, 83, 90,208, 42,181, 76,101, 1,184, 11, 32,176,188,229, 10, 0, 2, 0, - 60, 40,255,219, 10, 64,190, 73,133, 37,204,173,251, 9, 41,238,214,102, 22,200,227,165, 72, 72,201,129, 66,165, 2, 67, 25, 24, -181,121,104,232,230, 0,158, 2,133,217, 41, 96, 24, 98,210,109,100, 12, 60,141, 73, 76,202,112,182, 82,201,209, 80,221,211,230, -218,233, 13,235,173, 60,219,141, 22,177, 28, 43,146, 90,172, 26,208,255, 19, 91, 35, 71, 81,156,151, 6,194,178, 87, 33, 32,240, -186, 2, 22,199,113,100,243,230,205, 22,153,153,153,140,151,151, 87,110,243,230,205, 53, 82,169,148,215,106,181,156, 92, 46, 55, -170, 84, 42, 94,167,211, 73, 31, 61,122,100,157,146,146,194, 86,156,134, 51,133, 51,103,206, 57,122, 54,242,205,124,157,206,151, - 28, 65, 26, 21, 10, 17,247, 58,157,111, 18, 60,207, 75,231,206,157,219,202,198,198, 70, 19, 24, 24,152, 18,236,105,127, 32, 85, -131,243, 75,151,253,119,112, 19,159,122, 91, 44,217,188,124,141,148,138,147,147,147, 29, 31, 60,120,160,164,148, 74,170,114,166, -166,166, 38, 1, 72,114,114,114, 90,215,161, 67,135,208, 94,189,122, 33, 60, 60,220, 94,163,209,216,171, 84, 79, 14,226,127,249, -229, 23,236,219,183,111,101,122,122,122,184,169,101,141,136,136, 88, 15, 96,125,203,150, 45,213,150,150,150,225, 22, 22, 22, 76, - 82,129,230,233,149,133, 18, 17,131, 54,223, 70, 34, 39, 47, 31, 98,134, 64, 46,151,187, 16, 66,152,151,181,140,149,255,200,255, - 0,224,135,192,238,195,223,181,120,180,115,253,146,165, 75,101, 21, 71,166,117,172, 37,200,207,207, 71, 86, 86, 22,178,179,179, - 33, 18,137,160,211,233,188, 95,121,136, 92,201,233,235,235,219,209,214,214,118,191, 82,169,100,105,182, 6,121,197,101,207,156, -130,204,203, 47,133, 88, 44,134, 74,165,242,124,145,203,206,206,206, 76, 34,145,172,253,233,167,159,188,204,205,205,217, 17, 35, - 70, 88,142, 24, 49,162, 53,128,214, 47,154, 94,169, 84,178, 27, 54,108,240,108,209,162,197,218, 6, 13, 26,244,122,248,240, 97, -225,159,216,114,197, 2, 24,254,205, 55,223,248,201,229,114,172, 90,181, 42, 1,192,207,229,111,255,186,102,205,154,137,253,250, -245,107, 52,118,236, 88,159, 41, 83,166,140, 33,132,124,255,170, 14,228, 18,137,164,165,143,143, 15,246,238,221, 11, 60, 57, 45, -248, 42,246, 94,188,120, 49,172, 87,175, 94, 80, 40, 20,234,170, 26, 93,234,214,173,139,253,251,247, 3,192,245,151, 76,115, 61, - 54, 54, 22,125,250,244, 1,195, 48,110, 38, 44,123,175,183,223,126,123,219,252,249,243, 69,230,230,230,248,244,211, 79,245, 87, -174, 92,233, 67, 41, 61, 79, 8,233, 54,104,208,160,163, 91,183,110, 85,157, 61,123,214,107,238,220,185,167, 88,150, 13,227, 56, -110,102, 21,206,193,115,230,204,249,230,189,247,222,195,204,153, 51,233,207, 63,255, 60,140, 82,122,178,124, 31, 59, 65, 8, 25, -110,109,109,189, 97,210,164, 73,164,160,160,224, 27, 66, 72, 10,165,244,191, 47,243, 21, 23, 23, 23,114, 28, 87, 71,171,213,154, -212,103,203,212,233, 61, 61, 61,223,110,210,164, 9,246,239,223,143,222,189,123,227,248,241,227, 16,137, 68, 71,146,147,147,207, - 2, 56, 9, 0, 78, 78, 78, 22,113,113,113, 95,182,107,215,142, 57,117,234,212,187, 0, 54,154, 80,132, 68, 0, 77, 1,156,162, -148, 38,151, 95, 56,217, 10, 79,238,131,117,151, 82,154, 84, 62, 93, 19, 0, 15, 77,170,235, 12,197,219, 79, 30,218,211,190,203, - 7,163, 44, 88,150, 64, 4, 9, 74,138, 10, 1,142,131,167, 91, 29, 4,250,212,193,245, 68, 45, 46, 30,223, 93, 80, 82,162, 49, -233,246, 18,156, 65,179,245,228,209,125, 33, 1, 93,134, 88,200, 60,125, 80,183,206, 87,205,111, 69, 28,251, 93, 46,149,144,247, - 63,232,107,217, 49,176, 33, 78,222, 40,196,165,147,123,243,181,154,252,173, 66,100, 16,168, 81,192,122, 81,231, 50,158,231,179, -143, 31, 63,174,156, 58,117,106,177,147,147,147,168,184,184,152,169,220,135, 73, 34,145,192,201,201,201,152,159,159, 95,118,252, -248,113,119,158,231,115, 95,217, 28,203,202,210,127,220,190,202,149, 35, 74,125,215,238,189,121, 87,215,250,181,118, 2,128, 78, - 47,203,222,115,100,175, 85,251,192,182,226, 58,118,117, 94, 84,217, 87,219,249, 55, 34,237,193,131, 7,118,115,231,206,189,238, -226,226,162, 3, 0, 91, 21,151,158,115,251,215, 60,179,250,189,210,197, 50, 25,236,237,237, 75,205,204,204,140,135, 14, 29,122, -139, 82,154,110,170,216,218,218,250,187,208,208, 80,230,220,185,115,195, 7, 13, 26, 68,220,221,221, 17, 19, 19,131,173, 91,183, -210,221,187,119,127,159,158,158, 94,163,163,110,153, 76,150, 80, 86,246,236,173,111, 42, 95, 89,152,151,151, 7,166, 40, 27, 28, -199, 25, 77,189,187, 59,151,117, 61,162, 84,161, 64,211,122,255,127, 22, 39, 47, 47, 15, 89,217,217, 79, 3, 86,102,102, 38, 88, -150,213,153, 90, 78,169, 84,250, 72,175,215, 63, 87, 78,190,114, 75, 9,184,252,108,148, 61,191, 48,229,100,103,103, 23,187,184, -184,252,184,106,213,170,249,179,102,205,178, 95,182,108, 89, 94,108,108,108, 17,195, 48,186,231,190,103,114, 15, 15, 15,179, 37, - 75,150, 56,172, 92,185, 50, 15,192, 15,127,114,184,234,221,172, 89,179,117, 61,122,244, 48, 27, 53,106, 20, 86,174, 92,137,244, -244,244,105,148, 82, 99,121,221,192, 19, 66, 38,175, 89,179,230,151, 9, 19, 38,160,172,172,108,254,161, 67,135,166, 16, 66,190, -164,148,254,252, 34,167,189,189,189,139, 72, 36, 66, 84, 84, 84, 17,165,244, 97, 21,161, 54,195,203,203, 43,147, 16,226,224,232, -232,232,254,170,105,109,108,108, 26,152,155,155, 35,229, 73,191,208,196,151, 76,246, 56, 53, 53,149, 74,165, 82,226,228,228,228, - 89,213,242, 91, 89, 89,125,253,211, 79, 63,137, 78,159, 62,141,233,211,167,167, 60,122,244,232,211,242,219, 8,128, 82,122,141, - 16,210,165, 99,199,142,155, 38, 76,152,208,112,225,194,133, 36, 54, 54,118, 4,128, 87, 6, 44, 55, 55,183,225,195,134, 13,195, -170, 85,171,176,118,237,218,177,148,210, 95,159, 91,230,221,132, 16,107, 27, 27,155, 37,161,161,161,216,184,113,227,199, 0, 94, - 26,176,210,211,211,167,124,252,241,199, 19,243,242,242,194, 76,217,166,166, 76,239,226,226,210,115,224,192,129, 14,148, 82,172, - 92,185, 50, 99,213,170, 85, 37, 5, 5, 5, 63,167,165,165,157,125,174, 37,110,255,145, 35, 71,190, 28, 53,106, 20,194,195,195, -151,186,184,184,208,148,148,148, 77, 85,108,211,116, 66, 72, 3, 66, 72, 99, 74,233,221,242,171, 4,147,159,219,239, 26,150, 79, -155, 98,202, 50,101,199,158, 62,228,208,180,199,165,107, 17,225,111,185, 55, 13, 17, 59, 88,155,195,165,145, 29,108, 84, 18, 80, - 0, 55, 31,105,113,249,236, 49, 67,102,198,227,203,166, 92, 65, 88,225,116,244,237,121, 89,105,123,238,173, 6, 77,130, 69,238, - 13, 27,161, 75,155,230, 86,182, 22, 98,232, 13, 20,199,175, 21,224,210,217,195,134,172,204,228, 51,194, 21,132,127, 44,255,180, - 14,238, 85,182, 96,101,101,101,253, 71, 34,145,180, 27, 54,108, 88,191,144,144, 16,243,145, 35, 71,102, 90, 88, 88,104,164, 82, - 41,107, 99, 99, 35,165,148, 74,143, 29, 59,230,156,158,158,110, 13, 96,103, 86, 86,214,217,231,190, 64,207, 60,109,123,228, 44, -141, 23, 33,132,184,184, 88,181, 19,237,252,188, 95, 72, 72,136,170,182,206, 25, 51, 64,103,180,215,121, 94,114, 36, 83,115,242, - 15,141,118,117,116,100,219, 5, 4,139,205,148,170,242,144, 96, 35,229,121, 72,170,227,124, 77, 63, 90,127,138, 83,175,215,191, - 21, 31, 31,255,209,160, 65,131,198,171,213,234,219,147, 38, 77,186, 98,101,101,101, 40, 63, 82,132, 94,175, 23, 31, 63,126, 60, - 40, 57, 57,185,137,193, 96, 88, 2, 96,151,169,229,188,125,251,118, 25,128,175,156,157,157, 15,102,102,102,254,214,175, 95, 63, -108,220,184, 17, 23, 47, 94,236,146,154,154,122,169,166,203,126,233,210,165,188,110,221,186,105,239,222,189,171, 98, 85,117,225, -104, 45, 65,183,169, 49,160, 60,133,153,156, 66, 83, 84, 0, 67,110, 46, 74, 74, 74,238,152,234,140,138,138, 74,111,219,182,173, -238,225,195,135,178, 6, 13, 26, 60, 9, 87,229,193, 42, 43, 43, 11,185,185,185, 40, 44, 44,164, 98,177, 56,202, 84,103,100,100, -100, 66,215,174, 93,185,196,196, 68,150,101,237, 81,199, 74,130, 78, 19,159,204,110,173, 4,138, 10, 11,160,205,206,134, 86,171, -125,169, 51, 37, 37,101,183,139,139, 11, 0,204,159, 54,109,154,109,183,110,221,226, 34, 34, 34,186, 86,254, 28,127,127,255,159, -103,205,154,213,109,238,220,185, 57,155, 55,111,158,146,154,154,186,243,207,220,151,108,108,108,190, 60,116,232,144, 89, 89, 89, - 25, 86,174, 92,137,165, 75,151,110,166,148,238,123,174,242, 59,194,178,236, 90,134, 97, 66, 71,143, 30,141,208,208, 80,165,191, -191,255,151,149, 90,185,158,113,166,164,164,204,244,243,243,155,152,149,149,101, 82, 32,184,127,255,254,104, 63, 63,191, 9, 89, - 89, 89,203, 94,181,236, 42,149, 74,197,113, 28, 18, 18, 18,242, 41,165,133, 47,169,168,117, 94, 94, 94,169, 28,199,185,168, 84, - 42,235,170,246,207,252,252,252, 48,181, 90, 61, 57, 51, 51,243, 36,128,133,148, 82,221,115,190, 27,132, 16,255,177, 99,199,126, - 62,127,254,252,119, 50, 50, 50,246, 84,229,124,244,232, 81, 88,199,142, 29,191,187,119,239,222, 54, 74,233,250,151,148,243, 71, - 66, 72,217,182,109,219, 70, 36, 36, 36, 44,126,149, 51, 57, 57,249, 48,128,195,166,110,223,151, 77,255,220,118, 31, 55,102,204, - 24, 28, 62,124, 24,197,197,197,223,167,164,164, 44,125,137, 43,194,221,221,253, 96,235,214,173,123,134,133,133, 73,122,244,232, - 49, 2,192, 38, 19,246,207, 43, 0, 90,149,247,131,187, 7,160,226,192,214, 26, 79,110,217, 64,240,146,171, 51, 95,230,164, 84, - 59, 36,230,220,222, 77, 73, 15,174, 7,169, 59,244,177, 42, 40,113,133, 68,196,160, 56, 47, 13,151, 78,252,154,159,154, 18,127, -165,172, 76, 51,164, 58, 78,142, 43,249,228,250,249,189,155,211, 19,111, 7,150,180,233, 97,149, 95,228, 6,137,136, 32, 63, 59, - 25, 87,194,247,231,165, 37, 37, 92, 48,112,165,161,127,101, 61,255,111,113,254,171, 2, 86,249,233,146, 51,106,181,250, 98,120, -120,120,183, 11, 23, 46,188,211,169, 83,167,204,224,224,224,226,232,232,104,183,132,132, 4, 7, 0, 7, 28, 28, 28,142, 68, 69, - 69,153,116,231,228,215,237, 44,247, 25, 1, 50, 99,230, 23,118, 97,201, 55,178,151,166,101,238,233,235,233,230, 78, 0,144,168, -168, 24,183,132,132, 4,251,234,150,243,111,148,250, 41,128,159, 9, 33,123,175, 92,185, 50,226,253,247,223, 15,237,212,169,211, - 21, 74, 41,185,120,241,162,250,209,163, 71, 65, 28,199,173,231,121, 62,180, 38,143,201,169, 56,229, 34,145, 72,168,151,151, 23, - 81, 40, 20,144,201,100,119,106, 91,238,252,252,252,241, 75,150, 44, 89, 51,119,209, 74,246,139,183, 45,145,157,147,131,156,156, - 28,228,229,230, 66, 2, 45,174,221,190,197, 21, 23, 23,143,175,142,179,172,172,108,210,212,169, 83,195, 22, 47, 94,172, 42, 42, - 42,122, 26,176,114,115,115,161,213,106, 17, 30, 30, 94, 90, 86, 86, 54,165, 58,206,194,194,194,105, 97, 97, 97,243,198,140,159, -204,140, 8, 17, 35,191, 80,139,252,252,124, 20, 23, 21, 65, 70,180,136,184,117,139,211,235,245,223,190,202, 81, 30,178,104, 82, - 82,210,148,162,162,162, 7, 47,248,140,244,209,163, 71,167, 93,188,120,113,118,114,114,242,142, 63,123, 31,202,205,205, 93,212, -170, 85,171,133, 89, 89, 89, 9,101,101,101,191, 82, 74, 95, 88, 6,142,227,198, 17, 66,174,172, 94,189,250, 67, 59, 59, 59,135, -244,244,244, 37,175,216, 47,171, 21, 8, 76,157,254,241,227,199,211,212,106,245,183,153,153,153, 75,170, 8,108, 95,151, 79,183, -204,132,207, 62, 2,224, 72, 21,211, 24,241,228, 22, 21,171, 76, 92,158,223, 1,252,110,194,116, 27, 0,108,248, 43,234,142,188, -188,188,197,189,122,245,154,154,145,145,113, 38, 61, 61,125,197,171,166, 53, 24, 12, 67, 66, 67, 67,167, 58, 58, 58, 6,101,102, -102,174, 52,113, 29, 24, 1,156, 47,127, 84,142, 7,128,138,171,240,242, 1, 36,214,228, 81, 57,229,119,104,255,192,206,187,115, -143, 19,123, 86, 12, 2,199,249, 2, 4,140,152,189,161, 43,209,108, 53,181,229,234, 5,206,247,237,188, 59,247,200,205, 72, 28, -204,115,156, 47, 67,192, 19,150,189, 89,170,211,108,204,188,125, 66,120, 84,142, 64,205, 66,104,117,158,133,235,236,236,172, 16, -139,197,239, 81, 74, 3,121,158,143,224,121,126, 95,106,106,170,182, 54, 9,247,245, 59, 9,249,122,144,162,142,153, 2, 63,154, - 41,208,108,245, 94,235,169, 70, 35,191,183,182,229,252,187, 28, 49, 16, 66, 84, 18,137,100, 60,207,243, 3,120,158,223,206,243, -252,146, 87,221, 91,200,212,114, 54,108,216,112, 77,199,142, 29, 7, 29, 61,122,116,221,163, 71,143,198,191,142,101, 15, 9, 9, -217, 88,183,110,221,247, 59,116,232,192,202,229,114,164,165,165, 33, 55, 55, 23,247,238,221, 51,230,228,228,204, 59,127,254,252, -194, 26, 56,255, 43,149, 74,223,233,221,187,183, 82, 34,145, 32, 55, 55, 23, 5, 5, 5,244,252,249,243,122,134, 97, 38, 94,188, -120,113, 93, 53,215, 39, 9, 9, 9,249,181,110,221,186,111, 5, 7, 7,179, 18,137, 4,121,121,121,200,201,201,193,221,187,119, -185,172,172,172,255, 92,190,124,249, 71, 83,156,158,158,158,210,184,184,184, 23,246,137, 81,171,213,226,151,133,127,225, 40, 89, -112, 10, 78,193,249,111,107,193, 34,132,140,164,148,174,251,199,182, 96, 61, 79,121, 72,217,142, 90, 60,159,234,143,119, 82,186, -108, 43,210, 1,242,238,204,153, 32,143,147,180, 79, 46,136,255,151, 80, 30,166,102,162,138, 62, 34,213,229,193,131, 7,163,156, -157,157,191,121, 85, 80,173, 46,231,206,157, 27,234,231,231,183, 43, 57, 57,121,138, 66,161,104,204,113,156, 81,175,215, 95,211, -235,245,147,175, 92,185, 18, 93, 67,231, 8, 63, 63,191, 95,246,237,219,247, 21,199,113, 77, 24,134, 41,165,148, 70, 81, 74,103, - 95,188,120, 49,182,134, 45,132,125,252,252,252,250,164,164,164,124, 43,147,201, 26,241, 60,111, 40, 45, 45,189,170,215,235,255, -115,229,202, 21,147,157, 47, 11, 87,192,147, 91,100, 8,199,123, 2, 2, 2, 2,255, 28, 68,255,220, 69,163,116,250,116, 80, 76, - 23, 54,242,107, 14,195,175,149,232,232,232,163, 0,142,190,102,231, 49, 0,199, 94,179,115, 47, 76,188, 35,182,128,128,128,128, -128, 0, 35,172, 2, 1, 1, 1, 1, 1, 1, 1,129,215, 11, 1,208,236, 69,111, 84,231,220, 42, 33,164, 89,117, 63,216,132,190, - 47,130, 83,112, 10, 78,193, 41, 56, 5,167,224,252,135, 57, 43,185,103,189,228,173,148,114,207,223,186, 15, 22,249, 35,187, 39, - 9, 29, 0, 5,167,224, 20,156,130, 83,112, 10, 78,193,249,111, 68, 56, 69, 40, 32, 32, 32, 32, 32, 32, 32, 32, 4, 44, 1, 1, - 1, 1, 1, 1, 1, 1, 33, 96, 9, 8, 8, 8, 8, 8, 8, 8, 8, 1, 75, 64, 64, 64, 64, 64, 64, 64, 64, 64, 8, 88, 2, 2, - 2, 2, 2, 2, 2, 2,111, 12,228, 95,116,147,115, 1, 1, 1, 1, 1, 1, 1,129, 63,133,103, 90,176, 8, 33, 66,218, 18, 16, - 16, 16, 16, 16, 16,248,211,249,167,101, 16,225, 20,161,128,128,128,128,128,128,128,128, 16,176, 4, 4, 4, 4, 4, 4, 4, 4, -254, 6, 1, 75, 56, 53, 40, 32, 32, 32, 32, 32, 32,240, 87,240, 79,205, 32, 21, 45, 88, 29,202, 23,176,131,176,169, 5, 4, 4, - 4, 4, 4, 4,254, 68,254,145, 25, 68,184,138, 80, 64, 64, 64, 64, 64, 64, 64,224, 53, 35,244,193, 18, 16, 16, 16, 16, 16, 16, - 16,248, 59, 5, 44, 66, 72, 51,193, 41, 56, 5,167,224, 20,156,130, 83,112, 10, 78, 33, 96, 9, 8, 8, 8, 8, 8, 8, 8, 8, - 8, 1, 75, 64, 64, 64, 64, 64, 64, 64, 64, 8, 88, 2, 2, 2, 2, 2, 2, 2, 2, 66,192, 18, 16, 16, 16, 16, 16, 16, 16, 16, - 16, 2,150,128,128,128,128,128,128,128,192, 95, 4, 1,240,194, 43, 1, 40,165, 55, 77,150,212,224,106,130,170,252,130, 83,112, - 10, 78,193, 41, 56, 5,167,224,252,231, 57,171,114, 87, 39,127,188,209, 1,235,143,188,209, 40, 33,164,217,235, 94, 81,130, 83, -112, 10, 78,193, 41, 56, 5,167,224,252,231, 57,255,105,136,132, 85, 32, 32,240, 55,103, 15, 97, 97,231, 83, 31,132, 58,130, 72, - 50, 16,126,253, 33,166, 83,190,214, 78,199,166,245,160, 55, 56, 64,161,200,198,241,152,132, 90, 59, 5, 4, 4, 4,132,128, 37, - 32, 32,240,183,193,181, 73, 67, 24,248, 89, 0, 28, 1,125, 60,218, 53, 91, 12,224,118,173,156, 14, 77, 26,130,231,167, 67,194, -184,160,172,244, 1, 58,250, 44, 6, 16, 43,172,108, 1, 1, 1, 1,211,248, 75, 58,185,251,251,251, 95, 8, 8, 8,152,214,161, - 67, 7,153,176, 9, 4, 4,106,193, 77, 95, 37, 12,134,183, 75,203,120,231, 35, 23,115,237, 53, 58,174, 17,152,178,174,136,109, -162,170,149,147,225, 59,235,202,184,186, 91, 79,104, 28,138,117,198,198,224,185,218, 57,203,105,209,162,133,101, 96, 96,224,126, -181, 90,109, 43,108, 60, 1, 1, 1, 33, 96,189,102, 40,165, 45, 28, 28, 28,198,104,181,218,187,126,126,126, 61,255, 77, 43, 60, - 40, 40,232, 84,235,214,173, 19,131,131,131, 19,131,131,131, 47, 86, 53,254,159,138,191,191,127,139,182,109,219, 30,110,210,228, -201,143,182,239,231,251,236,253,134, 31,243, 8,250,242,136,139,240,181,172, 6, 69,212, 1, 96,219,199, 38,148, 40, 50,242,140, - 14, 81,119, 53,102,160,108, 59,228,240,142,181,114,242,164,125, 76,156, 78,121, 41,222,222,225,194,173, 82,115,128,109, 95, 43, -103, 57, 34,145,104, 4,128, 78, 44,203,142, 22, 54,222,191, 27, 66, 72, 19, 66, 72, 79, 66,136,250, 53, 58,231,248,248,248,196, - 17, 66,190, 16,214,176,192,223, 38, 96,125,232, 65, 90, 15,240, 32, 71,251, 53, 32,153,253, 61, 72,230, 64, 15,114,226,195, 70, -164,109, 77, 63,248,151, 95,126, 81,108,217,178,197,190, 89,179,102,155,130,130,130, 78, 4, 5, 5,121,214,196, 19, 24, 24,184, -223,223,223,255,253,231,199,169,213,234, 15,159, 27,119, 53, 48, 48, 48, 61, 32, 32,224,150, 41, 94,181, 90,125, 67,173, 86,103, -249,251,251,223,120,110,252,135,129,129,129,251,159, 11, 11,239, 63, 63,238,101,176, 44,235,114,224,192, 1,251,131, 7, 15,218, -139,197, 98,135,231,199,255,254,251,239,207,140,175, 46, 1, 1, 1, 67, 3, 2, 2, 78, 85, 30,231,231,231, 55,228,249,113, 85, - 44,251, 41, 63, 63,191, 33,207,121, 79, 5, 4, 4, 12,125, 77, 33,211, 79, 42,149, 30, 45, 43, 43,107,171, 82,169,148, 0, 32, - 50, 40,204,121,137,232,195, 50, 42,106,233,251,237,113,123,225,171,105, 2,177, 77, 36,224,141,109, 56,158,218,221, 74,208,217, -119,239,245,161,232,250, 3,173,157,129,227,172,193,163, 29,206,212,151,213,200,201,233,131, 57,202, 59,156,140, 17,219,119,232, - 57,154, 61,125, 83,108,103,224, 56, 27,112,124,219, 26, 57,255,127,191, 18,179, 44,251,229,200,145, 35, 25, 66,200,103,158,158, -158,210,127,211,230,106,221,156, 56,191,229, 47, 58, 27,208,148,180,126,141,129,194,199,204,204,236, 60, 33,164,225,223, 44, 92, -181, 0,160,164,148, 30, 4,224, 64, 8, 17,189, 6,231,194, 89,179,102,125,125,227,198, 13,167, 6, 13, 26, 76, 33,132,176, 66, - 37, 33,240,198, 7,172,143,221,201,100, 39, 71,151,223, 38, 47,219,222,246,191,103, 30,170,190, 63, 16,173, 26, 63, 97, 94,107, - 39, 75,251,189, 3, 61,200,236,151,205,247,170, 43, 12,164, 82, 41,226,227,227,177,106,213, 42,249,140, 25, 51, 90,153,153,153, - 93, 9, 10, 10, 90, 84,209,162, 97,170,147, 82,218, 74, 34,145,172, 9, 10, 10, 90, 91,169,194,110, 37,151,203, 87, 7, 5, 5, -173,175, 56, 13,169, 86,171,235, 71, 68, 68,152, 19, 66, 28, 76, 41,103, 96, 96,160, 99, 84, 84,148,146, 16,226, 8, 0, 29, 58, -116,144, 5, 6, 6,254,228,234,234,186, 10, 64, 43, 0,240,244,244,148, 6, 5, 5,173,173, 91,183,238,247,132,144, 86,166, 44, - 59,195, 48,176,178,178,194,246,237,219,193, 48, 76,229,202, 1, 86, 86, 86,216,182,109, 27, 8, 33,213, 94,159, 77,154, 52, 81, - 5, 6, 6,110,119,114,114, 90,196,243,124, 16, 0,248,250,250, 42, 3, 3, 3,183,185,186,186,134, 85,140, 51,209, 25, 36,147, -201, 22, 5, 6, 6,110,243,245,245, 85, 2, 0,207,243, 65, 98,177,120, 97, 96, 96,224,246,234,110,163,246,237,219,143,106,213, -170, 85, 94, 64, 64, 64, 81, 72, 72,200, 54,150,101, 15,207,157, 59, 87, 41,151,203,245, 70,107, 55,149, 58,244,100, 93,137, 88, -106,164,132, 41,165, 28,102,137,139, 36,214,158, 95, 30,145,154,186,236, 53,229,111,239,204, 98,237, 65,208,241,222, 35,173,220, -189,161,191,210,193,251, 67,216, 91,137,101,151,239,104,204, 32, 34, 29,192,168,236,106,228,132,184,227,173,120,173,194,198,163, -187, 34,160,117, 59, 64,217, 80,118,230,154,198, 28, 34,182,102,206,255,127,255,189,224,224, 96, 73,231,206,157,225,236,236,204, - 88, 88, 88,124,252,143,223, 70,149,194,149,153, 76,122,102,201,172,175,253, 28,109,148,187, 76, 9, 89, 38, 92, 62,239,227,224, -224,112,100,245,234,213, 45,205,205,205,143,155, 18,178,222,132,245, 89, 30,174, 36,148,210,136,138, 88, 15, 32,184,150,206,133, - 51,102,204, 24, 61,113,226, 68, 20, 21, 21, 97,200,144, 33,230, 0,230,215,196,217,183,111, 95,182,111,223,190,236,191,162, 14, -121,195,156, 85, 32, 5,208, 17, 64, 79, 0,111, 1, 8, 44,255, 59,160,124,232, 9,160,243,115,175, 1, 21,109, 4,229,255, 7, -189,196,209,243, 5,243, 5, 84, 26, 95,249,255,231,255,126,117,192, 34,132,208,202,175,207,236,108,158,164,149,157,147,203,215, - 11,246, 70, 42,248,251,215, 16,253,105, 39,220, 29,251, 30, 20, 15,174, 97,194,152,239, 20, 22, 22, 86,159,245,245, 36,237,106, -178,182,238,223,191,143, 29, 59,118,192,206,206,142,172, 95,191, 94,246,209, 71, 31,141,176,176,176,184,239,239,239,255,177,169, - 14,134, 97,248, 13, 27, 54,168,222,125,247,221, 15,109,108,108, 34, 3, 2, 2,220, 25,134,225, 55,111,222,172,234,215,175, 95, - 31,189, 94, 31, 21, 20, 20,228, 25, 29, 29,205, 69, 70, 70,130,101, 77, 59,168,137,138,138,226, 14, 31, 62, 92,209,226,226, 9, - 32,106,193,130, 5, 31,238,221,187,215,204,194,194,130, 6, 4, 4,184,215,173, 91, 55,114,209,162, 69, 31,255,242,203, 47,102, -230,230,230,212,196,138, 0, 58,157, 14,114,185,252,153, 32, 85, 49, 94, 38,147,189, 52, 96,189,162,213,202,199,214,214, 54,122, -254,252,249,189,246,237,219,167, 48, 55, 55, 71,171, 86,173, 26, 91, 89, 89,197,132,133,133,245,222,191,127,191,194,220,220,220, -100,159, 68, 34,193,214,173, 91,149, 3, 6, 12,232, 41,147,201,162, 91,181,106,213, 88, 34,145, 96,251,246,237,202, 1, 3, 6, -116, 87, 42,149, 81, 1, 1, 1, 62,166,250, 56,142,155,176,108,217, 50,233,174, 93,187, 88, 55, 55,183, 46,115,231,206, 85,170, -213,106, 66, 41, 5,149, 54,180, 52,138,232,135, 58,198,232,194,234,203,126,103, 64, 50, 56, 81,217, 64, 43,142, 21, 90,177, 94, -197, 30,194,130,148,181, 0,136, 71,212,253, 18,219, 22, 33, 3, 69,200,252, 13,129,222,102,162,211, 81, 69, 14,148, 71, 61,112, - 70,127,156,233, 32,170,150, 83, 98,240, 5, 67, 61,143, 95, 99,108,131, 59, 15, 20, 61,126,252, 24,238, 62, 29,216, 3,145,112, -160, 20,245, 65, 56,191,106, 57,159,221,175, 38,245,237,219, 87,149,152,152,136,224,224, 96,165, 76, 38,155,248, 90, 90,241, 46, -121,215,195, 57,239, 16,156,247,118,172,105,217,254,232,150, 43, 51,153, 52,124,251,214,159,157,124, 67,134,147,181, 95,187, 89, -219,154, 73,118,213,166, 37,171, 60, 92, 29,190,114,229,138,205,219,111,191,141, 25, 51,102,216, 89, 88, 88, 28,127,211, 91,178, - 42,135, 43, 66,136,162,252,244, 96, 42, 0,151, 90, 56,195,102,204,152, 49,122,210,164, 73,184,124,249, 50, 22, 45, 90,132,238, -221,187,195,202,202, 42,208, 84,135,191,191,127, 64,251,246,237,119,180,111,223, 62, 45, 41, 41,169,240,209,163, 71,133, 33, 33, - 33,105,237,219,183,223,225,239,239, 31, 80,155, 69, 46, 31, 4, 94,189, 13, 95,154, 65, 42,209,124,226,196,137,129,132,144,223, - 39, 78,156,232, 15,192,142, 16,242, 59, 0,123, 0,246,229,127, 75,159,123,181, 47, 15, 77, 21,239,219,190,200, 81, 49, 60, 55, -159,125,165,241,149, 63,227,249,191,171,110,193, 34,132,180, 7,112,246,249, 9,196, 60,166,134,142,155, 45, 79,216,180, 20,105, - 91,151,129,100,167,128,205, 79, 71,233,217,223, 96, 56,247, 27, 6,183, 14, 86, 40, 64,166,215,100,165,154,153,153, 65, 34,145, -224,254,253,251,184,115,231, 14,186,119,239, 46, 89,185,114,165,101,179,102,205, 86,183,105,211,230,114, 80, 80, 80, 51, 19, 54, - 12, 26, 53,106,132,126,253,250, 73,199,142, 29,219, 64, 42,149, 94,164,148,138,220,221,221,241,209, 71, 31, 73, 38, 76,152,224, - 38,149, 74,207,243, 60, 47, 81, 42,149, 38,135, 23, 66, 8,148, 74, 37, 0,136, 61, 60, 60, 46,236,216,177,163,126,155, 54,109, - 68,199,142, 29, 67, 81, 81, 17,219,176, 97,195,203, 59,118,236,240,104,221,186,181,232,252,249,243,208,106,181, 38, 7, 44,141, - 70,243,194,128, 85, 92, 92,252, 63,227, 77, 8, 87, 67, 27, 52,104,112,110,231,206,157, 46,109,219,182,101, 79,159, 62,141,162, -162, 34,184,186,186,158,223,185,115,167, 75,112,112, 48,123,241,226, 69, 20, 21, 21, 85, 43, 96,149,175, 63,241,248,241,227, 93, - 88,150, 61, 39,145, 72,224,230,230,134,143, 62,250, 72, 50,110,220, 56, 23,137, 68,114,198,212, 83,134, 28,199, 73,237,237,237, - 97,105,105,137,225,195,135, 43, 27, 55,110, 76,140, 70, 35, 40,165,144,150,105,202, 8, 79, 27, 17,194,188, 79, 88,182,140, 3, -217, 70, 40, 27,194, 27, 69, 18,161,218,121, 5, 22,205,108,192,146, 78,143,210, 74,101,114, 85, 93, 51,149, 93, 99, 32,247, 44, - 26,184,200, 64, 8, 35,139,136, 45, 86,129, 37,157,192,229,216, 84,203,201,161,211,195,148, 82, 89,153,162,169,202,217,165, 30, -178,179,179, 81,215,221, 27, 58,198, 94,122,241, 86,177, 10,180,154,206,114,212,106,117,155,186,117,235, 58,214,175, 95, 31,217, -217,217,104,216,176, 33,204,204,204,172, 90,182,108,217,169,198,235,224, 76,125, 25, 10,153, 86,224, 48, 31,192, 20,128,153, 5, -146,221, 2,209,106,241,155, 22,174,118,108,251,217,217,214,169, 49,112,115, 56,234,216, 72,177,126, 98,115,107, 91, 51, 89,141, - 66, 22, 33,196,167, 78,157, 58,135,175, 92,185, 98, 43,151,203, 17, 21, 21,133, 38, 77,154, 96,233,210,165,118, 86, 86, 86,111, -108,200,122, 46, 92, 89, 83, 74,181, 0,120, 0,125, 81,131,171, 94,201, 19,150,206,158, 61,123,212,164, 73,147,112,233,210, 37, -184,184,184, 32, 51, 51, 19,237,218,181,123,156,159,159,191,208,148,214,170,118,237,218,125,111,109,109,253,251,136, 17, 35,122, -109,223,190,221, 98,223,190,125,164,125,251,246,164, 94,189,122, 22, 35, 70,140,232,101,109,109,253,123,187,118,237,190, 55,181, - 85,171, 28, 17, 0, 57, 0,101,197, 16, 31, 31, 47,245,244,244,148, 18, 66,228,229,225, 82, 70, 8, 17,158,166, 82, 69, 6,169, -132,221,130, 5, 11,230, 81, 74,123, 45, 88,176, 96, 94,165,249,126,127,133,179,114,104, 2, 0, 60,239,160,148,246,170,252, 90, -121, 94, 74,105, 47, 74,105,175,202,243,191,234,243, 94, 26,176, 0,132, 83, 74,219,255, 79, 51, 32, 65, 51,199, 6,141,145,127, -124, 55, 20, 44,121,102, 96, 30,222, 68, 93,185, 8, 70, 74,125,106,178, 66,205,204,204,158, 14, 12,195, 32, 45, 45, 13, 44,203, - 98,218,180,105,242,209,163, 71, 55, 21,137, 68,167,219,183,111, 63,171,170,192, 2, 0, 17, 17, 17,104,216,176, 33,153, 52,105, -146,121,187,118,237, 68, 0,112,253,250,117,120,122,122,146, 57,115,230,152,245,238,221,155, 84, 39, 96, 49, 12, 3,185, 92,142, - 14, 29, 58,144,141, 27, 55,105, 73,136,162, 0, 0, 32, 0, 73, 68, 65, 84,170,100, 50, 25, 14, 30, 60,136,236,236,108,188,253, -246,219,162,141, 27, 55,170,228,114, 57,206,156, 57,131,130,130,130,106, 5,183,210,210, 82, 60, 95,150,151,181,108,189,138, 54, -109,218,252,224,232,232,184,104,203,150, 45, 50,133, 66,129,211,167, 79,163,160,160, 0,253,251,247, 55,110,219,182, 77,110, 97, - 97,129,139, 23, 47,162,160,160,160, 70, 59,124,165,117,170, 8, 14, 14, 54, 0, 64, 76, 76, 12,188,188,188,200,164, 73,147, 20, - 22, 22, 22, 11, 67, 66, 66,126, 48,161, 41, 25, 37, 37, 37,208,233,116,120,240,224, 1,114,115,115,145,156,156, 12,158,231, 65, -144, 89,196, 75,196,187, 8,207,189,207,138,101, 50, 17, 67, 98, 65,224, 77, 69,188,132,204,156, 41, 84, 62, 47,219,137, 36,165, - 13,193,147, 22,151,110, 23, 91,183,125,123,128, 4, 89,135, 1,106, 0,136, 8, 29,131, 92, 69,191, 93, 44,113, 0, 37,205,160, - 32, 94,128, 9, 59, 20, 33, 4, 98,189, 39, 40,241, 59, 30,101,180,105,219,245,115, 73,114,114, 50, 36, 18, 9,100, 50, 25,252, - 90,127, 32,218, 17,110,112, 4,224, 11, 57,105,100,146,243,217,208,254,221,176, 97,195,148, 41, 41, 41, 79,157,221,187,119, 87, -153,153,153, 77,170,113,184, 98,205, 2, 97,228, 70,223,122,168,173, 55,103, 75, 90,227,184,100,173, 23, 24,250, 37,244, 92,243, -218,134, 44,119,119,247,144,198,141, 27,223,246,240,240, 8,174, 77,184, 50,151, 73, 79,239,220,246,179,179,141,227,147,112, 5, -174, 4, 96, 21,112,116,176,198,250,233, 29,172,109,205, 21,213, 10, 89,229,225,234,208,229,203,151,109,229,114, 57,174, 94,189, - 10,169, 84, 10,185, 92, 14, 95, 95, 95,172, 91,183,206,206,218,218,250,141, 8, 89,132, 16, 43, 66, 72,103, 66, 72, 31, 66,200, -123,149,194, 85,125, 0, 29, 8, 33,157, 0,212, 1,112,158, 82,122,195, 68,103,176, 72, 36,250,181, 69,139, 22,241, 34,145, 40, -106,222,188,121,161, 19, 38, 76,192,138, 21, 43,208,161, 67,135,135,223,125,247, 29,238,222,189,107,212,104, 52,125, 41,165,135, -171,242,165,166,166, 78,241,240,240,248,112,223,190,125, 42, 55, 55, 55, 70,163,209,224,248,241,227, 8, 11, 11, 67,105,105, 41, - 92, 93, 93,153,125,251,246,169, 60, 60, 60, 62, 76, 77, 77,157, 98, 66,249,236,236,236,236, 26,226,201,233, 44, 25, 0, 5, 0, -101, 98, 98,162,234,244,233,211,214, 45, 90,180,176, 50, 51, 51, 83, 78,153, 50,197,121,236,216,177,189,170,106, 1,249,151,241, -194, 12,242,146,208, 84,249,247,165,215,203, 66, 79,197,123, 47, 10, 79, 53, 45,228,171, 62,239, 85, 1,171, 3, 33,228,204,139, - 38, 42,203,205,128, 12, 28,148, 44,129, 66, 68,158,188,178, 4, 10,194, 67,148,151, 81,205,170,246,217,128,101,110,110, 14,115, -115,243,103,130,150, 86,171,133, 70,163,121,166,143,210,203,168, 56,229,103,109,109,141,162,162, 34, 24,141, 70, 84,156, 14,179, -177,177, 65,105,105, 41, 8, 33, 80,169, 84, 80,169, 84,213, 14, 88, 0,112,233,210, 37, 92,184,112, 1, 34,145, 8, 54, 54, 79, - 14,222,175, 94,189,138, 27, 55,110, 64, 42,149,194,214,214,182, 90, 94,189, 94, 15,185, 92,254, 63,125,176,244,122, 61,100, 50, -153,201,167, 49, 25,134,129, 78,167,163, 87,175, 94,197,205,155, 55, 33,147,201, 96,111,111, 15,137, 68,130,164,164, 36,196,198, -198, 66, 42,149,194,222,190,102,223, 97, 11, 11, 11,228,231,231,131,231,121, 40, 20,138,167,227,138,139,139,193, 48,140, 73,219, -167,130,152,152, 24, 92,186,116, 9, 9, 9, 9,184,126,253, 58,238,222,189,139,103,158, 34, 64,203,155,209, 13,188,129, 2, 12, -107, 96,153, 25,152, 46, 84, 57, 47,172,134,154, 91,128, 17,189,149,149,111,144,101, 23, 75, 45,234,120,190, 5,100, 31, 6, 8, - 11,136,173,208,170,101, 3, 60, 78,231,148,119,147, 75,229, 40,227,186,224,152,143,149, 73, 78,145,168, 83,102,190, 65,150, 80, - 96,111,238,211, 76,141,204,204, 76,200,100, 50,200,100, 50,248, 7,189,133,248,116, 94,113, 43, 81,171, 4,207,119, 54,201,249, -255,173, 87, 13,228,114,121,160,159,159, 31,201,200,200,128, 76, 38,131, 92, 46, 71,235,214,173,193, 48, 76, 83,181, 90,237, 85, -173,229,143,247,148, 66, 98, 22, 0,112,163,239, 60, 44,113,218,127, 65,219,240,157,119, 62,176, 94,190, 39,203,235, 78,162,174, - 62,140,101, 99, 81,100,104, 89,211,144,229,238,238,222, 86,169, 84,254, 50,101,202,148,250, 98,177,120,111,131, 6, 13,218,212, -196,163,148,177, 43, 39,143,237,239,108, 93, 17,174,140, 26,128, 85, 0,172,242, 73,200,170, 99,135, 57, 99, 59, 91, 43,196,146, - 29,166, 58, 21, 10,197,166,213,171, 87,219, 85,132, 43,137, 68, 2,185, 92,254,116,240,243,243,195,244,233,211,237,172,173,173, - 55,254,197,225,202, 26, 64, 27, 0, 55, 1,236, 3,112,186, 82,184,242, 0,176,191,188,213,234, 26,165,244,177,137,206, 86,221, -186,117, 59, 28, 31, 31,223,245,218,181,107,142,233,233,233, 94,227,199,143,199,242,229,203, 49, 97,194,132, 93,148,210, 22,187, -119,239,110, 29, 17, 17, 17, 72, 41,189,109, 98, 29,250,233,192,129, 3,149, 10,133, 2,114,185, 28, 91,182,108,193,231,159,127, - 14,153,236,201,181, 28, 74,165, 18, 10,133, 2, 3, 7, 14, 84, 18, 66,134,153,160,204, 45, 44, 44, 52,235,211,167, 79,221,242, -150, 43,149, 94,175, 55,203,206,206,182, 96, 24,198,178,105,211,166, 14,211,167, 79,247, 42, 46, 46,110,126,224,192,129, 76, 0, -217, 66,133, 86,117, 6,121, 62,224,152, 50,174,166,211,155, 26,178,170, 21,176, 40,165,103, 0,180,123,193, 4, 55, 31, 71,158, -129, 77, 19,191,103, 91,176, 68, 4, 74,115, 11, 60, 76, 73,130, 24,228, 78, 13, 10,248, 76, 11, 86,197,144,150,150,134,239,190, -251,174,100,235,214,173,183,202,202,202, 58,158, 57,115,102,154, 41, 45, 88, 14, 14, 14,120,252,248, 49, 13, 11, 11, 43, 58,114, -228,136,177, 98, 92, 82, 82, 18,157, 58,117,106,241,207, 63,255, 76,171,123,138, 80,161, 80,224,204,153, 51,116,218,180,105,133, - 41, 41, 41,212,198,198, 6,182,182,182, 56,121,242,164,113,226,196,137,133,113,113,113,212,198,198, 6, 54, 54, 54,213,242,114, - 28, 7,133, 66,241,204, 60, 12,195,192, 96, 48,252,207,248, 87,113,238,220,185,207, 11, 10, 10, 38,124,251,237,183,218,219,183, -111, 83,123,123,123,216,219,219, 99,211,166, 77,162, 33, 67,134,104,175, 95,191,254,116, 92, 77,176,179,179,195,221,187,119,233, -252,249,243,181, 39, 78,156, 16, 3,128,189,189, 61,238,222,189, 75,103,207,158,173,205,207,207,159,112,238,220,185,207, 77,217, -214,185,185,185,200,206,206, 70,114,114, 50,178,179,179,145,147,147, 3,158,231, 65,225, 96,206,148, 25, 62, 2,203,236,229, 12, -165,165, 6, 17,105, 4,208,135, 28, 95,166,159, 62, 29,194,157,195, 95,132,148,171, 3,208,214,231,111, 20, 91,118,233,241,177, -148, 20, 70, 0,134, 98, 64,108, 13,136,173, 33,146,219,162, 91,167,150,236,198, 99,133,117, 64, 16, 4, 75,105,213,253, 91,196, -188, 3, 40, 31,124, 34, 90,103,213,182,251, 24,105,110,110, 46, 24,134,121, 26,176,148, 42, 21, 58,247, 24,200,108, 56,174,171, - 3,158,182,130,130,152,220,103, 70, 34,145,124, 61,108,216, 48,201,243, 78,133, 66,129,119,223,125, 87,166, 82,169, 38,152,188, -236,177, 77, 36,200, 84, 4,128,231, 70,223, 77,212, 58,237,187,168,109, 56,126,250, 6, 69,211,230, 65,248,236, 29,123,197,252, -173, 89,222,215,226, 75,234, 67,100, 28,131, 98,131, 31,214, 85, 47,100, 53,104,208,160,141, 82,169,252,117,223,190,125,202,142, - 29, 59,226,155,111,190, 81, 73, 36,146,189,238,238,238,213,190, 98, 90, 91,196,141,155,189,124, 75,230,245, 93,221, 0, 99, 81, -121,184,250,255, 33,179,128,199,212,213,167, 11,245,148, 31, 98,178, 83,171, 29, 49,124,248,240,220, 95,126,249,229,127,194,149, - 92, 46, 71, 66, 66, 2,230,204,153,147,151,151,151, 55,242, 47,222, 75,155, 3,184, 14, 64, 7,160, 45, 0,101,249,149,130,129, -229, 97,139,163,148,102, 82, 74,211, 77, 21,178, 44, 59,110,205,154, 53, 34,173, 86,139, 17, 35, 70, 32, 41, 41, 9,169,169,169, -152, 60,121,114, 34,207,243, 35,202,157, 55, 40,165,247, 76,117,106, 52,154,207,102,205,154,165, 77, 73, 73, 65,179,102,205,144, -153,153,137, 30, 61,122,160,103,207,158, 80, 42,149,240,245,245, 69, 82, 82, 18,102,206,156,169, 43, 41, 41, 49,165,174,227, 13, - 6,195,157,211,167, 79,203,123,245,234,213,104,241,226,197,238,167, 79,159,246, 44, 41, 41,169, 95, 90, 90,234,157,150,150,214, -228,192,129, 3,245,214,173, 91,151,148,152,152, 24, 73, 41,229,132, 10,237,213, 25,228, 53,112,176, 54, 45, 85, 47,106, 1, 51, - 21,166, 92, 68, 42,191, 62,211,122, 69, 48,123,243,158, 77, 58,169, 91, 35, 88,122,183,128, 82, 46,135, 66, 38,133,194,202, 6, - 58,158,199, 79, 9,233, 37, 26,208,153,181, 13, 88, 60,207, 99,237,218,181,186, 57,115,230, 20,164,165,165,125,121,246,236,217, - 86, 87,174, 92,169,242, 42, 5,134, 97, 80, 88, 88,136,221,187,119,107, 55,110,220,248,176,180,180, 52, 88, 44, 22, 27,245,122, - 61,182,111,223,174, 91,177, 98,197, 35,157, 78,215, 86, 44, 22,151, 85,231,244, 91, 69,192, 18,139,197,134,210,210,210,224, 93, -187,118,197,255,254,251,239, 90, 11, 11, 11,136, 68, 34,163, 78,167, 11,220,178,101,203,253,157, 59,119,106, 45, 44, 44,170,229, -229,121,254,133,125,176, 56,142,123,122,228,100, 42,145,145,145, 27, 13, 6, 67,251, 29, 59,118,164,108,220,184, 81,103, 97, 97, - 1, 0,224, 56, 46,100,243,230,205, 41, 63,254,248, 99,105,117, 58,184, 3, 64, 89, 89, 25, 56,142,195,230,205,155, 75,119,238, -220,153,194,243,124, 72,197,184, 13, 27, 54,232,182,108,217,146, 98, 48, 24,218, 71, 70, 70,110, 52,113, 91,235, 83, 83, 83,145, -150,150,134,235,215,175,235, 99, 99, 99,105,118,118, 54, 40,165, 48,136, 84, 34,202,144,251, 60,165,123, 40,199, 73, 88,138,143, - 9,200, 89,194,178,101, 66,149,243, 18,138,161, 4, 33,138,123, 73, 58,115,185,196, 64,144,254, 43, 32,177,126, 26,176, 32,182, -134,179,139, 43, 34,239,150,152,129, 64, 10,157,161,234,132, 93, 66, 85, 32, 68,121, 43,145,154,139, 36, 10,146,145,145,241,244, - 71,187, 34, 16,185,123, 52, 65,204,253, 18, 21, 8,100,224, 97,242,173, 68,120,158,239,110,102,102, 38,170,112, 86,248,100, 50, - 25, 26, 52,104,192, 26, 12,134, 46, 38, 47,123, 6,239, 8,206,248,217,189, 71, 58,167,125,231,181,158,227,166,110, 80, 40,152, - 60, 32,113, 5,154, 54,116,196,184, 79,154, 75, 39,175,207,246,137,188, 83,210, 0, 12, 55, 28, 62, 26, 59, 83,213, 30, 30, 30, -193, 10,133, 98,239,190,125,251,148, 42,149, 10,241,241,241,104,222,188, 57,230,204,153,163, 84, 40, 20,191,186,187,187,135, 84, -103, 51, 93,140,165,143, 75,138,185,142,255, 89,155,148,113, 61,129,123, 18,172,152, 39,225, 42,171,144, 98,248,212,223, 10,242, -138,117,253, 47, 95, 51,156,169, 70,189,121,189,160,160,160,247,212,169, 83,115,179,179,179,159, 9, 87,143, 30, 61, 66,191,126, -253,242,178,179,179,187, 82, 74,239,252,197,123,169, 10, 79, 58,175,123,149,183, 88,249, 82, 74,141, 0,138,107, 26, 42,124,124, -124, 90,184,185,185,225,135, 31,126,192, 79, 63,253,148,191,116,233, 82, 80, 74,209,168, 81, 35,139,154, 58,175, 93,187,118, 88, -171,213,126, 55,120,240, 96,237,182,109,219,184, 33, 67,134, 32, 32, 32, 0,106,181, 26,131, 7, 15,198, 79, 63,253,100, 28, 52, -104,144, 78,167,211, 77,184,118,237,218, 97, 19,183, 81,105, 97, 97,225,181,131, 7, 15,222, 88,179,102, 77,242, 87, 95,125, 85, - 60,114,228, 72,201,188,121,243,178,119,239,222,125,237,220,185,115, 71,117, 58, 93, 36,165,180, 84,168,204,158,174,179,151,102, -144, 74,100,149, 7, 29,253,115,175, 89, 85,188,103,234,188, 47,252,219,132,233, 94, 74,149, 87,220,236,142,163,151, 7,122,144, -101,179, 55,252,248,213, 32, 95, 31, 69,125,119, 31,112,197,249,184,145,158,142,205,105, 5, 37,101, 60, 93,187, 59,158,158,173, -105,192, 98, 89, 22, 71,143, 30,229,182,111,223, 94, 6, 96, 67, 65, 65,193,172,219,183,111,107,170, 81,121, 51,195,134, 13,211, -228,230,230,238, 79, 75, 75,251, 50, 46, 46, 78, 31, 18, 18,194, 12, 24, 48, 64,147,147,147,115,144, 16,242,197,149, 43, 87, 74, -219,182,109,139,234, 60,216,154, 16, 2,137, 68, 2, 66, 8, 34, 34, 34, 18,155, 52,105, 18,112,249,242,229,101,247,239,223,255, -128, 82,202, 68, 70, 70, 38,171,213,234,160,139, 23, 47, 46,137,141,141,253,136,231,121,198, 84, 47,195, 48,255,211, 82, 69, 8, -121, 26,234,170,123, 21, 97,100,100,228,157, 38, 77,154,168, 47, 95,190,188,118,228,200,145,157, 1, 40, 47, 95,190,124,215,215, -215,215,239,242,229,203,107, 63,249,228,147, 46,229,205,213, 38, 7,172,247,222,123,175,164,160,160,224,120, 81, 81, 81,232,141, - 27, 55, 74,212,106, 53,222,123,239,189,146,252,252,252, 19,249,249,249,161,213,217, 70,148,210,133,231,207,159,159, 67, 41, 21, - 41, 20,138,195,215,174, 93,235, 92, 82, 82,162,164,148,130,112, 15, 11, 25,125,208, 47, 28, 17, 49, 84,196,246, 4, 65, 67,176, -152, 38,145, 42,133,166,243,151, 33, 51, 22,129,144,180,190,157,108,100, 43, 86,111, 16, 15,237,221, 64,222,204,219,237, 73,184, -146, 88, 35,242, 78, 62,166, 47,221,205,207, 31,105,151, 8,158, 38,163,140,222,175,210,105,193, 22,161,148,207, 26,214, 85, 42, - 91,240,223,175,234,183,233,249,173,204,167, 89,224,211, 32, 20,123,251, 42,150, 47,248,146,159, 63,194, 42, 17, 60,210,160,199, -189,106,124, 71, 7, 46, 88,176, 96,223,208,161, 67, 85, 77,155, 54,125,234, 76, 72, 72,192,162, 69,139,180, 58,157,174,191,169, -223, 74,136,189,155,115, 70,106,191,237,120,142,231,215, 99, 62, 83, 42,152, 92,224,225,226, 39,225, 69,108,137,150, 77,237, 48, -237, 11, 71,241,248,176, 3,222,231, 87, 52, 40, 6, 47,109, 12, 32,205,164,163, 77,134,249,117,222,188,121, 74,133, 66,129,251, -247,239,163,226,180,145, 90,173,198,242,229,203,149,163, 71,143,222,215,161, 67, 7,135,240,240,112, 99,117, 66, 86,176, 55,233, -248,159, 53,113,167, 23,141,181,170,211,188,177, 61,178,139,128,225,211, 15,228,231, 20,235, 6, 86, 39, 92, 85, 14, 89,132,144, -222, 99,199,142, 61,176,105,211, 38, 27, 31, 31, 31, 36, 37, 37,161, 95,191,126,185,217,217,217,221,222,128,112, 5, 0, 26, 0, -206, 0,238,227, 73, 95,164,120, 66,136, 20,181,120, 60,219,157, 59,119,174, 61,122,244,200,241,211, 79, 63, 69, 97, 97,161,213, -199, 31,127,140,248,248,120,220,187,119,239,122,109, 10, 26, 17, 17,177,190, 85,171, 86,151, 54,110,220, 56,158, 97,152, 54,165, -165,165,246, 0,248, 99,199,142,165,115, 28,119, 78,171,213,174,188,122,245,234,253,106,110, 35, 10, 32,167,124,184, 47, 84, 90, -175,133,200,191,104,222, 26, 99,210,206,190, 45,158,206,253,208,131,132,255,116, 57, 98, 90, 25,165, 45, 0, 64,194,144,155,197, -132,206,218, 19, 79,207,191, 34, 76,188,242,105,219, 9, 9, 9, 88,177, 98, 69, 73,113,113,241, 13,163,209, 56,234,202,149, 43, -113, 38, 4,148,103,156, 34,145,232,114, 82, 82,210,214,171, 87,175,254, 90,121, 92,114,114,242,246,136,136,136, 61,149,198, 37, -117,236,216,209,133, 16,146, 99, 74, 57, 9, 33,233,239,190,251, 46,203,178,108, 10, 0,220,190,125,187, 12,192, 23, 1, 1, 1, - 71,205,204,204,134, 0, 64, 84, 84,148, 1,192,151,129,129,129,199, 85, 42,213, 80, 83,150,157, 16, 2,150,101, 95,216,130, 5, -224,149,157,220, 95,181, 62,203, 3,207,128,128,128,128,161, 74,165,114, 32, 0,220,184,113,163, 4,192,192,128,128,128, 33, 74, -165,114,144,169, 78,165, 82,121, 37, 35, 35, 99,107,100,100,228,166,231,198,109, 51,165,213,234,121,103,100,100,228, 26, 0,107, - 42,254, 15, 10, 10,242,123,240,224,193, 97,158,231, 21,162,156,135, 37, 49, 7,187,103,170, 67, 79, 55,224, 24,170, 2,161, 83, -141, 12,201,141, 89,218, 74, 87,157,125,169, 38,252,109,157,182,204, 99,228,144,229,158,206,242,241, 35,123,219,144,133, 59, 31, -214, 31, 51,208, 81,234,215,194, 26, 87,110,231,225,155, 57,219,248, 5,161,246, 15,219, 52, 49, 75, 4,143, 53,224, 74,179,170, -116,154, 25, 30, 67,103, 88,218,168,174,108,252,248,247,121, 50,109,203, 92,119,185,124,142,196, 63,168, 3,238,220,138,192,194, - 25,161,252,194, 80,171,135,109,124,204,147, 64,152,239,193,233,178, 76, 93,246,200,200,200, 75, 1, 1, 1,239,109,218,180,105, -223,216,177, 99, 85,190,190,190, 72, 72, 72,192,172, 89,179,180, 37, 37, 37, 31,196,196,196,156, 53,121,217, 41,161, 0, 5,207, -129,251,110,198,247,122,173,158, 35,218, 50, 74,116,122, 48,218, 82,158, 20,235,121, 98, 48,240,196,197, 94,249,164, 69,131,249, -223, 3,159,151,149,147, 97,152,130,177, 99,199,154,189, 52,215,202,100,154,154,108,247,167, 33,107, 69,212,233, 9,195, 37,117, - 86,110,191,154,151, 93,168, 27, 84, 85,184,122,149,179, 34,100, 13, 29, 58,244, 64, 88, 88,152,205,196,137, 19,115, 50, 51, 51, -187, 87, 21,174,254,196,125,254, 58,158,220,219,234, 10,165,244, 28, 33, 68,133, 39,247, 32,186, 85, 83, 39,199,113, 75, 63,251, -236,179, 46,243,230,205, 19, 77,159, 62, 29,113,113,113,152, 61,123, 54,103, 52, 26,195,106,251,221,188,124,249,242, 93, 0,195, -255, 53,117,200, 27,234,252,167, 65,170,211,170,243,186, 54,128, 90,173, 46,233,218,181,171,246,204,153, 51, 26,157, 78, 55, 38, - 58, 58,250,224,191,101,231,235,212,169,211, 41,150,101,221, 9, 33,160,148,166, 29, 63,126, 60, 24, 0, 58,118,236,120, 74, 36, - 18,185,151, 31,241,167,157, 60,121, 50,248,159,252,197,243,247,247,111, 1, 96,174, 78,167,235,123,251,246,109, 77,203, 47,143, -216, 17, 45, 99, 65, 88,182, 44,106,237, 91, 73, 66,165, 83,133,243,136,167, 20, 74,153, 31, 64,199,223,136, 47,169, 63,117, 83, -142,123,175, 46,173,197,155,247,156,229, 23,124,246, 52, 92, 45, 5,213, 94, 69,251,196, 82,147,157,114,198, 31,172,104,124,204, -131,146,122,223,172,205,243,232,210,107, 56,251,251,175,107,249,133,161, 54, 21,225,106, 9,184,226, 8,147,157,149, 8, 8, 8, -104, 45,145, 72,246,245,239,223, 95,181,115,231,206, 42,195,213, 11,157, 23,155,212,133,145,206, 0,161, 85,247, 1,163, 76, 60, - 12, 88,128,183,110, 39,189, 9,219, 61,216,155,212, 83,152,201,127,209,148, 25,190, 53,165,229,202, 20, 39, 33,164,185,149,149, -213,250,252,252,252,193,166,180, 92,253,153,203, 78, 8,177, 3,160, 46, 63,144, 39, 0,238, 80, 74, 31,214,210, 25,204,178,236, - 56, 79, 79,207,102,113,113,113,183, 57,142, 91, 70, 41, 61, 39, 4, 23, 33, 96, 9, 1,171,156,144,144,144, 11, 60,207, 31, 23, -139,197,139,194,195,195, 75,133,157, 79,112, 10,206, 26, 56, 43,133,172,171,247, 53,238, 11,118,230,213,253,250, 67,203,228,170, -194, 85,149,206,242,144, 21,113,183,196,109,225,174,194,186,227, 62, 48, 75,174, 42, 92,153,186,236, 1, 1, 1,173,165, 82,233, -186,146,146,146, 47,170, 10, 87, 47,116,198, 54,145, 32,199,232, 12, 74,154,128,210,151, 63,106,135,176, 37, 32,204,109,100,210, - 76,124,120,187, 76,216,151, 4,167,224, 20, 2,214,159,205, 95,114,215,227,115,231,206,181, 17, 86,189,128, 64, 45,233, 22,167, -199, 17,207,104, 40,101, 75,252,189, 20,159,253, 58, 83, 89, 2, 74, 82,192,211,239, 95, 21,174, 76,112, 94,133,220,184, 36,176, -145,226,139,189, 51,148, 37, 0, 50, 0,102,213,171,194,149,169, 68, 70, 70, 94, 2,208,164,198, 2,239,219,101, 0, 18, 1,242, - 8,255,199,222,121,199, 71, 81,244,127,252, 51,187,215,239,210, 73,238,146,187, 80, 36,144, 0, 73,128, 80, 13,132, 34,189, 55, - 65, 5, 17, 65, 5,148, 38,202, 35, 72, 19,125, 80,144, 46, 34, 32, 69,233,104,144, 94, 2,210,123, 11, 53,161, 6, 72, 72,207, -165,183,235,187,243,251, 35, 9, 15, 98, 32, 23,192,231,121,126, 62,243,214,188,200, 94,118, 63, 55, 59, 51, 59,243,217,239,204, -206,126,249,140, 21,178,191, 0, 5,254,194,187, 71, 6,131,193,248,111, 52, 88, 12, 6,227, 37,154,172,155,193,209, 48, 74, 39, -131,160, 6,164,246, 68,228,219,211,209, 37,222,250,130,154, 23, 96,228, 19, 64, 81, 27, 18,251,125,228,155, 95, 76,243,165, 67, -105,137,137, 98, 48, 24, 12,102,176, 24, 12,198, 95, 65,221, 88, 27,234, 34, 25, 64,242,127,181, 38,131,193, 96,252, 15, 65, 0, -132,150,127,127,232,252,216, 42, 33, 36,180,178, 95,236,196,228, 77,166,201, 52,153, 38,211,100,154, 76,147,105,254,205, 52, 43, -210,254,187,204,237,250,143, 76,114,103,154, 76,147,105, 50, 77,166,201, 52,153, 38,211,252, 59,195, 94,166,203, 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,175,225, 47,125,138,144,193, 96, 48, 24, 12, 6,227,127, 17, 14, 0, 8, 33,204,101, 49, 24, - 12, 6,131,193,248,183,243,119,245, 32,108,136,144,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,254, 55, 13, 22, 33,132,178,185, 88, 12, 6,131,193, 96, 48,254,221,252, 29, 61, 8,123,138,144,193, 96, - 48, 24, 12, 6,227, 37,195,134, 8, 25, 12, 6,131,193, 96, 48,254, 63, 25, 44, 66, 72, 40,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,127, 8, 2,160,220, 39, 1, 40,165,215,157, 22, -121,142,167, 9, 42,210,103,154, 76,147,105, 50, 77,166,201, 52,153,230,223, 79,179, 34,237,202,248,143,255,106,131,245, 87, 46, - 52, 74, 8, 9,125,217, 25,197, 52,153, 38,211,100,154, 76,147,105, 50,205,191,159,230,223, 13, 54, 68,200, 96, 48, 24, 12, 6, -131,241,146,145,252,221, 78, 40, 56,120,128, 44, 79, 74,123,121,122,186,125, 10, 74,145,147, 91, 48,223,221, 78,118,198,198, 70, -218,254,170,239, 36,132, 16, 0,160,127,211,247, 14, 17, 66,148, 33, 33, 33, 77, 1, 32, 38, 38,230, 2,165,212,252,162,249,229, - 19,220,247, 19, 87, 55,213, 96,135, 93,160,102,147,229,231,244,152,109,139, 95,102,154,125,124,130, 53, 86,165,102, 38, 32,118, - 2, 1, 71, 41, 57, 42, 41, 20, 38,230,228, 68,231, 59,171,161,111, 61,113, 34, 47,147, 12, 19,108,246,111, 83,142,207,249, 73, -223,246,203, 42,130,163,104,182, 84, 33,111, 37, 90,109,115, 82, 78,204, 89,197,154,144,202,227, 22,220,217, 83, 37,115,229,211, - 46, 71,102,178,220, 96, 48, 24,204, 96,149, 82, 45,116,144,135,133,216,166,240, 18,190, 15,165,162, 75,218,229, 72,159,255,134, - 19,209,134,244,169,233,225,233, 58, 38,228,213,186,253, 7,189,222, 89, 89, 63, 36, 72,110,177, 57,176,115,239,241, 31,126,221, -121, 96, 94, 80,235, 33,219,115,115, 10,190,207,136,217,126,255, 37,155, 15,197,148,161,129,157,188, 92, 20,114, 66,200, 54, 74, -169,163,188,253,116,141, 6, 29, 38, 32,175,148, 28,195,129,112, 0, 1, 77, 77,190,176,190, 69, 57,154,106, 0,190, 0, 18,158, -166, 87, 30, 42,125,136,191,140,147,127,193, 21,227,211,202, 24,137,103,156,155,182, 86,173, 90, 45, 2, 3, 3,181,163, 71,143, -150, 2,192,130, 5, 11,234,214,174, 93, 59, 35, 46, 46,238, 52,165, 52,227,185,202, 42,184,247,164,105, 19, 63,156,218,171,115, - 4,114, 10,237,248,126,245,175,179,116,161,125,249,244,235,219, 22,190,148, 50,209, 55, 86,121,186,184,156, 31,243,201,151,134, -174,109, 27, 75,114,139, 29,216, 18,117,230,173, 29, 63,207,106,227,233,217,184,153, 51,121, 99,104,241,143, 87,253, 95,241,159, -222,183,119, 79,124,191,108,213,104,125,196,164, 76,169, 66,178, 44, 60,188,181,135,159,127,117,108,221,178,113, 44, 0,102,176, - 42, 87,159,220, 26, 4,122, 4,247,105, 24,182,229,228,157, 34, 23,159,208, 62, 91,193, 99,145,241,202,246,171,206,106,248,215, -109,113, 90,194,241,126,130, 40, 36, 39,222, 60, 29,241, 87,164, 83,163,171,215, 14, 4,171, 9,165, 82, 10,250, 61, 47,146,173, - 5,153,183,238,189,232, 13,148,155,127,176,167, 32,218, 58,201, 57,117, 67,155,104,186, 36,145,169, 14,228,198, 95,201,123, 73, -121,203,171,117, 65,111, 43, 21,234,143,107, 5,213,173,253,224,193,221,187, 69, 5,121,139,139,211,239,172,165,148,138,149,209, - 10,104,255,249, 27, 2,196,207, 69,135,149,147, 80,242,237,253,227, 11, 55,178,218,203, 96,252,197, 6,203, 39,120,128,134, 72, -232,133,214, 45, 94,245,154, 60,170,175,124,209,134,227,240,109,248, 70, 92,218,149, 95,107,253, 39, 79,194, 47,172, 95, 53, 66, -112,109,252,136,129,120,239,141,142, 36,179,192,129,124,147, 0, 34, 5, 6,188,222, 93,221,175, 79, 23,245,183,223,173,126,127, - 79,212,145,247,253,194,250,213, 75,189,188,245, 97, 69,154,190,141, 7,237, 7, 72, 96,217, 54, 21, 28, 74,194, 75,204, 0, 74, -205, 17, 7,141,135,246,196,244, 97, 65,187,102,188, 23, 50, 99, 77, 84,194, 82, 0, 85, 0,164,151,219, 0,114, 18,195,186, 21, - 11,124, 12, 85,228,224, 56, 14,185, 69,118,188, 57,108,188, 80, 78, 67,169, 89, 62, 33,172,247,187,221,107,188,165,104,179,117, - 42, 33,228,154, 51, 13,164, 70, 87, 39, 68,174,116,219, 29,208,176,131,199,131,171, 7,131, 93,116,117,223, 47, 82,154,239,209, -248,120, 75,101, 27,106,141, 70, 19,232,230,230,214,164, 75,151, 46,170,137, 19, 39, 74, 91,183,110,253,232,239,195,135, 15,151, - 30, 63,126,220,240,237,183,223,246, 53, 24, 12,166,252,252,252,139, 69, 69, 69,119, 40,165,130,179,223,225,233,233,249,110,191, -238,173,209,227,173, 81,160,224, 48, 97,210, 52,236,219, 27, 53, 4,192, 75, 49, 88,110, 60, 55,117,248,184,105,134,214,225,141, - 36,115,183, 61,132, 67,164,104, 27,210, 64, 98,121,227, 19,223,131,191, 46,252, 22,192,200,138, 52, 4, 25,247,207,238,157, 94, - 3, 4, 43,236, 14,155,143, 71, 21,143,245,253,251,246,145, 58, 4,138,131, 7, 15, 65,180,139, 63, 57,147, 22,223, 70, 3, 79, -130,112,134,178, 58, 67, 8,192, 17,128,128,128, 82, 49, 57,241,252,250, 23, 54, 9,132, 16, 94,165,171,211,153,163,226, 96, 0, - 16, 9,183,222,148,126,107,127,101,202, 4, 0,116, 13, 94,143,167,162,240,167, 27, 38,158,151, 26, 83,175, 68,214,120,129,244, -121,119,105,161,107,124,236,135,182, 29,194, 67, 60, 67,127,252,221,226,214,184,235, 24, 36,231,162,255,142,109, 91,251,251,132, -246, 57,206,129, 46, 72,191,190,227, 80, 69, 90, 74,133, 66,187,107,215, 46,159, 46, 93,186,121,104, 67,251,108, 23, 9,210, 56, -138, 52, 34,114,105,132, 56,210, 28, 28, 77, 3, 79,210,179, 2,228, 25,254,177, 41,199,120,142, 55, 56, 68, 33, 53,233,230,233, - 22,206, 39, 24,171,163, 14,158,244, 54,219, 41,230,252,176,113, 90,113, 94,250,180,248, 27,222, 9,106, 93,157,137,197,233,183, -246, 84,230,220, 85,254, 13,244, 18,209,220,197, 79, 95,243,245, 49,227, 62,107,214,177, 93,107,105,205,170, 58,114, 63, 49,157, -254,126,248,184, 45,168, 89,215,179,169,201, 15,182,138,118,201,190, 34, 99,108,250,243,229,111, 91,137,139,182,238,207, 61,223, -120,175,111,175,126, 3,225,225,230, 2,171,205, 82,251,200,239,123,151,172, 92, 50, 59,156, 16, 50,188, 50,230, 80,160,142,207, - 87,206, 26, 85, 11, 16, 49,100,236,204, 41,132,144,205,149, 53,105, 12, 6,163,146, 6,139,240,142,233,225,205, 95,245,250,120, -244, 48,249,200,197, 71,241,240,252, 62,211,203, 50, 87, 26,109,136, 86, 34,147,188,195,113,188, 7, 1,167, 20, 5, 33, 49,143, - 24,151,211,164,164, 10,135,163, 82, 47,111,125,232, 27,214,187,233,119, 63,254, 50,253,226,149,216,214, 35,135,244,213,248, 27, -244,156,221, 65,113,250,226, 53, 97,201,138, 77,249,217, 57,249,167,137,132,126,229,140,185, 2, 0, 74, 17, 48,127,222, 28, 31, - 67, 21, 5,242,138, 29, 24,245,201, 52,124,251,245, 23, 46,213,180, 74,152,173, 34,150, 70, 37, 25,131,115,230, 69,207,232, 27, - 50, 99,231,169,212,213,195,102, 94,188, 10,160,248,153, 6,213, 93,142, 49,203,111, 67,165,148,192, 93, 45, 3, 79,184, 63,153, -171,101,159,133,245, 26,222,171,230,228,111,214,222, 92, 3, 64, 10, 64, 14,224,153,121,224,226, 27,220, 86,237, 86,101, 67,215, -161, 95,185,171,221,117,120,187,127,215,224, 19, 7,126,251, 61, 49, 49, 30, 85,235, 69,152, 29, 14,241,112, 65,126,206,247, 69, -233,183, 98, 42, 58,239, 26, 53,106, 12,236,222,189,187,230,179,207, 62,147, 26, 12, 6,252,186,243,176,161,253,235,227, 58, 38, -167,103,249, 2,128, 65, 87, 37,237,131,193, 61,127,223,183,111, 95,114,114,114,178,219,172, 89,179, 34,182,110,221,218, 0,192, - 38,103,203,154, 82, 17, 14,129, 66, 16, 41, 68, 42, 34,171,192,250, 92,166,226,169, 6,130,160, 71,231, 54, 77, 36,139,118, 37, -226, 78, 74, 73,145, 40,164, 60, 26, 55,110, 42, 57,180,149,180,174,208, 20,181,154,212,173, 65, 72,208,171,254,122, 45,206, 94, -188, 10,185, 84,234,241, 86,191,158, 80,170, 84,216,244,235, 86, 49, 61, 61,101,116,218,137,121,107,157, 75, 40,103, 88,177,116, -161, 79, 21, 87, 25,120, 66,192, 75, 56,240, 28, 80,104, 22,240,206,251, 99, 95,232,154, 81,233, 67,252,121,106, 31,226,170,175, - 55,164, 95,191, 55,253, 6,190, 53,128,242, 60,135,200,109,187,123,252,178,105, 77,154,139, 95,208, 26,129, 72,215,154, 82, 98, -146,156, 42, 23, 81,240,217,181,101, 13,170,184,201,192, 17, 32,171, 64,192,131,116, 19,198,142, 26,241, 92, 81,106, 66,136,199, - 71,189, 95,233,124,117, 93,251, 54, 65,213, 92,107, 93,189,155,123,115,232, 63,163,127, 56,144, 84,231,213, 25,115,235,162,216, -108,193,200, 79,166, 34, 51, 37,190,245,254,189, 59, 91, 87,169,211,249, 14,177,230,127,145,249,224,236,238,167,105,154,205,230, -220,174, 93,186,187,249,250,106, 85,171, 87,173,232,152,157,103, 66,118,110, 1,140,217,249,200,204,202, 65,106,122, 38,146, 83, - 82,145,148,152, 44,102,243, 70, 68, 69,237,229,122,246,236, 41, 84, 54,237, 38,155,136, 43,247, 11, 81, 61,168, 9,188,180,254, -104,218,105,104,245, 43,199, 54,255,234,226, 91,111, 94, 97,218,141, 47,156,209,112,213, 6,205,121,115,208,208, 15,222,236,223, - 87, 82,167,150, 63,151,102,204,165,167,206, 70,231, 44, 90,240,221,141,150,109,218,214,235,217,181,131,231,136,119, 7,180,185, - 21,151,212,106,211,150,237,243, 93,124,234,172, 47, 52,222, 26, 91,217,235, 64,173,171,179,250,181, 94, 67,251,134, 54,239,136, -184,184, 56,220,141,189,136,182,237,187,160, 75,247,126,176, 90,204, 3,215,174, 90, 20, 13,224,199,114,143,111,220, 88,234,145, -235,161,250, 67, 91,172, 15,146, 0, 20,148, 82, 56, 76,121, 50,141,174,161,151,103,205, 14, 54, 0,200,245,200, 53,209,232,104, - 59,235, 58, 25,140,151,108,176, 56, 94,222,117,252,176,110,242, 73,203,206,224,225,249, 95, 76,105,151,127,245, 46,251,155,127, -227,183, 98,147,162, 55, 7,255,177, 35,173,248, 9, 3, 66, 26, 75, 61, 12,248, 68,235,231, 55,226,237,247,198,240,213,253,117, - 92,161,217,225, 72, 79, 73,162, 81,187, 54,125,228, 94,173,225,156,188,135, 87, 86, 62, 77,147,212,234, 42,167,113,251,172,105, -151,119,220, 4,240,166, 54,100,160,246,212,249,235, 19, 60, 61,220, 6, 56, 4, 7, 10, 10,138, 35,115,115,237,243, 50, 98, 54, -101, 60,214, 40,145,199,239,232,158,150, 78, 79, 23, 25, 62, 89,125, 7,102,171, 0, 74, 41,124, 60,228,152,253, 91, 2, 36, 60, - 49,134,228,206, 91,240, 85, 95,219,240, 95, 79, 89, 35,167,108,171,218, 18, 56,189,154, 82, 90,248,212,116, 2,224, 57, 64,163, -146, 66,163,148,192, 85, 37, 69,201,204,173,127,153,171, 31, 62,109,208,107, 68,175,154, 83,102,109,184,245,243,212, 21, 55, 78, - 3,136,123,124,190, 83,121,233,116,243, 11, 29,228,233, 99,152,215,123,248, 76,215,248, 28, 14, 82, 7,224,173,175, 73,190,152, - 49,211, 77, 41,231,160,146, 82,183,107,183,238, 15, 26, 53,234,227,238,106,125,221,238,197, 41, 55, 47, 63,171,140, 76, 38,147, - 98,240,224,193, 82,179,217,108,123,111,252,236, 86,241,137,233,157,190,254, 98,130,162,154, 65, 11, 65,164,184,126, 59,177,214, -140,175,231,251,239,249,253,108,212,128,206,245, 15,248,249,249,121,152, 76, 38,177, 50,229,158,151,151,191,113,195,182,131, 19, -191, 91, 48, 23,241,233, 69,216,176,105, 11, 4, 65, 92,251,108, 83,246, 71,205, 25, 51,102,248,134,134,134,202, 98, 98, 98,210, - 41,165,166, 39,246,118, 51,230,219, 96, 23, 68, 16, 0,222, 30, 10,120,184,200,193,115, 4, 28, 33, 21,150, 59,136, 56,180,119, -151, 86,144, 75,121, 60,136,127,136,166,141, 26,192,167,138, 39,110,221,189,143,180,244,244,116,142,112,239, 86,239, 52,125,182, -221, 98,158,154,114,124,238,234,103,165,147,112,128,183,171, 12,223,108,137,135, 74, 46,129, 74,206, 67,165, 40,249,151,128, 56, -105, 72,255,156, 78,141,111,157, 79, 27,132, 52,156,241,254,251,239,113, 45, 91, 52,167, 60, 47, 65,122,158,157,112, 4,248,120, -212, 72,140,253,104,184, 46, 62, 33,233,243,165,203, 87, 76,116,209,213,157, 93,152,126,243,107,103,202,168,138,171, 12,211, 55, - 60,128, 74, 81,146,206,176, 87, 92,156,110, 31,158,212,212, 55,232,182,247, 72,134, 52,168, 96,143,249,252,221, 59,151,191,189, -112, 45,225, 34,165, 52, 71, 27,218, 7, 86, 7, 69,161,201,142,152,135, 14,136,102, 41,250,116,105,138, 6, 30,222,129,223,173, - 61,178,138, 16,162, 43,187, 62,159,212, 76,186,117,166,137,103,227, 1,110,180, 72,125,109,238,182,120,239,234, 58, 55,248,122, -186,194, 71, 95, 5,117,235, 6,193, 83, 35,133,155,138,135, 74,206,115,109,186, 12, 64,231,206, 93, 77,130,232,200,168, 76,253, - 36,148, 12,235,215,173,245, 90, 2,200, 56, 94,150,226, 87,189,118,213,102, 93,222, 87, 54,233, 56, 20,118,171,249, 83, 23,223, -224, 99,133,105,177, 71, 43,210,244,240,209,191, 51,236,189,225,178,154, 58, 5, 14, 31, 59,227,152, 60,101,202,245,188,194,156, -249,133,169,119, 99, 15, 29, 62,224,235,238,233, 53,101,242,180,153,225,237, 90,132,241, 29,186,191, 37,139,138, 58,208, 31,192, -216,138,210, 73, 8,225, 84,218,218,195,106,215,109, 48,254,195,105, 63, 86, 79,206,178,194, 83, 31,136,107,151, 47, 34, 42,242, -251, 43,150,194,188,239, 14,236,249,109,252, 23,223, 44,174,223,189,247,155,216,189,125,243, 88, 66,200, 10, 90,194, 35, 77,175, -218,109, 58,212,175, 30,186,218,183,142,214,235,113,125,145,242,152, 49,123, 49,204,133, 57,168,161,247,240,117,173, 87, 43,129, -114, 4, 84, 4,140,198, 52,171,119, 80,155,126,153,183,143, 29,173, 76, 59, 95, 89,152,230,255,166,102, 5, 52, 5,224, 3,192, - 8,224,194, 19,219, 40,253, 29,229,108,103,150,118,193, 85, 0, 88, 75,131, 22,101,148,109, 63,237,243,178,227, 99, 1,212, 43, -213, 20, 0,156, 7,144, 83,161,193, 42,245, 26,228,177,139,247, 15,219,127,188,195,181, 27,124,116,190, 16,104,194, 31,186,134, -234,205, 6,102,142, 27, 62, 64,229, 23,214,223,152,122,121,139,211,119,187, 42,255, 64,189, 71, 53,183,189,163, 63,254,204,253, -163,119,123,186,220, 76, 44, 46,136, 77, 40,206,135,138,194,179,106, 21, 73,104,103, 31, 33,227,215,121, 83,220, 13,245,115,243, -146,175,253, 86,158,134,214,205, 43,214,255,213,247,114,172,197, 69, 95,102,198, 68, 70,149,206, 11,250,135,127,248,128,233, 0, -144,116, 38,242,145, 65,209,134,245,125, 85,161,240,152,161,111,242,118, 21, 0,141, 42, 74, 95,118,161, 13,130, 80,210, 31,115, - 28, 65,145, 89,128, 82,198,101, 6,101,205,125,100,174, 78,209, 15,222,181,211,205,178,199,205, 85,249,141, 34,144, 93, 96,135, - 70, 41,129,139, 82, 2, 23,149, 4, 92,169,195, 34,132,104,190, 31,223,160, 76, 67,109,186, 0, 0, 32, 0, 73, 68, 65, 84,231, -135,125,107, 77,153,189,254,246,154, 41,203, 99, 79, 3,184, 77, 41,205,125,150,166,155,174,110,115,185,187,247,130,247, 63, 91, -168, 57,121,187, 8,122, 47, 57, 66,171,187,193, 93, 45, 71,114,118,201,156,254,148, 44, 51,204, 54, 87,244,249, 96,134,219,190, -200, 37,199, 61,253, 27,172,205, 73,186, 58,186,162,115,223,186,231,248, 43,247, 31,166,117,250,245,167,121,138,236, 98, 32, 33, - 91, 68,118,129, 21, 86,222, 19, 83,191,248, 74, 49,105,210,196, 46,176,100, 37,215,174,238,149, 90,233, 11,147, 20,207,143,220, -118,224, 31,161,141, 91,115, 71,143, 28,193,213,139, 39, 34,141,215,183, 87,106,120,176, 90,181,106,142,197,139, 23,187, 47, 90, -180,168,141,167,167,103, 98, 78, 78, 78,108,105, 94,250,251, 84, 15,205,218,185,247,136, 91,243, 6,225, 18,149, 66, 10, 79, 23, - 25, 2,124,213,184,113,233,168,149, 3,249,221,137, 20, 26,252,180, 85, 32, 80,192,152,153,141,206,237, 90, 64, 46,229,145,154, -154,134,160,192,154,126,157,219,189,230, 39,130, 96,233,202,149, 31, 1, 88,253,204,114, 7, 7,158, 39, 80, 43, 36,184,114, 96, - 69,158,165, 56,223, 70, 74,135, 8, 69, 42, 36, 63,119, 83, 35,146,183,163,118,172,231, 82,115, 29,184,147,102, 33, 73, 89, 69, -224, 64,225,227, 46,129, 40, 72,144,159,155, 65, 54,110,218,136,203, 23,207,114,132,112,239, 2,248,218,169,155, 40, 14, 80,202, -121, 40,229, 60, 84, 50, 30,133,150, 18,239,172, 13,237,179,158, 2,121, 18, 94, 82,152,122,101,203,100,167,174,111,181, 71,253, -117, 43,230,226,192,137,232, 86, 71,227,214, 54,210,133,212, 95, 86, 45,116,208, 34, 0,176, 57, 68, 20, 23,230, 65, 99, 79, 64, -171, 26,153,168,162, 22,112, 59, 71,143,171, 73, 18, 77, 69,195, 89, 57,209,145,249,186,224, 94, 99,175,156,220,187, 89,210,182, - 31,114,139, 4, 36, 40,172, 80, 43, 36,165, 63, 60,110, 92, 61,135,180,124,241,164,171, 85,221, 43, 33,110, 95,165, 66,164,133, -233,177, 71, 0,248,255, 43, 66, 92,203, 59,117,233,167, 43, 7,140,251,190, 67,211,206,239,145, 59, 23,126,255, 12,192,209, 10, - 35, 88, 30, 94,146,123,233, 2, 30,196,223, 23,155, 53, 15,151,156, 61,121, 56,236,247, 35,167,215,174,223,176,193,210,237,245, -119,149,237, 91, 54,228, 19,179,172, 88,188,245, 6,141, 73,165, 68,174,169, 34,117, 34, 98,197,249,212,106,250,211,154, 53, 27, -251, 7, 7, 86, 69,122,174, 29, 41, 57, 54, 28,143,190,139,181, 43, 38,229,229,102,220, 27, 6,107, 97,145, 8, 33,239,208,129, -157, 59, 70,142,153,132,224,208,176,234,133, 41, 69,174, 0,254, 56,247, 80, 20,135,126,253,245, 28, 47,141, 70,243,167,239, 49, -166,167,160,168,176, 8,114,181, 27,212,110, 85,224,112, 8,176, 11, 20, 5, 5, 5,242,207,199,188,253,129, 51,231,207, 96, 84, - 34, 18,235,140, 15,241, 33,132,236,166,148,246, 0,208, 1,128,252,177,109, 16, 66,118,151, 26,191, 63,108, 79,154, 52,105,242, -172, 89,179, 98,202,246, 45,251,188,108,223,103,125,254,216,241, 85, 62,255,252,243,208,217,179,103,127, 19, 30, 30,190,249,244, -233,211,247,157, 50, 88,143,159, 12,121,236,238,254, 79,195, 38, 13,123, 54,129, 40,225,253,125, 92,240, 74,141,170,240, 80, 15, - 81,233, 27,189,105,148, 72,120,238,231, 69,159, 43,227,115,101,144,112,146,226,202,152, 43, 5,239,118, 96,217,202,181, 46,205, -235,191,162,152,191, 45,233, 65, 82,182,197, 42, 58,236,156,185,184, 80,150,147,118, 71,154,159, 17,239,234,230, 91,135, 55,231, - 27,167, 2, 40,215, 96,201,229,114,238,187,185, 95, 6, 31, 61,118,106,205, 46, 23,183, 60,191,176,183, 23,240, 10,219,218, 50, - 99, 69,200,151,156,174,225,237,190,114,165,122, 98,157,250,109,252,244,129,205,220,207,237, 91, 19,231,132, 61,231, 39, 78,158, -241,200, 92,217, 77,217,152,179, 98, 87, 65,123,175, 99,243,203,204,213, 38,227,192, 65,157, 91, 7,234,246,237,146,101, 87, 88, -129,224, 72, 30,252,254,199, 50,194, 1, 28, 72,201, 60, 46, 42,102, 16, 66,212,139, 63,110,216, 99,212,235, 1, 83,191,221,112, -123,237,228,229, 49,101,230,170,194,194, 43,224, 85,215,221, 44,166,244,248,184,235,213,199,116,107, 41,169,238,235, 14,149, 92, -130,220, 34, 7,114,139, 5, 36, 25,205,184,151, 86,132,235,247,140, 16, 76,249,120,123,212, 63,185,159,231,140,233,228, 76,249, -236, 57, 28,221,113,206, 55,147, 21,217, 69, 64,102,161,128,148,108, 51,146, 51, 77, 72,202, 52, 65, 37, 3,194, 59,190,165, 56, -185,247,231,206,181,171,123,253, 84,217,139, 41,253,218,129, 98,109,104,159,115,201,169,198,240, 90,129,193,224,246,238,168, 91, -165,193, 0,125,214,213,200, 20,103, 53,246,237,219,151,233,239,239,175, 93,182,108,153,113,193,130, 5,161,213,170, 85,171,155, -152,152,184,211,219,219,123,200,247,115,167, 29,252, 98,238, 79,222, 86,155,197, 45, 36,172, 5, 47,145, 18,196,156, 63,104,217, -191,245,199, 84,154, 95, 60,181, 34,109,185, 66, 81, 69,169,148,194,110, 23,193,243, 60,252,253,180,176, 11, 20,133, 69, 69,232, -219,189, 19, 98,110,222,193,169,179, 23, 29,130,221,177,184,226,134, 3,144,112, 28,212, 10, 9, 44,197,249,182,132,179,107,107, -188,164, 54,137,138,148, 34,250, 94, 49,138, 45, 14,216,236, 34, 2,116,114,100,103, 60,196,170,239,215,226,234,165, 11,104,213, -190, 7,230, 46,221,128, 49, 31, 12,112,250,169, 79,142,144, 82,115, 37,129, 82,206,195, 98, 47,105, 18,190,155, 53,137, 15, 9, -174,135,182, 61, 6, 59, 29,210,114,117, 81,161,192,100,131,198,195, 15,209,135,214,170,247, 28, 58, 63, 97,206,226,159, 62,182, - 20, 80, 36,221, 62,131,112,207, 44,212,242,182,226,252, 67, 87, 28,120, 88, 29,129, 1, 53,193, 73,182, 59, 87,135, 98,119,238, -210, 54,236,187, 51,191, 94, 88, 47,207,128, 32, 40,100, 60, 20, 50, 14,114, 25,135,123,183, 99,240,203,250, 53, 55, 29, 74,245, -128,184,107,219,173, 47,154,209,133,105,113,153, 74, 93,208,248,187,151, 14,196,182,236,245, 17, 60,124,171,215,175,204,241,179, -102, 78,177, 8, 14,187,125,208,144,145,234,158, 93, 95,147,132,183,108,161,185,120, 59, 7,223,254,124, 68, 56, 25,181, 62, 85, -166,112, 87, 25, 90,140,240,114,198, 92,121, 85, 15, 91,185,110,253,175,253,107, 86,243,197,239,231, 31,224, 82, 92, 46,220, 92, -221, 33,209,248, 33,168,205, 80,247,235, 81,139,250, 20,103, 22,110,148, 74,149,239, 54,105, 30, 1, 74, 41,238,196,198,230,228, -230,186,252,169,109,230, 36,220,202,105, 83,255,209, 89,235,163,123,252,206, 29, 1,181, 2,209,173, 87,127, 28, 58, 26,137,251, -113,119, 32, 82, 10,145, 2,148, 82,100,101, 26,179,193,113, 63, 51, 75,192,248,171, 76,214,179,124, 72,153,113,122,210, 16, 61, -105,180,202,126, 47,219,111,214,172, 89, 61,158,136,190,245,120, 74, 84,238, 79,251,149, 29, 63,123,246,236,111, 30,251,187, 83, - 94, 71, 82, 42, 66,158,117,114,218,134,189,195,229, 82,151,157, 63,204,251,152,203,200,179, 67, 37,231,161,169, 86, 19,181,135, -125,172, 30,212,202, 7, 41, 22, 79,236,218,253, 83,129,157, 58,246, 57,107,174,228,156,203,254,249, 75,126,146,213,170,161, 39, - 51, 54,197,199,153,237, 37,211, 36,172, 22,179, 36,225,106,148, 58, 41,246,144, 25, 14,251, 58, 94,174,104, 12, 42,106,159,165, - 87,221,215, 3, 45,218,116, 80,183,105,211, 70,125,224,200,169,153,123,246,236,249, 8,165, 43,212,251, 53,126,112,168,113,203, -110,193,250,128,250,234, 2, 43,129, 92,202, 57, 91,218,194,156,111,102,160,154, 86, 9,147, 85,196, 63,151,239, 45,104,227,242, -251, 55,143,155, 43,157,127,109,127,153, 66,243,135,161,190,167,145,124, 97, 99,187,114, 42,138,122,225,199,161, 61, 71, 15, 8, -152, 58,103,195,237,117,159, 47,139, 57, 5,224,150, 51,230, 10, 0,104, 74,180,201,189, 90,104,155,157,107,230, 77,221,187,233, -187,182, 28,168, 87,221,160, 64, 73,199,142,157, 20, 13,155,182, 80, 24,243, 40,110, 60, 48,194, 92,152,131,246,225,117, 17,181, -109,189,144,158,150,232,212, 28, 15, 99, 78,190,111,117,131, 14, 15, 50, 69, 60, 52,150, 24,171, 36, 99, 49,146,179, 76,200, 41, -180,162,105, 77, 29,138,138,172,190,207,125, 49, 81,178,251,204,153, 51,225,175,182,238,136,215, 7,141, 8,222,189,117,253,121, - 93, 72,191, 79,211, 99,182,254,234,204,241,145,145,145,130, 94,175,143, 75, 79, 79,143,152, 59,119,174, 49, 40, 40,168,234,140, - 25, 51, 38,235,245,122,175, 1,175,191,158,216,163,123,247, 13, 31,126, 50,189,205,210, 47,127,122, 5, 28,159, 14,209,177,215, -104, 18,102, 82, 99,172,169, 34,109, 23,181,194, 75,202,115,224, 8,129,135,171, 6, 10,185, 4,188, 67,132, 40, 8,240,112, 83, - 35, 38,246, 38, 50,110,156, 26,145,123,127,127, 36, 48,175, 66,195,194,243,128, 70, 41,121, 84, 79,180, 13, 94,143, 71, 57,147, -201, 1,128,240,188, 49,253,202,111, 53,156,200, 64,209, 33, 80,152,109, 2, 44, 54, 1, 82,158,162, 32, 47, 3, 95,124, 62, 30, -175,117,233,139,153,131,199, 32,207,204,227,242, 67, 43, 28,118, 59,113,182, 92,146,179,173,232,218,200, 11,153, 5, 14,228, 20, - 9,144, 73, 74,174,151, 61,151,178, 16, 87, 84,185, 7,222, 68,145,194,219,203, 29,234, 44,160,219, 39,219,240, 90, 35,127, 28, -217,177, 66,114,234,252, 53,252,243,219,239,161,237,253, 42, 86, 95,169, 5,133, 91, 85, 40,220, 21,176,211,202, 45,203, 71,237, -146, 79, 46, 31,219,214,174, 86,192, 68,141, 92, 42, 43,137, 50, 38,222,199,250, 53, 63, 38, 59,164,232,153,125,110, 67,193,203, -106,252,165, 28,111,112,247,242,129, 66,202,129, 58,172, 69,149, 61, 62, 45, 37,189,254,220,153, 19,135,156, 56,219,119,114,179, -174, 35,229, 71,183,125,103,137, 61,191,123, 84, 81,170,203,214,128, 8,239,139, 0,188, 42,232, 84,136,187, 95,232,143,203, 87, -111,120,211,207, 87,139,109,135,174, 98,205,170, 31, 96, 8,233,140,184, 75, 7, 80,181,113,111,184,212,108, 7,169,107,228, 48, - 13, 39, 13, 25, 62,110, 74,239, 70, 77, 90,224,204,201,195,200, 48, 38,173,162,244,214,159,158, 70,206,188,125,236, 40,105,220, - 88,235,113, 47,249,209, 28, 44,142,183,249,137, 34,162,219,219, 40,238,199,221,193,213, 75,103, 27,139,130,236, 81,148, 58,215, - 35,215, 68,239,178, 57, 88,140,151, 79, 69, 62,164,162,168, 83, 37,205,220,238,242, 76,214,147,159, 19, 66,118, 79,154, 52,105, - 50, 0, 58,105,210,164,201,101,219,179,102,205, 50, 1,168, 48, 32, 32,121,252,228,202,219, 65,219,176,119,184, 92,162,222,185, -102,241, 20,213,166,243, 2,230,238,139, 70, 88,144, 14, 82, 41, 15,141,210, 23,135, 98,242,112,250,248,206,194,232,139,231,204, -188, 84,152,238,140,185,146, 17,213,222,217,139,150,229, 6, 7, 86,149, 47,217,155,118,197,108, 23, 9,165, 68, 74, 40,225, 41, - 21,221,146, 99, 15,215,203, 39,153,225, 52,217,153, 39,224,136,104,115, 80,196,103, 88, 65, 8,208, 50,162,141,242,192,129,223, - 85,255,234,176,164,158,213,234, 52, 86,223,120, 88, 4,153,132,131,214, 67, 14,103, 31,167,241,241,144, 99,214,150,120, 72, 37, -156,177,141,203,239, 11, 30, 55, 87,190,254,181,253, 93,221,220, 32,138, 4,132,144,231, 41, 96,245,130,177,161, 61,198, 13, 8, -156,186, 96,211,221,245,147,150,198,156,116, 54,114,245, 56,121, 15,175,231, 2,248,180,108,219,189, 90,168,199,133,139,231, 58, -184,123,106,231,182,126, 99,106,149,194, 60, 43, 58,180, 40, 49, 87, 87, 79,252,250, 86,113,218,205, 40,103,181,109, 14, 17, 9, -233,197,120,144, 86,252, 40,122,149,148,105,130, 74,206,195,108, 21, 94,232, 98,114,177, 88,126,140,218,187,163,171, 93, 64, 68, -189,198,109,240,250,176,137, 30, 7,119,172,249, 73, 23,220,203,156, 30,187,115,151, 51, 26, 41, 41, 41, 38, 47, 47,175,179,249, -249,249, 61, 55,108,216,144,211,180,105, 83,222,195,195, 35, 27,128,226,242,165, 75,138,189, 91,126, 78,207,207,207, 31, 99,179, -217,162, 43, 44,107,159, 96,141, 69,106,127,147, 58,248,193,186,208,174,146,156,220,146,209,148,248,164, 84,152,138,138, 97, 23, - 68,164,164,102,192, 98, 49, 35, 47, 63, 31,173,154,213,248,254,152, 53,100,138,171,174,206,228,130,244, 91,187,159, 21,193, 42, -178, 8, 80, 43, 36,255,170, 39,162,224,179,108,249,114,120,185,148,140, 8,241, 60, 65,118,161, 29,169,217, 54,204,152, 52,198, -217, 33,118,234,112, 80, 88,108, 2,204, 54, 1,121,118, 1, 62,254, 85, 48,103,233, 47,136, 55,154,177,227, 98, 30,238,165, 22, - 35,172,150, 43, 32, 58, 87, 65,121, 94,106,236,251,198,187,127,250,126,165,218,197, 44,227, 37,208, 40, 75, 12,144,182, 94,239, - 17,132,112,249,188, 84,106, 73,185,242,235,142,167,167, 16,144,203,229,240,247,245,130,205, 46, 96,255,185, 4,116,111,223, 12, -175, 54,107, 12, 34,145,225, 98,126, 24, 20,110, 46,160, 60,129, 67,164,176,218, 43, 87,167,140,177,145,233,190,161,125, 38, 94, - 57,115,224,135, 78,221,251, 33, 39, 51, 21,235, 86, 46,201,183, 11, 66,247,204, 43, 91,211, 94, 86,195,239,162,171,239,163,118, -115,159,211,184, 69, 71,152,242,210, 96, 76,126,176,163,178, 26, 69,233, 87,114, 1, 44,115,216,172,147, 57,142,128, 56,172, 40, - 74,189,187, 29,128, 8,132, 85,120,188,198, 55,104,248,215, 11,151, 13,172, 90,181, 42,162, 78,222,192,172, 41, 35,175,168,213, -174, 53,116, 94,238,238, 98, 80, 67, 60,184,254, 59,188,106,228,194, 93, 23,104,232,222, 97,152,161, 75,183,190,136,185, 26,141, -197,243,190, 58, 87,196,169,231, 62,181,136, 74, 38,172, 63, 26, 58,244, 10,104,243, 85,120,235,142,176,218, 29,104,214,178, 3, -174, 92, 60, 55, 50,231,254,193,113,172,251,103,252,187, 76,150,147,251,245,120,193,239,233,129,146,185, 90, 62,206, 70,176,102, -205,154, 21, 51,107,214,172,114, 35, 98, 21, 26,172,103,153,171,159,191,155,172,218,112,206,129,155,241,185,232,212,196, 15,169, - 41,201,216,189,233,123, 17, 20,144, 43,229,233, 14,135,120,192,194, 97, 74,206,249,109,249, 21,153, 43, 41, 85,236,154, 57,119, -209,141,176,122,129,252,210,168,140,211,197, 86,129, 82, 16, 9, 1,164, 34, 37, 18,112, 74,141, 40,218,235, 64,240,114, 54,212, - 68, 29, 34, 45,205, 12,192, 38, 80, 80,136,127, 40, 36,187, 67,132, 32, 2, 34, 5,202,246,173,216, 0,149, 60,233,165,146,241, -153, 65,217, 37,115,174,182,148,153,171,170,181,253, 93, 93,221,160,148,241,160,165,251, 86,210, 92,169, 22,140, 10,237,241,241, -155,129,211, 22,254,114,103,195,132, 37,215, 79,250, 4,117,211, 74,148, 30, 94,250,176,193,165,189, 29, 0, 65, 52,165, 92,222, -120,168, 50,218,165,134, 43, 82,227, 27, 84, 35, 53,238,226,244,142,221,222,194,190,109,235,202,204,213, 94,103,117,188, 61,221, -210, 46,198,196,215,178, 81, 15,196,167, 21, 33, 41,211,132,244,220, 18,191,235,227, 46, 67, 82, 98, 2, 52, 26,185,211,157,152, -111,104,223, 81,148, 96, 40, 40, 54,166, 95,223,182, 48, 46,110,159,149, 52, 30,209,227,208,190,173,179,239,223,187, 51,178,121, -251, 1, 8,107,251, 58,162, 54,204,157, 4, 96,151,179,186,217,217,217, 5,158,158,158, 39, 62,253,244,211, 94,171, 87,175,206, - 6, 32,201,207,207, 87,247,237,219,215, 63, 43, 43,107, 60,165, 52,193, 41, 51, 41,193,207,163, 70,142,106,219,183,119, 79, 98, - 39, 50,235,142,223,207, 74,236,130, 64,102,255,227, 13,225,226,165,243,156, 93, 16,200,251,253, 91,137,231,207,158,226, 62, 31, -222, 67,120,237,213, 16, 68,223,140,247, 29, 54,176,223, 76, 0, 79,191,139,162, 98,242,160, 97,227, 74,234,136, 40, 62,154,115, -229,229, 34,197,168,229, 55,161,121, 52,111, 72,130, 14, 97, 94,149,106, 35,236,130, 8,179, 85,128,217, 42,160,216,234,192,209, -235, 57,136, 75, 41, 68,110,177, 29, 22, 91,137, 89,177,217, 68, 0,206, 53, 90,143, 47,197,160,173,223,103,221,146, 89,147,249, -221,151,178, 32,227,121,184,170,101,162, 82, 94, 98, 8,151, 46,152, 42, 9,170, 91, 15,237,186, 12, 82, 60, 59,130, 37,226,248, -133, 59,248,126,203, 21, 44,154, 60, 0, 18,142, 96,244,204, 95,241,118,231, 58, 16, 69,138,212, 59, 23,225, 87,231, 85, 40,228, -202,146,232,181, 77,116,230,218,105,138,210, 39,107, 41,165,209,105,215,183,175,241,175,211,250,219,251,151,119,107,204,102,155, -104,147,104,122, 25,175,236,138, 43,221, 55, 24,128, 12,128,133, 82,122,179,178,141,176,155,127,176,167, 40, 56, 6, 84, 11, 8, -254,236,189,113, 95,105,213,238,222,248,109,237, 98, 10, 41,183,169, 82, 5, 37,216, 56,148,204,233,202, 19, 75,219, 31,194, 17, -148,166,205, 75, 20,108,124, 69,209,171,170,161,237,198,215,169, 27,140,179, 49, 73,248,118,218,135, 87,204, 25, 15,134, 90, 93, - 61,135,217, 10, 83,199,214, 11, 13,131, 78,231,141,244,212, 84,180,233,217, 25,157, 58,119, 65,204,213,104,124,253,197,167,231, -184, 98, 75, 47,103,162,182, 0,224, 89,167,117, 72,253,176, 38,195,106,213,109, 0, 99, 86, 54,106, 6,213, 71, 80,104,216, 48, -207, 58,173, 87,229,220, 58, 30, 3, 6,227,191,135, 61, 0,186, 63,105,132,158, 52, 73,143, 69,160,202,227,194,227, 26,101,251, - 63,205,192, 61, 62, 39, 11,128, 83,203, 31, 73,158,116,140,101,219,218,134,189,195,101, 82,213,206,159, 22,126,174, 90,127,206, -129,219, 9,121,232,212,212, 15,153,153, 89,216,191,101,101, 17,225, 28,221,211,174,236,186,232,108,110,168,252, 3,245, 18, 65, -186,109,202, 87, 95, 69,181,106,222,196,190,108,127,234,241, 2, 59, 68, 81, 34,145,242, 22, 81, 66,120, 42,161, 28,149, 42, 84, -106,137,207, 43,205,220,113,239,236, 14,141, 54,100, 66,177,177,202, 77, 74,143, 62,115,177, 77,199, 99, 55,190,130, 64,241,120, -136,138, 2,112, 8, 20,180,236,177, 99,135,115, 6,139, 35,192,186, 67,169,198,144,252,121,143,204,213,134,204, 18,115,229,230, -234, 6,133,172,100, 34, 48,117,250, 89,176,127,153,171,185,163, 66,123,126, 60, 40,112,218,119,145,113, 27, 62, 93,124,253, 4, -128, 59, 18,165,135,215, 79,171, 22, 40,244, 85,148,224, 0,228, 22, 9,120,107,200,243,221, 56,186,232, 2,223,104,220,170,199, -212,118,221, 7, 96,239,111, 63, 9,215, 78,109,173,148,185, 2,128, 30,237, 26,255, 62,107,206,119,254,159, 78,158,174,144, 75, - 41, 10, 76,118, 40,100, 28,180,238,114,120,169, 57,156,136,218,106,105, 21,172,221,239,140,150, 87,243,183, 93, 3,170, 85,155, -245,249,148,207,249,159, 86,174,252,167,190,126,175,125, 41,215,118,222,161,209, 63,218, 1,124,170, 13,237,119,215,224,127, 97, - 65,181,144,214,240,240, 54,212,247, 14,234,229,146,121,123,103,161,179,105,205,201,201, 73,172, 81,163,198,221, 37, 75,150,212, - 29, 61,122,180,101,244,232,209,254, 38,147, 41,210, 89,115, 5, 0, 77, 27, 55, 8, 27, 59,122,132, 84, 46,225, 32,149,114,168, -233,223,221, 97,179,151,172,253,211,188,126,237, 71, 53,236,117, 0,215,239,103, 96,210,247,135,144, 91,104,129, 68,194,203,158, -165,251,240,220, 83,214,185, 34,248,131,185,114, 81, 74, 96,178, 84,102,169, 33, 66,109, 14, 17,118,135, 8,139, 77,128,197,234, -128,201, 42,194,100, 21, 31, 85,127,158, 35,176,151,212,247, 74,135, 88, 41, 69,126,205, 58,117, 80,171, 48, 15,106, 37, 7,149, - 92, 10,149,188,228,158,103,255,165,108,196, 91,115, 43,212, 16, 69, 17,182,210,168,148,197, 38, 64,163, 40,185,159,179,218, 75, -158,202, 77,190,121,116, 99,122,220,249, 55,125,131,154,241,254, 65, 45, 96, 81, 56,149, 76, 15, 74,233, 1, 66, 72, 7, 66, 72, -123, 0,180, 90,189,150,226,142,109, 91,209,163,123,143,226,196,171,187, 85,132,144, 86,165,151, 62, 40,165, 39, 9, 33, 21,174, -129,229,234, 87, 47, 66,164, 88, 71, 0, 21,168,120, 67,231, 87, 77,221,250,181,158,117, 34,218,117,227,107, 4, 4,193,106, 23, -176,126,213, 34,122,246,200,214, 9, 69,169,183,175, 86, 38, 47,245,213,235, 32, 53, 49, 97,180, 8,201, 28,148, 24, 43,208,146, -183,148, 21,185,248,214,110,175,242,172,250,204,168,165,135, 71, 35,215,250, 77,219,250, 39,100,218,176,111,223, 62, 20,231,103, -124,101,181, 22, 20,195, 66,215, 28,222,254,227,187,111,140,248,210,181, 89,147,198,240,112,211,160,138,135, 27, 46, 93, 60,141, -185, 51, 39,159,227,138, 45,189,140,198, 88,167,135, 51, 57,202,253,179,231,128, 97, 92,118, 86, 14, 22,126,243, 25, 70, 78,248, - 6, 29,122,189,195,221,185,121,229,159, 0,122,179, 62,157,241,239,138, 92, 61, 37,146,101,124, 44,242,244,167,237,199, 76, 81, -121,219,164,116,219,250, 20, 13,235, 19,166,202,250,196,231,214, 39,244,174,188, 80, 4,139,135,116,215,234, 5,147,148,219,175, -243,184,159,156,131, 78, 77,253,144, 97, 52, 98,207,198, 37, 69,118,209,220, 39,163, 18,230, 10, 0, 36,118,116,173,230,239, 59, -241,163, 55,123,145,200,107, 89,209, 41,156, 90, 80, 40, 37, 28, 47, 41,228,165,202, 98,174,208, 36,231, 37,148,231,168,205,198, - 55,236, 48,254,236, 37,123, 81,131,172,135,177, 83, 92,116,153, 53,220,252,234,110,202, 79,189,185,168, 60, 93, 65,112, 32, 61, - 51, 27,126,158,106,164,231,218, 97, 23,104, 57,251, 80, 16, 66,160, 86,240, 40, 46,202,135, 40, 84, 60,133, 64,237,170,219, 29, -146, 63,239, 65,153,185,218,152, 89, 50, 44,248,184,185, 82,202,120,112,132, 56, 29,193, 34,132,168,230,140, 14,238,241,233,192, - 18,115, 53,126,209,213,147, 0,238, 80, 74,179,244, 97,131,225,237, 42,195,168,239, 99,161,209,200,224,169,150, 65,242, 28, 47, - 50,114,209, 5,190,209,168, 85,143, 85, 29,250,142,228,118,172,153,227,184,121,245,212,192,202,152, 43, 65, 16,136,221,110, 71, -187,150,245,147, 47,197,198, 31,159,249,197,180,214,205, 58,188,169,104, 85,199, 23,197, 86, 7,146, 31, 38,226,196,254, 72,139, -159,167,244, 88,237,234, 94,169,118,187,189,194, 14, 60,167,170,173,216,146,107, 54, 75, 36, 50, 77,255,190,221,200,197,232,232, - 13,186,144, 62,219, 0, 18, 3, 34, 6,131,160,119,195,224, 0,228,128,194,106, 49,153,181, 18,121,165, 39, 38, 39, 36, 36, 28, - 94,188,120,113,136, 84, 42,213, 69, 69, 69,137, 69, 69, 69,191, 85,230,120,135,195, 65, 57, 66, 72,116, 92,161,205,195, 69, 74, -106,234, 20, 18,149,134,131,201, 74, 31, 25,173,235,247, 51,176,105, 95, 12,226,146,114,161,243, 82,114,126,158, 28, 28, 14, 33, -231,121, 26, 20,158,227,160, 86, 72,161, 81,242,208, 40, 36, 80, 41, 36,176,218,157, 95, 40,156,128, 62, 56,113,230, 82,112,171, -186,193,136,190, 87,132, 27,137, 86,152,109, 2, 40, 40, 72,105,148,209, 93, 37, 69, 70,106, 2, 68, 42, 36, 84, 54,125, 18, 94, - 82,216,185,215,159, 39,180,171, 53, 46,118,185,130,131, 70, 38,171, 80,195, 46, 8,104,217,184, 54, 60,117,213, 48,105,222, 86, - 0,192,146,169,111, 64,235,198, 99,211,207, 20, 25,215,119, 12,215,134,244,249, 54,241,250,209, 73, 73, 87, 15,189,209,190,185, - 47,175, 83,230, 56,113, 25,145, 62, 0, 68, 0,123, 41,165,142,170,117, 91,220,235,210,185,139,193, 33, 10,169,148,210,227,165, - 59,201, 1,180, 38,132,116, 68, 5,235,200,149, 52,198,228,167,232, 11,231,125,108, 14,138, 67,167,174, 52,139,120, 53, 12, 86, - 59, 69,145,197,134, 75,209, 87,176,227,183,245,197, 55,175, 95, 24, 90,156,118,219,233,107, 41, 61, 49,254, 96, 82,252,157,238, -131, 71, 78, 86, 52, 10,111,255,193,206,205,203,222,160,165, 33, 44, 66,128, 26,175, 14, 62,239, 91,191, 79, 29,137,139, 47, 7, - 91, 46, 45,202,120,112,166, 60,157,220, 92,151,226,219,177,151,115,239,167, 89, 61, 36, 30,181, 33,149,185,188, 71,220,253,127, -224, 21,234,201,134, 87,223,117, 61,122,234, 44, 98, 47,159,132,222, 91,131, 7,247,238, 20,199, 94,189,184,178, 8,178,111,168, - 49,214,233,135,142,124,130,219,234, 2,235,212,111,231,234,225,131,173,155, 86, 34, 47, 39,107,225,225,168,173,227,219,247, 28, -130,170, 1,193,237,124,130,219,234,140,177, 71,211,193, 96,252,231,184, 80,193,246,203,208,124,169, 72,158,222,209, 58,148,222, -190,213,241,219, 71, 67, 48,125,214,247,184,118, 43, 1,251, 54,255, 80,106,174,118,156,113,210, 80, 60,122,219,118, 65,250,157, - 71,107, 89, 13,107, 81, 5,195, 30,221, 83,122,151,127,240,148,245, 41, 0,246, 62, 75, 19, 0, 44, 69,249,131,198,127,246,229, -210,150,175, 54, 53,180,106,223,217,213, 33, 40, 65,159, 24, 18,161, 0,124, 52, 20,247,175, 30,204, 53, 38,221,188, 45,154,114, - 70, 61, 75,147, 16,162,152, 62, 44,232,212,140,190, 33, 51,182,156,178, 70, 30, 19,222,127,183,125,139,218, 58,169,194,165,180, -251, 34, 37,255,113, 4,114, 57, 95,174,187, 40, 79,115,246,168,224,238, 19, 6,214,153,190,120, 75,220,198, 82,115,117,155, 82, -154, 85,182,143,140,231,225,166,145,193, 77, 45,131,167, 70, 90,161,230,159, 58, 63,223,186, 93,155,148,153,171,181,206,153,171, -114,210,121,177,111,223,190, 97, 31,126,248,161,252,211, 15,122, 28, 59,118, 54,246,222, 47, 81,191,118,204,206,202,247, 21, 4, - 1, 26,141, 60,173, 69, 93,239,223, 3,171,123, 37, 95,187,118, 77, 60,116,232,144, 69, 16,132, 75,207,210,164,145,145,130,119, -253, 62, 91, 47, 94,190, 54,164, 81,195, 16, 44,253,126,126,221, 59,247,226,235,198,221,127, 8,131,193, 0,131,193,128,124,135, - 26,247,206, 93, 71,113, 65,214,174,248,216, 29,182,202,158,251,168, 81,163, 94,203,205,205,149, 45, 93,186,180,107,155, 54,109, -182,235,245,250,215, 70,140, 24,113,230,199, 31,127, 52, 57,115,238,209,151, 99,182,252,180,118,195,200, 55, 94,239, 45, 51, 59, - 56,225,194,157, 2,187,146,183,144, 0,127, 55,254,116,244, 3,113,205,158,235,200, 53,243, 8, 48,184,113,117,253, 64, 46,157, -222, 42, 30,187,125,245,156, 40, 33,147, 43,147,206, 71,166,179,176,100,201, 14, 77,233,122, 83, 26,133, 4, 54,193,185, 50, 2, - 0,169, 77, 61,114,220,168, 15,238,135,132, 54, 30,245,198,187, 35,101,205, 2,107,224,194,221,124,120,185, 72,225,235, 41, 71, -166, 49, 11, 23,183, 47,112,228, 38, 93, 91,201, 73, 49,171,178,249,249,248, 82, 12,218,122,125, 71, 46, 93, 48,153,223,127, 41, - 27,114, 5, 7,141, 92, 33,170,213,124,133,233,204,201, 45, 56, 51,111,241,202,240,119,222,234,141,174,225, 53,112,226,106, 50, - 68, 90, 50, 84, 47,136, 37,209, 58, 99,236, 14,235,216,183,106,158, 26,209, 43, 80,155,103, 50,214,158, 30,111, 59, 71, 8,225, -202, 86, 14,255, 83, 93,162,116, 63, 33,132, 7,208, 12, 64, 71, 66,200, 9, 74,105,196, 19,233,168, 10, 32, 4,192,131,210, 27, - 24,209,137,115, 39, 54, 7,197,131,116, 19, 78,159, 62, 5,115,113, 62,226,226,238,226,247,125,219, 47, 22,228,101,173, 81, 58, -232,214,226,204,219,133,206, 94, 71, 0, 96, 18, 11, 63,157, 55,117,184,216,184,117,231,206,221,250, 13,147, 79,252,122,149, 71, - 92,220, 93, 65, 20, 1, 77, 64, 87,185, 33, 64, 83,143,163, 54,154,117,115,167,245,225,165, 93, 7, 5,142,155, 80,158, 38,165, - 71, 29, 46,190,117, 86,158, 58,117,236, 51,165,190, 49,234,118,159,220, 61,249,202,206,238,190,193,157,225, 93,171, 5, 82,174, -236,192,213,211,155,246, 95, 18,132,105, 74, 1,137,133,198, 91, 69,149, 73, 39, 0,136, 22,161,127, 72,163, 8,206,100,182, 34, -230,210,153,196,220,251, 39,166,223,208,184,246,123,181,211,192,170,181,234,189,202, 37,222,190,214, 31,192,247,149,209,124, 17, -152,230,255,166,230,223, 13,201,211,239, 96,165,150, 11, 87,111, 43,186,189,247, 13,162, 99, 30,224,224,111,203, 42,101,174,254, - 93,100,197,110,189, 8,160,137, 46,244,205, 94,103, 47, 68,207,170,223,168,185,151, 40,254,235,113, 36, 42,138,252,213, 11, 39, -139,178,226,163, 83, 28,230,162, 79,211,174,254, 90,225,250, 45, 35,250,212,108, 51,227,189,146, 21,218, 39,110, 51,132, 58,132, - 77,124,148, 84,102, 36, 32, 40,253, 31,132, 16,112, 92,201,239,118,135,221,153,199,171,124, 63,238, 31, 52,116,201,214,184,141, - 31, 47,188,122,162, 44,114,245,135, 78,183,216, 6, 55,181, 12,110, 26, 41, 52,110, 50,240,149,204, 11,185, 84,249, 65,187,158, -239, 57,109,174,202,195,104, 52, 94, 33,132,220,156, 63,127,126,211, 21, 43, 86,212,154, 48, 97, 66,194,202,175, 71,252, 4, 0, -251,247,151,140, 8,222,190,125, 27, 75,150,108, 54, 91, 44,150,187, 69, 69, 69,231, 40,165, 21, 70,156, 4,169,244,243,181, 43, -151,215, 77,235,241,122,147,234, 1,117,224,225, 91, 7,225,134, 58,200, 45,182, 35, 38, 49, 27,247,238, 94,198,245, 51,187,175, -201, 69,217,132,202,164,119,192,128, 1,188, 86,171,109, 78, 8,105,209,168, 81,163,122,189,123,247,206, 78, 78, 78, 14,125,240, -224,129, 40,147,201,242,103,204,152,113,105,198,140, 25, 21,142,189, 21,164,223,248,220,197, 47, 52,106,225,162, 31, 38,125,240, -254,187,205, 7,244,239, 35,117,112,174,226,149, 7,102,199,162, 45,177, 36, 52, 64,203,133,202,139,201,153,163, 59,196,216, 43, -231,206, 10, 34,190, 45, 76,139, 61,241,188,245, 54, 53,199,138, 14, 13,189, 96,178, 8,176,216, 41,108, 2, 30, 13,161, 57, 67, -233,251, 20,167,170, 12,245,151,199,140,255, 96,122,104,211,136,183, 90,117,125,155, 83, 85,113,197,177,221,171,233,131,203, 81, - 91, 37, 68,252,178, 40,227,206,131, 23,111, 72,145, 87, 43,176, 30,226,173,185,112, 83,200,160, 86,242,208, 40,165, 21,215, 37, -175,188, 46,135, 15, 31,127,251,247, 67,199,191,234,240, 90,132,215,244, 97,189, 17,185,231, 20, 92, 84, 50, 80, 81,192,155,175, - 85,239,123, 99, 83,167,110, 85,125,212,250,173,199, 18, 79,142, 94,116,253,243,162, 34,219,221,138, 94,203, 82,186,130,255, 25, - 66, 72, 93, 0, 61, 9, 33, 14, 0, 42, 0, 69, 40, 89,155, 70, 5,224,116, 69,235,200,253,241, 28,233,208,240,240,102,235, 9, -168, 28, 20,171, 14,237,192, 94, 17,210, 7,133,233,215,140,207,155,111,197,137,183, 83, 1, 12,114,245,171, 23,113,245,204,225, - 25,173,187,244, 15,107,221,125,176, 52, 62,211, 14, 81,226,130,162,123, 39,109,241, 23,127,185,230,176,154,103, 20,166,221, 58, -246, 44,173, 34, 78, 61,247,242,238,185,173, 2,219,141,109, 94,165, 86, 11,120, 86,111, 12, 0,200, 75,138, 65,226,133,223,118, -231,167, 72, 7, 83,122,237,185,159,238,147, 40,149, 3,107,215,107,132, 91,177, 87, 96, 42, 46,248,133, 82, 42,122,213,106,253, -203,189, 91, 87, 63,211, 7,132,129,147, 43, 7, 62,205, 96, 49, 24,140,167,180, 43, 79, 91,211, 79,219,176,119, 56, 71,165, 59, - 69,209,161,226,121,137, 73,128,189, 87,101,205,213,191,219, 53,147, 1, 3,120,221, 3,249,112,137, 68,210, 46,233,220,207,175, - 3,128,111,211,119,127,230, 5,251,241,148,203,155,214, 62,109, 1,195, 39, 53,123, 71,232,219,183, 9,171, 82,125,252,226,235, - 55, 0,196, 86,180,136,168,147,145, 33, 57,128, 64, 0, 46, 0,238, 82, 74, 51, 31,223, 95, 31, 54,168, 61,207, 75, 85,101,195, -130, 60, 0, 17,212,116,255,236,218, 67,206,230,167,139,111,157,214, 60, 47,249,208, 97, 23, 86, 23,101,220, 60,248,194,249, 73, -136, 90, 46,151,135,251,250,250,234,167, 78,157,170,186,112,225,130,100,223,190,125,230,130,130,130,228,130,130,130, 19,148,210, -226,202,104,146,182,109, 37,218, 44,207,126,224,105, 71, 47, 31,125, 59, 47,111, 95,239,236,204,212,236, 44, 99,218, 97, 34, 10, - 7, 51,100,218, 45,165,243,178, 42, 93,151, 70,143, 30,221,145, 16, 18, 68, 41,173, 78, 8,185,199,113,220, 93,139,197,226,116, - 4,235, 15,249,232, 23,218, 74,163,146,127,254,206,224, 65,205,122,245,234,201,157,185,146,128, 99,135,247, 10,231, 79, 31, 61, -111,177, 58,102, 23,166, 94, 63,241, 34,117, 94,215,240,245,120, 42,148,191, 76,131, 68, 42, 53,166, 92,250,227,123,255,156,209, -116,241,173, 87, 15, 4,147, 57, 10,169,131,136,223, 22,167,222,186,244,178,174, 77,125,195, 55,122, 11,118,251,159, 38,180,203, - 20, 82, 75, 98,244,191,158, 34,124, 86,185,235,178,221,223, 22, 40,190,106,209,182,155, 87,245, 87,106, 33,230,224, 98,236,253, - 7, 57,243,251,165,140,232, 79, 23, 93,218, 17,151,108,190,254,248, 91, 11,156, 77, 39, 33, 68, 7,160, 43,165,244, 39, 66,200, - 48, 0,151, 0,196, 60,203,164,253, 39,238,230, 9, 33, 68,163, 11,232,167,113,209,126, 27,209,237,109,175, 35,187,127, 46,176, -154,243,254, 81,148,122,119,203,211,210,250,167, 54, 68, 87, 95,173,129,125,146, 87,205,102,195, 85, 94, 85, 53, 69,153,241, 57, - 57, 9, 23, 23, 21,167,235,190,171,104,158,106, 69,233, 12,105, 63, 44,121,200,232,153, 30,219, 54,124,135,184, 27,151, 26,102, -222, 58,116,215,187, 78,251,218,254, 1,245,175,180,234,245, 33,246,173,251,218, 17,119,114,141,123,121,109, 40,139,226, 48, 77, -198,211,239, 6,255,178, 31, 0,161,255, 31, 53, 81, 18,152,242, 1,224,242,178,211, 9, 64,246,255, 45, 63, 1,120,168, 84,170, - 46,238,238,238,189, 80, 50,201,248,165,164,211,179,217, 32,215,255,230,115,215,248,134,180,242,173,217,100,155,246,149, 70,219, - 52,190, 33,173,254,206,117,254,223,161,137, 54,109, 36,186,144,222,239,122,135,244,138,127,163,111,155,216,136, 80,109,187,138, -174, 49, 39,235,231, 0, 0,195, 0, 12,248,111,207, 79,160,141, 68,173,111, 88, 31,126,126,170,231,110, 67,234,213,147,169,125, -130,181, 64, 27,201,203, 74,167,103,205, 86, 19, 2, 35,222, 73,243, 8,104, 51,251,241,207, 61, 2, 90, 79,174,217,114,112,146, -103,205, 86, 19, 88,157,103,154,127,181,230,223,237, 71,194, 44,102,185,166,147,226, 95, 79, 25,188,108,109,219,255,195,252,200, - 5, 16,245,178,117, 95,230, 66,144,127, 5,165,145,170, 19,236,138,120, 73,245,232,232, 81, 7,128, 53, 0,214, 60, 62,207,234, - 37,212,207,200,255, 63,215,210, 81, 7,128,107, 47,164, 17, 27,107, 3,144,241, 82,175,197,123,199,231,161,156, 85,115,115,226, -142,125, 3,224, 27, 86,123, 25,140,202,195,177, 44, 96, 48, 24,255, 1,211, 46,178, 92, 96, 48, 24,127,103, 8, 74, 95, 41, 83, - 78, 3,232,244,216, 42, 33, 36,244, 57, 26,216,235, 76,147,105, 50, 77,166,201, 52,153, 38,211,252,223,210,172, 72,251,239, 50, -183,139, 84,240,226,250, 23, 19,103, 19, 0,153, 38,211,100,154, 76,147,105, 50, 77,166,249, 63, 8, 27, 34,100, 48, 42,110, 72, -180,132, 16, 45,203, 9, 6,131,193, 96,252,215, 26, 44,103, 59,171, 23,233,212, 88,135,248,151,148,155,132, 16,242,137,167,167, -231,217,154, 53,107,102,184,187,187,159, 37,132,124, 74, 8,145, 62,175,166,193, 96,104,174,215,235,151,248,250,250, 46,211,235, -245, 45,254,194,180,235, 9, 33,250,231, 60,246, 43, 66,112,175,228,135,124,197,106, 2,131,193, 96, 48,156,225,169, 79, 17,182, -106,213,234,164, 68, 34, 49, 72, 36, 18,103,223, 99, 70,237,118,123,242,209,163, 71, 35, 42,232,172,198,151,254,190,144, 82, 58, -253, 69,246,115,226,216, 37,148,210,207,159,167, 67, 6, 0, 74,105, 10, 0,248,251,251, 7,136,162,216, 90, 42,149,214,177,219, -237,183, 56,142, 59,158,148,148,116,239,191,204, 0,241,245,234,213, 26,204, 19,210, 18,128, 7,128, 92,135, 72, 79,251,248,232, -215, 31, 61,234,220, 26, 57,101, 70, 10,192, 88,141, 70,211, 95,173, 86,191, 82, 88, 88,120,223,100, 50,109,151,203,229,237, 22, - 47, 94,108, 8, 15, 15,119, 53, 26,141,132,227, 56,237,238,221,187, 7, 45, 94,188,184, 3, 33,164, 59,165,212, 81,217, 52, 11, -130, 48,120,231,206,157, 33, 0,208,173, 91,183,161,132,144,179,148, 82,241,201,252, 47, 39,141,196,207,207,175, 5, 0,164,166, -166,158,166,148, 82,189, 94,223, 82,161, 80, 12, 5, 0,139,197,242,115, 74, 74,202,169,151, 80,151,180,132, 96,124,217,194,181, - 28, 71, 62,113,117,117,221, 88, 80, 80,112,167,236,239,165,233,204, 96, 77, 9,131,193, 96, 48,156, 50, 88, 28,199, 25, 86,173, - 90,229,163, 82,169, 64, 74, 95,182, 71, 30,123,233, 30, 33,228,209,182,221,110,135,201,100,194,168, 81,163, 28,149,232,172,173, -161, 53,151, 0, 0, 32, 0, 73, 68, 65, 84, 62,237,216,177, 99, 39,165, 82,249,135,133, 37,205,102,179,148, 16, 4,151,189,117, -158,227,200,120, 66,200, 15,206,116, 98,101,223, 97,181, 90, 56,169, 84, 14,158,231,198, 54,108,216, 48,204,104, 52, 30, 5,176, - 42, 37, 37, 37,203, 9,141, 95, 0,244, 32,132,192,197,197,229, 66, 64, 64, 64,214,251,239,191,239,219,190,125,123,212,168, 81, - 3,169,169,169,205,143, 28, 57, 50,180, 73,147, 38,105,105,105,105,135, 41,165, 71, 83, 82, 82,238,188,160, 57,242,241,242,242, -234, 42,147,201,100, 28,199,229,164,164,164,156,166,148,166, 85,198, 92,133, 6, 7,206, 31, 62, 98,100,221,190,125,251,250,169, -212,174,202,135, 15,227, 82, 86,174, 88,238,126,242,196,169,134,132,144,241,165,171, 95, 59, 19,165,218,245,197, 23, 95,232, 35, - 34, 34, 92,179,178,178,224,112, 56,170,108,223,190,125,120,163, 70,141, 92, 13, 6,131,124,221,186,117, 40, 44, 44,132, 32, 8, -158, 1, 1, 1,158, 3, 7, 14,180,174, 91,183,110, 44,128, 5,149, 61,111, 81, 20,249,210,127,137, 32, 8, 82, 0, 60, 33,100, - 70, 69,134,200, 96, 48, 52,237,221,187,247,108,133, 66,129, 77,155, 54, 69, 2, 88, 12,224,205,131, 7, 15, 6, 2, 64, 68, 68, -196,155, 0, 78,121,120,120, 52, 36, 4,159,136, 98,201,171,147, 42, 83,151,202,163,123,247, 30, 32,132, 44,241,245,245, 61,149, -153,153,105, 32, 4,111, 62,143,113, 99, 48, 24, 12,198,255,176,193, 2, 0,149, 74,133, 93,187,118,129, 82, 10,142,227,192,243, -124,233, 43, 98, 56, 92, 44, 12,133,217, 33, 69, 97,234, 85,244,107, 36, 69,163, 70,141,254, 96,192,158,214,135, 63,110,208,198, -141, 27, 7,157, 78,247,135, 29,210,211,211,113,248,240,161,114,143,113,214,111, 60,190, 49,115,230, 76,247,236,236,236,238,171, - 87,175,238,224,231,231,247,101,106,106,234,137, 10, 34, 87, 61,202, 38,254,119,234,212,169,233,143, 63,254,120,163,160,160,192, -118,238,220, 57,219,242,229,203, 83, 94,123,237, 53,125,255,254,253,101, 99,199,142,245,189,127,255,254,219,187,118,237,122,219, -211,211,115,103, 78, 78,206,220,231, 41, 0,141, 70, 19,218,187,119,239, 14, 63,253,244,147, 92,173, 86,227,222,189,123, 85, 6, - 15, 30,172, 35,132,252,242,228,171,116,158, 70,189,122,181, 6,127, 48,124,120,208,200, 15, 71, 55,182,217,172,197, 87,163,143, - 30,150,200, 56,126,212,168,247,220,179,178,210,189, 68,145, 14, 70,201,250, 67, 21, 49,118,234,212,169,126, 1, 1, 1,213, 54, -110,220,136,194,194, 66, 0,240,169, 89,179, 38, 2, 3, 3,133, 99,199,142, 33, 40, 40, 8,174,174,174, 56,118,236, 24,206,156, - 57,131,198,141, 27,187,200,100,178,215,159,101,176, 12, 6, 67,125,131,193, 48, 77, 87, 90,216,101,249, 27, 22, 22,134,113,227, -198,193,108, 54,163,118,237,218, 53, 85, 42,213,169, 99,199,142, 58, 99,174,149,222,222,222, 24, 57,114, 36, 10, 11, 11, 7, 24, - 12,134, 7,148, 82, 73,105,122, 65, 41,213, 6, 6, 6,174,111,219,182,109,237,157, 59,119,144,231,189, 56, 40,165, 25,132,144, -133, 61,123,246,248, 4, 32,104,215,174, 93,246,184,113,227,132, 27, 55,110,180,234,215,175,111,179,219,183,239,188, 20,227,198, - 96, 48, 24,140,255, 33,131, 85, 22,161, 58,120,240, 32,172,214, 63,191,106,206,179, 77, 35, 76,232, 87, 29, 67,199,172,197,230, -187,113,168, 95,191, 62,158,124, 34,241,137,151,180,102,240, 60,191,138,227,200, 7,132, 16,132,133, 53,202,152, 63,127,126,121, -175, 69,177,135,133, 53,202,224,121, 78, 75, 41, 5, 33,220, 74, 81, 20, 50,202,211,124, 90,135, 40,151, 43,198, 3,128,159,159, - 62, 99,207,158, 61,246,254,253,251, 99,222,188,121,242,137, 19, 39,126, 97, 48, 24,134, 36, 39, 39, 39, 63, 45,157,143, 83,181, -106, 85,220,186,117, 11, 83,166, 76, 73, 75, 79, 79, 95,149,150,150,118,107,195,134, 13,213,107,214,172, 57,116,197,138, 21, 53, - 91,180,104,193,117,233,210, 5,187,119,239,110, 88, 78, 90, 42,122,244, 85, 10,224,149,182,109,219,182,223,178,101,139, 60, 63, - 63, 31, 9, 9, 9, 80,171,213,152, 62,125,186,235,135, 31,126,216, 26,192, 86,103, 52,121, 66, 90,246,234,221, 71,103,181,154, - 10,173, 86,115,193,131,132,139,169, 41, 41, 55,114,107, 7, 52,214,118,234, 28,238,117,235,214,189,150, 79, 51, 88,143,107, 42, -149,202,215, 91,182,108,233,186,113,227, 70, 52,105,210, 4,238,238,238, 56,114,228, 8,174, 93,187,134,236,236,108,142, 82, 10, - 23, 23, 23,204,158, 61, 27, 85,171, 86, 69, 65, 65, 1,226,227,227,171, 72,165, 82,239,103,165, 83, 20,197,110,107,215,174,213, -121,123,123,195,225,112,128, 82, 10,135,195, 1, 81, 20,145,154,154,138,194,194, 66,104, 52, 26,152,205,102, 28, 63,126,172, 92, -179,252,184,102,114,114,242,241, 21, 43, 86, 28,175, 83,167, 78,235,137, 19, 39, 66, 38,147, 77,202,205,205,197,188,121,243,160, - 86,171, 49,115,230, 76,223,176,176, 48, 0,176, 59, 28,142,178,186, 68, 41,197,247,143,155, 32,103,158,128,241,247,247, 63,152, -145, 97,108,241,218,107,175, 33, 39, 39,199, 62,125,250,116,132,133,133,161,118,237, 64, 84,148,159, 47, 11,166,201, 52,153, 38, -211,252, 95,208,252, 91, 26, 44, 66, 8,165,180,100, 24,229,137,223,177,101,203,150,114, 15,124,119, 65, 44, 36,124, 73,255,183, -108,217, 50,100,103,103, 87, 24,109, 18, 4,225, 99,157, 78,103,154, 52,105, 82,187,218,181,107,219, 71,141, 26,117, 41, 62, 62, -126,220,227,251,212,168, 81,227,187, 31,126,248, 1,119,239,222,205,156, 61,123,246,225,244,244,244,201,149, 44,244,105,132,144, - 37, 0,144,146,146,146,181,123,247,238, 38,199,142, 29,251,116,225,194,133,190,163, 71,143,150,143, 25, 51,230, 3, 0, 95, 60, -229,216, 20, 66,200, 6,131,193,240,118, 68, 68, 4,250,244,233,147,213,178,101, 75,219,249,243,231,125,207,158, 61, 59,109,201, -146, 37,226,144, 33, 67,184, 86,173, 90,193,104, 52,226,183,223,126, 19, 31, 62,124,200, 41, 20, 10,147,211,225, 53, 66,218,241, - 60,255, 9,199,113, 97,193,193,193, 55, 71,140, 24,113, 61, 59, 59, 59, 51, 41, 41, 9,197,197,197,176,217,108,144, 72, 36,144, -201,100,149, 88, 63,131,184,171,213, 42,217,153, 83,219,247,167, 36,197,102,166,166, 95,207,227, 64,185,148,148,139,121, 65, 65, -237,188, 80, 50, 39,171, 66, 92, 92, 92,106, 26,141, 70, 20, 22, 22,194,195,195, 3, 11, 23, 46,132, 86,171,133,201,100,194,173, - 91,183,168,191,191, 63, 57,114,228, 8, 12, 6, 3,114,114,114, 96,181, 90, 81, 92, 92,156,110,181, 90,159,121,254, 82,169,116, -231,144, 33, 67, 90,107,181, 90,117, 89, 4, 75, 20, 69,212,170, 85, 11,163, 71,143,198,230,205,155, 17, 23, 23, 7, 74,169,221, - 96,240,207,224, 56,162, 5, 64, 57,142,223,224,112, 56, 50,202, 41, 39,234,239,239, 63,115,218,180,105,254,203,151, 47,127,101, -220,184,113, 16, 4, 1,162, 40, 66, 16, 4,100,100,100, 96,231,206,157, 56,117,234,148,237,214,173, 91,155,221,220,220, 99, 76, - 38,211, 69,139,197,114,223,217, 28,245,247,247, 87,138,162,248,126, 96, 96, 96,215,129, 3, 7,218,101, 50, 25, 76, 38, 19,138, -139,139,113,253,250,117,123,215,174, 93,179,123,246,236,225,181,103,207, 30, 74, 41, 22,178,232, 21,131,193, 96, 60, 31, 79,243, - 32,127,155, 8,214,211, 78,234,231,159,127, 6,165, 20, 60,207,131,227,184, 71, 67,132,133, 41, 34,222, 29,179, 30, 50, 94, 68, - 84, 84, 20, 26, 54,108,232,212, 23,138,162,184, 56, 42, 42, 42, 60, 34, 34, 66,210,161, 67,135, 70,213,171, 87, 15, 75, 72, 72, -184, 12, 0,213,171, 87, 15,235,216,177, 99, 35,173, 86,139,239,190,251,206, 44,138,226,226,231,116,214,143,119,118,231,170, 86, -173,250,229,182,109,219,150,143, 24, 49, 2,126,126,126, 13, 42, 56,118, 68,231,206,157, 27,126,246,217,103,152, 50,101,138,109, -213,170, 85,142,145, 35, 71, 74,218,182,109,139,117,235,214,113,183,111,223,198,170, 85,171,196,109,219,182,165, 17, 66,248,206, -157, 59,235, 42, 81,137,218,232,116,186, 95, 34, 35, 35,197,166, 77,155, 42,239,220,185, 83,119,252,248,241,186,212,212,212, 3, -181,107,215,206, 42, 46, 46,134,195,225, 64, 81, 81, 17, 0, 88,157,213,229,120,146,158,148,116, 95,107,177,229,154,187,180,109, - 49,222, 24,159, 9,159, 26,189,241,251,177, 45,139, 18, 18,227, 68,194,193,169,161,198,194,194,194,251, 14,135,195, 11,128,246, -224,193,131,240,241,241, 65, 65, 65, 1,108, 54, 27, 76, 38,147,205,211,211, 83,145,149,149, 5,139,197, 2,139,197, 2, 55, 55, - 55, 68, 71, 71,103, 59, 28,142,189,207,210,125,248,240,225, 13, 0,157,158, 48,210, 10,142,227, 14,217,237,118,220,187,119, 15, - 55,111,222,108, 31, 31, 31,111, 41,205, 39, 61, 0, 56, 28,142,148,167,105, 38, 37, 37,153,125,124,124, 62,123,239,189,247,198, -233,116,186, 80, 0, 8, 8, 8,112, 27, 63,126, 60,230,206,157,139,152,152,152,105, 82,169,244,108,114,114,178,165,178,245, 71, -167,211, 5,171, 84,170, 9, 99,199,142,213, 5, 7, 7,195, 98, 41,145,112,117,117, 69,113,113, 49,220,220,220, 16, 30, 30,126, -235,203, 47,191,180, 81,138,225,148,210,116,214, 68, 50, 24, 12,198,203, 49, 89,127,171, 8, 86,169,177, 32,132, 16,250,196, 9, -151,116,224, 28,247, 7,115,197,243, 60,250, 53,225, 81, 80, 59, 0, 28, 87, 50,148,232,112, 56,247, 16,153,209,104, 76,247,247, -247,223, 30, 29, 29,221,127,192,128, 1, 56,124,248,240, 71, 0,222, 7, 0,158,231, 63, 26, 48, 96, 0,162,163,163,113,243,230, -205,237, 70,163,241,165,116, 92, 54,155,173,216,110, 47, 25,141, 84, 42,149,178, 10, 13, 11,199,217,100,178,146,221,238,220,185, -211,103,204,152, 49,125, 58,119,238, 60,172,123,247,238,216,185,115, 39,214,174, 93,251, 53,128,195, 17, 17, 17,235, 43,147, 14, -158,231,199,111,222,188,217, 17, 17, 17,225, 74, 41, 69, 72, 72,136,235,132, 9, 19,108,243,230,205,171, 57,100,200,144,172,164, -164, 36,228,231,231, 35, 45, 45,205,246,240,225,195, 56,103,117, 29,130,120,120,201,146, 31, 12,195,223,239,173,219,178,123,245, -172,223,182, 94,109, 48,232,205,180, 88,189,161,190,207,226,165,167,148, 14,135,184,195, 25, 29,179,217,252,219,158, 61,123,222, -172, 94,189,186,246,218,181,107, 48,155,205, 16, 69, 17, 93,187,118, 5, 0, 69,217,126,183,110,221, 50, 23, 23, 23,103,196,198, -198, 22, 36, 36, 36,216, 81, 50,201,220,153, 11,232,209,211,129, 54,155,237,237,110,221,186, 65, 16, 4,116,233,210, 5, 87,174, - 92,121, 27,192,170,178,191, 59, 91,151, 0,124, 14, 0, 6,131,193,203,221,221,125,103, 89,116, 76,167,211,157,138,142,142,182, -251,251,251, 15,148,201,100,225, 38,147,105, 75, 90, 90,218,241,138, 52,245,122,125,139,218,181,107, 79,157, 55,111, 46,209,233, -124, 33, 8,118, 56, 28, 14,100,100,100,162,176,176, 16,193,193,193,168, 90,181, 42,102,207,158, 13,142,227,118, 49,115,197, 96, - 48, 24, 47, 78,121, 30,228,255, 59,220,147, 39, 88,145,185, 42,251, 93, 38,225,225, 93,197, 19,222, 85,188,224,233,233, 9, 65, - 16,224,172,251,228, 56,110,221,198,141, 27,173,238,238,238,232,217,179,103,144,159,159, 95,132,159,159, 95, 68,207,158, 61,131, -220,221,221,177,113,227, 70, 43,199,113,235, 94,146, 43,230,120,158, 31, 28, 17, 17,129,244,244,116,220,191,127,255, 92,101,142, - 79, 76, 76, 44, 72, 77, 77,221, 92, 84, 84, 4,137, 68, 2,179,217, 12, 0, 71, 1, 84,250, 93,106,162, 40, 54,109,218,180,169, -170,108,174,218,131, 7, 15,224,234,234,234,154,152,152,168, 45, 46, 46,134,213,106, 69,110,110, 46, 46, 93,186, 84, 12, 32,197, - 89,221,152,152, 59,219, 47,158,191, 24, 29,117,224, 4,247,202, 43, 13,124,252, 13,234,124,111, 31,127,215,189, 81,215, 84,105, -169, 89,247, 98, 98,226,156,125, 25,238,226,109,219,182,101, 69, 71, 71,223,244,247,247,127,232,238,238, 78, 1, 32, 53, 53,245, - 15, 63, 23, 46, 92, 80, 68, 69, 69, 21, 39, 36, 36,236, 68,201, 67, 1, 14, 39,202,225, 43, 66,112,155, 16,220,230,121,126,126, -195,134, 13, 7,181,104,209, 2,137,137,137,104,209,162, 5, 66, 66, 66, 6,121,123,123,251, 86,178,108,125, 9, 33,250,224,224, - 96,141, 70,163, 89, 52,108,216, 48, 56, 28, 14,116,232,208, 1, 69, 69, 69,171,245,122,253, 63, 58,119,238,252,209,143, 63,254, -216, 64,167,211,125,236,164,236,192,183,222,122,139,168,213, 26,216,237,118,200,229,114,104, 52, 46,168, 89,179, 38,218,181,107, - 7, 74, 41,218,181,107, 39,174, 88,177, 98,167, 74,165, 90,207,154, 69, 6,131,193,120,121, 38,235,111, 25,193,122, 74, 7, 6, - 65, 16, 64, 8,193,217,188, 80,152, 29, 18,228, 37, 94,196,128,166,242, 71, 70,139,231,121,240, 60, 15,187,221, 14,103, 95,187, -243,240,225,195, 92, 63, 63,191, 95, 79,157, 58,245, 78,223,190,125,177,127,255,254, 17, 0,208,183,111, 95,156, 58,117, 10,247, -238,221,251, 53, 53, 53, 53,183,146,157,173, 55, 0,254,241,136,130, 78,167,123,165, 90,181,106, 31, 13, 31, 62,188,121,253,250, -245,177, 97,195, 6, 0, 56,236,116,100,168, 36, 42,167, 5, 80,248,196,185,201, 0,184,138,162, 88,169, 69, 54, 57,142,187,112, -248,240,225,166,221,187,119,119, 77, 72, 72, 64, 74, 74, 10, 34, 35, 35, 51,188,188,188, 50, 68, 81,132,151,151, 23,188,189,189, - 97,183,219, 85,183,110,221,242, 5,224,244, 90, 91, 2,149,175, 60,176,255,220,242,102,141,187,114,175, 84,215,228, 1, 86,114, - 33, 58, 89, 35,145, 73,150, 85,162,114, 59, 8, 33, 61, 79,158, 60, 57,246,204,153, 51,253,252,252,252,200, 59,239,188,131,174, - 93,187, 66, 46,151,195,100, 50, 33, 39, 39, 7,123,246,236, 33, 14,135,163, 5, 0,248,249,249, 85,171, 81,163,198,207,132,144, -228, 7, 15, 30,188,243,148,178,121,114,137,142, 17,125,250,244,185,145,154,154,106, 31, 63,126, 60,230,207,159,143,161, 67,135, - 74, 99, 99, 99,223, 7,240, 79, 39,203,251, 75, 66,240, 9, 40, 72, 82, 98,226,237, 31,150, 46,181,248,249,249,225,224,193,131, - 8, 15, 15, 71,173, 90,181, 94,185,116,233,210, 43,173, 90,181,194,185,115,231,144,149,149,117,166, 34,205,182,109,219, 74,120, -158,175,169,215,235, 17, 31, 31, 15,165, 82, 9, 95, 95, 95,120,120,120,192,199,199, 7,243,231,207,199,194,133, 11,175, 74, 36, -146, 85,201,201,201,247, 88,115,200, 96, 48, 24,140,103, 26,172,199, 93,227,147, 81,172,125,251,246,129, 82, 10,151, 22, 77, 48, -105, 64, 13, 12,254,104, 45, 54,221,187, 5,133, 66,241, 47, 17,137, 4, 31,126,248, 97,165,190,216,211,211,115,211,166, 77,155, -250,182,108,217, 82,211,161, 67,135, 90, 0,160, 84, 42,237,155, 54,109, 42,242,244,244,220, 84, 73,115, 53,133, 16, 76, 4, 5, -167,144,203, 15,122, 85,169,114,200,213,213,181,113,231,206,157,107,117,233,210, 5, 1, 1, 1,136,140,140, 68,100,100,228,225, -212,212,212,211,206,234,214,172, 89, 19, 55,110,220, 24, 12, 96, 53, 0,138,127, 77,226,119, 0,104, 89,181,106, 85,101,101,210, - 41, 8,194,194, 33, 67,134,108,153, 50,101, 74,102, 80, 80,144,102,243,230,205, 57, 7, 15, 30,180,118,235,214,237,126, 89, 71, -110, 50,153, 96, 50,153,228, 6,131,161,118,101, 12, 86, 76, 76, 76, 70,151,206,237,125,150, 46, 63, 85,203,100, 18,108, 59,246, - 29,180,217,173, 26,211,141, 91,247,210, 42,147, 70, 74,169,195,223,223,127,164, 40,138, 62, 14,135,195,230,227,227, 35,251,229, -151, 95,160, 84, 42,193,113, 28,194,194,194,160, 84, 42,173,122,189, 62, 15, 0,180, 90,173,125,193,130, 5,146,247,222,123, 79, - 86,153, 34,243,245,245,197,250,245,235, 81, 84, 84, 52,107,243,230,205,159,127,248,225,135, 8, 10, 10,106,171,215,235,231,167, -164,164,152, 42, 40,111,207,199, 13, 27, 33,164,142, 76, 38,187,177,120,241, 98,235,201,147, 39,183, 69, 69, 69,117, 29, 58,116, -168, 50, 34, 34, 2,167, 79,159,198,202,149, 43,207,185,187,187,127, 87, 81,162,142, 29, 59, 38,250,249,249, 61, 26, 6, 55,155, -205,120,240,224, 1,194,195,195,177,106,213, 42, 44, 94,188,120, 99, 90, 90, 26,139, 90, 49, 24, 12,198, 95, 20,185,250, 59, 69, -177, 36, 21,237,176,121,243,102, 0,192,251,223,223,130,213, 90, 50,143,105,217,178,101,143,214,175, 42, 27, 74, 60,126,252, 56, - 80,137, 53,171, 98, 99, 99,139,252,253,253,215,141, 25, 51,102,230,133, 11,231,181, 0,112,241,226,197,140,180,180,180,169, 73, - 73, 73, 69,149, 48, 87, 30,132, 96,162, 40, 82,190,212,164,117, 28, 63,126,188,190,101,203,150, 54,169, 84,138,135, 15, 31, 98, -206,156, 57, 56,117,234,212,230,212,212,212,165,212,137, 48, 91,124,124,252,185,196,196,196,230,163, 71,143, 70,235,214,173,123, -172, 92,185,178,211,227,231, 22, 22, 22,182,166, 91,183,110, 58,133, 66, 33,177, 90,173,194,157, 59,119, 46, 59, 89,137,142, 17, - 66, 6, 78,156, 56,113, 44,165,180,161, 86,171,125,216,172, 89,179,216,150, 45, 91,102,185,185,185, 65, 34,145, 32, 35, 35, 3, -197,197,197, 16, 4,193,179, 50, 5, 89,181,106,213,136,177, 99,199, 54, 24, 57,114, 36,138,138,138,176,118,237, 90, 44, 93,186, - 20, 85,171, 86,141, 72, 76, 76, 60, 89, 25, 45, 81, 20,125,118,237,218, 85, 22,169,195,161, 67,135,160,215,235,225,238,238,142, -252,252,124,188,243,206, 59,242,105,211,166, 1, 0, 46, 93,186, 36, 85,169, 84, 21,157,119, 6, 33,100, 33,199,145,241, 0, 72, -211,166,205,140,110,110,110,246,179,103,207,198, 37, 39, 39,239, 13, 8, 8,120,125,200,144, 33,181,154, 53,107, 38,187,115,231, - 78, 43, 0,251, 43, 91,145,179,179,179,113,252,248,241,227,169,169,169, 11,181, 90,237,166, 47,191,252,242, 19, 95, 95,223,134, - 41, 41, 41,103,117, 58,221,204,232,232,104,187, 19,229, 35,250,249,249, 37, 30, 56,112,160,106,255,254,253, 33,151,203,145,147, -147, 3, 55, 55, 55, 44, 88,176,128,218,108,182,237,172, 41,100, 48, 24, 12,198, 75, 49, 88,219,182,109, 3,199,113,176,102, 88, -241,225,196,205, 80, 43,121, 28, 57,114, 4, 94, 94, 94,127,152,151, 85, 54,100,248,132,249,121,230,219,182,179,179,179, 79,166, -164, 36,251, 60,182,176,164,143, 66,161, 60, 89,129,161,122,166, 38, 33, 4, 54,155, 13, 81, 81, 81, 56,113,226,132,237,238,221, -187,199, 8, 33,187, 82, 82, 82,174, 58,171,153,151,151,247,237,136, 17, 35, 38,118,237,218,181,249,224,193,131,177,120,241, 98, -217,141, 27, 55, 64, 41, 69,163, 70,141, 80,191,126,125,131,221,110,167, 49, 49, 49,133, 59,119,238,140, 50,155,205,235,157, 77, - 39,165,244, 32,128,131,132, 16, 89, 90, 90,218, 43,121,121,121,237, 69, 81,116,205,200,200, 64,124,124, 60,178,179,179,145,159, -159, 15,135,195,145, 93,153,115, 79, 76, 76, 60,217,180,105, 83,112, 28, 7,147,201,132,164,164, 36, 56, 28, 14,164,164,164, 84, - 58, 63, 57,142, 51,118,235,214,205,199, 98,177, 56,222,122,235, 45,137,209,104, 68, 80, 80, 16, 0,160,160,160, 0,251,246,237, - 67,157, 58,117,202, 34,103, 8, 14, 14,174, 80,147, 82, 58,157, 16,242,163,159,159,223,151,223,124,243, 77,208,217,179,103, 97, -183,219,163, 0,192,110,183, 71, 93,188,120,177, 86,227,198,141,177, 97,195,134,206,229, 25,172,199, 53, 41,165, 57,165,134,237, - 19, 80,144,224,122,245,178,130,130,130,108, 82,169,180, 10, 0,100,100,100,100, 0,152,232,132, 57, 15, 45,103,205,174,169, 91, -183,110,125,239,204,153, 51,173, 62,249,228, 19,210,174, 93, 59, 0, 64, 81, 81,145, 96, 52, 26,139,158, 71,243, 69, 97,154, 76, -147,105, 50,205,255, 5,205,255, 41,131,149,151,151,135,102,205,154,193,110,183,163, 94, 61, 59,242,243,107,194,110,183, 63,154, -252, 43,138, 34, 28, 14, 7, 4, 65, 0,199,113, 78,207,193, 42,195,108, 54,219,158, 92,252,221,108, 54,219, 42, 25, 90,204, 37, -132,204,225, 56, 50, 17, 20,156, 92, 46, 63,183,116,233,210,181, 0,146, 41,165,231, 42, 26,110, 42,143,180,180,180, 76, 0, 19, -170, 85,171,214,232,200,145, 35,163,251,245,235, 87,171,103,207,158,120,248,240, 33, 28, 14, 7,226,226,226,236, 59,119,238,140, -201,205,205,253,145, 82,122,227,121, 50,158, 82,106, 3,112,219,213,213, 21,162, 40,182, 14, 15, 15,247,114, 56, 28,200,204,204, -196,153, 51,103,226, 51, 51, 51, 79, 61, 71, 4, 11, 35, 70,140, 64, 97, 97, 33, 54,111,222,140,253,251,247, 63, 87, 4, 43, 41, - 41,169, 54, 0,232,245,250,116, 55, 55, 55,201,176, 97,195, 96,183,219, 81, 92, 92,140,252,252,124,100,101,101, 89, 63,254,248, - 99, 57, 0,200,229,114,123,151, 46, 93, 36, 78,158,115, 74,139, 22, 45,220,149, 74, 37,142, 31, 63, 46,138,162,120,168,212,212, - 28, 58,121,242,228,232,134, 13, 27,114,222,222,222,117,156,212,250,130, 16,178,220,205,205, 77, 95, 47, 56,120, 17,165, 20, 62, - 62, 62, 85, 95,244,130, 72, 79, 79, 55, 2,152,101, 48, 24,182,126,246,217,103, 31, 52,111,222, 60,228,139, 47,190, 0,165, 37, - 17, 82, 6,131,193, 96, 48, 94,212, 96, 61, 24, 57,114,164,237,241,200,208, 19, 81,142, 63, 69,142, 68, 81, 76,174,164,201,200, - 32,132, 44, 40, 29, 58,194,243, 46,216, 72, 41,157, 73, 8,249, 17, 0,111,182, 88, 94,218, 99,243, 15, 31, 62,188, 68, 8, 25, -182,110,221,186, 14,145,145,145, 19,222,124,243, 77,213,234,213,171,173, 25, 25, 25,243, 1,236,167,148,138, 47,250, 29, 5, 5, - 5,183, 9, 33,169,183,110,221,122, 85, 46,151,171, 4, 65, 48, 26,141,198, 88, 74,105, 97,101,116, 18, 19, 19, 79,234,245,122, -108,223,190, 29, 94, 94, 94,200,206,206,118, 42,130, 85,193, 29, 74,159,141, 27, 55,110, 19, 69, 81,249, 68,217,231,167,164,164, -212, 6, 74, 38,185,239,219,183,239,103, 66, 72,178,147,233,220, 60,106,212,168,119,140, 70,227,111,201,201,201, 57,165,134, 46, -199,223,223,127,225,148, 41, 83, 6,102,102,102,254, 82,137,114, 79, 35,132, 24,239,223,191, 95,144,157,157,237, 42, 8,194, 75, -187, 48,146,147,147,239, 2,248,135,193, 96,104,222,165, 75,151,183, 41,165, 70,214, 92, 48, 24, 12, 6,227,133, 13,214,145, 35, - 71,218,253, 59, 18, 80, 58,116,244, 67,153,225,122, 1,157,204,191, 40,125, 20,192,239,132,144,195,223,125,247, 93,221,226,226, -226,120, 74,105,209, 75,254,142, 2,224,255,216, 59,239,176, 40,174,182,141,223,103,182, 1,203,210,164, 47,189, 40, 42,162, 8, -246,138, 10,182,160,198,168,105,134, 20, 99, 73,179, 36,121, 63, 53,137, 49,198, 68, 77,177,196, 36, 38, 70, 77,162,177, 36,150, - 96, 44,177,163,177,196,134, 5,197, 6, 42,224,178,116, 16, 22, 88,182,204,204,249,254,160,188,104, 40, 11,106, 98,124,207,239, -186,230,218, 54,115,207,153, 51,179,103,238,121, 78,195,158,123,213,209,106,181, 74, 66,200,187, 0,222, 1, 48,143, 82,250,241, - 61,154,140,227, 0, 26, 28, 58, 33, 43, 43, 43, 3, 64, 63, 75, 53, 53, 26,205, 22,220, 53, 5, 80,213,247,241, 0,226,155,145, -119,130,143,143,207,251,211,166, 77, 27, 12, 96,219,253, 62,255,153,153,153, 39, 0,156, 96, 69, 5,131,193, 96,252,227,116, 6, -224, 90,245,190,250,161,215,245,174,247, 70, 0,138, 90,219, 84,127,206, 3,112,170,150, 70,237,239, 27,219, 22, 0,242, 1,156, - 71, 83, 6, 1,127, 24,114,140, 82,154,251,176, 79, 53, 66, 41, 21,202,202,202, 46,222,111,115,245, 0,210,249, 49,165, 84,121, -175,230,234,223,196,173, 91,183, 18, 51, 51, 51,231,102,102,102, 38,177,242,135,193, 96, 48, 30, 93,115, 69, 8,217, 78, 8,217, - 94,101,136, 92,235,120,175,168, 94,167,246,231, 90,198,204,181,142,239, 27,220,150, 16,178,125,230,204,153,253, 0,244,104, 74, -130, 57,118,206, 24, 12, 6,131,193, 96, 60,228,184, 18, 66,182, 83, 74, 99, 41,165,177, 85, 6,168,190, 64, 67,108,237,215,134, -168, 75,167,122, 31,181, 63, 47, 88,176, 96, 30, 0,155,166, 36, 88, 74, 8, 9,171, 39,129, 22,247, 14,168, 79,163,161,223, 26, -211,103,154, 76,147,105, 50, 77,166,201, 52,153,230,163,167,121,191,182,191, 31,212,101,214,170,141, 92,237,207, 51,102,204,120, - 7, 77,168, 30,172, 22,127, 96, 11,128, 48,166,201, 52,153, 38,211,100,154, 76,147,105, 50,205,123, 92, 30,171,180, 44,244,177, -218,239,235,250,174,161,247,141,109,107,193,186, 22,167, 89, 10, 6,131,193, 96, 48, 24,140,135,155,188,218,209,166,170, 8,147, - 48, 99,198,140,119,170,191,171,138, 50, 25, 0, 88,213, 17, 45,171,189, 93, 99,145, 53,139,215,109, 8,102,176, 24, 22, 65, 8, -145, 2,152,236,232,232, 56,198,209,209,209,191,176,176,240,102, 73, 73,201,102, 0, 75, 41,165,230,230,104,182,107, 73,162, 5, - 30,111,139, 34, 36, 18, 41, 22, 94,186, 78,119,177,156,102, 48, 24, 12, 70, 29,156, 2,208,185,150,233,201, 3,144, 52,127,254, -252,162,249,243,231,215,254,238, 28,128,240,170,245,242,234, 48, 74,198,170,207,198, 58,214, 49, 90,178,238, 3, 49, 88,161,190, -100, 60, 68,188, 11, 2, 10,130,121,201, 25,116, 69, 83,182,111, 31, 66,250, 41, 56,233, 50, 10, 42,169, 48, 11, 51,137,128, 58, -199,104,162, 18,244,178,150, 73,230, 19, 16,209, 40,242,175, 36, 93,165, 9, 22,223,180, 91,147, 24, 41,229, 86,137, 34,149,137, - 34, 93,203, 1,191, 43,141, 56,254,167,134, 86, 52,247,172,250,250, 18, 71, 34, 98,136, 92, 42,237,100,226,249,211,148,195,239, - 25, 25,244,246,195,116,229,141, 9, 37,114,169,143,205,231,182, 86,230,104,137, 68,112, 18, 68, 73, 81,121,133,108,191,249,150, -254,173,141,201,212,226,193, 91, 9, 33, 50, 0,147,109,109,109, 71, 41,149,202,128,210,210,210, 27,122,189,254, 87,133, 66, 49, - 96,233,210,165,222,221,187,119, 87,229,229,229, 17,142,227,220,126,251,237,183,177, 95,125,245, 85, 52, 33,228, 49, 74, 41,223, -212, 52, 11, 60,254,115,121,199, 43, 61, 0, 32, 32,250,155,119, 8, 33,123,154, 58,182, 88,135, 96,210, 86, 16, 48,177,177,245, - 36, 18, 44, 63,159,218,188, 65, 97,219, 6,146,111, 8,208, 18, 20,241, 18, 14, 27,147,174,179, 49,177, 24, 12, 6,227, 31, 50, - 89,119,115,210,194,245,254,118,154,100,176, 8,197,236,139, 41,183, 28, 33,154,208, 46, 36,232,125, 0, 77, 50, 88, 10,137,100, -197,169,115,217,238,160, 38,172, 88,244,234,106,163, 25,224,121, 19, 68,222, 12,158, 55,131,231, 77, 16, 4, 51, 68,190, 2,179, - 23, 31, 4,120, 29, 58,117,108,181, 2, 64,160,165,251,144,137,220,170, 51,199,246, 56, 17,190, 24, 63,255, 56,255,149,116,109, -233, 43,251, 79,106, 11, 66,253,201,251,151,210,241,147,165, 55,112, 63, 63,226, 65, 41,134,249,170, 93, 71, 77,159,244,100,215, - 65,253,122,113,190,126, 1,200, 72,191, 57,126,119,194, 17,177,119,119,183, 19, 25,218,188,205,132, 96, 91,122, 58,205,190,151, -147,224,234, 72, 58,216,219,218,124, 35,147,115,182, 50,137, 36, 37,175,168,228,147,236, 2,106,241, 5, 50, 38,148,200, 85,129, -242,227,253,134, 62,239,212,187,255,139,130,141, 82,165,211,220, 72, 52,238,218,182, 48,230,186,252,242,137, 49,161,164,171, 37, - 38,139, 16, 34, 37,132,108,159, 61,123,182, 71,175, 94,189,236, 10, 10, 10,192,243,124,139, 45, 91,182, 76,234,220,185,179,202, -203,203, 75,177,102,205, 26,148,150,150, 66, 16, 4,167,160,160, 32,167,167,158,122,138, 95,187,118,237,100, 0,139, 26,210,246, -247, 39, 86,182, 4,246,119, 24, 44, 17, 53, 3,152,154,121, 40,131,212,240,108, 23, 64,204, 0,160, 48,162, 52, 81, 75, 27, 29, -133, 95, 16, 48,241,236,233,132,113,252,237, 83,128, 96, 2,133, 25, 16, 77, 0, 53,131,138, 38, 64, 52,131, 82, 19,186, 61,254, - 3, 0, 76,110,206,249, 33, 4, 3,246,239, 63,229,145,147,157, 21,185,120,241,188,183, 67, 3,200, 30, 78,130,245, 23,175,227, -200,253, 24,108,150,193, 96,252,243, 12, 24, 48, 96, 85,105,105,233, 39, 39, 79,158, 76,185, 95,154, 30, 30, 30,109, 56,142, 75, -111,206,140, 34,181,137,136,136,152, 10,224,133,170,143, 63,158, 57,115,102,201,189,166,173,107,215,174, 94,148, 82,247,170,178, - 63,231,196,137, 19,153,236, 42,248, 7, 13, 22, 5,172, 64, 69,224,232,227,160, 4,214, 77,221, 25,165,176, 6,145, 0,230, 82, -140,136,141,134,139,179, 39, 32,148, 1,130, 30,224,203, 1,161,114,201,207, 75, 7,248, 50, 32,239,119,240,148, 90, 53,249,168, -204,197, 64,238, 70, 12,236,238, 11, 71, 59,107, 76,121, 58,212,249,187,248,171,203, 86,198, 95,233, 7,224,249,198, 54,247,246, - 38, 75,102, 76, 26,241,242,192,152, 88,226, 31, 20,134,194, 60, 13, 78,158,250,243,246,226,239, 54, 93,138,233,219,169,237,168, -145, 79, 58, 78,156,244,118,247,244,235, 23,186, 31, 60,176,117,145,175,154, 44,205,208,210,153,205,138,142,121,202, 39, 14,140, -142,158,251,205,119, 63, 42,109, 84,206, 40, 41,204, 8,120,238,217,145,225, 30, 45, 72,108,118,161,101, 17, 23,153,143,205,194, -232,216,151, 90,140,126,225,115, 59,179,169,212,164,189,182,235,146,173, 13,207, 61,245,244,148,226, 31, 87,188,239,113,221, 84, -184, 16,192, 27, 22, 72, 77,158, 61,123,182, 71, 80, 80,144,239,186,117,235, 80, 90, 90, 10, 0,110, 45, 91,182, 68,203,150, 45, -133, 67,135, 14, 33, 36, 36, 4,118,118,118, 56,120,240, 32,142, 31, 63,142,142, 29, 59, 42,229,114,249,168,134, 12, 86,219, 96, - 50,230,241,126,157,190, 10,244,243, 82, 86, 54,254, 19, 65,169,136,210, 82, 3, 94,157,151,136,162,146, 10, 12, 29, 16,209,202, -223,203,238, 26, 7, 17,148, 2,105,218, 28,161, 77, 32,121,250,242, 13,186,179,177,200, 84,199,206,253,122,156, 75,252, 51,196, -148,187, 29, 93,134,206,191, 10,138, 99,255,117, 71,232,145,120,232,135, 16,224,135,102,253, 65, 8, 33, 36, 52, 0, 66,198,159, -159,192, 59, 98,188,100,249, 15,187, 92,138, 11, 50,159,221,178,241,155,199,151, 45,255,246,231,230,154, 54, 6,131,241,208, 49, -200,209,209, 49,170, 75,151, 46,131,238,151,201,146,201,100, 54,130, 32,180, 82,171,213,215,154,107,178,166, 76,153,242, 26, 33, -228,227,196,196, 68, 0, 64,100,100,228,199,145,145,145,117,142,115,104,111,111, 95, 22, 26, 26,250,225, 23, 95,124,241,117, 67, -154,211,167, 79,247, 52,155,205,254,103,206,156,169, 54,112,254, 17, 17, 17,254,117,173,107,107,107, 43,116,237,218, 53,253,147, - 79, 62,201, 98,151,200,131,140, 96, 1, 87,179, 15, 79, 13, 55, 22,150,131, 0, 87, 27, 55, 84,119,118,181,172, 48, 11,159,255, -184,228,249,185,237, 66,156, 80,162, 51, 98,239,225, 52,152,121, 19, 68,158,135, 32,152, 33, 84,189, 14,234,238,130, 30,252, 36, - 44,221,112, 5,102, 94,252,172, 33,205,191, 68, 52, 32,190,208,177,239,147, 63, 9,148,202,109,173,185,146, 32, 95,103,215,183, -159, 11,231,166, 60,221, 14,250, 10,126, 84, 91,127,114,232, 82, 26,253,161, 33,205,118, 1, 78, 47,189, 58,126, 60, 17,149,237, -112,250,248, 78, 76,254,191,119, 83,243, 11,138,230,167,107,112,102,219,254, 63,252,124,221,157,103, 47,153,247,110,199,144,240, -193, 24,204,233,241,199,145,195, 47, 0,152,217,148,116,186,187, 19,165,104,192,208,174, 93, 58,125,184,122,195,118, 37, 87,122, - 22,200, 88, 11, 71,199,238, 88,190,244, 19,183,225, 35,199, 44, 2, 48,208, 18, 77, 91, 43,115,116,239, 1, 47,192,108, 42, 53, -153, 13, 58,131,190, 40,217, 36,148,231,154, 56, 25, 39,237,220,161,109,110, 78, 78, 66,140, 37,231,200,214,214,118,116,143, 30, - 61, 84,107,215,174, 69,100,100, 36, 28, 29, 29,113,224,192, 1,156, 63,127, 30, 5, 5, 5, 28,165, 20, 42,149, 10, 11, 22, 44, -128,143,143, 15, 74, 74, 74,144,158,158,238, 36,147,201, 90, 52,148, 78, 43,169, 52,238,243, 79, 62, 81,114, 28, 0,145, 7,232, -127, 23,109,118, 46,202,202,244,112, 84,201,225,218,194,166,230,123,222,108,148,116, 26,242,159, 73, 0,118, 54,116,236,231, 83, -233,165,118, 1,228, 24, 40, 31, 66, 5, 61, 64,113,236,226, 77, 90, 99,122, 58, 4,147,182,145,125, 94,156, 40,145, 96,121, 99, -215,103, 93,132, 6, 96, 72,231, 54, 42, 91, 27,243, 37,104, 18, 38, 35, 85,176,162,238,237,199,225,233,103, 95, 83, 46, 95,177, -124, 40, 33,100, 10,173, 53, 9,231,131,232, 94,204, 52,153,230,163,160, 57,102,204, 24, 9, 0,108,220,184, 81,120, 24,211, 41, -149, 74, 77,223,126,251,173,219,164, 73,147,118, 91,106,178, 26,189, 31, 85,206,223,117, 13,128,197, 38,235,110,205,212,212,212, -249,243,231,207,199, 47,191,252, 2, 0, 88,183,110, 29, 90,181,106, 85,231,182,231,207,159,183,125,231,157,119,230, 3,248,186, - 33,205, 11, 23, 46, 4,204,155, 55, 15, 63,255, 92, 57, 51,217, 79, 63,253,132, 54,109,218,212,169,121,246,236, 89,201,187,239, -190, 27, 0, 32,235, 65,159,163, 71,214, 96, 17, 66, 40,165,148, 52,178,254, 13, 15, 59, 89, 56,204,102, 0,184,209,212,157, 37, -167,210, 69, 29, 67,100, 49,251,182,124,221,203, 90,193,225,131,197,111,105, 10, 10,116, 81, 18, 14, 34, 0, 8, 34, 56, 7, 59, - 69,194,252, 55,194,125,138,138, 43,176,237, 80,230,145,228, 27,180, 73,161,208,164,107,244, 0, 0,207,154, 27,108, 32,105, 25, -247,238,190,213, 63,127, 50, 40,108,218,216, 14,136, 63,152,246, 6, 26, 9,103,168,148,114, 9,201,222,140, 34,225, 60,186,118, - 29,134,147, 39,111, 6,159, 59, 30,255,253,134, 13,107,132,231,159, 30, 37,105, 21, 57, 26,229, 5,151,145,254,231, 60,232,210, -247,193, 94, 41,149, 89,154, 62, 87, 71,210,193,198,198,230, 53, 95, 15,191,216,233, 51,167, 75, 99, 99,159,178,230,202, 46,128, -102,109,132,104, 42,133, 88,118, 11, 45, 84, 93, 64, 8,220, 45,126, 74, 82, 72, 28, 85, 42, 71, 83,230,197,117,151, 77,165, 55, - 76,208,103, 11,180, 92, 75,136, 66, 70,189,221, 60, 32,225,120, 7, 75,116,108,108,108, 2,114,115,115,161,211,233,224,224,224, -128,197,139, 23,195,205,205, 13,122,189, 30, 87,174, 92,161,222,222,222, 36, 33, 33, 1, 94, 94, 94, 40, 42, 42,130,209,104, 68, -121,121,121,142,209,104,108,176,208,168, 48,241,223,188,249,246,155,189,253,188,221, 37,213, 17, 44, 81, 20, 17,222, 46, 16,253, -251,116,195,222,139,167, 16,127, 62, 5, 34, 21, 81,253,123,154, 38,191,204, 36, 10, 63, 89, 92,120,138,124,101, 36,180, 14, 3, -214,156, 40, 83,251,246, 68, 41,148, 98, 70,215, 80,187,231,103, 62,231,171, 82, 89,113,168,176, 22, 80, 97, 52, 67,119,121, 25, -156,125, 58, 64,105,109, 77, 34, 34,244, 82, 0,102, 86,148, 48, 24,127,165, 83,167, 78,157,149, 74,229, 84, 0,125, 13, 6,131, -157, 40,138,232,221,187,183,142,227,184, 67,229,229,229, 75, 78,159, 62,221,220,182, 50,213,247, 42,122, 63,211,235,231,231,135, -166,154,172,198,208,106,181,122,181, 90,221, 36,147, 85,155,188,188, 60, 73, 72, 72, 8,244,122, 61, 68, 81, 68, 89, 89, 25,226, -227,227, 81, 82, 82, 2, 81, 20, 97, 99, 99,131, 37,251, 12, 40,187,184, 22,107,191,251, 28,121,121,121, 18, 11, 52, 73,155, 54, -109, 80, 81, 81, 1,158,231, 97, 48, 24,176,103,207, 30, 24, 12, 6,152,205,102,200,100, 50,204,219,122, 27,134, 11,107,241,195, -138, 79,145,151,151, 71, 30,244,181, 98,161, 7,249,247, 25,172,234, 3,251, 59, 14, 80, 16,249,217,223,253,184, 62, 97,230, 27, - 79,227,245,184, 1,222,115,190,248,181,223,197, 27,116, 29, 0,180, 13, 36,207, 62,247, 88, 75, 31, 71, 91, 25,230, 44, 63, 13, - 16, 58,251, 94,247,119,254, 6, 77,105,223,138,252,223,175, 7,211,119,191, 51, 46, 2,193,222,246,193,193,193, 68,145,154, 74, - 27, 25, 48,140,226,245,247,190, 4,111, 94, 98,126,123,210, 19,178,174,253,158, 71,120,143, 93,146,194,155,187,112,122,203, 56, -252,240,235,159,229, 50, 41,172,227,250,200, 44, 30, 13,223,197,129, 68,116,235,214,125,247,242,239, 86, 90,187,171,131, 9, 49, -231, 1, 37,135,192,103,239,129, 65,159, 15,163, 94, 7,147,104,135,226,140, 3,176, 82, 80,139,255,216,102,163, 88,112, 59,255, -186,141, 68,188, 77,218,180,109,209, 11, 69, 7, 0,167, 49, 72, 59,123,244,212,205, 92,173,157, 32, 74, 11, 45,209, 41, 45, 45, -189, 97, 54,155,157, 1,184,238,223,191, 31, 21,219,161,237, 0, 0, 32, 0, 73, 68, 65, 84,174,174,174,208,233,116, 48,153, 76, -208,235,245,102, 39, 39, 39, 69, 65, 65, 1, 12, 6, 3, 12, 6, 3,236,237,237,113,250,244,233, 82,158,231, 27,156, 67,240,242, - 13,186, 51, 82, 77,220, 15, 40,160,170,254, 78, 34,129, 51,111, 50,158,234,223,179, 61, 18,207, 93,193,198,237, 39, 58, 11, 2, - 10,170,127, 47,163, 40, 73, 75,163, 6,203, 31, 79,121, 80,225,191,253, 24,170, 27,191, 55,167,113,123,104, 32,233,100,101, 37, - 91,184,224,157,199,218,244, 13, 21,172, 72, 69, 22, 8, 0,165,181, 20, 6,163, 0, 7,207, 96, 80,163,142,234, 43, 42,138, 47, - 92, 0, 15, 6,131,241,151,104, 85,110,110,238, 82, 39, 39,167, 81,113,113,113, 54,125,251,246,229, 56,142,195,226,197,139,145, -157,157,109, 63,104,208,160,216, 53,107,214,244,239,211,167,207,102, 55, 55,183,201,150, 68,181,106,221,179,100, 0,170, 77, 4, -189,126,253, 58, 63,120,240, 96, 92,191,126,157,171, 50, 94, 34, 0, 83,115,219, 71, 62,140, 38, 43, 43, 43, 11,121,121,121,136, - 25, 54, 12, 75, 22, 44, 64,159, 62,125, 16, 29, 29, 13, 0,216,183,111, 31,186,170, 78,160, 69,108, 31, 92,186,100,121, 81,119, -235,214, 45, 20, 20, 20, 96,232,136, 17, 88,177,108, 25, 34, 34, 34,208,186,117,107, 0, 64, 66, 66, 2,250,123,164, 64,213,178, - 63, 46, 95,190,252,192,175,151,191,211,131,252, 35, 17,172,191,139,164, 20,122, 50, 52,144,252,254,244, 99, 93,134, 12,235, 31, -138,149, 27,246,127, 16, 26, 74, 54, 85, 26, 16,171,217,113,143, 5, 33,249,122, 17,246,159,208,254,158,124,131,158,188, 31,251, -228,121,248,184, 59,171, 0, 78,129, 50, 35,207,219,219,195,226, 63, 94, 82, 90,126,203, 39,167,124, 59,126,234,147,127,190, 51, -229,217, 48,172,221,112, 22,139,126,185,252, 31,147, 9,171, 71,245,110,145, 1, 88,222, 22,205, 78,105,243,202,242,239, 86, 90, -123, 56,203, 9,210,151, 64,208,107, 32, 84, 20,192,100,184,141,146,226,219,208,100,229,163,168, 92,138,244, 28,162,207,204, 54, -174,181, 84,183,184, 92,250,219,182, 77,159, 61, 63,122, 84,156,243,181,147,223, 29,223,122, 64,239,250,116,204,239,101, 10, 91, - 63,199, 67, 39,247, 57, 21,235,165,223, 91,162, 83, 81, 81,177,249,247,223,127,127,202,207,207,207, 53, 41, 41, 9, 21, 21, 21, - 16, 69, 17, 67,134, 12, 1,106, 77,128,121,249,242,229, 10,189, 94,159,123,241,226,197,210,140,140,140,114, 0, 75, 27,211,174, -106,176, 94, 83,168,180, 13, 32, 99, 66, 67, 60, 1, 65,143,182, 45, 61, 96, 22,208,239,210, 77,250,101,179, 79, 50, 53, 87, 70, -176, 8,122,180, 11, 32, 75, 65,208,227,244,129,197, 33,157,250, 79, 67, 83, 34, 88,161,193,100, 96, 88,136,122,249,226,121, 51, -157, 90,184,250, 72, 32,232, 65,248, 18, 42, 22, 30,135,180,236, 26,236,189, 31,131,224,208, 3,203,191, 94, 88, 38, 8,116, 99, -237,234, 65, 6,131, 81, 99, 40,222, 11, 9, 9, 25,253,229,151, 95, 42,207,157, 59,135,178,178, 50,156, 56,113, 2,159,125,246, - 25, 70,141, 26, 5,111,111,111, 46, 62, 62,222,246,141, 55,222, 24,125,245,234,213, 60, 0,115, 26,185, 1,187, 56, 59, 59, 59, -230,231,231,107, 1,200,171, 76, 22, 73, 75, 75, 67, 66, 66, 2, 23, 30, 30, 78,115,115,115,249, 41, 83,166, 56,150,150,150,118, -248,226,139, 47,142, 0,200,121, 84, 34, 89,155, 55,111,198,217,179,103, 49, 59, 60, 28,211, 60, 61,225,236,236,140, 67,135, 14, -129, 82, 10, 91, 91, 91, 20, 22, 22,226,231,159,127, 70, 84, 84,148,197,233,249,237,183,223,112,234,212, 41,124,216,177, 35,222, -176,182,134,131,131, 3, 18, 18, 42, 59,236, 91, 89, 89, 65,163,209,224,192,129, 3,232,211,167, 15,187,160,155,137,197,209,151, - 40, 66,164,132,192,221,108,214,195,196, 83, 16, 2,207,208, 80, 34,111,150,171,227,240,193,210,239,183, 83, 43,137, 9,227, 71, - 71,122, 66,143,241,208, 99,252,184, 17, 33,106,165,149, 20, 95,108, 72,166, 82, 14, 31,220,143, 3,108, 31, 64, 90,181,176,183, -126,255,177,168,118,200,200,209,227,198,173,146,221,137,137,150,143,219,116,227, 6,138, 52, 90, 44, 41, 53,242,144, 72,164, 40, -214, 83,104, 52,248, 62, 55, 23,134,166,166, 69, 34, 37, 3,221,213,193,132,230,196,195,112,251, 10,202,110,107, 80, 80,160,129, -174,184, 0,101,229, 58,232,116,229,200,202,212, 98,215,159,218, 34,190, 66, 56, 98,169,238, 47,123,202,223, 57,115,230,200,149, -147,199,247,216,218,187,118,112, 10,245,183, 18,109,237,212,118,135, 78, 36, 59,104,115, 43, 46,255,178,171,220,210,188, 92,186, -121,243,230,162, 51,103,206, 92,246,246,246,206,112,112,112,160,132, 16,100,101,101,221,177,156, 62,125,218,106,215,174, 93,229, - 25, 25, 25, 91, 1,196, 54,117,136,134, 14,193,164,109,255,238,173,230, 14,141, 10, 3, 4, 61, 98,163,218,162, 79,231,128,185, - 29,130, 73,219,102,251, 43, 90, 89, 69,120,108, 93,255,144, 99,107,123,141, 59,186,186,107,136, 49,243,167, 38,235, 16, 17,111, - 76,123,202,223,190,133,141,145, 35, 66, 41,136,204, 1, 80, 6, 19,206,251, 89, 34,139, 88, 77, 50,202,253,132,209,207, 62,157, -183,226,167,237,223,184,136, 88,194,138, 16, 6,163,142, 27, 11,199,141, 27, 59,118,172,210,198,198, 6,214,214,214, 88,179,102, - 13, 94,121,229, 21, 88, 89, 85,246, 89, 82, 42,149,176,177,177,193,216,177, 99,149,132,144,151, 44,144, 44, 44, 41, 41, 81,141, - 28, 57,210, 7,128, 18,128,173,209,104, 84,229,231,231,219,115, 28,231,208,174, 93, 59,183,217,179,103,135,148,150,150,118,216, -182,109, 91, 46,128,252,230,164,187,184,184, 24,215,175, 95,199,206,157, 59, 49,113,226,196, 50,158,231, 21, 42,149,106,250, 61, - 70,103,100,238,238,238, 74,181, 90,237, 76, 41,109, 77, 41,229, 40,165,190,205,209, 18, 4, 1,157, 58,117,194,190, 63, 78, 97, -249,198,163, 88,248,245,106,100,100,100,160, 77,155, 54, 16,197,230,119,104,238,220,185, 51, 14, 28, 56,140,181, 91, 79,226,179, -197,223, 64,163,209,212,219, 38,139,209,196, 8, 86, 99,161,185,208, 0,210,222, 61,204,106,229,187,195,131,218, 72,219,125, 0, - 34,181,193,150, 31,182,117,159, 57,255,219, 51, 29,188,201,184,243, 26,218,164,122,244,243,169,244, 82,187, 64,178,241, 92,114, -155, 39,135,247,241,193,138,141,202, 25, 0,240,100, 76, 32, 78, 38,231,225,196,133,220,141, 23,111, 52,111,204,162,106,218, 4, -146, 96,142,226,249,182, 65,238, 19, 22,207, 26,173,116,117, 81, 98,222, 55,167, 33, 2,107, 45,191,152, 1, 0,222, 0,138,255, - 27,167, 32,213,209, 28, 71, 65, 68,147, 66,153, 28,161,123,178,211,207, 61,229,204,181, 32,165, 37,249,200,214,222,130,174,164, - 20,142,246, 50, 56, 40, 37, 80,123,186, 65,233,224, 13, 81,154,231,120,229, 70,105, 23, 0, 22, 15,188, 89, 98,150,191,122,244, -232,222, 35, 61,195, 39, 84,180, 13,144,241, 82,153,196,250, 84,114,154,149, 78, 47,127,195, 82, 13, 74, 41, 79, 8,137, 61,124, -248,240,228, 99,199,142,141,244,244,244, 36,113,113,113, 24, 60,120, 48,172,172,172,160,215,235, 81, 84, 84,132, 29, 59,118, 16, -158,231,123, 0,128,167,167,167,175,191,191,255, 15,132,144,204,155, 55,111,198, 89,178, 31,133, 66,177,240,253,201, 67,101,188, -169, 20,115,150,238,192,251,175, 71, 99,246,235, 81,178,216,137,153, 11, 1, 12,106,214, 9, 23,121,136, 66, 5,122, 60,247, 71, -101, 47, 66,130, 30,167,118,127, 20, 2,156,181, 88, 34, 50,146,200, 36, 82,210,186,173,151, 65, 38,100,110, 0,177,246,162, 18, -231,190,128, 42,132, 80, 85, 24,190,250,226,253,178,149, 43, 87,238,163, 28,230, 37,167,209,203,172,248, 96, 48,234,166,172,172, -108,210,135, 31,126,184, 58, 56, 56,216, 38, 44, 44, 12,203,150, 45,195,208,161, 67,107,204, 85,251,246,237,113,235,214, 45,204, -153, 51,167,162,188,188,252, 21, 11,202, 38,145, 16,114, 41, 33, 33,161, 77,108,108,172,103,159, 62,125, 72,219,182,109,101, 86, - 86, 86,162,193, 96,176,205,202,202,178,186,124,249, 50, 78,159, 62,125,189,162,162, 34,137, 82, 42, 52, 39,221,115,230,204, 41, -115,113,113,177,157, 58,117, 42, 62,253,244,211,204, 63,254,248, 35,226, 94,243,194,211,211, 51,128,227, 56, 49, 51, 51,243,166, -151,151,151,167, 70,163,105, 86,227,240,234, 96,249,249,243,231,113, 56, 69,132,194,214, 9,105,151, 75,176,239,183,173, 24, 59, - 97, 34,120,190,249,173, 21,206,158, 61,139,117,123, 46,195, 35,160, 13, 42, 46,159,197,230,205,155,241,202, 43,175,220,147,102, - 19,143,141, 60,178,109,176,170, 15,240,238, 31,131,131,137, 66, 97,192, 59,131,186,123, 77, 27, 61, 32, 88,194,151,103, 65, 20, - 69, 72, 0,184,216,113,248,254,187,229, 1, 27,127,253, 61,161,189,175,100, 25,140,226,156,164, 28, 90,110,177,171,151,226,163, - 69, 63, 30,125,226,167,185,125,165,175,140,105,227, 4, 0,114, 25,135,165,235, 47,242, 68,138,143,154, 24,165,234, 37,149,113, -235,204,148,218, 80,129,102,120,121, 56,217, 62, 49, 48,210,235,241,129,157,208,161,173, 47, 68,222,132, 15,191,142,199,198,157, -231,191,190,124,179,225,110,255,119,152,180, 0, 71,156, 82,231,188,205, 73,241, 17,169,101,175,220,221, 33,151, 75, 49,181,149, -143,181, 2, 77,104,130,163, 43,215,127, 51,115,250,212,232,119, 95, 31,222,194,164, 83,146,107,105, 69,128, 80, 1, 91, 27, 21, - 84, 30,189,225,104,223, 18, 21, 37, 89,144, 75, 19,149,238, 46,154, 49, 77, 49, 88,191,238,212,165,188, 30,215, 90,242,193,151, -167, 92,140,229,160,188, 41,145, 43,175, 32,116,243,222,146,212, 38, 94,232,102,111,111,239,137,162, 40,186,242, 60,111,114,117, -117,149,255,242,203, 47,176,182,182, 6,199,113, 8, 15, 15,135,181,181,181, 81,173, 86, 23, 3,128,155,155,155,121,209,162, 69, -210,113,227,198, 89, 20,205, 12, 13, 36, 62, 35, 7,182,235,233,108, 47,193,234, 95,143, 97,235,190, 75, 91, 3,188,108, 71,188, - 52,162, 29,162,186,120,245, 12, 13, 36, 62,201, 55,232,173,166,255, 67,205,168,221,139,176, 67, 48,105,219,121,224,123,117,246, - 30,172,143,128, 51, 16,175, 6, 81, 16, 34, 1, 5, 1, 42, 50,193,107,214, 66, 18,248, 6,253, 53,254, 35,253,138,239, 86,206, - 79, 78,163, 44,106,197, 96, 52,194,185,115,231,126,239,210,165,203,140,184,184,184, 5,113,113,113,138, 23, 94,120, 65,114,252, -248,113,136,162,136, 78,157, 58, 97,229,202,149,252,134, 13, 27,204, 6,131, 97,250,185,115,231,126,183,176,108, 50, 16, 66,206, -237,216,177,163,197,165, 75,151, 90,200,100, 50, 23, 81, 20, 29,203,203,203,243,141, 70, 99, 65, 81, 81, 81, 46,128,162,230, 86, -219, 87, 84, 84, 88, 95,186,116,233,132,201,100, 82, 79,157, 58,181,117,116,116,116, 72,100,100,100,151,196,196,196,102, 55, 85, -225, 56, 78, 46,138,162,158, 82,106, 83,189, 27, 87, 87, 87,219,188,188,188,178,230,232, 73, 36, 18, 20, 21, 21, 65,151,153,138, -242,252,124,180,150,148,163, 99, 11, 87,216,217,217,193,108,110,126, 95,155,210,210, 82, 88,241, 26,220, 60,117, 19,249,249,105, -104, 25,208, 17,182,182,182, 48, 24, 12,127,219, 53,243,168,153,171, 59, 12,214, 95,110,132,190,100,188,147, 28,159,190, 48, 38, - 80, 30,232,239, 5, 99,222,105,156, 77, 45,195,123,171,186, 92,150,200,237, 12,175, 63, 31,211,177, 95,180, 43,250, 70,117, 38, -254,126,239,189,182, 96,193, 55, 19, 67,125,200, 59,201,183,232,215,150,236,248,194, 53,122,179,109, 0,249, 49,225, 84,230,203, -222, 46,122, 80, 80, 36,156,206,194,249,148,162, 31, 47,221,164, 55,155,116,209,201,185, 53,103, 18,147, 90,128,215, 35, 59,245, -247, 16, 15, 15,127,128,154, 97, 54,234,113,252,204, 5,172,252, 57,129, 63,117, 62,237,255, 46,165, 81,139,110,182, 41, 25,183, -247,165,106,138,163, 63,156,212, 5, 67,122,250,190, 48,127, 85,226,211, 53,157, 85, 40,197,224, 78,142,151,198,246,179, 83,218, - 72,141,224,161, 64,226,181,226,189,150,232,102,229,211, 51,158, 46,228,137,243,231,207,189,232,229,225, 16, 61,164,179,141,139, -171, 61,228,118, 46,254, 80,216,182,128,200,151,162,188,240, 42,168, 80, 1, 2, 49,176, 41,121,224,227,227,211,107,234,212,169, -214, 19, 39, 78, 68,105,105, 41, 86,175, 94,141,101,203,150,193,199,199,167,215,173, 91,183,142, 52, 69, 75, 20, 69,215,109,219, -182, 1,149,109, 29,176,127,255,126,168,213,106, 56, 56, 56, 64,167,211, 33, 46, 46, 78, 49,107,214, 44, 0,192,153, 51,103,100, - 54, 54, 54, 77,248, 19, 97,204,224,158,129, 4,130, 30,155,118, 93, 44,128, 53, 94,220,178,247, 74,207,151,134, 5, 58, 15,233, -230, 73,118, 28,186, 57, 6,192,231, 77,255,115, 10,128,168,191, 35, 74,138, 38,246, 30,220, 72,169, 16, 26, 72,174,111,216,155, -103, 59,122,104,132,141, 92,198, 17, 90,161,129, 72,228,100,201,178,239, 75,109,165,248, 30, 12, 6,195, 34, 78,158, 60,185,170, - 91,183,110,127,254,240,195, 15,111,113, 28,215,211, 96, 48,184, 2, 16,247,236,217,147, 45, 8,194, 97,189, 94,191,244,244,233, -211,215,154,120, 19,166, 0, 10,170,150,107,247, 51,189, 82,169,244,231,146,146,146,185,130, 32,140,222,189,123,247,194,145, 35, - 71,226,183,223,126,123, 9,117,143, 20,110,105, 89, 90,146,149,149,117,211,219,219,219,197,207,207,207,165,172,172, 44,199,202, -202,202, 3, 64,106,115,244,172,172,172,112,248,240, 97, 12,233,213, 27,231,246,165,163,141,187, 15,250,141,125, 30,241, 9, 9, -144, 72, 36,205, 61,110, 28, 62,124, 24, 79, 12,237,135, 45, 91,182, 32, 32, 34, 12,175,191,254, 58,246,236,217, 3,169,148,205, -166,247, 64, 12, 22, 17, 49,107,239,207,243,228, 16,205,216,180,238, 83,236, 59, 85,110,188,172,193, 7,173, 51,241,245, 38,232, -196,156,130,205, 47,119, 61,116,253,227,151, 94,136, 85,246,239, 27,131,254,125,250, 73,219,133,247,157,129, 90,227,111, 16, 66, -194, 26, 26, 43,131,138, 88,176, 98,243,229,113, 27,118, 94, 37,224,117,120,122,120,103, 74, 69, 44,104, 48,242, 85,159, 38,175, - 7,138, 79, 96,251,190, 99, 80,187,103,226,218,141,116,108,217,121,226, 86,177,174,252, 39, 66,176,246, 82, 90,253, 81,145,187, - 53, 11,116,198,215, 6,191,177,253,171, 39, 99,130, 98,166, 61,211, 1, 91, 23, 61,166,184,161, 45,134, 32,240,136,233, 64, 65, -218, 40,148, 34, 4, 28, 75,149,210, 21,219, 51,227, 75,141,194, 52, 75,211,153,149, 79, 19, 1, 36, 6, 58, 17,251,139, 41, 24, - 50,178,183,219,199,221, 34, 4,183,210,156, 68,100,101,164,224,182,222, 26,154, 2, 2, 80, 92,183,248,216, 1,220,186,117,235, - 72,231,206,157, 1, 0,122,189, 30, 26,141, 6, 60,207, 67,171,213, 30,105,106,126,114, 28,151, 55,116,232, 80, 87,131,193,192, - 63,243,204, 51,210,252,252,124,132,132,132, 84, 70,225,116, 58,252,254,251,239, 53,189, 77, 46, 94,188,136,208,208, 80,139,211, -233,234,104, 51,182, 83,104, 11, 92,188,154,129,116,109,201,250,228, 27,212, 20, 26, 72,214,159,191,146, 51,185, 71, 71, 55,180, -176, 87,140,173,203, 96,213,167,217, 33,152,180, 5, 65, 15,136,230,202, 94,132, 4, 61, 58, 4,147,182,150,244, 28,172, 75, 83, - 42,197, 75, 11,127, 78,155,190,241, 80, 94,236,255,189,220,219,174,103,247, 33, 10,136,102, 90, 90,110, 48, 95,188, 65,117,205, -209,188, 87,152, 38,211,252,183,106, 30, 63,126,252, 10,128,151,255, 13,199,126,224,192,129,169, 0, 16, 25, 25,185, 97,203,150, - 45,243, 86,175, 94,173, 80,169, 84,157,239, 69, 83,171,213, 94,173, 90, 47, 79,173, 86,183, 45, 40, 40,184,224,237,237,173,104, -138,166, 76, 38,203,235,208,161,131,235,227,143, 63, 14,158,231,145,146,146,130,244,244,116, 12,123,233, 69, 56, 57, 57,225, 68, -114, 50, 82, 82, 82,240,254,251,239,195, 96, 48,224,230,205,155,121,141,105,202,229,114, 83, 88, 88,152,124,248,240,225,224,121, - 30,169,169,169,184,117,235, 22,222,120,227, 13, 56, 56, 56,224,202,149, 43, 72, 77, 77,197,172, 89,179, 96, 48, 24,144,158,158, -110,250, 59,206,209,255,140,193,162, 4, 2, 68, 51,138, 79,205,198,183,219, 97, 50, 11,136,184,168,161,105,181, 86, 89,209,209, -135,236, 60,127,225,114,114,226,137,254, 10,148, 36,129, 2, 77,170,247,190,156, 78,179, 59,183,145,150,130,215,217, 33,239,119, -220,208,234,202, 46, 55, 99,218, 25,193, 36,198,117,236,210,109,189, 8, 42, 23, 5,186,145, 7, 14, 72, 41,110, 92,188,137,228, -230,132,139, 53, 26,170, 5,240,184,191, 55,233,179,237,112,218,130,113,195,218,132,189, 50,186, 29,202,203,116,144,209, 10, 92, -200, 86,224,171,223,114, 78, 21,232,140,255,185,117,139, 38, 54, 39,227,111, 20,209, 18, 0, 27,218,248, 75,169, 78,127,241,221, - 39,250,249, 5, 16,184, 32, 39,175, 24,155, 19,178,142,107, 11, 27,238, 85, 83, 79, 4, 11,147, 38, 77,130, 78,167,195,134, 13, - 27,176,123,247,238,102, 69,176, 52, 26, 77, 75, 0, 80,171,213, 57,118,118,118,210, 23, 95,124,177,122,168, 6,148,148,148,160, -160,160,192, 56,117,234, 84, 5, 0, 40, 20, 10,243,224,193,131, 45,126,204,105,233,231,224, 37,133, 1,241,251,175, 2, 82,252, - 92,117, 21,254,188,245, 96,250,228, 14,173, 90,160,165,175,125, 80,164,154,216, 88, 50, 77, 14, 80, 57, 85,206,169, 93,115, 66, - 42,174,205, 2,165,102, 28, 94,230, 20,210,251,149,162,137,104,230, 8,235,231,175, 81, 45,128,201,161, 1,100,213,148,143,119, -205,232, 20,150,220,227,237, 73, 35,236, 40, 97, 19,163, 51, 24,255, 11, 36, 38, 38,150,132,135,135,191,216,191,127,255,105,165, -165,165,139,238,135, 38,165,148,247,240,240,200,242,240,240, 8, 49,153, 76, 77,154,203,212,100, 50,189,241,213, 87, 95,125,105, - 54,155, 93,171,191, 51, 24, 12, 88,183,110, 29, 76, 38, 19,228,114, 57,148, 74, 37, 82, 83, 83, 33,145, 72,242,120,158,111,180, -221,173, 40,138,215,191,254,250,235, 32,147,201, 84,211,180,131,231,121,172, 93,187, 22, 6,131, 1, 86, 86, 86, 80,169, 84, 72, - 73, 73,129, 92, 46, 55,137,162,120,157, 93, 25,205, 48,245,245,249,143, 80, 95, 50, 30, 20,239,128,130,128,195,199,245, 77,236, - 92,179, 30,128,187, 39,128,182,196,225,182, 15, 33,253, 20, 18,201,106, 0,168, 16,133,113, 23,175,208,189, 15,211,147, 13, 33, -132,248,121, 99,140,167,139,237,210,183,199,134,219,126,250,211,185,178,172,194,178,113, 25, 25,116,199,253, 74,167,175, 59, 9, -240,114,194, 12, 43, 5, 28,121, 30,201,105,121, 88,123, 43,151,222,104,170,166, 90,173, 46,247,243,243, 67,139, 22, 45, 80, 88, - 88,136,244,244,116,104,181, 90,101,115,211,233,229,229,213,141, 16,242,171, 40,138,214,119, 71,184,170, 77,152,167,167,167,175, - 66,161,184,163,145,123, 67,154,237,130,201,188,176, 96,167, 73, 23,175, 23,175,189,144, 34,212,152,160,208, 0,242, 97, 68, 91, -151, 87,147, 82, 10, 87,156,191, 38,204,108, 74, 4,235,238,201,158, 45, 29,251,202,162,235, 51,144,244, 23, 41,166,128, 32,235, -226, 13, 58,137, 69, 50,152, 38,211,100,154, 76,147, 69,176, 44,117,214, 15,108, 1, 16,246,168,104, 2,144,250,251,163, 21, 0, -197, 67,158,206,119, 1,148, 3,120,247, 97, 77,103, 68, 4,100,255,203,215, 18,211,100,154, 76,147,105, 50,205, 71,127, 97,213, - 30, 77, 8,241,226, 62, 55,170,124, 64,233,252, 24,192,199, 15,119, 8,158,178,169,101, 24, 12, 6,131,241, 72,195,177, 44, 96, - 48, 24, 12, 6,131,193,184,191, 16, 0, 97,117,253,208,148,186, 85, 66, 72, 88, 83,119,220,152, 62,211,100,154, 76,147,105, 50, - 77,166,201, 52, 31, 61,205,198,180, 31,149,182, 93,228, 65, 78,165,198, 26, 0, 50, 77,166,201, 52,153, 38,211,100,154, 76,243, -127, 17, 86, 69,200, 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,120,104,120,160,189, 8, 25, 12, 6,131,193, 96, 48,254, 23, -225, 0,128, 16, 66,171,150,190, 44, 75, 24, 12, 6,131,193, 96,252, 93, 60,170, 30,164,102,170, 28, 74, 41, 33,132, 80, 84, 14, - 62,202, 96, 48, 24, 12, 6,131,241,183,240, 40,122, 16,174,182,131, 4, 16,197, 78, 51,131,193, 96, 48, 24,140,191,147, 71,209, -131,220, 17,193, 98,167,152,193, 96, 48, 24, 12,198,223,205,163,232, 65, 88, 47, 66, 6,131,193, 96, 48, 24,140,251, 12,235, 69, -200, 96, 48, 24, 12, 6,131,113,159, 97, 17, 44, 6,131,193, 96, 48, 24,140,127,147,193, 34,132,132, 49, 77,166,201, 52,153, 38, -211,100,154, 76,147,105, 50,131,197, 96, 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,102,176, 24, 12, 6,131,193, 96, 48, 24,204, 96, 49, 24, 12, 6,131,193, 96,252, 67, 16, 0,117,246, 4,160,148, 94, -176, 88,164, 25,189, 9, 26,211,103,154, 76,147,105, 50, 77,166,201, 52,153,230,163,167,217,152,118, 83,252,199, 67,109,176, 30, -228, 64,163,132,144,176,251,157, 81, 76,147,105, 50, 77,166,201, 52,153, 38,211,124,244, 52, 31, 53, 88, 21, 33,131,193,248, 95, -163, 37,203, 2, 6,131,241,160,145,254, 83, 59, 38,132,112,181, 12,158, 8,128,210,123, 12,167, 61, 8,205,135, 21, 2,112,109, -231,204,145, 90,101,101, 53,233, 28, 26, 60, 61,249, 75,179,103,243,180, 50,127, 24,140,127, 29, 41,197,135,107,222,183,114,236, - 67, 42,255, 14, 0, 0,122,237,246, 31,245,254,223, 91, 58,244,102,153,199, 96,212,195,233,211,167,203,253,252,252,208,190,125, -251,107,217,217,217,223, 80, 74, 87,176, 92,121,136, 12, 86, 91,119,155, 46,126,222, 46,131,119,158,206,248,160,161,245, 34, 35, - 35,101,177,177,177, 43, 0,140,174,253,253,176, 97,195,238, 88, 79, 38,147, 21, 20, 21, 21, 5, 30, 60,120,144,111,108,223,145, -145,145,178,216, 97,195,254,170, 57,124,248, 95, 52, 51, 90,180, 8, 58,179,124, 57, 95,235, 75, 66, 0, 66, 1, 10, 0, 33, 33, - 33, 71, 56,142,243, 34,132,212,103,228,106,222,115, 92,165,159, 19, 69, 49, 51, 57, 57,185, 87, 99,233, 84,171,213,209, 0,222, -178, 32, 59, 23,106,181,218,125, 13,173, 96,191,119,111, 42,165,212, 81, 34,145, 88,116,126, 4, 65,128,252,226,197,219,152, 61, -219,159, 93,250,140,127, 59,173, 28,251,112,195,134, 13,235, 15,160,230,122,254,207,243, 11,255,178,158, 68, 34, 49,196,199,199, -175,165,148,178,135, 10, 6,163, 30,246,238,221,139, 9, 19, 38, 32, 41, 41,169,213,206,157, 59,151,168,213,234,137, 89, 89, 89, -131, 41,165,249, 44,119,254, 97,131, 21,162,182,107,229,230,236,188,121,254, 71, 31, 2,192, 7, 13, 25, 33, 79, 79,207, 21, 62, - 62, 62,131, 23, 45, 90,132,237,219,183, 35, 32, 32, 0,114,185, 28, 18,137, 4, 18,137, 4, 28,199, 65, 34,145, 96,234,212,169, -142, 85,105,228, 27, 51, 87,158,158,158, 43,188,125,124, 6, 47, 92,184, 16, 59,119,238,132,159,159, 95,157,154,211,166, 77,115, - 4, 32, 3, 32,212, 8,200,229,213, 79,193,180,202, 52,121,157, 57,115,198,213,218,218,186,242,177,152, 82,136,162,120,199, 66, - 41,173, 89, 4, 65, 64,239,222, 22, 63, 29,191,117,249,242,229, 94,101,101,101,119,104, 84,239,163,250,125,149, 94,131, 6,203, -104, 52, 58,159, 62,121, 4,196,116, 3, 16, 10, 65,185, 22,128, 34, 16,224,172,234, 92,191,176,176, 16,131, 6, 13,114,102,151, - 61,227, 81, 48, 87,177,177,177, 3, 90,182,108,169,158, 55,111, 30, 82, 83, 83, 17, 18, 18, 2, 65, 16, 32,138,226, 29,175,113, -113,113,138,209,163, 71, 19,150,107, 12,198,157,248,142, 92,177,132, 10,230,241,149,159, 28, 1,124, 7,157, 78,135,151, 95,126, - 25, 91,183,110,109,221,173, 91,183,185, 0, 38,177,156,250, 7, 13, 86, 43,111, 27,181, 82, 97,187,109,249,183, 95, 17,179, 46, -219,177,190,245, 8, 33,220,208,161, 67,191,241,246,246,142, 89,180,104,145,173, 92, 46,199,149,113,227,112,187,162, 2,198, 79, - 63,133,163,139, 11, 66, 38, 78,132, 51,207,131, 63,119,206,162,125,215,214, 92,184,112,161,173, 92, 46,135, 70,163,129,209,104, -132,155,155, 27,108,108,108,160, 80, 40,106, 22, 11, 53, 97,109,109,141,189,123,247, 66, 42,149,214, 44, 18,137,164,206,207,238, -238,238, 77,201,174,133,173, 91,183,110,159,146,146, 98, 87, 88, 88,136,110,221,186,233, 8, 33, 73,213, 63, 82, 74,219, 39, 37, - 37,217, 89, 42, 70, 76, 55, 80,150,241, 45,196,162,205,128,227, 19, 16,236,159, 66, 5, 2,235,188,209,136, 34,123,128,103, 60, - 18,230,138, 12, 29, 58,180, 95,112,112,176,231,188,121,243,100, 50,153, 12,103,207,158, 69,110,110, 46,156,157,157, 97, 99, 99, - 3,153, 76, 6,137, 68, 2,153, 76,198, 50,140,193,168, 7, 42,152,199,135,119,234, 81,243,121,245,222,165, 48, 56, 68, 32,243, -131, 15,176,100,201, 18,180,106,213,170, 19,203,165,127,208, 96,133,251, 59, 58, 40,168,124,219,170,101,139, 20, 48,149, 58, 94, - 57,117, 20,237,134, 76,172, 54, 11, 23,106,153, 22, 2,128,147,201,100, 79,126,246,217,103,156, 92, 46, 7, 0,116, 18, 4,168, - 77, 38, 20,135,134,194,198,209, 17,190, 38, 19, 96, 50,193, 80,245,251, 95, 46, 8, 11, 52, 37, 18, 9,228,114, 57,164, 82, 41, -100, 50, 25,228,114,121,195, 6,171,172,172,206,158, 16,213, 38,106,239,222,189, 48,155,205, 24, 61,122,116,157,102,171,177,116, -214, 70,171,213,238, 83,171,213, 73,162, 40,246, 18, 69, 17,132,144, 36,173, 86, 59,168,250,119,181, 90, 29,221,161, 67,135,183, - 0, 44,180, 72, 83, 40,132, 88,184, 30,118,221,243, 81,242,167, 11,136,109, 52, 4,248,225,216,249,116, 28, 74, 76, 71, 94, 97, - 9,194, 2, 93,240,228,160,176, 58, 13,214,131,232, 5,194, 52,153,230, 3,214, 36,114,185,220,127,222,188,121,164,218, 64, 85, - 71,168,171,141, 85,245,251,234, 42,252,187, 52, 55,179,252,100,154, 76, 19, 32, 18,217,138,115,167,143,141, 7,128,146, 75, 91, - 48,229,153, 30,208,233, 82, 48,105,210, 44,100,102,102,226,218,181,107,103,255,206,116, 62,178, 6,139, 16, 66, 41,165, 77, 10, -163,123,123, 19,107, 59, 94,185,249,235, 37,243,237,237,236,148, 46,167,247,196, 35, 61, 61,187,193,109, 68, 81,164,191,255,254, - 59,174,142, 31,143,142, 60,143,162,207, 62, 3, 81,171,209,110,196, 8,200, 77, 38,148,156, 60, 9,185, 74, 5,133, 74,133,250, -218, 64,213,167,169,209,106, 33,149, 74,161, 82,169, 96,107,107, 11, 43, 43,171, 26, 99, 37,151,203, 33,151,203, 45,214,164,148, - 66, 42,149,226,194,133, 11, 72, 79, 79,135,163,163, 35,142, 30, 61,138,232,232,232, 59,204,149, 68, 34, 1, 33,196, 98,221,218, -250,130, 32,212,105,192,208, 72,213,224,157,103,208, 25,104,241, 28,116,199,213,128,211, 88,152,169, 35, 68, 42,226,244,149, 28, -124, 59,231, 57, 0, 64,196,200, 57, 24, 29, 19,202, 34, 88,140, 71, 6, 65, 16,112,245,234, 85, 92,186,116, 9, 18,137, 4,246, -246,246,176,181,181,133, 76, 38,171, 89, 56,142, 99, 17, 44, 6,163, 1, 50,126, 29, 63,149, 16,178,192,215,215,119,247, 55,243, -230, 5, 71, 71, 71, 3, 0,246,237,219,135, 31,158,125, 22, 31, 0,207, 44, 37, 36,123, 50,165,239, 63,232,180, 52,199,131,252, - 43, 12, 86,245,129, 53,229, 0, 9, 33, 36,216,221,254,167, 57,239,190,230,239, 23, 24,228,126, 98,199, 47,184,113, 35, 19, 57, - 57, 69,245, 25, 10, 74, 8, 17, 1, 80,127,127,127, 20, 85, 84, 64,109, 52, 66,162, 86, 67,229,236, 12,105, 85,228, 74,102,107, - 11,185, 74, 5,121, 61, 17,172,134, 52, 43,140, 70, 40, 20, 10,168, 84, 42,168, 84, 42, 88, 89, 89, 65, 94,203, 92, 89,162, 89, -203,180, 65, 42,149,226,252,249,243,232,213,171, 23,124,124,124,240,243,207, 63, 99,208,160, 65,127,137, 98, 53,213, 92,213,101, -176,106, 53,126,111,180,113,251, 29, 40,130,193,219, 61, 9, 78, 57, 0, 38,106, 15, 3,245,172,172, 18,228, 69,124,190,229, 6, -174,102,228, 67, 16,196,154,106, 66, 6,227, 17,128, 18, 66,104,155, 54,109, 72, 65, 65, 1,100, 50, 89,141,185,106,221,186, 53, - 50, 51, 51,107,204, 85,117, 68,139,193, 96,212,141, 68, 34,153, 27, 31, 31, 31,108,109,109,141,143, 63,254, 24,118,118,118, 56, - 62,119, 46,190,151,203, 97, 3,224, 27,147,233, 45, 0, 15,212, 96, 53,199,131,252,171, 34, 88, 77,197,203,203,107,126,183, 94, -221,122, 5,182,237,108,117, 98,215, 22,164, 92, 75, 71,126,126, 49, 40,133,190,161,130, 17, 0,100, 50, 25,202, 63,252, 16, 69, -237,219, 35,108,212, 40, 72, 77, 38,148, 28, 63, 14,185, 74, 5,101, 68, 4,136,209, 8, 89, 78,142,197,133,109,181,166,171,171, - 43,228,114, 57,172,172,172, 96,109,109, 93, 25,193,170,101,174,154,106,176, 74, 74, 74,112,243,230, 77, 76,152, 48, 1, 74,165, - 18,132, 16,228,230,230,194,215,215, 23, 18,137, 4,153,153,153, 56,112,224, 0, 2, 2, 2,160, 80, 40,154,116, 81,212,106,220, -222, 94,173, 86,239,166,148,182, 63,115,230,140, 93,100,100, 36,154, 20,193, 34,114, 24,224, 7, 1,222, 16,233,127,141,148,185, -150,153,162,148,181,193, 98, 60, 58, 92,187,253, 7,253,191, 23, 22, 1, 0, 92, 93, 93,107,140, 84, 80, 80,208, 29,145, 43,102, -174, 24,140,198,105,213,170, 85, 71, 47, 47, 47, 76,157, 58, 21, 21,235,215,163, 20, 64, 44,128,120,147, 9, 0,160, 2,102,178, - 92,250, 27, 13,150,143,143,207,164,240,240,240, 23, 87,252,184,214,118,193,172,255,232,138,147, 47,112,134, 10,163,109,133,217, -108,188,161, 45,252,166,161,136,211,240,225,195, 33,145, 72,160,114,114,130,141,131, 3,228,213,145, 43,165, 18,114,149, 10,196, -104, 4, 53, 26, 33,183, 48,180, 95, 91,211,218,218, 26, 10,133,162, 78, 99,213, 84,131,117,251,246,109,252,242,203, 47,232,210, -165, 11,148, 74, 37, 36, 18, 9, 58,116,232,128,228,228,100, 4, 6, 6, 2, 0,226,227,227,241,196, 19, 79, 32, 37, 37, 5,109, -219,182,181,109,170,193, 18, 4, 1,123,247,238,181,163,148,246,162,148, 34, 47, 47,175, 89, 39, 81, 16, 4, 20, 22, 22, 98,235, -214,173,200,201,201,129,171,171, 43, 74,116, 14,168,238,149, 46,138,255,237, 5,201, 96, 60, 42,136,162, 8, 27, 27, 27, 36, 38, - 38,226,169,167,158, 2, 0,152,205,102,184,184,184, 32, 48, 48, 16,131, 7, 15,198,160, 65,131, 88, 70, 49, 24, 13, 61,176, 92, -187,118, 58, 61, 61, 61,100,214,172, 89,248,193,203, 11,118,118,118,120,115,246,236, 19, 60,207,247,103,185,115, 31, 12, 86, 83, - 66,115, 62, 62, 62,195, 61, 60, 60,230,174, 93,187,214, 70,171,213,194,171, 85,152,221,246, 77, 27, 13,110, 42,185, 62,179,232, -246,132,243, 26, 93,124, 99, 26, 28,199,161,245,180,105, 8, 48,153, 80,112,236, 24, 20, 42, 21, 84,157, 59,131, 24,141, 80,164, -165, 65,174, 82, 65, 98, 99,211,164, 3,225, 56,174,178, 74,176,218, 76,213,170, 26,172, 54, 91,117, 53,120,173, 11,147,201,228, - 16, 29, 29,141, 1, 3, 6, 96,212,168, 81, 53, 85,129, 29, 59,118,196,134, 13, 27, 48,114,228, 72,156, 59,119, 14,106,181, 26, -173, 91,183, 70,235,214,173,145,144,144,208,164,244, 86, 15,203, 48,112,224, 64, 29, 33, 36,137, 82,218,254,212,169, 83,118,205, - 57,137,162, 40, 98,235,214,173,120,250,233,167,209,170, 85, 43, 28, 63,126, 28,211,103,125, 12, 7, 55, 63,240,156, 43, 0,202, -170, 8, 25,143, 28,130, 32,212,219,144,189,186, 76, 96, 48, 24,141,254,143,102,141, 24, 49, 34,242,227,143, 63,110,253,230,155, -111, 2, 0,212,106,117, 87,181, 90,157,248,119,141,131,245, 40, 86, 15,214, 24, 44, 75, 14,176,111,223,190, 95, 11,130, 48, 76, -169, 84, 58,190,252,242,203,166,252,252,124,252,250,235,175,248,254,251,239,203,203,204,220,217,226, 66,225,229,212, 76, 93,166, -165,102,200,154,231, 1,147, 9,242,170, 54, 87, 48, 24, 64, 77, 38,200, 84, 42, 72,149,202, 38, 31, 8,199,113,117, 70,172,172, - 20, 10,200,170,198,195,178, 20,133, 66, 81,124,228,200, 17, 87,141, 70,115, 71,131,246,128,128, 0, 0,192,201,147, 39,113,252, -248,113, 60,253,244,211,144, 74,165,144,203,229, 56,127,254,124,105, 83, 77,145, 32, 8, 53,189, 8,213,106,117,116,151, 46, 93, -234,236, 61,104,137,150, 70,163, 65,171, 86,173, 96, 48, 24, 96,103,103,135,252,172,155,184,126, 45, 5, 37,250,100,248,186, 42, -145,155,155, 11, 43, 43, 43, 86,154, 48, 30, 41, 36, 18, 9,250,244,233,131,252,252,124,184,184,184,192,202,202, 10,197,197,197, -119, 24,175, 85,171, 86,177,140, 98, 48,234,192,119,228,138, 37,222,195,190, 30, 15, 0,111,125,177, 31,239,206, 93,140,177,163, - 6,225,197, 23, 95,252,219,199,193,122,228,219, 96,213,119, 96, 81, 81, 81, 99, 91,180,104, 49,230,165,151, 94,178, 57,121,242, - 36, 62,250,232, 35,233,222,189,123, 77,167, 78,157,226, 69, 81,156,169,209,104, 45, 46,193, 8, 33,224, 56, 14,165, 59,118, 64, -231,225, 1,251, 78,157, 64, 76,166,202,200,149,157, 29,202,188,188, 0,131, 1, 14,197,197,104,170,102,245,144, 12,181,135,101, -144, 85, 13,215,208,156,130,187,174,113,175, 38, 77,154,132, 21, 43, 86,160,123,247,238,104,217,178, 37,164, 82, 41, 56,142,107, - 86, 47,194,218, 85,118, 77,238, 61,120,215,147,188,143,143, 15, 18, 19, 19,225,232,232,136,239,191,255, 30,110,174,174,152, 52, - 34, 4, 70,163, 17,102,179, 25,101,101,101, 16, 4, 1,143,232,204, 65,140,255, 65, 68, 81,188,163,205, 85,126,126, 62,188,189, -189, 27,140,106, 49, 24,140, 90,247,161,218,227, 96,117,234,129,163, 91, 62,195,134,171,190,200,156, 59,247, 31, 25, 7,235, 81, -139, 96, 53, 90, 10,245,236,217, 83, 85, 84, 84,244,249,243,207, 63,111, 83, 86, 86,134,252,252,124,228,231,231,227,196,137, 19, - 7,140, 70, 99,103,141, 70,179,170, 1,227, 19, 86,159,121,105,225,230, 6,133,157, 29, 72,173,222,131, 50,165,178, 50,146,101, - 52, 2,245, 24,129,134, 52,107,155,171,234, 42, 66,139,204,149,173,237, 29,154, 28,199,213, 12,211,112,119,143, 65, 31, 31, 31, -204,155, 55, 15, 35, 70,140,184, 99,152, 6, 75,211,169, 86,171,163, 41,165,237,171,111, 16, 85,141,220,163, 45, 52,146, 97,245, - 25,172, 33, 67,134, 96,251,246,237,120,251,237,183,145,150,150,134,145, 35, 71,130, 16, 2, 7, 7, 7,120,120,120,192,201,201, - 9,214,214,214,127, 73,107,125,154,247, 2,211,100,154,127,151,102,237, 6,237, 42,149, 10,229,229,229,141,154, 43, 66,200, 40, -150,159, 76,147,105,214,140,131,133,115,167,143,225,208,143,111,226,181,216, 0,140,244, 79,193,172, 89,141,143,131,245, 32,210, -249,168,209,168,251, 40, 41, 41,121,191,117,235,214,242, 75,151, 46, 33, 53, 53, 21, 87,175, 94,133, 32, 8,215, 53, 26, 77,179, - 11, 41,142,227,224,224,224, 0,133, 66, 1,105,102,102,101, 27, 41,149, 10, 0, 42, 35, 87,148,130, 52,177, 58,139,227, 56, 72, -165,210,255,142,121, 85, 85,232, 54, 23, 65, 16,106, 70,104,175, 30,231,170,122,225, 56,174,102,105,198, 16, 13,111,157, 56,113, -194, 46, 61, 61, 29,148, 82,252,250,235,175,118, 79, 60,241,196, 91,205,141, 94,229,230,230,194,100, 50, 65, 38,147, 97,200,144, - 33,232,209,163, 7, 74, 75, 75,107,162, 85,132, 16, 72,165, 82,214,139,144,241,200, 81,221, 6,171,246,168,237, 44,114,197, 96, - 88, 78,198,175,227,167, 2,152, 74, 8, 25, 51,123,246,236, 31, 94,125,245, 85,136,162,136,132,132, 4, 44,155, 49, 3, 31, 8, -194, 51, 75, 9, 41,159, 76,233, 84,150, 91,247,209, 96,117,235,214,205, 79,167,211,173,224,121,190,131, 32, 8,138, 67,135, 14, -161,162,162, 2,201,201,201,122, 81, 20,127,109,246, 14,165,210,236,201,147, 39,123, 91,178,174, 92, 46,191,141, 70,230, 33,172, -173, 73, 45, 48, 59,114,185,252,182,193,211,179, 65, 77, 81, 20, 51,107,207, 45, 88,109,162,234,136,254,212, 46,236, 51, 45,204, -130,133,221,186,117,251,203,119,205,201, 75,133, 66,161,137,141,141,245,104,202, 54,114,185, 60,155, 93,246,140,127, 59,114,185, - 92, 31, 23, 23,103, 81,207, 93,137, 68, 98,220,180,105, 19,171, 27,103, 48,234,193, 90, 46,127,230,181,215, 94,195, 79, 63,253, -132, 95,151, 44,193, 32,141, 6, 27,228,114,216,200,229,248,198,100, 26, 15,128, 25,172,251,123,140,135,207, 0, 0, 32, 0, 73, - 68, 65, 84,105,176,138,139,139, 63, 40, 44, 44,236, 82, 82, 82,194, 95,191,126, 93, 79, 8, 17, 56,142,211,139,162, 56, 95, 16, -132,149,205,221,225,230,205,155, 67,238,247, 65, 84,107, 18, 11,170, 60, 45, 33, 57, 57,185,215,131,202,240,123,105,107,117, 55, -127, 30, 59,214,134, 93,194,140,255, 53, 90, 58,244,198,198,141,189,215,179,156, 96, 48,238, 15,103,147,146,162, 1, 96,200,144, - 33,208,191,245, 22, 0, 96,117,213, 56, 88,118,192,138,135, 36,153,157, 1,184, 86,189,207, 7,112, 5, 64, 36, 0, 27, 0, 6, - 0,165, 0, 92,106,173, 95, 80,245, 91,245,239,127, 0, 48,255,157, 9,174,215,144, 92,185,114,229,133,188,188, 60, 59,163,209, -232, 36, 8,130, 11,207,243,238, 38,147, 41,128,231,249, 21,148,181,148,254,199,161,128,120, 47, 11,203, 65, 6,131,193, 96, 0, - 64, 72, 72,136,210,197,197, 69, 25, 18, 18,162,124,143,210, 59,150,135,168,122,208,149, 16,178,157, 16,178,125,230,204,153,253, - 0,244,152, 57,115,102,151,170,207,157, 0,184, 84,255, 78, 8,217, 14,192,249,174,223,195,255,238, 4, 63,106, 13, 22,104,179, - 22,147,169,250, 61,131,193, 96, 48, 24,140,135,245, 38, 79,105,236,130, 5, 11,230, 1,144, 44, 88,176, 96, 94,173,207,160,148, -198,214,126,189,235,119,215,191, 59,173, 4, 64, 88, 61, 7, 97,241, 76,217,205,233, 77,208,152, 62,211,100,154, 76,147,105,222, - 69,203,187, 52, 55, 55,162,217, 80, 71,156, 20,150,159, 76,147,105,254, 51,154,141,105,215,179,253, 99,132,144,237,148,210,216, -218,175,181,141, 87,149,230,246,218,239,239,250,125,199,223,237, 6, 31,216, 2, 32,140,105, 50, 77,166,201, 52, 31, 50,205, 81, - 44, 63,153, 38,211,124,248, 52, 27, 89, 30,171,180, 44,245,191,214,247,190,214,119,127,103,122, 27, 24,166, 97,211, 38,201,173, - 16, 27, 59, 43, 91, 65, 14, 0,134, 50,137,201,231,170, 94,135,209,163,217,124, 43, 12, 6,131,193, 96, 48,254,118, 8, 33,219, -103,204,152,241,206,191, 33,173,210,250,204, 85, 94,164,194,217,218,124,187, 37,207,163, 53, 0, 88, 43,112, 37, 47,210, 46,197, -117,211,166,130,251,109,178,134, 15, 31,174, 82, 40, 20,178,141, 27, 55, 22, 61,140,153,212, 62,152,120, 9,102, 12,131, 4,131, - 1, 0, 2,118, 73,100,216,150,148, 74, 51,155,120, 97,184, 85, 69, 13,115,239,199,122,247,123, 91,198,163,129, 90,173,182, 1, - 16, 43,149, 74,199, 58, 57, 57,117, 42, 40, 40,248, 88,163,209,124,217,204,194, 76, 10, 96,178,163,163,227, 24, 71, 71, 71,255, -194,194,194,155, 37, 37, 37,155, 1, 44,165,148, 54,169, 71, 78,159,142,100,186, 66, 46,123,169,194,100,254,228,200, 89,250,125, - 84, 36,113,230, 69, 44,176,150, 75,123, 27,140,252,167,135,207,209,149, 77, 76, 27, 23, 22, 22,102, 45, 8, 2,177,178,178, 18, -229,114, 57, 85, 40, 20,119,183,165,228, 15, 30, 60,120,247,176, 44, 41,255,196,121,137,142,142, 94, 71, 41, 29,193,243, 60, 36, - 18,201,161, 3, 7, 14, 12,189, 87,205,168,168, 40, 43, 0, 56,120,240,160,225, 95,118,147,228, 2, 2, 2, 84, 55,111,222, 44, -165,213,179,210, 51, 26,165,123,247,238,105, 38,147,169,193,182, 68,114,185, 60,239,207, 63,255,244,127, 4, 15, 63,191,186,234, - 15, 64, 46, 0, 73,213,103, 99,213,107, 78,173,239,114,234,249,253,159, 55, 88,183, 66,108,236,172,205,183, 91,230,102, 39,143, -206,213,158, 29, 5, 0,110,234,142,155,221, 60, 66, 55,221, 10,113, 52,117, 11, 29,163,146,216,144, 37, 82, 78,214,161,194, 96, -112,150,201,100, 5, 70,158, 63, 47, 53,147,169,218,228,141,183,154,154, 8, 74,233, 47,132, 16,207, 97,195,134,237, 22, 69,113, -245,142, 29, 59,174, 52,235, 79, 27, 21, 37,117, 47,114,126,134,147, 73,135, 2, 52,140, 82,128, 18,233, 5,152, 76,187,114, 90, -228,175,165,127, 45,104,235, 37, 50,146,216, 84,148, 32, 26, 34,134,181, 10,112,239, 58,117,226, 40,231, 46, 61, 6,217,148,149, -155,241,199,129,237,157, 87,174,219,246, 90,187, 64,114, 82, 32,216,102,227,128,189,137,137, 84,223, 72,129,242, 33, 33,152, 86, -245,126, 49,165,244,253,123, 89,207,130,109,191,162,148,206,188,207,133, 98, 59, 39, 39,167,175,172,172,172,108, 37, 18, 73,138, - 70,163,249,156, 82,122,166,169, 58, 62, 62, 62,161, 60,207,143,144,201,100,145,102,179, 57, 81, 42,149,110,189,117,235, 86,242, - 61,164, 75,210,182,109,240,115, 18, 66,122, 2,112, 4,112, 91,160,244,232,165, 75,169, 63, 81, 74,155,245, 48, 16, 21, 21, 37, -213,151,149, 61, 35,149, 72,134, 80, 74,195, 64, 41, 1, 33, 23,120,158,223,165,180,179, 91,123,208,194,107,169, 71,143, 30, 87, -205,102,115,147,198, 42,147, 74,165,121, 94, 94, 94, 33, 27, 55,110,108,114,218,189,189,189,159,240,242,242,250,166, 91,183,110, -202,142, 29, 59, 66, 46,151,227,211, 79, 63,157, 12,224, 75, 75,140,148,173,173,237,104,165, 82, 25, 80, 90, 90,122, 67,175,215, -199, 43, 20,138,254, 75,151, 46,245,234,222,189,187, 93, 94, 94, 30,225, 56,206,109,219,182,109,207,126,249,229,151,209,132,144, -199, 40,165,150,229, 67, 71,210,173,117,128,231,251,175, 63,219, 15,111, 47,248,249,245, 94,237, 73,190,141,173,252,155, 81,189, -130, 29, 67,131, 28,241,225,242, 63, 39, 3,176,216, 96,133,134,134,202, 99, 99, 99,215, 16, 66, 30, 35,132,212,123,131,230, 56, -174, 52, 42, 42,202,183,161,243, 21,208,205,233,136, 84, 34,245,170,239,119, 94,224, 51,111, 30, 47,186,231,161, 91, 4, 65, 24, -188,114,229, 74, 72,165, 82,140, 29, 59,182,111,100,100,164, 77, 98, 98,162,222,178,242, 40,210, 25,192,155, 0, 56,133, 66,177, -232,216,177, 99,121,145,145,145, 59,228,114,121, 84,213,239, 7, 19, 19, 19, 31,187,235,156,146,123,233,241, 29, 21, 21,245,158, - 40,138, 19, 21, 10,197,173,162,162,162,113,137,137,137, 87,239, 53, 15, 34, 35, 35,101, 57, 57, 57,147, 59,116,232,240, 74,231, -206,157, 61,146,147,147,115,188,188,188,150,185,187,187, 47, 77, 76, 76,108,212,176,119,236,216,209,147,227,184,231, 0, 60, 83, -117, 3,221, 68, 8, 89,155,152,152,120,227,127,193, 96,153, 76, 38,215,196, 89,179, 0,137, 4,250,126,253, 64, 41,133,114,206, - 28, 32, 63, 31, 69, 11, 23,130,231,121, 12, 25, 50,196,245, 17, 61,252,147,255,182, 4,215,105,176,172,108, 5, 57,207,163,117, -174,246,236,168,174,131,151,218, 3,192,137, 93,147, 71,181,240, 12, 77,182,178, 21, 82, 20, 42,249,250, 39,134, 69,119, 24, 29, -219,151,120,123,186, 65,147,149,235,182,106,195,238,152,237,187, 18,214, 3,232,105, 97,212,234, 89,179,217,236,199,113,220, 6, -142,227, 60,151, 44, 89, 18,148,154,154, 58,110,195,134, 13,195,135, 13, 27,118, 84, 20,197, 31,118,236,216,241,167,165, 7,226, -209,113, 68, 27, 15,120,172, 27, 49,114,168,239, 99, 49,174, 10, 63, 15, 87,136,162, 21,174,220, 48,251,236, 61,124, 38,102,231, -239,123,166,186,135,141,120, 46,231,194,214,139,141,105,181, 9, 34, 79, 41,173,228,111,206,120,245, 49,143, 33,131, 99,237, 90, -120, 71, 72, 65, 42, 39,139, 86,216, 3, 35,159,123,203,118,196,179, 83,108,111, 92, 60,226,181, 99,231,182,152,181,241, 7,179, -218, 4,145, 69,151,175,211,159,235,139, 42, 17,130,105,162, 72,185,202, 66,159,188, 21, 19, 19, 51,208,218,218,250,142, 2,165, -162,162, 66, 70, 8, 66, 69,145, 86,221, 28,200, 52, 66,200,215,150, 68,163,170,247, 97, 52, 26, 56,153, 76, 1,137,132,155, 28, - 30, 30,222, 49, 47, 47,239, 32,128,149, 90,173,182,224, 94, 46, 20,165, 82,249,210,136, 17, 35,230,173, 94,189, 90,101, 99, 99, - 3,173, 86, 27,242,212, 83, 79,117, 32,132, 60, 78, 41,109,180,224, 85,171,213,225, 0, 30,119,113,113,121, 98,220,184,113,126, - 3, 6, 12,128,191,191, 63,180, 90,109,116, 66, 66,194,204,136,136,136,140,156,156,156,205, 0,226,181, 90,237,185,166,152,171, -176,208, 86, 11, 39, 76,156,212,102,228,200,145,158, 86,214, 54, 82,141, 38, 45,239,187,111,151, 57, 72, 8,215,129, 16,242, 86, - 83, 77, 86,215,174, 93,219, 16, 81, 92,255,202, 75, 47,249,119,234,209, 67,234,238,233,137,138,226, 98,164, 94,185,226,115,234, -228,201,232,173,251,246, 77,139,140,140, 28,155,152,152,216,232,181,100, 52, 26,189, 15,127,252, 49, 36, 46, 46,160,102, 51,248, -182,109, 33,138, 98,229, 60,122, 71,142, 0,102, 51,168,217, 12,115, 76, 76,205,252,148,195,135, 15,119,203,207,207,151, 1,104, - 82,186,125,124,124, 60, 91,182,108,185,114,230,204,153,114,131,193,128,179,103,207,226,216,177, 99, 98, 94, 94,222,194,198,204, - 21, 33,100,219,236,217,179,213,189,122,245,178, 43, 40, 40, 0,207,243,206,241,241,241, 19, 34, 35, 35,237,188,188,188, 20,107, -214,172,169,158, 33,192, 41, 40, 40,200,233,153,103,158, 49,174, 89,179,102, 50,128, 69, 22, 21, 52, 4,115,159, 26, 30, 3,189, -153,131,217,204,187,122,186,218,253, 52, 57,174,175, 12,212,136,213,191,157,129,153, 23,191,111,138,185, 10, 12, 12, 92, 29, 24, - 24,216,111,193,130, 5, 36, 53, 53, 85,210,182, 42, 95,121,158,135, 32, 8, 16,132,202,172, 27, 59,118,172,170,170,156,171,215, - 96, 73, 37, 82,175, 35, 91, 46,186, 42,149,202,154,109,171, 39, 99, 47, 43, 43,195,224,231,187, 53, 39, 90,229, 67, 41,245,189, -203, 96,113,213,109, 51,140, 70, 35,172,173,173,123, 15, 24, 48,160,188,202, 84, 23,237,222,189,251, 82, 3,146,175,188,252,242, -203, 83, 84, 42, 21,150, 44, 89,210, 63, 52, 52, 52,202,202,202, 42,106,255,254,253, 0,128,222,189,123, 71,117,233,210,165, 5, -207,243,195, 8, 33, 35,237,237,237,123, 69, 68, 68, 28, 9, 15, 15,127,238,220,185,115,197, 77, 77,127,167, 78,157,158, 8, 11, - 11,123,227,179,207, 62,179,189,120,241,162,211,135, 31,126,184, 30, 64,199,123, 41, 67, 66, 67, 67,229,101,101,101,235, 62,248, -224,131, 33,213, 83,141,137,162,232,254,199, 31,127,124,248,246,219,111,119,139,140,140,124,186, 62,147,213,185,115,231, 14,148, -210, 89, 65, 65, 65,209,207, 63,255,188,164,103,207,158, 40, 45, 45,197,158, 61,123,254,111,203,150, 45,255, 23, 17, 17,113,156, - 82,250,225,217,179,103, 15,223,175,155, 99,100,100,228, 21, 0, 62,213,113,135,196,196,196,214, 15,197, 93,219,206, 14,232,215, - 15, 37, 89, 89,149,101,243,103,159, 85,150, 53,243,230,177, 16,223,191,193, 96, 53, 70,121,121,121,248,204,201,113,224,184,202, -145,204, 91, 6,250, 98,254, 59, 19,200,214,237,187, 45, 30,103,162,176,176,112,214, 51,207, 60,227,185,117,235,214,151, 57,142, -179,206,205,205, 37,229,229,229, 54,211,166, 77,243,214,233,116, 35,227,227,227,251, 12, 31, 62, 60,137, 82,250,233,182,109,219, - 78, 55,164,229, 26, 62, 42,216,205,197,109,207,231,115, 39, 56,133, 5, 6,193,104, 54, 67,147,155, 9, 10, 43,120,184,169, 48, -246,241,112,121,207, 78,178,224,133, 95,237,223,237,209, 97, 88, 76,246,249,109, 13, 21,100,144, 80,252,231,196,201,228, 86, 28, - 95, 64,136,204,190,158, 39, 99, 41,130,219, 71, 73, 95, 9, 12,115, 28, 58,112,176,253, 19, 47, 76,251, 15,128,159, 27,186,143, -213,186,161, 97,202,148, 41, 53, 83,241, 84,147,147,147,131, 3, 7,246,215,185,141,165,126,163,246,135,143, 62,250,200,161,176, -176,240,177, 85,171, 86, 69,123,122,122,206,201,202,202,106,114,225, 67, 8,177, 1, 48,184,127,255,254,115,183,108,217,162,170, - 30,189,222,221,221, 29,139, 22, 45,242,121,234,169,167, 62, 1, 48,188, 17,115,245, 67, 92, 92,220,152,152,152, 24,132,132,132, -160,160,160, 0,199,143, 31, 55, 46, 91,182,236,230,128, 1, 3, 2,198,140, 25,163,152, 50,101,138,111, 90, 90,218, 91,241,241, -241,111, 57, 57, 57,125, 95, 84, 84,244,134, 37,233,107,219, 54,248,185,113,227,199,183,153,244,202,235,145, 38,147,161,252,124, -226,161, 3, 82, 57, 39,121,253,141,241, 14,133, 69,121, 46,148,138,207, 1,248,177, 9,230, 42,216,203,221,125,239,130, 79, 62, -113,108,225,234,138,236,236,108,220,210,104,144,117,225, 2, 8,128,152,152, 24, 69,120,135, 14, 65,139,151, 47,223,213,185,115, -231,129,167, 78,157,186,212,152,166,196,197, 5,153, 17, 17, 0,128,226,196,196,234,200, 10,236,134, 13,251,239,147,233,229,203, -224, 56, 14,110,110,110,205,153,126,169, 58, 18,220,181, 87,175, 94,114, 0,120,251,237,183,117,101,101,101,159, 17, 66,126,201, -204,204,212, 54,178,233,228,247,222,123,207, 51, 40, 40,200,119,221,186,117, 40, 45, 45, 5, 0,215,192,192, 64,180,108,217, 82, - 56,116,232, 16, 66, 66, 66, 96,103,103,135, 67,135, 14,225,248,241,227,136,136,136, 80,201,229,242, 81,150, 24,172,222,225,100, -104,167,142, 97,221,252,124,124,113,240,216, 73,200, 21, 50,199, 87,159,143,133,157, 74,138,207, 86,237, 16, 51, 52,133,175, 31, - 62, 71, 87, 91,120, 61,114,143, 61,246,216, 74,127,127,255,168, 5, 11, 22, 40,229,114, 57,146,146,146,144,157,157, 13, 87, 87, - 87, 88, 91, 91, 67, 38,147, 65, 42,149, 54,105,170, 44,165, 82, 9,173, 86, 11, 83,213,224,138,130, 32, 64,167,211,193,195,163, - 50,248, 56,103, 14,225,102,207,182,172, 42,107,224,192,129,255,113,115,115,155,229,230,230, 38,169,253,189,193, 96,192,140, 25, - 51, 80, 90, 90, 10, 47, 47, 47,120,121,121,109,169,158,247,180,160,160, 0, 49, 49, 49, 11,246,238,221, 59,183, 30, 89, 7, 79, - 79, 79, 12, 27, 54, 12, 70,163,177,205, 55,223,124,243, 35,165, 20,229,229,229, 53, 43,184,185,185,165,245,238,221, 91,210,171, - 87, 47, 4, 5, 5, 97,249,242,229,253, 54,109,218,212, 7,192,111, 77,189,150, 28, 28, 28,158, 28, 61,122,180,173, 74,165, 66, -215,174, 93, 97, 52, 26,213, 81, 81, 81, 86,205,169,138, 36,132, 72,213,106,181,187, 84, 42,253, 98,242,228,201,131,250,246,237, -139,203,151, 47, 99,215,174, 93, 24, 62,124, 56,162,162,162,240,238,187,239, 14,126,255,253,247, 39,163,158, 89, 45, 68, 81, 92, -187,121,243,102,127,111,111,111, 72, 36,149,217,106,111,111,143,113,227,198, 33, 46, 46, 14, 59,119,238,236, 54,111,222,188,245, - 81, 81, 81,126, 7,155, 80, 83,209,216, 51, 75, 98,213,255, 53, 50, 50,210,231, 97,185,105, 27,187,119, 71, 81, 86, 22,220, 61, - 61, 1, 0, 89, 90, 45, 40,165, 53,159, 81, 85,214, 48, 30, 82,131,101, 40,147,152,172, 21,184,226,166,238,184,249,196,174,201, - 53, 85,132, 82,138, 43, 21,101, 18, 19, 0, 8,148,162,164,148,135,141, 21,135,180, 44, 29, 46, 92,207,171,171,192,191,163,171, -101, 76, 76,204, 54,157, 78, 23,210,162, 69,139, 69, 60,207, 75,250,245,235, 39,233,214,173,155,107,122,122, 58, 14, 30, 60, 8, -153, 76, 6,163,209, 72,156,156,156,172,198,141, 27,167,214,235,245,206,239,188,243,142, 11,128,190,245,105,146, 49, 99, 36,158, - 50,201,166,207,230, 62,227, 68, 36, 87,113, 53,227, 54,130,189,187,194,217,193, 7,153,121,165, 72, 76,222,137,171,169, 59, 16, -236,237,139, 9, 99, 91, 58, 44,254, 54,127, 51,137,156, 24, 70, 19,151,155,235,211, 4, 32,145, 40,131,137, 49,225, 9, 81,226, -210,151, 72, 60, 99, 9,177, 86,223,177, 66, 89, 65, 26,174,252,185,154,166, 37,253, 70,125,195,159, 35, 0, 36,245, 29, 59,165, - 52, 87, 34,145,172,228, 56, 50,158, 16,130,142, 29, 35,114, 23, 46, 92, 88,215,147,154,185, 99,199,136, 92,137,132,115,171,156, - 71,144, 91, 33,138, 66,110, 3,233,172,189,191, 92, 66,200, 98,133,194,106, 26, 0,120,122,170,115,119,236,216, 97, 30, 61,122, - 52, 62,255,252,115,197,244,233,211,103,123,121,121, 61,159,153,153,153,217,208, 57,170, 85, 40,134,217,219,219, 79,108,213,170, -213,240,185,115,231, 42, 6, 15, 30,108, 67, 41,133, 78,167,131, 78,167, 67,121,121, 57,108,109,109, 33,149, 74, 61, 26, 59,239, -254,254,254, 79,140, 27, 55, 14,174,174,174, 56,113,226, 4,166, 79,159,158,158,151,151,247, 81, 86, 86, 86,226,250,245,235, 91, - 7, 5, 5,189,187,124,249,242, 54,189,122,245,226,134, 13, 27,134,109,219,182,245,108, 76,179,230, 68, 17,210,243,241,199, 71, -186, 26,141,250, 50,131, 65, 95,124, 51,253,116,150, 70,115,241,118, 72,203,206,110, 3, 7,117,111,113,229,202,245,158,245, 25, -172,187, 53,199,140, 25, 35,225, 4,225,231, 79, 62,251,204,145,147, 74, 97, 54,155,225,231,231,135,164,164, 36,148, 20, 21, 65, - 95, 90,138, 27,201,201, 80, 7, 4, 96,242,216,177,142, 31, 45, 91,182, 46, 50, 50,178, 83,237,167,238,186,210, 73,205,230,187, -171,173,254, 50,103, 94, 93,223, 89,114,222,239,186, 9,165,105,181, 90, 40,149, 74,180,105,211,198,246,244,233,211,199, 52, 26, -141,182, 49, 77,107,107,235, 81, 61,123,246,180, 91,191,126, 61, 34, 35, 35,225,232,232,136, 3, 7, 14, 32, 41, 41, 9, 38,147, -137,211,233,116, 80,169, 84, 88,176, 96, 1,124,125,125, 81, 82, 82,130,180,180, 52,103,153, 76,230, 98, 81, 58, 9, 94, 28, 51, -242,113, 72,228,182,184,146,170, 65,223,110, 17,112,115,115,195,249, 75,169,200,200, 44,204, 33, 4, 47, 12,238,105,181, 64,175, - 55,190,247,199, 89,186,170, 62, 77, 82,233, 60, 57,169, 84,250,248,188,121,243, 56,185, 92, 94,147,119,213,115, 18, 86, 27,171, -234, 73,218,235, 50,171,117,165,147,231,121,152, 76, 38,152, 76, 38,136,162,136,188,188, 60,148,148,148,192,201,201,169,114,133, -217, 0, 1, 33,180,158, 89,232,239,250,191,199,125,250,233,167, 18,207,234, 27, 94, 45, 52, 26, 13,138,139,139, 97,103,103, 7, - 71, 71,199,154,136, 91,126,126, 62,166, 78,157, 26, 7, 96,110, 93,154, 82,169,244,211,207, 63,255,124,120,235,214,173, 61, 94, -122,233, 37, 72,165,210,193, 5, 5, 5, 88,189,122, 53,148, 74, 37, 86,173, 90, 5,127,127,127,137, 32, 8,208,235,245,213, 70, -184, 76,161, 80,164, 53,231, 90, 42, 42, 42,250,105,251,246,237, 61,186,119,239,238, 0, 0, 35, 70,140,224,182,110,221,154,209, -175, 95,191, 91, 58,157,238,185,218,213,133,245,105, 70, 70, 70,202,178,179,179,223, 28, 59,118,236,148,232,232,104,251,130,130, - 2, 88, 89, 89,225,151, 95,126,193,202,149, 43,247,152,205,230, 57,155, 55,111,254,224,187,239,190,139, 25, 49, 98, 4,190,251, -238,187, 87,171,154, 69,136,117,104,122,250,248,248,224,252,249,243,112,114,114,130,139,139, 11,138,139,139,113,252,248,113,156, - 60,121, 18,109,218,180, 1, 33,196,177,161,104,101, 3,233,108,118,164,170, 41,195, 25,221, 47,205,194,194, 66, 20, 23, 23, 67, -142,202,193, 27,111,223,190, 13, 0, 53,159,155,155, 78, 66,136,212,203,203, 43,214,193,193, 97, 34, 0, 73, 81, 81,209, 42, 27, - 27,155,248,212,212, 84,227,223,117,236,143,164,193, 34,132, 84,159,151, 40, 74,233, 33,159,171,122, 93, 94,164, 93,138,155, 71, -232,166, 22,158,161,201, 0, 32,165,184, 66,101,118, 41, 62, 73,122, 29, 0,152, 76, 20,199,174, 20,225,220,181, 28, 36, 93,203, -134,202,186,241,167,110,131,193,208,127,215,174, 93,216,180,105,211,194, 47,191,252,146,102,100,100, 32, 61, 61, 29, 78, 78, 78, -232,219,183, 47,242,242,242,112,234,212, 41, 4, 7, 7,131, 82, 10, 31, 31, 31, 5, 0,135,134, 52,221,175,137, 99,159,159,208, - 49,192,197,129, 96,219,177,221,232,214,102, 36,148, 86, 82,228, 21,149,131, 35, 4,169, 55,247, 65, 16,108,113,238,114, 6,122, -132,217,162, 87, 87,123,175,178,253, 69, 47, 1, 88,222,248, 29,203, 12, 33,119, 31, 21,114,247, 83,206,169, 19,145,120,142, 32, - 69,197, 21,184,252,231,247, 52,235, 74, 66, 77, 89,107, 50,234, 26,149, 18, 4, 97,170,187,187,187,126,198,140, 25,253, 91,182, -108,105,126,237,181,215,206,164,165,165, 77,185,203,136,124,241,245,215, 95, 35, 37, 37, 37,127,193,130, 5, 7,114,114,114,222, -105,226, 31,115, 22, 33,228, 43, 0,208,106,181, 5,219,183,111,239,116,232,208,161,183, 22, 47, 94,236,241,250,235,175, 43,222, -120,227,141,241,149,183,138, 70,255,104,225, 81, 81, 81,187,126,250,233, 39, 91, 15, 15, 15, 66, 8,129,201,100, 66, 94, 94, 30, -242,242,242, 80, 92, 92,140,178,178, 50,148,150,150,130,227,184, 70,219,203, 41,149, 74, 73, 73, 73, 9,110,223,190,141, 46, 93, -186,224,228,201,147,126, 71,143, 30, 93,249,237,183,223,138,113,113,113, 36, 42, 42,138,228,231,231, 99,203,150, 45, 98,118,118, - 54,103,109,109, 93,106,241,211, 49, 7, 71,165,210, 70,254,231,209,248, 93, 90, 77,114,126, 86,206,133, 98, 14,148,211,106, 79, - 23, 7,182,236,231,140,202, 54, 89, 22,113,227,198,141,167,167, 77,154, 20,232,224,228, 4,158,231,225,226,226, 2,141, 70,131, -242,242,114,148,151,148, 64, 95, 90,138,138,146, 18, 92,222,191, 31,221,135, 14,197,192,142, 29,125,118,156, 57,243, 34,128,239, - 26,210,229,219,182,173,137, 92, 57, 68, 70,254,247,255,144,156, 92, 99,172,100, 61,123,130, 40,149, 32,239, 52,191,115,140, 86, -171, 61,231,231,231,183,123,240,224,193,131, 38, 76,152,192,101,103,103,111,245,240,240,232,159,157,157,125,185,161,237, 84, 42, - 85, 96,126,126, 62,116, 58, 29, 28, 29, 29,177,120,241, 98,184,185,185, 65,175,215,227,212,169, 83,212,219,219,155, 36, 36, 36, -192,203,203, 11,133,133,133, 48, 26,141, 40, 47, 47,207, 49, 26,141,122,203, 46, 76,120,185,123,120,131,163,102,104,115,242, 49, - 98,232, 64, 72,229, 42,164,105,242, 17, 30, 26,228,249,236,176,158,158, 18,194,227,255, 62, 89,255, 42,128, 85, 22, 24, 73,154, -146,146,130,228,170,252,179,183,183,135,173,173,109,229, 36,239,114,121,141,185,146, 74, 45, 15,208, 87, 79,142, 94,109,174,242, -242,242,144,154,126, 21, 91, 18,214,192, 36,152,157,127,232,106,127, 51, 72, 38,187,224, 90, 74,102,231,157,167,231, 26,249,255, -172,153, 62,125,250, 7,174,174,119, 54,133,241,241,241,193,196,137, 19,177,125,251,118,164,164,164,220,209,157,187,176,176, 80, - 4,176,166, 62,205, 19, 39, 78,228,118,237,218,245,201, 55,223,124,115,223,154, 53,107, 20, 99,199,142,173,169,206, 20, 4, 1, -165,165,165,216,191,127, 63, 14, 31, 62,140,211,167, 79, 23,153, 76,166,223, 36, 18,201,178, 19, 39, 78, 92,110,234,117,212,189, -123,119, 39,149, 74,245,241,171,175,190,106, 7, 0, 21, 21, 21, 24, 59,118,172,205,147, 79, 62,137,196,196,196, 54, 95,126,249, -229,106, 0, 93, 26,171, 14,228, 56,110, 99, 66, 66, 66,116,171, 86,173, 42,159, 30,205,102, 28, 61,122, 20, 19, 38, 76, 40, 84, - 42,149,113,201,201,201,101, 94, 94, 94, 31,108,223,190, 61, 38, 60, 60, 28,237,219,183,119,207,207,207, 87, 1, 40,169,231,188, - 67, 16,132,154,243,179,106,213,127, 47,149,138,138,138,202,232,142,209, 72,186,116,233,226,127,242,228,201,180,251, 16,169,186, - 85,235,243,173,135,229,166, 93,190,118, 45,100,211,167,227,234,209,163,160,148,194, 37, 52, 20, 0,112,245,240,225,202,225, 19, -222,124,179, 73,122, 94, 94, 94, 45, 40,165, 47, 70, 71, 71,191, 62,120,240, 96, 23, 79, 79, 79, 56, 59, 59, 35, 41, 41,169,251, -238,221,187, 23,121,121,121,173,164,148,174,212,106,181, 15, 44, 15,238,246, 32,143, 92, 4,139, 82, 74,170, 14,146, 96,244,104, -193,117,211,166,130, 91, 33,142, 38, 43, 91, 33, 5, 0, 42,202, 36, 38,159,164,170, 97, 26,230,174, 7, 5,133, 32, 80, 80, 81, -132, 72, 41, 4, 11,130,231,206,246,102,112, 23,156,240, 76,183, 17,136,139, 59, 77,246,239,223,143,131, 7, 15, 34, 60, 60, 28, -102,179, 25,246,246,246, 24, 51,102, 12,226,227,227,161, 84, 42, 81, 86, 86,214,168,166,170, 5, 63,178,107,251,150,146,171, 25, - 73,232,212,106, 20,252, 61,123, 33, 53,179, 24, 69, 58, 3, 10,138,245, 8, 9,249, 15,114, 10,245, 40, 41,211,227,252,149,117, -240,246, 12,228, 56,217,245, 24,139, 12, 86,173, 59,132, 88,116,138,138, 69,167,232,254,221,127,109,110,196, 27, 44,107,226, 32, -138,226,210, 93,187,118,117,239,213,171,151, 52, 58, 58, 58,194,207,207,175, 99,122,122,250, 89, 0,240,243,243,235, 24, 19, 19, - 19,225,230,230,134, 47,190,248,162, 66, 20,197,165,205,124,250,169,221, 94,235,132,143,143,207,156, 95,127,253,245,219,137, 19, - 39,194,211,211,179,131, 37, 26,142,142,142,227, 87,175, 94,109,235,233,233, 73,120,158, 71, 69, 69, 5,178,179,179,113,251,246, -109, 20, 21, 21, 33, 35, 35, 3,133,133,133,200,202,202, 42, 75, 75, 75,219,108,105,218,222,123,239, 61,240, 60,111,158, 48, 97, -130,172, 95,191,126, 88,179,102, 13,119,227,198, 13,124,247,221,119,194,198,141, 27,211, 57,142,147,142, 26, 53,202,183,105, 7, - 76,242, 53,154, 27,174, 6, 83, 81,197,224,168, 30,211,242,210,242,225,234, 63, 2,251,254,216,252, 69, 70, 90, 42, 37, 28, 44, -110,123,102, 37,147, 13,140,236,214, 77,150,157,157,141,224,224, 96,100,102,102,226,218,181,107, 48, 26,141, 40, 43, 46,134,185, -164, 4, 66, 81, 17,104, 73, 9,210,254,248, 3,109,131,131, 21,187,206,156,137,105,204, 96, 85, 87, 11,215, 23,181,226, 56, 14, -196,214, 22,176,181, 5,229,154, 54,185,130, 90,173,142,181,183,183,127,179,164,164,100,183, 86,171,253,196,100, 50,189, 57,127, -254,252,200, 15, 63,252,208,121,250,244,233,118,211,167, 79, 95,235,239,239,255,255,236,125,119,120, 20,213,254,254,123,102,182, - 39,155,222, 27, 16, 32,132,114,129, 84, 66, 39, 72, 87,138, 8, 88,168,130, 20, 65,148,162,151,166, 34, 29, 11, 88,104,130, 34, - 69,202, 53, 2, 42,160, 64, 16, 66, 9, 33,164, 18, 72, 72, 2, 36, 33,101, 19,210,219,102, 55,187, 59, 51,231,247, 71,138, 33, -146,100,131,248,187,124,189,251, 62,207, 62,187,179, 59,251,206, 41, 51,115,222,121,207,231,156,211, 39, 35, 35,163,201,174,157, -202,202,202, 52,131,193, 96, 11,192,241,252,249,243,112,112,112, 64, 69, 69, 5,244,122, 61, 52, 26,141,222,198,198, 70, 86, 84, - 84,132,234,234,106, 84, 87, 87,195,210,210, 18, 49, 49, 49,197, 28,199,253,106, 76, 26, 21,114,185,157, 84,110, 5,129,211, 66, - 36, 22,163,141, 71, 59, 8,124, 53, 74,202,171, 48,227,229, 49,136, 77, 72,196,175, 23, 35, 57,131,161,249,115,158,214,220,164, - 4, 66, 8,245,246,246, 70,105,105, 41, 88,150,133,185,185, 57,148, 74, 37,186,116,233,130,172,172,172, 39, 22, 88, 13,197,213, -239, 17,167, 80, 80,153,139,111, 62, 61, 2, 55,103, 15, 6,128,125, 78, 94,214,115, 51,151, 78, 10,244,236,111,251,105,250,213, -226, 38,227,218,206,157, 59,247,233,240,225,195, 79,229,229,229,217, 55,168,235, 62, 6,131,225, 67,142,227,144,145,145,129,164, -164,164, 79, 40,165, 23,255,176,204,217,156,208,208,208,102, 69, 65,100,100,100,172,191,191,255,204, 73,147, 38,109,109,215,174, -157, 35,165, 20, 62, 62, 62,120,237,181,215,240,233,167,159,226,242,229,203, 63, 10,130,176,207,210,210,242, 90, 65, 65, 1,219, -148,243,208, 28,122,245,234,101, 43,147,201, 46,237,216,177,163,109,135, 14, 29, 24,149, 74,133,136,136, 8,244,233,211, 7,132, - 16,120,121,121,193, 96, 48,184,181, 36,174, 40,165, 63,156, 56,113, 98,104,135, 14, 29,112,231,206, 29, 92,185,114, 5, 14, 14, - 14, 80, 40, 20, 24, 51,102,140,237, 15, 63,252, 48,183, 91,183,110,219, 68, 34,209,135,207, 63,255, 60,120,158, 71,116,116,116, - 94,122,122,122,101,115,117,212,204,195, 59, 40,165, 48, 24, 12,159, 48, 12, 51, 33, 48, 48,112, 76, 84, 84, 84,244, 95,105, 28, -159,153,152, 43, 0,109,218,180,233,202, 48,204, 2, 91, 91, 91,148, 20, 21, 61,226, 92,213,221, 49,234,182, 1,160, 83,167, 78, -199,181, 90,237,234,230, 6, 15,185,187,187,119, 87, 40, 20,111,141, 30, 61,250,149, 23, 94,120,129,213,235,245, 56,117,234, 20, -182,111,223,142,145, 35, 71,194,203,203, 11,239,189,247,158,101,117,117,245,210,179,103,207, 46,233,214,173, 91,104, 69, 69,197, -135,127,101, 64, 82, 11,215,247, 31, 26,228,159, 38,176,106, 51, 22, 92,255,203,196,137,188, 7, 80, 90,123, 19,183,179,182,182, -222,202,243,252, 32,124,248, 33, 44, 68, 86,200,184,151,138,138, 18, 1, 6, 93, 53, 4,129,130, 10, 45,151,137, 66,202,195,114, - 32, 69,249,101, 2, 49, 33,120,254,249,231, 49, 98,196, 8,196,198,198,226,224,193,131,232,223,191, 63,202,202,202, 80, 94, 94, -142,202,202,202,186, 88,144,102, 33,145,107,255,213,214,169, 19, 42, 52,189, 96, 38,149,162,184,188, 26, 37, 21,213, 40, 44,213, -226,248,207,175,161, 90, 91, 5,174, 90, 7, 94,207, 65,233, 52, 30, 94,182,131, 1,122,183,219,211, 44, 68, 67,117,133, 81, 35, -117, 10, 10, 10, 30,186,187,187,255, 20, 19, 19, 51,113,210,164, 73,184,112,225,194,124, 0,111,212,222, 96,231, 79,154, 52, 9, - 49, 49, 49,184,115,231,206, 79, 5, 5, 5, 79,101, 72,169, 94,175,175, 50,212,118, 81,201,229,114,137, 49,255, 97, 24,102,152, -131,131, 3,209,235,245, 40, 42, 42, 66, 97, 97, 33,138,138,138,160,209,104, 80, 89, 89, 9,142,227, 96, 48, 24, 16, 25, 25,249, -144,231,249,200,214,164, 39, 41, 41,201,107,241,226,197,111, 12, 29, 58,116,213,232,209,163,113,242,228, 73,124,255,253,247,115, - 1, 28,235,215,175, 95, 76,107,243,199,243,252,197, 29, 59,118, 58,205,158, 53,214,233,199, 83,123, 55, 29, 59,126,179,231,228, - 87,242, 18, 93,221,122, 56, 28,218, 25, 46,229, 56,122,202,104, 50, 65,232, 97,231,228,132,140,140, 12, 68, 69, 69, 65,171,213, -214,139, 10,125, 73, 9, 12,197,197, 32,106, 53,100, 28, 7,109,102, 38, 58,244,232, 1, 2,116, 53, 66, 88, 55,217, 45,200,178, - 44, 8, 33, 32, 74,101,141,200,106,162, 91,171, 9,113,229,235,235,235,123,112,207,158, 61,146, 37, 75,150, 4,182,111,223,254, -235,220,220,220, 76, 15, 15,143,231, 63,251,236,179,203,235,214,173,147, 77,153, 50,165,211,158, 61,123, 38, 55,231, 12,105,181, -218, 99,167, 79,159,126,165,109,219,182,142, 9, 9, 9,208,106,181, 16, 4, 1,163, 70,141, 2, 0, 89,221,126,201,201,201,218, -170,170,170,252,196,196,196,138, 7, 15, 30, 24, 0, 24,245, 16, 96,110,110, 97, 43,146,152, 67, 96, 68,176,178,178,129, 72,106, - 14,129, 19,129, 23, 0, 11, 43,123, 92,139, 77, 70,210, 3,118,238,221, 52,132, 24,245,180, 83, 43, 88,237,237,237,235,187, 4, -235,186, 11,157,156,156, 80, 86, 86,246, 68, 2,171,188,188, 28,101,101,101, 72, 77,191,131,252,138, 92,132, 30,141, 0,207,243, -168,174,174,209,166,174, 78,238, 56,127,244,134, 50,120, 98,192,191,237,125,201,229,194, 56, 26,211,140,200, 74, 1,144, 82,215, -181, 57,100,200,144,141, 67,135, 14,133, 94,175,199,128, 1, 3,144,144,144, 48,202,218,218,122,125,107, 71,138,198,196,196,252, -220,173, 91,183,223, 42, 42, 42,218,242, 60,255,138,173,173,237, 50,142,227,234,220,183, 83, 12,195,220, 84,171,213, 39, 59,118, -236,216, 55, 32, 32,224,120,116,116,244,204, 22,132, 63, 9, 12, 12,156, 96,102,102, 54, 67,173, 86, 31,149,203,229,203,118,236, -216,209,182,125,251,246,204,131, 7, 15,192,113, 28, 50, 51, 51,133,168,168,168,170,128,128, 0,101,104,104,104, 37,195, 48, 77, - 58,109,254,254,254, 98,131,193,240,159, 95,126,249,101, 88,135, 14, 29,112,249,242,101,108,222,188, 25, 29, 59,118,196,190,125, -251,208,183,111, 95,120,122,122,194,198,198,102, 65,121,121,121,208,199, 31,127, 60,194,207,207, 15, 39, 78,156, 64, 65, 65,193, -174,230,166,108,224,184,166, 67,171,170,170,170, 64, 41,197,115,207, 61, 55,115,201,146, 37, 24, 51,102,204,201,160,160,160, 1, -145,145,145,247,140, 40,214,103,210,169,170,239, 27,117,113, 89, 55,108,216,176, 37, 61,123,246,196,161, 67,135,160, 10, 10,130, -230,251,239, 97, 61,122, 52, 40,128,180,131, 7, 65, 41,133,245,216,154, 80, 88,207,137, 19,177,108,217,178, 17,227,199,143,247, - 0, 16,208, 4,231,166,105,211,166,189, 61,117,234, 84,196,198,198, 98,247,238,221,136,139,139,171,155, 64, 20, 6,131, 1, 73, - 73, 73, 72, 74, 74,130,139,139, 11, 94,120,225, 5, 50,103,206,156,225,163, 70,141,178, 7,208,255,239,200,231,159, 52,200, 63, -214,193,122,244, 38,110,103,101,101, 21,189, 99,199, 14,219, 94,189,122,177, 28,199,225,247, 11, 23,240,238,194,153, 24, 57,122, - 1,180,213, 82,112, 90, 2, 94,162,108,241, 96, 26, 29,139,242,203, 4,130,242,121,232,116, 58,204, 57, 34,129, 53, 41,194, 23, - 51,122, 97,219,182,109, 53, 93, 49, 85, 85,168,168,168, 64,101,101, 37, 42, 42, 90,238,122,171, 44, 85,234,245, 6, 1, 57,249, - 15,144,157,123, 11, 86,202, 54,160,140, 7, 30, 22, 87,129,192, 17, 6, 77, 50,132,218, 11,179, 90,147, 13,117,181,145,226,152, - 26, 31, 39,169,215,149, 27,189, 47,195, 48, 7, 15, 31, 62, 60,102,235,214,173,210, 49, 99,198,120,187,184,184,244, 7,128,151, - 95,126,217,219,202,202, 10,135, 15, 31,214, 53,119, 3,107,229, 9,203,184,184,184, 76,237,223,191, 63, 30, 62,124,136,180,180, -180, 72, 35,211,120, 46, 62, 62,126,186,135,135, 7,201,204,204, 68,118,118, 54,138,139,139, 97,101,101, 5, 91, 91, 91, 56, 59, - 59, 67, 16, 4,104, 52, 26,167,219,183,111,251, 2, 56,103,108,154,242,243,243, 75, 0,124, 89, 85, 85,181, 74, 36, 18,213, 89, -251, 63,227, 9, 23,160,190,157,116, 47,164,123,119,175,110,238,238, 54,157,252,187,119,119,112,119,187, 87,110,239,224,110,241, -235,153, 4, 69,254,195,146,228,219,183,239,158,104, 77,145,105,138,139,161,186,121,179, 38,230,170,162, 2,218,202, 74,112,165, -165,112,233,212, 9, 80,171,193,104,181, 16,105,181, 16, 11, 2, 20,102,102, 48,230,105, 75,116,229, 10,148,163,107,166,111,209, - 37, 37,213, 56, 86,132, 64, 60,112, 32,136,185, 57,136,153, 25,152,211,167,107,132,150,133, 5,176,183,197, 94, 50,184,186,186, -218, 57, 59, 59,135,108,219,182, 77, 82, 88, 88,136,196,196,196,132,180,180,180,114,123,123,123,165, 72, 36, 18,146,147,147, 47, - 38, 39, 39,143,242,244,244, 4,207,243, 29, 90,160,251,234,196,137, 19, 67,250,245,235,199,121,122,122,154, 21, 20, 20,120,148, -148,148,144,220,218, 81, 74,117,136,138,138,146,101,101,101, 85,241, 60,255, 11,106,230,193,106,242, 34,113,112,112, 48,151, 74, -165,175,240, 60, 63,181,155, 39, 47, 42,174,208, 0,156, 14,233, 25,233, 40, 85,235, 65, 57, 3, 50,179,115,161,174, 22, 80, 84, - 92, 1,255, 94,207,111,211,113,215, 86,185,186,186,174, 84,169, 84,167,154,115,177,198,141, 27, 7, 74, 41,162,162,162,112,229, -202, 21, 92,185,114, 5, 25, 25,127,152, 63, 86, 86, 86, 8, 13, 13,197,224,193,131,141,239,118,169,170,130,147,147, 19,172,172, -172,112, 34,236, 32,190,253,236, 72,125,160,123,131, 7, 36,152,153,153, 97,195,187,159,155,207,252,247,132, 15, 1,140, 49,134, -123,200,144, 33, 83,189,188,188,124,131,130,130,144,145,145, 1, 31, 31, 31,120,121,121,117, 75, 77, 77,157,101,140,251,217, 24, -137,137,137,122, 63, 63, 63, 71, 39, 39,167,197,211,167, 79, 7,199,113, 24, 49, 98, 4, 82, 82, 82,190, 43, 40, 40,200,153, 53, -107, 86,219, 65,131, 6,225,195, 15, 63,124,185, 87,175, 94,235,154,235, 46,235,223,191,255,123, 19, 39, 78,252,247,139, 47,190, - 40,191,114,229, 74, 47,141, 70,195,186,187,187, 51,247,238,221, 3,207,243, 8, 15, 15,231,206,157, 59,151,163,215,235,183,220, -186,117,171,119,101,101,229, 47,113,113,113, 77, 58,151, 15, 31, 62,124,251,196,137, 19,195,189,189,189,113,230,204, 25,188,249, -230,155,103,148, 74,101,215, 23, 94,120,193,195,220,220, 28,241,241,241,208,235,245,112,113,113,113, 92,190,124,249,168, 17, 35, - 70,224,252,249,243, 88,187,118,237,111, 78, 78, 78, 95,181, 36,130, 69,181,177,145, 13,193,178, 44,226,226,226,240,220,115,207, - 97,217,178,101, 0,128,223,127,255,221, 98,248,240,225, 81,193,193,193,206, 45, 5,230, 55,229, 84, 61, 43,163, 8, 45, 44, 44, -166,238,219,183, 15,119,239,222,197,213,171, 87, 81, 82, 82, 2,173, 86, 91,191,152,110, 89,105,105,205,116, 13,109,219,162,219, -202,149,248,250,165,151,144,155,155, 11,134, 97,236,154,185,199,191,178,114,229, 74,252,246,219,111,216,188,121, 51,202,203, 31, -223,134, 41, 69,155,158, 76, 0, 0, 32, 0, 73, 68, 65, 84, 20, 10, 4, 6, 6,194,215,215, 23,105,105,105, 0, 96,247,119,229, -243, 31,237, 96, 53, 5, 43, 43,171, 79,119,237,218,101,219,183,111, 95, 86,173, 86, 67, 16, 4,244,233,221, 27,211,103, 76,199, -217, 19, 63,194,165,253, 96,176, 90, 5, 56, 11,179,150, 5,150,193, 18,232, 89, 6,117, 69, 5,228,181,193,164, 55,179,181,160, -148, 66,175,215, 67,173, 86,215,199,246,212, 5, 83,183,232, 30,233,101,113, 73,247,121,247,242,202, 56, 68,198,124, 15,131, 78, - 7, 79,239, 21,168, 54,216,195,220,113, 22, 52,250,147,208,151,214, 56,241, 82,203, 96, 60,124, 88, 8, 16,166, 69,139,147,114, - 70,135, 1,193,160, 53, 94, 96,101,102,102,150,186,184,184,252, 16, 30, 30, 62,109,252,248,241, 56,123,246,236, 92, 0, 24, 63, -126, 60,194,195,195,113,255,254,253, 31,114,115,115, 75, 91, 41,164,236, 81, 51, 39, 76,189,235,229,228,228,228,217,166, 77,155, -249,115,230,204, 9,234,209,163, 7, 14, 29, 58, 4, 0, 23,140,225, 43, 44, 44,252,102,233,210,165,195, 22, 47, 94,236,204, 48, - 12, 73, 73, 73, 1, 33, 4,142,142,142,240,240,240,128,173,173, 45, 74, 75, 75,225,231,231,103,238,225,225, 49,198, 88,129, 85, -107,241,187, 3, 40,171,123, 82,170,125,151, 0,176,162,148, 62,209,168, 86, 65,144,236, 60,119, 38,114,103,160,223, 72,198,179, -173,121, 25,160, 35, 55,162,114,204, 13,188,184,117,141, 23, 33, 9,247, 83, 83, 61,169, 32,160,178,164, 4,250,138, 10, 24, 74, - 74,192, 21, 23,131,184,184, 64,164,213,130,173,174, 6,171,211, 66, 46, 55, 67, 89,126, 62, 8, 99,196,185,212,160, 65,168, 19, - 87, 44,203,214,187, 86,196,220,188,222,225, 98, 89, 22,198, 76, 93, 36,147,201,246,237,222,189,219,217,197,197, 5,159,127,254, - 57,156,157,157,189,135, 12, 25, 82, 56, 96,192, 0,133,189,189, 61,188,189,189, 17, 16, 16,128,139, 23, 47,130,101,217,251, 45, -220,216, 56, 66,200,152,171, 87,175,190, 29, 17, 17,241,146,139,139, 11,153, 54,109, 26, 70,142, 28, 9,153, 76, 6,141, 70,131, -146,146, 18,156, 62,125,154,112, 28,215,183,246, 9,184, 77,187,118,237,246, 17, 66,114,210,211,211,167, 53,230,148, 74,165,251, -102,207,158, 29, 60,102,204, 24,194, 8, 90, 93,232,217, 3, 34,158,231,200,187, 43,191,229,195,174, 92, 98,120,158, 35, 19, 94, - 91, 42,252,122, 33,129,153,251,246,167,188,111,239, 23,144,152,152,232, 60,123,246,236,245, 0, 78, 25,115, 46,137, 68,162,250, -242,108, 12,150,101,155, 28, 52,240, 39,103,132,231,114, 70,205,232,243,199, 3, 19,175,183,115,115,246, 96,234,156, 43, 0, 40, - 47, 47, 71,102,102, 38, 12, 6, 3,236,236,236, 96, 48, 24,140, 90,159,109,205,154, 53, 12, 33,228,253,169, 83,167, 34, 47, 47, - 15,107,215,174,197,202,149, 43, 49,113,226, 68,108,216,176, 97,165,191,191,255, 62, 99,230,127,106,212,141,231,101,109,109,125, -108,253,250,245, 18, 75, 75, 75,196,197,197,161,107,215,174,248,236,179,207, 68, 41, 41, 41,109, 59,119,238,140, 59,119,238, 32, - 39, 39, 39,173,165, 88, 36,169, 84, 58,119,193,130, 5,242,172,172, 44, 76,152, 48, 65,158,150,150,134,219,183,111,131, 82,138, -216,216, 88,238,196,137, 19, 57, 26,141,102, 96, 76, 76, 76, 17,128,239, 90,122,160, 27, 48, 96,192, 2, 47, 47, 47,252,254,251, -239,152, 63,127,254, 57,115,115,243,215, 74, 75, 75,103,233,116,186,207, 70,143, 30,141,190,125,251, 34, 57, 57, 25, 99,198,140, - 65, 96, 96, 32, 46, 92,184,128,101,203,150,157, 49, 55, 55,159,220, 66, 57,220, 11, 11, 11,235, 22, 16, 16, 80,223,187, 33, 22, -139, 97,109,109,141,164,164, 36,116,234,212, 9,203,150, 45,195,214,173, 91,177,100,201, 18, 97,248,240,225,156, 78,167,147,212, - 57,155, 79,136,103, 98, 20, 97,101,101, 37,205,205,205,133,165,165, 37, 66, 66, 66,144,244,219,111,136,156, 61, 27, 25,107,214, -128, 82, 10,135,245,235, 17,244,254,251,232,126,255, 62, 84, 42, 21, 14, 28, 56, 0,134, 97,234, 71,196, 54,113,205,163,172,172, - 12, 62, 62, 62,136,138,138,194,129, 3, 7,240,249,231,159,215,199,178,137,197, 98, 4, 7, 7, 99,248,240,225, 72, 73, 73,193, -238,221,187, 97,105,105, 9, 19,158, 64, 96, 81, 74, 73,195,247, 70,221, 27,131, 2, 2, 2,216,202,202, 74,104,181, 90, 60,124, -248, 16,233,233,233, 80, 40, 20,200,201,207, 68,175,142,149,200, 35, 58, 36,198,166,242, 16,137,110,182,116, 83,212,233,116,136, -140,140, 68,100,100, 36, 4,239,205, 16, 4,161,174,155,162,222,189,202,203,203, 19, 60, 60, 60, 80, 94, 94,206,180,220,120, 85, -159,187, 16, 30, 63, 98,218,248,231,164,161, 97,223,194, 80,205,161, 82,107, 13,181, 86,135, 10,141, 24, 58,217,112, 16,114, 25, - 12, 43, 67, 95,223,142,184,120, 53, 85, 43, 24,244,161,205, 55, 56, 16, 4,125, 17,101,220,167, 16, 33,247, 56, 5,175,125,252, -142, 44, 11,145, 84, 9, 77, 85,133, 64,169,241, 14,140,141,141,205,145, 35, 71,142,140,239,215,175,159,249,208,161, 67, 59,214, -118,223, 25,142, 28, 57,162,182,177,177, 57,210, 74,113,181,138, 16, 44, 3, 5, 35,147, 74,207,219,218,217,253,110, 97, 97,225, - 63, 98,196,136,142, 35, 71,142, 68,135, 14, 29, 16, 18, 18,130,144,144,144, 11,185,185,185,215,140,124,146,184, 73, 8,153,148, -158,158, 62,217,197,197,101,120,207,158, 61,157,219,183,111, 47,183,178,178, 2,203,178, 80,171,213, 40, 44, 44,172, 27,113,213, -222,216,180,182,107,215, 14, 46, 46, 46,239,138,197,226,245,141,158, 84, 56, 0,207,187,184,184,152, 63,201, 73,156,152,152,248, -112,228,136, 33,142, 59,191, 14,247,210,104,120,253,207,191,157,215, 27,116,230,154,164,228,251,173,154,205, 94, 47, 8,231, 98, -162,163, 71,246,239,219, 87,150, 17, 19, 3, 67,105, 41,248,146, 18,136,244,122,136,212,106,176,213,213, 32, 26, 13,218,248,154, - 1,130, 19,110,164,229,112,122,158, 63,111,180,192,170,237, 14,172,107,252,235, 4, 22,211, 64, 96,213,117,127, 53, 7, 39, 39, - 39,179, 81,163, 70, 5,251,249,249,129, 82,138, 79, 63,253, 20,122,189, 94,170,215,235, 97, 48, 24,160,215,235, 81, 81, 81,129, - 99,199,142,225,224,193,131, 17,150,150,150,223, 27, 81,231,156,187,187,251, 60, 65, 16, 28, 56,142,211, 59, 56, 56, 72,126,248, -225, 7,200,229,114, 48, 12, 3, 95, 95, 95,200,229,114,157,171,171,107, 25, 0, 56, 58, 58, 26,182,110,221, 42,154, 53,107,150, -164,137,167,127,223,183,223,126, 91, 92, 39, 26, 93,219,108,224,244,122,189, 0, 0, 93,122, 14,252,163, 91,108, 4,112,247,238, - 93,108,217,178, 5,106,181, 26, 44,203, 74,140, 60, 71, 49,100,200, 16, 12, 31, 62,188,190, 59,208,209,209, 17, 58,157, 14, 28, -199, 25, 45,174, 0,160,110, 18,209, 53,107, 8,131,213,192,190, 32,139,116, 0,245,241, 83,101,101,101,200,202,202,194,131, 7, - 15,234,187, 79, 4,106,220, 83,118,120,120,248, 0, 79, 79, 79, 87,119,119,119,236,217,179, 7, 26,141,230,254, 79, 63,253,212, - 97,218,180,105,104,219,182,173, 61,207,243, 67, 0,156,105,205,121,202,113,220,180,133, 11, 23,154, 59, 58, 58, 98,239,222,189, -248,229,151, 95,242,123,246,236,233, 56,115,230, 76,120,123,123, 35, 49, 49, 17, 95,126,249,101,145, 32, 8,175, 24,193,149,118, -227,198, 13, 39,189, 94,143,156,156, 28, 8,130,128,228,228,100,228,228,228, 8,151, 46, 93,202,209,106,181,117,226,170, 69,120, -122,122, 42,253,253,253, 29, 83, 82, 82,112,244,232, 81, 24, 12,134, 53,137,137,137,122,107,107,235,163, 59,118,236, 88,217,190, -125,123,155,129, 3, 7,162,111,223,190,160,148,226,228,201,147,248,232,163,143,206, 40, 20,138,215, 18, 19, 19,245, 45,184,234, -175,174, 91,183,238, 3, 59, 59,187, 9, 83,166, 76, 97,252,253,253, 17, 29, 29, 13,158,231, 49,100,200,144,122,113,117,246,236, -217, 31,206,156, 57,243, 34, 0,137, 82,169,180, 53,102, 90, 9, 66,200,243, 0,234, 28,130, 42, 74,233,175,207, 90, 67,173,213, -106,145,146,146, 2, 39, 39, 39,120,247,235, 7,239,244,116, 92,172, 13,106, 31,188,116, 41, 42,213,106,236,219,183, 15, 49, 49, - 49, 96, 89, 22, 29, 58,116,104,249,126,167,215,227,222,189,123, 40, 44, 44,196,184,113,227, 48,101,202, 20,124,242,201, 39,208, -235,245, 88,181,106, 21,138,139,139,177,103,207, 30,164,166,166, 66, 36, 18, 65,169, 84,254,109,249,107, 78,131,252,163, 29,172, - 58, 97, 36, 8, 2, 84, 42, 21,162,162,162,144,150,150, 6,165, 82, 9, 13, 39, 8,219,174,199, 11, 12, 17,171, 56,138, 8,194, -139, 87,181, 84,161, 60,207, 35, 34, 34, 2,119,239,222,133, 85, 39, 90, 23,152, 8,173, 86, 11,181, 90, 93,231, 92,105,146,146, -146,242,202,202,202,108, 91, 74,219,195, 78,204,161,208,208,243,139, 2,124,187,121, 13, 29,244, 17, 78,157,250, 16,165,229,229, - 80, 87,139, 80,169,209, 67,173,165,112,181,232,128,160,158,126, 40, 40,210, 33,229,118, 76, 78,129,196,166,217, 39, 49, 74,176, -125,210,248, 33,139, 63,120,111,142, 83, 87,239,229,114,154,255, 43,104, 89, 44, 69,221,124,149,132,129, 84,105, 15,136,100, 52, - 58,169,176,242, 98,130,166,144, 18,108,111,133, 32, 80,187,187,187, 31, 92,184,112,225,250,168,168, 27,142, 0, 16, 29, 29,157, -159,151,151,247,126,118,118,182,218, 88, 30, 66,136, 53, 33, 88, 38, 8,148,173, 21,105,195, 22, 47, 94,236,218,175, 95, 63,189, - 88, 44, 70,102,102, 38, 62,249,228, 19,132,135,135, 31,205,205,205,221,217,154, 89,157, 41,165,241, 0,226, 9, 33,107, 19, 18, - 18,134, 14, 25, 50,100, 67,167, 78,157,220, 57,142, 67, 89, 89, 25, 74, 74, 74,144,154,154,138,170,170,170, 22,151, 29,201,204, -204, 60,159,149,149, 53,116,222,188,121,232,215,175,223,140,253,251,247,191,218,208, 6,238,209,163,199,245,177, 99,199,186, 91, - 89, 89, 73, 52, 26,141, 33, 57, 57,249,114,171, 30, 51, 61, 60,250, 47, 90,180,168,231,220,185,115, 81, 89, 89,137, 3, 7, 14, - 96,231,206,157,240,240,240,232,159,149,149,117,181, 21, 2,240,200, 47,161,161,139,123,118,238,220,169,173,167, 39, 82,206,157, -131, 68,175,135,152,227,192, 86, 85, 65,108,168, 70,187, 0,115, 72,228,246,200,205,208,224,232,237,219, 15, 40,165, 45, 78,144, -169, 31, 50, 4,134,228,100,176, 44, 11, 73,112,112, 77,172,149,153, 25,152,159,127,254, 67, 88,173, 94, 13,106,110, 14, 33,184, -229, 16,132,135, 15, 31, 86,121,121,121,197,222,185,115,199,191,115,231,206, 88,179,102, 13,178,178,178, 64, 41, 69,126,126,190, - 54, 63, 63, 95, 85, 92, 92,156,201, 48,204, 47, 57, 57, 57,251,140, 93,138, 68, 16, 4,135,147, 39, 79,214, 57,138,248,253,247, -223,225,234,234, 10, 43, 43, 43,148,151,151, 99,218,180,105,210, 15, 62,248, 0, 0, 16, 27, 27, 43, 86, 40, 20, 77,187,186, 6, - 3,101, 24,134,100,101,101,233,205,204,204,136,173,173,173, 72, 38,147,161,186,186,186, 94,104,221,189,123, 23,167, 78,157, 66, -118,118, 54,108,109,109, 25, 27, 27, 27,240, 60, 95, 98,100, 90,193,178,236,159, 2,218, 91, 43,174, 26, 98,245,106, 42, 16, 16, -210, 94,196,222,204,201,203, 26,234,234,228,142,135, 15, 31, 34, 51, 51, 19,153,153,153,200,202,202,130,151,151, 23,210, 31,220, -135, 84, 34,190,105,228,117,244,106,175, 94,189,160,209,104, 16, 27, 27,203,139,197,226, 87, 19, 18, 18, 34,212,106,181,184,103, -207,158,120,240,224,193,203,173, 21, 88, 12,195,184,155,153,153, 65,163,209,224,228,201,147,197, 74,165,178, 75, 92, 92,220,196, -212,212,212, 79, 60, 60, 60, 44, 30, 60,120,240, 80,175,215,143,138,142,142, 78, 53,194, 29,121,227,223,255,254,247, 97, 65, 16, -218,255,235, 95,255, 98,199,142, 29,107,238,230,230,134,168,168,168,170,234,234,234,143,141, 21, 87, 0,144,158,158, 94,121,229, -202,149,252,110,221,186, 57,186,184,184, 64, 44, 22,175,115,117,117,253,216,220,220,124,227,232,209,163,109, 66, 66, 66,240,227, -143, 63,194,220,220, 28,233,233,233,185,201,201,201,219, 29, 29, 29,119, 26,227,224, 69, 69, 69,165, 3,120, 61, 40, 40,104,227, - 23, 95,124,177,140, 16,242,234,185,115,231,234, 99,239,182,108,217,130,179,103,207,254,208,174, 93,187,217, 33, 33, 33, 51, 91, - 89,245,102,148,210,219,181,247,212,127, 53,248,254, 89,137,205, 50,232,116, 58,216,217,217,161,160,160, 0,249,249,249,104,211, -166, 13, 6, 12, 24, 0,131,193,128,159, 78,159,198,149, 90,177,101,111,111, 15, 75, 75, 75,196,199,199,131, 82,122,167,217,206, - 31,189,190,190, 55, 34, 62, 62, 30,142,142,142, 88,178,100, 9,116, 58, 29,126,248,225, 7,196,197,197,129, 97, 24, 56, 56, 56, -192,194,194,162, 46, 70,235, 14, 76,120,122, 2,171,118,205,172,241, 61,123,246, 20,165,166,166, 34, 53,181,230,154,173,170,170, -226, 68, 44, 78, 60,188,249,211,235,205, 8,128,238,141,230,135,137, 88,189,122,117,159, 25, 51,102,192,205,205, 13,187,111,232, -241, 32,147,135, 94,175, 71,110,110, 46,174, 93,187,198, 15, 24, 48,128,229, 56,174,146,231,249, 49, 89, 89, 89,175, 17, 66,242, -154,229, 12, 9,225, 29,124, 38, 76,218,177,235,155,139, 51,102,204,176, 25, 59,110, 39, 98, 19,111,161, 68,237, 8, 0,112,181, - 55, 71, 80,231,127, 35,191,168, 26,103,127, 59, 85, 74,133,170,201, 52,238,168,161, 57,206,164, 52,250, 93,247, 54,228,210,212, - 57,239,191,227,219,221,115,248,187,243, 94,180,235,228, 62, 78,134,210, 72, 42,179,172,128,212,220, 1,119,210, 10, 53,191, 70, -168,138, 10,203,184,223, 9,143, 47,147, 50,105,122,115,156,141, 81, 92, 92,124, 85,165,202,113,104, 48,107,187,131, 76, 38,191, -218,130,160,106,150,179,110, 58,133, 51,103,206,224,202,149, 43,250,187,119,239, 94, 34,132,156, 84,169, 84, 55,159,148,147, 82, - 90, 1,224,184,133,133,133,160,213,106, 63, 28, 53,106,148, 23, 33, 4,247,238,221,195,133, 11, 23,194, 10, 11, 11, 63,110,137, -179,170,170,106,193, 59,239,188,179,125,232,208,161,195,106, 71, 60, 73, 83, 82, 82, 64, 41, 69, 96, 96, 32,250,246,237,219, 94, -167,211, 9,215,175, 95, 47, 62,125,250,244, 81,173, 86,187,181, 53,233,204,202,202,186, 26, 24, 24, 88,211, 13,173,209, 32, 59, - 59, 27, 28,199, 65,165, 82,181,170, 60, 67, 66, 66,248,160,160,160,151,191,248,238,187,139,111, 79,152, 96,211,123,236, 88,228, - 68, 68, 64,167, 82, 65,202,243,144, 74,228, 48,168, 29, 81,156,163,197,183,183,111,151,235,120,254,181,198,141,195,227,210, 89, - 51,167, 25,169, 31, 45, 72,148,202,154,184,171, 6,163, 8,169, 82, 9, 70,169, 4, 35,145,252,201,193,122, 28,167, 70,163,153, - 60,103,206,156,200, 95,127,253,213,250,181,215, 94,195,216,177, 99,227,203,203,203, 71, 22, 22, 22, 26,213,183,253, 56, 78,134, - 97, 10,158,127,254,121,135,234,234,106,238,213, 87, 95, 21, 21, 22, 22,194,219,219, 27, 0, 80, 81, 81,129,223,126,251, 13,157, - 59,215,132,161,220,190,125, 27,221,186,117,107,146, 51, 62, 62,254,199,253,251,247,207,155, 56,113,162,132,231,121,190, 54, 40, -158, 56, 59, 59,179, 81, 81, 81,194, 47,191,252, 2,141, 70, 3,119,119,119,166, 77,155, 54, 36, 42, 42, 74,184,127,255,126, 36, - 33,100,165, 49,245, 78, 41,125, 68, 92,137, 68, 34, 84, 85, 85, 25, 37,174,154, 59,151, 40, 40,117, 80,147, 53,175, 47,153, 20, -116,254,104,164,210,220,220,188, 62,230,167, 99,199,142, 16,137, 69,216,251,211, 54,117, 89, 69,209,218,150, 56,131,131,131,101, - 98,177,120,172,175,175, 47,162,163,163,161,211,233, 46,159, 63,127,254,206,144, 33, 67,206,199,199,199,143,242,246,246, 6,195, - 48,207, 7, 7, 7,155,135,133,133,169,141, 77, 39,165, 52, 45, 59, 59, 27,158,158,158,176,182,182,182, 52, 24, 12, 92, 92, 92, -220,247, 61,122,244, 56,145,154,154,234, 41,147,201, 30, 68, 71, 71, 87, 26,147,247,152,152,152, 44, 0,253,131,131,131, 69,183, -110,221,122, 48, 96,192, 0, 72,165, 82,120,121,121, 41,239,221,187,247, 26,154,153, 58,162, 49, 39,165, 84,112,115,115,219,113, -227,198,141,181,190,190,190,120,245,213, 87,159,139,142,142,126,206,199,199, 7, 29, 58,116, 64,120,120, 56,194,194,194,142, 10, -130,240,118,110,110,174,182,185, 7,190,166,242, 94, 27,180,254,134,191,191,255, 75, 34,145, 8, 22, 22, 22,108, 78, 78, 14,123, -238,220, 57, 80, 74,223,106,110,208, 64, 75,247,186,198, 48, 38,230,170,181,156, 79,114,109, 50, 12,243,209,244,233,211,191,154, - 59,119,174,188, 87,175, 94, 40, 43, 43,171, 23,253,191,254,250, 43, 4, 65,128,157,157, 29,236,236,236,112,247,238, 93,156, 56, -113, 66, 87, 90, 90,186, 67, 46,151,127,214, 28,231,180,105,211, 30,225,172, 19,111,167, 78,157,170, 31, 68, 98,103,103,135,212, -212, 84, 28, 63,126, 92, 91, 90, 90,186,141,227,184,173,127,103,222,255,231, 4, 86,105,105,233,123, 43, 86,172, 24, 52,107,214, - 44, 91,141, 70,195,218,219,219, 67,165, 82,113,231,206,157, 43,169,172,172,124,175, 53, 7, 99, 89,118,164, 74,165,154,178,104, -209,162,181, 94, 94, 94,182,175,191,254, 58, 22, 44,232, 12,157, 78, 7,153, 76, 6,137, 68,242,245,169, 83,167, 38, 90, 91, 91, -231,156, 60,121, 50, 11,192,102, 99,120, 11,226,143,221,115,246, 29, 55,252,171,175,118, 30,246, 11, 12,242,104,231,233, 41,235, -239, 97, 5,189,129,199,195,252, 34, 92,186,150, 84,157,146, 24,151, 13, 78, 59,245,225,173,147, 73,198,112,222,170, 17, 76,239, -244,236, 72,124, 94,157,191,101,209,128, 94, 29,122,191,245,106,160, 77,185, 80, 70, 79,252,114,183, 56, 45,171,242,134,136,197, - 23,183,211,105,252,147, 20,188, 86,171,213, 55,238, 9,210,106,181,250, 86,218,170,165,132,144, 79, 24,134, 44, 3, 5, 35,149, - 74, 35,119,238,220,121, 0, 64, 14,165, 52, 82,165, 82,105,158,214,137, 82, 81, 81,241, 19, 33, 36,246,222,189,123,139, 25,134, -177,230,121, 62,233,225,195,135, 63, 80, 74, 91,154, 37, 28,181,147, 93,190,232,238,238, 62,240,234,213,171,155, 71,143, 30,221, -253,133, 23, 94, 64, 94, 94, 30, 68, 34, 17,226,227,227,117,167, 79,159,142, 44, 45, 45,253,136, 82, 26,213,218,180,213, 58, 88, -152, 55,111, 30, 42, 42, 42,112,244,232, 81,156, 61,123,182,213, 14, 86,221, 13, 60, 40, 40,104,248,250,125,251,142, 60,223,185, -115,155,206, 29, 58, 72,218,118,235, 6,133,153, 25,202,138,138, 16,159,145,203,127,159,156,156,174,225,184,169, 49, 49, 49, 70, -157, 75, 6,131, 1, 54, 54, 54,160,148, 66,188,124, 57, 64, 8, 40, 33,168,174,157,197,155,227, 56,136,251,244, 1,101, 89,148, -107, 52,208,235,245,144,203,229,205,114,230,228,228,228,120,120,120,188,246,214, 91,111,253,122,224,192, 1, 38, 56, 56,184,231, - 47,191,252, 66,255, 74, 29,103,103,103,123, 1,128,171,171,235, 67, 75, 75, 75,209,235,175,191, 14,131,193,128,170,170, 42,148, -151,151,163,168,168, 72,183,104,209, 34, 41, 0, 72,165, 82,195,200,145, 35,155,188,127,168, 84,170, 21, 30, 30, 30,103,190,250, -234,171,229,179,102,205, 10,154, 56,113,162,152,101, 89, 33, 39, 39,135, 59,114,228, 8,233,212,169, 19, 35,147,201, 72, 68, 68, -132,112,251,246,237,235,148,210,143,115,114,114,140, 94,105,160,206, 85, 23, 4,161,126,254,170,230, 70,153,181, 6, 5, 55,105, -188,103, 95,235, 79, 7, 79, 10,252,247,250,165,159,155,219, 59,216,131,227, 56,164,101,222,199,119, 39,182,171,203,171, 75, 63, - 41,188,213,242, 26,156, 82,169, 84, 97,107,107,171,148,203,229,136,138,138, 2,128,163,181, 13,211,127, 98, 99, 99, 71,117,238, -220, 25,214,214,214,138,130,130, 2, 47, 0,113,173, 72,226,125,149, 74, 5,131,193, 0, 7, 7, 7, 81, 74, 74, 74, 27, 0,105, - 9, 9, 9, 85, 0,110, 63, 73,158,195,194,194,184,254,253,251,223,189,117,235, 86, 96,187,118,237, 72,100,100,164, 90,171,213, - 30,105, 45,143,147,147,211, 87,167, 78,157,234, 71, 41, 29,230,231,231,135,182,109,219,214,185,246,184,124,249,114, 72, 78, 78, -206,156,167,180,184, 51, 37,132,160,162,162,130,173, 45, 83,189, 82,169,124, 82,222,170, 6,206, 85,213,179,214, 72,103,103,103, - 31,113,118,118, 62,191,122,245,234, 21, 94, 94, 94,111,204,153, 51,135,245,246,246, 70, 89, 89, 25, 44, 45, 45,225,226,226,130, -156,156, 28, 28, 56,112,128, 47, 40, 40, 56,200,178,236,198,220,198, 35, 84, 90,193,105, 99, 99, 3, 23, 23, 23,100,103,103,227, -192,129, 3,124,126,126,254,119, 60,207,111,202,207,207,207,135, 9,173, 19,203,198,244, 26,213, 78,211,240, 41,207,243,131,234, - 92,173,210,210,210,247, 90, 90,223,174, 41,133, 27, 28, 28, 44, 82, 40, 20, 83, 10, 11, 11,215,186,187,187,219,190,254,250,235, - 88,181,106, 21, 18, 18, 18,204,198,143, 31,111, 43, 18,137,184,144,144,144,242,214, 62, 49,212, 45,246, 12,145,100, 20,168,208, - 29, 0, 1,195,182,184,216,179, 49, 74,188, 71, 7, 50,152,167,152, 93,243, 7,236, 73,188, 79,195,254,234,147, 77,195,197,153, - 41, 69,139, 11, 59, 55,197,249,184, 32,247, 39,125, 90,250, 59,158,192, 26,253, 70, 92, 92, 92, 38, 73,165,210,175, 38, 77,154, -100,190,127,255,126,109,126,126,254, 34, 0, 71,155, 91, 51,176,165,116,186,186,186, 86,181,109,219, 22,182,182,182, 40, 46, 46, -198,131, 7, 15,160, 82,169,204,158, 52,157, 13, 23,123, 70,237, 98,207,212,136,197,158, 27,115,246,238,221, 59,195, 96, 48,180, -106,241, 85,177, 88, 92, 36,147,201,218,215, 29,163,185,116,186,185,185, 77,114,119,119, 95,151,147,147,243,115,118,118,246,178, -167, 81, 71,110,110,110,189, 9, 33, 39, 4, 65,144, 55,118,184,234, 68,152,139,139, 75, 27,169, 84,250, 72,144,123, 83,156, 30, - 30, 30, 3,228,114,249,138, 41, 83,166,244, 26, 59,118, 44, 19, 25, 25,137,203,151, 47,243,145,145,145, 55, 12, 6,195,230,172, -172,172, 43,173, 73,231,164, 73,147, 18,244,122,125, 91, 35,203,178,128, 16,242,200,194,217,198,158,243,246,190,196,223, 74, 97, -247,161, 78,111,232,193, 16, 80,177, 88,156, 80, 86, 81,180,246,113,226,234,113,156,181,211, 51,252,100, 99, 99, 51,180,164,164, -228, 22,199,113,193, 97, 97, 97,213,254,254,254, 98,107,107,235,195,150,150,150,207,151,151,151, 95,237,215,175,223,168,213,171, - 87, 11,198,214, 81, 80, 80, 80,151,246,237,219, 71,173, 88,177,130,172, 91,183, 14, 89, 89, 89,254,215,175, 95, 79,254,171,245, -222,187,119,239,182, 44,203,238,227,121,190, 61, 33,100,255,245,235,215, 63, 50, 70, 12, 53,230,236,214,173,155,164,172,172,108, -190,187,187,251,219, 78, 78, 78,142, 15, 31, 62,204,204,202,202,250, 44, 55, 55,119,191,177,226,202,152, 58,242,247,247, 47, 1, - 32, 5, 0, 99,226,173,254,127,223,235,254, 14, 78, 15, 15,143,246, 28,199,173,246,245,245, 29, 63,115,230, 76,146,148,148,132, -208,208, 80,164,167,167,255,194, 48,204,234,236,236,236,123, 79,131,243,220,185,115, 52, 61, 61,253,184, 72, 36, 90,155,149,149, -149,246,255, 43,239,255,147, 2,235,239, 58,249,234,132, 86, 73, 73,201, 42,165, 82,121, 55, 52, 52,244,249,103,237,132,254,187, - 57, 9, 33,142,181,110, 84,254,255, 82,222, 9, 33, 34,185, 92, 30,160,213,106,239, 80, 74,203,159, 18,231, 42, 0, 43, 1,108, -164,148,110,248, 95, 59,151,158,117,206, 90,161,181,136, 82,138,234,234,234, 47,154, 19, 86,255,164,188, 15, 29, 58,212,227,252, -249,243, 89,141,239,125,114,185,220, 90,171,213,150,134, 61,193,131, 95, 64, 64,192, 71, 44,203, 78,226, 56,238,104, 76, 76,204, -186,103, 49,239,132, 16,210,182,109, 91,105,115,147,220,154,174,163, 39,227,116,113,113,241, 3,176, 28,168, 89, 70, 41, 43, 43, - 43,250,105,113, 18, 66,120, 0, 31,171, 84,170,248,255,223,121,255,167, 65,244,223, 60,120,237,141,101, 63, 90,177, 24,239, 63, - 13,198, 8,171,127,104,190, 57, 0,215,159, 50,231, 6, 0, 27, 76,151,245,179,137, 90, 65,117,229,127, 45,223,141,197, 85,131, -123, 95,225,147,114, 70, 71, 71,127, 4,224,163,103,252, 26,167, 0,170, 77,103,254,211, 71,110,110,110, 44,128,137,207, 58,231, -255, 58, 24, 83, 17,152, 96,130, 9, 38,152, 96,130, 9, 38, 60, 93, 16, 0,221,155,120,250, 48,218,250, 35,132,116,111,237,129, -141,232,238, 49,113,154, 56, 77,156, 38, 78, 19,167,137,211,196,249, 15,227,108,137,251,159,210,245,248, 95,141,193, 50,113,154, - 56, 77,156, 38, 78, 19,167,137,211,196,105,226,252, 39,194,212, 69,104,130, 9, 38,152, 96,130, 9, 38,152,240,148, 97,116,144, -123,143,142,196,141, 55, 96, 12, 88,140, 4, 0,240, 56,195,138,113, 50,225, 30,205,121,210,131, 59, 59, 59,119, 33,132, 76,101, - 24,102, 34, 0, 65, 16,132, 16, 66,200,247, 42,149, 42,245, 73, 57,131,130,130,186,112, 28,247, 10, 33,228, 69, 0,160,148,254, - 36, 18,137,254, 19, 25, 25,105,212, 12,180, 10,133, 34, 67,171,213, 58, 0,128, 92, 46, 47,208,106,181,158,168,157,117,124,226, -196,137,164,176,176,144, 0,192,165, 75,151,234,214,218,164, 45,205,144, 46,147,201, 50,116, 58,221,159,134,234,139,197, 98,189, -181,181,117,169,157,157, 93,169,131,131, 67,137, 68, 34,185, 93, 88, 88,120, 41, 62, 62, 62,154, 82,154,215,154,124, 15, 26, 52, -232, 3,153, 76,182, 80,167,211,237, 14, 11, 11,251,224,239, 62,113, 8, 33,129, 30,174,206,187, 13, 6,189,144, 87, 80,252, 17, -165,244, 84,107,254,223,177, 99, 71,169,155,155, 27,105, 60,180,250,139,185,196,153, 50, 96, 22,239,106,121,126,173, 22,210,231, - 39, 22,139,231, 57, 57, 57, 13,207,206,206,142, 5,176,202, 52, 11,177, 9, 38,152, 96,130, 9,207,132,192,242,247, 39, 10,109, - 57,134, 66,192,152, 78,158, 78, 65,139,231, 77,180, 11,232, 51,194,172,170, 74, 79, 47, 95, 56, 21,248,237,225,147, 11,254,213, -158,220,224, 9, 78, 42,172, 16, 26, 19, 67,155,156,216,242,203,119, 69, 25, 60,207, 59, 0,128, 0,145,250,243, 16,135,123,129, -129,129, 62, 75,151, 46, 69, 80, 80, 16, 4, 65,192,165, 75,151, 22,127,254,249,231,139, 93, 92, 92,162, 89,150, 61, 36,145, 72, -126, 76, 75, 75,107,113, 8,127, 96, 96,160,187, 32, 8, 19, 1,188,220,187,119,239,110,111,190,249, 38,188,188,188, 80, 93, 93, -141,200,200,200,165,135, 14, 29, 90,234,239,239,159, 8,224, 7,134, 97,126,140,138,138,202,110,138, 75,171,213, 58,212,233, 37, - 66,136,195,156, 57,115,212, 6,131, 1, 58,157, 14, 6,131, 1, 74,165, 50, 81,171,213,222,236,223,191,127,180,133,133,197,181, -211,167, 79,223, 5,192,119,117, 82,244,106,235,110, 63,242,215,232,204,143, 26,115,234,116, 58, 7,109,100, 36,192,243,224, 30, - 60,128,118,232, 80,212,174, 27, 39, 97, 71,141,114,228, 24,198,145, 84, 86,222,215,126,255,253,174,206,157, 59,215,207, 99,210, - 28,103, 35, 49, 65,230,205,155,183,116,249,242,229,226,201,147, 39,191, 30, 28, 28,188,166,169,161,223,198,114,182,112, 60, 89, -239,128,158,191,157, 60,118, 84, 14, 66, 48,126,252,196,125,132,144,217,148,210,159, 26,239,235,235,235, 59, 68, 34,145,124,196, -113, 92,172, 72, 36,250, 32, 50, 50,178, 34, 32, 32,224,152,189,189,253, 72,157, 78, 7, 63, 63,191,136,216,216,216,161, 0,176, -235, 13,178, 70, 10, 44, 6, 15,178,251, 13,178, 99,238,183,116,249, 19,166,111,206,140, 25, 51, 62,219,176, 97, 3, 91, 59, 9, -223,176,174, 93,187,122, 17, 66, 2, 40,165, 26,211,101,111,130, 9, 38,152, 96,194,127, 77, 96,117,233, 64, 94, 49,147, 73,150, - 44,159,255,130,243,168,145,163, 45,108,221,253, 68, 32,108,141, 35, 99, 9, 50,126,234, 82,243,113,147,223, 49, 79, 79, 12,119, - 59,253,235,169, 97,223,159,184,144,219,165, 3,217,122,231, 62,253,207,227,248,120,158,119, 88, 50,235, 77, 0,192,214,189,187, -204,147,147,147,125,148, 74,229, 35,203,130,140, 24, 49, 2,195,134, 13, 67,102,102,102,192,177, 99,199, 2,246,237,219,247,137, -187,187,251,234,236,236,236,109, 77,139, 64,255,117,110,110,110,139,151, 46, 93, 74, 2, 2, 2, 32,147,201,234,127, 51, 55, 55, -199,144, 33, 67, 48,100,200, 16,228,229,229,117, 11, 11, 11,235,118,248,240,225,181,254,254,254,159,199,196,196, 24,229,242,188, -246,218,107, 40, 42, 42, 66, 81, 81, 17,202,203,203,115,213,106,117,129, 86,171,205,149,203,229,169,131, 7, 15,190, 7,128,247, -118,181,232,228, 96,111,119,108,211,250,181, 64, 51, 67,167, 85,125,251, 2, 0, 52,183,254,232,182, 54,163,148, 66, 34, 73, 17, -229,230,254,220, 80, 92, 25,203, 89, 43, 48,109,210,210,210, 4,137, 68,130,206,157, 59,139, 83, 82, 82, 50,130,131,131,191, 13, - 11, 11, 91,211,112,191,214,112,182,128,128,143,222, 91, 32, 41,188, 31,135, 59,215,206, 97,156,191,187, 60,246,118,202,106, 0, -127, 18, 88, 44,203, 46,255,245,215, 95,125,110,220,184,225,179,122,245,234,142,254,254,254, 99, 1, 12, 62,115,230, 12,196, 98, - 49,134, 12, 25,210, 39, 56, 56,216, 78,194, 21,140, 25,235, 69,150,206, 95, 60,143, 0,192,158,237,123,222,218,185,128,236,152, -191,131,102,183, 66, 88, 73, 88,150,253,252,192,129, 3, 51,166, 77,155,134, 7, 15, 30,224,234,213,171, 80, 42,149, 88,183,110, - 93,219,165, 75,151,174, 1,240,158,233,178, 55,193, 4, 19, 76, 48,225,191, 38,176, 88,138,247, 34,111, 36,118, 98,184, 34, 66, -196,150,143,221,135, 97, 68,232,208,125,144,104,158,231,191,172, 71, 13, 27,110,249,210,140,197,239, 1,248,143, 49, 7,182,176, -176,104,130,147, 65,187,118,237,240,238,187,239,194,199,199, 71, 58,125,250,244,247, 1,108,107,134,106,113, 72, 72, 8, 97, 89, - 22, 44,203, 54,185,147,179,179, 51,134, 13, 27, 6,103,103,103,242,222,123,239, 45, 6,240, 88,129, 37,151,203, 11, 8, 33, 14, - 0, 96,107,107,139, 93,187,118,193, 96, 48, 8, 85, 85, 85,183,170,170,170,226,245,122,125,148, 76, 38,187,126,249,242,229,123, - 0,208,201, 93,225,106, 38, 53, 59,185,103,215, 54, 24, 42, 30,218, 52,117,124, 62,251,207, 58,129, 82, 90,198, 40, 20, 15,196, -233,233,199, 36,101,101, 49,117,223, 27,203, 9, 0,253,251,247,183, 54, 55, 55,191,180,115,231, 78,177, 68, 34,193,236,217,179, -205, 85, 42, 21, 62,253,244,211,249, 0,214, 60, 9,103, 51, 2,198,106, 64,223,128,228,175, 54,127,104,225, 23,212, 31,215,127, -220,137,210, 82, 53, 42, 43,170,192, 11, 84,246,184,255, 80, 74,139,239,221,187,135, 81,163, 70, 33, 55, 55,119,224,238,221,187, -119, 11,130, 64,212,106,117,253, 66,173, 74,165,242,238,160,190,193, 82,230,254,218, 39, 62,145, 9, 33, 14,150,150,150, 63,156, - 61,123, 54, 48, 48, 48, 16,215,175, 95,199,253,251,247,177, 96,193, 2,221,130, 5, 11, 36,211,167, 79, 39, 75,150, 44,121,147, - 16,242, 19,165, 52,194,116,233,155, 96,130, 9, 38,152,240, 95, 17, 88, 0, 88,214,172, 35,209, 93,124, 73, 96,237, 7, 17,214, -101, 52, 33,114,215, 71,118, 80, 23,101, 32, 57,226, 0,205, 72,248,133,182,241,153, 74, 0,176,141, 26,215, 63, 22,151,100,217, -194,173,123,119,217, 3,128, 84, 97,135,144,144, 16, 12, 29, 58, 20,199,190,234,134,202,178,154,101,147,148, 86, 46,152,240,118, - 34,146,147,147, 17, 30, 30, 94,183,208,172,184, 41,206,186,182, 21,209,209, 40,232,215, 15,210,226, 98,152,153,153, 65, 42,149, - 62,178, 67, 74, 74, 10, 46, 95,190,140, 7, 15, 30,160, 67,135, 14, 53,255,105,130, 83,163,209,180,155, 54,109, 90,225,212,169, - 83, 21,251,247,239, 71, 90, 90,154,115,100,100,100,197,227, 10,200,167,157,181,149, 68,144,156,220,187,235,115, 49,244,106,155, -228,168,112,252,107,212,220,199,166, 83, 59,104, 80,189,115,165, 8, 10, 2,227,233,169, 39, 18, 73,106,241,158, 61,195,253,252, -252, 12,173,229, 28, 48, 96,192, 74,158,231,223, 18, 4, 65,182,119,239, 94,177,189,189, 61,179,117,235, 86,195,185,115,231,120, - 74, 41, 35,145, 72,118, 62, 73, 58,155,131, 88, 36,250,240,179,213,239, 89,152, 49, 6,196,254,250, 61,178, 31,100,226,230,221, - 28,195,127,174, 38,241, 58, 3, 55,239,113,229, 41, 18,137,222, 94,177, 98,133,239,222,189,123, 93,222,120,227, 13, 72, 36,146, -151,139,138,138,112,244,232, 81,152,153,153, 97,215,174, 93,104,215,174,157,148,231,121,196,157, 42,194,174, 47,119, 0,148, 66, -107,144, 28, 89,114,128,203,110,166,222, 27,138,171,110,109,219,182, 61,121,241,226, 69, 71, 55, 55, 55,132,133,133, 33, 47, 47, - 15, 46, 46, 46, 88,176, 96,129,116,243,230,205,135,203,203,203,199,111,216,176, 65,158,144,144,176,159, 16,210,137,214,224,169, -143,128, 49,113,154, 56, 77,156, 38, 78, 19,231,223,130, 64, 0, 14, 0, 10, 0, 68, 53,218, 70,237,103, 60,102,187,176,182,205, -183,107,192, 85,136,154, 24,106, 7, 0, 60,128, 27, 0, 74,254, 22,129, 69, 8, 25, 4, 32, 12,192, 26, 74,233, 71,143,236, 33, - 24,192,231,159,167,124,254,239,148,177, 9, 32,172,203, 56, 82, 82,166,197,157,136,239,104,110,242, 69,138,218,120, 37,189,174, -162,217, 3,125,121,220,221, 91, 42,149, 22,223,185,115, 7,191,255,254, 59, 0,224,248,241,227,168, 44,203, 69,131,174, 67,124, -246,217,103,224, 56, 14, 12,195, 64,175, 55,110,237, 99, 90, 93, 19, 39,173,211,233,160,211,233, 64,122,245,130,120,224, 64,220, - 91,176, 0,231,207,159, 71, 65, 65, 1, 36, 18, 9, 36, 18,137, 81, 11,194,114, 28, 71,242,243,243,161,213,106, 5,174,137, 63, -184,187, 19,185, 5,103,118,108,219,231, 27, 44, 44,148,102,142,209,231,126,194,131, 7, 77,199,165, 27, 12,134, 63, 92,186, 14, - 29, 52, 16,137, 98,197,113,113,255,105, 40,174, 90,195,201,243,252, 59, 71,142, 28, 49, 47, 41, 41,129, 68, 34,193,199, 31,127, -108,184,114,229,138,138,227,184,129, 49, 49, 49, 69, 79,154,206,230, 96,239,224,112,230,165, 41,115,231,174,159, 53, 12, 26,181, - 22, 39,174, 36,226,247,132,244, 73, 0, 34, 40,165,234,199,253, 39, 50, 50, 50, 63, 40, 40,232,165, 69,139, 22, 93,216,183,111, -159, 98,202,148, 41,224,121,190,254, 85, 85, 85,133,139, 23, 47,226,202,149, 43,136,137,185,153, 45,161,157,127,119, 54,171,248, -225,251,179,198, 45,210, 76, 8,113,241,244,244, 60, 29, 25, 25,105,111,102,102,134,208,208, 80,148,150,150, 98,254,252,249,245, -206, 85,105,105,233,196, 93,187,118, 77,206,200,200,216, 24, 30, 30, 94, 92,251, 32,192,193, 4, 19, 76, 48,193,132,255, 58,154, -213, 32,127,192,129, 16,114,138, 82, 58, 26,192, 80, 0,210, 6,219, 32,132,156,170, 21,126,143,108, 47, 95,190,124,229,166, 77, -155,110,215,109,215,237,179, 98,197,138,127,109,222,188,121, 99,159, 62,125,142, 94,187,118, 45,237,111, 19, 88, 0,194, 40,165, -164, 5, 25, 3,161, 36,138, 10, 37, 81,244,247,179, 41,127, 22, 37,213,101,173, 62,184,135,135, 7, 18,147,254, 36,110,234, 63, - 27, 43,176,208,175, 31,144,155, 11,184,184,212,164, 52, 55, 23,122, 0, 95,175, 88, 1,169, 84, 90,223, 21, 85, 43, 76, 90,164, -211,233,116,164,160,160,128,106,181,218,132,234,234,106,238, 49, 39, 3,233,232,100,249,253,234,229, 11,218,120,118,240,114,137, - 60,253, 3,210,210,114,240,240,225,227,235, 71,169, 84, 86, 26, 12, 6,101,109,197,198, 19,134, 41, 82,196,197,253, 8, 32,241, - 73, 57, 9, 33,103,166, 76,153, 50, 58, 40, 40,136,116,233,210, 69,122,225,194, 5,142,231,249, 71,196, 85,107, 57,155,131,171, -171,235,208,231,159,127,254,248,156, 57,115, 48,110,228, 80, 76, 30,208,141,102,231,151,106, 0, 92,104,110,145,230, 90,145,117, -203,223,223,127,242,196,137, 19,191,108,223,190,189, 7, 0,248,248,248, 96,242,228,201,248,226,139, 47, 16, 26, 26,186, 31,192, -222,152,152,152,184, 86, 94,148,102, 54, 54, 54, 63, 95,184,112,193,222,204,204, 12,231,206,157, 67, 85, 85,213,159,156,171,141, - 27, 55,202, 51, 50, 50,182,158, 61,123,182, 11, 0,166,118,153, 30, 19, 76, 48,193, 4, 19,158, 13, 24,161, 65,234,239,251,167, - 40,165,163, 27, 10,166,198, 66,171,238,115,221,126,155, 54,109, 26,221, 80,124, 1,192,230,205,155, 55, 54,216,174,250, 59, 50, - 85, 39,176,130, 9, 33, 20, 64, 48,165,244,210,147, 16, 25, 81,218, 8,242, 0, 0, 32, 0, 73, 68, 65, 84,170, 43,158,104,198, - 82,169,194, 14, 91,247,238,170, 41, 36,209,163,113, 89, 70, 59, 88,173,152, 44,213, 24, 7, 75,175,215, 11, 37, 37, 37, 25,106, -181, 58, 38, 41, 41,233, 79,226,193,205,205,109, 83,159,254,189,251,122,245,236,165,136, 60,115, 28,119, 83, 31,160,176,176, 12, -160, 84,251, 56, 62, 91, 91,219, 34,230,205, 55,149,102,185,185,165,140, 32,228,180, 77, 72,120,229,175,114,134,135,135,207, 8, - 10, 10,242,187,118,237, 90,168,165,165, 37, 0,208,134,226,234, 73, 56, 31, 35,170,250,136, 68,162, 95, 24,134, 81,140, 24, 49, - 2,111,191,253, 54,190,248,226, 11,142, 74, 20, 19,118,253, 22,253, 82,101,181,238,163,150,196, 85, 29, 98, 98, 98, 66, 39, 77, -154,212, 45, 62, 62,222,149, 82, 58,210,198,198,102,171,193, 96,128, 32, 8,160,148,158,228, 56, 46, 53, 32, 32,224,136,131,131, -195,144,252,252,252, 35, 49, 49, 49,139, 90,184,200, 24,137, 68,178,255,252,249,243, 93, 93, 93, 93, 17, 26, 26,138,170,170,170, -122,231,106,198,140, 25,143, 56, 87,215,174, 93, 43, 54,137, 43, 19, 76, 48,193,132,103, 18, 70,107,144, 58,209,212, 88,100,181, - 70,156, 1,208, 44, 95,190,124, 37, 33,228, 84,173,195,165, 1,160,122,218,153, 98,106, 19,124,169, 86, 61,134, 61,154, 19,227, -219, 34,189,174,252,137, 18,208,113,224, 97,248,141,187,132, 52,253,124, 60,100,230, 53,118,146,140, 19, 88,199,143,215,184, 87, -185,185,127, 56, 89,181,110,214,147, 8,172,202,202,202, 91,197,197,197, 9,101,101,101,215, 1, 8,141, 92,183,121, 61,123,246, -156,177,103,255, 33,139,147,103, 46, 86,197, 68,221, 86, 63,204, 47, 69,149,222,160, 79,200,124,184,243,113,124,142,142,142, 37, - 20, 40, 22, 25, 12,231,165,183,110,253,248, 24, 39,175,213,156,181,206, 80, 44,128, 83,103,206,156,185,203,178,236, 87, 79,131, -179,161,184,178,179,179,251,249,208,161, 67,138, 99,199,142, 97,230,204,153,248,228,147, 79,112,230,204,153, 9, 42,149,234,124, -133,182,122, 30,165,244,161,177,245,252,197, 92,226, 60,200,254, 71, 23,145, 72,100,101,103,103,183,118,234,212,169,224, 56, 14, -131, 7, 15,134,131,131,195, 81,137, 68,114,105,214,172, 89, 99,183,108,217, 98,230,233,233, 57,219,223,223,223,185, 5,202,245, -135, 15, 31, 30,229,227,227,131,240,240,112,148,149,149,193,197,197, 5,111,189,245,150,116,243,230,205, 71,190,250,234, 43,237, -166, 77,155, 36,195,134, 13,219,122,246,236, 89,223,170,170,170,225, 38,113,101,130, 9, 38,152,240,236,161, 73, 13,210,140,200, -122,194,227,212,253, 79,188,105,211,166,219,148,210,209,155, 55,111,222, 8, 64,241,183, 57, 88,181,202, 17, 0,130, 31,213, 87, -149,198, 59, 88,218,230, 5,214, 59, 47,101,167, 8, 60,143, 47,150,178,144, 42,236,208,113,224,225, 22, 93,169,214,198, 96, 61, - 70,173,254,105,219, 24,129, 85, 85, 85, 21,147,159,159,127, 63, 61, 61,253, 74,195, 73, 68, 61, 60, 60,198, 56, 57, 57,173, 59, -124,248,176, 66,165, 82,193,189, 83,119,203, 93, 63,254,167,218,201, 76,166,205, 42, 45,158,115, 51,187,242,196,227,248,228,114, -249, 29,154,145,145, 36, 77, 78, 62, 75,128,219,141,132,208, 19,113,214, 33, 34, 34, 98,198, 99, 4,219, 95,226,116,117,117,237, - 99,111,111,255,243,246,237,219,205, 84, 42, 21, 36, 18, 9,148, 74, 37, 46, 92,184, 0,149, 74,117,190,181, 39,217,206,217,100, -149, 84,192,191,193,131,233,231,145, 83,253,202,191,183, 43,108,109,109, 17, 23, 23,135,174, 93,187, 98,203,150, 45,210,148,148, -148, 46,157, 59,119, 70,106,106, 42,114,115,115,239,196,196,196,228, 53,243, 20, 50,118,206,156, 57,239, 76,152, 48, 1, 55,110, -220, 64,110,110, 46,222,124,243, 77,221, 91,111,189, 37,153, 62,125, 58, 41, 43, 43,155,184,115,231,206,201,233,233,233, 38,231, -202, 4, 19, 76, 48,225, 25, 71, 83, 26,164, 25,156, 6,240, 66, 99, 87,171,177,248,170,115,168, 26,110, 55,222,191,246,119,237, -223,145, 47, 81,237,193,200,159, 5, 14, 4, 65, 95, 68, 25,247, 41, 68,200, 61, 78,193, 55,113,124,150,133, 72,170,132,166,170, - 66,160,244, 81,183,167, 33, 4,158,183,111, 24,204,206,178,108,147,241, 80, 44,203,194,202,202, 10, 21, 21, 21, 0, 96,104, 33, - 15,188, 97,194, 4, 86,250,226,139,208, 59, 59,131,234,245, 53, 46, 22, 0,172, 92,249,200,142, 18,137,164,206, 21,107,182, 91, -171,188,188,252, 70, 76, 76,204, 53, 74,105, 62, 0, 12, 26, 52,104, 7,207,243, 99,204,205,205,173,103,207,158,173, 47, 44, 44, -196,137, 19, 39,240,221,119,223,105,212,122, 54,182, 84,199,189,113, 47,167,178,201, 25,237, 11, 11, 11,127,247,184,115,231, 88, -195,239,254, 42,231,227,240, 52, 56, 93, 93, 93,251, 56, 58, 58,214,139, 43,153, 76, 6,165, 82,137,156,156, 28,136, 68,162, 86, - 79,210,121,100, 62,177, 6,197,187,115,223,153,203, 48, 12,195,236,217,241,141,194,218,140,226,224,193,131, 8, 9, 9, 73,238, -222,189,123,231, 89,179,102,193,219,219, 27,201,201,201,248,252,243,207, 85,122,189,254,229,102, 79, 90,145,104,198,186,117,235, -168, 74,165, 34,247,239,223,175,119,174, 54,109,218, 84, 31,115,149,150,150,102,138,185, 50,193, 4, 19, 76,248,191,225, 96, 25, - 19,127, 85, 88, 43,158, 30, 62,102,155,109, 32,172, 26,111,231, 55,218, 6, 0, 93,163,223,227,255, 54,129,245,216, 12, 19,108, -159, 52,126,200,226, 15,223,155,235,212,197,123,185,156,230,255, 6, 90, 22, 67, 81, 23,114, 67, 24, 72,149,246,128, 72, 70,163, -147, 10, 43, 47, 38,104, 10, 41,193,118, 99, 15,220,165, 75, 23,228,229,229,161,184,184,184,254, 59,134, 97, 96,107,107, 11,185, - 92,142,232,232,104,132,135,135, 27, 0,172,107,161, 98, 54, 79,159, 62,125,197,252,249,243,153, 94, 51,103, 66,127,229,202, 35, -195,195, 8, 33,144,203,229, 80, 40, 20,200,201,201, 65, 74, 74,138, 64, 41,221,220, 28,231,189,123,247,194, 41,165, 5, 0, 16, - 28, 28, 60,197,214,214,118,210,204,153, 51, 21, 55,110,220,192,250,245,235, 69,161,161,161,250,168,168, 40, 78, 16,132, 21,217, -217,170,111, 91,202,107, 82, 82, 82, 84,195,237,167,193,217, 24, 79,131,211,205,205,173,183,171,171,235,207, 95,126,249,165, 89, - 94, 94, 30,100, 50, 25, 44, 44, 44,144,153,153,137,117,235,214,169, 57,142,123,241,105,156,116, 90,173, 22,199,142, 29,203,109, -223,190,125,175,155, 55,111, 14, 94,182,108,217,142,182,109,219,186,102,102,102,102,240, 60,255, 66, 84, 84,212,131,230,254,111, -109,109, 29,228,224,224, 64, 34, 34, 34,240,230,155,111,234, 22, 46, 92,104,114,174, 76, 48,193, 4, 19,254,217,184,209,194,246, - 51,135, 38, 23,123, 78, 74,163,223,221, 75,201, 26, 59,101,206,170, 35,111,188,181, 34, 39,181,208,174,154, 56,141, 35, 68,230, - 10,153,165, 11, 44, 93,186, 35,189, 64,164,217,118, 76,149,125, 42, 82,243,163,166, 18,227,147,210,232,119,141,108,191,238, 13, - 92,169,130,173,123,119, 97,235,222, 93,224, 4,177,238,245,215, 95, 71, 97, 97, 33,210,174, 78, 69,236,207,131,208, 94,178, 19, -206,116, 55, 10, 10, 10,240,245,215, 95,211,208,208,208,227, 6,131,193, 87,165, 82,109,111,138, 19, 0, 98, 99, 99, 55,230,228, -228,244, 89,185,114,101,232,252,138, 10,220,217,185, 19,210,233,211,193,244,232, 1, 51, 51, 51,216,219,219, 67,173, 86,227,210, -165, 75,184,121,243,102,104,117,117,117,159,216,216,216,141,205,113,214,137,171,126,253,250, 41, 75, 75, 75, 63,155, 62,125,186, - 66,173, 86,163,176,176, 16,133,133,133,136,140,140,188,160,211,233, 2,179,179,179,155, 20, 45, 13, 57, 41,165, 89,117,159,159, - 22,103, 67, 60, 45, 78, 51, 51,179, 69, 39, 78,156, 48, 99, 24, 6, 50,153, 12, 86, 86, 86,200,202,202,194,218,181,107,213, 26, -141,230, 69,149, 74,101,212, 4,157, 13, 57, 95,219, 73, 75, 65,240,217,238, 47,119, 11, 59, 63,223, 69,169,237, 32, 40,172,220, - 96,101,101,101,251,227,143, 63, 10,241,241,241,231, 93, 93, 93, 59,167,166,166,118,175,174,174, 14,188,126,253,250,131,150, 56, - 11, 11, 11, 47,103,100,100,192,220,220, 28, 11, 23, 46,148,110,220,184,241,200, 87, 95,125,165,221,184,113, 99,171, 98,174,154, - 42,207,191, 2, 19,167,137,211,196,105,226, 52,113,154,208,172,131, 5, 0,183, 50,105, 58,128,119,122,118, 36, 62,175,206,223, -178,104, 64,175, 14,189,223,122, 53,208,166, 92, 40,163, 39,126,185, 91,156,150, 85,121, 67,196,226,139,219,105,180, 69,123,237, -157,207,184,118, 13,183,183,185,187, 7,206,156, 57,115,253,210, 73,249,125, 27,118, 29, 30,250,225,208, 21, 66,200,170,220,220, - 92,163,135,236,199,196,196,220, 6,240,162,159,159, 95,255, 37, 75,150,172,123,201,195, 35, 96, 74,112, 48,196, 98, 49,162,162, -162, 80, 84, 84, 20, 13,224,131,216,216,216,171,173, 41,156,242,242,242, 15,189,189,189, 37, 73, 73, 73,184,119,239, 30, 82, 82, - 82,192,243,252,253,236,236,236, 9, 79, 90,224,207, 50,167, 86,171,253,116,253,250,245, 67,214,172, 89, 35,179,176,176, 64, 92, - 92, 28,214,172, 89,163,214,106,181, 70,139,171,199, 97,254, 55,116,195, 23,115,201,119,225,105,237,135,117,117,235,179,211, 96, - 48,192,209,209, 81,218,187,119,111, 23, 0,170,144,144, 16, 30, 64, 90, 43, 40, 63,240,241,241,241, 94,191,126,125,199, 25, 51, -102,160,180,180,212,228, 92,153, 96,130, 9, 38,152,240,127, 71, 96,213,225,230, 61, 26, 15, 96,122,143, 14,100,240,149,168,251, -179,107,228, 43,246, 36,166,211,176, 39, 61,112,118,118,118, 20,128, 97, 91, 23,147, 71,230,159,200,205,205, 29,249,164,156,181, - 2,106,144,143,143,207,216, 19, 44,251, 30,210,210,192,243,252,167,241,241,241,191,180,134,167,119,239,222,109, 43, 42, 42,190, - 49, 24, 12, 61,121,158,151, 94,186,116, 9, 90,173, 22,137,137,137, 26, 65, 16, 78, 60, 73,218,254, 47,112,102,101,101,197,184, -186,186,142, 38,132,156, 90,182,108,153,108,237,218,181,127, 89, 92,213, 97,209,110,154,119,200,223, 63,140, 77, 73,225, 13, 6, - 3,203,113, 28,120,158,151, 60, 9, 23,165,244, 30, 33,164,215,226,197,139, 63,120,247,221,119, 23,109,222,188, 89, 98,138,185, - 50,193, 4, 19, 76, 48,225,255,156,192,170, 67,194,125,122, 17,192,197,167,153,128,218,174, 67,135,186,207, 79,131,179, 86, 80, -253,242,164,255, 47, 43, 43,251,168,184,184,184, 87,121,121, 57,151,150,150,166, 33,132,240, 12,195,104, 4, 65,216,196,243,252, -183,255,100, 78,149, 74, 21,225,226,226, 50,236,218,181,107, 11,171,170,170,118,171, 84,170,235, 79,171,174, 99, 98, 98,178,252, -253,253,223,159, 61,123,246,100,142,227,254, 19, 29, 29,157,241,164, 92,148, 82, 29,128,247, 9, 33, 63, 39, 36, 36, 28,188,118, -237, 90,158, 73, 92,153, 96,130, 9, 38,152,240,127, 82, 96,253, 29,104,220,117,248, 44, 32, 57, 57,121, 6,128, 25,255,139,156, - 0,144,155,155, 27,251,119,240,214,138,172,175, 0,124,245,180,248, 40,165, 49,132,144,174,168, 25, 37, 98, 18, 87, 38,152, 96, -130, 9, 38,152, 4,150, 9, 38, 60, 37,145, 69, 97, 90, 91,208, 4, 19, 76, 48,193,132,103, 8, 4, 64,247, 38, 26, 45,163, 87, -202,126,146,209, 4, 45,241,155, 56, 77,156, 38, 78, 19,167,137,211,196,105,226,252,231,113,182,196,221, 26,253,241, 76, 11,172, -214,172,227,215,106,114, 66,186, 63,237,130, 50,113,154, 56, 77,156, 38, 78, 19,167,137,211,196,249,207,227,252,167,129, 49, 21, -129, 9, 38,152, 96,130, 9, 38,152, 96,194,211, 69,171, 99,176,130,130,130, 58, 2, 64,100,100,228,189,103, 33, 3,190,190,190, -151, 58,116,232,208,230,238,221,187, 6, 66, 8, 26,190, 0, 64, 42,149, 94,187,118,237,218,235,166,170,254,239,194,220,220, 92, -205,178, 44, 97, 24, 6, 44,203,162,241,251,227,190, 35,132, 56, 38, 38, 38,170,155,226,116,245,159,228, 97,224, 12,107, 8, 17, -190,165, 60,243, 6, 97,235,222,233, 55,148, 39,179, 24,137,254, 11, 65, 47, 89, 36,166,178,143, 84,183,143,102,155,106,225,241, -232,222,189,251,133, 94,189,122,121,199,197,197,233, 41,165,245,215, 15,195, 48, 32,132, 64, 16,132,220,232,232,232,190,255,244, -114,112,113,113,233, 15, 96, 75,237,160,137,134, 72, 33,132,188,155,147,147, 19,102, 58, 91, 76, 48,193,132,167, 38,176,122,245, -234,229,197,243,252, 0, 66, 72,127, 74,105,255, 46, 93,186, 56, 86, 85, 85,193,223,223, 63,159, 16,114,149, 82,122,149,101,217, - 43, 55,110,220,184,219, 18, 87,223,190,125,163,117, 58, 93,151, 86, 37, 80, 36,170,144,203,229, 29,195,194,194, 30,219,208, 58, - 57, 57,121, 30, 58,116,200, 54, 33, 33, 1,230,230,230,143,188, 68, 34, 17,122,247,238, 29,248,172, 22,126,159, 62,125,244, 60, -207,139, 31,247, 27,203,178,134,136,136, 8, 73, 11, 98, 55,131,227, 56,135,214, 28, 83, 34,145, 20, 68, 68, 68, 24, 53,114,179, - 95,191,126, 74,142,227, 22,179, 44, 59, 72, 16,132,174,181,233, 74,226, 56,238,146, 72, 36,250, 60, 60, 60,220,232,213,192, 89, -150, 37,133,133,133, 56,122,244, 40,186,251, 5,129, 82,192,167,155, 87,189, 16,142,140, 77, 2,207,243, 8, 15, 59,131,165, 75, -151,194,207,207, 15,106,181,154,109,142, 83,207, 9,171, 62, 88, 48, 53,120,195,182, 35,254,239, 47,124, 77,185, 97,219, 17,191, -247, 23,190,102,177, 97,219, 17,223,247, 23, 78,182, 88,191,237,144,223,170,133, 83, 44,215,111, 63,172, 3, 48,255, 73,234,232, -141,174, 93, 13, 12,199, 61,246, 58, 17, 68, 34,238,219,164, 36,241,255,245,155, 0,195, 48,110,187,119,239,182, 58,119,238, 28, - 20, 10, 69,253,245,163, 84, 42, 97,110,110,142, 23, 94,120,129,127, 90,199,242,247,247, 63, 12, 96, 92,237,102, 88, 76, 76,204, - 11, 79,202, 69, 8, 49, 23,137, 68, 11,165, 82,233, 0,142,227, 58,215,158,223,201, 90,173,246, 10,199,113,219, 40,165,234, 86, -242,125,114,227,198,141, 46, 22, 22, 22,208,235,245,245, 11,195,179, 44,235, 29, 20, 20,244, 57,128,158,166, 38,195, 4, 19, 76, -248,203, 2,203,223,223,255, 4,128,254, 93,186,116, 81, 12, 27, 54, 12,126,126,126,104,219,182, 45,228,114, 57, 0,160,184,184, -216, 49, 49, 49,113, 66, 92, 92,220,132,136,136, 8,248,251,251,107, 8, 33, 17,209,209,209, 99,155,226, 20, 4,193,253,204,153, - 51,176,183,183, 55, 42,113,130, 32, 96,212,168, 81,226,178,178, 50, 51, 0,143,189, 89,230,229,229, 9, 31,126,248, 97, 89,120, -120,184,158, 97, 24, 80, 74, 9,169,105,181, 9, 0,112, 28, 87,252,223, 46,228,254,253,251, 39, 1,112,173,203, 19, 33, 68, 21, - 30, 30,222,149,231,121,241,141, 27, 55,154, 18,182, 45, 54,220, 28,199, 57, 92,189,122,181,190, 78, 90, 2,207,243,232,213,171, -151, 81,130,204,215,215,119,160, 76, 38, 59,248,230,155,111, 90,245,237,219, 87,228,238,238, 14, 66, 8,242,242,242,122, 93,187, -118,205,111,231,206,157,179,124,125,125,167,197,197,197, 93, 54, 82, 96,225,192,129, 3, 88,191,126, 61,150,188,255, 9,222,154, - 57, 17,132, 16,200,100, 50,148,149,149, 33,200,175, 43,118, 29,248, 25, 71,143, 30,133, 70,163, 1,203,178,240,244,244,108, 78, -156,186, 42, 69, 54,129, 11,223,120,209,236,211,157, 7,204, 22,190,241, 34, 62,219,117,176,193,251, 56,124,186,235,128,249,219, -111,140,195,182,221,251,130,250,244,233,227, 26, 17, 17,161, 50,166,142, 0,128, 82,170, 10, 15, 15,239,202,112,156,104, 79,106, -106,205,151, 95,127, 13, 60,124, 8,186,122, 53, 0, 96,174,183,119,171, 28,224, 30, 61,122, 92,101, 89,214,205,136,122,202, 73, - 72, 72,232,255, 23,132,199, 80, 0, 75,107, 55,183, 80, 74,207,183,112,157,229,204,155, 55,207, 60, 54, 54,182, 41, 7, 43,255, - 47, 8, 42, 59, 66,200, 54, 0, 10,150,101,223, 5, 48, 50, 52, 52, 20, 12,195, 96,248,240,225,193,254,254,254,222, 0, 54,153, -153,153, 81,157, 78,247,102,100,100,100,190,145,121,236,111, 97, 97,241,205,225,195,135,173,251,244,233,195,100,101,101,161,123, -247,238, 40, 44, 44,244, 15, 11, 11,243,157, 59,119,238,116, 66,200,108, 74,105,107, 86,111,232,100,110,110, 78,167, 79,159, 78, - 26, 46, 68,191,119,239, 94,248,105, 52, 29,222,104,219,182,184, 90,175,175,184,204,178,171, 8, 33,151,178,178,178,114, 77, 77, -136, 9, 38,152,240, 36, 14,214,240, 75,151, 46,193, 96, 48,192,194,194, 2, 44,251,168,153, 96,107,107,139,129, 3, 7, 34, 40, - 40, 8, 67,135, 14, 69,114,114,178,226,227,143, 63,126,174,165, 3,154,153,153, 33, 34, 34, 2, 28,199, 33, 38, 38, 6, 21, 21, - 21, 24, 59,118, 44,196, 98, 49,196, 98, 49, 68, 34, 81,253,187,147,147, 19,228,114, 57, 41, 43, 43,107,146,207,202,202,170,195, -233,211,167, 25,153, 76, 70,149, 74, 37,189,116,233, 18, 5, 64,107,218,200, 39,139,224, 15, 12, 12,116, 18,137, 68,235,121,158, - 31,207,243,188,180, 25,209, 96,144, 72, 36, 39,181, 90,237,251, 49, 49, 49, 89,205, 80,186, 94,189,122,213,178,190, 96,135, 15, - 39,125,250,244, 41,171, 43, 83,127,127,255, 71,118,142,137,137, 49, 58,173,114,185, 28, 97, 97, 97, 16,137, 68,176, 25, 48, 0, - 0, 96,136,143,135, 88, 44, 6,186,117, 3, 0, 40, 51, 51, 33, 22,139,225,236,236,108, 20,167,143,143,207,208, 54,109,218, 28, -249,242,203, 47, 21, 44,203, 34, 53, 53, 21,132, 16,176, 44,139,252,252,124,244,239,223, 95,212,189,123,119,187, 21, 43, 86, 28, -243,241,241,121, 45, 62, 62,254,188, 17, 46, 9,166, 79,159,142, 79, 63,253, 20, 11,103, 77, 68,221,122,135, 58,157,174,126,159, - 55,167,143,195,254,157,155,240,193, 7, 31,224,183,223,126,107,137,111, 67,151, 78, 29,221,246,255,112, 22,253,122,247,194,254, - 31,206,160,111,239, 32,236, 15, 57,139,126,189,131,112, 48,228, 44, 6,244,233,141,131, 33,103,209,189, 75, 39,247,162, 7,101, - 27,208,252,220, 94,143,212,209,136, 17, 35, 72,159, 62,125,202,186, 51, 76,157,224, 2,121,179,102, 73, 39,212, 10,172,214,130, -101, 89,183,216,216,216, 22, 5,174,159,159,223, 95,189,174,151, 82, 74,251,215, 10, 17, 0,104,182,126,110,221,186,245, 28, 0, -188,244,210, 75, 23,186,119,239,238,125,231,206, 29,125,221,127,107, 95, 46,147, 39, 79,206,168, 19, 93,148,210,220,239,191,255, -222,168, 46, 67, 66,200,150,147, 39, 79,142,209,235,245,152, 57,115,102, 76,251,246,237, 69, 86, 86, 86,216,187,119, 47,108,108, -108,160,211,233,110,124,246,217,103,162, 7, 15, 30, 96,251,246,237,187, 27,184, 91,205,113, 14, 30, 48, 96,192,129,211,167, 79, -203, 68, 34, 17,202,202,202,112,249,242,101, 88, 91, 91, 67,161, 80, 96,194,132, 9,204,192,129, 3,109,159,123,238,185,195,132, -144, 25,148, 82,163, 39, 71,214,104, 52,116,197,138, 21, 48, 51, 51,123,196, 13,151, 3,100,221,245,235,178, 77,193,193,178, 85, -139, 22, 45,253,250,235,175,123,187,187,187,111,206,206,206, 86,153,154, 17, 19, 76, 48,161,181, 2, 11,230,230,230,136,138,138, - 2, 33, 4, 22, 22, 22,176,180,180,132,149,149, 21,202,203,203,145,152,152,136, 59,119,238, 32, 61, 61, 29, 12,195,160, 67,135, - 14,168,115,141, 26,184, 0,183, 30,115,115, 4,203,178,200,200,200, 64, 94, 94, 30, 24,134,193,229,203,151, 49,114,228,200, 71, -196,149, 88,252,120, 3,167, 49,103, 88, 88, 24,247,238,116,231, 11,122,157,218,158,227,116,215,194, 40,125,211,207,207,239,146, -163,163,163,187,143,143, 15, 95,215, 5,213, 92, 92, 86, 99, 78,150,101, 55,205,159, 63,127,194,164, 73,147, 24,145, 72,244,136, - 3,164,211,233,160,211,233, 96, 48, 24,160,209,104,196,199,142, 29,123,241,212,169, 83,102, 0, 94,106, 42,157,130, 32, 60,146, -135,245,235,215, 91,112, 28,135, 47,191,252, 18, 0, 16, 29, 29,253, 39,231,206,152,188,215, 87,162, 72,132,134,233,172, 43, 67, -174,209,182, 49,156, 65, 65, 65, 22, 82,169,244,187,173, 91,183, 42,242,243,243,145,144,144,128,158, 61,123, 98,213,170, 85, 80, -171,213,216,178,101, 11,238,221,187, 7, 71, 71, 71,172, 92,185, 82,241,238,187,239,126, 23, 20, 20,212, 53, 50, 50,178,162,185, -116, 50, 12,131,111,191,253, 22, 28,199,129,169, 21, 45,213,213,213,144,201,100,141,211,131,213,171, 87,215,239,211, 20,167, 94, -175, 31,177, 98,209,108,124,249, 77, 8,186,117,116,194,169,208,235,232,213,189, 45,126,187,112, 3,189,123,180,199,153, 75,209, -232,227,211, 17, 23,174,223,198, 59,243,167,224,189,183, 47,143,104, 46,239,141,203,124,237,218,181, 22, 60,207,227,183,101,203, -128,237,219, 65, 22, 46, 4,173,221,135, 48, 12,224,230, 6, 40, 20, 70,215, 81, 67,220,185,115, 7,213,213,213,127,250, 94, 38, -147,161, 75,151, 46,173,230, 36,132,244,112,116,116,252,218,219,219,187, 59, 0, 12, 28, 56,176,197, 11,191,137,107,211,237,253, -247,223,183, 58,116,232, 16,100, 50, 25, 20, 10, 5,204,204,204, 96,102,102,246,200,231, 85,171, 86,241,173, 56, 63,165,201,201, -201,176,176,176,192,158, 61,123, 68,182,182,182,136,137,137,129, 72, 36,194,212,169, 83,209,163, 71, 15,145, 66,161,192,165, 75, -151, 80, 89, 89,217, 34, 39, 33, 68,105,110,110,254,245,201,147, 39,101, 60,207,163,176,176, 16, 0, 48,122,244,104,176, 44,139, - 59,119,238,224,163,143, 62,194,143, 63,254,136,159,126,250, 73,238,239,239,255, 53, 33,196,143, 82, 90,105, 68,121,210,234,234, -106, 42,151,203, 33,151,203, 33,147,201, 32,147,201, 32,145, 72,160,165, 20, 31, 4, 4,232, 36, 74, 37,223,179,103,207,246, 11, - 22, 44, 96,214,172, 89, 51, 24,192,247,198,214,123,107, 97,226, 52,113,254,175,113,182,228,125, 0,104,248,128,170, 3, 80,103, -128, 20,214,234, 15,187, 70,223, 3, 64,221, 10, 49, 14, 77,108, 23, 2, 72, 4,208,181,246, 59, 30,192, 13, 0, 37, 79, 69, 96, - 17, 66,104,131, 66, 35,143, 41, 72,148,151,151,163,188,188, 28, 89, 89, 89,216,181,107, 87,125,163, 45, 18,137,192, 48, 76,125, -188,130, 49, 16,139,197,200,202,202,130,143,143, 15, 28, 29, 29,177,111,223, 62,140, 30, 61,186,158,175,238,213, 80, 20, 53,135, -190,131, 39,119,121,177,107,138,197,252,205,161, 20,168,137,203,250,249,231,159,109, 83, 83, 83, 33,151,203,161, 80, 40,160, 80, - 40, 32,151,203, 33, 22,139, 91,140,203, 18, 4, 97,204,196,137, 19,153,208,208, 80,112, 28, 7,145, 72, 4,137, 68, 2,169, 84, - 10,150,101, 33,145, 72,234, 95, 99,198,140, 97,142, 31, 63,254, 92,112,112,176, 40, 44, 44,140,107,226, 68, 68,116,116, 52, 34, - 35, 35,193,243, 60, 56,142, 3,199,113,208,104, 52, 0,128,128,128,128, 71,246,191,126,189,117,171,211, 52,116,174, 68, 34, 17, - 72,183,110,224,106,157, 43,145, 72,132, 18, 23, 23, 0,128,189,113,134,222,162,153, 51,103, 90,200,100, 50,220,186,117, 11, 50, -153, 12,106,181, 26,227,198,141, 67,101,101, 37, 56,142,131, 76, 38, 67,117,117, 53,156,156,156, 48,116,232, 80,243,208,208,208, - 69, 0,214,182,224,222,224,141, 55,222,192,142, 29, 59,240,229, 55, 63,224,157,217, 47,255,105,159,157,251,107,150, 79, 92,179, -102, 13,194,194,154,143, 39, 22, 4,129,237, 27,208, 5,229,133,129, 16,139,197,232,231,231, 5,150,101,209,215,191, 19, 68, 34, - 17,250, 7,122,131,101, 89, 12, 10,234,138,142, 29, 59, 66, 16, 4,182,133,155,197, 99,235, 72,167,211, 1,185,143,233, 9,202, -203, 3,218,183,127,146,155, 18,150, 45, 91, 86,166, 82,169,244,127,178,208, 92, 93, 37,199,143, 31,183,106,141,241, 74, 8,233, -217,165, 75,151,179, 23, 46, 92, 80, 58, 57, 57,129,227, 56, 24, 12, 6,168,213,106,188,252,242,203, 0,112,162, 21,105,203, 89, -191,126,189,249, 99, 28,172, 71,186, 13, 41,165, 70,119, 25,138, 68,162,229,203,150, 45, 27, 57,110,220, 56,145,133,133, 5,196, - 98, 49,164, 82, 41,164, 82, 41, 36, 18, 9, 50, 50, 50, 96, 48, 24, 16, 18, 18, 66, 89,150,125,207, 8,190,183, 14, 30, 60,104, - 41,149, 74,145,155,155, 11, 66, 8, 40,165,144, 72, 36, 72, 75, 75,195, 23, 95,124,129,153, 51,103, 34, 51, 51, 19, 46, 46, 46, - 88,178,100,137,114,243,230,205,111, 1,216,100, 76,131,161,211,233,252, 20, 10, 5,100, 50, 25,234,132, 22, 0,196,154,153, 37, -166,165,165,245,114,118,118,238,210,230,242,229,221,193,193,193,221,237,236,236, 2, 9, 33,135,232,223, 57,215,141, 9, 38,252, - 15,160, 37, 13, 82, 39,136, 8, 33,167, 26,236, 55,186,110,123,249,242,229, 43, 55,109,218,116,155, 16,114,170,225,247,117,251, -213, 30,227,212,227,182,107,255,107,183, 98,197,138,238,155, 55,111,222,216,167, 79,159,163,215,174, 93, 75,123,106, 2,171, 54, -110,137, 54,147,177, 63,185, 80,141, 97,140,192,170,187, 73, 87, 87, 87,163,176,176, 16,195,135, 15,135, 66,161, 0,195, 48,200, -202,202, 66,167, 78, 53,141, 99,124,124, 60, 62,252,240, 67,116,235,214, 13,122,189,190,197, 52,157, 61,181, 71,115,237, 60,175, - 17,132,154, 27,255,195,135, 15,233,166, 77,155, 42, 67, 67, 67,117,127, 28,186,158,134,180, 20,151, 69, 41, 21,137, 68, 34, 24, - 12,134, 71, 70,185, 17, 66, 48,120,240, 96, 92,185,114,165,254,187, 90, 7,134,169, 45,203, 38, 11,161,214,241,122,164,241,174, - 67,157,131, 69, 41,133, 86,171,133,193, 96,120,178,202,172,117,254,184, 70,219,173, 1,195, 48,193, 3, 6, 12, 16,165,164,164, -212, 55,132,122,189, 30,131, 6, 13, 2,195, 48,200,204,204,172,255,158, 82, 10, 95, 95, 95,201,149, 43, 87,130, 91, 18, 88, 12, -195, 96,215,174, 93,245,121,219,254,221,113,188, 53,243,165,122, 39,103,251,119,199,235,247,123,255,253,247,255,228, 96, 53, 5, -137, 68, 82, 95, 23, 44,203, 66, 36, 18,213,191,215,125, 54,182,253,107,170,142,232,134, 13,192,134, 13, 53,206, 21,128, 42,181, -186, 70, 28,247,235,215,106,113,165,211,233,160, 82,169,244,241,241,241,127, 26,104,224,227,227,147,161,211,233,140, 78, 47, 33, -196,177, 78, 92, 81, 74,241,194, 11, 47, 96,209,162, 69, 8, 12, 12, 68, 69, 69, 5,150, 46, 93,138,210,210,210,207,123,244,232, -241,241,173, 91,183, 86, 81, 74,119, 54,199,119,252,248,241, 63,117,241,119,237,218,245, 66,239,222,189,189, 99, 99, 99, 27,138, - 46,151,192,192,192, 12, 74,105,179,163, 11,235, 2,218,123,244,232,129,185,115,231,226,216,177, 99,216,183,111, 31,234,226,155, -198,143, 31,143, 23, 95,124, 17, 5, 5, 5,112,114,114, 34, 57, 57, 57, 55,253,253,253,155, 13,124,151, 74,165, 3,251,246,237, -203, 84, 84, 84,212,223,135,196, 98, 49,210,210,210,176,101,203, 22, 76,158, 60, 25, 29, 59,118, 4,207,243, 80,171,213, 24, 60, -120,176,104,219,182,109, 3,141, 17, 88, 34,145,232,189, 33, 67,134,108, 4,208,173,225,189,144, 16,114,135, 16,178,170, 70, 87, -231,221, 25, 51,102, 76,198,144, 33, 67,124,219,183,111,111,159,144,144,192,194,180,138,128, 9, 38,252, 85, 55,204,104, 13, 82, - 39,144, 26, 11,173, 77,155, 54,141,110,252, 93, 67, 49,245,184,207, 13,255,187,121,243,230,141, 13,184,171,158, 70,190,158,218, - 82, 57,198,138, 2,157, 78,135,216,216, 88,120,121,121, 65,161, 80, 64, 36, 18,193,207,207, 15,177,177,177,232,218,181, 43, 4, - 65,192,202,149, 43,177,122,245,106,132,132,132, 32, 49, 49, 81,228,228,228,212, 44,231,238, 99, 21,143, 88, 9, 22, 22, 22,237, - 67, 66, 66,254, 82, 92, 22, 33,164,190,129, 30, 59,118, 44,126,253,245, 87,136,197,226,250, 46, 78,127,127,127,220,188,121,211, - 40, 33, 64, 41,173,111,188, 43, 43, 43,161,211,233,192,113, 28, 28, 28, 28,240,250,235,175,131,227, 56,240, 60, 95,223,176,243, - 60, 15,150,101,209,171, 87, 47,202, 48,140,225,250,245,235,205,142, 38,212,199,197,213,164,237, 95,255, 2, 7,192,252,193, 3, -136,197, 98,148,186,214,196,108,183,169,172,108,178,139,176, 49,120,158,239,234,230,230,134,148,148, 20,200,100, 50, 72,165, 82, -180,105,211, 6, 11, 23, 46, 68, 85, 85, 21,190,253,246, 91,148,150,150, 66, 42,149, 66, 44, 22,163, 99,199,142,208,233,116, 93, - 91,226,101, 89, 22,243,230,205,195,119,223,125,135, 93, 91,106,186, 0,191,222, 90,243,222,112,122, 6,134, 97,176, 97,195, 6, - 12, 30, 60,216,104, 55,116,233,210,165,138,166,126, 63,122,244,168,198,152, 42,111, 88, 71,229,229,229,208,233,116,224,121, 30, - 74, 15, 15,204,152, 49,163,166,126, 94,121, 5, 60,207, 67,152, 62,189, 70, 36,152,153, 25, 93, 71, 13, 5, 86, 83,233,161,148, - 62,182,235,176, 25, 12, 95,190,124,185, 82, 16, 4, 12, 30, 60, 24, 51,103,206, 68, 64, 64, 0,182,109,219,134,240,240,112,124, -243,205, 55, 56,124,248, 48, 56,142,147,140, 24, 49, 98, 17,128,157,173,189,174, 89,150,117,219,189,123,183,213, 79, 63,253, 4, -165, 82, 9,107,107,235,255,199,222,121,135, 71, 81,181,109,252, 62, 51,179, 61,189,146,108, 18, 2, 73,128, 64,104,233, 1, 41, - 17,233,136, 20, 65, 68, 84, 4, 5, 11,240,138,136,148, 87, 5, 84, 12, 74,147, 94, 68, 69, 5,165,136, 84, 65, 64, 58,132,144, -132, 78, 2, 66, 66, 72,239,125,179,117,118,206,247, 71,178,121, 3,146,100, 3,168,124, 58,191,235,218,107,119,118,103,239, 57, -231, 76,187,231, 57, 13,246,246,246,112,116,116,196,179,207, 62,219, 88,239,194,254,135, 14, 29,130,147,147, 19, 18, 18, 18, 32, -147, 85, 71,237,109,109,109,157,143, 29, 59,166, 95,181,106, 85,185, 82,169,228,100, 50, 25, 62,252,240, 67,200,100, 50,188,250, -234,171,209,209,209,209,242, 99,199,142,221,183, 32,120,158, 15,116,114,114, 66,110,110,110,173, 33,183,181,181,197,135, 31,124, -128,151, 94,126,185,214, 92,201,100, 50,204,158, 61, 27,125,250,244,129, 94,175, 15,180, 38,175, 25, 25, 25,137, 0,250, 52,182, -158, 32, 8,164,102,127, 81, 0,130,120,123, 20, 17,249, 75,163, 93,123,239, 53, 89, 15,163, 53,115,230,204,217, 0,232,204,153, - 51,103, 91,150, 99, 98, 98,180, 0, 30,186,125,229, 35, 51, 88,214, 68,176,186,119,239,174, 88,181,106, 21, 60, 60, 60, 16, 18, - 18, 82, 27, 97, 9, 13, 13,197,138, 21, 43, 48,110,220, 56,236,223,191, 31,237,218,181, 67,255,254,253,209,163, 71, 15,116,236, -216,177, 81,221,119,199,121,157,226,245, 21,142, 70,131, 62,126,245, 14,227,184,242,242,242,147, 1, 1, 1,158,233,233,233,124, - 69, 69, 69,109,163, 97, 66, 8,194,195,195,193,113,220,185,216,216,216, 23,172,137, 8,141, 24, 49, 2, 59,119,238,196,176, 97, -195,112,240,224, 65, 0, 64,120,120, 56,146,146,146,160, 82,169,172,142, 16, 89,110,222, 21, 21, 21, 88,177, 98,133, 85,255, 49, - 26,141,120,234,169,167, 26,221,128,165,186,214,124,207,114, 93,115, 99,173,193,178,148,147, 84, 42, 5,195, 48,181, 85, 57,149, -149,149, 40, 43, 43,171,173, 42,181,188,172,173, 26,102, 89, 22, 43, 86,172,128,201,100,194, 27,211,230,129,101, 57,188,241,242, - 80,176,108,181, 65, 93,243,237, 46,152,205,102,108,253,230, 11,204,156, 57,211,170,170, 97,139,238,170, 85,171,180, 12,195,252, - 33,122,197, 48, 76,147, 34,120,117,247,209,170, 85,171,172,250, 79, 73, 73, 9,134, 12, 25, 98,245, 70,234, 54,234,111,170, 1, -187, 15,187,223,123,239,189,241, 70,163,177,109, 68, 68,132,114,194,132, 9,200,200,200,192,146, 37, 75,116, 37, 37, 37,171,251, -244,233, 51,222,214,214,214, 65,163,209,104,110,223,190,189,232, 65,206,107, 65, 16,178, 38, 78,156,104, 99, 25, 35,203,210,179, -144,101, 89,171,122, 23,154,205,102,172, 95,191,190,182,106,240,126,251,175,238, 49,101,141, 73, 77, 74, 74,194,201,147, 39, 49, - 96,192, 0, 84, 85, 85,193,100, 48,224,237, 75,151, 16, 52,102, 12, 12, 82, 41, 4, 65,128, 92, 46,199,226,197,139,255,180,107, -124, 29,131, 37, 34, 34,242,215, 70,187,158,126,148, 90,150, 8, 86, 76, 76,204,213,152,152,152, 63, 68,195,254, 84,131,197,178, - 44,234,118, 89,190,223,205,216,218, 54, 88,167, 78,157,210, 29, 57,114,196, 54, 51, 51,179, 54, 66,196,113, 28,252,253,253, 65, - 8,193,254,253,251,177,105,211, 38,252,247,191,255, 5,199,113,176,183,183, 71,112,112,176, 41, 39,167,225,222,208, 93,123,140, -242,175,105,131,101, 6, 0, 15, 15, 15,175,109,219,182, 53,212, 6,171,209,241,108, 12, 6, 3, 36, 18, 9,246,238,221,139,190, -125,251,226,216,177, 99, 80,214, 52,106,190,118,237, 26, 58,119,238,140,223,127,255,221,170, 27,120,221,232,136, 78,167, 3, 0, -164,164,164, 88,123, 0, 52,126,181,111,223, 30,230,154,200, 21,199,113,119, 69,174, 88,150,197,237,154,116,183,179, 66, 75, 42, -149, 38,231,230,230,134,185,187,187,163,184,184, 24, 50,153,236, 46,115,198,113, 92,109,100, 75, 38,147, 89,218,105, 37, 55,166, -203, 48, 12, 38, 79,158,140, 45, 91,182, 0, 0,222,120,121, 40, 84, 42, 37, 12, 6, 3,116, 58, 29,222,120,121, 8,214,124,187, - 11, 12,195, 32, 38, 38, 6,125,251,246,181, 58,130,245,214, 91,111,213, 27,193,218,181,107,151,214,218,114,182,236, 35, 75,219, -184, 71,185,143,172,141, 96, 89, 99,176, 8, 33, 19,219,181,107, 55, 77,161, 80,100,228,229,229,109,245,240,240,152,188,108,217, - 50,159, 59,119,238,192,222,222, 30, 7, 14, 28, 80, 76,153, 50,229,205,115,231,206,141,166,148, 30,106, 44, 93, 29, 58,116, 56, - 18, 25, 25,217,166,238, 48, 13, 53,231,125,206,181,107,215, 30,102,128,209,195,253,251,247, 31,100,111,111,143,113,227,198, 65, - 42,149, 98,248,240,225,112,112,112, 40, 94,191,126, 61,194,194,194,106, 77,252,156, 57,115,112,231,206, 29, 16, 66, 14,215, 23, -189,170, 57, 62,175, 55,107,214, 44,100,212,168, 81, 40, 45, 45, 69,118,118, 54,236,237,237, 17,180,104, 17, 46,191,249, 38, 58, -175, 93, 11,166, 87,117, 77,103,157,227,243,122,125,122,222,222,222,225,130, 32,124, 2,160, 11,254,215, 73,135, 2,136,101, 24, -230,253,204,204,204,248,251, 92, 19, 25,139,121,172, 89, 87, 68, 68,228, 47,140, 96,213, 53, 90,117,162, 80,245, 81, 80,183, 93, - 86,125, 6,173,110,155, 44, 0,250, 71,145, 86,174,206,197,253,222, 30,128,183, 46, 94,188, 24,208,190,125,123,164,167,167,163, -180,180,244,190, 2, 54, 54, 54, 80, 42,149,184,121,243, 38, 40,165,183, 26,187,193,212,141, 42,212,237, 49, 56,123,246,108,204, -156, 57, 19,125,250,244,193, 19, 77,108,219,242,235,238,181,229,167, 14, 9, 26,179, 64,179, 1, 32, 47, 47, 79,248,248,227,143, - 53, 7, 15, 30, 52,212,109, 40,111,169,206, 51,155,205,185,141,236, 64,190,188,188,156,147,201,100, 32,132,224,244,233,211,181, -195, 72, 92,187,118, 13, 18,137, 4,105,105,105,144, 74,165, 48, 26,141, 64,117, 53, 1,223,148,155,119, 19, 28,182,245, 59,243, -158, 54, 87, 77,141, 92,213, 68,205,142,197,197,197,117,238,221,187, 55,167,209,104,238,107,176, 44,230, 74, 46,151,227,236,217, -179, 6,173, 86,219,232, 8,215, 44,203, 98,233,210,165, 48, 26,141,181,195, 52, 88,170,195, 44, 99, 97,189,241,242, 16,252,188, -105, 21,166, 79,159,110,117, 27, 44,137, 68,130,175,190,250, 74, 43,145, 72,106,171, 25,235,182,191,178,180,157,123, 16,131,245, -168,246,145,135,135,135,171,155,155,219, 50, 39, 39, 39,133, 78,167,251,195,250,117,127,111, 40,194,101,193,207,207,239,189,139, - 23, 47, 54, 43, 41, 41, 81,239,221,187, 55,202,221,221, 29,114,185, 28, 67,135, 14,173, 18, 4,129, 89,182,108,153, 98,237,218, -181,138, 25, 51,102,172, 6,224,111,133,249,245, 90,187,118,173,195,137, 19, 39,238, 26,158, 96,244,232,209, 15, 53,192,104, 98, - 98,226,115, 81, 81, 81,190,102,179,249,114,167, 78,157,184, 59,119,238,224,233,167,159,134, 82,169,172,221, 55, 26,141,198,210, - 46,141,114, 28,215,185,177, 25, 34,244,122,253,201,163, 71,143,118, 30, 54,108, 24,243,251,239,191, 67, 42,149, 86,247,238,237, -210, 5,157,215,174,197,149,119,222, 65,207,212, 84,232, 76, 38, 40,149, 74,236,223,191,223, 84, 85, 85,117,178, 1,195,182, 50, - 54, 54,182,157, 66,161,128,209,104,132, 32, 8, 96, 24,134,176, 44,219, 53, 40, 40,104, 17,128,238,117,215, 87,171,213,173, 39, - 77,154,228,197,243,188, 57, 43, 43,171, 88,140, 98,137,136, 60,178,104, 82, 99, 23,234,130,123,204,145,161,235,135,241,172, 0, - 0, 32, 0, 73, 68, 65, 84,206,114, 1,170,231, 86,126,186,230, 51,234,124,142, 7, 16,126,207,186,150,223, 13,247,188, 91,126, -191,248,167, 70,176, 88,150, 29,246,218,107,175, 45,239,211,167, 79,244,180,105,211, 96,107,107,139,156,156,156,218, 72,149, 76, - 38,131,143,143, 15,180, 90, 45, 78,156, 56,129,210,210,210,227, 44,203, 78,110,108,131, 38,147,169,246,166, 87,183,199,160,159, -159, 31,118,237,218,245, 7, 67, 80,223,144, 5,117, 89,247,179,166, 77,221,229,243,231,207,251, 2,192, 71, 31,125,244, 64,133, - 34,145, 72,246,108,223,190,253,217,126,253,250, 49,150, 8,158, 37, 29,117,135,146,208,235,245,248,238,187,239,168, 66,161, 56, - 82, 95, 15,194,186,249,174, 27,193,122, 84, 55,111,147,201, 4, 85, 90,218, 93,189, 58,189,203,203,239, 90,110, 43, 88,223, 76, -132, 16,178,116,205,154, 53,175,134,132,132, 56,121,122,122,162,170,170, 10,132, 16,184,185,185,213, 26, 24,133, 66, 1,169, 84, -138,228,228,100, 28, 58,116,168,138, 82,186,212,154, 8,214,219,111,191,141,157, 59,119,222,101,158, 44,230,202, 50, 92, 3,165, - 20, 11, 23, 46,196,160, 65,131, 26,140,156,214, 53,124,227,198,141,171, 55,130,117,248,240, 97,173,181,102,237,207, 48, 88, 94, - 94, 94, 29, 35, 35, 35,247,174, 91,183,206,217,213,213, 21,217,217,217,119, 29,211, 94, 94, 94, 29, 35, 34, 34,246,174, 91,183, -206,217,205,205, 13,233,233,233,141,230, 59, 53, 53,117,205,224,193,131,231, 14, 25, 50,132,244,238,221, 27, 74,165, 18,239,191, -255, 62,146,146,146, 38, 1,184,188,123,247,238, 11, 19, 38, 76, 64,139, 22, 45, 60,172, 76,127,237, 64,163,117,163,210,102,179, - 57,255, 97, 47, 48, 60,207, 47, 88,190,124, 57,167, 82,169,160,213,106, 81, 80, 80,112, 87,149, 96, 85, 85, 21, 60, 60, 60, 48, -105,210, 36,242,197, 23, 95, 44, 68, 35,227, 96,241, 60,191, 98,252,248,241, 99,123,247,238,237,168, 86,171,145,147,147, 3,105, - 77,181, 32,121,242, 73,244, 72, 73,129,193,108,134, 74,165, 66,114,114, 50, 54,108,216,160, 49, 26,141,247,173,147, 15, 8, 8, -144, 49, 12, 19, 32,149, 74, 49,102,204,152,187,126,251,246,219,111, 17,101, 54,135,140,243,246, 46, 20, 24,198, 80,220,161,195, - 9,134, 97,200,228,201,147,189,187,119,239,222,238,234,213,171,169,133,133,133,231,196,219,162,136,200, 95, 70,252,223,244,223, - 71,111,176,226,227,227,111, 3, 24, 20, 18, 18,242,220,137, 19, 39, 62,123,231,157,119, 92,187,117,235,134,226,226, 98,248,250, -250,194,211,211, 19, 9, 9, 9,184,120,241, 98, 17,165,116,102, 66, 66,194,143,247,185, 89,255, 97,182,109,173, 86,139, 13, 27, - 54, 96,202,222,189, 88,220,190, 61,138,239, 25, 7,169, 46, 95,124,241,133, 37, 66,212,160,230,189,109,176,130,131,131, 99,155, - 55,111,238,153,158,158,206,215,141, 96, 89, 62,223,219, 6,235, 94, 77,189, 94, 63,123,235,214,173,146,239,191,255,126,144, 32, - 8,146, 6, 76, 40,175, 80, 40, 14, 25, 12,134,233, 13,229,157, 82, 74,220,221,221,209,162, 69, 11,104,181,218, 38,245,106,171, -123, 51,190, 95,222, 13, 6, 3,150, 46, 88,128,197,103,206,224,173, 46, 93, 26, 52, 34,247,107, 87,116,175,102, 92, 92, 92, 69, -112,112,240,132,233,211,167,127,247,209, 71, 31, 41,221,220,220,192,243, 60, 86,172, 88, 1, 65, 16, 32, 8, 66,173,185,154, 54, -109, 90, 85, 85, 85,213,132, 11, 23, 46, 84, 52,182,143, 88,150,197,194,133, 11,193,243,124,237, 48, 13,150,129, 70, 21, 10, 5, -116, 58, 29,190,222,178, 31, 12,195, 96,218,180,105,127,168,154,190,159,166, 37, 45, 63,252,240,131,246,222,168,213,189,203,245, -152,201,187,246,145,173,173, 45,124,125,125,225,226,226,242,200,246,145,139,139,203,219, 27, 54,108,112,214,106,181, 72, 78, 78, - 70,114,114, 50, 24,134,185,126,239,239, 26,141, 6, 87,174, 92, 65, 82, 82, 18, 8, 33,215, 27, 42, 79, 74,233, 34, 66,200,230, - 95,127,253,117,136, 92, 46, 31,230,238,238,238,157,158,158,190,133, 82,186, 13, 0,222,120,227, 13,152, 76,166,198,170,246,107, - 53, 47, 95,190, 92,239, 0,193,117,171, 15, 45,231, 16,165, 52,231,252,249,243, 93,173, 57,223, 1, 24,118,239,222, 13, 91, 91, - 91,236,220,185,147,119,114,114,226,230,205,155, 7,153, 76,134,185,115,231, 34, 61, 61,157,127,245,213, 87, 57, 65, 16, 64, 41, - 53, 52,166, 73, 41,173, 36,132, 76,234,222,189,251,134, 95,126,249, 69,209,186,117,107, 88, 6, 34,158, 53,107, 22, 86,172, 88, - 1,149, 74,133,235,215,175, 99,200,144, 33, 90,141, 70, 51,169,238, 24, 88,117, 53,121,158, 39, 82,169,148, 10,130,128,247,223, -127,255,174,129, 69, 85, 42, 21,148, 0,230,199,199, 43, 99,162,163,149,147,231,206, 29, 82, 99,240,204, 87,175, 94, 77, 93,179, -102, 77, 44,165,244,120, 35,121,127,216,170, 16, 81, 83,212,252, 87,105,254,211,104,180,254,232,252,249,243, 91, 59,119,238,124, -112,193,130, 5, 31,255,252,243,207,175, 76,153, 50,133,216,219,219, 99,219,182,109,180,164,164,228,123,133, 66, 49,251,212,169, - 83,165, 86,109,140,227,110, 28, 62,124,184,211, 59,239,188, 35, 97,167, 79,199, 7,247, 76,242,123, 47,201,201,201, 84,163,209, -152,117, 58, 93,131,115,138, 61,234, 54, 88,137,137,137,185, 0,198, 60,194,114,222,247,233,167,159,142,220,184,113, 35,167, 84, - 42,145,146,146,130,223, 45,211,175,212,111,222,176,100,201, 18,222,104, 52,214,219,147, 65,161, 80,220, 57,125,250,180,247,199, -159,127,206,234, 25, 6, 95,212, 25,174,224,126, 81,155,211,167, 79, 83,153, 76, 86,214, 88, 98, 47, 92,184,112, 32, 52, 52,244, -133,201,147, 39,127, 61,120,240, 96, 85, 88, 88,152,212,215,215, 23, 28,199, 33, 61, 61, 29, 39, 79,158, 52, 28, 56,112, 64,171, -215,235,199, 93,184,112,225,144, 53, 5,192, 48, 12,222,125,247, 93, 48, 12,131, 54,254,205,113,240, 68,252, 93, 61,230,118, 31, - 60, 5, 15,119, 23,180,111,223, 30,159,125,246, 25,134, 14, 29,218,152,158,217,104, 52,178, 42,149,170,118,172, 50, 75,222, 45, -213,133,189,122,245, 82,158, 62,125, 90,107, 48, 24,192,178,108, 99,225,176,125,139, 22, 45, 26,241,253,247,223, 75, 84, 42,213, - 35,219, 71, 60,207,183, 45, 41, 41,129, 70,163, 65, 66, 66, 2, 93,181,106, 85, 97, 89, 89,217,156,186,191, 23, 23, 23,163,162, -162, 2,231,206,157,163, 95,126,249,101, 97, 69, 69, 69,163, 67,197, 83, 74,115, 1,172,169,121,221, 69, 94, 94, 94,149,209,104, - 84,229,228,228,152, 30,246,192,181, 84, 31,158, 61,123, 22,118,118,118,112,112,112,104, 82,213, 33,165,116,218,193,131, 7,165, -168,153, 42,167,160,160,224,156, 68, 34,145,201,100, 50,100,101,101, 65, 16,132,136,245,235,215,199, 0, 48,114, 28, 55,197, 74, -205, 67,132,144, 87,130,130,130,214,206,157, 59,215, 38, 58, 58,154, 83,171,213,232,219,183, 47,110,220,184,129, 95,126,249,197, -180,122,245,234, 42,141, 70,243, 58,165,244, 72, 3,215, 35, 74, 41, 37, 60,207,223,213,113,195,210, 67, 86, 43, 8,152, 29, 28, -172,163, 28,103,152, 59,119,238,113, 0,200,206,206, 46, 41, 40, 40, 72, 20, 4,225,120, 78, 78, 78,150,120, 11, 17, 17, 17,169, -215,132, 54,165, 9, 65,100,100,100,164, 32, 8, 63,153,205,102, 9, 33,100,120, 98, 98,226,233,166, 56,220,200,200, 72, 59,169, - 84,122, 88,171,213, 6, 89,179, 61,153, 76, 86,106, 50,153, 6,197,199,199, 95,106,200, 53, 79, 28,102,115, 67,165, 16,216, 42, -157,233,214,186,159, 77, 3, 66, 66, 66,238, 12, 28, 56, 80, 81, 95, 27, 44,163,209,120, 51, 33, 33,225,169,191,202,221, 19, 66, -152,224,224,224, 51, 18,137, 36,178,102,251,117,111, 22,181,131, 37, 90,150,235, 68,167,210,111,220,184,209,138, 82,106,172,167, - 60,221, 37, 18,201, 81,157, 78,231,107, 77,154,228,114,121,142, 94,175,239,151,152,152,152,106, 77,222,187,117,235,230,200,243, -252,127,228,114,249,147,122,189,190, 45, 0, 40,149,202,100,173, 86,123,148,227,184,101,245, 25,235,251,105,118,234,212, 73,195, -178, 44,169, 59, 36,195,253,222,235, 14,215, 80, 89, 89,233,110,153,228,251, 94,205,238,221,187,111, 28, 53,106,212,128,151, 94, -122,137,112, 28, 87, 91,110,150,125,109,169,134,214,235,245,216,184,113, 35,221,177, 99,199,254, 99,199,142,141,109,108, 31,113, - 28, 23, 73, 8,169,221, 71,247, 59, 63,154,178,143,124,125,125, 59,219,216,216,172, 71,245,200,194, 41,101,101,101, 83,178,178, -178,178,234,254,174, 84, 42,215, 3,144, 49, 12,243,135,223, 31,228,248, 36,132, 76, 8, 12, 12,156,126,253,250,245,165,245,141, -125,101,173,102,199,142, 29,143, 68, 68, 68,180,185,112,225,130,209,114, 14,213, 55,254,149, 53,154,161,161,161, 91, 1, 12,170, - 89,255,112, 66, 66,194,144, 7,125, 74, 38,132, 56, 72,165,210,183,148, 74,101, 15,157, 78, 23, 88,243,208,113, 93,171,213,158, - 48, 26,141,171, 40,165,101,141,105,250,249,249,157, 59,121,242,100,144, 37,234,105, 25,189,157,101, 89,120,121,121,157,207,206, -206,238, 46, 70, 29, 68, 77, 81, 83,140, 96,253,233, 6, 75, 60, 80,254,189,154,150,145, 90,173,105,212,251, 87,164,179, 75,151, - 46,106,142,227,230,235,245,250,126, 13,141,210,206,178,172, 89,169, 84,254,106, 48, 24,254,123,239,100,207,226,126, 23,143,207, - 7,233, 69, 40,238, 35, 81, 83,212, 20, 13,150, 53,112, 98, 17,136, 88,195,227,214, 91,170,198, 44,141, 21,247,140,200,195, 28, -159, 53, 6,170,143, 88,130, 34, 34, 34,143, 26, 70, 44, 2, 17, 17, 17, 17, 17, 17, 17,145, 71, 11, 1,208,161,158, 39,194,166, -180,249,232,240, 0, 79,156, 87, 68, 77, 81, 83,212, 20, 53, 69, 77, 81, 83,212,252,119,105, 54,166,253, 79,169,122, 20,219, 96, -137,154,162,166,168, 41,106,138,154,162,166,168,249,183,107,254,211, 16,171, 8, 69, 68, 68, 68, 68, 68, 68, 68, 30, 49, 98, 35, -247, 7, 64,173, 86, 43, 1, 60,205,113,220, 24, 39, 39,167,176,162,162,162,249,153,153,153, 43,254,161,121,109, 77, 41, 29,195, - 48,204,115, 0, 32, 8,194, 54, 66,200,247,217,217,217,191, 63,172,118, 52, 33,156, 7, 48, 94, 2, 76, 5, 0, 19,176, 52, 23, -248,234, 24,165,252, 63,249,248,233, 17, 76,102,200,164,146,113, 58,163,233,179, 83, 23,232,215,209,161,196,133, 23,176, 64, 33, -229,186,235, 13,252,231, 39, 47,210, 13, 15,249,100,105,235,230,230, 22,195, 48,204,147,148, 82, 66, 41, 61, 81, 80, 80, 48,131, - 82, 90, 46,158,189, 34, 34, 34, 34,143,145,193, 34,132,176,237,218, 5,188,200, 18,242, 4, 0, 71, 0,165,102, 74, 79, 39, 37, -221,250,158, 82,250, 64,243,149, 69, 71, 71,115, 90,141,102, 52,199,178, 3, 40,165, 29, 64, 41, 1, 33, 87,120,158, 63,160,178, -179,219,212,216,212, 51, 0, 48,114,228, 72, 54, 43, 43,235, 6,207,243,110, 77,217,182, 68, 34,201, 61,115,230, 76,155, 7, 73, -183,183,183,247,112, 47, 47,175, 53, 81, 81, 81,170,224,224, 96, 72,165, 82,124,254,249,231, 83, 0, 88,109,176, 72,116, 52,215, -172,196,101, 52, 35,225, 6, 2,180, 3,165, 0, 37,220, 21, 24,141, 7,242,156, 11, 55, 81, 43,242, 14, 0, 33, 33, 33,211, 9, - 33, 99,106,122, 80,109, 60,127,254,252, 23, 15,115, 48,124,248, 26,155, 71,169, 96, 43, 80,130, 74,157,196,248,211,113,231,171, -193,193,193, 33,211,167, 79, 71, 84, 84, 20, 4, 65,192,137, 19, 39,166, 46, 93,186,116,170,167,167,103, 2,203,178,155,164, 82, -233,246,212,212,212, 7,186,113,123, 0,227,163,186,117, 91,248,202,180,105,108,213,137, 19, 88,246,245,215,159,163,188, 28, 0, -214, 53,209, 80,144,136,136,206,195,236,237,201, 0,134,160, 51, 5, 37, 4,228, 82,113, 9, 14, 36, 36, 92,248,137, 82, 42, 60, -104,153,132,133,133,237,160,148,246,171,217,206,175, 9, 9, 9,195, 31,166,140,187, 6,147,168,192,150,158, 31, 78,122,225, 73, -188,187, 96,203,164,110, 29, 73,161,210, 70,186,230,217,110, 1,142, 65,254,142,248,104, 93,236, 20, 0, 15,108,176, 8, 33, 42, - 55, 55,183,184, 93,187,118,121, 69, 70, 70,114, 0,144,144,144, 48,122,208,160, 65, 61, 9, 33,225,148,210,138,191,227, 66,211, -165, 75, 23, 5,207,243, 19, 88,224, 41, 74,105,251,154,180, 94, 53, 3,191,113, 28,183, 62, 54, 54, 86, 39, 94,142, 69, 68, 68, -254, 85, 6,139, 16,194,118, 8,106,189,120,194,196,215,219, 14, 27, 54,204, 83,169,178, 83,164,167,223,202, 94,191,118,181, 3, - 75,152, 78,132,144,105, 77, 53, 89,145,145,145,109,137, 32,252,240,198,184,113, 45,194,186,118,229,154,121,122, 66, 87, 86,134, - 91,215,175,251,196,159, 59,215,123,215,225,195, 83, 67, 67, 67,199, 36, 38, 38, 94,109, 72,167,176,176, 80,194,153,205,238, 71, - 62,253,148,101,156,156, 64,121, 30,124,219,182, 16, 4, 1,212,108, 6,119,250, 52, 96, 50,129,154,205, 48,246,170,158, 13, 68, - 16, 4,244,235,215,207,251, 65, 10,203,199,199,199,179, 85,171, 86, 27,102,205,154, 37,213,235,245,184,112,225, 2,206,156, 57, - 35, 20, 20, 20, 44,182,218, 84, 4, 15,105,235, 1,143,205, 67,134, 13,108, 62,168,143,155,204,215,195, 13,130, 32,199,245, 84, -147,207,161,147,231,251,252,178,255,224,219,205, 58, 12,121, 49,239,202,174, 6,243, 30, 17, 17,209,151, 97,152,185, 9, 9, 9, - 0,128,208,208,208,249,161,161,161,243, 27,219,190,141,141, 77,190, 70,163, 25,159,152,152,120,159, 9,154, 5,213,188, 41,175, - 67,160,192,151,251,174, 75,147, 87,239, 10,177,183,183,191,107,178,228,190,125,251,162, 79,159, 62, 72, 79, 79, 15,251,249,231, -159,195, 54,108,216,240,185,183,183,247,220,204,204,204,229, 77, 45, 79, 9, 48,245,149,105,211, 88,155,180, 52,216, 92,184,128, - 49,229,229,220,103,213,209, 44,171, 13, 86,120,120,120,203,190,125,130, 55, 13, 29, 22, 29,232,225, 17, 36,149, 72, 92,107, 38, -110, 46,110, 85, 80,144, 52,212,201, 9,239, 70, 70, 70,190,208,216, 36,194,117,142, 77,119,158,231,151, 3,144, 50, 12, 51,141, - 82,218,239,192,129, 3, 48,155,205, 24, 52,104, 80,191,240,240,240,150,130, 32, 44,182,177,177,161,122,189,254,141,184,184,184, - 38,205,215,199, 17,124, 60,234,153, 62,208,154, 24,152, 76,188,155,167,155,221,247, 83, 94,234, 41, 1, 53,224,219,221,231, 97, -226,133,175, 31,230,132, 86,171,213,243,191,251,238, 59,239,168,168,168,218,177,193,130,131,131,217, 69,139, 22,169,167, 78,157, -186, 16,192,196, 38,152,203,206,114,185,124,126,105,105,233,200,107,215,174,105, 58,190,177,211,141, 51, 41,237, 36, 74, 65, 31, -183,188,127, 86, 19,246, 81, 24, 71,200,230, 69,239,141,247, 8,236,216,137, 81,184,185,130,220,201, 71,137, 89,251,228,153, 43, - 73,221,191, 88,189,233,173,240,240,240, 23,226,227,227, 19,196, 75,178,136,136,200,191,198, 96,181,107, 23,240,226,248,215, 94, -107,251,250, 27,147, 66,141, 70,125,213,165,196,227, 71, 56, 41,195, 78,154,252,154, 67,113, 73,129, 43,165,194,139, 0, 54, 54, -193, 92, 5,120, 53,107,118,104,193,103,159, 57, 58,187,185, 33, 55, 55, 23, 25,153,153,200,185,114, 5, 4, 64,159, 62,125,100, -157, 59,117,242, 95,186,110,221,129,240,240,240,190,241,241,241, 73, 13,233,177, 28, 7, 98, 99,131,172,144, 16, 64, 42, 69, 89, -108,108,245,247, 60, 15,219,193,131,171, 87,146, 74, 97,188,116, 9, 12,195,192,221,221,253,129, 11,139, 82, 26,217,173, 91, 55, - 41, 0,188,251,238,187, 21, 26,141,102, 33, 33,100,107, 86, 86, 86,182, 53,255,119,235,252,108,128,187,171,251,193, 69, 31, 79, -112,234,224,231, 15,131,201,132,204,252, 44, 80,200,225,225,110,139, 49, 67, 59, 75,159, 8,147, 4, 44, 94,249,219,175, 30,157, - 6,247,201,189,180,167,222,188,179, 44,187,120,230,204,153,216,186,117, 43, 0, 96,243,230,205,104,221,186,117,163,105, 56,115, -230,140,251,123,239,189,183, 6,192,125, 35,120, 2,173,158,183,208,223, 63, 0, 14, 14, 14,245,153,110,248,250,250, 98,234,212, -169, 8, 9, 9,145,189,248,226,139, 31, 3, 88,254, 32,101, 90,117,226, 4,108, 46, 92, 0, 78,156,104,242,127, 67, 67, 67,125, -218,181,115, 57,186,120,209,135,174,123,246, 94,197,162, 69, 95,227,214,173,106, 31,229,239,239,143, 23, 70,143,148,108,250,126, - 93,187, 25, 51,230, 28,137,136,136,120,234,220,185,115, 55, 27,211,228,121,126,121, 76, 76,204, 32, 91, 91, 91,204,156, 57,243, -162,159,159, 31,236,237,237,177,110,221, 58, 56, 57, 57,129,231,249,139,159,125,246, 25,151,157,157,141,101,203,150,173, 1, 48, -204,218,244,118,239, 76, 6,134, 5,119,136,242,245,105,142, 99,103,206, 65, 42,147, 56,190,249,242,211,176,179,229,176,240,171, -125, 66,122,102,241,164,147, 23,233,183, 13, 62,240,140,220,206,118,214, 92,116,186,120, 64, 86, 76,233, 28,193, 18,193, 67,205, - 32,153,205, 60,213, 3,123,244,232,193,214, 28,175, 72, 75, 75,131,193, 96, 64,187,118,237, 24,163,209,216,163, 9,231,105,136, - 76, 38,219,111, 52, 26,149, 54, 54, 54, 42, 0, 26,206,164,180, 19,164,220, 8, 35, 21,146, 58, 78, 63,100,188,188,176, 79,129, - 53,230,170,109, 64,243,125,203,230,255,215,134, 45,248, 29, 26,114, 1, 37,121, 70, 96,241, 30, 48,246,110,120,242,221, 73, 92, -167,224,206,234,153,255,141,217, 23, 17, 17, 49,240,220,185,115,137,226,101, 89, 68, 68,228,159, 64,163,141,220, 89, 66,158, 24, - 58,116,152,155,193,160,213,232,116,154,210,219,119, 18,114,142, 28,217,112,229, 70,210,201,223,251,246,235, 98,100, 88,242, 68, - 3,134,228,174, 30, 6, 35, 71,142,100, 25,179,121,203,103, 11, 23, 58,178, 82, 41, 76, 38, 19,124,125,125,161,211,233, 80, 94, - 82,130,220,244,116,156,222,187, 23,154,194, 66, 76, 30, 51,198, 81, 66,200,230,208,208, 80, 73, 67,154,160, 20,224,239,174, 81, - 99, 24,230,174,168,139,229,187,251,205,207,119, 95,205,122, 16, 4, 33, 45, 59, 59, 27, 42,149, 10,109,219,182,181, 33,132,156, -201,204,204,204,182, 70,147,140, 28,201, 74, 36,236,246,133, 31,143,118, 34,236, 13,220, 72, 79, 0,199,202,225,226,224, 3,131, - 17, 56,149,248, 11,190,222,254, 1, 50,179,226, 48, 97, 76, 43, 7,165,146,254, 68, 66, 39,214,155,119,163,209,216, 34, 32, 32, - 0, 29, 58,116, 64,199,142, 29, 97, 54,155,113,245,234, 85, 92,190,124, 25, 23, 46, 92, 64, 98, 98, 34,226,227,227,113,246,236, - 89,156, 57,115, 6, 35, 39, 47,193,235,147,167,163,178,178, 18, 6,131,193,251,254,233,100,170,198,127,240, 29, 14, 39, 25, 81, - 88,162,195,182,109,219, 80, 92, 92,140, 45, 43,186, 97,237, 28, 79,172,157,227,137,239,151,132,160,164,164, 8,103,207,158,197, -194,133, 11,161,209,104, 96, 54,155,185, 7, 41, 79, 19,176,116,217, 55,223, 8,201, 39, 78, 32, 25,192, 6, 66, 4, 19,176,212, -170,242, 36,132,184, 56, 11, 63, 46, 93,250,129, 43,203, 92,131,179,195,103, 56,119,238, 52,242,242,242,144,151,151,135,184,184, - 51,112,114,252, 18, 28,151,132, 37, 75,230, 58, 59, 58,242, 63, 16, 66, 24, 43,210, 41, 77, 78, 78,134, 86,171,197,143, 63,254, -200,197,196,196, 32, 46, 46, 14, 74,165, 18, 99,199,142,197,242,229,203, 57,103,103,103,220,190,125, 27,149,149,149,164, 73,199, - 18,193, 43, 35,135, 13, 5, 43,181,193,245, 91,153,232, 25, 21, 2,119,119,119, 36,165,149, 32, 61,171, 56,143, 16,140,237,255, -132, 60,183, 71, 48, 25, 95,159, 38,221, 54,194,252,194,136,254,193,253, 95,181,127,213, 43,124, 66,167,154, 60,213,164,163, 29, - 71, 24,153,131,197, 92,221,188,121, 19,201,201,201,184,115,231, 14,238,220,185, 3,147,201, 84,111, 58,123,246,236,249,102, 84, - 84, 84, 73,120,120,120, 69,247,238,221, 55,177, 44,187,127,254,252,249, 42,133, 66, 97,224,157,124,109, 66, 39,254,230, 35,149, -200,120, 74, 24, 61, 53,227, 35, 73,133,212, 41, 96,202, 1, 89, 67,121,239,210,165,139, 66,194, 48,155,151,199,188,111, 99, 74, -216, 1,120,122,193,221,111, 2,108,157,162, 64, 75,181,224, 47, 38,163, 98,209, 74,112, 10, 1,239,255,119,134, 13, 17,132,239, - 3, 2, 2,100, 15,114, 44, 53,241, 65, 73,212, 20, 53, 69,205,199, 80,243, 95, 23,193, 34, 12, 28, 85, 42,165, 52,246,244,206, - 3,217,153,215, 10,115,242,174,148, 49,160, 76,118,118, 66,153, 95,171, 39, 93, 80,221, 38,203, 42, 82, 83, 83,159,159,250,250, -235,126, 14,213,145, 0,184,186,186, 34, 51, 51, 19, 58,157, 14, 85,229,229,208, 86, 86, 66, 95, 94,142,164, 35, 71,208,117,192, - 0,244, 11, 14,246,217,123,254,252, 43, 0,214,215,123,147,102, 24,240,157, 58,161, 44, 49, 17,196,104,132, 67,104,104,109,212, - 74,127,237, 90,181,177, 50,153, 32,121,226, 9, 16,149, 10,100,238,220, 7, 46,172,236,236,236,139,190,190,190, 7,251,247,239, -223,119,194,132, 9, 76,110,110,238, 46, 15, 15,143, 94,185,185,185,201,141,253,183,217,239,194,152,151, 39, 4,183,116,117, 32, -216,115,230, 87, 68,181, 29, 6,149,156, 67, 65, 73, 21, 24, 66,112,235,246, 97,152,205, 54,184,152,156,142,174, 29,108,208, 45, -210,222, 75,243, 91,201, 56, 52, 80, 93,166,211,233,144,159,159, 15,147,201, 4,158,231, 49, 98,228, 72,124,187,113, 35, 52, 26, - 13,116, 58, 29, 12, 6, 3, 4,161,186,249, 81,110,190, 14,113,231,247, 35,180, 99,253, 81,174,143,190, 52, 55, 83,171,213, 85, -223,238, 89,135, 67,135,170,231,112,222,181,107, 23,116,121, 41,120,235,249,234,166, 71, 75,191,253, 17, 75,151, 44,134,209, 36, - 88,140,222, 3,151,231, 77,224,235, 84, 65,152,209,127,199, 14,183, 51, 59,119, 10,103,247,236,201,146, 87, 84,124,101,205,127, - 35, 34, 58, 15,155, 52,233,233, 64,165, 66,137,204,244, 47,208,182,173, 20,211,166,186, 32,230,179, 66, 0,192,148, 73,222, 8, - 11,115, 65,121,233,118,184,186,207,198,187,211,134,249, 85, 86, 98, 52,128, 77, 13, 62,113, 48,204,180, 77,155, 54, 93,236,219, -183, 47,119,254,252,121,200,229,242,218,137,194,149, 74, 37,114,115,115, 97, 48, 24,176,117,235, 86,158, 97,152,105, 77,187, 34, -193,171,153,135, 55, 24,106, 66,118, 94, 33,134, 12,236, 11, 78,106,139,180,204, 66,116, 14,242,247,124, 97,240, 19,158, 44,225, -241,222,103, 63,188, 9,224,190,229, 16, 29, 61,143,123,243,131, 49,166, 55,219,180,176,223,123,240,244, 43,123, 24, 82,148, 87, -150,244, 5,126, 63,163,147,183,234,240,124,160, 31,140, 71,142, 28, 81,246,232,209, 3, 90,173,214, 18,237,196,166, 77,155, 4, -158,231,235, 13, 19,154,205,230, 25,223,125,247,157,204,213,213, 21,147, 39, 79,238, 51,126,252,120,101,104,104, 40,161,148,130, -202, 90, 57,152, 57,218,147, 7,127,142, 53,152,247, 66,202,246, 53,115,198, 49,142,102,118, 29,128,204, 6,162,129, 19, 22,126, - 50,165, 25, 85,230, 67,218,107, 0,152, 2,130,172,215,159,129, 80,161,131,113,254, 91, 16,168, 20,122, 3, 7,227,208,183, 32, -245,107,131, 73, 33,225,158,203,206,199,191, 6, 96,165,120,105, 22, 17, 17,185,135,112, 0,150,246,214,133, 53, 15,150, 46, 0, - 44,145,116, 55, 0, 6, 84,207,251,106,225,222,229,186,235,222,187, 92,247,115, 33,170,167,204,114, 3, 96, 6,112, 14, 64,201, - 3, 69,176, 8, 33,180, 78,100,224,238,129,177, 40, 41,204,204, 76, 45,214, 27, 75,116,253,163,187, 78,125, 58,210, 99,222, 43, -207,191, 57,199,193, 78,161, 76, 79,187, 69, 9,131, 34,107, 55, 38,151, 72,250,134, 70, 69, 73,114,115,115,225,224,224,128,172, -172, 44,252,254,251,239,208,233,116,208,148,149, 65, 95, 82, 2,190,168, 8, 40, 42, 66,218,137, 19, 8, 84,171,101,172, 21,211, - 88, 8,130, 0, 66, 8, 88,150,189,111,212,138, 97, 89, 16, 91, 91,192,214, 22, 96,154, 54, 50,133, 90,173,126,186,109,219,182, -199,212,106,245,140, 26, 67, 49, 53, 38, 38,166,136, 82,138, 25, 51,102,216,217,217,217,109,106,209,162,133,188, 49, 29, 91,103, -126, 88,100,199, 86,236,141,244,203, 8,107,253, 44, 90,120,246,192,173,172, 50, 20,148,233,144, 91,172, 65,155, 54,211,225,166, -158, 0, 7,143,215,113,233,122, 6,212, 30,126, 12, 35,145, 54,152,247,220,220,220,187,150,127,216,188, 25, 85, 85, 85,104,213, -170, 21,158,127,254,121,188,247,222,123, 24, 53,106, 20,212,106, 53,186,249, 3,227, 94, 28,129,252,252, 38, 53, 25,130,183,183, -119,237, 4,109,130, 32,128,231,121,152, 76,255, 51, 85, 6,131,193,106, 45, 15, 15,143,119, 61, 60, 60,226, 60, 61, 61, 19, 60, - 61, 61,127,206, 83,171,207,155,252,252,220,187, 13, 27, 70,130,158,123,142,205,176,177, 33,119,124,125,109,172,209,178,183,103, -250,135,133,117,147,149,150,124, 13,160,218,236,141,123,197, 13,167,142,183,199,233,147,161,152, 60,201, 31, 12, 81,128, 48, 82, - 84,105,126, 67,187,160, 14, 82, 59, 59, 58,160, 33,205,176,176,176, 29,130, 32, 92,109,223,190, 61,247,198, 27,111, 64, 46,151, -227,219,111,191,197,154, 53,107,176,100,201, 18,220,184,113, 3,190,190,190,240,244,244, 68,179,102,205, 56, 65, 16,174,134,133, -133,237,176, 54,255, 74,133,194, 69,166,112, 0, 43,181, 1, 39,145,160,185, 79, 11,176, 82, 27,148,148, 87, 97,236,115,131,113, -229,102, 14, 62, 89,179,135, 55,153,132,122,171, 91,143, 31,159, 99,254,121,223, 49, 83,101,165,134,123,102, 96,111,237,235,175, - 60,223,202, 73,225,255, 53,188,123,119,106,217,220,243,249, 15, 99,150, 27, 94,125,227,109,227,151, 27,190,162, 21, 21, 21, 40, - 47, 47,199,178,101,203,248, 61,123,246,100,155,205,230,233, 13, 24, 44, 25,203,178,160,148,226,213, 87, 95, 85,181,105,211,134, -240, 60, 15, 74, 41,100, 70,141,145, 17,208,134, 16,102, 56, 97, 89,163, 25,100, 19,161,108,119,129,231,164, 13, 70,191,129,167, -130, 58,117, 98,171,180,105,176,181, 15, 69,209,231, 31, 66,200, 45, 1,205, 47,135,153, 83, 65, 43, 40, 80,110,144,160,184, 99, - 8,178, 47, 38,195, 93,101,207,113,132,244, 22,239, 35, 34, 34,255, 46, 26,244, 32,255,195,141, 16,178,151, 16,178,119,214,172, - 89, 79, 2,112, 33,132,236,173, 49, 65,110, 53,159,101,150,117,234, 89,118,171,171,115,207,127,235,126,118,157, 53,107, 86, 47, - 66,200,222,174, 93,187,190, 88, 99,228, 30,125, 4,203,108, 54, 31, 93,181,106,117,179,215,198, 63,211,108,251,222,175, 98,126, -218,113,169,211, 11,163,114,175,169,189, 58,186,109, 90,125, 90,198,243,116,175,213, 91, 19,132,142, 46,205,154, 33, 45, 45, 13, -241,241,241,208,233,116,208,235,245,208,235,245, 48,150,148,192, 84, 90, 10, 82, 81, 1, 25,207, 67,151,158, 14,255,142, 29, 65, -128,118, 86,132, 42,235,173, 22,100, 89, 22, 68, 16, 64,108,108, 64,108,108,154,100,176,212,106,117,112,112,112,240,119,235,215, -175,151,190,243,206, 59,225,126,126,126,107,115,114,114,210,125,124,124, 6, 46, 90,180,232,196,199, 31,127, 44, 31, 51,102, 76, -235,245,235,215,191, 80, 95,196,193,130, 84,161,107,239,219,172, 53, 42,180, 17, 80,201,100, 40, 46,215,163,164, 66,143,194, 82, - 29,118,236, 26, 13,189,174, 10,188,222, 0,179,145,135,109,179, 97,104,229,252, 36, 64,111, 6, 53,164,121,246,236, 89, 92,189, -122,181, 54,130,165,211,233,208,191,127,127, 12, 27, 54, 12,105,105,105, 56,127,254, 60, 28, 28, 28,224,230,230,134,109,219,182, -225,242,229,203, 8,181, 68,248,154, 0, 43,119,193,138,205, 91,160,211,233, 64, 25, 91,208, 58, 53,203, 77,137, 96, 17, 66,198, -228, 12, 29, 26,128,227,199, 49,160,121,243,182,129,129,129,208,233,254,215,121, 44, 32, 32,192, 39, 51, 51,243,182, 90,173,222, - 66, 8, 89,159,149,149,117,169, 94, 45, 8,157,157,156,219, 33, 59, 35,166, 70,155, 3,129, 28,189,250, 92,132,209, 40,224,198, -245,254, 80,200,229, 96,136, 28, 60, 95, 4,123,135,102, 0, 72, 80, 35,199, 81,191, 3, 7, 14,192,222,222,190,182, 90, 16, 0, -158,126,250,233,105,182,182,182,221,116, 58,221,144,189,123,247,162,180,180, 20,126,126,126,112,119,119, 71, 92, 92, 92, 63,107, -243,111, 99, 99,231,204, 73,109, 32, 48, 28, 28, 28,156,192,201,108, 32,240, 28,204, 2, 96,231,224,138, 51,231,175, 35,233, 14, - 59,241,102, 42,182,213,159, 70,208,128, 1, 87,226,171, 52, 85,237,135, 60,211,215, 57,164, 83, 7, 93,204,220,247,236, 22, 44, - 89,251,201, 7, 51, 94,111,150, 85,174, 40,239, 51,101,127,254,207,191,206,109,177,104,201, 50, 69,126,126,190,201,168,215,237, - 23, 4, 97, 74, 67, 61, 8, 41,165,184,114,229, 10,236,236,236,144,146,146, 2, 23, 23, 23,152,205,230,234,135, 23,228, 87,152, -165,220, 22,214,196,127,195, 74, 20,107, 0, 99,178, 64,105, 91,202, 9, 82, 50,111, 30, 67,231,204, 17,234,209,108, 47,147,203, -161,209, 80, 84,156,222, 7,161,184, 10,180, 84, 11, 84, 25,160,209,178,168,168, 34,168,168, 18,160,237, 20, 6,243,193,179,112, - 42,211,129, 82,218, 81,188,221,136,136,136, 52,112,173,122,154, 16,178, 55, 38, 38,230,233,134,126,167,148, 62, 13,192,112,207, - 50,172,249, 12, 0, 11, 22, 44,248,180,206,114,213,159, 98,176,174, 38,221,218,214,161, 67,171, 32,111,111,167,214,161, 29, 58, -184,121,123,221, 42,119,117,243,182,251,229,192,101,101,126, 94,201,245,171, 87,111,254,220, 20,163,170, 45, 46, 70,246,165, 75, - 40, 47, 46,134, 86,163,129,174,162, 2,124, 73, 9, 60, 3, 3, 65, 43, 43,193,106,181,224,244,122, 72, 5, 1, 74,149, 10,248, -223, 12,247,247, 69, 34, 8,224,142, 30,133,237,176, 97,128, 84, 10, 67, 82, 82,181,217, 50,153, 32,233,209, 3,196,198, 6,140, -163, 35,200,190,125,213,223,219,217, 1, 95, 52, 62,154,129, 90,173,118,241,240,240,216,182, 98,197, 10,105, 97, 97, 33,174, 93, -187,118, 57, 53, 53,181,220,213,213,213,150,227, 56,225,250,245,235, 71,175, 95,191, 62,160,101,203,150, 48,155,205,254,141,233, - 85,150,218, 26,141, 38, 1, 89,249,119,144,153,115, 5, 14,182,205, 65, 25, 31,228, 21, 87,129,192, 29, 38,237,117, 8, 53,109, -201,244,218, 76,104,244,196,170, 2, 53, 26,141, 48, 26,141,224,121, 30, 6,131, 1, 47,189,244, 18,206,196,198, 98,243,174, 19, -200,200,200,128, 95, 51, 37,158, 31, 53, 2,157, 59,119,134,165,199,161, 53,134,181, 46, 45, 35, 22, 67, 38,147, 97,251,246,237, - 80, 85,239,147, 38, 27, 44, 79, 79,207,152,182,109,219, 6, 92,215,104,112, 45, 57, 25, 17, 35, 71, 2, 0, 78,157, 58, 85,187, -142, 86,171,197, 11, 47,188, 32, 75, 77, 77,125, 57, 57, 57,249,101, 79, 79,207,229, 57, 57, 57,179,234,211,220,183, 47, 22,175, -191,126, 13, 5, 5,213,145,221, 45,155,255,231,159,210, 82,141,232, 63,232, 0, 0,192,209,209, 17,139, 23, 91, 55,219,131,217, -108,198,186,117,235,106,171, 5, 1, 64, 38,147, 69,189,243,206, 59, 67,238,183,126, 80, 80,131,158, 13,110,110,110, 54, 50,153, -108,148,217,108,126, 49,168,165,153, 43,174,208, 2,188, 1,183,211,110,163, 84, 99, 4,229, 77, 72,207,204,129, 70, 47,160,168, -184, 2,161, 17, 3, 87, 24,248, 51,255, 85,171,213,179,179,179,179,239,251,240,114,107,255,114,131,115,192,148, 77,185, 5, 91, -102, 76,154,240,162,196,193,201,163,114,195,202, 79, 29, 24,194, 96, 79,162,169, 36,200,223,197,105, 72,212,242,202,137,111,191, -127, 81,111,190,253, 14,210,127,249,189, 38,220,221, 32,197,197,197,208,235,245,184,125,251, 54,148, 74, 37, 36, 18, 73,141,193, -178, 28, 24, 53, 31, 77,130,137,114,132,225, 76, 44, 51, 23,115,234, 63,217, 25, 6,184,157, 11,172,220,133,226,177,131, 96,250, -248, 45,152,121, 41, 42,203, 5, 24, 6, 77,130,193, 40,192,196,202,160,109,219, 30, 37, 31,205,135,222, 86, 9, 92, 57, 45,222, - 65, 68, 68, 68, 26,122, 80,223, 59,115,230,204,217, 86,174,126, 24,192,160,166, 24, 55,203,242,204,153, 51,103, 91,182, 21, 19, - 19,163, 5,144,221,212,180, 90, 21,206, 17, 4,233,234,131, 7,226, 36,140,132, 99, 90,250,218,148, 1, 6,156,139,207,178, 49, -153, 37,235,155, 88, 50,151, 83,126,255, 29, 84, 16, 80, 89, 90, 10, 93,113, 49, 76,249,249, 48,229,231,131, 84, 84,128,211,106, -193,233,116,144, 24,116, 80,112, 28,202,242,242, 64, 24,230, 90,163, 5, 83,167,241,174, 37,146,197,178, 44, 96,107, 91, 93, 53, -168, 82,253,175,186,208,202, 8,150, 92, 46,255,102,221,186,117, 30,158,158,158,248,234,171,175,224,225,225,209,230,169,167,158, - 42,236,222,189,123,222, 51,207, 60,147,240,222,123,239, 13, 8, 11, 11, 67, 97, 97, 33, 88,150, 77,105, 76,207,100,148, 95, 72, - 74, 49,163,160,240, 2,226, 18,191,193,222, 95,103, 33,249,246, 53,228, 20,105, 96,227, 62, 30,156,109,247,218,117,101,246,209, -200,203, 43, 4, 72,195,121,191,215, 8, 81, 74,113,233,210, 37,124,187,243, 12,212, 65, 79, 65, 98,227,134, 43, 87,146,112,236, -208, 65,120,123,123, 55,106,134, 62,124,141,205,123, 42,164, 12,135,182, 78, 64,254,205,111,172, 54,120, 86,158, 20,163,230,205, -155,135,178,215, 95, 7,182,109,131, 84, 90, 93,187, 20, 21, 21,133,240,240,112,124,244,209, 71,136,138,138, 2,203,178,104,213, -170, 21,134, 12, 25, 2, 66,200,168,122,243, 14,114, 73, 48, 23,193,223,255,127,222,246,219,239, 11,112, 62,161, 55,174, 93, 30, -140,157,187,115,106,191,111,222,188, 57,114,115, 83, 1,208,107,141,164,241,215, 65,131, 6, 97,239,222,189, 80, 40, 20, 80,169, - 84, 24, 54,108, 24,170,170,170,158,173,121,162, 1, 33, 4,132, 16,204,173,105,203, 87, 85, 85,165,111, 72, 83, 38,147,125,243, -218,107,175, 45,216,191,127,127,208,162,229,123, 12,135,126, 61,104, 58,112,240, 55,254,221,217, 27, 12,199, 78, 94, 48, 29, 57, -117,153,127,118,244, 52,227, 47, 71,174,240, 19,167, 44, 52, 44, 90,180, 8, 95,126,249,165,135, 68, 34,249,164, 33,221,146,148, - 21,149,201, 55,175,174, 92,190,118, 35, 43,147, 82,249,157, 2, 83,201,169,100,109,182,141,156, 72, 90, 55,163, 54,255,153,245, -241,237,156,220, 27,179,144,254,203, 77, 43, 47, 46, 40, 42, 42, 66, 97, 97, 33, 50, 51, 51, 81, 80, 80,128,194,194, 66, 80, 74, - 65,225,110,199, 26,249, 81, 96,153,159,205, 38,189,222,196,145,214, 0, 77, 53, 11, 70,195,156, 57, 16, 26, 16,189, 90, 85, 94, - 1, 70, 71, 33, 92, 72,131, 65, 80,160,204,192,161, 84,207,162, 66,103, 70, 57,145,162,130,145,163,184,107, 52,244,102, 22,229, -101,229, 32,132, 92, 22,111, 33, 34, 34, 34, 13, 25,161, 5, 11, 22,124,250,103,105, 91, 62,199,196,196, 92,173,179, 45,229,195, - 68,176,162,235,212,123, 70,223,187,210,181,107,215,242,250,247,123,202,125,249,170, 99,254, 70,131,153,223,245,203, 33,163,201, -104,171, 77,186,158,210,164, 6, 61, 70, 65, 56,152,152,144,208,191, 91,215,174,242,180,243,231, 97, 42, 41,129,185,164, 4, 18, -163, 17,156, 70, 3, 70,175, 7,171,213,162,121,176, 10,160, 30, 56,151,146,205, 27,205,230,195,141,154, 12,139,193, 98,217, 90, -115,197, 80, 10,198,214,182,186,106,208,206,174, 73,230,170, 89,179,102,170, 1, 3, 6, 68,135,132,132,128, 82,138,133, 11, 23, -194,104, 52,202,140, 70, 35, 76, 38, 19,140, 70, 35, 42, 42, 42,240,211, 79, 63,225,187,239,190,139,181,183,183,255,190,113, 19, -168, 63,120,228,244,197,126, 47, 13,235, 37, 59,116,108, 3, 76,122, 30,149, 58, 71,104,116, 6, 84,104, 37, 48,200,251,130,144, - 19, 96, 88, 57,186, 6, 7,224,232,169,223,117,130,201,120,168,137,206, 30,122,189, 30,249,249, 5, 40,174,252, 13, 40,203,132, -171,177, 2,149,183,111, 33,248,165,151, 27, 53, 67, 12, 3,213, 87, 31,191, 4,142,227,240, 83,108, 37, 56,142, 3,207,223,127, -204, 83,150,101,225,224,224,128,202,202, 74, 0,176,202,101,105,181, 90,108,222,188, 25, 81, 81, 81,232,217,179, 39,178,178,178, -144,146,146,130,129, 3, 7,214,174,115,241,226, 69,156, 63,127, 30,209,209,209, 13,106,149,149, 9,191, 22, 23,223, 28, 54,100, -200, 16,233,217,179,103, 65, 41, 69,235,214,142,176,183,179, 5, 97,228,104,215,206, 13,192,117, 16, 66, 16, 29, 29, 13,163, 49, -155,215,104,240,107, 67,154, 9, 9, 9,195,195,195,195, 91,242, 60,127,177, 99,199,142, 92,110,110, 46, 70,140, 24,129, 45, 91, -182, 88,158,104, 48,115,230,115, 61, 86,160, 0, 0, 32, 0, 73, 68, 65, 84,204,187, 35,147,149,149, 13, 26,172,208,208,208,224, - 41, 83,166, 72, 44,213,213,234,230,243,121,163,209, 40, 0, 64,219, 78, 61,254, 55,126, 92, 63,224,230,205,155, 88,188,120, 49, - 52, 26, 13, 88,150,149, 54,114,220, 83, 66, 72,126, 58,177,217,241,211,206,189,227, 7, 63, 61,132, 51,153,205,124, 7, 95,206, -254,199,159,246, 22,100,101,220, 89,141, 59,135,147,234,174,223,136,158, 33, 39, 39,199, 86,169, 84,226,242,229,203, 6,165, 82, - 41,245,240,240, 32,148, 82,240,156, 13, 39, 48,184, 1, 74,207, 17,179, 89,202,178,220, 40, 16,114,130,176,108,131,251,221, 12, -252,118,243, 90, 82,207, 86, 94,173,153,138, 99, 87, 81, 22,210, 29, 21, 26, 64, 83, 73, 96,150, 40,161,225,228,168,244,111,141, - 10, 23, 15,112, 96,144,157,145,102,226, 41, 61, 44,222, 66, 68, 68,254,117, 52,232, 65,238,141, 96,117,233,210,229,199,186, 81, - 38,203,103, 0,122, 0, 13,181,137, 46,168, 27,169,170,107,168,238,183,157,123,116, 31,204, 96, 81, 74,143,163,129,170, 56, 31, - 31,159,110,111,191,253,118,167,137, 19, 39,162,178,178, 18,223,126,251, 45, 86,175, 94, 13, 31, 31,159,110, 25, 25, 25,167,172, -221, 88,139, 22, 45,126,216,125,232,208,212, 78,129,129,173, 91,180,104,129,235, 55,111, 66,106, 52,130,227,121,176, 85, 85,144, -152,244,104, 17,102, 3,169,194, 21, 57,105, 85,248,241,234,213, 59,148,210, 6, 7, 94, 52, 49, 12, 12,253,250,129,191,113, 3, - 12,207, 67,218,171, 87,117, 91, 43,123,123, 48,187,118, 85, 27, 43, 65, 0,230,204, 1,181,177,129,240,212, 83,141,166, 51, 47, - 47,175,170, 85,171, 86,231,147,147,147, 67, 3, 3, 3, 49,111,222, 60,100,100,100,128, 82,138,252,252,124, 93,126,126,126,118, -113,113,113, 58,195, 48,187,179,178,178,190,177,102,164,240,188,214,204,166, 67,135, 14,191, 29, 22, 28,212,170,119,207,185,216, -187,247, 67,148,150,151, 67,163,231, 80,169, 53, 66,163,163, 80,219,249, 35,178, 83, 8, 10,138, 12,184,113, 53, 49,171, 64,234, -212,164, 65, 39, 9, 33,184,120,241, 34,154, 59, 3,215,174, 39,192, 85, 95,132, 64, 71, 91,132,116,235,142,212,212,212,251, 70, -189,254, 96,178, 8,192,243, 60,202,203,203,209, 53, 48, 16,121,121,121, 40, 42, 42,186, 43, 66,232,236,236, 12,149, 74,133,132, -132, 4,156, 60,121,210,196, 48,204,135, 86, 36,207,100, 48, 24,106,171, 42, 15, 31, 62,140, 94,189,122,161, 71,143, 30, 56,118, -236, 24, 18, 18, 18,112,254,252,121, 48, 12, 3, 63, 63, 63,203,144, 2,166,250,196,226,227, 47,237,176,183, 39,239,142, 29,251, -102,208,152, 49, 99,240,211, 79, 63, 98,220, 43,109, 64, 24, 57, 8,145,227,153,193,109,241,209,199, 9,136,140,140,134,171,171, - 20,135, 15, 95, 77,227, 56,135, 31, 26,143,214, 10,139, 63,251,236, 51, 78,161, 80,192, 96, 48,160,178,178,178, 54,255, 11, 22, - 44,192,172, 89,213, 53,150,115,230,204,193,220,185,115,161,211,233, 26,236,224, 96, 50,153, 40,195, 48, 36, 35, 35,195,168, 82, -169,136,179,179, 51, 39,151,203,161,215,235,107,141,214,205,155, 55,177,119,239, 94,100,102,102,194,217,217,153,113,114,114,130, -217,108,182,170,199, 74,113,242,119,251,118, 19, 12,234,214, 37,210,175,163,175,167,172,164, 40, 31, 59,118,239, 79, 50,166,252, -180, 31,213,213,130, 86,205,230, 78, 41,253,236,236,217,179,159, 80, 74, 57,149, 74,181,255,242,229,203,189, 53, 26,141,138, 82, - 10, 98, 78, 45,103, 12,145, 63,153, 9,199, 80,142, 29, 4,130, 86, 96,241,161, 84,166, 42,108,240,226,194,113,235,103,111,218, -249,214,151,107, 23,169,203, 53,101,208,206, 95, 7, 99,226, 53, 24,101,182, 40,250, 56, 6, 85, 6, 1,218,146, 74,216,125,185, - 10, 74, 15, 15, 28,171, 72,201, 47, 43, 47,255, 82,188,215,136,136,252,235,162, 82, 13,122,144,186,230,200,114,233, 3,144, 22, - 19, 19, 83, 88,167, 45, 86, 1,128,139, 0, 58,215,172, 87,112,207,255, 10, 0,196, 3, 8,175,163, 83, 80,199,104,213,253,108, -184,103,157,139, 15,146, 47,210,216, 13,215, 66,120,120,120,213,168, 81,163,160,213,106,145,153,153,137,125,251,246, 33, 59, 59, - 91,213,200, 13,255, 15,179,109, 71, 70, 70, 6, 56,217,216, 28,157, 60,124,184,147, 92,175, 71,102,108, 44,140,217,217,112,107, -217, 18, 50,137, 4,206, 45, 60, 81, 81,166,195,151, 87,175,150,167,150,151,247,190,119,160,209,186,154,209,209,209,114,163,209, - 88,176,123,247,110,182,180,180, 20, 12,207,131, 29, 54,172, 58,106,229,224, 0,118,227,198,234, 42, 29,179, 25, 88,186, 20,140, -173, 45, 84, 79, 60,129,158,179,102, 33, 49, 49, 81,213, 80, 58,189,188,188,188,124,125,125,227,126,249,229, 23,199,172,172, 44, - 60,243,204, 51, 23,203,203,203,251, 23, 22, 22, 86, 90,105,118,254,160,233,214,249,217, 0, 39,123,135,163, 99,199,142,117, 82, -201,205, 56,127,237, 10,238,148,184,195, 96,228, 97,111, 35, 67,100,160, 2,249, 69,122,252,186,127,111,169,190,170,184,239,189, - 3,141,214,213, 12, 13, 13,173, 26, 61,122, 52, 14, 30, 60, 8,131,193, 80,211,187,175,218,143,252,231, 63,255,193,153,227,199, - 80,145,118, 11, 93,186, 71, 99,192, 75, 99, 49,110,220, 56,156, 61,123, 22, 35, 71,142,196,181,107,215,106,243, 95, 87,211, 50, - 85, 14,111,102, 80, 80, 38, 51,103,104,186, 50,239,188,243, 14,201,185, 52, 3,218,202, 92,232,245,122, 72, 21,174,200, 53,143, -196,254,253,251,105, 81, 81,209, 14,137, 68, 50, 47, 61, 61,253,118, 99,121,247,246,246, 30,237,232,232,184,188,119,239,222,138, -154, 40, 33, 46, 95,190, 12, 74, 41, 78,158, 60, 9, 0,240,245,245,133,175,175, 47,114,115,115,145,150,150,166, 53, 26,141,255, -201,204,204,252,161, 62,205,136,136,136, 22,129,129,206,199, 7, 13, 26,238, 98, 52,154,208,231,169, 10,240,124, 33, 8, 35, 5, -199,185,227,228, 41,130,252,188, 98,156,137,141, 45,185,117,171,162,111, 92, 92, 92,114, 99,233, 12, 13, 13,221, 58,120,240,224, - 65, 10,133, 2, 63,253,244, 19,223,172, 89, 51,206,209,209, 17, 27, 55,110,172,215,212, 82, 74,235, 61,150,212,106,117,204,140, - 25, 51, 94, 31, 49, 98, 4,107, 54,155,205, 37, 37, 37,102, 0,196,195,195,131,141,141,141, 53,237,222,189, 27, 90,173, 22,222, -222,222, 12, 33,132,196,199,199, 11, 41, 41, 41,113,132,144,217,153,153,153, 87,234, 75,103,205,247,213, 3,140,186,244,117,111, - 30, 24,176,126,193, 71,115, 92, 63,248,100, 65, 89,202,229,107,175,160,232, 96, 65, 29,115, 69,239,141, 96,213,167, 89,231, 60, - 13, 17, 4, 97,191, 32, 8, 74,142,227,252,227,226,226,242, 67, 39, 30,245, 51,179,116, 36, 24,154,204,115, 36,238,234, 23,189, -242, 27,211, 12, 15, 15, 15,243,111,209,124,223,155,147, 39,219,148, 23,148,163,248,189, 79, 80, 97, 20, 80,244,238, 76,232,121, - 10,151, 31, 54,128, 83,218,225,152,180, 92,147, 87, 89,246,135,129, 70, 27, 75,231, 3, 93,244, 68, 77, 81, 83,212,124, 44, 53, -255,105, 88, 53, 23, 97, 77, 4, 11,175,191,254, 58, 42, 42, 42,240,227,143, 63,226,215, 95,127,109,114, 4, 11, 0,226,226,226, -110, 69, 70, 70,246,253,100,227,198, 31, 6, 5, 6, 54, 15,244,247,151, 58, 7, 5, 65,169, 82,161,180,168, 8, 23,211,114,204, -223, 93,191,126, 91,199,243, 47, 38, 38, 38, 38, 89, 17,113, 0,207,243,112,112,112, 0,229,121, 72,102,204, 0, 8, 1,101, 89, -232,171,111,126, 16, 40,133,164, 75, 23, 80,150, 69, 89,165, 85,254, 8, 89, 89, 89, 89, 62, 62, 62,163, 39, 77,154,244,203,183, -223,126,203, 68, 71, 71,119,218,189,123, 55,125,152,194, 46,184,248,211, 45,143,224, 33,125,151, 47, 95,189, 57, 36, 60,210,167, - 69,203,150,242,110, 62, 14, 48,154,204,200,203, 47,194,241, 51, 73,250, 27,215, 46,100,130,215,189,152,119,101, 79,131,121,151, - 74,165,105,142,142,142, 45,230,206,157, 11,158,231, 33, 8, 2, 76, 38, 19, 10, 10, 10,112,254,252,121,132, 70,117, 65,219,241, -175,162,184,184, 24, 95,125,245, 21,188,189,189, 49,112,224, 64,148,150,150,226,250,245,235,105,247,211,252,232, 75,115,179,186, -203,106,181, 58,120,252,248,241,243,167, 62, 87,209,253,221,241, 99, 65, 41, 69,204,186, 13,248,126,231,119,167, 0, 50, 59, 39, - 39,231, 66, 99,121, 14, 8, 8,144,233,245,250, 78,148, 82,174,180,180,116,101, 73, 73,201,152,217,179,103,123, 44, 89,178, 4, - 79, 60,241, 4, 50, 51, 51,145,154,154,138,192,192, 64,148,149,149, 33, 62, 62,222, 92, 89, 89,185,129, 82, 26,147,155,155,219, - 96,132,228,220,185,115,105,161,161,161, 79,230,229,174,249,225,141,215,251, 6,152, 76, 97, 50,123,135,238,160,148, 71,105, 73, - 6, 8,189,100,252,121,231,111,169, 21, 21,210,231,173,157, 42,135,227,184, 41,123,246,236, 1,106,166,202,201,206,206,190,106, -169, 90,190, 95, 4,171, 49,178,179,179,103,249,248,248, 28, 88,190,124,249,204,241,227,199, 71,142, 24, 49, 66,194,178,172,144, -149,149,197,255,240,195, 15,164,117,235,214,140, 92, 46, 39,177,177,177,194,213,171, 87,207, 82, 74, 63,203,202,202, 58,105,229, - 83, 31, 37,132,224,141, 17, 45, 35,211,210, 82, 10, 63,127,167, 79, 71, 95,103,231,164, 94,195,253, 34,202,203, 71, 29,217,178, -101, 75,213,253,204,149,149,231,233,249,176,176,176,126,132,144,249, 26,141,166, 10, 0, 4,153,161,130,209, 50,219, 9,203, 26, - 47,174,236,101, 85,243,128,248,248,248,132,240,240,240, 65, 51,166,207,216, 60,116,232,115,205,124, 94,121,129, 37,151,174,195, -168,144, 65,126,227, 6, 24, 91, 59,186,175, 44, 53,175, 66,194, 62, 31, 31, 31, 47,142,226, 46, 34, 34,242,143,193,234, 8,150, - 90,173,174,242,245,245,133,179,179, 51,138,139,139,113,231,206,157, 7,138, 96, 89,184,119,178,103, 66, 41,161, 86, 76,246,124, - 79, 4,139,211,235,245,169, 38,147,169, 73, 99, 84, 72, 36,146,130,179,103,207,182,176, 38,157, 94, 94, 94, 35,189,189,189, 63, -206,202,202,218,149,153,153, 57,227, 81,184,123,203,100,207,224,164, 3, 64,133, 14, 0, 8, 24,182,209,201,158,239,137, 96, 69, - 75,165,210, 21, 70,163,177,197,189,235, 25,141, 70, 20, 21, 21, 65,175,175,174, 54,150,201,100,112,113,113,129, 76, 38, 3,203, -178,105,102,179,121,178,101, 46, 66,107,158, 66, 62,255,143,164,234,157,113,227, 41, 0, 44,252,114, 61,185, 89, 69,157,191,249, -134,234,173,201,251,237,219,183, 91,217,218,218,142, 32,132, 12, 3,208,186,178,178, 82,255,193, 7, 31, 92, 58,118,236, 88, 69, -171, 86,173,250,244,237,219,151, 36, 37, 37,225,202,149, 43,180,176,176,240,103,142,227,230,101,100,100,164, 54,169, 60, 9, 97, -186,118, 13, 30, 97,103, 75,250, 11, 84,232, 84,243,221,213,202, 74,252,234,233,233,183,101,219,182,109,230, 7,125, 2, 11, 11, - 11,219, 81, 89, 89,217,239,198,141, 27, 15, 20,193,186,231, 65,165,187, 66,161,152, 53,102,204,152,136,103,158,121,134,137,139, -139,195,137, 19, 39,204,113,113,113,231, 76, 38,211,130,140,140,140,147, 77, 73,231,220,185,115,217,210,210,210, 30,130, 32, 12, -105,217,178,101,103, 15, 15, 15,187,188,188,188,146,219,183,111,159,163,148,254,226,236,236, 28, 59,119,238,220, 7,206,251,163, -124,162,173, 59,217, 51, 39, 8, 29, 76,132, 80,107, 38,123, 22, 35, 4,162,166,168, 41, 70,176,254,241, 6,171,166, 64,255, 11, - 96, 54,128, 79, 41,165,243,197, 3,229,223,161,249,233, 36, 82,204, 50,213, 13, 7,121, 1, 70, 62, 9,174,115,142, 81,222, 26, -205, 22, 45, 90,200, 77, 38, 83,103, 0,173, 8, 33, 14,148,210, 18,147,201,116, 40, 63, 63, 63,223,211,211, 51, 4,128,165,213, -248,130,156,156,156,243,143, 99,121,170,213,234, 51, 6,131,193, 95,175,215, 75,181, 90,173,132, 82, 90,219, 86, 64,169, 84, 22, - 86, 85, 85,249, 54, 69,179,198,104,189, 77, 41,133, 94,175,255,162, 62, 99,101,173,230,164, 73,147,134,212,172,227, 71, 8,185, - 14, 32,185,178,178,242,232,198,141, 27, 53,226, 49, 47,106,138,154,162,166,104,176,254, 30,184,166,172, 92, 99,170,230,139,197, -246,239, 98,246, 74,234,252,160,255, 77, 75, 75,211, 3, 56, 91,243,186,139, 26, 67, 53,226,113,207,127,118,118,118,215, 71,169, - 87, 99,168, 78, 62, 42,189,149, 43, 87,238, 2,176, 75, 60, 82, 69, 68, 68, 68, 30, 31, 24,177, 8, 68, 68, 68, 68, 68, 68, 68, - 68, 30, 45, 4,192,125,135,184,110, 74,232,143, 16,210,161,169, 27,110, 76, 95,212, 20, 53, 69, 77, 81, 83,212, 20, 53, 69,205, -127,158,102, 99,218,255,148,170, 71,242, 0, 29,140,172, 23, 23,235,167, 69, 77, 81, 83,212, 20, 53, 69, 77, 81, 83,212,252, 23, - 34, 86, 17,138,136,136,136,136,136,136,136,136, 6, 75, 68, 68, 68, 68, 68, 68, 68, 68, 52, 88, 34, 34, 34, 34, 34, 34, 34, 34, -162,193, 18, 17, 17, 17, 17, 17, 17, 17, 17, 17, 13,150,136,136,136,136,136,136,136,200, 99,195,159,218,139, 80, 68, 68, 68, 68, - 68, 68, 68,228,223,136, 24,193, 18, 17, 17, 17, 17, 17, 17, 17,249, 51, 12, 22, 33,132,214,125, 23, 17, 17, 17, 17, 17, 17, 17, -249, 43,248,167,122, 16, 49,130, 37, 34, 34, 34, 34, 34, 34, 34, 34, 26, 44, 17, 17, 17, 17, 17, 17, 17,145,255, 31, 6, 43,186, - 38, 52, 23, 45, 22,137,136,136,136,136,136,136,200, 95,200, 63,210,131,212,246, 34, 36,132, 80, 74, 41, 17,247,179,136,136,136, -136,136,136,200, 95,106, 70,254,129, 30, 68, 28,166, 65, 68, 68, 68, 68, 68, 68, 68,228, 17,243,167,182,193, 34,132,116, 16, 53, - 69, 77, 81, 83,212, 20, 53, 69, 77, 81, 83,212, 20, 13,150,136,136,136,136,136,136,136,136,136,104,176, 68, 68, 68, 68, 68, 68, - 68, 68, 68,131, 37, 34, 34, 34, 34, 34, 34, 34, 34, 26, 44, 17, 17, 17, 17, 17, 17, 17, 17, 17,209, 96,137,136,136,136,136,136, -136,136,252, 77, 16, 0,247,237, 9, 64, 41,189, 98,181,200, 3,244, 38,104, 76, 95,212, 20, 53, 69, 77, 81, 83,212, 20, 53, 69, -205,127,158,102, 99,218, 77,241, 31,143,181,193,250, 51,199,193, 34,132,116,120,212, 5, 37,106,138,154,162,166,168, 41,106,138, -154,162,230, 63, 79,243,159,134, 88, 69, 40, 34, 34, 34, 34, 34, 34, 34, 34, 26,172,191, 31, 66,200,104, 66,200, 46, 66, 72, 60, - 33,100, 55, 33,100,244, 67,104, 41, 9, 33,211,234,232,237, 36,132, 76, 37,132,200,197,146,126,172,143, 1, 86, 44,133,191,181, -252,137,183,183,119, 64,104,104,168,228,207,218, 70,104,104,168,196,199,199,199,239,207,220,198,163, 68,173, 86,183, 9, 10, 10, - 74, 84,171,213,109,196, 35, 68, 68,228,239,135,171,239,135,136,136,136, 27,102,179,217,187, 41, 98, 50,153, 44,243,204,153, 51, -245,158,220,225,225,225, 55, 4, 65,248,131,166, 68, 34, 17, 76, 38,211,125,205,158, 68, 34, 41, 56,123,246,108,139,199,232,194, -254,149,147,147,147,105,245,234,213,235,130,131,131, 3, 74, 74, 74, 52, 19, 39, 78,236, 77, 8,233, 69, 41, 29,223, 68,173, 32, - 66,200,134,240,240,240, 93, 83,166, 76,217,209,166, 77, 27, 59,173, 86, 43,219,186,117,107,179, 53,107,214, 28, 34,132,188, 78, - 41, 77, 22, 15,211,199,234, 38,214,153, 82,186,164,117,235,214, 33,106,181, 58,145, 16, 50, 53, 43, 43,235,178, 88, 50,127, 89, -249,251, 0,120,181, 93,187,118,207, 7, 6, 6,122,166,166,166, 26, 60, 61, 61,127,161,148,190,147,155,155, 91,248, 40,182,225, -237,237,237, 36, 8,194, 18,119,119,247,193, 17, 17, 17,178,148,148, 20,131, 90,173,222,195, 48,204, 59,153,153,153, 37,143,171, -185,138,140,140, 60,245,233,167,159,186,204,154, 53,235,148, 90,173,238,150,157,157,125, 67, 60, 98, 68, 26,163, 69,139, 22, 14, - 21, 21, 21,171, 25,134,233,172, 80, 40,154,217,217,217,193,214,214, 54, 79, 46,151, 95,114,112,112,120, 99,231,206,157,101, 98, - 41, 61, 98,131, 69, 41,245,248,237,183,223, 96,111,111, 15,179,217, 12, 65, 16, 32, 8, 2, 40,165,181,239,117, 49, 26,141,232, -215,175,159, 71, 67, 27,163,148,122, 30, 61,122, 20,118,118,118,119,253,175, 75,151, 46,204,169, 83,167,160, 80, 40,238, 90,223, - 96, 48,160,107,215,174,110,143,145,185, 26,229,226,226, 98,184,115, 39, 61, 82,103, 48, 70,190,249,238,188, 79, 70, 13,126,210, - 62, 54, 54,150, 25, 52,104,144,132, 16, 50,154, 82,250,131,149, 90, 74, 66,200,154,217,179,103, 47,150,202,109,221,182,237, 59, -201,101,175,254, 62,179, 83,144, 31,121,123,242, 27,170,201,147, 39, 39,180,109,219,118, 45, 33,164, 15,165, 84, 47, 30,170,143, -197,254,231,124,124,124,182,198,196,196,168,243,114,114,176,120,233,210, 8, 65, 16,190,192, 63,108, 6,248,199,185,252,189,189, -189,183,198,196,196,116,120,238,185,231,192,178, 44,116, 58,157,108,199,142, 29,195, 62,249,228,147, 39,188,189,189, 67, 30,214, - 0, 5, 4, 4,216,201,229,242,248,152,152, 24,143,225,195,135, 3, 0,170,170,170,100,219,182,109, 27,241,233,167,159, 62, 17, - 16, 16, 16,124,235,214,173,138,135,200, 3,227,226,226, 50, 5,192,147,130, 32,200, 1,196,149,148,148,124, 66, 41, 53, 62, 76, -186,157,156,156, 54, 45, 90,180,200, 69, 46,151,227,155,111,190,113,121,238,185,231, 78,170,213,234,238,162,201, 18,105, 8, 55, - 55,183,177,229,229,229, 75, 85, 42,149,212,209,209, 17, 74,165, 18, 82,169, 20, 50,153,204,199,201,201,201,199,214,214,182,223, - 11, 47,188, 48,117,243,230,205, 27,197,210,122,132, 6, 11, 0, 84, 42, 21,126,252,241, 71,112, 28, 7,169, 84, 10,137, 68, 2, -137, 68, 2,153, 76, 6,142,227,106,151,165, 82, 41,188,189,173, 15,118,237,222,189, 27, 14, 14, 14,176,183,183, 71,187,118,237, - 0, 0,114,185, 28,135, 15, 31,134, 84, 42,173,213, 14, 11, 11,251,203, 11,100,100,111, 82, 5, 0,219,190,104, 91,189,252,118, -117, 0,105,219, 23,109, 49,168,135, 13,158, 30, 61,255,133, 42,131,233, 9, 42, 16, 93, 78,177, 80, 60,127,233,186,164,206, 65, -129,100,219,182,109,193,174,174,174,207, 1,248,193,202, 77,189, 25, 17, 17,177,207,204, 40,220, 95, 26,251,202,152, 87, 24,194, - 15, 27, 59,237,211,211, 23,111,148,110, 8, 10,217, 82, 88,152,245,234,242,229,203,111,190,245,214, 91,111, 0, 88,106,109,250, -235, 70, 9, 89,150, 45, 82, 42,149,126,199,142, 29,227, 31,131,155,163, 39,128,249, 0,120, 0,139, 41,165, 55,234,252,214, 74, - 42,149,206, 55, 26,141, 37, 0, 62,161,148,102, 62,142, 39,139,183,183,119,155, 23, 95,124,209,165,168,160, 0,139,151, 46,181, -164, 61,132, 16,194, 82, 74,205,127,101, 90,194,195,195, 91,202,100,178,249, 0, 58,235,245,122,117,205,249,154, 45, 8,194,110, -173, 86, 59, 47, 49, 49, 81,251,128,251,201, 27, 64, 59, 84,247, 48,190,239,115, 82, 76, 76,204,205,153, 51,103,222,254,171, 53, -213,106,245,127,158,124,242,201, 14,163, 71,143,198,161, 67,135,112,244,232, 81,116,238,220, 25,125,250,244,193,157, 59,119,220, -214,174, 93, 59, 26,192,202,135, 41, 87,189, 94, 63,114,234,212,169, 30,195,135, 15,199,158, 61,123,112,244,232, 81,116,237,218, - 21, 3, 7, 14, 68, 90, 90,154,199,198,141, 27, 71, 2,216,208,196, 50,149, 3,152, 2,224, 73,150,101,187,143, 29, 59,150,159, - 60,121,178,132, 97, 24,211, 23, 95,124,225,182, 97,195,134, 81,174,174,174, 33,133,133,133,149, 15,154,238,146,146,146, 79, 62, -254,248,227,111, 87,174, 92,105,151,146,146,130,121,243,230,185, 78,154, 52,233,184, 90,173,238, 41,154,172,250, 97, 89,182, 76, - 16, 4, 9, 0,103, 74,169,190,177,229,127, 82,222, 93, 93, 93, 95, 43, 46, 46,254, 66,173, 86,195,205,205, 13,132, 84,159,158, -130, 32, 64,163,209, 64,171,213,194,207,207, 79,218,174, 93,187, 85,111,189,245,150,100,213,170, 85, 95,138, 71, 76, 19,175,167, - 0,122, 82, 74,143,215,185, 24,244,164,148, 30, 15, 15, 15, 47, 63,117,234, 20,183,119,239, 94,176, 44, 91,107,164,234,154, 42, -203,103,137, 68, 2, 15, 15, 15,244,238,221,155, 63,119,238,156,125,125, 27, 11, 13, 13,173,220,189,123, 55,147,146,146, 2,123, -123,123, 56, 56, 56,192,211,211, 19, 93,186,116, 65,108,108, 44,206,158, 61,123,151,113,107,223,190, 61, 34, 35, 35,145,152,152, -168,250,203, 74, 36,169, 93, 21,218, 37,169,234,185, 80, 94, 74, 74, 74,250,106,254,250,195,229,249,197,101, 5,173, 28,165, 85, -163,187,181, 81,249,121,185,200, 61,162,186,125, 65, 8, 41,160,148,134, 91,121,209,221,249,221,119,223,253,188,245,208,117,155, - 47,151,188, 55,129, 99, 8,255,238,156, 37,159,120,217,179,124, 51,150,215,132, 13, 24, 96,223,190,125,251, 87,109,108,108,204, -148,210,161,214, 38, 63, 44, 44,172,252,215, 95,127,229, 56,142, 67,239,222,189,205, 42,149,202,237,216,177, 99,127,251,133,129, - 16,178, 44, 47, 47,239, 85,157, 78,135,176,176,176,138,162,162,162,254,148,210, 75,132,144,246, 67,134, 12, 57,188,109,219, 54, -219,243,231,207, 35, 42, 42,106, 7,165,244,165,199,233, 36, 81,171,213,123, 0,244, 98, 89, 22,163, 70,142, 52,252,184,117,171, - 76, 16,132,106,103, 64,105,124, 78, 78,206, 95, 26,193, 10, 13, 13,109,163, 80, 40,142, 46, 94,188,216, 46, 40, 40,136, 72, 36, - 18,240, 60,143,223,127,255, 29,155, 54,109,210,157, 59,119, 46, 75,167,211,133, 37, 38, 38,154, 30, 96, 63,245, 59,126,252,120, - 85, 64, 64,192,125, 13,163, 70,163, 97, 91,181,106,229, 7, 96,227, 95,173,233,229,229,229, 37, 8,194,178,232,232,232,126, 39, - 78,156,184, 6,224, 99, 74,233,219,155, 54,109,138,178,177,177,193,179,207, 62,155,156,158,158,254, 80, 79,101, 62, 62, 62, 39, -207,158, 61, 27, 82, 81, 81,129, 94,189,122, 37,114, 28,247, 1,207,243, 31,111,223,190, 61,148, 97, 24, 60,247,220,115,231, 51, - 50, 50,186, 55, 33,239, 65,114,185,124,227, 15, 63,252, 96,235,239,239,239, 47,149, 74, 25,127,127,127, 20, 23, 23, 67,167,211, -193,221,221, 29,243,231,207,191,184,108,217,178,180,138,138,138,225, 15,120,124,182,137,136,136, 56,245,209, 71, 31,185, 36, 37, - 37,161,117,235,214, 40, 40, 40, 64,106,106, 42,150, 47, 95,158, 87, 81, 81, 17,253,119,153, 44, 66, 72, 46, 0, 59, 0,158,148, -210,242, 71,164, 39,179, 44, 75, 36, 18,200,229,114,200,229,114, 40,149, 74,164,166,166,238, 98, 89,118, 34, 0,171,142,125,142, -227,202,205,102, 51, 7,224, 73, 0, 9, 44,203,150, 54,180, 76, 41, 21, 30,131,107,169, 23,195, 48,159, 83, 74,123, 2, 96, 8, - 33, 39,221,221,221,167,231,228,228,164, 91,171,225,229,229,229, 92, 88, 88,152,234,230,230, 38,113,119,119,183,152, 77,132,133, -133, 65,167,211,225,234,213,171,176, 92,227, 66, 67, 67,209,177, 99, 71, 83, 89, 89,153,223,172, 89,179,138,255,132,252,220,215, -131,252, 19, 12, 22, 3,224,152, 37, 83, 53,223, 29,179,252,104, 54,155,239, 50, 81,117, 95,117,141,144, 68, 34, 1,195, 88,213, - 94,158, 24, 12,134, 90,115,101,111,111, 15,137,164,186,253, 40,207,243,127,208, 52,155, 31, 60, 40,224,228,228,180,155, 16,242, -212, 35, 46,175,148,130,130, 2,227,224,238,173,229,146,242,130,226,151,158,104,229,208, 49,192, 43,200,221,187,249,112,141, 70, -147, 8, 32,183, 41,215,197,118,237,218,217, 21,230,231, 22,189,240,159,133, 49,211, 63, 93,179, 32,188,149,151, 93,247,192,150, - 30, 93, 59,181,109,225,106, 50, 49, 42,149,170, 29, 0,117, 83, 19,233,224,224,128, 35, 71,142, 60,110,199,154,163, 86,171, 69, -113,113, 49,214,174, 93,107,231,226,226,114,128, 16,242,194,144, 33, 67,126,219,190,125,187,109, 89, 89, 25,140, 70, 35, 0,232, - 30,195,243,100,129,147,147,147, 97,232,208,161,248, 97,203, 22,153, 32, 8, 26, 0, 26, 0,185,132,144,119,254,234,196,200,229, -242,183, 63,249,228, 19,187,160,160, 32, 82, 88, 88,136,236,236,108, 20, 22, 22,194,213,213, 21,239,190,251,174,162, 85,171, 86, -106,185, 92, 62,253, 65,175,119,245, 25, 33, 0,176,177,177, 49,163,233,157, 99,238,171,201,243, 60,137,138,138,154,218,169, 83, -167, 47,173,209,204,202,202,202,202,201,201, 25,126,226,196,137,177,102,179,249,149,172,172,172,125, 0,150,237,222,189, 27,142, -142,142,104,215,174, 93, 91,111,111,239,128,135, 48,210,222, 97, 97, 97, 33,158,158,158,216,182,109, 27, 24,134, 89,153,145,145, -113,146, 97,152,149,123,246,236,129,155,155, 27,218,182,109, 27,162, 86,171,173, 10,215, 19, 66,228,114,185,124,227,205,155, 55, - 3, 7, 15, 30,220,170,188,188,156, 81,171,213,176,236,179,244,244,116, 92,186,116, 9,227,199,143,119, 55,155,205, 93,173, 53, - 83, 61,123,246,204, 24, 49, 98, 68,209,179,207, 62, 91, 52,124,248,240,162, 65,131, 6,157,251,230,155,111, 92, 44,215,209, 89, -179,102, 33, 37, 37, 5,142,142,142,120,229,149, 87,154, 41,149,202, 77,143,193, 57,148, 35,145, 72,170,156,156,156,236, 31, 82, - 71,102,121,113, 28, 39,147,201,100, 50,133, 66, 33, 83, 40, 20, 50,185, 92, 46,251,199, 71, 68, 8, 81, 19, 66, 18, 57,142,235, -239,232,232,104,239,236,236,108,235,227,227,211,219,223,223, 63,254,149, 87, 94,241,181, 86, 71,171,213,110, 80, 42,149, 18, 55, -183,234, 22, 56,125,251,246,197,166, 77,155, 48,106,212, 40,161,111,223,190,194,200,145, 35,209,172, 89, 51, 0,192,197,139, 23, - 33,147,201, 36,182,182,182, 27,254,164,108,213,235, 65,254,191,195,221,147,201,187, 66,248,130, 32,212, 70,175,238,103,170,234, -190,172,197,108, 54,195,195,195, 3, 42,149, 10, 42,149,234,174,109,221,171,249, 48, 99,116,181,106,213,170,167, 74,165,234, 74, - 8, 25, 73, 41, 61,106,237,255, 70,190,157,140,109,135,235,253,121,239,219,111,191,221, 47, 54, 54, 86, 31,217,193, 95, 80,100, -103, 20,171,156,220, 58, 48,174,110,189,222,154, 48, 49, 14,192,214,166, 92,112,180, 90,173,172,165, 39,171,205, 42,171, 52,180, -180,113,112,108, 97,167, 84,181,116,115,112,118, 84,200, 25, 27, 47,119, 79,147,201, 84, 6, 32,167, 49,161,186,213,130, 10,133, -194, 64, 8,225, 28, 29, 29,225,224,224, 96, 44, 41, 41, 41, 14, 13, 13,133, 76, 38, 43,146, 74,165, 86, 87, 23, 70, 68, 68,164, -153,205,230, 6,219,191, 73,165,210,130,216,216, 88,107, 59, 32,204,235,220,185,115,247,213,171, 87,187,182,110,221, 26,107,215, -174,181,219,190,125,251,250, 77,155, 54,161,180,180, 20,183,111,223,198,184,113,227, 42,208,132,234,208,191, 10,103,103,231,195, - 35, 70,140,192,134, 13, 27, 40,165,148, 0,176, 97, 24, 38,210,222,222,254,247,107,215,174, 25,255,134,139,108,239,192,192, 64, - 82, 86, 86, 6, 74, 41, 88,150,189,235, 53,125,250,116,229,248,241,227,103,116,237,218,245,109,137, 68, 82,193,243,252,246,170, -170,170,207, 46, 94,188,248, 88, 53, 86,237,209,163,199,164,140,140,140, 1,190,190,190,191, 52,229,127, 89, 89, 89,219, 45,159, - 41,165, 87,114,115,171,159,107,148, 74, 37, 0, 40, 30,162, 92, 21, 14, 14, 14, 0,128,140,140, 12, 0,176,116, 94,184,156,157, -157, 13, 0,176,181,181, 5, 33,196,218,109, 76,217,182,109,155,157,167,167,167, 82,171,213, 34, 37, 37, 5,161,161,161,168,168, -168,128, 70,163, 65, 85, 85, 21,140, 70, 35,202,202,202, 28,205,102,179,193,202, 99,113,211,170, 85,171,188,219,182,109, 11,158, -231, 97, 50,153, 64, 41,197,241,227,199,161,209,104, 96, 50,153, 16, 24, 24,136, 5, 11, 22,232,222,122,235, 45,197,214,173, 91, -243,181, 90,237,152,191,123, 95,179, 44, 11,185, 92, 14,142,227,114,154, 55,111, 14,134, 97,156,211,210,210, 30, 36,178,238, 1, - 32,151,227, 56,153, 92, 46,135, 66,161,128,229,253,234,213,171,219,155, 18,189,170, 57,126,104, 83,150,255,246,136, 8,195,124, -206,113,156,204,197,197, 69,106,249,206,104, 52, 74,157,156,156,224,227,227,179, 4,192, 48, 43,165, 58,185,186,186,130, 16, 2, -169, 84,138,215, 94,123, 13,241,241,241,187, 51, 50, 50, 94,203,207,207, 71,101,101,229,151,246,246,246,207,228,231,231,195,108, - 54, 35, 45, 45, 13,157, 59,119,238,244, 39,103,239, 15, 30,228, 31, 97,176, 44,206,177,142,131,172,215,244,212, 53, 89,117, 63, - 91,121,146, 9,207, 63,255,252,125,187,183,243, 60,127, 87,251,171,135, 53, 88,114,185, 28, 3, 7, 14, 84,168, 84,170, 45, 53, - 38,235,129, 67,142,109, 61, 21,205, 57, 72,190,125,186, 87,143, 78, 19,222,126, 87,210,171, 87,175, 95,118,238,220,217,217,173, -199,147,253, 79,252,182,197,125,221,204, 61,191,252,248,227,143,149,214, 54,112,175, 33,118,199,142, 29, 30,239, 78,126, 67, 26, - 29, 29,189,115,108,231,105,156, 90,110,182,117,148, 73, 89, 27,150,101,228,222, 45,250,252,118,252, 68, 46,128, 83, 86, 92, 36, - 60, 14, 31, 62, 12, 71, 71, 71, 0,144, 25, 12, 6, 56, 58, 58, 98,237,218,181, 10,123,123,123,216,219,219,163,107,215,174,142, - 82,169,148, 67,117, 27, 40,107,140,176,219,241,227,199, 97, 99, 99, 3,141, 70, 3,189, 94, 15,158,231, 65, 41, 5,199,113, 80, - 40, 20,232,217,179,167, 91, 19, 46,100,169,132,144, 62,111,190,249,230,161,213,171, 87,187, 6, 4, 4, 96,222,188,121, 40, 42, - 42, 66,122,122, 58,198,140, 25, 83,145,154,154,218,191,110,219,172,199,129,142, 29, 59, 86,157, 62,125, 26,251,247,239,199,224, -193,131,201,238,221,187,141,102,179, 89,154,153,153,121,245,239, 74,147,217,108,182,149,201,100, 48,153, 76,224, 56, 14, 44,203, -214,190,179, 44, 11, 47, 47, 47, 28, 58,116,136,171,170,170,226,138,138,138, 84, 95,125,245,213,235, 9, 9, 9,205, 0,188,242, -119,150,229,218,181,107,125, 94,125,245,213, 76,142,227,232,128, 1, 3,158,191,115,231,206, 96, 79, 79,207, 99, 71,142, 28, 89, - 14,160, 85, 83,245,186,118,237,154,230,238,238,238,150,159,159,143,239,191,255, 30,249,249,249,112,113,113, 57, 27, 26, 26,122, -247, 69,142,227, 10,226,226,226, 26,125, 16,240,246,246, 62,156,147,147,131,149, 43, 87, 34, 39, 39, 7,110,110,110, 23, 67, 67, - 67,225,230,230,134,252,252,124,108,222,188, 25,197,197,197,240,244,244, 60, 12,160,185, 21, 73,140,142,140,140,244, 45, 45, 45, -133,131,131, 3, 42, 43, 43,145,144,144,128,160,160, 32,100,103,103,131, 97, 24, 56, 58, 58, 98,205,154, 53, 85,132, 16,171,170, - 94,138,139,139,199,188,244,210, 75,199,246,236,217,211,204,195,195, 3, 5, 5, 5,208,106,181,240,245,245,197,242,229,203,209, -188,121,115, 28, 62,124,184,216,108, 54,191,186, 97,195,134,247,181, 90,237,152,191,187, 13, 22,195, 48,181,213,120,117, 76, 81, -113, 84, 84, 20, 78,159, 62,189,181, 41,166,136, 82,106,176, 84, 11, 42, 20,138,218,151, 92, 46, 7,195, 48,194, 3,156, 75, 14, -132,144, 78,150, 27,123, 99,203,127, 55,148,210,238, 54, 54, 54,210,123,191, 47, 41, 41,145,182,105,211,166,171,181, 58, 10,133, -194,185,230,129, 4, 61,123,246, 68,126,126,190,217,207,207,239,229,145, 35, 71,154, 0, 96,226,196,137, 47,231,231,231, 23,155, - 76, 38,150,227, 56, 20, 20, 20,192,223,223,223,249, 79,124,104,188,175, 7,249,127,111,176, 40,165,132, 16, 66,235,190,215,217, -153,141, 70,174, 44,191, 89, 83, 69, 40, 8, 2,173,167, 23, 97,173,153,123,148, 6,203,209,209, 17,163, 71,143, 86,101,101,101, -173,183,246, 2,110,105,220, 94,215, 92,169, 93,154, 29,249,236,211,121, 30,183,246,127,141, 47,151, 45,228,227,226,226,118,123, -120,120, 12, 5, 80,225,225, 2,247,220, 34,252, 76, 41,221,210,132,131,137, 1,240,211,217,179,103, 99,251,245,235, 23,119,251, -246,109,199,212,155, 55, 99,237,180,101, 26, 59, 95,127, 94,234,230,254,180,214,104,226,158,125,246, 89, 57,128, 53, 86,232, 65, - 16, 4,236,219,183, 15,118,118,118,176,183,183,135,163,163, 35, 44,230,234, 65, 73, 73, 73, 65,102,102, 38,108,108,108, 96, 99, - 99, 3, 91, 91, 91,216,218,218, 66, 38,147, 89,162, 5, 77,189, 56,220, 36,132, 76,223,177, 99,199,198, 79, 63,253, 20,165,165, -165,168,170,170,194,156, 57,115,144,146,146, 50,157, 82,122,233,113, 58, 57, 58,117,234, 84, 21, 27, 27,139, 83,167, 78, 65,163, -209, 96,229,202,149,240,244,244, 28, 8, 96,230,223,153, 46,179,217, 44,101, 89, 22, 12,195,128, 97,152, 63, 68,176, 44,102, 75, -169, 84,194,213,213, 21,179,102,205,146, 14, 25, 50,100,192,223,153,230,207, 63,255,220,127,217,178,101,107, 54,110,252,191,246, -174, 61, 44,170,106,125,191,107,239,153,217,115, 31, 96, 8, 21, 68, 81,188, 43,222, 64, 80,209,163, 89, 26, 37,106,166,233,201, - 52,181,204,159,151,227,229,104, 94,210, 99,146,149,104, 94,211, 82, 56,105,105, 90,106,101, 90,222, 45,237,162, 8, 2,134,154, - 34, 34,129,220, 70,238, 66, 48,204,109,207,172,223, 31, 48,132, 38, 58,131,122, 24,109,191,207,195,179,103,239, 61,188,179,246, - 90,107,175,245,174,111,125,223, 90,219,142,141, 27, 55,238,235,139, 23, 47,142,211,104, 52,191,125,255,253,247, 43,165, 82,105, -189,252, 90, 76, 38,147, 87, 82, 82,210,159, 38,210,183,223,134,213,106,133,213,106,173,177,238,232,245,122, 12, 29, 58,212,161, -129,128,197, 98,241, 60,114,228, 8, 0, 96,198,140, 25, 53,131,204,218,124,147, 39, 79, 70,120,120,184,167,131, 73,244,241,240, -240, 16,103,102,102,130,231,121, 4, 6, 6, 98,243,230,205, 24, 61,122, 52, 2, 2, 2,240,199, 31,127,224,210,165, 75,216,182, -109,155,135, 68, 34, 25,233, 8, 97,110,110,110,138,143,143,207,147,131, 7, 15,254,229,155,111,190,121,162,121,243,230, 56,127, -254, 60,116, 58, 29, 2, 2, 2,176, 98,197,138, 10, 74,105,159,106, 81,181,223, 5, 44, 46,183, 8, 33,185, 92,126,139, 56,170, - 15,120,158,111, 34,149, 74,111, 84, 79, 13, 66, 42,149, 34, 33, 33,193,105,235, 85,173,118,233,188, 51,231, 13, 9,123, 59,108, -177, 88,254,114,189,109,219,182, 14,243,168, 84, 42, 98,239, 99, 45, 22, 11,116, 58,157,245,226,197,139,214,192,192, 64, 0,128, -183,183,183, 53, 54, 54,214,106, 52, 26, 89,123,127,237,230,230,246, 80, 68,230,221, 52,200, 99, 97,193, 2,240,243,109,199,154, -198,197, 46,120,234,178, 92,217,207, 29,244,193,130, 72, 36,194,222,189,123,107,252,176,186,118,237, 90, 35,230,110,231,181, 71, - 53,212, 7, 28,199,193,205,205, 13,199,142, 29, 51, 36, 37, 37, 77,175,175,229,202,199,179,241,137, 53,171, 34,155, 20, 93, 62, -131,236,220, 60,164,254,150,125,130, 82,250, 57,128,207, 1,216,157,226, 29, 22, 87,157, 26, 41,187,244,106,219,100,207,128, 65, -207,250, 12, 31, 63,141,153, 62,125,122,207,241,227,199,151,140, 31, 63,126,170, 76, 38,235,100,181, 90, 75,126,248,233,167,204, -145, 35, 71,106,203,202,202, 38, 83, 74, 43, 29,104,196,110, 60,243,204, 51,190, 0,160, 86,171, 77,159,124,242, 9,231,238,238, -142,151, 95,126,217,112,227,198, 13, 89,117,126,220,116,212,122,101, 31,245, 79,154, 52,201,235, 30,121, 92,224,228, 40,165,235, -144, 33, 67, 62,220,189,123, 55,138,138,138,160,215,235, 33,145, 72,176,106,213, 42,100,101,101,173, 38,132, 92,114,149,198,172, - 91,183,110,250,184,184, 56, 92,184,112, 1, 70,163, 17,175,191,254, 58, 40,165,246, 57,237,161, 13,156, 60,146,157,157,141, 29, - 59,118,192,106,181, 98,236,216,177,104,209,162, 69,141,192,186,113,227, 6, 62,249,228, 19, 88,173, 86, 76,154, 52, 9,205,155, - 55,135,197, 98,145, 61,249,228,147,162,134,138, 40,157, 51,103,206,239,223,124,243,205,177,236,236,236,103, 86,174, 92,217,151, - 16, 98,155, 55,111,222, 26, 55, 55,183,251,138,190, 44, 41,253, 3, 87, 82,175,131,231,249, 59,254,121, 61,161,117,154,239,106, - 90, 38,120,190, 74, 84,241, 86, 30, 86,158,175, 62,183,192, 83,235, 20, 95, 78,113,113,113, 91,150,101, 37,169,169,169,240,243, -243, 67, 72, 72, 8,150, 47, 95,142,130,130, 2,240, 60,143, 70,141, 26,217, 44, 22,203, 57,147,201,244,179,163,164, 58,157, 78, -223,170, 85, 43,195,171,175,190, 74, 63,252,240, 67,162,209,104,112,237,218, 53,136, 68, 34,168,213,106,125,114,114,178,203, 88, -129,107, 91,174,164, 82, 41, 56,142,131, 84, 42,181, 91,174, 8,128, 67, 0,156, 18,216,148, 82, 83,179,102,205,106, 44, 87,245, -181, 94, 61, 44, 60,204,200,196,246,237,219,255,162, 82,169,158,187,114,229, 67,230,199, 23, 0, 0, 32, 0, 73, 68, 65, 84,202, - 45, 86,172, 49, 99,198,152, 91,183,110, 29,227, 40,143, 90,173,190,201,113,156,214, 96, 48,224,204,153, 51,232,208,161,131,164, -180,180,116, 25, 33,100, 73,245,224,114, 89, 94, 94,158,164,105,211,166,246,223, 69,105,105,233,205,102,205,154, 61,172,108,187, -163, 6,121, 44, 4, 86,117, 52, 66,205,241,118, 11,214,189,166, 7, 29,181, 96, 17, 66, 80, 94, 94, 14,149, 74,133,234,197,204, - 80, 43, 26,235, 47, 83,132,247, 35,176,100, 50, 25, 78,158, 60,105,136,142,142, 30, 75, 41,253,222,209,255,171,237,131,213,248, - 9,175,253,107,222,175, 18, 87,231, 79, 29,199,151, 73, 55,114, 9, 99,251,119,125,211, 20,208, 72,217,185,177,151,231,209,181, -171, 87,168,115,226, 14, 99, 79,244, 90,122,254,236,217,190,103,207,158, 29, 62,109,218, 52, 15, 84,249, 91,229, 2,136, 1,176, -201, 17,113, 5, 0,113,113,113, 53,139,187,134,132,132,148,105, 52, 26,168, 84, 42, 20, 20, 20, 72, 84, 42,149,182, 62, 81,132, -142, 76,169, 56, 41,174,218, 12, 29, 58,244,216,215, 95,127,173,188,121,243, 38, 50, 50, 50, 48,127,254,124,124,244,209, 71,208, -104, 52, 56,112,224,128,106,200,144, 33, 71, 9, 33, 3, 26,122,113,213,238,221,187,235,227,227,227,145,158,158, 14,158,231, 49, -124,248,240,218,226,170,193, 97,179,217,232,236,217,179,241,241,199, 31,131, 97, 24,140, 31, 63, 30,101,101,127, 6,104,105,181, -218, 59,221, 99,171,223,247, 6, 17, 88, 34,145,136,254,244,211, 79,107,251,247,239,143,236,236,236,103,122,244,232,177,121,226, -196,137,185,247,203,235,225,166, 70,183, 78,173, 96, 52, 26, 97, 52, 26,225,227,227,131,242,242,114,164,166,166,194,104, 52,162, -113, 35,119,167,249,186, 7,180,129,201,100,130,209,104, 68,163, 70,141, 80, 81, 81,129,244,244,116, 24,141, 70,120,121,121, 56, - 67,247,211,169, 83,167,252, 6, 14, 28,216,254,210,165, 75,248,249,231,159, 97, 50,153,208,189,123,119, 92,189,122, 21,189,123, -247, 70, 89, 89, 89, 92,124,124,252,183, 78,188, 71,205,194,194,194, 78,126,254,249,231,158, 59,119,238, 52, 77,152, 48,129, 91, -190,124, 57, 33,132,160,162,162, 2, 46,230, 50,244, 23,129,149,152,152,248,149, 88, 44,166, 0,234,101,109,178, 35, 43, 43,203, -163, 75,151, 46, 37, 82,169,148,139,137,137,217, 83, 95,235,213, 67, 25,253,252,217,113,117, 33,132, 36, 84, 11,201, 58,207,157, -137, 76,108,215,174,221,124,111,111,239,167, 2, 3, 3,113,249,242,101,137, 84, 42,197,184,113,227,204,225,225,225,102,150,101, - 29, 14,184,145,201,100,201,106,181,186,175,209,104,132,201,100,194, 15, 63,252, 0, 15, 15,143,127, 15, 25, 50,100,154, 78,167, - 67,110,110, 46, 87, 45, 92,193, 48, 12, 6, 12, 24,128,226,226,226,135,214, 46,215,165, 65, 30, 23, 11, 86, 93, 15,237,208,244, -160, 51, 98,200, 96, 48,212, 76, 53,169,213,234, 26, 97, 70, 8,249, 11,167,163, 86,177, 59,225,220,185,115,177,105,105,105, 27, - 40,165, 71,235,243,255,109, 27,187,181, 12,106,174,110,147, 27,119, 8, 87,206, 39, 96,247,185, 27,185, 21,188,121, 96,178,206, -144, 89,151, 32,187,171, 53,172,177,170,147,143,151,231,209, 53,171, 87,168,139, 46,159, 65,234,133, 4, 28,138,203,249,213, 72, -233, 53, 0,239, 63,200, 66,173,207,244,221,195,134, 76, 38,251,215, 87, 95,125,165,188,121,243, 38,210,210,210, 48,118,236,216, -210,140,140,140,217, 47,188,240,194,186,195,135, 15,187,107,181, 90, 28, 59,118, 76,213,172, 89,179,101, 0, 70, 54, 96,227,168, -183, 90,173, 40, 42, 42, 2, 0,244,233,211,199,165,196, 21, 0, 36, 36, 36,184, 13, 29, 58,244, 16,128,254,151, 47, 95,134,205, -102,139, 77, 76, 76,172,137,152,189,219, 61, 71,244,155, 94,175, 23, 41, 20, 10,190,142,186, 37,118,214,226, 80,155,243,244,233, -211,107,214,172, 89,243,237,220,185,115,211,238,147,243,142, 22,172, 33, 67,134,160,210, 96, 70,118, 94, 41,120,158,135,222,148, -119, 95, 22,172, 42, 62, 19, 50,117, 37,224,121, 11,202, 13, 78, 25,220, 54,140, 25, 51,230,197,211,167, 79, 23,183,111,223, 94, - 27, 31, 31,143,252,252,124, 88, 44, 22, 60,245,212, 83,144, 74,165,215, 35, 35, 35, 37, 0, 54, 56, 88, 55, 21,131, 6, 13, 58, -186,107,215,174, 38, 49, 49, 49, 48,153, 76,182,236,236,236,244, 57,115,230,168,255,245,175,127, 61,193,178,174,183,123,147,221, - 98,149,156,156,108, 23, 86,147, 31,148, 16,178, 91,176,254, 78,216,190,125,123,238,150, 45, 91,130,124,125,125,223,127,229,149, - 87,250,251,248,248, 48, 28,199,253,194,178,236, 60, 0, 14, 47,211, 32,151,203,167,120,120,120, 92,100, 89,150,205,201,201,193, -213,171, 87,193,178, 44, 40,165, 92,101,101, 37, 26, 55,110, 12,123,125, 26, 51,102, 12,124,125,125,173,201,201,201, 83, 32,224, -193, 9, 44, 0,120,231,157,119,240,221,239,191, 99,168,191,255, 93,191,183,119,239,222, 59, 53, 8,127,217,109,219, 98,177, 32, - 50, 50,178,230,252,219,111,191,173, 17, 88,211,166, 77,187,229,255,247,237,219,231, 16,231,157,112,237,218,181, 48, 39, 58,213, - 26, 78,187, 15,214,213,188,210,244,174, 62,154,211,219,190,253,161, 79,122,177, 33, 93,207,155,195,111, 23, 87,142,114, 6,120, -171,218,251,120,105,143,173, 89,181, 66, 99,183,134,237, 58,167, 43, 35, 86, 58,195,201,206,255,158,207, 46, 22,139,111,132,134, -134,250, 86, 55,110,247,156, 22,252, 95,237,178,110, 48, 24, 16, 27, 27, 11, 0,120,237,181,215, 74, 51, 50, 50, 6, 81, 74, 47, - 19, 66,146, 7, 15, 30,124,236,208,161, 67,118, 83, 67,113, 67,166, 19,168,138,116, 21,137, 68,104,215,174,157,211,226,234,127, -149,206,188,188,188, 25, 83,166, 76,217,104, 52, 26, 89,131,193, 48,195,209,123,247, 74,231,238,221,187,211, 90,183,110,221, 23, -117, 47,155, 96, 3, 16,119, 63,156, 31,124,240, 1, 0,180,189, 31,206,186, 44, 88,187,119,239,134,205,102,131,111, 99, 55, 24, -141, 70, 40,149, 74,167, 56,111,183, 96,237,217,179, 7, 54,155, 13,205,189, 61, 96, 52, 26,111,137,124,190, 23, 39,165,212, 72, - 8,153, 24, 26, 26,250,217,187,239,190,251,123,135, 14, 29,154,133,134,134,122, 20, 23, 23,231,255,250,235,175, 25,209,209,209, - 42,158,231, 39,214, 53, 77,116, 59,167,167,167,231,218,237,219,183,251, 94,190,124, 25, 57, 57, 57, 88,183,110,221,245,130,130, -130,193, 34,145, 72,186, 97,195,134, 31,195,195,195, 27,243, 60,111,116,133,250,105,135, 78,167, 59, 88,221,207, 56, 37,172, 28, - 73,103, 92, 92,220,222,106,238,163,142,112,255,175,158,253,126, 35, 19,239,149,206, 73,147, 38,229, 0, 24,115, 63,233, 60,114, -228,200,245,151, 94,122,105, 69,231,206,157, 23,171, 84, 42,164,164,164,212, 44,139,100, 31,160, 19, 66, 48,106,212, 40, 76,157, - 58, 21,199,143, 31, 95,241,207,127,254,243,250,195,206,207,191,141,192, 18,139,197,153,105,105,105, 45,182,111,223,206,148, 18, -130, 29,132,128,101, 89, 16, 66,106, 28,107,237, 71, 0, 56,121,242, 36,207,113, 92,198, 61, 58,255,204,179,103,207, 54,223,178, -101,139, 72,169, 84, 66, 38,147, 33, 53, 53, 21, 34,145, 8,215,175, 95,199, 23, 95,124,113,139,211,238,241,227,199,173,114,185, -188,193, 86,245, 62,159, 91,246, 76, 91, 95,185,143, 42,199, 80,144, 76,233, 29, 95,224,219,157,226,239, 4,133, 90,243,206,154, - 85, 43,220,106,137,171, 82,163,201,246,236,165,252,138, 7, 94, 57, 79,159, 62,237,170, 27,189,190,219,191,127,127, 27, 0, 79, - 0,111,211, 42,203, 29,170, 69,214,147,237,218,181,155, 9, 64, 14,224,221,134,180, 94,217,108,182, 26,203,169,171, 89,174,106, - 35, 62, 62, 62, 29,192, 96,103,239,221, 11,163, 71,143,254, 29,192,239, 15, 50,173, 15,131,211,142,226,155,101,184,150,158, 83, -189,149,151, 21,214,235, 55,254,244,159,226, 45, 40, 46, 43,114,218,130,117, 45, 61, 27, 54, 27,173,226,179,230, 84, 57,185, 91, -121,240, 22, 30,133, 55,157, 91, 32,159, 82,122,137, 16,210,123,193,130, 5, 51, 1,244, 69, 85,244, 97, 38,170,162,131, 55, 56, -234,131, 35, 22,139,251,174, 95,191,126, 48,195, 48, 76,108,108,172,113,213,170, 85, 89, 5, 5, 5,207, 83, 74, 51, 1,192,199, -199,231,201,125,251,246,237,116,133, 37, 25,110,195,235,143, 40,119,189,241,168, 68, 38,238,218,181,107,249,180,105,211, 68, 61, -123,246,156, 23, 28, 28,204,164,167,167,163,160,160, 0, 44,203,162,109,219,182, 8, 11, 11,131,159,159,159,237,240,225,195,171, -134, 15, 31,190, 92,144, 75, 15, 80, 96, 89,173,214,129,115,231,206, 61, 97, 52, 26, 29,242,197,145,203,229, 57, 21, 21, 21, 3, -239, 81,241, 6, 70, 69, 69,157, 88,191,126,125,139, 90, 13, 71,165,197, 98, 89, 60,109,218,180,247,120,158,151,223,198,153,109, - 54,155, 7,252, 47, 51,228,246, 41,191,171,217,149,247,237, 39,162,228,224,159, 21,123, 16,169, 23, 18,177,251,156,238,166,222, - 76,195,146,243, 43, 46,253,157, 42, 26,165,180, 0,192,236, 58,238, 93, 3, 48,195, 5,210,168, 32,132,232, 93, 89, 88, 9,248, - 19, 28,199, 21, 60, 51,240,169,123, 70, 8,138, 68,162, 2, 71,249, 6, 61, 61,224,158,124, 98,177,184,192,201,122,101, 68,149, - 27, 64,189, 93, 1, 88,150,157,219,179,103, 79,118,238,220,185,121,135, 15, 31,254,161,164,164,100, 14,165, 84,111,191, 95, 29, - 53, 24, 36,212, 10,151,105,239, 30,137,200,196, 77,155, 54, 45,155, 51,103,206, 78, 63, 63,191, 45,125,251,246,109,215,186,117, -107,181, 90,173, 70, 89, 89, 89,121,113,113,113,202,119,223,125,247,218,196,137, 19,211,133, 18,125,192, 2, 43, 46, 46, 46, 31, - 64,167, 7,249, 99,247,224,252,175,203,228,202,229,142,122,187,216,170,109,165,170,243,252, 30, 62, 88, 55, 10,255,152,249,238, -182, 67,145, 70,139,205,198,219,232,148,228,188,242,100,161,234,185,108,195, 40,136,171, 71, 4, 49, 49, 49, 45, 92,153,239, 65, -194,100, 50,205, 10, 13, 13,253,192,106,181,174,177, 88, 44,167,132,210, 23,240,160,176,118,237,218,116, 84,109, 5,132, 81,163, - 70,177, 0,240,229,151, 95, 90, 93, 48,169,193, 0,188, 0,216, 7, 56, 94, 0, 76,168, 90,217,191, 0, 64,252, 35, 35,176,254, -174,248,242,251, 63, 59,216,219,133,211,189,206,235,212,107,186, 63, 78, 1,232, 35,228,174, 0, 1, 2,234, 41,252, 51, 1, 60, - 47,228,132,128,135,218,255,185,166,176,178,195,139, 16,114,128, 82, 58, 4, 0,236,159,107, 95,115, 53, 48, 66,149, 18, 32, 64, -128, 0, 1, 2, 4, 8,120,176, 32, 0, 58,215, 49, 98,114,216, 1,155, 16,210,185, 30, 35,178,139, 2,167,192, 41,112, 10,156, - 2,167,192, 41,112,254,189, 56,239,197, 93,199,255,135,223,195,130,117,208,229, 4,214,195, 92,152,238,127, 29, 18, 44,112, 10, -156, 2,167,192, 41,112, 10,156, 2,231,163,201,121, 15, 60,114, 2, 75,240,193, 18, 32, 64,128, 0, 1, 2, 4,184, 58, 42, 23, - 46, 92,184,136, 16,114, 0, 0, 22, 46, 92,184,200,213, 19, 44, 8, 44, 1, 2, 4, 8, 16, 32, 64,128,171, 35, 38, 50, 50, 82, - 31, 25, 25,105,119,104, 47, 64,213, 44,220, 16,252, 25, 89,248,104, 11,172,133, 3,253,251,248, 52,243,249,164,180,168, 40,201, -102, 42,159,186,244,104,118, 73,125,126,152, 16,162,229, 56,238, 69,133, 66, 49,128, 82,234,207,178,236,149,178,178,178,147, 22, -139,229, 75, 74,105,133, 80,151, 4, 52, 52,130,130,130, 2,196, 98,241, 28, 66, 72, 48,207,243, 77,197, 98,177,142, 16, 18,111, - 50,153,214, 39, 36, 36, 36, 9, 57,244,248,162, 71,143, 30,123, 41,165, 97,213,109,213,209,132,132,132, 17, 66,174, 8, 16,208, -160, 48, 1, 56,251, 40, 37,216,105,129, 69, 40,125,233,181,215,199,251,220,204, 74,241,249,108,215,145,182,111, 15,110, 17,182, -244, 80,134, 83, 27,126,201,229,242, 23, 3, 2, 2, 86,111,220,184, 81,219,178,101, 75, 34,151,203,161,211,233,218,157, 63,127, -126, 88, 68, 68,196, 34,177, 88,252,127, 22,139,229,196,253, 60, 24, 33,196,205, 83, 45,154, 83, 88,102,121, 75,168,151, 2,156, -193,168, 81,163,216,172,172,172,197, 90,173,118,214,130, 5, 11,164,254,254,254, 80,169, 84,200,207,207,111,118,245,234, 85,223, - 77,155, 54, 13, 14, 13, 13,141,146, 72, 36, 17, 63,254,248, 35, 47,228,216,163,143,158, 61,123, 54,226,121,126, 3, 33,132, 99, - 89,118, 30,165, 52,236,200,145, 35,176, 90,173, 8, 15, 15, 15,235,217,179,103,107,171,213,186, 74,161, 80,216,140, 70,227,212, -234, 53,253, 4, 60,226, 8, 9, 9,201,176, 90,173, 94,142,126,159,227,184,236,152,152,152,118, 66,206, 9,120, 40, 2,139,165, - 56,122,240,235, 61,227,135,246,107, 79,198, 63, 31,216,122,231,183,137, 39,231, 62,211,234,153, 53,199,210, 28,218,210, 70,161, - 80, 76,155, 50,101,202,178,101,203,150,201,174, 92,185,130, 75,151, 46,129,231,121,168,213,106,116,238,220,153, 57,120,240, 96, -147, 25, 51,102,124,206,113,220, 20,147,201,180,191,190, 15,214, 88,203, 46, 87,203, 68,163,165, 34, 81,188,145,231, 15,186,232, -203,253,157,197, 98, 89,243,235,175,191,254,252,168, 84,152,224,224,224,222, 34,145,104, 17,199,113,207, 63,174,226,226,250,245, -235,139,254,241,143,127,204,138,136,136,144,166,167,167, 35, 37, 37, 5, 58,157, 14, 45, 91,182, 68,203,150, 45,201,134, 13, 27, -100, 27, 55,110,156,146,148,148,196, 0,112,216, 15,128, 16,194,120,123,123, 79,120,234,169,167,134,123,122,122,106,116, 58, 93, - 89, 76, 76,204,129,156,156,156, 79, 40,165,245,202, 75, 66, 8,227,229,229, 53, 54, 60, 60,124,184,135,135,135,135, 78,167, 43, - 57,113,226,196,129,252,252,252,109,148, 82, 91,125,243,128, 16,210, 4, 85, 17,198,218,234, 75, 55,252,253,253, 47,167,165,165, - 21, 60, 64, 78,157,191,191,127,114,125, 56,123,247,238,237, 99, 54,155, 15, 2,104, 83,215,119, 40,165,201, 98,177, 56,220, 17, - 49,196,243,252,134,247,223,127, 63, 92,173, 86, 99,193,130, 5, 73,126,126,126,208,104, 52,136,142,142,134,135,135, 7,172, 86, -107,210,234,213,171, 73, 86, 86, 22,214,175, 95,191, 25,192, 11, 66,247,225, 80,153,239, 0,224, 14, 96, 2,165,180,168,214,117, - 79, 0,187, 1, 20, 80, 74,199, 52, 84,250,172, 86,171,215, 79, 63,253, 4,169, 84, 90,189,221,146, 13,148,210,154, 99,109,152, -205,102,132,133,133, 53, 17, 74, 85,128, 19, 6,169,186,163, 8,223, 28,216,114,114,231,238,129,239, 73, 56,145,220,102,181,192, -198, 91, 96,181,152,192, 82, 30,157, 90,186,163, 85, 35, 14,229,127,148,227,179, 99,169,127, 20, 85,162,223,242, 67, 87, 82,239, -241,178,249, 5, 7, 7,159,249,241,199, 31, 53, 63,252,240, 3,174, 92,185,130,229,203,171,182, 56, 82, 42,149, 56,124,248,176, -125, 71,111, 60,251,236,179,133,185,185,185,221, 41,165, 37,245,120,169,155,247,235,225,123,122,239,234,126, 30, 1, 47,124,149, -121,163,216, 20, 64, 41,117,185, 5,212,130,130,130,244, 98,177, 88,111, 50,153, 94,124, 20, 68, 86,112,112,112,111,150,101,247, - 89, 44, 22,133, 74,165,242,252,241,199, 31,141,143,219, 11, 17, 20, 20, 20,224,238,238,254,227,190,125,251,100,177,177,177, 40, - 41, 41, 65,126,126, 62,102,205,154,133,205,155, 55, 35, 32, 32, 0, 74,165, 18, 28,199, 97,250,244,233,149,122,189, 62, 44, 46, - 46,238,156, 35, 66,168, 95,191,126,159,238,220,185,179,133,197, 98, 97,128,170,141,207, 51, 51, 51,173,139, 22, 45,202, 74, 76, - 76,156,232,172,200, 34,132, 48,161,161,161, 91,119,238,220,233,207,113, 28,195,243, 60,108, 54, 27,174, 94,189,106, 93,188,120, -241,245,196,196,196, 87,235, 83,239, 9, 33, 93, 21, 10, 69,251,233,211,167, 23, 61,255,252,243,102, 0, 56,119,238, 28, 57,119, -238,156,155,159,159,223,245,165, 75,151,158,175, 7,103,119,133, 66,209,118,198,140, 25,133,131, 7, 15,230, 57,142,179,197,198, -198,178, 23, 46, 92,112,243,247,247,255,125,209,162, 69, 78, 69, 35, 5, 6, 6,158,255,240,195, 15,155,250,250,250, 90, 9, 33, -180,250, 55, 40, 33,132, 50, 12, 67, 1, 32, 57, 57, 89,252,198, 27,111,100,158, 59,119,174,135, 3,229,190,111,204,152, 49,131, -186,118,237,138,246,237,219,131,101, 89,164,164,164,224,218,181,107,144,201,100,232,220,185, 51,228,114, 57,246,239,223,143, 47, -190,248,226,120, 98, 98,226,112,161,251,112,168,220,127, 2,208, 3,192,101, 0,207, 81, 74,139,170,197,213, 17, 0, 29, 0,156, -161,148, 14,108,200, 54, 56, 54, 54, 22,251,246,237,131, 68, 34,129, 88, 44, 70, 81, 81, 17,252,252,252, 32, 18,137, 32, 22,139, - 33, 22,139, 33,145, 72,224,235,235,139,167,159,126,154,143,143,143,215, 8, 37, 43,224,190, 45, 88,222, 77,158,152, 63,114,228, - 64, 57,172, 60, 96,174, 0,204,122, 80,115, 5,168, 73, 15,194,201, 65, 45, 6, 40,217, 34,252,223,211,141,212, 95,199,228,157, -123,243,169,150, 35, 34, 79,164, 31,175,139, 79,163,209, 44,140,142,142,214, 92,184,112, 1, 41, 41, 41, 88,183,110, 29,150, 45, - 91, 6,137, 68,130,146,146, 18, 12, 27, 54, 12, 49, 49, 49, 48,153, 76,248,207,127,254,227,177,112,225,194, 41, 0,156,222,100, -178,137, 86,244,193,158,207, 54,120,104,229,133,120,117, 88,188,118,211,151, 25,147, 1,108,118,197, 2,152, 63,127,190, 98,213, -170, 85, 95,117,239,222,221,165, 69, 86,112,112,112,111,137, 68,178,111,201,146, 37,202, 37, 75,150, 88, 31, 16,103, 71,134, 97, - 62, 51,153, 76, 11,147,146,146,190,119,133,231,148, 72, 36,211,222,120,227, 13, 89, 86, 86, 22,110,222,188, 89, 51,178,181, 67, - 42,149,130, 97, 24,112, 28,135, 87, 94,121, 69,182,117,235,214, 25, 0, 38,220,139,215,219,219,123,194,142, 29, 59, 90,152,205, -102,166,188,188, 28, 28,199, 65, 34,145,160, 75,151, 46,236,188,121,243,124,103,207,158, 61, 9, 64,148, 51,105,213,106,181, 47, -239,216,177,195,159,227, 56, 70,167,211,161, 79,159, 62,136,141,141, 69,207,158, 61,217,249,243,231, 55,155, 49, 99,198,171, 0, - 62,118,214,202,164, 80, 40, 58,158, 58,117, 42,187,105,211,166, 53,215, 91,181,106, 69, 7, 15, 30, 92,124,249,242,229,182, 9, - 9, 9,197, 61,122,244,200,118,130,211, 71,161, 80,180, 59,118,236,216,141,101,203,150, 13,216,188,121,243, 16, 0, 8, 9, 9, - 57, 24, 25, 25,121,178,160,160,160, 67,108,108,108,113,175, 94,189,114,157,224,108,237,237,237, 93, 62,109,218, 52, 85, 93,223, -249,244,211, 79,139, 9, 33, 29, 28,225, 99, 89,118,206,174, 93,187,206,151,148,148,136, 18, 19, 19, 33,147,201, 32,151,203,107, -142, 55,110,220,128,201,100,194,158, 61,123,120,134, 97,230, 10, 93,135,195, 24, 13,224, 40,128,142, 0, 14, 19, 66,198, 1,248, - 28, 64,123, 0,169, 0, 26,124,115,106,155,205, 6,177, 88, 12,145, 72,132,131, 7, 15, 34, 42, 42, 10,223,124,243, 13,124,124, -124,106, 4,150, 72, 36,178,215, 59,161, 68, 5, 56, 39,176, 8, 33,148, 82, 74,236, 71,251, 77,157, 46,127,237,182,168, 79,150, -115, 98, 70, 60, 48,180, 61, 60,164, 60,136, 66, 11, 73,255,133, 32,238,126, 0, 0, 90,156, 6,211,209,133, 24,213,189,144,249, -204, 76,118,191, 63,172, 93,243,249,223,166,148,215,209, 40,134, 52,111,222, 28, 63,255,252, 51, 90,182,108,137, 37, 75,150,160, - 67,135, 14, 80, 40, 20,200,203,203, 67, 69, 69, 5,148, 74, 37,172, 86, 43, 2, 3, 3, 89,149, 74,213,207, 89,129, 69, 8,233, -246,218,232,158, 61, 68,154,246,232,243,236, 36, 28,219,212, 95,185,237,160,238, 13, 66,200,103,181, 55, 71,117, 21, 12, 31, 62, - 28,121,121,121,138,157, 59,119,214, 91,100,133,132,132,124,103,181, 90,159,186,215,247,100, 50,217,207,167, 78,157,122,174,190, -226,106,235,214,173, 74,119,119,247, 7,210,200, 84,139,171, 31,198,143, 31,175,222,177, 99,199,174,110,221,186,189,228, 10, 34, -139, 16,210,203,223,223, 31,153,153,153,200,203,203,131,209,104, 68, 94, 94,149,139, 97,118,118, 54,124,125,125,225,225,225, 1, - 95, 95, 95,180,107,215,142, 48, 12, 19,236, 8,111,255,254,253,135, 0, 96,210,210,210, 80, 80, 80, 0,141, 70, 3,149, 74,133, -166, 77,155, 98,192,128, 1,162, 86,173, 90,133, 57, 43,176,194,194,194,134, 43, 20, 10, 38, 51, 51, 19,233,233,233, 48, 26,141, - 72, 77, 77,133,187,187, 59,158,126,250,105,177,191,191,255,115,206, 10, 44, 0,157,166, 76,153, 82, 80, 91, 92,217,161, 84, 42, - 73,199,142, 29, 75,212,106,117, 32,128,108,103, 56,103,205,154,149, 31, 25, 25,217,247,248,241,227,115,236, 23,143, 31, 63,254, -111, 0,248,232,163,143, 78,185,185,185, 5, 2,112,106, 99,117, 74,169,109,210,164, 73,215, 56,142,171, 17,172,246,207, 28,199, -129, 97, 24, 55, 71,120,236, 14,237,157, 59,119,198,212,169, 83,241,205, 55,223, 96,251,246,237, 53,247, 71,142, 28,137, 17, 35, - 70,160,188,188, 28,141, 27, 55, 22,229,230,230,254,214,163, 71, 15,151,112,124, 39,132, 4, 1, 88, 1,192, 12, 32,130, 82,234, - 82,251,177, 81, 74,243, 9, 33, 97,181, 68,214, 25, 0,210,106,113, 21, 70, 41,109,112, 95, 54,171,213, 10,177, 88,140,172,172, - 44,108,217,178, 5,147, 39, 79, 70,151, 46, 93, 80, 90, 90, 90, 35,176,196, 98, 49, 24, 70,216,248,228, 33,214,227, 59,106,144, -199,218,130, 37,237,155, 25,149,126,154,233, 50,106,104,232, 88,173, 70, 14,219, 31,185,144, 60, 29,129, 11,197, 10,172,143, 58, - 10, 0,152,253, 98, 32, 58, 15,122, 23,198, 79,158,193, 83,126, 38,238,147, 95,101,255, 6,176,236, 78,124, 94, 94, 94,158, 60, -207,131, 97, 24, 40,149, 74,104,181, 90,200,229,114, 20, 22, 22, 98,230,204,153, 56,114,228, 8, 76, 38, 19, 36, 18, 9,252,253, -253, 97, 54,155,253,157,125,160,198, 30,162, 77,235, 87, 47,119, 43, 74,251, 2,137, 87,110, 66,225,230,139,197,147,131,220,223, -222,156,184, 8,192, 98, 87, 44,132, 78,157, 58, 97,230,204,153,138,141, 27, 55,214, 75,100, 81, 74, 87,136, 68,162, 94,115,231, -206,149,191,248,226,139,127,185,127,233,210, 37, 76,157, 58,181, 82,175,215,175,172,143,184, 18,139,197,251,182,108,217,162,116, -115,115, 67,102,102,230, 3, 19, 87, 27, 54,108, 80,183,106,213, 10, 98,177, 88,246,233,167,159,186,132,200,226,121,222, 87,161, - 80,160,176,176, 16,179,103,207,190,197, 15,195, 62,157, 13, 0, 41, 41, 41,240,245,245,133,193, 96,240,113,132,215,211,211,211, -157, 82,138,215, 95,127, 29, 89, 89, 89, 53,215,125,124,124,144,157,157, 13,158,231, 61,156, 77,171, 86,171,245,176, 88, 44,232, -215,175, 31, 12, 6, 67,149,185, 96,244,104,136,197, 98,228,231,231,195, 98,177,104,235,145, 5,158,131, 7, 15,214,213,117, 83, -165, 82, 89,180, 90,109,115,103,147, 26, 30, 30,158,187,105,211,166,240,219,111,156, 61,123, 54,220,205,205,237,132,167,167,103, -219,250, 24, 31,164, 82, 41, 56,142,131, 88, 44,134,253,179,253,143,101, 89,155,131,239, 79,216,145, 35, 71,160,209,104, 16, 23, - 23, 7,185, 92, 14, 0, 24, 50,100,200, 92,149, 74,213,215, 96, 48, 60,127,224,192, 1,220,188,121, 19,254,254,254,104,212,168, - 17,226,226,226,194, 92,164,249,120, 15, 64,175,234,207, 31,212,250,236,106, 34,107, 44,128, 83,213,226,202, 4, 96,140, 43,136, -171,218, 22,172,149, 43, 87,130,231,121,196,196,196, 96,212,168, 81, 32,132,128, 16, 2,141, 70,131, 15, 62,248, 64, 80, 65, 2, -234, 39,176,238,164, 28,223,126,155, 48,198,211, 45, 54,143, 10,239, 53,182,163,175, 18,198,194, 52,112, 42, 79, 16,247, 22, 88, - 31,117, 20,151, 51,138, 1, 0,235,191, 58,135,109,111,134,129, 40,180,240,174,188, 2, 13, 39, 29, 86,151,192, 42, 42, 42, 42, - 55,155,205, 30,114,185,188,102, 84, 80, 88, 88,136,183,222,122, 11,123,246,236, 65,139, 22, 45,192,243, 60, 56,142, 67, 65, 65, - 1,196, 98,177, 83,209,137, 34, 17,121, 54, 98,214,115, 45,148,158,109, 81,116,238,237,170,139,154, 64, 76, 30,205,112,107, 62, -187,248, 50, 33,228, 3, 74,169,203,173,151,161, 82,169,208,181,107, 87,188,252,242,203,138,157, 59,119,126,140,187, 56,238,222, - 9,241,241,241,103,130,131,131,135,173, 93,187,246, 91,157, 78, 39,239,222,189, 59, 84, 42, 21, 84, 42, 21,210,210,210,176,108, -217, 50,131,193, 96, 24, 89, 31,235, 24,195, 48, 81,175,189,246,154, 82,163,209, 32, 45, 45, 13, 90,173,246,190,158, 53, 56, 56, -184, 35,203,178, 63,108,216,176, 65,221,186,117,107, 36, 39, 39, 35, 40, 40, 8, 77,154, 52,145, 69, 70, 70, 54,184,200,146, 72, - 36, 57, 5, 5, 5,173,154, 53,107,134,173, 91,183,130, 97, 24,228,230,230, 98,241,226,197,136,140,140, 68,175, 94,189,160, 82, -169,208,172, 89, 51,164,166,166, 66, 46,151,223,112,132, 55, 39, 39,167, 4,128,215,225,195,135, 81, 88, 88, 88,115,189,121,243, -230, 40, 46, 46,134,201,100, 42,118, 54,173,185,185,185,197, 0, 26, 37, 37, 37, 33, 61, 61, 29,207, 61,247, 28,246,239,223,143, -160,160, 32, 88,173, 86, 88, 44,150,226,122,100,129,149,101,217,187,109,239, 64, 0, 56, 43, 6,121,145, 72, 68,239, 50,122,173, - 15, 39,108, 54, 27,173, 75, 92, 73, 36, 18,220,237, 55,239,100,197,136,142,142,174,153, 22, 4, 0,177, 88,220,107,206,156, 57, -207,215, 53, 40,114, 17,212,182,210,185,100,208, 9, 33,196, 11,192, 14, 0, 92,181,165,141, 3,176,157, 16,242, 92,109,199,247, -134, 20, 88, 44,203,214,156, 43,149, 74,116,237,218,181, 70, 96,233,245,122,136,197, 98, 65, 45, 60, 92, 17,254,216, 89,175,128, -234,205,158,107,155,231,110, 17, 87,207,245, 24,219,193, 87,134, 95,207, 93,132,200, 84, 12,106, 44,187, 75, 11,101, 1,145, 40, -161, 81,138,154,222,229, 69, 75,202,200,200,128,187,187, 59, 36, 18, 9,164, 82, 41, 58,119,238,140, 51,103,206,160,109,219,182, -176, 90,173, 53, 13,229,111,191,253, 6,158,231, 79, 57,241, 18,179, 79,104, 68,171,231, 47, 90,166, 66,206, 86,184,171,165, 24, -208,171, 53,160,236, 8, 86, 44,197,218,255, 12,245,104,252,132,219,251,174, 88, 8, 42,149, 10, 57, 57, 57,248,226,139, 47,244, - 6,131,225,245,250,112,196,199,199,159,177, 90,173,195,190,252,242,203,202,140,140, 12,200,100, 50, 92,189,122,213, 46,174, 70, -212,215,191,203,102,179, 77,249,248,227,143, 43, 14, 28, 56, 0,149, 74, 5,181, 90,125,223,150,171,153, 51,103,170,218,180,105, -131,180,180, 52,184,185,185,193,211,211, 19,125,251,246,197,198,141, 27,101, 42,149,106, 87,183,110,221, 26,204,233,213,102,179, -197,165,166,166, 82, 55, 55, 55,180,107,215, 14, 1, 1, 1, 8, 9, 9, 1, 0,216, 29,160, 91,182,108, 9, 0,184,118,237, 26, - 40,165, 9,142,240,158, 58,117,234, 64, 74, 74,138,213,219,219, 27, 93,186,116, 65, 96, 96, 32,122,246,236, 9, 63, 63, 63,252, -247,191,255, 53, 95,191,126,253,136,179,105, 61,113,226,196,119, 23, 47, 94,228,189,189,189, 17, 20, 20, 4,169, 84,138,128,128, - 0,120,123,123, 35, 58, 58,218,156,145,145,113,164, 30, 89,144,125,254,252,121,182,174,155,114,185, 92, 13,192, 89,203, 67,238, -217,179,103,153,208,208,208,191, 68,243,134,132,132, 28,148,203,229,110, 0,110, 56,155, 80, 66,136,141,227, 56,200,100,178, 91, -196, 21,199,113,144, 74,165, 16,137, 68,142, 70, 81, 30, 12, 15, 15,199,129, 3, 7, 32,147,201,160, 80, 40,240,194, 11, 47,192, - 96, 48,140, 4,128, 21, 43, 86,212,116,182, 17, 17, 17, 0, 0,189, 94,239, 42, 1, 30,243, 0,252, 6,224,119, 0,255,113, 65, -113,213, 8, 85,211,131,109, 81, 53, 45,216,183,250,104,247,201,242,116,129,206, 29, 18,137, 4,239,188,243, 14,196, 98, 49,154, - 52,105,130, 69,139, 22, 97,201,146, 37,136,136,136,192,170, 85,171,224,225,225, 33, 76, 17, 62,220,122,114,139, 6,121,172, 4, -214,237, 48,197,250, 45,125,241,217,238, 99, 59, 52,149, 34,233,220,111,248,238,172,238,106, 97,225, 77,216,242, 46,194, 86,144, -140,217, 47, 6,162, 99, 11, 45, 58,182,208, 98,246,139,129,176,229,255, 6, 90,146, 6, 42,211,162,160,156,212, 57,189, 80, 92, - 92,188,126,217,178,101, 55, 61, 60, 60,106, 26,197,236,236,108,116,234,212,233,150, 70,146,101, 89,188,245,214, 91,133,249,249, -249, 91, 29, 22, 41,114,246,213,149,255,121,169,145, 68,170, 6,138,127,134, 70,163,194,214,168,213,128, 49, 23, 96, 56, 12, 29, -216,141,245,110,228,246, 36, 33,164,141,171, 21, 66,102,102, 38, 34, 34, 34,244,122,189,254,190, 28,221,227,227,227,207, 88, 44, -150, 97,209,209,209,149,135, 14, 29,194,123,239,189,119, 95,226,170,150,112, 27,190,125,251,246,138,204,204,204,251, 18, 88, 98, -177,248, 13,158,231,213,235,214,173,179, 13, 26, 52,200, 58,125,250,116,235,196,137, 19,173, 35, 70,140,176, 14, 28, 56,208, 58, -101,202, 20,171,193, 96,144,170, 84,170,247, 26,170, 44,204,102,115, 84, 84, 84,148,129, 97, 24,168, 84, 42,112, 28, 7, 47, 47, -175, 26, 33,108,247,243, 49,155,205,216,180,105, 83,165,209,104,252,200, 17,222,194,194,194,237,243,230,205,203, 56,118,236,152, -165,180,180, 20, 0,160,211,233,176,124,249,114,243,230,205,155,115, 75, 74, 74, 62,113, 54,173,165,165,165, 59, 22, 44, 88,112, -253,208,161, 67, 22,150,101, 81, 82, 82, 2,119,119,119, 44, 95,190,220, 28, 21, 21,149, 91, 86, 86,230, 52,103,223,190,125,211, -178,179,179,213, 70,163,145,222,161,252,136, 92, 46,239, 1,224, 71,103, 56, 67, 66, 66,210, 50, 51, 51, 53,239,190,251,238, 47, -131, 6, 13, 90,171,209,104,174,105, 52,154,107,131, 6, 13, 90,183,121,243,230,159,100, 50, 89, 15, 0, 39,235, 97, 93,181,217, -219, 12,153, 76, 6,169, 84, 90, 51, 64,147, 74,165, 16,139,197, 14, 9,172,196,196,196,209,148,210, 46, 60,207,243, 93,186,116, -129, 66,161,192,136, 17, 35, 32,145, 72, 0, 0, 11, 23, 46, 4,165, 20,148,210, 26,129, 85, 94, 94,238, 18, 2,139, 82,250, 11, -165,180, 39,165,180, 51,165,212, 21,131,100,118,214, 18, 87, 97,148,210, 75, 0,194,106,137,172, 61,174, 32,176,196, 98, 49, 58, -116,232,128,217,179,103, 99,255,254,253,200,200,200, 0,207,243,176, 90,173, 96, 24, 6, 34,145, 72, 16, 88, 2,156, 70,205, 20, - 97,237, 99, 19,119,229,184,142,222, 34, 36, 37, 93,198,183, 9,197, 59, 25,134,221,127, 46,221,248,117,152,255, 31, 48,239, 25, -131,206,163,118, 96,219,155, 85, 46, 8,182,252,223, 96,254,114, 28,136,226, 9,164,150, 41,160, 55,151, 28,185, 75, 69, 78,208, -106,181, 95,125,246,217,103,227, 39, 76,152,192,217,108, 54,200,229,114,204,153, 51, 7,148,210, 26,113, 53,117,234,212,138,252, -252,252,141,148,210, 52, 7,213,175,188,169, 23,183, 96,236,235,139,101,200,138, 2, 24, 9, 10,209, 29, 93,251,189,134,252,140, - 51, 64,197,101,128, 72, 16,181,114,146,231,176,137,171, 63, 4, 48,200, 85, 10, 32, 57, 57, 25, 75,151, 46,189,111,113, 85, 91, - 16, 5, 7, 7, 15,219,191,127,255,127, 13, 6,195,244, 7,200, 57,124,229,202,149,251, 26, 53,106,164,172, 47,143,143,143,207, -164,194,194,194,169, 14,124,181,193,166, 58, 18, 18, 18,146,122,247,238,189,101,221,186,117,175,207,154, 53, 75, 38,151,203,161, -209,104,144,146,146,130,230,205,171, 92,143, 42, 43, 43,241,230,155,111, 86,242, 60,191, 51, 46, 46, 46,206,193, 70,220, 70, 8, -121,109,202,148, 41, 19,218,182,109, 27, 78, 41,213,154,205,230,226,235,215,175, 31, 41, 43, 43,171,215, 58, 88,213,156,175, 78, -157, 58,117,108,155, 54,109,134, 91, 44, 22, 45,207,243,197, 89, 89, 89, 7,203,202,202,182,215,135,243,151, 95,126, 41,220,186, -117,235,239,185,185,185, 29, 26, 55,110, 92,230,233,233,105,210,235,245,172, 90,173, 86,115, 28,215, 29, 64, 28,128, 43,206,112, -198,197,197,229, 71, 71, 71, 95,215,235,245,109,163,162,162, 78,185,187,187,159,180, 90,173,132,227, 56, 15,165, 82,217, 31,192, - 47, 0,174,213, 71, 96,217, 7,102, 18,137,164,198, 42,110, 63, 7, 96,115,130,107,245,202,149, 43, 69, 50,153, 12, 38,147, 9, -122,189, 30, 69, 69, 85,179, 87, 43, 86,172,192,155,111,190, 9, 0, 88,186,116, 41, 34, 34, 34, 80, 89, 89, 41, 21,186, 15,135, - 80, 12, 32, 1,192,104,187,207, 85, 45,199,247,157, 0, 74, 93, 69, 96,137,197, 98, 76,152, 48, 1,131, 7, 15,254,203, 50, 13, -130,147,251, 67, 47,131, 91, 52,200, 99, 99,153,187,211, 58, 88, 11, 7,181,248, 63, 95, 55,241, 27,185,101,252,126,174,119,198, -130,136, 8,208, 55,159,110,177,127,120,155,138,167, 59, 54,177, 1,148, 7,209, 84,117, 54,180, 60, 23, 68,217, 4, 37, 54, 55, -108, 61,145,151, 71, 25, 38,100,233,119, 87,139,238, 34,134,196,238,238,238,107,218,180,105, 51, 98,249,242,229,110,237,219,183, -135, 66,161, 0,165, 20, 23, 46, 92,192,212,169, 83, 75, 10, 10, 10,182, 22, 21, 21,189, 77,239,182, 72, 87, 45,120,185,139,223, -217, 28,241,220,191, 70, 76,120, 75,130, 43,115, 1,145, 27,240,196, 64,220, 32, 79,161,137,232, 60, 96,186, 81,117, 77,236,134, -231,198,174, 40, 57,114, 34,254,159,148,210,152,134,206,252,160,160, 32,189, 76, 38,123, 96,226,234, 97, 35, 56, 56,184, 55,199, -113,251,140, 70,163, 66,169, 84, 62,150,235, 96, 85,151,139, 88, 42,149, 46,147, 72, 36,147,198,141, 27, 39,111,223,190, 61,252, -252,252,144,159,159,143,148,148, 20, 68, 69, 69, 25,108, 54,219,182,226,226,226, 69,151, 46, 93, 50, 63,142,121,112,245,234, 85, -239, 86,173, 90, 5,179, 44,219, 10, 85, 11, 69,222, 0,112,172, 62, 66,200,142,212,212, 84, 31, 63, 63,191, 96,137, 68,226, 95, -205,153, 11,224,251,250,112, 6, 6, 6,158, 95,184,112, 97,163,126,253,250, 85,176, 44, 75, 37, 18, 9,101, 24, 6, 18,137,132, -138, 68, 34, 74, 8,161,159,127,254,185,102,237,218,181, 58, 71,214,193,234,209,163,199,174, 33, 67,134, 12,149,201,100,248,250, -235,175,249,198,141, 27,139,220,221,221,177,109,219,182,186,218, 49, 80, 74, 21, 66,215,248,200,191,235,250,239,191,255, 30, 89, - 89, 89,183,172,121, 85, 91, 88,217,207, 9, 33, 8, 13, 13,229,207,158, 61, 43,172,131, 37,160,254, 2,235, 78, 88, 57,208, 95, - 83, 10,186,187,107, 83,250,143, 30,126, 82,120,185,203,192,136,165, 40, 51, 16, 92,202, 53,224, 84,114, 89,182,213, 70, 70,190, -119, 44,237,146,131, 86,167,144, 38, 77,154,204,179,217,108, 29, 25,134, 81, 80, 74,203, 25,134, 57,175,211,233,150, 83, 74, 47, - 59,243, 16,238,106,246,130,135, 82,228, 38,225, 56,202,243, 86, 0, 44,192, 16,128, 48, 0,152,234, 35, 11, 16, 6,149,149,102, - 9,111, 37,251,243, 11, 11,167, 53,116,230,247,235,215,239,187,242,242,242, 71,110, 37,119,169, 84,186,136,101,217,231, 31,247, -109, 98,122,246,236, 25,200,113,220, 60, 74,105,144,193, 96,104, 44,151,203,243, 9, 33,231, 42, 42, 42,214, 36, 38, 38,158, 21, -154,143,134,195,131, 94,201, 61, 40, 40,200,147, 16,178,142, 82,170, 96, 24,230, 13,155,205,246,155,175,175, 47,246,237,219,119, - 71, 11,150, 32,176, 30, 47,129, 53,126,252,120,124,247,251,239, 24,234, 95,119,224,250,222,189,123,209,167, 79, 31, 65, 96, 9, -120,240, 2,171, 90, 20,145,121, 3, 90,140, 20, 17,242, 2, 97,104, 39, 2,112, 86,138, 84,134,208,239, 37, 82,243,199, 75,191, -203,173,188,237,251,157, 41,165, 23, 31,104,130, 5, 78,129,179, 1, 56, 9, 33,140, 35, 91,207, 8,249,249,120,112, 6, 5, 5, -237,169,168,168, 8, 79, 73, 73,169,139,227, 22,129, 37,228,231,163,201,217,167, 79,159,203,107,215,174,109,214,166, 77, 27,134, - 16, 2,150,101, 65, 8, 1,195, 48, 96, 89,182,230, 8, 0, 39, 79,158,228,223,126,251,237,140, 95,126,249,165,171,144,159, 15, -135,243,113,131, 83,123, 17, 86, 79,217,125, 85,253, 39, 64,192,223, 6,247,179,175,159,128, 71, 15,137,137,137,163,125,124,124, - 98, 60, 61, 61, 91, 25,141, 70, 73,101,101,165,164,246, 96, 84, 46,151, 23, 10,185,244,232,131,231,249, 1,115,231,206, 61,105, - 48, 24,252,238,245, 93,185, 92,158, 83, 81, 81, 49, 80,200, 53, 1, 15, 69, 96, 9, 16, 32, 64,192,223, 5,185,185,185,161, 66, - 46, 60,222,168,158, 62,238, 40,228,132,128,135, 1, 33, 44, 66,128, 0, 1, 2, 4, 8, 16, 32, 64, 16, 88, 2, 4, 8, 16,248, -147,189, 7, 0, 0, 0, 37, 73, 68, 65, 84, 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,250,227,255, 1, 86,162, 48,147,214,150, 59, 59, 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, 0, 8, 6, 0, 0, 0, 94,187, 18, 70, 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, 85,254,198,223,115,203,244,201, 36, 36,164,145, 72, 9, 24, 90, 40, 66, 96, 37, 1, 65,170, 32,138,240, 67, + 5, 22, 11,174,187, 88, 80,177, 18, 11, 2, 10,137,186, 10,138, 34,202,170,176, 32,178,162,130,196, 69, 1, 21,144, 34, 82, 68, + 18,138, 44, 37,212, 80, 18, 73, 72,153, 62,247,252,254,152,185,151,153,201,180,192, 68, 1,207,231,121,230,153,153, 91,222,123, +206,173,239,253,158,239,185,151, 80, 74,209, 80, 16, 66, 58, 80, 74,139,152, 38,211,100,154, 76,147,105, 50, 77,166,201, 52,255, + 76,112,245,157,129, 16, 18,117, 71, 70, 8,161,158, 79,239,203, 93, 51, 90, 90,222,154,242, 39,138,154,189, 61,154, 83,162,168, +217,144,229,236,125,185,106,202,245,141,166,174,247, 58,140,214,250,244, 42,103,212,246,251,134,214,188, 84,173, 64,154,209,218, + 71, 3,108,247, 41, 81,212,108,200,114,246,190,220, 52,253,247,159,104,232, 6,218, 39, 47,117,125, 6, 40,231, 37,239,247,191, +151,230,197,106, 69, 80,206,104,175,211,168, 95,155, 46,103,132,250, 76,220, 16, 6, 3, 0, 40,165,196, 75,159, 92,174,154, 50, +132, 16, 42,235, 71,131,104,106,121, 88, 27,109, 77,191,245, 25, 45,166, 80, 74, 9, 33,100, 29,128,222, 81,210, 92,235,209,188, +228,237,238, 87,215,168,232, 54,164,185, 2,162,183,223, 55,180,166,247,176, 75,217, 87,253, 53,163,177,223, 7,218,238,209,212, +140,214,177,228, 55,127, 84,142,165,134,216,231, 3,236, 63,151,172,235,175, 25,141, 99,201, 95, 51, 26,251,253,239,161, 41, 15, +191,148, 99, 41,144,102, 52,246,251, 96,219,254, 82,117,175, 20,234, 21,193,106,200, 21,227,217, 0,125,162,173, 25,237, 50, 55, +132,201,140,118, 20,167, 33, 53, 17,221,109, 52,197,163, 57, 37,138,154,125,162,181,141,252,247,157,104,220,117,121,107, 70,107, +223, 12, 80,206, 75,222, 78,129, 52, 47,181,188, 65,202,121, 73, 4,210,188,212,253,254,247,210, 68,116,183, 81, 84,142, 37, 63, +205,168, 29, 75,254,245,141, 98, 68,176, 15, 16,189, 99, 41, 64, 57, 47,121, 59, 5,210,188,212,242, 6, 41,231, 37, 17, 72, 51, +138, 17,209,168,235, 94, 9,212, 43,130,213, 80, 52,132, 17, 2,220, 7, 93, 52,181, 27, 34,138,211, 80,145,182,104, 69,113, 2, +232,174,139,162, 92,212,162, 77, 50,158,242, 69,229,142, 54,128,246, 20, 66,200,139,209,214,141, 38,236, 88, 98,199, 18, 46,179, + 99, 41,208,126,115,169,199, 82, 67,221, 60,123,107, 70,203, 8, 5,168,251, 37, 29, 75,254,243, 70,227, 88, 10,163,121, 73, 17, +230, 96,245,191, 20,221, 43,133,122,231, 96, 53, 20,209,104,239, 13,162, 23,213,168, 88,180,105,160,114,246,185, 18,234,142, 6, + 40, 39, 33,100, 74, 3,213,253, 74, 89,167,236, 88, 98,199, 82, 84,136,230,177,228,183, 79, 70,165,172,209,222,207, 3,105, 70, + 99, 25,222, 26,209,218, 71, 27,186,238,209, 60,150, 26, 98,219, 95, 41,212, 59,130,213, 80,119,199, 87,130,102, 67,104, 55, 80, +221,215,161, 1,238, 14, 26, 32,175,107, 29,162, 31, 21,152,130, 40, 54, 57,202,117,142,102, 89, 27,178,153,176, 33,246,205,134, +220,223,163,153,231,209, 64,117, 95,135, 43, 99,187,175, 67,148,203, 25,173, 99, 41,192, 54, 95,135, 75, 44,107,160,245, 23,237, + 38,236,104,238,155, 13,169, 25, 13,237,134, 40,103, 16,221,117,248, 19, 68,174,100, 8,109,192,199, 52, 48, 24, 12, 6,131,193, + 96,252, 25, 9, 26,193,234,210,165, 75,161, 86,171,109, 21,108,124,109,109,109,233,206,157, 59,111,108,152, 98, 49, 24,140,171, + 9, 66, 8,135, 11, 41, 9, 18, 0, 74,217,221, 29,131,193,184,138, 9,106,176, 84, 42, 85,198,250,245,235, 51, 37, 73,130,211, +233,132,203,229,130,203,229,130,211,233,132,205,102,195,255,253,223,255,213,187,121,177,115,231,206,235, 57,142,107, 94,159,121, + 92, 46,215,209, 95,126,249,165,103,176,241,201,201,201,155, 0,100, 16,114, 33,234, 72, 8,129,252,223,123, 56,199, 41, 41,103, + 39,143, 29, 59,214, 37,148, 38, 33, 36,195, 91,207, 95, 43,128,110, 72,205, 54,109,218,108, 19, 4, 33, 61,208,252,193,180, 37, + 73, 58, 84, 84, 84,148, 19, 76,147, 17, 93, 58,119,238,188,158,231,249,122,239,159, 59,119,238, 12,186,127,118,232,208,225,103, +142,227,154, 0,117,183,113,144,253,137,119,185, 92,191,254,242,203, 47, 61,131, 25,144,212,212,212, 77,148,210,140, 8,247, 75, +153,227,199,142, 29,203, 14, 86, 78,249, 56, 10, 85,206, 0,218, 33, 53,189, 52,184,180,180,180,130,196,196,196, 7,106,107,107, + 45, 0, 40,199,113,180, 93,187,118, 62,250, 46,151,235,236,222,189,123, 59,132,211, 99, 48, 24,140, 43,129,160, 38, 73,146, 36, +206,106,181, 98,255,254,253, 8,116,158,231, 56,206, 85,223,133, 81, 74, 51,191, 93,188, 48, 73,151,152, 12,151,221, 6, 77,227, + 36, 69,187, 98, 79, 17, 92,118, 59, 36,135, 29,141,179,175,151,203,128, 62,125,250,240, 97,100,211, 39, 78,156,152, 20, 19, 19, + 3,139,197, 2,139,197, 2,171,213, 10,171,213, 10,155,205, 6,155,205, 6,187,221, 14,187,221, 14,135,195, 1,171,213,138,162, +162,162,144,101, 39,132,164, 63,242,200, 35,138,166,213,106,133,197, 98, 81,180,172, 86,171,162,105,179,217, 96,181, 90,177,123, +247,238,144,154,130, 32,164,239,216,177, 35, 73,165, 82,129, 82, 10, 73,146, 64, 41,245,249,248,173, 43,228,230,230,218,195,173, + 83, 70, 84,201, 92,246,202,244, 36, 77, 66, 99, 72, 14, 7, 18, 58,119, 5,224,222, 22, 39,190,253, 26,146,195, 1,201,225, 64, +179, 91, 70, 40,195,123,247,238, 29,110,255,108,246,217,228,188, 56, 85, 76, 12,156, 22, 11, 90, 12, 29,174,140, 40,126,119, 38, +168,195, 1,234,180,163,227,227,207, 3, 0,202,202,202,204,109,219,182, 61, 9,119,158, 66,176, 8, 79,250,225,195,135,147,228, + 50,120, 67, 8, 1,199,113, 62,159, 13, 27, 54, 96,236,216,177,225,234,158,254,220,115,207, 37,201,199,136,247,190,238,112, 56, +148,227,199,233,116,194,225,112,192,102,179,225,231,159,127, 14,167, 9, 66, 8,151,154,154,250, 74,175, 94,189,198, 45, 90,180, +200,240,197, 23, 95, 24, 90,180,104, 1,149, 74, 5,158,231,193,243, 60, 56,142, 3,207,243, 24, 54,108,216,159, 38, 55,131,193, + 96, 92,253, 4, 53, 88,118,187,253,240,192,129, 3, 41, 0,216,108,182, 52,181, 90,173,242, 30, 47, 73, 82,147,220,220,220, 95, +253,231, 11,215,116,168, 75, 76,198,135, 45,226, 1, 0,183, 31, 44, 7,224,190, 40, 44,189,225, 58,101,154,209, 71, 42,221,211, +234,116,224, 56, 46,228, 73,151, 16, 2,163,209,136,129, 3, 7, 66,173, 86,163,107,215,174, 80,169, 84, 16, 69, 49,232, 39, 18, + 12, 6, 3,166, 78,157, 10, 0, 16, 4, 1, 6,173, 6, 15,246,186, 30, 90, 66,241,225, 47,251, 96,117, 73, 16, 4, 1,130, 32, + 64, 20,197, 58, 17,169, 64,168, 84, 42, 20, 21, 21,129,231,121, 8,130,224,243,205,243, 60, 86,172, 88,129,145, 35, 71,130,231, +121,232,245,122,224, 79,148, 12,120,185,160, 73,104,140,207,122,187, 3,145,127, 61, 86,165, 12,255,122,212, 45,202,239,187, 78, +212,128, 16, 2,149, 74, 21,217,118,143,137,193,127, 71, 14, 6, 0,140,216,127, 70,217,103,118,205,156, 14, 81,173,134, 32,170, +208, 97,226,115, 40, 43, 43, 51,143, 24, 49, 98,131, 86,171,253, 38,156, 38,165, 20, 71,143, 30, 85,180, 68, 81,172,179,223,115, + 28,135,143, 62,250, 8, 71,142, 28,137,168,238,102,179, 25, 51,102,204, 80,234, 22, 72,215,251,119,184,186, 19, 66,184,148,148, +148,151,123,245,234, 53,118,209,162, 69,141, 8, 33,152, 51,103, 14, 4, 65,192,205, 55,223,140,132,132, 4,172, 90,181, 10, 42, +149, 10, 79, 61,245, 84, 68,101,100, 48, 24,140, 43,133,160, 6,107,231,206,157,131,229,223,215, 95,127,253,222, 13, 27, 54,180, +241, 10,229,195,233,116,170,156, 78,103,166,220,108,232,116, 58, 97,181, 90, 49,122,244,232,144,119,244, 46,187,205,231,127,176, +147,116, 36, 23, 46, 25,155,205,134,219,111,191, 29, 0,194,154,171, 8, 47, 12,176, 90,173, 16, 4, 1, 45,155, 38,226,249,219, +179,145,203, 83,152,203, 1,148,213,224,158, 84, 1, 59,211, 51, 49,251,104, 57,142,156,175,134, 32, 68,214, 90, 42, 73,146,143, +161,242,255, 61,119,238, 92,140, 26, 53, 10, 60,207,215,105, 66, 98,252, 62, 72, 14,135,207,255, 64,219,160,190,219,198,105,177, + 0, 0,120, 47, 67, 46,138, 34,212, 90, 45,120, 81,132,160, 86,161,172,172,204, 60, 96,192,128, 31,117, 58,221,130,148,148,148, + 19,199,143, 31, 15,170, 71, 8, 1,165, 20,162, 40, 66, 16,132,160,251,252, 71, 31,125,132,133, 11, 23,162,123,247,238, 17,237, +243, 54,155, 13, 42,149, 10, 31,125,244, 81,157,241, 47,188,240, 66, 29,131, 21, 70,143, 0,224,146,147,147, 31, 92,188,120,177, + 73, 94,126, 66, 66, 2, 68, 81, 68, 86, 86, 22, 98, 98, 98,176, 97,195, 6,184, 92,174,136,205, 42,131,193,248,211, 34, 2,232, + 12, 32, 17,128, 11, 64, 21,128, 56,175,241,103, 61,223,137, 94,255,183, 6,208,233,230,153, 70, 30, 47,255,183, 1, 80, 7, 24, + 94, 14, 64,231,249, 88, 1,108, 2,144,229,181, 28,121, 62,239,114,108, 5, 60, 6,139,184,159,170,186, 22, 64,159, 64, 15,191, +147,155, 11,247,237,219, 23,176,185,208,155,112,221, 59, 53,141,147,148,200,213,167, 45, 19,148,225,163, 74, 42,148, 19,236,127, +187, 95, 11,141,209,128,236, 41,175,133, 92,150,167,236,176,217,108, 56,115,230, 76,157, 59,239,139, 53, 88, 0,224,112, 56,160, +211,105,240,253,123, 55,160,244,144, 19,211, 11,143, 97,249, 79,135, 33, 8, 2,134,182,185, 22,255,231, 4, 10,226,181,248,135, +211, 5,187, 68, 35,186,128, 81, 74,235,152, 43,111,147, 69, 8, 81,134,177,139,205, 31, 67, 66,231,174, 74,228,106,209, 53, 49, +202,112, 57,106, 5, 0,203,175,107, 14,109,140, 17, 89,143, 78, 10,171, 71, 8, 65,139,161,195,149,200,213, 87, 93, 51, 32,168, + 84, 16, 53,106,252,223, 47,199, 0,184,155, 5,251,118,108,183,174,130, 87,207,191,251,238,187, 15,125,251,237,183,250, 72,202, +170, 82,169,124, 12, 91, 32,115, 37, 8, 2, 28,126,166, 49, 88, 57,173, 86,107, 80,227, 36, 31, 87,245,137, 96, 1, 64,109,109, +173,109,249,242,229,152, 61,123, 54, 18, 18, 18, 48,112,224, 64,164,164,164, 96,233,210,165,160,148,226,225,135, 31,134, 78,167, +131, 78,167, 99,251, 60,131,241, 39, 39,140, 23,185, 33, 47, 47, 47,187,160,160, 96, 70,143, 30, 61, 62,217,180,105,211, 98, 66, + 72,161, 60,146, 82, 58,212,163, 81,232,245,191, 27,124, 77,150, 8, 32,145, 16, 82, 40, 79,239,253,223,107,120,127, 0,106,249, +127, 94, 94, 94, 86, 65, 65,193,140, 73,147, 38, 61,155,159,159,175,202,203,203,235, 88, 80, 80, 48, 67, 94, 78,160,114, 0, 23, + 34, 88, 33,159, 2,108,183,219, 15,247,239,223, 63,162, 30, 63,102,179,249, 84,168,241,178, 65, 11,148,228, 45, 15,211,196, 24, +161,139,137, 1, 9,221, 58,168,224,112, 56, 32, 8, 2, 56,142,195,234,213,171,161,211,233, 48,100,200,144,139,110, 34,148, 77, +155, 90,173,130, 16,199,225,238, 55,182,225,236,185, 90,165, 73,112, 77,201, 49,252,164,211,225,249,118, 29, 97,172, 46,193,121, +171, 45,172, 38, 16, 60,130, 53,106,212, 40, 88, 44, 22,112, 28,167, 12,227, 56,174, 65,159,229,197, 8, 77,176, 78, 8,132, 16, +104, 77, 49,208, 26,141,224,133,112,233, 87,110, 40,165, 23,140,144, 90, 13, 81,163,134,160,114,183,184,203,145,171, 10, 94, 61, +255,196,137, 19, 63, 2,208, 70,106,176,228, 8, 86, 40,115, 37, 8, 2,236,118,123, 68,230,197,106,181, 66,165, 82, 5, 28, 23, +200, 96,133,169, 51, 37,132, 72,132, 16, 41, 35, 35, 67,153, 39, 57, 57, 25,113,113,113,144, 36, 9,146, 36, 65,171,213, 66,167, +211, 5, 93, 46,131,193,248, 83, 17,202,139,104, 10, 10, 10,102,120, 27, 24,192,215,208,120, 27, 39, 63, 19, 37,115, 67, 94, 94, + 94, 86,168, 2,120,155, 45,121,152,188, 92, 66, 72, 97,126,126,254,208, 48,229,144, 35,105, 23,154, 8, 67, 61, 21,214,187,185, + 48, 26, 4,106, 98,241,190,128,233, 98, 77, 80, 27, 12,240,164, 95,133, 52,118,132, 16,216,237,118, 37,231,228,129, 7, 30, 8, +122, 87,239,157,155, 18, 14,155,205, 6,158,227, 1, 77, 11, 72,216,162, 92,172,148,143, 74,133,146,166,157, 64, 78,157,128, 32, + 68,150,239, 47, 71,176,100, 19,245,240,195, 15, 99,222,188,121, 74, 98, 50, 0,240, 60,143,214,173, 91,227,224,193,131, 17,105, + 50,162, 11,165,193,163,145,242,112,173, 41, 6, 26,163, 17,124, 4,145, 70,121,188,146,195,164,213,128, 87,169, 32,168,220,205, +130,183,222,122,235,186,138,138,138,249,237,219,183,255, 31,220,143, 49, 8,235,132,228,227, 39,208,126, 62,127,254,124, 31,115, + 85,159, 8,150,124, 28,121,115,243,205, 55,251,124, 3,192,136, 17, 35, 34,141, 96, 81, 66, 8, 21, 69, 17,253,251,247, 71,199, +142, 29,177,124,249,114, 72,146,132,135, 30,122, 8, 58,157, 14,179,102,205,130,211,233, 68, 65, 65, 1,139, 96, 49, 24,140, 80, + 94,196, 60,105,210,164,103, 9, 33,133,158, 72, 82,177,103,250, 64, 70, 42, 16,221,224,107,210,206, 6,154,200, 59,146,229,109, +178,188,127,203,228,229,229,101, 5, 40,135, 18, 49, 83, 12,150,151,107,108, 80, 42,246, 20, 41, 9,237,114,179, 32, 33, 4, 95, +231,180,129,218,104,128,214,104, 68,207,101, 63, 0,112,223, 53,227,229,215,195,106, 58, 28, 14,197, 56,149,151,151,135,109, 34, +140, 4,135,195, 1, 94, 37,226, 71,163, 8, 42,242, 62, 23, 44, 81, 20,193, 9, 34, 74, 18, 51, 65,132, 85, 16, 92,206,136, 46, + 14,114, 36,195,187,247,212,221,119,223, 13,142,227, 20,147,117,221,117,215,121,207,194,174, 56,191, 51, 39,191,251, 6, 43,239, +116, 31,171,222,205,130,133,221, 91, 65, 19, 99,132,198, 96, 64,239, 21,155,148,230, 92,204,122, 63,172,230,190, 15,222, 65,241, +155,249, 16, 68, 17,195,119,148, 0,112, 71,174,114,219, 92,251,163,205, 96,154,127,244,232,209, 31, 1,112,119,222,121,103, 92, +151, 46, 93, 34, 10,139, 17, 66,124, 18,207, 5, 65, 8,104,174, 4, 65,128,211,233,140,168,238,118,187, 61,162, 72,146, 28,197, + 10, 7,165,148,182,109,219, 22, 60,207, 35, 54, 54, 22, 49, 49, 49, 74, 15, 90, 57,114, 37,231,111, 70,122, 92, 50, 24,140,171, +155, 16, 94,196,154,159,159, 95,156,159,159,175, 68,146, 60,211,135, 51, 87, 55,195,109,166, 18,101,115, 6,119, 46, 85,160,252, + 44,185, 12,117, 52,253, 13, 23,224,142,108, 5, 40,135,210, 44, 25, 48, 59,187,115,231,206, 43,245,122,125,139, 48,133, 86,168, +207, 67, 71, 93,246, 11, 79, 30,144,205, 21, 33, 4, 90,163, 17,234, 24, 35, 52, 70,163,207,184,112, 16, 66,148, 38, 66,158,231, +149,139,206,130, 5, 11, 96, 52, 26,113,239,189,247, 94, 84,146,187,219, 96,241,248, 82,181, 31, 80, 9,117, 46, 90,188, 40,226, +104,236, 53,224, 68, 17,130, 43,178, 8, 65,101,101, 37,120,158,199,139, 47,190,136,130,130, 2,165, 27,189,119,215,122,121, 90, +198, 31,131,119,146,187, 79, 84, 53, 38, 70,217, 63,189,135,135,203, 73, 36,132, 0, 46,167,187,183,160,198,157, 7, 41, 71,174, +108, 6,211,252, 54,109,218,200,145, 43, 78,175,215,135,237, 53, 43,107,122,231, 27,250,155, 43, 57, 74, 42,255,118, 56, 28, 17, +237,243,178,193,154, 58,117,170,114,172,120, 71,174,100,228,229, 70,186,159,114, 28,135,245,235,215, 99,199,142, 29,120,224,129, + 7,160,211,233,240,214, 91,111,193,233,116, 98,218,180,105,208,233,116, 80,171,213,225,133, 24, 12,198,159,153, 70,178,193,241, +152, 36, 0,190, 57, 87,222, 38, 40, 88, 83,161, 39,226,180, 62,204,178,190,130,219,152, 5, 68,142,164,121, 15,243, 95, 46,224, + 49, 88,254,239,242, 82,171,213, 45, 54,110,220,152, 41, 73, 18, 92, 46, 23, 66,125,219,108, 54,220,113,199, 29, 17, 63,116, 84, +114,184, 13, 22,231,215, 83, 78, 99,138,129,218,120,225, 2,230,117, 17, 11,123, 22,151, 35, 88,222, 6,235,197, 23, 95,132, 32, + 8,152, 55,111, 30, 0,224,201, 39,159,172,119, 4,139, 74,192, 38,215, 90, 52,153,211, 9,116,190, 22,167,215,239,133, 40,138, + 72,233, 62, 0, 82,246,255,161, 92,109,130,193,147, 87, 21, 73,179, 99,121,121, 57,142, 28, 57, 2, 66, 8, 30,127,252,241,144, +230,106,245,234,213, 44, 7,235, 15, 64, 54, 88, 28,239, 14, 36, 5,218, 63,189,135, 71,178,127, 82,167, 19,162, 70,227,211, 91, +176,162,162, 98,254,209,163, 71,183, 0, 32, 99,199,142,141,211,235,245,248,224,131, 15,106, 1,168,150, 45, 91,166, 11,167,233, +157,199,231, 31,185,242, 55, 88, 46, 87,248, 38,108,249,166, 34,146,104,111,125, 12,150,188,127, 19, 66,224,114,185,148,200,149, +195,225, 80,254,107, 52,154,176, 58, 12, 6,227,234, 39,204,123, 69,207,250,229, 57, 17,191, 72,211, 89,207,188, 62,198,202,187, + 57,208,235,183,119, 84, 68,214,181,249, 53, 29,250, 15,151,191,203,243,243,243,191,151, 35, 87, 94,195,125,202, 1, 4,137, 96, +113, 28, 7,171,213,138, 61,123,246,132, 94, 27, 23,166,143,248,161,163, 9, 93,255,130,209, 71, 42, 65, 8,193,170, 94,237,161, + 53, 26,161, 50, 26,144,243,217, 90,229,132, 93, 82,240, 20, 84, 6, 35, 18,122, 14, 8,171, 39,159,184,253, 13, 86, 69, 69, 5, + 68, 81,196,203, 47,191, 12,142,227,240,202, 43,175, 32, 45, 45, 13,165,165,165,232,221,187,119, 88, 77,135,195, 1, 78,226,160, +189, 39, 30,218,127,196,128,123,160, 21,178,110,249, 7, 42,171,154, 99,151,205,128,182, 53,251,209,232,187, 41,176, 75,206,136, + 30,211, 64, 8,129,211,233,196,247,223,127, 15, 81, 20,225,116, 58,149,139, 15,165, 84,121, 74,190,252, 80,199, 87, 94,121, 37, +162,245,201,136, 46,215,220,124, 27,238, 62, 89, 11, 0, 88,153,211, 6, 26,131, 1,234, 24, 35,122,126,177, 94,217, 63, 15,205, +120, 2, 42,131, 17,113,221,122, 69,164,217,238,161, 39,209,246,193, 39, 80, 86, 86,102,238,127, 93,214,250, 74, 94,243, 81,135, + 14, 29,148,156, 43,189, 94, 15,173, 86, 75, 60,255,195, 58,117,111, 83, 30,206, 92,201,191, 35,193,225,112,212,233,133, 27,136, + 72,155, 8,101, 56,142,195,189,247,222,139,212,212, 84,204,158, 61,219, 39,114,245,236,179,207,194,225,112, 96,214,172, 89, 17, +235, 49, 24,140, 63, 37, 65,155,244, 2,208,205,203, 44,133,155, 47,216,248,250, 44, 47, 32, 1,207,188, 86,171,181,164, 95,191, +126, 1,103,176, 90,173,105, 26,141,198,231,236, 42, 63,116,212,191,169,144, 16,210,129, 82, 90,228, 61,173,156, 68, 44,247,198, +210, 24,141, 80,251, 53,187,168,141, 49, 16, 13, 70,112, 1, 78,226,129, 52, 3, 69,176,228,166,147,202,202, 74,136,162,136,217, +179,103,195,100, 50,193,106,181, 6, 74,176, 15,168,201,243, 60,106,143,212,226,240, 11,187,160, 49, 28, 64,235, 1, 49,136, 17, + 15,226,218, 31,150,193,233,180, 1, 94, 77,134,145,104,182,110,221, 26, 47,190,248, 98,157,199, 51, 4,163,107,215,174, 97, 53, + 47, 21,166, 25, 88,147, 16, 2, 77,140, 17,218,152,152,160,251,167, 16,224,217, 77,254,154,242,120, 57,114, 85,173,210,127,116, +244,240,225, 45, 0,184,177, 99,199,198,234,245,122,204,157, 59,183, 22, 0,247,210, 75, 47,233,155, 53,107, 86,103,135, 8, 84, + 78,142,227,176, 96,193,130, 58, 57, 87,193, 12, 86, 36,229,116, 58,157,117, 12,214,237,183,223, 94,231, 65,163,193, 34, 88,129, +202, 41,231,170, 53,110,220, 24,122,189, 94,121,237,150, 86,171,133, 86,171, 85,158, 14, 31,172,169,245,106,216,151,152, 38,211, +100,154,191, 59,151,108,142,162, 65, 64,131,245,243,207, 63,223, 20,108,134,220,220,220,253, 27, 55,110,188,214,251,221,132, 78, +167, 83,101,181, 90, 51,135, 13, 27, 22,246, 86, 89,146, 36,104, 52, 26, 80, 74,209,249,249, 2,247, 45, 60,119,161, 73,144, 82, +138,184,220,254, 32, 60, 15,151, 75,130,195,225, 8,219,139,208, 98,177,248, 36,160, 7,234,190, 94, 93, 93, 29,242, 57, 63,254, +154,102,179,217, 39,175,139,184, 40, 14,173, 89, 90,183, 55,161,103, 57,145,162,213,106,125,154, 77,194, 21, 37, 98, 97, 70, 84, +144, 31,224, 73, 41, 69,214, 35,147,220,145, 34,158,243, 25, 31,219,173, 23,136, 32, 66,114,231, 45,133,235, 24, 66,206,158, 61, +107,190,245,214, 91,215, 81, 74, 63, 28, 54,108,216,175,112, 39, 88, 82,163,209,168, 17, 69, 81, 2,240, 27, 0,122,238,220,185, +216, 19, 39, 78, 72, 22,139,165,105,184,114,174, 95,191, 30, 7, 14, 28, 64,151, 46, 93,148,200,167,252,145,155,239, 47, 38,130, +229,255, 40, 6,255,255,145, 62,166,193, 27,142,227, 16, 27, 27, 11,181, 90,141,151, 95,126, 25, 42,149, 10, 58,157,187, 21,116, +214,172, 89,202, 58,103, 48, 24,140,171,137,122,191,176, 89,146, 36, 62, 88,243, 97,184,166, 66,151,203,117,252, 47,127,249, 75, +125,151,119, 58,212,120, 74,233,241, 31,126,248, 65,229, 29, 97,240,254, 14, 50, 44,172,230,214,173, 91,149,238, 84,161, 52,189, +126,135,212,244,175,123, 36,249, 43, 78,167,243, 68,216,137, 24, 81,195,233,116, 30,239,222,189,123,224,145, 47, 6,110,178,117, +185, 92, 33,183,187,195,225,248, 95,102,102,230, 73,163,209,248, 85,114,114,114,249,198,141, 27, 19,186,117,235,150,224, 61, 77, +183,110,221, 82,253,102,179, 33,196,227, 73, 8, 33,199,239,190,251,110, 85,152,253,209,255,119,240, 71,195,123, 52,139,139,139, + 85,222,243,132,251,166,148,134,212,244,112,100,240,224,193, 92,160, 99,200, 31,151,203, 21,176,219, 52,131,193, 96, 92,137,212, +219, 96, 89, 44,150, 99,253,250,245, 11,216,239,187,182,182,246,104,168,121,139,139,139,179,235,187,188,112, 28, 63,126, 60,231, + 74,208,108,136,186, 51,162, 75, 67,108,163,226,226,226, 32,142,237,226, 57,122,244,104,212,247,207,134,208, 4,128,221,187,119, +247,104, 8, 93, 6,131,193,184,220,169,183,193,138,244,113, 12, 12, 6,131,193, 96, 48, 24,127, 86,194, 63, 91,128,193, 96, 48, + 24, 12, 6,131, 81, 47, 8,128, 14,129, 70,212,167,119, 0, 33, 36,160, 70, 40,194,233, 51, 77,166,201, 52,153, 38,211,100,154, + 76,243,234,211, 12,167,125, 25,247, 78,172, 23, 36,220,147,168, 47, 73,252, 10,233, 26,202, 52,153, 38,211,100,154, 76,147,105, + 50,205, 63, 86,243,106,131, 53, 17, 50, 24, 12, 6,131,193, 96, 68,153,122, 39,185, 51,162, 3, 33,132,167,148, 70,252, 4,252, + 8,136, 3, 16,236,133,110, 54, 0, 21, 23,169,171, 6, 32,122, 62,128,251, 21, 3, 14,143, 38,131,193,184,138,200,206,206, 30, + 71, 41,157, 14,247, 91,160, 94,222,182,109,219,219,127,116,153, 24,140, 43,149,160, 6,171, 85,171, 86,219, 56,142, 75, 15,244, + 2,226, 96,207,197,113,185, 92,199,247,238,221, 27, 81, 87,119, 66,136,144,154,154,122,187,193, 96,184,145,231,249, 92,207,252, + 27,107,106,106,190, 47, 45, 45,253,148, 82, 26,240, 81, 16,225,200,200,200, 48, 89, 44,150, 59, 8, 33, 99, 0,128, 82,250,177, + 86,171,253,207,161, 67,135,206, 95,140, 30, 33,164, 85, 74, 74,202,199,162, 40,242,199,142, 29,187, 17, 0,174,185,230,154,239, +109, 54,155,235,204,153, 51, 99, 40,165, 7,234,169,199,169, 84,170,130, 94,189,122,245, 36,132,252,155, 82,250,238,197,148, 43, + 0, 26,142,227,142, 4, 26, 33, 73, 82,179,139,208, 83, 1,136,157, 53,107, 86,252,194,133, 11,175, 43, 45, 45,237, 8, 0,169, +169,169,187,198,142, 29,251,243, 99,143, 61,246, 27,128, 74, 0,246,144, 42,140,203,158,204,204,204,109, 28,199,165,215,231, 89, +114,196,253,138,170,227,187,119,239, 14,120,188,103,102,102,110,227,121, 62, 61,148, 70,160,223,146, 36, 29, 42, 46, 46, 14,248, +200,136,214,173, 91,111,230,121,190, 69,184,178, 5, 42,103,176, 71,112,180,110,221,122, 27,207,243,233,245,213,148, 36,233, 80, + 81, 81, 81,176,114, 94,148,230,239, 93, 78, 0,232,211,167,143,166,166,166,230, 99,163,209,216,169,166,166,102, 28,165,116,242, +218,181,107,147, 57,142, 67,255,254,253, 39,103,103,103, 31,214,104, 52,115, 44, 22,203,207, 70,163,113,244,218,181,107,173,193, +180, 24, 12,134, 47, 65, 13, 22,199,113,233, 59,118,236, 72, 50, 24, 12, 0,160,188, 47, 79,126, 74,180,252,161,148,130, 82, 10, +167,211,137, 62,125,250, 68,180,208,244,244,244, 14,173, 91,183, 94,250,240,195, 15, 55,189,229,150, 91,212,201,201,201, 32,132, +224,212,169, 83,153,133,133,133,127,157, 61,123,246,139,233,233,233, 35,143, 31, 63, 30,105,162, 28,151,154,154,218, 15,192, 61, + 29, 58,116, 24,241,228,147, 79,170,114,115,115,225,114,185,240,221,119,223,245,154, 57,115,230,236, 38, 77,154,124, 14, 96,126, +105,105,233,183,148, 82, 41, 66,221,235, 90,180,104,241,159,245,235,215,183, 40, 41, 41,113, 13, 31, 62,252,223, 0,176,113,227, +198, 78,148, 82,146,155,155,187,146, 16,114, 7,165,244,231,136, 42,238,102,216,132, 9, 19, 70, 62,244,208, 67,137,227,198,141, + 27, 11,224, 93,207,178,228,151, 92,214, 55, 41, 78,137, 92, 81, 74, 85, 33,166, 75, 70,228,145, 44,195,161, 67,135,226,114,115, +115, 31, 58,115,230,204, 68,111,221,211,167, 79, 99,231,206,157,246, 87, 94,121,101,230,198,141, 27,223,201,200,200,168, 0, 80, + 83,207, 50, 51, 46, 35,120,158, 79,219,182,109, 91,146, 94,175, 87, 94,228,238,125,156,203,199,184,247,174, 73, 41,197, 13, 55, +220, 16, 74, 51,125,251,246,237, 73, 58,157, 78, 57,119,132,210,243,210, 12,106,216, 57,142,107,182,117,235,214, 36,189, 94, 15, + 74,105, 88, 61, 66, 8, 40,165, 33,223, 61, 42,151, 83,171,213, 70,164, 41,147,155,155, 27, 52,250, 92, 95, 77,185,156, 61,122, +244, 8,122,236,243, 60,159,190, 99,199,142, 36,249, 45, 24,245, 40,103,200, 27,160,154,154,154,143, 63,253,244,211,225,201,201, +201, 24, 54,108,216,170,246,237,219,171,245,122, 61, 86,174, 92,137,244,244,244,198, 38,147,233,191,249,249,249,120,253,245,215, +155,174, 94,189,122, 49,128,225,161,244, 24, 12,198, 5, 66, 25, 44, 24, 12, 6,124,242,201, 39, 1, 95, 63,227,255,187, 89,179, +102, 17, 45, 48, 37, 37, 37,187,121,243,230,235,150, 45, 91,166, 75, 74, 74, 82,134,219,237,118,152, 76, 38,220,123,239,189,234, +254,253,251, 95,251,215,191,254,245,199,148,148,148,222,167, 78,157,218, 22, 74, 47, 53, 53,117, 68, 86, 86,214,219, 19, 39, 78, + 76,190,245,214, 91,209,168, 81, 35,159,241, 67,135, 14,197,144, 33, 67, 84,135, 14, 29, 26,245,233,167,159,142,250,247,191,255, +125, 42, 53, 53,117, 66,105,105,233,231,161,116, 13, 6, 67,255,206,157, 59,127,240,237,183,223,166,199,197,197,161, 73,147, 38, +220, 11, 47,188,208,161,101,203,150,186,212,212, 84,238,228,201,147,248,252,243,207, 91,142, 29, 59,118,185, 86,171, 29,103,177, + 88,190, 13, 87,119, 66,136, 58, 62, 62,254,169,127,252,227, 31, 9, 85, 85, 85,206, 29, 59,118, 28,144,135,107, 52,154,201,215, + 95,127,125, 23, 66,200, 18, 74,233,252,112, 90, 94, 40,145, 43, 74,233,121, 92,104,202,147,113,200,227, 35,140,100,169,119,236, +216,209, 40, 55, 55,247, 11,171,213,218,229,111,127,251,219,137,215, 94,123, 77,109, 50,153, 76, 0, 72, 69, 69,197,185,169, 83, +167,186,222,122,235,173,103,218,183,111,223,111,227,198,141,195,187,116,233,194,154, 12,175,112,244,122, 61, 86,172, 88, 17,240, + 53, 83,129,142,249,184,184,184,176,111, 35,208,233,116, 88,189,122,181, 50,159,247,171,165, 2,253,142,139,139, 3,165, 52,164, +168, 86,171,197,134, 13, 27,148,215, 0, 5, 59, 47,201,223,122,189, 30,132,144,144,185,166, 90,173, 22,235,214,173, 11,171, 37, +127, 27,141, 70, 0, 8,254, 18, 81,175,114,134,171,179,252,219, 96, 48,132, 93,159, 26,141, 70,209,244,214, 8,246,223,115,115, + 28, 82, 84,167,211,117, 74, 78, 78,198,150, 45, 91, 48,101,202, 20,117, 86, 86, 22,246,239,223, 15,142,227, 48,110,220, 56,180, +111,223, 30,167, 78,157, 66,251,246,237,177, 97,195,134,235, 66, 22,144,193, 96,248, 16, 54, 7, 43,216, 9,214,255, 55, 80,247, + 53, 24,254, 61, 12,154, 55,111,174, 49, 26,141,159,173, 88,177, 66,151,144,112,225,109, 33, 54,155, 13, 85, 85, 85,168,174,174, + 70, 85, 85, 21, 12, 6, 3,230,204,153,163, 27, 51,102,204,103,205,155, 55,207, 44, 41, 41,177, 6,211, 36,132,204,220,185,115, +103,178,211,233,132, 90, 29, 56, 5,137,227, 56,180,106,213, 10, 19, 38, 76, 64,207,158, 61, 83, 70,141, 26, 53, 19,128, 98,176, + 2,245,132, 72, 77, 77,125,103,227,198,141,233,106,181, 26,251,247,239,199,241,227,199, 49,126,252,248,102,146, 36,225,216,177, + 99,216,191,127, 63, 78,158, 60,137,247,223,127, 63,125,204,152, 49,115, 0, 92, 27,170,238, 30,238,127,252,241,199,175,109,212, +168, 17,247,218,107,175, 85, 86, 87, 87,191,239, 25,158, 55,107,214,172,209,189,123,247, 78,252,219,223,254, 70, 9, 33,159, 80, + 74,235, 24, 22, 63,205, 64,145, 43, 23,165,116,175,223,108,109,253, 34, 91,201,112,191, 11,175, 50,128, 38, 1, 96,186,233,166, +155,158,176, 90,173, 93,126,248,225,135, 3, 61,123,246,108, 6,160,148, 82,122, 22, 0, 26, 53,106,100,120,243,205, 55,147,135, + 14, 29,250,107,255,254,253,187,220,116,211, 77, 79,156, 61,123,118, 58,128, 50,120, 94,239,210, 16, 61, 75,152,102,195,105,122, +154,146, 32, 8, 2, 6, 15, 30, 12, 66, 72,192,247,109,110,222,188, 25,253,250,245,131, 40,138,184,239,190,251, 34,214, 28, 52, +104, 16,156, 78,103, 29, 61,127, 3, 66, 60,239,232, 12, 85,119, 74,169,207, 59, 66, 3,153, 11,239,143,191, 94, 32, 77, 73,146, + 2,106, 5, 51, 89,132,144,144,231, 58,239,186, 71,106, 46,195,149,211, 91, 83, 20, 69,228,228,228, 96,199,142, 29, 33,205, 86, +184,114, 2, 64, 77, 77,205, 61,195,134, 13, 91, 53,126,252,120, 45, 0,148,149,149,249,188,136,126,223,190,125,176, 90,173, 88, +180,104, 17,172, 86,235, 3,117, 10, 25, 64, 51, 26, 48,205, 63,167,102, 24, 68, 0,157, 1, 36, 2,112, 1,168,130,251, 58,104, +131,251, 90, 88, 14, 64,231,249, 88, 1, 84, 3,104,236,153,183, 12,238,235,155,247,107,202,206,194,247,165,208,221, 60,218,242, + 43,187, 18,189,198,201,203,240,255,239,255,237,163,205, 1, 0, 33,132,122, 62,189,229,177,114,216, 58, 18,115, 37,159, 28,195, + 65, 41,125, 56, 47, 47, 47,217,219, 92, 89,173, 86,156, 63,127, 30, 85, 85, 85,202,247,254,253,251,161, 86,171,113,251,237,183, + 39, 83, 74, 31, 14, 35,171,226,121, 30, 59,118,236,192,178,101,203,112,248,240,225, 58, 19, 28, 60,120, 16,111,190,249, 38, 94, +127,253,117,156, 63,127, 30,112,231, 23, 5,164,115,231,206, 83,198,140, 25,243, 99,159, 62,125, 52,130, 32, 96,231,206,157,200, +204,204,196,166, 77,155,112,244,232, 81,156, 59,119, 14,251,246,237, 67,135, 14, 29,112,224,192, 1,156, 63,127, 30, 89, 89, 89, +154,174, 93,187,254,208,188,121,243, 41,193,116, 9, 33,170,180,180,180,103,255,241,143,127,104, 74, 75, 75,165, 5, 11, 22,108, +164,148,110, 34,132,140,127,238,185,231,238, 26, 52,104, 80,226,222,189,123,207,111,221,186,117, 91, 32,115, 21, 0, 13,199,113, + 71, 57,142, 59, 66, 41, 61, 79, 41, 53,195,157,124,174,224,105,186,181,154,205,230,202,242,242,242, 50,142,227,142,112, 28,183, + 31,128, 38,152,230,216,177, 99, 91,150,149,149, 61,244,216, 99,143, 29,238,217,179,103, 51, 74,233, 62, 74,105, 57,220, 59,172, +213,233,116,150, 87, 84, 84,252,154,155,155,155, 58,122,244,232, 3,101,101,101, 15,141, 29, 59,182,101, 8, 77,198,229, 15,117, +185, 92, 16, 69, 17,107,215,174,197,134, 13, 27,176, 97,195, 6,108,220,184, 17,155, 54,109,194,230,205,155,177,121,243,102, 8, +130,128, 77,155, 54, 97,211,166, 77,152, 48, 97, 66,216, 99,222,229,114, 65, 16, 4,172, 91,183, 14, 63,253,244,147,242,217,186, +117, 43,126,250,233, 39,232,116,186,176,102,200, 27, 79,158, 82, 80, 51,245,206, 59,239, 40,230, 80, 62, 55,113, 28, 23, 50, 42, +230,111, 92,252, 13, 75,179,230,205,235,140, 11, 87, 78, 0,138,230,191,254,245, 47,156, 56,113, 2,179,103,207,198,193,131, 7, +241,234,171,175,162,184,184, 24,211,166, 77,195,214,173, 91,145,151,151,135, 31,126,248, 65,126,249,123,200,244, 0,217, 8,230, +228,228,192,110,183, 43,229,217,183,111, 31,102,204,152,129,157, 59,119, 98,242,228,201,216,188,121, 51,158,122,234, 41,240,124, +200, 32, 27,178,179,179,199, 17, 66, 62,109,221,186,181,166,111,223,190, 16, 4, 1, 51,102,204,144, 38, 79,158,124,230,185,231, +158, 59, 83, 88, 88, 72, 91,182,108, 9,155,205,134,152,152, 24, 80, 74,231,103,103,103,135, 59, 31, 51, 24, 23, 77, 32, 47,226, +197, 13,121,121,121,125, 9, 33,133, 57, 57, 57, 99, 1,196, 17, 66, 10, 1,168, 61,223, 9,121,121,121,221, 9, 33,133,121,121, +121,217, 0, 26, 19, 66, 10, 61,255,111, 4,144, 32,255,247, 76,239,109,160, 68, 0,137, 94,195, 19,253,166, 85, 7,250,239,255, +237,175,173, 68,176, 40,165,196,115,128, 43, 39, 35,249,164, 27,169,193, 10,119,194, 53, 26,141, 67,110,186,233, 38,197,220, 88, +173, 86,159,200,149,252, 93, 85, 85,133, 95,127,253, 21, 29, 58,116, 80, 25,141,198, 33, 0,254, 25,110,195, 8,130,128, 38, 77, +154,160,172,172, 12, 69, 69, 69,104,214,172, 25, 28, 14, 7,190,249,230, 27, 84, 84, 84, 64,165, 82, 65,165, 82,193,102, 11,237, + 93,218,182,109, 59,120,225,194,133,217,255,254,247,191,207, 9,130,128,125,251,246,225,227,143, 63, 6,165, 20,141, 27, 55, 70, +109,109, 45,206,156, 57,131,153, 51,103,194,110,183,195,104, 52, 34, 45, 45, 77,251,240,195, 15,247,156, 58,117,170, 8, 96, 74, + 16,233,191,140, 24, 49,194, 20, 19, 19,131, 71, 31,125, 84,178,219,237,175, 19, 66,174, 31, 49, 98,196,179, 19, 38, 76,136, 47, + 41, 41,177,221,127,255,253,219,236,118,251, 76, 0, 32,132,136,148, 82, 71, 16, 45, 0,161, 35, 87, 78,167, 83, 94,167,135,171, +170,170,144,148,148,212,148, 82,170, 10,179,141, 84,155, 54,109,202, 1,192,191,244,210, 75, 90, 74,233,105,120,153, 54,187,221, + 46,107, 58, 43, 43, 43,207, 60,245,212, 83,206,197,139, 23,243,158,121,246, 0,176,132, 18,103, 92,158,200,198, 69, 20, 69, 12, + 30, 60,216,199, 80,172, 95,191, 30, 55,221,116,147,114,188,171, 84, 42,101,186,112,154,222, 81, 49, 57,242, 36,235,126,255,253, +247,117, 34, 47, 17,222,164, 41, 17,150, 64,198,199,223,116,201, 55,138,161, 8, 20,109,242,142,204, 7,138, 12, 69, 82, 78, 81, + 20, 49, 97,194, 4, 8,130,128,167,158,122, 10,162, 40,162,115,231,206, 16, 4, 1, 61,122,244,128, 32, 8,184,241,198, 27, 35, +190, 65,149,203,185,121,243,102,116,237,218, 85, 41, 79,231,206,157,209,173, 91, 55, 8,130,128, 94,189,122, 65, 16, 4, 12, 28, + 56, 48,172,166,156,208,110, 52, 26,241,235,175,191,130,231,121, 16, 66,202,183,111,223,158, 12, 0, 83,166, 76, 41,179, 88, 44, + 9, 22,139, 5,253,250,245, 67, 78, 78, 78,226,226,197,139, 95, 0,192,122, 22, 50, 26,140, 64, 94,196,131,166,160,160, 96, 6, +165,116,104,176,121,229,241,132,144,194,252,252,252,161, 30,189, 58,255, 61,147,123,191, 92,254,134,188,188,188, 44,175,255,103, +229,249,188,151, 23,106,217,126,211,159, 5,188, 12,150,167, 66,125,188,254, 7, 52, 88,193,140, 86, 36, 39, 8,139,197,210, 89, +142, 94, 89, 44, 22, 31, 67, 85, 93, 93,237, 99,180,108, 54, 27, 50, 50, 50, 96,177, 88, 58,135, 21,246,130, 16,130,212,212, 84, +216,237,118,204,155, 55, 79, 49, 86, 50,118,123,232, 78,111,187,119,239, 62,252,227,143, 63,118,233,218,181,107,163, 47,190,248, +226,108,255,254,253, 19, 7, 13, 26, 4,173, 86, 11,139,197, 2,167,211,137,191,252,229, 47,104,219,182, 45,206,156, 57,131,149, + 43, 87,150,101,102,102, 54,222,178,101,139,116,234,212,169, 35, 33,164,251,245,235,215, 15,132, 16,172, 92,185,242, 55, 74,233, +118,157, 78,247,249,140, 25, 51,226,172, 86,171,116,215, 93,119, 29,251,237,183,223,158, 2,224,208,104, 52,255, 28, 48, 96,192, + 95,120,158, 95,226,114,185,234,125, 50,179, 90,173, 62,235,182,170,170, 10,122,189, 62,146, 71, 66,136, 21, 21, 21, 29, 34, 45, +179, 63, 0, 0, 32, 0, 73, 68, 65, 84, 1, 64,175,215,199, 3, 80,122, 72,154,205,102,101, 27,121,182,143, 37, 62, 62,222, 0, + 0,158,121,252,115,191, 24, 87, 16,242,197,123,237,218,181, 62,199,183, 28,129,242, 63,230,213,106, 53, 86,172, 88, 17,145,166, +183,153,138,160, 57, 47,100,180, 73, 54, 88,130, 32,224,253,247,221, 45,236,143, 62,250,168, 50,191,255, 50,194,225, 29,169, 23, + 4, 1,109, 95,148, 0,216,113,252, 13, 45, 68,209,189, 75,251,151, 25, 64,196, 81,177,217,179,103, 99,232,208,161, 40, 44, 44, + 12,249, 61,100,200,144,136,202, 41, 8, 2, 52, 26,119,176, 88, 46,207,206,157, 59, 3,234,206,157, 59, 55,108, 78,155, 36, 73, +248,234,171,175,192,113,156, 79,196,235,133, 23, 94,248,135,201,100, 50,174, 91,183, 14,167, 79,159, 70, 77, 77, 13,170,171,171, +209,168, 81,163,184,254,253,251,239, 60,117,234, 84,201,238,221,187, 89,194, 59, 35,234,248,123, 17, 47,204,147, 38, 77,122,150, + 16, 82, 56,105,210,164,103,243,243,243,139, 61,211, 23,250,205, 95, 24, 96, 94,159,241, 30, 19, 36, 55, 15,118,131,175,121,147, +155, 14,111, 14, 49,175,205,207, 80,249, 55, 17,110, 5,194, 68,176,252,115, 19, 66,253,246,132,184, 67,213, 11,146, 36, 9,132, +144, 58, 6, 32, 80, 4,203,225,112,160,188,188, 28,146, 36, 69,245, 89, 93,225, 12, 86, 81, 81,209,189,227,198,141, 59, 25, 27, + 27,219,169,188,188,188, 84,163,209,244, 90,191,126,253, 53, 14,135, 3, 38,147, 9, 38,147, 9,255,253,239,127, 17, 27, 27,139, +199, 30,123,236,168,217,108,222,100, 48, 24,146,205,102,243, 47,167, 78,157,122, 62,152,174, 40,138,253,122,245,234,133,237,219, +183,163,162,162,226, 59, 66, 72,167,191,253,237,111, 3,175,185,230, 26, 50,125,250,116,203,129, 3, 7,222, 6,112,214, 96, 48, +252,107,225,194,133,189,187,116,233, 98,188,235,174,187, 64, 8,249,128, 82, 26,113,100,168,182,182,214,199, 88,201,235, 52, 38, + 38, 38,162,103,110,121,214, 55, 37,132, 40, 29, 26,189,141,149,151, 1,166, 60,207, 75, 0,104,180,183, 17,227,247, 69, 54, 4, +162, 40,226,150, 91,110,169,147,220,174, 82,169,176,106,213, 42,220,118,219,109,202, 13, 75,215,174, 93,195,234,202,134,224,214, + 91,111, 5,224, 54, 4,171, 86,173, 10,106,176,194, 53,105, 1,190,209,166, 71, 30,121, 4,162, 40,226,237,183,223,198,196,137, + 19,193,243, 60,222,120,227, 13,112, 28,135, 23, 94,120, 33,226,250,123, 55, 17, 30,126,197,253,157,254,248,121,148,191,155, 12, + 0,136, 49,153,220,245,145, 34,234,124,236, 83,247,112,145, 43,111, 99, 21,174,137,208, 59, 10,184,127,255,126,229,119,143, 30, + 61,124, 34, 87,130, 32,132, 53,108,158,229, 77,235,219,183,239,244,244,244,244,164,241,227,199, 19, 65, 16,144,157,157,221,120, +242,228,201,149,162, 40,106,159,124,242,201, 64,169, 20, 34,128, 78,237,218,181, 51, 68,188, 50, 24,140,122, 16, 34,130,101,205, +207,207, 47,206,207,207, 15, 24,161,242,154,127,104, 40,147,229, 21,133,234, 6,183, 17, 74,148, 77, 27,220,169, 48, 91, 35,152, + 87, 45,155, 43,255, 40,151, 55,254, 17,172,169,222, 35, 35, 53, 88,145,228, 79, 0,128, 94,175,223, 85, 86, 86,214, 67,163,209, +224,252,249,243,117, 46,218,222,166,128,231,121,156, 57,115, 6,122,189,126, 87, 88,225,122, 16,174,137,208, 99,102,158,144,255, + 19, 66,186,221,126,251,237,139,151, 44, 89,146,177,102,205, 26,108,217,178, 5,141, 27, 55,198,140, 25, 51, 14,149,148,148,140, +166,148, 6,221, 24,222,180,108,217,178,189,209,104,196,198,141, 27, 1,224, 7, 0,247, 60,248,224,131,196,110,183, 99,206,156, + 57,181, 0,214,196,198,198,126,190,116,233,210, 78,157, 58,117,210,172, 89,179,166,106,203,150, 45,107, 35, 52, 87, 46, 74,105, + 64, 99, 85, 85, 85,133,154,154, 26, 24,141,198, 72, 12,150,211,100, 50, 21, 85, 85, 85,221, 97, 54,155,207,107, 52,154,152,243, +231,207, 91,189, 35,140,213,213,213,168,169,169,129, 32, 8,226,254,253,251, 79, 2,104,105, 50,153,138, 0, 92,212,115,203, 24, +127, 60, 28,199, 81,217,100,172, 89,179, 38,224,177, 46,138, 34,190,249,230, 27,159,227,125,229,202,149, 65, 53,189,163, 56,114, + 79,194,112, 17, 44,121,214,112,229, 21, 69, 17, 60,207,227,221,119,223, 5,165, 84,137, 92,113, 28,135, 73,147, 38, 65,163,209, +224,229,151, 95,198,164, 73,147, 34,138, 98,121, 71,197, 90, 60, 99, 86,134,203,243,218,109, 54,119,148,158,227,188, 77, 86, 68, +145,182,112, 9,238,145,226, 31,105,211,104, 52, 65,147,219,253,103, 13,166,185,109,219,182, 15,187,116,233,114, 32, 49, 49,113, +117, 78, 78,142,102,219,182,109,152, 48, 97, 2,177, 90,173,166, 53,107,214, 40,203,245,135, 82,138,154,154, 26,109,196,133,103, + 48,234, 65, 32, 47,226,161,145,108,156, 60,102, 40, 82,189, 66,239,233,101, 13,127, 83,228,137,136,173, 15,167, 21,104,222, 96, + 8,158,137,235, 28, 69,254, 39,137,112, 70, 43,146,187, 79,179,217,252,237,218,181,107,187,221,118,219,109, 66,168,230,193,234, +234,106, 36, 39, 39,227,224,193,131, 78,179,217, 28,246,241, 7, 46, 87,228, 15, 68, 15, 23,193,242,135, 82,186, 53, 43, 43,203, +105,183,219,113,237,181,215, 34, 45, 45, 13,102,179, 25,111,190,249,166, 51, 82,115, 69, 8, 81,101,103,103,243, 0, 80, 89, 89, + 9,184,123, 59,100,102,102,102, 98,251,246,237, 56,119,238,220,114, 0,253,166, 78,157,122,221,245,215, 95,175, 90,178,100, 73, +237, 3, 15, 60,176,220,225,112, 76,143, 68, 95,146, 36,155,211,233,108,193,113,156,189,162,162,226,132,183,177, 74, 78, 78,110, +100, 52, 26,185, 51,103,206,132,204,231,242, 96,239,216,177,227, 79,199,143, 31,199, 75, 47,189,116,118,198,140, 25,153, 85, 85, + 85,231, 42, 43, 43,157,178,177, 58,127,254, 60,204,102, 51,151,152,152,168,153, 59,119,174, 30, 0, 58,118,236,248, 19,216, 3, + 71,175,104,252, 59,180,248,155,171,112, 61,222,130,105, 10,130,128, 97,195,134,213,137,136,201,159,165, 75,151,250,228, 53,133, +107,122,147, 53,223,121,231, 29, 60,250,232,163,208,104, 52,152, 53,107,150, 79, 14, 86,160, 89, 67,105, 2,110,211,214,226, 25, + 51, 78,189, 21, 15, 81, 20,145,240,192,105,159, 38,194, 0,117,139,200, 8,206,152, 49, 35, 42, 77,132, 50,130,112,225,145, 56, +243,230,205,195,237,183,223,142, 31,126,248,225,162,155, 8, 91,180,104,177,240,205, 55,223,212,236,217,179, 7,231,207,159,199, +217,179,103, 97,177, 88,112,236,216, 49,185,158, 1,231,171,173,173,213, 69, 84, 96, 6,163, 30,132,217, 95,207,250,229, 79, 17, +239,230,186, 16,223,254,211,195,107,152,183,238, 89,248,118, 20,243, 30,238,111,170,252,151,225, 61,141,146,219, 21,242, 22, 74, +142, 96, 69,106,176, 34,104, 34,156,249,226,139, 47, 62,212,179,103,207,120,147,201,132,147, 39, 79, 6,140, 96,153, 76, 38,216, +237,118,172, 93,187,246,188, 36, 73, 51, 67,138, 2, 14,135,195,129,164,164, 36,148,149,149, 65, 10, 18,198,231, 56, 14, 58,157, + 14,213,213,213,128, 95,111,187,112, 80, 74,225,112, 56, 96,183,219, 97,183,219,225,112,212,107,118, 0,208,201, 15,108,173,169, +169, 1,128,154, 38, 77,154,180,212,106,181,114,175,199,253, 0,250, 14, 26, 52, 72, 44, 47, 47,167,247,223,127,255,102, 74,233, + 4, 26,250,105,246,182,181,107,215, 54, 7, 0,157, 78,183, 31, 0,142, 29, 59,230,168,168,168, 64,117,117,181, 18, 33,212,233, +116, 24, 62,124,120, 10,165, 20,107,215,174,109,174, 82,169, 40,130,155, 33,107, 97, 97,225,238,216,216,216,197, 5, 5, 5,163, +111,190,249,230,226,142, 29, 59,182,168,174,174, 62, 83, 91, 91,107, 54,155,205, 84, 16, 4, 85, 66, 66,130,102,245,234,213, 7, + 54,111,222, 60,192,100, 50, 45, 46, 44, 44,220, 13,119,104,149,113, 5,226,159,219, 20,200, 84,121, 39,146, 71,170, 9,184, 13, +193, 55,223,124, 19, 50,138, 19,169,166,140, 32, 8,120,226,137, 39,240,214, 91,111,213,137, 96, 77,159,238,190, 39,121,238,185, +231,234, 21, 33, 18, 4, 1,167,222,138, 71,202, 35,191,249, 12, 3, 0,226, 41, 95,125,154, 8,229,249,167, 77,155, 6, 81, 20, +149, 38,188, 1, 3, 6,248, 52, 13, 70,106,172,188, 53,207,156, 57, 3, 65, 16, 16, 31, 31,143,209,163, 71, 99,224,192,129,117, +244, 34,213, 61,118,236,216,207,175,191,254,122,211,180,180, 52, 44, 89,178,196,102, 48, 24,212,125,251,246,165,149,149,149, 4, + 8, 30,193, 50,155,205, 44,130,197,248,189,137, 40,160, 17, 69,221, 75, 94, 94,208, 51, 80, 52, 30,211, 64,252,222,182, 93, 82, + 82, 82,153,154,154, 58,102,212,168, 81, 95,188,251,238,187,186,150, 45, 91, 98,223,190,125, 56,119,238, 28,236,118, 59, 84, 42, + 21,154, 52,105,130,234,234,106,124,246,217,103,181,181,181,181, 99, 74, 75, 75, 43, 67,105, 18, 66,158, 27, 60,120,240,220,231, +159,127, 94,219,190,125,123,156, 59,119, 14,213,213,213,202,157, 23, 33, 4, 38,147, 9,122,189, 30, 69, 69, 69,216,188,121,179, +153, 16,242, 92, 40, 77,127, 36, 73, 82,140,149,108,180,194,245, 76,242,211, 52,232,245,122, 0,238, 28, 41, 0,206,166, 77,155, + 38, 3,144, 13,214,145,140,140,140,231, 91,181,106, 69, 22, 46, 92, 72, 41,165,107, 2,153, 43, 63,205,115,189,123,247,174, 0, +144,108,179,217, 84, 0,112,254,252,121,123, 66, 66, 66,146, 70,163,145, 52, 26,141,164,213,106,165,210,210, 82,167,211,233, 84, + 1, 64,239,222,189,109, 0, 78,195,243,188,170, 0,154, 18,128,170, 57,115,230, 76,185,231,158,123,122,228,230,230,102,221,127, +255,253,123, 30,120,224, 1,164,165,165, 53,170,174,174,182,236,223,191,191,226,221,119,223,181,252,244,211, 79, 3, 68, 81, 60, + 50,103,206,156, 41,112, 63,143, 68, 10,162, 25, 21,152,102,195,105,202,185, 63,129,140,149,247,255, 8, 30,163,224, 83, 78,217, +180,221,113,199, 29, 74,239, 67,255,200, 85,125, 53, 1, 40, 61, 8,159,126,250,105,159,242, 61,255,124,208, 20, 72,159,147,147, + 95,221, 33,215, 93, 16, 4, 84,206, 75,243, 49,127,145,154,170, 64,154,130, 32, 96,242,228,201, 17, 71,176,252,115,176, 66,149, +179,119,239,222,168,169,169,129, 40,138, 88,181,106, 85,208, 8, 86,184,245,169,211,233, 70, 47, 95,190,252, 99,141, 70,211,209, +102,179,221, 87, 86, 86,182,160,182,182,182,105, 69,133,251,133, 15,193,206,115, 22,139, 69,121, 44,203,149,184,207, 51,205,203, + 83,243,106, 35,228, 45,158,211,233,196, 53,215, 92,227,243,110, 43, 57,153,157,231,121,165,231, 73, 36, 61, 8,101, 74, 75, 75, + 87,165,166,166,142, 24, 62,124,248,162,123,238,185, 39,166,109,219,182, 98,179,102,205, 96, 54,155, 81, 82, 82,130,146,146, 18, +231,119,223,125,119,190,182,182,246,175,165,165,165,171,194,233,157, 56,113,226,223,201,201,201,223,140, 29, 59,118,242,117,215, + 93, 55,126,226,196,137,124, 70, 70, 6, 42, 43, 43,209,168, 81, 35, 36, 38, 38,162,164,164, 4,159,125,246,153,171,162,162, 98, +174,203,229,154,118,250,244,233,179,225,116,253,214, 3,239,112, 56, 48,106,212, 40, 72,146,132, 89,179,102,193,233,116,134,111, + 19,189,128,221,110,183, 83, 0,164,172,172, 12, 0,106,101,195,245,191,255,253, 15, 0,142, 54,111,222,220, 8, 0,223,126,251, + 45, 1,176, 41, 66, 93, 10,175, 72, 86,219,182,109, 75, 0,223,147,162, 28,185,242,252,181,193,203, 92, 5,193, 50,122,244,232, +179, 86,171,117,208,227,143, 63, 62,121,222,188,121,163,231,205,155, 87,103, 34,147,201,180,248,141, 55,222,152, 54,122,244,232, +179, 96,143,103,184, 42,240,143, 86,213, 55, 5, 32,152,230,151, 95,126, 25, 48,130, 85,223,200,149,252, 40,152, 64, 61, 18, 67, +157,131,194,221, 12,201,229,244,215,173,207,121, 45, 80, 89, 5, 65,192,107,175,189,166, 68,174,188,147,207, 47, 38,130, 37,107, +198,199,199, 3, 0, 12, 6, 3, 36, 73,194,144, 33, 67, 46, 90,215,243,110,193, 17,242,255,236,236,236,105,159,124,242,201,116, + 74,105, 2, 0,193,123, 29, 68,178, 30, 25, 12,198, 5,130, 26, 44,151,203,117, 92,126,183,160,183,193,242,254,246,255,237,116, + 58,143, 71,178,208,210,210,210,111, 50, 50, 50, 50,230,205,155,247,168,193, 96,232,111,177, 88, 58, 2,128, 86,171,221, 85, 83, + 83,179,134,227,184, 55, 75, 75, 75, 35,126, 57,179,199, 48, 61,156,158,158, 62,107,236,216,177,211,115,114,114, 70,222,127,255, +253, 68, 16, 4,124,250,233,167,244,196,137, 19, 75, 57,142,123,238,228,201,147, 7, 35,213,244, 70,175,215,255,186,116,233,210, +150, 95,126,249, 37, 28, 14, 7,230,206,157, 11,141, 70,243,107,164,243, 83, 74,207, 10,130,176, 40, 55, 55,119,244,230,205,155, + 23, 83, 74,139, 52, 26,205,199, 55,220,112,195,152, 77,155, 54,253,135, 82,186, 71, 16,132,143,115,114,114,198,252,244,211, 79, +159, 83, 74,127,169, 71,241,148, 72,150,211, 25,184, 69, 49, 80,228, 42, 12,231,199,141, 27,103, 31, 55,110,220,227, 35, 71,142, +156,183,125,251,246,191,200,143,111,136,139,139,219,213,181,107,215, 45, 75,151, 46,221, 7,119,228,138,153,171, 43, 28, 57, 33, +189, 81,163, 70,224, 56, 78,249,200, 79,243,174,175, 17,146, 53, 41,165,104,212,168, 81,192, 27,179, 16,154, 33, 93, 13,165, 20, + 70,163, 81,209,140,176,247,114,216, 48,148,209,104,244, 41, 99, 4, 4, 61,150,228,186,251,151, 51, 28,161,234, 33,107, 26, 12, + 6,216,237,246,136, 53, 17, 65,167, 1,111,182,109,219,246, 33,128, 15,175,189,246,218,255, 1,104,197, 76, 21,131,113,241, 4, + 53, 88,123,247,238, 13,248, 86,247,104,113,232,208,161,243, 0,166,121, 62, 81,225,248,241,227, 7, 1,220,145,146,146,242,207, + 77,155, 54,189, 0, 0,146, 36,189, 20,238,125,134,225,248,229,151, 95,110, 19, 69,113,206,252,249,243,115, 40,165,136,141,141, +221,116,224,192,129, 7,235,163,225,116, 58,199, 19, 66, 38,202,189, 2,173, 86,235,120, 66,200,147,148,210, 26,175,241,202,255, +122, 66,225, 78,182, 75, 13, 50, 62,146,200,149, 63, 22, 0,182,165, 75,151, 86, 3,216,137, 11,207,185,114,120, 62, 86,120, 53, + 11, 50,174, 92,156, 78,231,137, 62,125,250, 8,225,110,160, 2,204, 23,244,134,202,229,114, 29,239,213,171, 87,216,155,178, 64, +101, 9, 81,212, 35, 57, 57, 57, 92,164, 90, 50, 14,135,227, 76,176,113,146, 36, 29,239,209,163, 71,192,114,134, 34, 92,221,123, +244,232, 81,175, 50,122,202, 18,180,238, 23,171, 25,102,125, 6,197,108, 54,159, 75, 76, 76,172,182, 88, 44,162,213,106, 21,253, + 35,246, 58,157,174, 94,173, 0, 12,198,159,145,171,242,249, 69, 30, 67,117, 75,180,244, 60,249, 80,127,143,130,142,197,239,127, + 77,168,255,245,228,220, 37,204, 27, 12, 9,128, 57,236, 84,140, 43,154,162,162,162,191, 68, 91,115,247,238,221, 81,191, 65, 43, + 42, 42,234, 17,126,170,250, 81, 92, 92, 28,245,114, 94, 41,154,161, 56,113,226, 68,212,247, 9, 6,227,207, 70,253, 99,255, 12, + 6,131,193, 96, 48, 24,140,144, 16, 0, 29, 2,141,168, 79,239, 0, 66, 72, 64,141, 80,132,211,103,154, 76,147,105, 50, 77,166, +201, 52,153,230,213,167, 25, 78,251,106,233,157, 72, 26, 50,137,241, 74,233, 26,202, 52,153, 38,211,100,154, 76,147,105, 50,205, + 63, 86,243,106,131, 53, 17, 50, 24, 12, 6,131,193, 96, 68, 25,102,176, 24, 12, 6,131,193, 96, 48,162, 12, 51, 88, 12, 6,131, +193, 96, 48, 24, 81,134, 25, 44, 6,131,193, 96, 48, 24,140, 40,195, 12, 22,131,193, 96, 48, 24, 12, 70,148,105,208, 94,132, 12, + 6,131,193, 96, 48, 24,127, 70,148, 8, 22, 33,100, 29, 33,100,221, 31, 88, 22, 6,131,193, 96, 48, 24,127, 98,174, 38, 47, 34, + 0, 0, 33,132, 2,232,243, 7,151,133,193, 96, 48, 24, 12,198,159,148,171,205,139, 16, 74, 41, 8, 33,148, 82, 90,175,183,174, + 51, 24, 12, 6,131,193, 96, 68,139,171,205,139,176, 36,119, 6,131,193, 96, 48, 24,140, 40, 35, 27,172,169, 87, 83,187, 39,131, +193, 96, 48, 24,140, 43,142,171,202,139, 40,189, 8, 9, 33,189, 1,128, 82,186,238, 15, 44, 15,131,193, 96, 48, 24,140, 63, 41, + 87,147, 23, 97,143,105, 96, 48, 24, 12, 6,131,193,136, 50, 13,154,131, 69, 8,233,192, 52,153, 38,211,100,154, 76,147,105, 50, + 77,166,249,103,131, 37,185, 51, 24, 12, 6,131,193, 96, 68, 25,102,176, 24, 12, 6,131,193, 96, 48,162, 12, 51, 88, 12, 6,131, +193, 96, 48, 24, 81,134, 25, 44, 6,131,193, 96, 48, 24,140, 40,195, 12, 22,131,193, 96, 48, 24, 12, 70,148, 33, 0, 2,246, 4, +160,148, 22, 69, 44,114, 17,189, 9,194,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,234,211, 12,167, 93, 31,255,113, 57, + 19,209,115,176,136,231, 5, 65,245, 22, 39,164, 67,180, 87, 20,211,100,154, 76,147,105, 50,205,134,209,188,152,115,125, 32, 77, + 66,136,252, 62, 57,249,155, 2, 64,164,218,191, 87, 57, 27, 66,179, 33,234,254,103,209,188,218, 16, 66,141, 36,132,112,112, 55, + 35, 18, 66,136, 4, 64,138,198,138,242,108, 4, 46, 90,122,140,232,227,217, 70,202, 65,194,182, 19,131,113,245, 18,205,115,189, +215,185,131,151, 53, 1,184, 0,184, 8, 33,151,116,177,109,136,107,210,229, 94,247, 63,179,230,149, 78, 64,131, 37,175,168,196, +196,196, 85, 73, 73, 73, 55,150,149,149, 73,158,225, 72, 75, 75, 3,199,113, 16, 4,193,124,248,240, 97, 83,125, 23,152,156,156, +252, 65, 86, 86,214, 61,229,229,229, 18,199,113,184,230,154,107, 64, 8, 1,207,243,224,121,222,124,224,192,129,122,107, 70,155, +174, 93,187,158,179,217,108, 70,255,225,106,181,218,178,125,251,246,152, 63,162, 76,191, 39,132, 16, 33, 51, 51,243, 78,189, 94, +175,147,135,117,233,210,197,123, 18,186, 99,199,142,121,145,234,181,104,209,226, 39,157, 78, 23, 39, 8, 2,120,158,135, 32, 8, +168,169,169,169,216,179,103, 79,119,207,248,141, 58,157, 46,129,231,121,121,223,130,197, 98, 41,223,189,123,119,110,244,106,117, +245,208,167, 79, 31, 1, 97,110,142, 2,224, 92,187,118,173,179, 33,202, 19, 4,206,182, 61,166, 21,113,154, 59, 17,142,198, 82, +137, 84, 82, 65,247,139,186,107,213,129, 8,231,151, 26,180,116, 97, 32,132, 52, 5,224,164,148,158,188,152,153,253, 7, 9,192, + 77, 46, 96,148,231,175,133, 3,202, 9,176, 63, 1,248,236, 52, 96,246,153,248,119,188, 16,201,231,250,244,244,244, 55,147,147, +147,239,173,170,170,170,229,121, 30,132, 16,154,149,149, 37, 79,227, 61, 61, 36, 73, 58, 94, 92, 92,156, 29, 74, 15,128,216,180, +105,211, 55, 18, 19, 19,239,174,173,173,173, 37,132,128, 16, 66, 9, 33,232,216,177,163,162, 41,127,187, 92,174,227, 69, 69, 69, + 1, 53, 27,162,156,127, 84,221, 59,116,232,160,104,201,218,146, 36, 5,173,187,183,102,122,122,250, 27,201,201,201,119, 87, 87, + 87,215,114, 28,167,104,102,101,101, 93,116, 57, 47,103,205,171,129, 96, 39,105, 46, 41, 41,105,121,247,238,221,251,124,249,229, +151,220,222,189,123,185,182,109,219,194,229,114, 65,146, 36, 80, 74,209,181,107, 87,125,125, 23,150,146,146,178,160, 91,183,110, +163, 86,172, 88,193, 45, 95,190,156,235,214,173, 27, 8, 33,112,185, 92,112,185, 92,232,215,175,159, 46,188, 74,112, 8, 33, 70, + 65, 16, 38,170,213,234,222, 78,167,179, 29, 0,136,162,184,199,106,181,174,115, 58,157, 51, 41,165,213,145,232, 56, 28, 14,125, +113,113,113,157,117,211,189,123,119,245,197,150, 45, 51, 51,115, 19,199,113, 25,158,114, 34,146,111, 74,233,161,226,226,226,156, + 96,154,109,218,180, 9,171,233, 63, 76,146,164, 67, 69, 69, 69, 65, 53, 9, 33,194,181,215, 94, 59,170,125,251,246,218, 79, 63, +253, 20,199,142, 29,131,193, 96,128, 36, 73,112,185, 92,112, 56, 28,184,237,182,219,234, 92, 64, 66,161,211,233, 76,223,125,247, + 93,171,164,164, 36,156, 57,115, 6,101,101,101, 24, 63,126,252,126,175,241, 9,223,127,255,125,102,124,124, 60,106,107,107, 81, + 89, 89,137, 49, 99,198,212,103, 17,151, 37, 3,111,104,249, 50, 1,226,229,255, 46, 9,191,173,217,112,240,249, 75,213,181, 90, +173,165, 46,151,171,145,247,176, 0,215,116, 31,120,158, 63, 7, 32, 49,212, 52,132,144,230, 0,110,225,121,254, 90, 81, 20,219, + 80, 74,155, 59,157,206,100, 0, 80,169, 84,167,121,158, 47,113, 56, 28,251,108, 54,219,255, 0,172,160,148,150, 4,211,178,109, +143,105,229,178,214,142,172,177, 74, 67, 36,138, 20,142,224,148, 65, 83,251, 95,219,246,152,165,245, 48, 89,127, 8,132,144, 22, + 77,154, 52,121,205,243,251, 41, 74,233,225, 75,213,116, 1,163, 40,165,177, 0, 80, 89, 89, 25,123,236,216,177,148, 21, 43, 86, +100,205,152, 49,163,175,218, 98,121,213, 6,236, 9, 53,255,128,222,173,182, 9,132,164,203,255,157, 84, 58,190,122,221,193,104, + 92,152,184,180,180,180, 55, 7, 15, 30, 60,118,238,220,185,250, 45, 91,182,232, 59,118,236, 8,247,133, 17,202,249,158, 82,170, +236, 99,215, 95,223, 35,148, 30, 1, 32, 52,105,210,100,214,224,193,131, 71,207,153, 51, 71,191,111,223, 62,125,139, 22, 45, 20, + 77,101, 66, 66, 60,195, 8, 58,119,190,238,247, 46,103,131,214,125,208,160, 65,163,231,206,157,171,223,181,107,151, 62, 51, 51, + 83,209,244,247,206, 28,199, 33, 59,187, 91, 68,154, 55,221,116,211,232,247,222,123, 79,191,125,251,118,125,187,118,237, 60, 38, + 13, 74, 25, 47,166,156,151,185,230, 21, 79, 29, 19, 65, 8,225, 18, 19, 19, 23,102,103,103, 15,250,242,203, 47,121, 0,216,190, +125, 59,202,203,203,145,150,150, 6,163,209, 8,173, 86, 11,139,197, 82,175,187,172,228,228,228, 15,186,119,239, 62,234,203, 47, +191, 20, 1,224,243,191,222,134, 67, 34, 48,225,140, 13, 42,149, 10, 7, 14, 28, 0,207,243,151, 18, 58,190, 33, 38, 38,230,223, +203,150, 45,107,212,165, 75, 23,174,172,172, 12, 45, 90,180,192,111,191,253,214,125,253,250,245, 93,239,187,239,190,251, 8, 33, +119, 81, 74,215, 71,170,249,213, 87, 95,193, 96, 48, 40, 31,187,221, 94, 47, 99,225, 13,207,243,233, 91,182,108, 73, 50, 26,141, +112,185, 92,160,148,250, 28,192,254, 7,158, 36, 73,232,213,171,151, 61,148,166, 32, 8,233, 91,182,108, 73,210,233,116,117,180, + 92, 46, 23,212,106, 53, 56,206,221, 81,212,229,114,193,233,116, 34, 39, 39, 39,168, 38, 33,132,100,102,102,222, 41,155, 43,142, +227,176,100,201, 18,164,164,164, 32, 41, 41, 9, 6,131, 1, 58, 93,253, 61,176, 32, 8, 72, 72, 72,192, 67, 15, 61,132, 59,239, +188, 19,139, 22, 45,130, 40,138, 62,227,227,227,227,241,245,215, 95,195,100, 50,161, 89,179,102, 62,227,175, 84, 8, 16,255,205, +250,131, 74, 68,118,228,208,206, 66,255, 94, 25,115,228,255,156,123, 34, 42,185,167,165,146,203,117,238,219,141, 71, 38,135,211, +117, 56, 28,141, 55,110,220, 8,141, 70, 19, 81, 57, 92, 46, 23,186,119,239,222, 56,100, 89, 9, 25,210,161, 67,135,207, 31,122, +232, 33, 85,171, 86,173,136, 40,138, 16, 4, 1,130,224, 62, 69, 72,146,212,140, 82,218, 76,146,164, 62,167, 79,159,166,179,103, +207,126,149, 16, 50,156, 82,250,223,128,122, 78,115,167, 26,171, 52,132, 82,164, 36,247,167, 77,207,172, 33,168,177, 74, 67, 98, + 5,243, 1, 0,151,173,193, 34,132,152,116, 58,221, 11,159,126,250,169, 10, 0,250,247,239,255, 2, 33,228, 49, 74,233,249,104, + 45, 35, 54, 54, 22,177,177,177,232,208,161, 3, 70,140, 24, 17,119,221,117,215, 61,217,220,106, 29, 95, 2,216,130,205, 35,112, + 92,250,202,239,247, 39,201,255, 71,223,214, 69, 53,168, 79,171,211,238, 4, 23,255,169, 41, 36, 23, 61,190,102,195,161,144, 6, +140, 16,194,165,164,164,252,243,166,155,110,186, 99,238,220,185, 49, 0,240,193, 7, 31, 96,200,144, 33, 72, 73, 73,129, 78,167, +131, 74,165,130, 74,165,130, 40,138,202,119, 8, 61, 2,128, 79, 73, 73,121,245,230,155,111, 30, 57,103,206,156, 24, 0, 88,176, + 96, 1,134, 14, 29,138,132,132, 4,152, 76, 38,104, 52, 26,168,213,106,143, 22, 65,184,120, 93,160,114,222, 63,176, 47, 50,116, + 26,220, 50,253, 53,196,197,197,225,187, 39, 30,132,200,113,120,240,235,117, 48,153, 76, 97,207, 31,129, 52,183,111,223,142,211, +167, 79, 7,172, 59,207,243, 33,143, 55,239,186, 15, 25, 50,100,164,172,185, 96,193, 2, 12, 26, 52, 8, 9, 9, 9, 48, 26,141, + 74,221, 47,104, 7,239,200,239,173, 57,104,208,160,145,239,189,247,158,162,217,175, 95, 63,196,199,199, 35, 38, 38, 6, 42,149, + 74, 89,159,245,217, 70,151,179,230,213,130,143,193,242,172, 40, 46, 41, 41,233,142,194,194, 66,101,203,139,162, 8,141, 70,163, +236, 28,222, 23,238, 72, 32,132,144,172,172,172,123,190,252,242, 75,101, 38,155,223, 65,165,213,106,235,165,233,167,223,255,198, + 27,111,252,164,176,176, 80,171, 82,169, 96, 54,155, 81, 92, 92,140,216,216, 88,168,213,106, 12, 27, 54,140,207,201,201, 73,184, +241,198, 27, 63, 35,132,140,166,148,174, 9,167, 73, 41,133,209,104,244, 49, 88,151, 18,185, 39,132, 64,167,211, 97,249,242,229, + 16, 4,193,103, 39, 11,116, 18, 75, 78, 78, 14, 27,149, 0, 0,141, 70,131, 77,155, 54,129,227, 56,136,162,168,124,190,250,234, + 43, 60,241,196, 19, 56,125,250,180, 50, 46, 38, 38,108,235, 38,209,235,245, 58,217, 92, 1,238,109,175,211,233, 32,138, 34, 17, + 4,129,240, 60, 15, 0,148,144,200, 19, 66, 5, 65, 64, 73, 73, 9,254,250,215,191, 98,254,252,249,120,233,165,151, 48,122,244, +104,159,241,231,207,159, 71,163, 70,141, 16, 23, 23, 7,141, 70,115,209,251,194,229,132,228,183,118,166,189,244,170,222,157,224, + 33, 1, 18, 64, 65,149,223,165,165, 7,240,250, 63,223,226, 35,213,214,104, 52,216,184,113, 35,188,155, 93, 57,142,131, 74,165, +242, 25, 38, 8, 2, 82, 83, 83, 35,209,155,186,108,217, 50,245,146, 37, 75,240,197, 23, 95,192,229,114, 65, 20, 69,104,181, 90, +152, 76, 38,196,199,199, 43,159,102,205,154,145, 15, 63,252, 80,213,169, 83,167,169, 0, 2, 27, 44,142,198, 74, 30,115, 5, 0, + 73,253,105,211,131, 95,242,141,226, 98,220, 81,156,203, 17, 66,136, 0, 32,239,237,183,223, 78,232,218,181, 43, 0,224,237,183, +223, 78, 24, 55,110, 92, 30, 33,228,121, 74,233, 69, 55,177,242,192, 39,132,144, 81, 0,160,211,233,180, 3, 6, 12, 80,191,243, +206, 59,104,211,166, 13, 30,121,228,145,248,215, 95,125,245, 22, 0, 75,131,205, 47,249, 29,106,249,175,189, 21,231,125, 67,117, +225, 3,252,118,182, 4, 47,188,240,114,184,186, 18, 0, 92,147, 38, 77,238,123,255,253,247,149,116,136,248,248,120,229, 28,228, +127,142,146,191, 67,156,151, 8,220, 81,161,113,115,231,206, 85, 52, 19, 19, 19,125, 52, 68, 81, 68,201,158,159,177,242,131, 2, + 24, 18, 82, 49,230,137,252,122,151, 51, 77,163, 70,186, 78,141, 78,157, 58, 65,167,211, 97,187,232,190,148,201,230, 42, 84, 57, +131,105,242, 60,175,148,145, 82, 10,139,197,130,170,170, 42,184, 92, 46,216,108, 54,116,237,218, 53,162,186,191,247,222,123,138, +102,227,198,141,149,243,187,247,121, 94,254,200, 55, 48,161, 52,155, 52,105, 50,238, 95,255,250,151,162,153,144,144,160,104, 9, +130, 0,149, 74,133, 5, 11, 22,248,215,241,146, 53,235,187,221,253, 53, 15, 31, 62,140, 25, 51,102, 64,165, 82,201, 41, 64, 74, +196, 50, 45, 45, 13,179,103,207,142,232, 26,119, 37, 19,104,235,146,178,178, 50,105,239,222,189,220,182,109,219,160, 82,169,144, +152,152,136,238,221,187, 3, 0,236,118, 59, 4, 65,128, 78,167, 35,153,153,153,167,229,149, 38,127,123,183,165,123,245, 48,224, +126,251,237, 55,105,213,170, 85,220,162, 17,131, 96,163,192,117, 47,228, 99,208,208,161,248, 38, 77, 13, 30, 64,247,189,101, 80, +171,213, 66,106,106,170, 67,222, 8,178,174,119,110, 86,128, 94, 11, 49, 6,131,225,195, 21, 43, 86,104, 57,142, 67, 85, 85, 21, + 36, 73, 66,110,110, 46, 8, 33,216,181,107, 23,158,127,254,121,124,254,249,231, 88,182,108,153,174, 75,151, 46, 31, 18, 66,218, + 81, 74,171,100,141, 0,154, 0,220, 7,171, 78,167, 83, 12,150, 78,167, 35,109,218,180, 57, 45,183,159,251, 53,199,157, 40, 46, + 46,238, 26, 76, 19,112, 71, 18,134, 15, 31,174,228,156,201, 23, 64,239,131, 77,254, 93, 92, 92, 92,103,195, 4,210,148, 36, 9, + 61,123,246, 4, 0, 24, 12, 6, 24,141, 70,124,255,253,247,202,248, 46, 93,186,192,102,179,161,113,227,198,216,179,167,110, 43, + 68, 32,205, 83,167, 78, 97,225,194,133, 16, 69, 17, 9, 9, 9, 16, 69, 81,181,102,205,154,151, 12, 6, 67, 44,207,243,136,139, +139,195,208,161, 67,231,222,114,203, 45,114, 25, 92, 95,125,245,149, 16, 76,147,231,121,104,181, 90, 44, 88,176, 0, 51,102,204, +192,179,207, 62, 11,255,241, 22,139, 5, 9, 9, 9,104,212,168, 17, 26, 53,242,105,253, 10, 90,206, 75,165,161, 53, 41, 40,138, +119,124,131,221, 59,215,192, 69, 93,144, 92, 18,168, 68,225,146, 36,236, 88,253, 83,102,233,161,147,105, 20, 84,201, 54,114, 85, +215, 56,251, 52,214,180, 1,176,124,109,153,117, 86,184,114,242, 60, 15,187,221,142,111,190,249, 6, 7, 14, 28,192,170, 85,171, + 96, 54,155,209,184,113, 99,196,197,197, 33, 39, 39, 7,227,198,141, 11,104,176,252, 53, 93, 46,215,130, 19, 39, 78, 92,151,147, +147, 67, 42, 43, 43, 81, 86, 86,134,170,170, 42,216,237,118,216,237,118,101, 27, 26, 12, 6,164,164,164,192,108, 54, 83,171,213, +186, 32,152, 38,149, 72, 37, 71,112,234,224,114,161,113,203, 97, 78,221,233,239, 19,172,102,155,202,249,238,114,253,184,175,158, +105, 57,144,163, 28, 5,220, 85, 39, 4, 84,114,185,202,214,252,112,232,161,112,229,140, 6, 33, 52,199, 79,156, 56,177,157,119, +243,244,152, 49, 99, 80, 92, 92,220,110,230,204,153,227, 1,188, 93, 95, 77, 29,144, 6, 0, 78,224,107,184, 63,152,106, 54,147, +151,150, 47, 31, 14,224,238,101,203,150, 97,244,232,209,248,231,171,175,118,128,159,193,242, 89,159,148,162,100,255,122, 28,222, +191, 17,146, 36,121, 62, 52,232,239, 96,119, 62,126,229, 36,213,213,213,150, 45, 91,182, 24, 63,250,232, 35,196,199,199,163,121, +243,230,136,137,137,129, 70,163,169, 99, 6,228, 79,184,186,215,214,214, 90,246,238,221,107,252,228,147, 79,144,144,144,128,102, +205,154,193, 96, 48, 64,171,213, 42, 55,232, 91, 86, 45,195,248,187,134,161,252,232, 62,188,245,216,157, 17,151,243,254, 1,125, +145,174, 83, 99,216,180,124,180,107,215, 14, 75,239,188, 21, 28, 1, 30,248,238, 71,136,162,136,143,134,220, 0,141, 70,141, 7, +190,219, 26,177,230,214,173, 91, 65, 41, 69,179,102,205, 96, 54,155,149, 40,155, 74,165,194,154, 53,107,112,235,173,183, 98,209, +162, 69,184,254,250,235,195,214,189,186,186,218,178,107,215, 46,227,199, 31,127,140,248,248,120, 92,115,205, 53,208,235,245,138, +158,183,137,201,200,200, 64, 69, 69, 5, 90,182,108, 25, 82,179,166,166,198,178,125,251,118,227,162, 69,139, 16, 31, 31,143,244, +244,116,232,245,122,159, 72,216,212,169, 83,125, 52, 58,117,234,116,201,154,245,221,238,254,154, 35, 70,140, 64,203,150, 45, 97, + 50,153,148,117,224,111,180,235, 73, 55,248,166, 57,216, 0,168,189,190,207, 2,216, 26, 96, 58,121,184, 8,160,179,103,156, 11, + 64, 21,128,184, 0,122,193,116,202,224,142, 23, 39,250, 77,239,191, 28, 5, 1, 0, 8, 33,242,241,216, 7,192, 6, 0,104,219, +182, 45,202,203,203,161,209,104,208,189,123,119,156, 61,123, 86, 9,243, 73,146,132,219,111,191,157,127,230,153,103,146, 56,142, +131,195,225, 0,165, 20, 60,207, 67,190,243,243, 67,226, 56, 14, 57, 57, 57,216,237, 89,167,131,134, 14, 69,122,122, 58,228, 36, + 14,141, 70,131,209,163, 71,147, 39,158,120, 66,144,163, 23,148, 82,152,205,102,116,234,212, 41,104,187,148, 32, 8,143,125,246, +217,103,177,106,181, 90, 49, 87,114, 89,246,238,221,139,215, 95,127, 29,119,223,125, 55,142, 30, 61,138,212,212, 84, 60,249,228, +147,198,130,130,130,199, 0, 76, 11,166, 41, 99, 52, 26,125, 12,214, 93,119,221, 37,228,228,228, 36,233,245,122, 37,186,229, 49, +149,200,201,201, 9,105,197, 61,249, 79,248,250,235,175, 3,222, 29,250,223, 49, 16,119,175,139,136, 52,183,108,217,162,152, 51, + 57,122, 33,143, 47, 46, 46, 86, 34, 88, 30, 35, 24, 74,147, 2, 80, 46,162,158,200,149,106,203,150, 45,211, 83, 83, 83,141,119, +221,117, 23,170,170,170,208,164, 73, 19, 12, 28, 56, 16,146, 36,193,110,183, 99,194,132, 9, 33, 35, 47,162, 40,226,167,159,126, + 66, 65, 65, 1,158,121,230, 25,204,157, 59, 23,253,251,247, 87,198,203,119,113,137,137,137, 48,153,254,240, 62, 14,209, 67, 2, +236, 78, 7,106,107,205,160,212, 5,151, 68, 33,185, 36,236, 90,187, 35,243,208,206, 3, 89,133,139, 23,138, 0, 96, 89,183,204, +123,174,212, 17,115,254,211,186, 79,188,106,203,218,223,236, 91, 66,201,243, 60,143, 7, 31,124, 16,147, 39, 79,198, 29,119,220, +129,213,171, 87,227,185,231,158,195,125,247,221,167,152,119,121, 95, 8,135,195,225,120,127,204,152, 49,255, 88,186,116,105,155, +199, 31,127,156, 3,220,199,164, 94,175, 7, 33, 4, 22,139, 69,249,236,221,187, 87,250,251,223,255,254,171,205,102,123, 63,152, + 30, 21,116,191, 24, 52,181,255, 45, 45,231,174, 61,245, 93, 60, 71, 4,147, 61,177, 89,159,202,155, 51,251,211,254,119, 54,111, + 68, 37,119,132,143,130,194,106,169,193,179,207, 60, 21,113,244,174, 33, 32,132, 12, 25, 48, 96,192,192,233,211,167,215, 25, 55, +125,250,116,236,217,179,103, 32, 33,164, 36, 88,147,104, 32,116, 64,122,108, 74,202, 76, 0,208,157, 58, 53,209, 12, 28, 7,128, +151,128, 65, 46,224,214,213,171, 87, 3, 0,154, 54,109, 10, 9,104, 79,128,127,243,192, 39, 78, 96,165,191, 22,165, 20,118,135, + 19,102,179, 5, 18,117,239, 71, 18,149, 32,185,220, 81, 80,127,147, 21,174,221,141, 82, 74, 9, 33, 18,207,243,232,208,161, 3, + 6, 13, 26, 4,181, 90, 13,163,209,168,156,231,253,207, 73, 17, 92, 20, 41, 0,137, 16,130,140,140, 12, 12, 28, 56, 16, 42,149, + 10, 6,131, 1, 38,147, 73, 49, 88, 60,207,163, 67, 78, 95,124,178,232, 53,140, 29,148,133,187,110, 72,198,103,187,202, 34, 42, +103, 51,189, 26,205,116, 26,180,109,219, 22, 49, 49, 49, 32, 4,224,121, 78, 41,167, 65,175,133, 74,105,126,140,172,238,167, 78, +157, 66, 73, 73, 9, 74, 74, 74,192,113, 28,114,115,115,161, 86,171, 33, 8, 2,246,239,223,143,105,211,166,193,102,179, 69, 84, +119,142,227,112,237,181,215,162,111,223,190, 80,171,213,144,175, 21,222, 77,131,162, 40,162,170,170, 10,173, 90,181,194,242,229, +203,209,171, 87,175,176,154,237,218,181, 67,159, 62,125,160, 82,169,160,211,233,148, 84, 29,181, 87, 93,171,171,171,149,245,112, +221,117, 65,115,218, 2,106,174,250,233, 40,230,173,250, 30, 86,155,132,243,181, 14,159, 25, 82, 27,155,176,225,227,103, 34,170, +187,172,249,254,251,239,163,162,162, 66, 57, 15,113, 28,167,124, 8, 33, 72, 79, 79,199,123,239,189, 87, 71,200,219,139, 80, 74, +215,249,141, 78, 36,132, 20, 42, 11,165,116, 40, 33,164,208,251, 59,216,116,158,159, 55,228,229,229,101, 23, 20, 20,204,232,209, +163,199, 39,155, 54,109, 90, 28, 76, 47,152, 78, 94, 94, 94, 86, 65, 65,193, 12,239,233, 3, 44, 71,193, 59,234, 64, 60,149,227, +228,200, 76, 90, 90,154,210,238,108, 52, 26,161, 82,169,148, 25,157, 78, 39, 62,252,240, 67, 36, 37, 37, 33, 57, 57, 89,249, 14, + 4,165,148, 54,109,218, 20,148, 82, 60,114,214,157, 2,244,117, 19, 21, 74, 0,220,124,150, 42,122, 46,151, 11, 75,151, 46, 69, + 76, 76,140,114,160, 27,141,198,144,205, 69,106,181,186, 79,183,110,221, 56,171,213,170,132,201, 57,142,195,222,189,123, 81, 80, + 80,128,209,163, 71,163,117,235,214,112,185, 92,168,169,169,193,141, 55,222, 40,190,245,214, 91,125, 16,161,193,210,235,245, 74, +222,145,213,106,197,183,223,126,139,184,184, 56, 52,106,212, 8, 9, 9, 9,136,143,143,135, 70,163,241,222, 49,130, 66, 41,197, +240,225,195,125, 34, 87,222, 81, 43,239, 19,154,220,236, 23,137,230,245,215, 95,175, 68,175,140, 70, 35, 86,174,188,112,126,238, +222,189, 59, 40,165, 72, 76, 76,196,230, 50,112, 75, 22, 0, 0, 32, 0, 73, 68, 65, 84,205,155,195,105,209, 46, 93,186, 64,146, + 36, 36, 37, 37, 65, 20, 69,178,102,205,154,151, 60,230,138,136,162,136,159,127,254, 25,197,197,197, 72, 76, 76, 84,238, 74,195, + 81, 83, 83, 83,250,214, 91,111,185,222,121,231, 29, 0, 64,191,126,253, 80, 89, 89,121,198,107,124,249,216,177, 99,125,234,123, +238,220,185,242,176,194,151, 57, 18, 0,167,221,137, 90,179, 5,213, 85, 53,112, 72, 46, 56,156, 46,156, 57,113, 54,238,153, 39, + 38,138,255,156, 48, 14, 0,240,196,172,183, 81,245,222,133, 19,216, 23, 79,140, 74, 26,254,250,146, 73, 0,134,133,210,175,173, +173,133,197, 98, 65,211,166, 77,177,117,235, 86, 84, 85, 85,161,127,255,254, 62,209,223, 48, 77, 16, 10,148, 82, 27, 33, 36,119, +232,208,161, 91,223,120,227,141,150,237,219,183, 39, 53, 53, 53,168,169,169, 65,109,109, 45,228,223, 69, 69, 69,116,241,226,197, +135,106,107,107,115, 40,165, 65,115,134,212, 93,171, 14,216,182,199, 44,253,225, 23,213,208,255, 27,113,107,236,241, 19,199,156, +229,102,109,117,165,249, 87,171,139,238, 1,117, 81,184, 40, 5,117, 73,112, 81, 41,104,196,229,247,128, 16,146,158,153,153,249, +247, 69,139, 22, 5, 52,164, 60,207, 99,209,162, 69,232,217,179,231,223, 9, 33,123, 67, 37,247,203, 52, 7,212, 78, 81,124,230, + 63,255,249,143, 10, 0,250,246,237,251, 76,115,135,227,137, 18,192,214,190, 99,199,145,155, 54,109,138,213,235,221,253,132, 98, + 99, 99, 65, 41,229,107,107,107, 99,115,114,114, 70, 34,144,193,146, 40, 28, 14, 39,204, 22, 43, 42, 42,171,225,176, 57,224,148, +156,112, 57, 37, 56, 37,119,116,212,233,114, 65,114,186,224,148, 92,224, 5, 62,166,207,245, 77,171,221,177, 44, 82,177,238,199, +163,215, 4, 40,166,228,238,225, 5,164,164,164, 40, 77,194,222,185, 50,225,162, 24, 1,112,185,207,133, 84, 57, 55,254,178,182, + 16,103,246,108,128,138, 80, 72, 46, 7, 36,167, 29, 46,135, 29, 60, 36,236, 57,120, 2,237,155,132, 61,135, 40,229,188,233,133, +151,209,189,123,119,124, 54,106, 24, 8, 1, 30,248,118, 51, 84, 42, 21, 22,223,214, 31,106,173, 26,127, 91,245, 99,164,229,244, +169,251,246,237,219,241,200, 35,143,224,149, 87, 94,129, 78,167, 83,110, 78,246,237,219,135, 37, 75,150, 96,192,128, 1, 17,215, +157, 16,119, 83,171,188, 14,243,242,242,112,242,228, 73,204,156, 57, 19,217,217,217, 16, 69, 17, 21, 21, 21,200,201,201,193,233, +211,167, 35,210,164, 84, 66,124,124,188,146,174,227,159, 35, 6,160,222,219,200, 91,243,222,219, 82,241,229,198,197, 32, 32,248, +241,227,137, 62,215,163,119,151,252, 80,111,205,201,147, 39,251,148,179, 62,209, 43, 47, 47, 18, 48, 24, 16,200,200,132,153, 78, + 94,201,154,130,130,130, 25,254,243,135,211,243, 30,239, 55,191,205,207,148,213,217,152,117,206,190,148, 82,154,150,150, 6, 73, +146, 96, 52, 26,161, 86,187, 35, 96,254, 23, 82,131,193,224,227,200,195,181, 39,243, 60, 15, 74,169,178, 98,253, 79, 99, 60,207, + 99,243,230,205,117, 76,192,191,254,245,175,144,237,180, 78,167,179, 93, 76, 76, 12,170,170,170,148, 28, 41,181, 90,141, 73,147, + 38, 97,236,216,177,138,185, 82,171,213,152, 63,127, 62,186,118,237, 10,155,205,214, 46,168, 32, 0,149, 74, 85,219,177, 99, 71, +119, 14,178, 59,119,138,140, 30, 61,154,183,219,237,208,106,181, 62, 81, 39, 57, 55, 45,156, 25,146,163, 77,223,124,243, 77, 68, + 17,172, 72,115,144, 40,165,216,177, 99,135,143, 81,243,116, 53, 6, 0,236,220,185, 83,185,208, 70,218,222,237,114,185,160,211, +233,136, 74,165, 34, 6,131, 33,246,174,187,238, 82,116,229,109, 46,215, 59,146, 68,235, 95,126,249,229,198, 80,227,119,237,218, +117, 85, 62,142, 65,146, 36,216, 29, 14,152,205, 22, 84,213,212, 98,106,190,167, 69,109, 42,182, 0,216,146, 59,254, 17, 60, 56, +104, 64, 95,132,233,221, 23,140,248,248,120,124,254,249,231, 16, 69, 17,203,151, 47,135,201,100,194,173,183,222, 10,147,201,132, +103,158,121, 6,119,222,121,103,196, 6, 11, 0, 40,165,149,132,144,220,137, 19, 39,110,125,245,213, 87,155, 54,109,218, 20,118, +187, 29, 54,155, 13,118,187, 29, 7, 15, 30,196,226,197,139,143,213,214,214,230, 82, 74, 43,195,233,169,187, 86, 29, 40,124,188, +101,105,207, 17,183, 89,246,156, 90,133,211,167,206,194,233, 58, 14,167,203, 5,167,195,233, 54, 4,146, 4,167,221, 9,158,231, + 76, 55,246,104,182,198,157,240, 79,108,107, 55,151, 12,190,152,117,114,145,208,253,251,247,151, 39, 38, 38,202,119,144, 38,155, +205, 70, 0, 64,173, 86, 83, 0,114,130,123, 13,128,144, 29, 79,100,142, 1,227,255,249,202, 43,215,200,205,247,175,188,242,202, + 53, 79, 62,254,248,120, 0,111,238,217,181,107,225,189,247,222, 59,241,211, 79, 63,245,153,231,222,123,239,197,158, 93,187, 22, + 6, 44, 32, 0,135,195, 1,179,217,138,178,178,223,112,255, 3, 47, 40,195, 1,170, 36,186,123,158,234, 8, 0, 90, 0, 40, 59, +253, 63, 76,120,228,201,128, 7, 41,165,148,182,111,223, 94, 62,222, 33,138, 98,157, 36,100,239,243,123,184,243,135, 39, 50,228, +147, 98,161, 82,169,112, 96, 83, 33, 38,142, 31, 9,184,156,128,189, 6,176,215,130,218,107, 65,109, 53, 32,106, 29,168,195, 18, + 86, 87, 46,167,156,182, 33,240, 28, 52,234, 11,231, 77,189, 94, 7,181, 86, 29, 81, 57, 3,213,253,200,145, 35,120,232,161,135, + 96,179,217, 48, 98,196, 8, 88, 44, 22, 88,173, 86, 88, 44, 22,100,100,100,192,108, 54,135,213,147,235, 46, 73,146, 18, 5,156, + 56,113, 34,178,179,179, 49,109,218, 52, 60,253,244,211,200,200,200,192,248,241,227,241,201, 39,159, 32, 43, 43, 11,181,181,181, + 97, 53, 1, 40,215, 99, 65, 16,148,115,176,247,182, 2, 80,175,109, 20, 72,211,253, 56, 48,212,217,238,143,222,213,175,222,154, + 51,102,204, 64, 89, 89, 89,157,200,149,119, 4,107,206,156, 57, 33,117,131,225, 23,101,138,100,186,237,158, 65,230, 73,147, 38, + 61, 75, 8, 41,156, 52,105,210,179,249,249,249,197,145,232, 5, 25,255,149,231,251,102,175, 97,219,253,166, 9,252,152, 6,142, +227, 64, 41, 85,194,154,128,123,197,201,227, 0, 64,175,215,163,176,176, 16, 75,151, 94, 72, 27,144,167, 9,166, 41, 73, 18,254, +155,232,222, 16, 67, 60,145, 43,249,255,224, 51, 18,134, 14, 29,138,140,140, 12,159,232,149, 78,167, 11,105, 54, 36, 73,194,145, + 35, 71, 80, 84, 84,132, 30, 61,122,160,178,178, 18, 2,128, 39,118,237, 66,251,187,238,130,213, 99,252,212,106, 53,254,254,247, +191, 7,213,241,102,235,214,173, 62, 73, 64,237,219,183, 63,158,147,147,147,182,121,243,102, 37,162,165,209,104,160,213,106, 21, +147, 17,225, 65,141,145, 35, 71,250,152, 33,127,131, 37, 31, 60, 95,127,253,117, 68, 77,132,148, 82,244,238,221, 91,137, 94,197, +196,196,224,139, 47,190, 80,166,185,225,134, 27, 64, 8, 65, 82, 82, 18, 86,174, 92, 25, 86, 19,112,175, 83,121,219,243, 60,143, +154,154, 26,108,223,190, 29,106,181, 90,201,207,208,233,116, 74,253, 25, 65,160, 18,108, 14, 7,106,205, 22, 84, 85,185, 79,164, + 7,138, 62,243,153,196,110,189,248,206,105,114, 36,244,252,249,243,248,246,219,111,241,249,231,159, 35, 59, 59,219,167,121, 48, +210, 38, 66,165,200,148,158, 37,132,244,124,250,233,167,127,124,233,165,151,154, 36, 36, 36,192,110,183,227,200,145, 35,248,240, +195, 15, 79,214,214,214,246,164,148,158,173,135, 32,156, 14, 39, 44,181,102, 84, 86,213, 96,202,244,249,193,166,228, 0,192,110, +171,194,208,193,189, 47,250,113, 40, 23, 3,165,244, 4,128,251,228,255,132,144,133, 0,228,100,252,243,148,210,177,245,209, 19, +129, 62, 35, 70,142,236, 59,113,226, 68,101,216,196,137, 19,241,227,143, 63,246, 21,151, 46, 45,114, 0,107,249,165, 75, 59,204, +156, 57, 83,153,102,230,204,153,248,124,233,210,239, 92,192,218, 32,133,116, 71,176,204, 22, 84,215,152, 97,138, 75,197,137,195, +235,194,150, 69,197, 91, 65, 67,156,151,229,115, 72,176,188,155, 72,205,213,133, 98, 82,218,177, 99, 71, 0, 80,242,142, 58,244, + 29,137, 55,222,252, 23, 52, 28,197,240,190,237,145,168,147, 64,244,241, 80,245,158, 4, 18,215,204, 61,227,148,206, 33,117,229, +114,174,123,238, 9, 28, 52,104,241,247,213, 27, 33,138, 34, 62, 31, 53, 4, 42,181, 10,119,127,181,222,221,185,103,220,112,168, + 52,106, 12,124,119, 73,216,178,122,215,253,192,129, 3,216,184,113, 35,218,182,109,139,255,253,239,127, 74,142,173,124,221,138, +176, 53,129,202,207,185,146,207,227,167, 78,157,194,208,161, 67,161, 82,169, 48,127,254,124,172, 91,183, 14, 79, 63,253, 52,238, +189,247, 94,220,120,227,141, 1,243, 98,253, 53,179,178,178,124,182, 81,176,252,168,250,108,163, 64,154, 50, 23,187,221,189, 53, +229,228,246, 64,102,253, 82, 19,219,189,162, 69,129,154,204,110,246,155, 14,112,231, 82,109, 5, 96,205,207,207, 47,206,207,207, + 31, 74, 8, 41,204,207,207, 31,234, 55, 93, 56, 29,255,241, 97,207,131,138,193,242,132,228,250, 0, 23, 76,148, 58, 68, 91,182, +193, 96,192,125,247,221,135,103,158,121, 70, 73,100, 12,133,236, 92, 67, 81, 88, 88, 88,103,216,242,229,203,195, 53, 17,238,141, +141,141,205,238,219,183, 47, 42, 43, 43,113,244,232, 81, 24,141, 70,180,127,253,117,236,122,240, 65,116,158,251,255,236,157,119, +120, 20, 85,219,198,239, 51,219, 55,217, 52, 72,129, 20, 18, 32,148, 64, 40, 73, 64, 68,233, 32, 2,210,139, 5,245,179, 80, 45, +168,175, 84, 11, 77, 5, 4, 65, 65, 4, 4, 84, 20, 95, 64, 69,170, 20, 1,233, 6,144,208, 4, 12, 69, 32,164, 17,146,144,190, +101,118,202,249,254, 72, 54,110,202,102,119, 67,144,242,158,223,117,205,181, 59, 51,103,238, 57,103,219,220,251,156,115,158, 89, + 6,174, 91, 55, 0,197, 95,248, 51,103,206, 64,171,213,254, 85,101, 69, 42,193, 96, 48,192,207,207, 15, 58,157, 14, 94, 94, 94, +240,242,242,130,167,167,103,169,209,114,214, 69,104,251, 50,255,242,203, 47, 85, 70,174,236, 67,190,174,152, 33, 74, 41,226,227, +227, 43, 68,176,108,231,180,237,179, 69, 50, 92,209, 4, 0,157, 78, 71,181, 90, 45, 20, 10, 5, 60, 60, 60, 74,195,253, 58,157, +174,116,113, 53,130,229, 44,145,104, 68, 68, 68,153, 68,164, 42,149,170, 76, 34,210,251,149,127,186, 8, 45, 40, 42, 44,170,113, +125,158,231,161, 84, 42,241,243,207, 63,163, 93,187,118,165,230,202,102,172,236,223,119,119,160,148,166, 16, 66,186, 44, 90,180, +232,232,130, 5, 11,252, 10, 11, 11,177,106,213,170,188,194,194,194, 46,148,210, 20,183,180, 0, 8, 86, 17, 70,139, 5,133, 5, +197,175,193,223,103,215, 59, 57,232,254, 78,248,220,172,101,203,231,190,249,230,155, 10,219,191,249,230, 27, 92,186,116,233, 57, +156, 57,179, 47, 12, 88, 54,105,210,164,200,184,184,184, 48, 0,152, 52,105, 82,114, 24,176,204,145, 38,165,255,116, 17, 22,150, +152,117,115, 81,229,227,150,220, 69,150,229, 10,127,248,110,247,130, 72, 8, 41, 53, 25,143, 61,249, 50,210,174, 36, 34,202, 35, + 11,129,190,158,144, 11,210,160,238, 62, 29,103,110,121,224,179,101, 59,221,170,167,135, 70, 13,157,254,159,238, 38,157, 94, 7, +109, 73,175, 2, 33, 4, 58, 15, 61, 84, 26,215,253,185,173,237,137,137,137,240,240,240,128, 36, 73, 21,174, 55,238,206,104,166, +148,150, 94, 59, 23, 44, 88,128, 9, 19, 38, 96,213,170, 85, 56,115,230, 12, 90,183,110,141, 30, 61,122,224,230,205,155, 56,125, +250, 52, 44, 22,139,203,245,180,191, 94,156, 63,127, 30,187,119,239,198,133, 11, 23,144,156,156,236, 86,253, 28,105,218,176,173, +255,188,251, 36,134, 60, 22, 91,133,130, 99,205,233,211,167,227,230,205,155, 21, 34, 87,246,195,143, 28, 69,176,236,189, 72, 21, + 36,160,108,244, 8,182,241, 80, 54, 67, 84,126, 29,128,159,109,219,228,201,147,223,113,245, 56,251,117, 91, 4,172,156,174, 67, +148, 37, 5,203,124,131,108, 93, 76,182, 23,221, 62, 50,101,123,238,225,225, 81, 26,101, 10, 15, 15,175, 50,122, 85, 82, 73, 40, + 20, 10,116,188, 82, 0,141, 70, 83,218,157,215,251,230, 63,199,189,248,226,139,104,208,160, 65,153, 49, 88,246,111, 74,101, 88, + 44,150,125,251,246,237,139,233,223,191,191,226,252,249,243, 80, 42,149,144,101, 25,150,135, 31, 70,235,101,203,240,231, 91,111, +161,211,213,171,176, 8, 2,116, 58, 29,118,236,216, 97, 53, 26,141,149,255, 75,116, 0,199,113,196,102,176,180, 90, 45,188,188, +188,224,237,237, 93, 26,205,113,231, 71,200,209, 63, 68,251,197,157, 47,180,109, 64,191,253,133,213,246,254,153, 76,166, 50,134, +203, 85,236,187, 12,108,166,200,199,199,167, 76,183,168, 45,138,231,138,193,114,150, 72, 84,171,213,122, 31, 56,112, 32,210,219, +219, 27,148, 82,100,101,101,225,233,167,159,190, 88,133,228,125, 1, 5, 45, 30,228,110, 50,163,208, 84,117, 55, 72,117,248,239, +127,255,139,203,151, 47,195,106,181, 98,246,236,217, 21,140, 85,117, 34, 88, 54, 40,165,151, 99, 99, 99,229, 94,189,122, 33, 62, + 62, 30, 90,173, 86,160,148,186,157,191,138,202, 50,172,130, 8,179,201,130,194,162,154, 55,153,247, 34,231,206,156,249,201,211, +211,243,105, 0,134,220,220, 92,133,143,143, 15, 60, 60, 60, 96, 50,153,242, 20, 37, 51, 5,175, 1,188, 94, 16, 62,126,242,201, + 39, 63, 5, 0,165, 32,124, 92, 85, 30,172, 82,131, 85,195,175,163,237,119,203, 81,244,170,186,230,138, 16, 82, 60, 61,159,227, +176,106,246, 4, 68,121,100, 34,182,190, 39,204, 55, 47, 67,235,237, 15,226, 27,129,207,150,237,196,249,107,183,220,170,231, 51, +171,215, 35, 44, 44, 12, 91,255,111, 0,180, 90, 45,158, 94,191,187,120,144,246,152,167,160,214,105,209,125,241,127,171,213,118, +163,209,232, 48, 82,229,106, 4,203, 94,211,102, 0, 99, 99, 99,209,168, 81, 35,236,219,183, 15,177,177,177,184,116,233, 18, 46, + 93,186,132,107,215,174,225,204,153, 51,200,201,201,113,171,158, 42,149, 10,235,214,173, 67,102,102, 38,212,106, 53,242,243,243, +113,245,234, 85,135,227,159, 93,213,180, 55, 88, 77,159,152, 14, 0, 8, 14,240,113,203, 96,217,107,206,155, 55,175,130, 89,119, +177,151,167,170, 66, 89,229,198, 58,217,214,249,114,102,167,252,122,249,242, 0,112, 19,128,194,201,113,229,215,179,102,207,158, +189,207, 22,249, 42,209, 85, 80, 7,227,175, 0, 7, 93,132, 42,149,202,212,180,105, 83,189,125,255, 41,199,113,240,242,242, 34, +227,199,143, 87, 16, 66, 96, 48, 24,224,227,227,131,198,141, 27,195,106,117, 62, 44, 65,173, 86,155, 30,122,232, 33,189,125,232, +149, 16, 2, 79, 79, 79,197,196,137, 19,201,202,149, 43, 43, 61,110,243,230,205, 85,126,184, 69, 81,252,244,249,231,159, 31,145, +146,146,226, 23, 20, 20,132,244,244,116,168,213,106, 80, 74, 65,186,118, 69,199, 43, 87, 96, 45, 49, 12,137,137,137, 88,177, 98, + 69,145,213,106,253,212,105,133,203, 97, 48, 24, 80,187,118,109,104,181,218, 50,179, 98,236, 66,171, 46, 69,176,106,210, 92,217, + 52,237, 47,172,182,231, 99,198,140, 41, 93,119,231, 71, 82,173, 86,211, 39,158,120,194,118, 0,245,245,245,133,191,191, 63, 50, + 50, 50, 74,191, 40,182,200,157,171, 6,203, 89, 34, 81,149, 74, 5,171,213, 90,218,157,185,120,241,226,106, 27,131,123, 9, 42, +202,196, 96, 8, 64,112,112, 19, 4, 4,154, 33,203, 82,141,105,139,162,136,177, 99,199,150,201,121, 5,252,147, 45,217,118, 81, + 16, 4,161, 76,248,223,173,250,215, 64, 36, 73,166,128, 32,150, 68,241,140, 14,253,195, 61, 75,120,120,184,119, 73,151, 97,121, +214, 82, 74, 43, 12, 70, 7,254, 73,201,160, 0, 62,188,126,253,122, 11, 31, 31, 31,244,236,217, 19, 91, 54,110,220,252, 62, 80, + 26,178, 49, 1, 41,250, 27, 55,222, 44,121,158, 90, 85, 61, 40, 69,105, 23, 97,145,177,166,205, 58,169, 16,189,186,221,174, 28, +142, 43,254, 99,182,225,203,143, 17,165,207, 64,235,122, 90, 28, 62,114, 26,237,194, 40,168,165,122,159, 71,160,248,186,163, 82, +169,160,243,240,128, 86,251,207,152, 43,173,135, 30,106, 77,117,134, 43,252, 19, 72,176,253,246,222,110, 4,139, 16,174,204,235, + 56, 98,196, 8, 76,154, 52, 9, 61,123,246,196,165, 75,151,112,224,192, 1, 92,188,120, 17,227,198,141, 67,116,116, 52, 30,127, +252,113,151,235,169, 82,169,176, 97,195, 6,228,229,229,129, 82,138,204,204, 76,152,205,102, 76,157,234, 52, 63,113,149,154,246, +191, 17, 87,118,205, 2, 0,172,223,117,162,218,154, 83,166, 76, 41,205,193,104,187,230, 87, 21,181,114,145, 99, 78,214,221, 61, +254,142, 83,169,193,186,112,225, 66,165,115,229,155, 53,107,150,209,189,123,247,192, 11, 23, 46,192, 96, 48,160,113,227,198,176, + 88, 44, 14,187, 33,136,221,221,182,207,158, 61, 91,169,102,195,134, 13,173,143, 61,246,152,170, 78,157, 58,101, 34, 87,182, 25, + 54, 37, 58,149,106, 2, 0,165,180,128, 16, 50,234,209, 71, 31,253,110,251,246,237,250,198,141, 27, 35, 47,175,120,252,237,170, + 85,171,240,218,107,175, 65,175,215,227,194,133, 11, 24, 48, 96,128,209,104, 52,142,162,118, 57,176, 42,211,172,164, 29, 80,171, +213,165,221,100,182,174, 50, 77, 21,161,232,202, 52, 9, 33, 88,180,104, 81,165,185,160,202,179,108,217, 50,160,220, 44, 10, 71, +245,252,228,147, 79,106, 76,243,200,145, 35,101,238, 49,216,175, 95,191, 47, 31,127,252,113, 36, 39, 39,151,233, 22,172,202, 96, +149,215,116,150, 72, 84,161, 80, 32, 40, 40, 8, 31,124,240, 1,252,253,253, 81,167, 78,157, 10, 6,203,217,123, 84, 29,238,180, + 38,229,104,194,194, 5,211, 59,124,249,213,122,149, 86,195, 33,254,192,122,228,231,220, 40, 83,222, 98,253,103, 74,180, 38,182, + 59,248, 19,123, 92,170,167,197, 98,193,220,185,115, 49,125,250,116, 76,159, 62,189,202, 58, 57,152, 14,237,180,237,246, 6,203, + 21,179, 85,153,166, 44, 75, 68,231,225, 7, 15,207, 96, 68, 71,251, 65,118, 33, 87,167,125, 44,252, 46,189,239,198,228,228,100, +159,176,176, 48, 92,188,120,145,224,159,241, 88,165,104, 52,154,167, 97, 55,219,175,210,239, 59,112,102,205,154, 53, 45, 90,182, +108,137,197,139, 23, 3,192,255,205,253,245,215,167,166,155,138,195,153, 37, 41, 25,118,184, 82, 79,137, 74, 68,231,225, 11,189, +161,228,117,148, 93,207,121,106,255,206,149,175,167,237,226,119,155,127,244, 42,104,218,142,255, 59,254, 23, 60,209, 59, 20,191, + 31, 61,131, 61, 41,158, 8,211,166,161,174, 49, 19,114,230, 95,120,115,104, 44, 62,251,169,248, 34,126,230,184,115, 77, 66, 8, + 14,141, 31, 5,131, 78,139, 33,107,182, 65,165, 82, 97,223, 91, 47, 64,173, 86,163,243,130,226, 46,217, 63,231, 78,129, 82,171, + 65,212,184,233, 46,213,179,124, 79,141,109,204,149, 13,103, 99,176,170,106,123, 97, 97, 33,114,114,114,240,221,119,223,225,165, +151, 94,194,205,155, 55,113,245,234, 85, 92,184,112, 1,107,215,174, 45,115,141,115,181,158, 42,149, 10,147, 39, 79,198,219,111, +191, 13,142,227,208,162, 69, 11, 76,159, 62, 29,237,219, 87,125,203, 25, 87,222,247,242, 56,139, 94, 85,165,185,112,225, 66,183, + 39,108, 61,136,184, 53, 64,195, 22,201,242,247,247,135,167,167, 39, 0,148,185,192, 58,235, 38,116,164, 41,138, 34,244,122, 61, +244,122,125,153,180, 8,253,251,247,119, 26,193, 2, 0, 74,233, 14, 66,200,240,230,205,155,127, 61,125,250,116,207, 46, 93,186, +168,130,131,131, 17, 23, 23,135, 11, 23, 46,224,151, 95,126,177, 46, 89,178,196,104, 52, 26, 95,162,148,238,114,187,146, 0,177, + 13,252,182,207,104,239, 14,146, 36, 37, 95,189,122,181,238, 39,159,124,162, 32,132,224,211, 79, 63, 45,147,160,181,124, 27,143, + 28, 57, 34, 58,235,146, 17, 69, 49,249,234,213,171,117,231,207,159, 95, 70,211,182,148, 55, 41,174,104, 58,194,214,230,242,175, +129, 43, 95, 30,103,137, 68,149, 74, 37, 18, 19, 19, 49,109,218, 52, 16, 66,202, 76,156,184,159, 57,124, 44,109,229, 35,109,130, +253,158, 30,218,173, 37, 1, 7,190,146, 72,175, 34, 59, 23, 64,177,185, 26, 52,127, 29, 54,188, 93, 49,233, 98,121,180, 90,237, +213,253,251,247,215,155, 53,107,150, 66,161, 80, 96,222,188,121,101, 62, 75,229,223,247,223,126,251, 77,210,235,245,215,171,219, + 14,171,213,234,116, 22,149, 67, 56,238,240,162,121,211,122,126,249,205, 22, 21, 33, 60,226,247,175, 71, 94,110,229, 83,211, 53, + 42, 37, 86,175,217, 44, 42, 21, 92,245, 6,149,212, 28, 95,246,232,209, 99,234,238,221,187,149, 97, 97,149,101, 55,112,141, 80, + 96,203,162, 69,139,122, 63,255,252,243,181,154, 53,107,102,155,124,162, 41, 89, 64,138, 51,187, 59, 52, 88,246, 80, 96,211,103, +159, 76,251,191,229,223,108,209,112,196,138,248, 3,235,145, 87,206,172,151, 71,173, 86,225,251, 53,155,172, 74,165, 34,177,170, +114,182, 60,121,119,226,130, 24,243,196, 75,248, 98,219, 10, 4,182,236,141, 97,253, 58,224,208,226,255,195,147,205, 76,176,254, +240, 12, 90, 12, 91,141, 85, 83,138,163, 55,173,127,156,226, 84,139,227, 56,120, 27,254, 73, 88,201,113, 28,180, 58, 61, 84,154, +127,162, 47, 26, 15, 15, 40,220,136,216,218,218,110,123,238,168,140, 59, 40, 20, 10, 52,104,208, 0, 13, 27, 54,196,163,143, 62, +138,152,152, 24,116,237,218, 21,167, 79,159,198,233,211,167, 49,110,220, 56,135,230,202, 89, 61,213,106, 53,122,246,236,137, 94, +189,122,185,117,188, 51, 77, 71, 99,173,111, 87,179,178,215,238,149, 87, 94, 1,128,219,141,102,221, 23, 84,203, 96, 5, 4, 4, + 64,163,209, 84,203, 80, 85,166,201,243,124,169,177,210,235,245,165, 17,171,205,155, 55,151,150,113, 6,165,116, 23, 33, 36,250, +189,247,222,123, 67,175,215,119, 53,153, 76, 81, 0,224,225,225,241,151,209,104,220,107,181, 90, 23, 82, 74,115,111,167,174,246, + 6,163, 60,206, 6,185,103,102,102, 62,254,220,115,207,237,226, 56,174,190,173,125,229, 31,237,145,101,249, 90, 70, 70, 70,149, + 83,213, 51, 51, 51, 31,127,246,217,103, 43,213,172, 76,215, 21,205,202,144, 36,169,140,169,178,159, 97,232, 10,206, 18,137,170, + 84, 42, 24, 12, 6,108,220,184, 17,181,107,215,118,183,122,247, 52,191, 31, 79,155, 91,213,254, 46,254,218,253, 0, 2, 6,205, + 95,119,125, 95, 22, 31,222,197, 95,147,180,225,237,167,234, 85,117,140,213,106,125,100,206,156, 57,135, 4, 65, 8,119,165, 14, + 26,141, 38,201, 98,177,116,112,185,210, 37, 80, 74,145,152,152, 40,143, 24, 49, 34, 43, 51, 51,115,152,187,199, 3,192,129,248, +164, 5, 29, 30, 10,246, 31, 58,160, 67, 91, 16, 2,158,119, 48,168,151,128, 82, 74,169, 82,193, 37,239, 63,146, 60,162, 58,231, +170, 41, 40,165,167, 8, 33, 51, 35, 35, 35, 71, 3,112,116, 37, 92,235, 76,231, 26,192,107, 44,150, 79,218,180,105, 51,241,157, +119,222,241,237,215,175, 31,194,194,194,224,227,227,254,221,130, 14, 29, 77, 25,221,190, 77,221,208, 33,253, 59, 60,206, 17, 66, + 45,142, 94,199, 18,136,237,245, 84, 42, 18,247, 31, 73,110,229,184,220, 63, 57,211,238, 68,180,161,251,208, 23,209,125,232,139, + 0,138, 63, 79,123,126,234,130,132,212, 95, 17,199,165,194,178,188, 3,136,183,237,163,238, 60,205, 13,199,113,232,247,205, 70, +168,213,234,210,122, 62, 50,167,236,188,128,198,175,186,126, 47,117,251,182, 3,142,199, 90,185, 59, 6, 75,161, 80, 32, 43, 43, + 11, 23, 46, 92, 64, 70, 70, 6,140, 70, 35,206,159, 63, 15,158,231,145,147,147, 3,219, 76,195,234,212,179,166,222,163,187,169, +249,191, 96,172,108,184,101,176, 40,165, 41,237,218,181,171,178,140, 36, 73,110,205, 50, 82, 42,149,230, 14, 29, 58,144,202,102, + 27,216,158,235,245,122,151,254, 62,151, 24,168,233, 0,166,147, 18,119,193,243,229,239,122,232, 62,146, 36,165, 61,244,208, 67, +138,170,198, 36,200,178, 92,101,198,184,204,204,204, 34, 0, 53,122,235,240, 59,161, 89, 30, 66,136, 52,122,244,232, 42,157,148, +167,167,103,149,131,139,156, 37, 18, 53, 26,141,233,207, 61,247,156,100,223,213,108,159,136,244,129,134,208,164, 62, 79,191, 28, +190, 47,139, 15, 7, 0,155,201, 2,165, 73,142, 14,249,227,143, 63, 50, 0, 68,222,233,170, 93,185,114,133,111,215,174,221,247, + 5, 5, 5,175, 80, 74, 29, 39,236,113,194,161, 99,105,206,195, 19,247, 24,148,210, 83, 0,198,220,174, 14, 15,156, 15, 50,155, +199, 78,127,255,253, 33,211,222,127,191,177, 12,212, 70, 73,142, 42,133, 11, 38,205,158,248,227,233, 53,158, 27, 76,146,164,148, + 71, 30,121,196,237, 99,156,237,175, 34,147, 56,254,139, 48,160, 92,151,160, 43,154,119,162,158, 54,205,150, 45, 91,162,117,235, +214,165,143, 54,236,183,199,196,196,184,164, 25, 27, 27,139,102,205,154, 57,204,208, 94,126,204,213,221,110,187, 13,219, 95,223, +152,152,202,103,118,222,141,122,222,239,144,154, 24,200,234, 80,252, 62, 28, 55,195, 52,153, 38,211, 44, 45,163,160,148,186, 60, + 50,255, 65,106, 59,211,100,154, 76,243,223,215,124,208,248,223, 29,125,198, 96, 48,170,196, 29,115,197, 96, 48, 24,140,178, 16, + 0,149,118, 8,187,227, 76, 9, 33,238,117, 42,187,160,207, 52,153, 38,211,100,154, 76,147,105, 50,205, 7, 79,211,153,246,131, + 18, 25, 99, 93,132, 76,147,105, 50, 77,166,201, 52,153, 38,211,188,235,154, 15, 26,172,139,144,193, 96, 48, 24, 12, 6,163,134, +113,255, 70,101, 12, 6,227,129, 98, 6, 33,183,245, 71,107, 26,165,183,159,175,197, 5,238,151,122, 50, 24, 12, 6,192, 34, 88, + 12, 6,131,193, 96, 48, 24, 53, 14, 51, 88, 12, 6,131,193, 96, 48, 24, 53, 12, 51, 88, 12, 6,131,193, 96, 48, 24, 53,204, 29, +157, 69,200, 96, 48,238,125,238,151,177, 77,247, 75, 61, 25, 12, 6, 3, 96, 17, 44, 6,131,193, 96, 48, 24,140, 26, 71, 9,148, +189, 81, 49,165,212,241, 13,247, 24, 12, 6,131,193, 96, 48,238, 0, 15,154, 23, 41, 77,211,240, 32, 52,134,193, 96, 48, 24, 12, +198,253,203,131,228, 69, 74,187, 8,237,157, 35,131,193, 96, 48, 24, 12,198,191,205,131,228, 69, 74, 13,214,131,228, 26, 25, 12, + 6,131,193, 96,220,127, 60, 72, 94,164, 76, 4,235, 65,114,142, 12, 6,131,193, 96, 48,238, 47, 30, 36, 47,162, 4, 30, 44,199, +200, 96, 48, 24, 12, 6,227,254,227, 65,243, 34,119, 52, 77, 3, 33,164, 5,211,100,154, 76,147,105, 50, 77,166,201, 52,153,230, +255, 26, 44, 15, 22,131,193, 96, 48, 24, 12, 70, 13,195, 12, 22,131,193, 96, 48, 24, 12, 70, 13,195, 12, 22,131,193, 96, 48, 24, + 12, 70, 13,163,116, 94,132,193, 96, 60,200,220, 47,247,232,187, 95,234,201, 96, 48, 24, 0,139, 96, 49, 24, 12, 6,131,193, 96, +212, 56, 4, 64,165, 51, 1, 40,165,127,186, 44, 82,141,217, 4,206,244,153, 38,211,100,154, 76,147,105, 50, 77,166,249,224,105, + 58,211,118,199,127,220,203, 16, 74,239, 92, 62, 47, 66, 72,139,154,126,161,152, 38,211,100,154, 76,147,105, 50, 77,166,249,224, +105, 62,104,176, 46, 66, 70, 25, 8, 33, 74, 66,136,195,177,121,206,246,255, 91,154, 12, 6,131,193, 96,220,203,176,139, 26,163, + 20, 66, 72,123, 0,125, 75,158,111,165,148,198,187,179,255,223,210,188, 91,196,197,197,233,117, 58, 93,207,223,126,251, 77,157, +152,152,136, 35, 71,142,208,255,254,247,191,130,217,108,254, 53, 33, 33,193,116,183,235,199,168, 25, 98, 99, 99, 31, 39,132, 76, + 2, 0, 74,233,199, 39, 78,156,216, 89, 93, 45, 66, 8,137,140,140, 28,167,209,104,250,168, 84,170, 96, 73,146,136,197, 98, 73, + 51,153, 76,187, 82, 83, 83,231,211,106, 12,220, 39,132,180,245,247,247, 31, 19, 29, 29,221,248,202,149, 43,201,215,175, 95, 95, + 13, 96, 39,128,199,235,213,171,247, 92,131, 6, 13,194,206,158, 61,123, 49, 43, 43,107, 25,165,244,143,187, 85, 79, 6,227,127, + 29,151, 12, 22, 33,132,243,243,243,123, 76,175,215,191, 81, 88, 88, 24,235,237,237,125, 86, 20,197, 69,233,233,233, 91,217, 23, +239,193,160, 36,130,212,151, 82,170, 2, 0,133, 66, 49,160,125,251,246,225,132, 16,153, 16, 66, 41,165,132,227,184, 24, 73,146, +184,146,242,125, 9, 33,127, 80, 74,197,234,106,138,162,232,182,230,157, 34, 58, 58,122, 22,165, 52,184,170, 50,158,158,158,109, +246,236,217,211,116,211,166, 77,226,234,213,171,115,159,122,234, 41,195, 11, 47,188,160, 92,181,106,213, 23, 0,222, 44, 95,190, +121,243,230, 11, 56,142,243,119,229,252,178, 44,103,157, 59,119,238, 63,213,172, 62,163, 6, 33,132, 76,122,121,206,190, 78, 50, + 5,190,158,220,153, 67,177,121,169, 22, 49, 49, 49,223, 14, 28, 56,240,233, 38, 77,154, 40,101, 89,134, 32, 8,176, 88, 44, 77, + 79,156, 56,209,101,231,206,157,109, 0, 12,115,179,110,125, 39, 79,158,188, 98,230,204,153, 1, 42,149,138, 8,130,240,240, 15, + 63,252,208,107,204,152, 49,167,150, 45, 91,214,250,201, 39,159,244,178,109,159, 54,109, 90,111, 66,200, 91,148,210,181,255,118, + 61, 25, 12,134, 19,131,229,229,229,213, 40, 32, 32,224,237,218,181,107,247,110,211,166, 77,222,168, 81,163,254, 62,125,250,244, +249,232,232,232,194,111,190,249,230, 35, 65, 16,150, 52,105,210,228,215,252,252,252,249, 55,110,220, 56,239,206,137, 9, 33,141, + 0,140, 2,208, 27, 64, 40,128, 52, 0,219, 1,172,160,148, 38, 86,167, 49, 33, 33, 33, 45, 61, 61, 61, 39, 18, 66, 30, 46, 42, + 42, 10,245,244,244, 76,163,148, 30, 45, 40, 40,152,151,158,158,126,162, 58,154,161,161,161, 13, 1,188,174, 84, 42, 59, 74,146, + 84, 95,161, 80, 36, 73,146,116, 80,146,164,197,105,105,105, 23,171,163,249,104,152, 87, 63,217,224, 61, 95, 80,232,195, 10,205, +162,218,160, 85, 10, 42,217,156, 44, 23,229, 78, 62,122,189,112,125,117, 52,107, 26,141, 70,195,173, 94,189,186,181, 70,163, 1, + 0,240, 60,143,232,232,232,219,186, 79,148, 74,165,226,230,205,155,215, 90,173, 86, 3, 0,172, 86, 43,186,117,235,118, 79,220, +123,138, 16, 18,154,144,144,224, 99,171, 91,121, 36, 73,194,128, 1, 3, 34, 52, 26, 13,150, 45, 91, 38,102,101,101,197,126,253, +245,215, 9, 95,124,241,133,255,183,223,126, 59, 20,149, 24, 44,142,227,252, 29,105, 74,146, 4,171,213, 10, 81, 20,193,243, 60, +186,118,237, 90,227,109, 98, 84, 15, 74,105, 56, 5,176,253,180, 25, 0,106,223,142,150, 94,175,143, 26, 52,104,144, 50, 51, 51, + 19, 42,149, 10, 86,171, 21, 55,110,220, 64,195,134, 13, 21, 60,207, 55,113, 87,175,105,211,166, 99,102,207,158, 29,184,109,219, + 54,235,247,223,127,111,233,209,163,135,250,165,151, 94,242,238,212,169, 83,199,208,208, 80,238,235,175,191,182,236,222,189,219, +250,236,179,207,106,103,205,154, 21,184,125,251,246,167, 1, 56, 53, 88, 53, 93, 79, 6,131, 81,133,193,242,242,242,218,111, 48, + 24, 34, 71,142, 28,153,248,202, 43,175,252,106, 48, 24, 36, 0,184,113,227,134,118,192,128, 1,153,131, 7, 15,190,105, 52, 26, + 21, 75,150, 44,169,247,249,231,159,239,242,242,242, 74, 45, 40, 40,120,200,217, 9, 9, 33, 4,192, 27, 28,199,189,222,179,103, +207,253,130, 32,100,110,220,184,241,199,161, 67,135,118,144,101,217,243,183,223,126,251,133, 16,242, 37,128, 79, 92,141,142, 17, + 66, 20, 13, 26, 52,152, 30, 26, 26, 58,126,233,210,165,218,250,245,235,195,195,195, 3, 5, 5, 5,245, 46, 94,188, 24,246,198, + 27,111,244,111,216,176,225, 34, 31, 31,159,247, 18, 18, 18, 4, 23, 53, 73,112,112,240,155,222,222,222, 31,126,244,209, 71,186, +230,205,155, 19, 15, 15, 15, 92,187,118,173, 69,124,124,124,244, 87, 95,125,245, 82,104,104,232,140,212,212, 84,151,235,217,133, + 16,165, 37, 50, 96,167,111,211,135,186, 46, 91,241, 21,241,247,244,128,146, 16, 8, 86,171, 42,195,104,106,240,218,216,209, 63, +182,111, 92,231,112,129, 42,163,251,185,115,212,234,138,102, 77, 65, 41, 21, 9, 33, 91, 21, 10,197, 0,141, 70,195, 13, 24, 48, + 0,187,119,239, 38,102,179, 89, 9, 0, 58,157, 78, 28, 48, 96, 0,244,122, 61,120,158,151, 1,108, 45, 57, 70, 91,114,188,165, + 42, 77,149, 74,197,117,237,218,213,120,252,248,241,108,163,209,168,178,105,118,237,218,181,150, 86,171,245, 16, 4,193, 37,205, + 59,137, 70,163,193,229,203,151,203,108,147, 36, 9, 55,111,222, 68,118,118, 54, 44, 22, 11,201,201,201,129, 36, 73,176, 88, 44, +153,146, 36,129,227,138,131,111,142, 52,213,106, 53, 46, 92,184, 80, 97,187,213,106,133,201,100,130, 32, 8,200,207,207,215,235, +116,186,200,142, 29, 59,166, 0,216, 84, 88, 88, 56,255,212,169, 83, 73, 53,219, 58,134, 27, 92,255,229,164,185, 30, 0, 43,128, + 43,183, 35, 68, 8,145, 1,224,224,193,131,200,200,200, 64,102,102, 38, 50, 51, 51, 17, 22, 22,134,234, 68,255, 19, 19, 19, 23, +198,196,196,144, 83,167, 78,109, 1,176, 98,221,186,117,131,110,221,186,181,116,194,132, 9,181,230,205,155,119,107,226,196,137, + 99, 1,108, 88,183,110,221,139, 45, 91,182,236,119,230,204,153,207,238, 70, 61, 25, 12, 70, 21,131,220, 41,165,193,141, 26, 53, +186,245,233,167,159, 54,157, 60,121,114,237,194,194, 66, 5, 0, 4, 7, 7,155, 1,192,104, 52, 42, 38, 77,154, 20, 48,103,206, +156,166, 90,173, 54, 71, 20,197,128, 74, 52, 42,155, 97,240,186,183,183,119,255,191,255,254,123, 93,211,166, 77,107,205,158, 61, +251,164,167,167, 39,253,236,179,207, 78, 52,108,216,176,110, 82, 82,210,119,222,222,222,221, 0,140,119, 80,175, 10,154, 17, 17, + 17,211,134, 14, 29, 58,254,240,225,195,218, 86,173, 90,193,203,203, 11, 10,133, 2,190,190,190,104,215,174, 29, 57,112,224,128, +182, 79,159, 62,227,242,242,242,230,185,170, 25, 18, 18, 50,190, 87,175, 94, 31, 29, 63,126, 92,223,189,123,119,162,209,104,144, +155,155, 11,141, 70,131,246,237,219,147,165, 95, 44,214,183,104,222,108, 90,104,104,232, 76, 87, 53, 45,141,252,119, 61,245,202, +164,110, 91,183,239, 36, 65, 65, 65,248,251,147,153, 56,216, 41, 26,151, 62,152,140,186,117,235, 98,203,182, 29,164,239,243,175, +116,240, 22,130,126,115, 85,243,118,177,215,164,148,198, 71, 71, 71, 39,156, 63,127, 30, 29, 59,118,196,143, 63,254,216,106,194, +132, 9,175, 76,152, 48,225,149, 31,127,252,177, 85,199,142, 29,113,254,252,121, 68, 71, 71, 39, 80, 74,227, 9, 33,175, 0,184, + 5,224, 86,201,115,135,154,251,247,239, 71,183,110,221,114,214,173, 91,215,112,234,212,169,179,166, 78,157, 58,235,199, 31,127, +108,208,173, 91,183,156,253,251,247,187,165,121, 39,218,110, 67,146,164, 10, 11,165, 20,178, 44, 35, 48, 48,240,230,182,109,219, +104,223,190,125, 21,117,234,212, 73, 27, 48, 96,128,246,232,209,163,148, 16,178,213,157,122, 82, 74, 97, 50,153, 96, 50,153,112, +229,202, 21,253,162, 69,139, 58,140, 31, 63,190,209, 15, 63,252, 16, 50,110,220,184,177,222,222,222, 39, 90,183,110, 29,238,142, +166,187, 48, 77,199,112, 28,119, 3,197,230,170,136,227,184,235,213,213, 28, 50,100, 72,139,240,240,240,160, 31,206,250, 33, 71, +221, 20,146,202, 7,178,218, 23, 82,237,182,184,164,238,133,224,224,224,160,240,240,240,246,238,104, 82, 74,119,157, 60,121,178, + 55,165,116, 25,165, 84,162,148,254, 52,113,226,196, 17,132,144,245, 19, 39, 78, 28, 77, 41,253,169,100,251,202,211,167, 79,247, +163,148,238,189, 27,245,188, 93,152,230,255,166,166, 19,218, 2,120,162,100,121, 8, 64,187,114,235,154,114,229,122, 56,120,124, +162,220,122,219,114,199,217,214,111, 27,219,216, 23,106, 91,108, 59, 8, 33,194,220,185,115,143,124,245,213, 87,187,211,211,211, +235, 54,104,208,224,137, 65,131, 6,133,231,231,231,115,131, 7, 15,142,168, 91,183,110,223,189,123,247,214, 25, 60,120,240,111, + 67,135, 14,141, 39,132, 56, 29, 55, 67, 8,105,168, 80, 40,222, 58,117,234,212,161,136,136, 8,107, 90, 90,154, 87, 76, 76, 76, + 1, 0, 52,110,220,216,152,157,157,173,247,242,242,194,182,109,219,142, 17, 66, 70, 17, 66,154, 58,211, 12, 14, 14,142,241,247, +247, 31,255,225,135, 31,106, 21, 10, 69,165,101,180, 90, 45, 62,252,240, 67,173,183,183,247,200,144,144,144,135,157,105,214,169, + 83, 39,202,203,203,107,250,162, 69,139,116, 60,207,195,106,181, 34, 40, 40, 8, 6,131,158,116, 3,122, 0, 0, 32, 0, 73, 68, + 65, 84, 1,233,233,233, 72,189,122, 21, 55,175, 93,195,184,151, 95,214,123,234,245,111, 5, 7, 7,183,118,166,217, 49,194,107, +128, 33,164, 89,151,215, 94,127, 3,231,222,120, 25,187, 67, 52,168,243,250, 36,180,218,247, 39, 66,103,204,199,222, 6,222, 72, + 24,246, 24,222,122,235,109,168, 3, 27, 60,242, 72,152,225, 41,103,154,119, 2,165, 82, 73,181, 90, 45,204,102,179,242,224,193, +131, 29, 69, 81, 84,137,162,168, 58,112,224, 64,151, 95,127,253,181,247,236,217,179, 31,215,235,245, 99,219,183,111,255, 45, 33, +100, 33,165, 84, 79, 41,213, 3,152,103,139, 60, 85,166,169, 82,169, 96, 50,153, 84,199,143, 31, 31, 45, 73,146, 70,146, 36,205, +241,227,199, 95,221,187,119,239,115,203,150, 45,115, 91,243,223, 66,161, 80, 64,169, 84, 66,165, 82,161,117,235,214,127,175, 89, +179, 70, 8, 14, 14, 86, 46, 95,190,220, 47, 48, 48,208,243,219,111,191,205,205,201,201,153,235,142, 38,207,243,176, 88, 44, 48, +153, 76, 56,120,240, 96,253,145, 35, 71, 42,121,158,151,158,127,254,249, 91,130, 32, 88, 94,125,245, 85,111,131,193,240,246,157, +106, 19,163,106, 40,165, 18,128, 34, 0,133,182, 40,106, 68, 68,132, 54, 36, 36,164,101, 68, 68,132,203,159,199,194,194,194, 47, + 23, 44, 88, 16,202,105,125,113,136,239,131,117,116, 38,118,249,126,129,204,136, 9, 8, 10,107,132, 94,189,122, 5, 18, 66, 22, +215, 64,125, 55, 81, 74,135, 82, 74,127,174,206,241,119,186,158,109,219,182,237,216,166, 77,155,227,113,113,113,233,109,218,180, + 57,222,182,109,219,142,213,213,178, 49,115, 12,233,241,241,235,138,148, 15,198, 18,250,241,235,138,148,153, 99, 72,143,219,213, +100,220,125, 42,243, 34,118, 4, 16, 66,182, 18, 66,182, 78,153, 50,165, 43,128,218,229,214, 31,177, 47, 7, 64, 83,217,163,109, +177,219, 30,128, 98, 99, 21, 96,183, 94, 35,148,118, 17, 82, 74, 43,237,230, 8, 8, 8,224,223,121,231,157, 83,102,179,249,207, +111,191,253, 54,242,149, 87, 94,137, 9, 15, 15,191, 48,120,240,224, 95, 60, 60, 60, 68,219, 24, 29, 23,121,185, 79,159, 62,219, +106,213,170, 69,178,178,178,212, 60,207, 43,111,220,184,161,150, 36,137, 40, 20, 10,106, 52, 26,149,151, 46, 93, 82, 89,173, 86, +249,225,135, 31,222, 28, 31, 31, 63, 10,192, 91, 85, 9,122,120,120,188,186,124,249,114,157, 35,115, 37, 73, 18, 10, 11, 11, 33, +138, 34,102,204,152,161, 27, 63,126,252, 27, 0,142, 84,165,169, 82,169,198,125,250,233,167, 58, 91, 23,144, 44,203, 56,113,226, + 4,178,110,222,132,165, 32, 31,124, 65, 62,248,188, 28,112,133,121,120,174,247,227,186,101, 63,111,252, 15,128,231,170,210,228, +181,134, 57,223,174,248, 10,146, 36, 33,109, 99,229, 67, 34,110, 29,222, 7, 73, 20, 48,235,227,121,228,173,151,159,156, 13, 96, + 93, 85,154,255, 38, 26,141,134,251,228,147, 79,154,106, 52, 26, 16, 66, 40,207,243,104,222,188,249,109,141,159,210,104, 52,138, +133, 11, 23,198,168,213,106, 98,211,108,209,162,197, 61, 49, 38,203, 30,181, 90, 13,189, 94,143,136,136, 8, 83,191,126,253,226, + 23, 46, 92, 88, 79,161, 80,120, 40,149,202, 29,121,121,121,179,207,158, 61,235, 86, 55,146,197, 98,129,217,108,134,217,108,198, +245,235,215,235, 68, 70, 70,146, 55,223,124, 83, 42, 42, 42,106,176,114,229,202,203,235,214,173,243, 88,188,120,241, 96, 0,175, +223,161, 38, 49, 28, 16, 25, 25,169,241,246,246,246,169, 87, 91, 89,164, 82,160, 40, 93, 20,131, 66, 67, 67, 39, 1,104,211,184, +113, 99,191, 75,151, 46,229,132,132,132, 28,225, 56,110,109,114,114,114,122, 85, 90,148, 82, 34,138, 34, 70, 63,148,139,177, 15, +115, 16, 69, 17,185,185,185,184,126,253, 58,206,158, 61,139,163, 71,207, 86,171,142,245,235,215,127, 89,167,211,245,212,104, 52, + 17,146, 36,113, 70,163, 49,201, 98,177,236, 78, 75, 75,251,146, 86, 35,177,225,157,170,167,157,254,252, 65,131, 6, 5,251,248, +248,224,228,201,147,193,167, 79,159,158, 15,160,205,237,104,106, 84,220,215,207,143, 88, 28, 82,203,215, 23,215,206,111, 9,217, +180,253,135,175, 81, 60,150,151,113,159,227,200,139, 0,200,164,148,150,206, 56,159, 61,123,118,223,146,242,125,237,215, 93,208, +175, 80,174,100, 6,187, 75,199,187, 67,169,193,178,205, 20,115, 84, 80,167,211, 73, 99,198,140,185,176,121,243,230,136, 54,109, +218,252,229,104, 48,176, 19, 30,109,218,180,105,210,177, 99,199,104, 64, 64, 0, 47,203, 50,241,240,240,144,244,122,189,156,151, +151, 7, 65, 16,104, 82, 82,146,242,250,245,235,106,127,127,127, 53, 92, 8,213,169, 84,170,246,245,235,215,175,116, 31,207,243, + 40, 44, 44, 68, 65, 65, 1, 44, 22, 11,130,130,130, 8,199,113,237,156,105,114, 28,215,161,105,211,166, 36, 39, 39, 7,193,193, +193, 56,116,232, 16, 10,243,114, 97, 41, 40,128, 37, 47, 23,214,252, 60, 72,249,185,200,189,153,142,136,186,161,164, 36,213, 64, +149,136, 10,125,120,160,193, 19,151,102, 78, 66,219, 19, 73, 32, 42, 53,142,181,168, 11, 42, 20, 15,181,122,232, 76, 26,136, 90, +131,191,198,189,128, 58,195, 71, 66,224,180, 33,206, 52,239, 4,162, 40, 18,139,197, 2,157, 78, 39,118,236,216,241,160, 66,161, +232,162,209,104,184,177, 99,199,226,198,141, 27,182, 98, 4, 0,198,142, 29, 11,189, 94, 15,139,197, 34, 2,152,224,104,204,148, + 40,138, 68, 16, 4,232,245,122,161, 77,155, 54, 95, 42, 20,138, 87, 53, 26,141,162, 73,147, 38, 25,115,230,204, 73,243,244,244, +244,188,126,253,250, 45,141, 70,147, 18, 17, 17,241,144, 94,175, 15,119,166,249,111,162,213,106,161, 84, 42,193,113, 28,106,215, +174, 93,148,157,157,125,244,239,191,255,126,166, 58, 90,146, 36,129,231,121, 8,130, 0,179,217, 12, 89,150,113,250,244,105,104, +181, 90,149, 36, 73,103, 37, 73,242, 80,169, 84, 80, 40, 20, 44, 71,221,191, 76, 92, 92, 92,151, 86,117,188,231,143,173,107,241, +107,216,215,179,208, 67,171, 40,122,122,163,208,182, 71,143, 97,143, 79,152, 48,201,224,239,239,175,185,122,245,170,249,179,207, + 62,171,191, 97,195, 6, 2,224,147,170,244,210,210,210,214,207,153, 51,167, 86,151, 46, 93, 26,168, 84, 42,146,155,155,139,204, +204, 76,220,188,121, 19,215,175, 95,167,215,174, 93,251, 91, 20,197, 31,221,169, 99,171, 86,173, 86, 14, 31, 62,252,249,230,205, +155,171, 40,165, 16, 4, 1, 70,163, 49,230,232,209,163,253, 15, 29, 58,212, 17,128,219,159,203,244,244,244, 31, 63,254,248, 99, +207,206,157, 59, 55, 85,169, 84, 92, 77,212,211, 30, 74,105,176,193, 96,192,238,221,187,225,237,237, 13,103,179,117, 93,193, 42, +202, 33,181,124,107,195,124,113, 1,130,189,195, 97, 21,229,187,242,123,201,168,121,170,240, 34,127, 0,120,226,118,205,208,157, + 50, 83,149,225, 52,130,101,227,198,141, 27,218,194,194, 66,165, 44,203,156,197, 98, 81,201,178, 12,149, 74,229,210,128,113, 59, +154, 15, 26, 52,232, 72,219,182,109,141, 0,160,209,104, 68, 31, 31, 31, 49, 47, 47, 15, 37, 6, 75, 86, 42,149,102,131,193, 96, +110,208,160, 1, 0, 56,237, 34, 52,153, 76,245,244,122,125,133,237, 70,163, 17,133,133,133,165, 6,203,104, 52,194,219,219, 27, + 69, 69, 69, 78,191,220,146, 36, 69,120,120,120, 32, 45, 45, 13, 0, 80,152,155, 3,115,126, 62,172, 5,121,176,230,230, 64,200, +203,133,144,151, 3,206,100,130,111,104, 24, 68, 81, 12,115,166, 89,100,145, 52, 10, 80,220,220,186, 30, 65,175, 78,112, 88,238, +214,193,189, 48, 68, 54,129,201,100,253,215,115,148, 17, 66,218,115, 28, 23,215,172, 89, 51, 12, 24, 48, 0,195,134, 13, 59,173, +215,235, 3, 23, 47, 94,220, 60, 53, 53,181, 66,249,129, 3, 7,226,245,215, 95,199,160, 65,131,190, 59,121,242,228,146,170, 52, + 59,119,238,140,174, 93,187,214, 26, 54,108,216, 53,131,193,144,176, 98,197,138,135,102,204,152,145, 97, 52, 26, 83, 19, 18, 18, + 90,166,164,164,120, 52,110,220,120, 95,116,116, 52,183,109,219,182,240,170, 52,255,109, 68, 81,132, 32, 8,176, 90,173,176, 88, + 44, 78,191, 43,246,148, 15, 40, 8,130, 80, 58,131,208,108, 54, 67, 16, 4,178,105,211, 70,108,217,178,133, 59,127,254, 92,232, +228,201, 83,144,155,155, 11, 73,146,106,188, 29,140,202,105,211,166, 77,111, 37,149,151, 63, 91, 71,212, 61, 27, 36, 22, 42, 57, + 90,120,241,171,247,138, 78,251, 42, 45,150, 34,226,245,238,123,239,249, 93,190,124,217,250,241,199, 31,167, 15, 24, 48, 64, 55, + 98,196,136,102,219,182,109,235, 88,175, 94,189,175,174, 95,191,158, 91,153, 38, 33, 68,253,242,203, 47, 31,241,243,243,107,248, +253,247,223,103,164,165,165,213, 18, 4,193,131,231,121, 43,207,243,151,173, 86,235, 33,158,231,119,167,167,167, 39,184, 83, 87, +131,193,208,234,169,167,158, 82,229,228,228, 64,169, 84,194,106,181, 34, 51, 51, 19,177,177,177,138, 61,123,246, 52,175, 78,251, +207,157, 59,183, 32, 56, 56,120,223,150, 45, 91,122,122,122,122,198,105, 52,154, 58,146, 36, 73,102,179, 57,195,108, 54,159,170, + 78, 61,237, 33,132,164,157, 56,113, 34,216,203,203, 11,169,169,169, 32,132,164, 85, 87,203,134, 90,197, 37, 95,251,107,115, 88, +176,119,125, 36, 38, 30,129, 90,197, 37,223,174, 38,227,222,160,138,223,215,182, 37,251,251, 58, 49, 73,166,201,147, 39,191, 67, + 8,217, 58,121,242,228,119, 42,209,183, 29, 39,217,151,179, 43, 95, 99,127,234,171,188,136, 23, 20, 20, 40,255,248,227,143,218, +215,175, 95, 55,212,169, 83,199, 24, 29, 29,157, 75, 8,161,146, 36,113,183,110,221,242, 76, 73, 73,209,249,249,249, 89,194,194, +194,242, 92, 60,223,197,215, 94,123,173,243,212,169, 83, 19, 30,123,236,177, 44, 0,200,201,201, 65,102,102,166,109,150, 22,210, +210,210,184,227,199,143,215,218,177, 99, 71, 12, 92,152,193,163,215,235,175, 23, 20, 20, 52,241,245,245, 5, 80,124, 65,179,153, + 42,251, 71,171,213,138,130,130, 2,120,122,122, 58,253,114,115, 28,151,154,154,154, 26,105, 50, 25,145,116,233, 18, 44, 5,121, +176,230,231, 65,200,207,133,144,155, 11, 41,247, 22,184,194, 2, 24,244,122, 20,220,202,134, 66,161,184,225, 76,211, 83,171,224, + 5, 81,210, 4,244,234, 15, 16,199,215,103,223,118, 29, 64,163, 90, 65,175,255,217, 93,243,122, 91,216,114, 86,217,114, 82,233, +245,122,124,244,209, 71, 72, 72, 72,144,171,234, 6,214,104, 52,224, 56,174, 82, 55, 80, 94, 83,171,213,234,167, 78,157,170, 63, +117,234,148, 78,163,209,192, 96, 48,120,156, 58,117,170,229,239,191,255,206, 25,141, 70, 69,100,100,228,160,144,144,144,194,170, + 52,239, 36,162, 88,113, 24,161, 40,138, 40, 44, 44, 44, 29, 55,117,235,214, 45,165, 78,167,107,220,169, 83,167,120,158,231,127, + 20, 69,241,155,132,132,132,124, 71,154, 86,107,197,201,160,178, 44, 67, 20, 69,136,162, 8,165, 82, 41,111,218,180, 25,159, 47, + 89,136,159,214,253, 76, 59,119,238, 76,182,109,219, 6, 89,150, 83,106,182,117, 12, 71,200,178, 60,127,239,164, 33, 58, 72, 82, +161,101,223,154,162,157,217,202,162,175,254,220,123, 60, 91,176,104, 27, 53,106, 16,229,237,229,195,125,187,250,171, 91,233, 25, +127, 95,252,252,243,148,176, 89,179,102,249, 54,104,208,192,231,194,133, 11, 33, 0, 42, 53, 88, 6,131, 33,226,133, 23, 94,120, +233,214,173, 91,170, 21, 43, 86,172, 74, 77, 77, 61, 64, 41,253,219,190, 12, 33, 36,150, 16, 50, 15,128, 10, 64, 16, 0, 17,192, + 46, 74,233,119,142,234, 90,146, 67, 14,251,246,237,171, 48,219, 79,150,229,106,207,246, 75, 79, 79,207,105,215,174, 93,171,139, + 23, 47,110,202,201,201,249,190,252,126, 15, 15,143,254,209,209,209, 79, 31, 59,118,236,125, 74,233,229,202, 52, 28, 65, 41,125, +235,252,249,243,115,101, 89, 14,231, 56, 46,137, 82, 58,177,186,245,180,193, 91,229, 17,155,183,175, 91,193, 11, 82, 61,141, 74, +113,157,183,202, 35,111, 87,147,113,207, 99, 27, 35, 5,123,227, 84,137, 49,250,125,246,236,217,250, 57,115,230, 96,246,236,217, + 21,250,183,109, 26,148,210,190,179,103,207, 62,107, 43,103, 87,254, 64, 77, 85, 88, 89,114,162, 10, 87,124, 81, 20, 13, 83,166, + 76,121, 52, 38, 38, 38,173, 75,151, 46,233,245,235,215, 55,218,246,121,120,120,240,190,190,190,188,197, 98,209,166,165,165, 5, +252,245,215, 95,245,101, 89,174, 24, 70,170,200,111,190,190,190,181,142, 31, 63, 94,123,237,218,181,141, 78,156, 56, 17, 62,124, +248,240,206, 22,139, 5, 60,207,227,202,149, 43,225,203,151, 47,151,213,106,117, 46, 33,228, 15, 0, 78, 47,178,130, 32,196, 95, +188,120,177,113,187,118,237,136, 32, 8,101, 76,149,253,115,141, 70,131,212,212, 84, 42,203,242, 81, 23,234,121,228,248,177, 99, +145, 45,154, 53,131, 37, 47, 7,124,126, 46,172,121,185, 16,243,114, 33,231,231,130, 43, 44, 64,237, 90, 42,232,245,158,184,152, +150,142,146,186, 86,137, 74, 52, 93, 75,205,203,111, 18, 57,253, 19,236,109,224, 13, 42, 88, 75,187, 5, 1,148,118, 23, 62,242, + 87, 38, 14,254, 30, 15,165,100,169, 24, 50,250, 23,225,121, 94, 30, 60,120,240, 49,142,227,220,190,209,167, 35, 4, 65,144, 95, +121,229,149, 82,205,228,228,228, 91,201,201,201, 58,147,201,196, 25, 12,134,194,154, 58,207,109,212,175,194, 54,171,213, 10,158, +231, 97, 50,153,144,158,158,174,217,181,107, 87,199,248,248,120,245,185,115,231, 16, 31, 31,223,122,211,166, 77, 83,162,162,162, + 90,253,245,215, 95,149,154,236,242,166, 77,150,101,216,174,131,148, 82, 80, 74, 21, 0,176,121,195, 86,244,234,213,139, 20, 20, + 20, 96,203,150, 45, 53,210,141,194,112,153, 34,136,146,158,223,191,166,232,237, 75,154,252,179, 70,229,135, 9, 9, 9, 59,251, +244,233,115, 48, 56,168,129, 55, 0,104,213,134, 0, 5,245, 50, 4, 4, 4,104, 1, 32, 56, 56, 56, 78, 16,132, 37, 0, 58, 84, + 38, 56,112,224,192, 71, 2, 3, 3, 99,182,111,223,126, 42, 53, 53,245, 96,121,115, 5, 0, 77,154, 52,153,241,231,159,127,246, + 86,169, 84,165,191,191, 37,131,123, 43, 53, 88, 67,134, 12,105, 18, 26, 26, 90,123,219, 69, 31,228,171, 35, 33,115,185,160, 10, + 45, 36,223, 86, 72, 82, 55, 71, 80,208, 95,181, 35, 35, 35, 91, 95,190,124,249,148, 59,141, 39,132,212,123,242,201, 39,127, 89, +185,114,101, 84,175, 94,189, 52, 0, 42, 24,172,168,168,168,193,123,246,236, 25, 58,118,236,216, 86,132,144,126,148,210, 75,174, +234, 39, 36, 36, 28, 6,224,116, 24,133, 59, 76, 93, 70,119, 3, 8,175, 73, 77,198,221,199, 73,239, 64,166, 93,244, 41, 19,197, +247, 82,182, 95,183,125,238,121,187,178,153, 37,186,125, 1,240,229,162, 94,149,237,203, 4, 80, 99,193, 13,135, 17, 44,171,213, +186,235,202,149, 43,109,159,124,242,201, 76,123,115,101,255, 2, 24, 12, 6,139,183,183,119,225,177, 99,199,130, 37, 73,218,231, +194,249, 86,236,217,179,103,239,162, 69,139,214,212,170, 85, 75,120,238,185,231,184, 73,147, 38, 29,204,206,206,166,217,217,217, + 88,188,120,113,167,142, 29, 59, 30, 76, 74, 74,146, 18, 18, 18, 94, 4,208,203,153,160,209,104,252,226,213, 87, 95,125,250,224, +193,131, 58,158,231,145,155,155, 91, 33,122, 37, 8, 2, 20, 10, 5,150, 44, 89, 98, 41, 42, 42, 90,232, 76, 83, 20,197, 47,191, +248,226,139,161,203, 63, 95,164, 83, 10, 86, 24,115,115, 32,149, 44, 10,115, 17, 12, 58, 14,145, 49, 1,200, 77,211, 98,245,246, +195, 38, 81, 20,191,112,166,169, 50, 23, 78, 24, 59,122,212,214, 93,191,237, 69,237, 14,221,144,181,119, 71,133, 50,154,128, 32, +240, 86, 43, 62,156, 57,157, 18, 83,238, 36,103,154, 53,137, 45,103, 21, 33,196,246, 1,220,122,242,228,201,248,152,152,152,222, + 60,207, 59, 60,142,231,121,200,178, 92,233, 12, 3,103,154, 90,173, 54,165, 73,147, 38,191, 53,108,216,112, 16, 0, 52,107,214, +108, 3,199,113,221,170,210,188,147, 8,130,128,169, 83,167, 98,206,156, 57,152, 60,121, 50,128, 98,131,100,251, 3, 96,177, 88, +234,239,216,177, 67,115,248,240, 97,186,122,245,234,172, 33, 67,134,248, 14, 31, 62,220,247,251,239,191,127, 19, 64,165,239,151, + 32, 8,152, 56,113, 34,150, 45, 91,134, 49, 99,198, 84,216,175, 80, 40,228,212,212, 20, 88,120, 11,221,188,121,115,154, 82,169, +244,251,236,179,207,244,227,199,143,191,231, 6,251, 63,168, 72,146,244,110,135, 5,155,222, 0,244,130, 40,138, 11, 79,159, 62, +190, 15, 0,134, 13, 27, 22,184, 96,193, 2, 13, 0,124, 50,239, 19, 21,165, 84,101, 75, 12,251,193, 7, 31,232, 70,143, 30, 29, +232, 72,115,253,250,245, 57, 31,124,240, 65,237, 17, 35, 70,244,218,187,119,175,142, 16,178, 3,197, 99, 72,178, 80,252,199,209, + 31,192,225,128,128,128,186,235,214,173,139,236,217,179,167,167,179,122, 22, 21, 21,125,181,116,233,210,136,249, 7,188,176,173, +104, 16,146,233, 48,208, 90, 20,181,212, 5,104,102,184,142,206,117,147,131,191,255,254,251, 21, 0,226, 92,109, 59, 33,164,249, +144, 33, 67, 54,174, 92,185,178,254,168, 81,163, 82, 14, 31, 62,156, 76, 8,153, 81, 73,209,236, 23, 94,120, 33,105,213,170, 85, +145,178, 44,239, 36,132,244,162,148, 86, 43,209, 50,131, 81, 77, 92,186,237, 83, 53,202,222, 49, 28, 26, 44, 81, 20, 95, 38,132, + 68, 79,158, 60,121,110,112,112,112,189,233,211,167, 95,109,214,172, 89,145,109,127,118,118,182, 97,255,254,253, 13,242,243,243, + 11, 68, 81,124,158, 82,122,186,188, 6, 41,119,183,109, 74,105, 18, 33,100,110,235,214,173,159,254,225,135, 31,246,123,121,121, +229, 31, 57,114,196,219,219,219, 59,239,220,185,115,158, 10,133,194,248,247,223,127, 99,247,238,221,157, 0,124, 94,217,191,164, +242,154,105,105,105, 39,235,215,175,255,201,248,241,227,199,191,255,254,251, 58, 89,150, 97, 50,153, 80, 80, 80, 0,179,217, 92, + 58, 56,121,237,218,181, 22,139,197,178, 60, 53, 53,181,194, 12,194, 74, 52,227,195,194,194,150, 45,252,108,225, 43, 35,159,126, + 82, 67,115,179,145,151,110, 2, 49, 23,193,160,211,160,121,183, 16, 20,101, 19,172,220,127,156,191,197, 91,215,165,166,166, 86, + 48,151,229, 53, 15, 93, 47,248,229,225, 70,129,187, 63,152, 57,189,199,148,111,126,134, 44,203,248,235,213,231,144,115, 96, 55, + 60,154,181,196, 35,127,101,130,231,121, 76,158, 56, 30, 10, 99,198,193, 35,215, 11,127,114,166, 89, 19,216,107,150,228,161,250, +163,228,185, 72, 8,121,133, 16,242,124, 84, 84, 20,198,142, 29,139,129, 3, 7,150, 57,118,227,198,141, 88,186,116, 41, 44, 22, +203,243,132,144, 19,148,210, 37,238,104,214,175, 95,255,161,230,205,155, 43,130,131,131,141, 0,160, 80, 40,186,157, 61,123,182, +109, 84, 84, 84,149,154,119,168,237, 57,151, 46, 93,242,158, 55,111, 30,177, 90,173,152, 49, 99, 6,108,198,210, 22,113,122,247, +221,119,131,189,188,188, 48,127,254,124, 62, 43, 43,171,123,118,118,246,158, 69,139, 22,249,175, 93,187,246, 25,148, 24,172,114, +154, 55,207,159, 63,239,181,108,217, 50, 78, 20, 69, 44, 88,176,160, 66, 68,235,173,183,222,130,213, 42, 64,165, 84,241, 22,179, +165,185, 94,175,191,236,231,231,167,151,101,153, 86, 86,207, 59,209,246,255,117,205,211,167, 79,239, 2,176,203, 81,121,219, 56, + 58,147,201,132,172,172, 44,100,101,101,193,199,199, 7,176, 75, 48, 91, 94,211,100, 50,157,154, 56,113, 98,194,151, 95,126,217, +235,247,223,127,127,242,192,129, 3,125,118,239,222,109, 78, 74, 74, 18, 5, 65,160,117,235,214, 85,118,232,208, 65,215,167, 79, + 31, 79,173, 86,203,189,251,238,187, 89, 31,125,244,145, 63,128,108, 71,154,148, 82,133, 44,203,248, 79,199,124, 76,236,170,132, +197, 82,252,135, 50, 45, 45, 21,103,207,158, 69,124,124, 34, 8, 33, 85, 78,142,168,228,245, 92,248,253,247,223, 55,208,104, 52, +100,205,154, 53,245,214,172, 89, 51,206,217,235,247,221,119,223, 69,172, 89,179,102, 9, 33,164, 7,165, 84,190, 95,223,119,166, +121,239,105, 62,104, 84, 57, 6,139, 82,122, 22, 64, 47, 66, 72,135, 81,163, 70,125, 28, 21, 21,101, 17, 69, 81,181,115,231,206, +166, 89, 89, 89, 26, 81, 20, 39, 82, 74,221,234,175,164,148, 46, 35,132, 96,192,128, 1, 19, 27, 54,108,184,231,196,137, 19,173, +158,120,226,137,157, 27, 55,110,236, 32,138,226,223,127,254,249,231,243, 0, 22, 2,248,220, 85,205,107,215,174,205,216,189,123, + 55, 57,114,228,200,219,147, 39, 79,214, 6, 4, 4, 16, 95, 95, 95,152, 76, 38, 36, 39, 39,211, 85,171, 86, 89, 44, 22,203,231, + 62, 62, 62,239,185,170, 25, 16, 16, 48,233,192,241,227,154, 11,151, 47,189,248, 98,239,199,116,245, 26, 55,129,129, 0,133,183, +178,177,127,127, 58,190, 57,122,202,156,197, 91,255,171, 80, 40, 92,158, 74, 31,122, 57,179,215,174,117, 43,183,239,251,237,183, + 30,179,230,204, 37,193,207,142,132,103,120,125,200, 17,141,176,127,223, 62,124,244,193, 12,170, 40,204, 56, 32, 92,206,120,204, + 85,205,154,134,150,220, 7,176, 36,255,212, 60, 89,150,149, 64,241,152,172,215, 95,127, 29,246,183,206, 89,186,116, 41, 76, 38, + 19, 0, 40, 9, 33,243, 8, 33, 95, 87, 54,235,175, 10,205,176, 95,126,249, 37,204, 94, 51, 42, 42,202, 37,205,154, 38, 35, 35, +227,189,151, 95,126,121,142, 74,165,242,145,101,185,194,224,116, 0,240,244,244, 68,126,126, 62, 36, 73, 18,107,213,170,149, 40, + 8, 2,148, 74, 37,224,224,123, 84, 84, 84,244,222,152, 49, 99, 62, 36,132, 56,140,116,232,245,250,164, 67,135, 14, 53, 26, 62, +124, 56,183,110,221,186, 43,207, 60,243,140,246,247,223,127,151, 0, 84, 43,167, 17,227,206, 67, 41, 69, 81, 81, 17, 0, 56, 76, +137, 64, 41,189, 78, 8,153,152,144,144,160, 27, 51,102, 76,220,179,207, 62,235,221,181,107, 87,131,125, 25,147,201, 36,111,217, +178,165,104,217,178,101,217, 7, 14, 28,248,227,165,151, 94, 26,132,226,238,141, 74, 73, 75, 75,251,101,241,226,197, 62,157, 59, +119,110, 44, 73, 18,178,178,178, 74,199, 96,165,164,164, 32, 41, 41, 41, 73,150,229,205,110, 54,231,213,225,195,135,111, 91,181, +106, 85,248,168, 81,163, 82,214,174, 93,187, 25, 64,101, 99,106, 13,131, 7, 15,238,191,106,213,170,240,209,163, 71, 95, 7, 48, +142,178, 12,239, 12, 70,149,184, 52, 83,141, 82,122, 8, 64,123, 66,200, 0,133, 66, 49,161,176,176,112, 1,165,116, 83,117, 79, + 90, 98,178,118, 94,186,116,105, 4,128, 54, 11, 23, 46,156, 2, 32, 25,197, 97,189,158,149,141, 87,112,162, 39, 1,120, 63, 36, + 36,100,253,244,233,211,107,228, 94,132, 37,183,212,121, 53, 56, 56,120,237,199,107,215,191, 71, 41,141,229,168, 92, 91, 38, 92, + 14,199,113, 39, 37, 73,250, 40, 37, 37,101,191, 59,154, 63, 22,215,179,231,195,245,188,250, 78, 28, 61,124,174,168,210, 71, 20, +154, 69,141,167, 86,201,171, 37, 75, 18,103,202,121,247, 72, 82,225, 61,121, 97,181, 88, 44,226,160, 65,131,190,226, 56, 78, 6, + 0, 73,146,148, 22,139,229, 69,184,248, 25,250,183, 52,171, 75, 86, 86, 86, 33,128, 87,171, 42,211,177, 99,199,239,182,111,223, + 62,188,103,207,158,210,214,173, 91, 51,250,246,237,171, 76, 72, 72,160, 0,118, 87, 86,254,218,181,107, 22, 56,184, 35,129,141, +214,173, 91,135,127,253,245,215, 39, 70,140, 24,225,189,100,201,146, 90,199,142, 29,147, 86,174, 92,153, 95, 88, 88, 56,191,218, +141, 97,212, 40,164,100, 82,138, 74,165,130,135,135, 7,188,189,189,145,153,153,233,116,166, 39,165,244, 50, 33,228,137, 9, 19, + 38,116,156, 48, 97,194, 19,161,161,161,205,235,213,171, 87,143,227, 56, 46, 61, 61, 61, 51, 57, 57,249,154,213,106,221, 3,224, + 23, 0,234,134, 13, 27,158, 4,176,218,145,222,185,115,231, 62, 12, 14, 14,222,187, 97,195,134, 39,180, 90,109, 51,141, 70, 83, + 75, 16, 4,174,168,168,232,150,213,106, 61,111,177, 88,182,166,165,165,253,238, 78,219, 40,165, 23, 8, 33, 93,149, 74,229, 47, + 43, 87,174,140, 74, 79, 79,143,216,191,127,127,191,242,229,226,226,226, 86,173, 90,181, 42,124,236,216,177,151,215,172, 89,227, +214, 24, 44, 6,227,127, 21,183, 46,100, 37,166,170,218,198,170,156, 86, 18,128,247, 74,150, 26, 33, 53, 53,245, 12,128,225, 53, +165, 7, 0,105,105,105,135, 1, 60, 14, 20,103,115, 78, 46,190,104,222, 22, 71,174, 23,108, 5,176,213,105,193,187, 8,165,212, + 66, 8,153, 80, 50,203, 9, 0, 38,148, 79,155, 64, 8, 57,109,191,223, 89,164,233, 78,104,254,155,228,228,228,188,249,205, 55, +223, 28,123,237,181,215,180,195,134, 13,195,249,243,231,177,100,201, 18, 75, 78, 78,142,211,155,233, 58,226,212,169, 83, 73,173, + 91,183,142, 93,177, 98,197,219,203,151, 47, 31, 64, 8, 97,247, 34,188, 71,224,121,254,239,167,158,122,202,118,255, 84,106,187, +117,146, 45,109,135, 40,138, 78,255, 8,150, 68,111,247,150, 44,206,168,244, 86, 94,246,164,165,165,197, 3,136,119, 65,203,101, + 74,162,109, 79, 92,187,118,109,214,133, 11, 23, 42, 14, 14, 5,112,246,236,217,141, 61,123,246,244,136,143,143,127,199,221, 89, +132, 12,198,255, 42,164, 26,137,127, 93, 23,191, 79,250,125,153,166, 99, 77,226,228,198,203,149,237,191, 27,154,213,129,105, 50, + 77,166,201, 52,153,230,189,163,249,160,241,175,119,197, 48,238, 47, 92,137, 74,221, 11,154, 12, 6,131,193, 96,220, 75, 16, 0, +149,230, 57,114,199,153, 18, 66,220,206,149,228, 76,159,105, 50, 77,166,201, 52,153, 38,211,100,154, 15,158,102, 37,218, 67,202, +237, 42,147, 7,146, 82,186,220,221, 58,220, 11,176, 46, 66,166,201, 52,153, 38,211,100,154, 76,147,105,222,117, 77, 7,231, 25, +117,191, 26, 44,118, 67, 89, 6,131,193, 96, 48, 24,140, 26,134, 25, 44, 6,131,193, 96, 48, 24,140, 26,198,165, 65,238, 26,141, + 38,154, 82,250, 18, 33,164, 14, 33,228, 6,165,244,107,158,231, 43,220, 68,241, 65, 71,163,209, 68, 19, 66, 94,162,148,214,161, +148,222, 32,132,220,221,215,129, 16, 50, 99,122,113, 54,233,105,211, 65, 43,205,142,201, 96, 48, 24, 12, 6,227, 95,199,161,193, +138, 8, 11,123,146, 83,144, 69, 86, 65,242,243,245,245,229, 22, 47, 94,204,245,235,215, 15, 91,182,108,193,184,215, 95, 31, 23, + 18, 18, 44,171,149,202, 28, 42,139,227,174, 37,167,253,224,202,201, 6, 15, 30,156, 33, 8,130,195,172,214, 10,133,226,230,198, +141, 27,131,170,211, 16,123, 66,226,158,204, 16,172, 86,135,231, 81, 42, 85, 55,211, 78,254,232,210,121,194,194,130,159, 84, 16, +110,145, 32,201,126,126,126,126,220,231,159,127, 94,250, 58,188,246,218,107,227, 66, 67, 66,100,181, 74,145, 35, 75,116,220,181, +228,100,151, 94,135, 26,193,206, 92, 1,192,140,233, 32,211, 8, 1, 51, 89, 12, 6,131,193, 96,220,125, 28, 26, 44,194, 97,201, +154, 47,231,249,101,223,202,193,218,141, 59, 17, 21, 21,133,115,231,206, 33, 42, 42, 10, 29, 30,106,197, 61,222,190, 53,167,224, + 16, 48,245,243,213, 75, 0,184,100, 44, 4, 65, 8,220,176, 97, 3, 8, 33,165, 9,251,108, 73,251, 10, 10, 10,240,198, 27,111, + 56, 52, 69,238, 32, 88,173,129,127,255,241, 51, 84, 10, 2, 65,162, 16, 68, 10, 65,148, 97,149, 40,242,141, 34,186, 61, 49,220, +229,243,112,224,150,124,189,104,158, 95,110, 94, 30,126,222,182,171,204,235,208,237,209,182,220,176, 62, 93, 56, 15,189, 58, 96, +212,164,143, 93,126, 29,106, 2,123,115,101,191,109, 90, 21,183,239, 96, 48, 24, 12, 6,131,241,239,224,208, 96,241,130,228, 23, + 84,203, 7,223,124,253, 53, 38, 78,254, 0, 77,155, 54, 5,165, 20,132, 16,188,243,254, 76,124,250,193,100, 60,213,187, 19, 4, + 81,246,115,164, 81,217, 12, 3, 66, 8,174, 94,189, 10,147,201, 84,102,137,142,142,118,169,194,174,206, 90, 80, 41, 8,126, 57, + 81, 0,171, 32,195, 42,150, 44,130,140,174, 45,188,220,210, 20, 36,217,207,215,219,128, 21, 95, 46,197,196,153,243,202,188, 14, +147,222,121, 31, 95,204,121, 15,111,141,253, 63,240,130,228,231,170,102,117, 97,154, 76,147,105, 50, 77,166,201, 52, 31, 84,205, + 7, 13, 37, 0, 16, 66, 58, 3,216, 7, 0,148,210,210,200,136,192,155,209, 60,172, 54,150,206,255, 16, 20, 28,100, 74, 1, 10, + 80, 89, 64,125,127, 15,152,140, 70,183, 79, 40,203, 50,172, 86, 43, 4, 65,192,242,229,203, 81, 88, 88, 8, 89,150, 17, 21, 21, + 5, 0,136,139,139,179,143,192, 92, 79, 72, 72, 8,119,166, 25,216,114, 96, 18, 40,234,217,111,155, 54,239, 43, 28, 62,241, 55, + 40, 5,180,122, 15, 12,125,118, 52, 36,153,194, 42,184,127,127, 82,179,209,136,186, 6, 21, 62,253,232,125,112, 42, 53, 56, 16, +112, 28, 1, 71,100, 52, 13,245,131,165,248,230,196,255, 42,211,166,131,150,143, 98, 77,155, 14,138,105,255,122, 85, 24, 12, 6, +131,193,184,109, 28,121,145,251, 21, 91, 4,107, 95,101,141,225,205, 38,132,250,169, 81,199,224, 3, 81,148,112,214, 90, 23, 5, + 70, 51,172, 86, 1, 73, 86, 43, 46,159, 76,199, 35,143, 60,130,129, 3, 7, 74, 86,171, 21,106,181, 58,111,227,198,141,181,170, + 58,161, 44,203, 16, 4, 1, 86,171, 21, 69, 69, 69,248,254,251,239,161, 84, 42, 33,203,197,198,199, 54,132,136, 82,138, 71, 31, +125,180, 94, 85, 90,165, 80,212,187,124,108, 61,188,116, 10,136, 50,133, 40, 82, 8, 18, 32,201, 20, 70, 94,198,224,151,223,131, + 40,203, 16,101, 25,188, 11, 6,171,140, 97,171,213, 22, 3,166,172, 5, 96, 40,221,239,173,165,152,248, 40, 7,181, 70, 11,141, + 90, 1,139,201,125,163,121,219, 80, 74,167, 17, 2, 54,200,157,193, 96, 48, 24, 15, 8,149,122,145,251,149, 50, 93,132,132,144, +206,148,210,253,182,117,222,108,132, 40, 72, 16, 68, 9,162, 32, 34,175,208,132,185,115,231, 66,171,213,130, 16, 82,106,150,100, + 89,230, 4, 65, 64,159, 62,125, 28,118, 23,218,144, 36, 9, 86,171, 21, 86,171, 21,148, 82, 40, 20, 10,180,107,215,174, 66,185, + 35, 71,142,184,213, 16, 47,157, 2,245,123, 76,169,176,253,232,250, 15, 65, 41,133, 36, 21, 47,174, 24, 44,103,134, 45,166,243, + 48, 88,120, 1,148, 2,160,197, 17,174,187, 2,165,180,116,204, 21,139, 92, 49, 24, 12, 6,227, 1,160,188, 23,185, 95, 41, 63, + 6,107, 31,240, 79,183,147,197,100,130, 32,136, 16, 69, 9,130, 80,108,140,244,122, 61, 58,117,234, 4,160,108,180,105,231,206, +157,176, 90,173, 78, 79,104, 27,212, 94, 98,204, 64, 41,197,218,181,107,161, 82,169, 74, 23,181, 90,237,118, 67, 68,137, 98,202, +164,255, 64,173,228,160, 82,114,165,143, 18,165,160,180,216, 28, 73, 50,133, 69,112, 45,200, 83,149, 97, 3, 0,222, 98, 5, 40, + 5, 5,133,169,168,200,237,250, 50, 24, 12, 6,131,193,168,148, 50, 94,228,126,197,102,176,186, 16, 66, 42, 56, 15,222, 84, 84, + 18,189,146, 32,136, 98,169,129,154, 63,127, 62,148, 74, 37, 52, 26, 13,148, 74,101,169, 33,114,197, 96,153,205,102, 52,104,208, + 0, 60,207, 35, 42, 42, 10,148, 82, 60,253,244,211, 21,202, 29, 59,118,204,173,134, 8, 18,197,236,143, 23, 84,216,126,232,199, + 15,208,178, 89,125, 60,212,200, 19,102,171,140,124,163,232,146, 94, 85,134, 13, 64,113, 4, 11, 0,165,128,169,232, 46, 69,176, + 24, 12, 6,131,193,120,112,168,212,139,220,175, 40, 1,160, 36, 20, 87,193, 45,154,141, 70,136,130, 88,106,178,120,158,135, 44, +203,120,253,245,215, 43, 8,237,217,179, 7, 60,207, 87,125, 50,165,242,230,200,145, 35,203,164, 72,160,148, 98,253,250,245,208, +106,181,101,162, 88,132,184,103, 94, 5,137, 98,250,187,227,161, 81, 41,202, 24, 34, 89, 6,182,252,242, 43,182,252,242,107,105, + 89,133, 66,117,211, 21, 61, 71,134, 13, 0,120,190, 36,130, 69, 41,138, 10, 11,220,170, 43,131,193, 96, 48, 24,140,178, 56,242, + 34,247, 43, 85,102,114, 55,155,138, 32,216,141,193,178, 90,173, 16, 69, 17,203,151, 47, 47,211,157,167, 82,169,192,113,156,211, + 8,214,134, 13, 27,202, 36,247,140,139,139,163,148, 82, 12, 29, 58,180,180,187,241,197, 23, 95,196,168, 81,163,220, 54, 88,162, + 68, 49, 99,214,252, 82,157, 62, 61, 58, 98, 64,239,206,144, 75,188,240,205, 63, 55,186, 37, 88,149, 97, 3, 0,222, 82, 60, 6, +139, 2, 48, 22,176, 46, 66, 6,131,193, 96, 48, 24,255,224,208, 96,169,148, 92,222,229,164, 27, 62,254,158, 58,136,178, 5,162, + 92, 60,243, 79,146, 36,140, 26, 53,170,180,220, 51,207, 60,131,231,159,127,190, 82,131,229,202,221,182,101, 89,198,161, 67,135, + 64, 8, 1,199,113,165,139, 35, 28,105, 22, 89,100, 28,254, 97, 38,100, 74, 33, 83, 64, 46,153,136,192,139,206,163,141,149,105, + 58, 51,108, 90,131, 47, 20, 28, 5, 33,192,229,148, 12, 40, 21, 92,158,187,109,119, 23,166,201, 52,153, 38,211,100,154, 76,243, + 65,213,124,208,112,104,176,168, 68,199, 45,219,122,100,145, 32,201, 62,182,109,205,155, 55,135,213,106,197,142, 29, 59, 74,141, +135, 66,161, 40,237,210,115,101, 12, 86, 57,174,119,234,212,169,170, 84, 12,215, 93, 82, 33,184,222,166,235,147,142,117,136,139, + 58,118, 56, 51,108, 43, 15,252,115, 11, 66, 37,199,229,129,210,113,238,158,131,193, 96, 48, 24, 12,198,131,137, 67,131,117, 61, + 53,117, 53,128,213,246,219,158,120,226,137,194,254,253,251,235, 69, 81, 4,207,243,176, 90,173,224,121,190,116,209,106,181,110, +101,220,116, 37,137,168, 43,220, 60,179,177, 70,116, 74,113,193,176,165,165,165,213,236, 57, 25, 12, 6,131,193, 96, 60, 48, 84, + 57, 6,171, 60, 70,163,209,151, 16,162, 76, 75, 75,171,176,239,198,141, 27, 0,224,218, 20,189,123,156, 26, 55,108, 12, 6,131, +193, 96, 48,254,167,112,203, 96,237,219,183, 79,196, 3, 98,162, 24, 12, 6,131,193, 96, 48,238, 20,142, 71,147, 51, 24, 12, 6, +131,193, 96, 48,170, 5, 1,208,162,178, 29,238,204, 14, 32,132, 84,170, 81, 21,206,244,153, 38,211,100,154, 76,147,105, 50, 77, +166,249,224,105, 58,211,182, 63,158, 16, 50,138, 82,186,220,221, 58,220, 11,144, 59,121,127,224,251,101,106, 40,211,100,154, 76, +147,105, 50, 77,166,201, 52,239,174,166,131,243,220,183, 6,139,117, 17,186, 1,137, 27,173,186,219,117, 96, 48, 24, 12, 6,131, +113,239,227,214, 32,247,219, 97,198,140, 25,183,101,230,166, 77,155, 38,215, 84, 93,220,133,132, 14,137, 84, 40, 49, 55, 54,166, +101,111, 46,124,240, 54, 42,145, 73, 52,101,253,229,187, 85,159,251,157,222,117, 12,254,144,196,190,158,158,186, 1,161, 94,202, +135,175,102, 25,127,231, 5,121,139,172, 81,111,218,153,146,159,115,183,235,199, 96, 48, 24, 12,198,237,114,219, 6,171,109,219, +182,245,101, 89,254, 63, 0,207, 82, 74, 79,157, 56,113, 98, 72,117,116,246,236,217, 19, 34, 8, 66, 91, 81, 20, 99, 1,196,234, + 61, 12,173, 45, 22,243, 77, 2,250, 66,239,222,189, 79,186,171, 23, 23, 23,247, 11,128, 62,149,237, 35,132,204, 56,126,252,248, +116, 87,181, 20, 74,204,253,117,211,202, 1,233, 70, 61,246, 39, 36, 13,252,250,147,201, 0, 48,200,221, 58,253, 27, 4, 7, 7, +235, 1,188,192,113, 92,119,173, 86,219,216,108, 54, 95, 3,112,134, 16,178, 36, 37, 37,165, 98,126, 13, 23,152, 65, 8,119, 44, + 80,251,178, 86,231,209,203,223,160,137,205,204,201, 75,181,136,242, 65,170, 82,207,115,215, 16,245,142, 36,154, 0,175, 90,251, + 95,238,215, 45,170,105, 84, 36,228,164, 83,176,228,102,246, 63,119,195,212,127, 77,194,205,255,244,142, 36,177,219, 47,211,170, +111,106, 89, 66, 88, 88, 88, 93, 73,146,148,105,105,105,201, 0,208,160, 65, 3,111,139,197,210, 6, 64, 20,128,191,180, 90,237, +241, 43, 87,174,228,187,223,226,127,184, 95, 52, 67, 67, 67,131,101, 89, 30, 17, 20, 20,244, 68, 70, 70,198, 47, 28,199,173,172, +238,251,205,248,223, 33,226,225,231, 23, 16,142,248,187,115, 12,149,105,214,181, 35,223,253,231, 78,213,137,193,120, 80,168,150, +193,106,222,188,185,167, 70,163, 25,202,113,220, 11,173,226,218,119,232, 63,236, 5, 34, 16, 15,124, 52,254, 25,183, 83, 56,156, + 56,113, 66,155,158,158,254, 65,253,166,113,111,118,233, 57,128,107, 22,213, 20,254,181,253, 32,115, 26,172,218,113,177,246,190, + 47, 95, 92, 12,160,125, 53,170,217,231,135,109, 71,145,158, 43,129, 16,128, 16,128, 35, 64,161, 89,198, 59, 47,117,152, 6, 96, +186, 43, 61, 73,177, 51, 0, 0, 32, 0, 73, 68, 65, 84, 34, 36,110,180, 42,186,121, 84,239,139,183,116,216,241,167, 0, 32, 24, + 30,126, 65,189, 73,220,104, 21, 77,248, 82,168, 70,189,238, 24,117,235,214,141,173, 93,187,246, 23, 47,190,248,162, 95,227,198, +141,235,106, 52, 26, 15,179,217,220, 40, 41, 41,169,254,167,159,126,250, 88,221,186,117,231,164,167,167,255,236,142,102,159,186, +186,122,129,173,234,255, 48,117,196,115, 15,213,143, 8,131,130, 47, 2,181, 20,134,165, 95,187,210,126,201,119, 27, 70,246, 12, +212, 62,253,235, 77,203,110,151, 5, 11,180,239,142,121,235,201,168,112, 79, 10,254,220, 33, 40, 21, 20, 90, 47, 63,180, 80, 40, + 0, 74,155, 45, 58, 36,190, 3, 96,154, 51,153,224,224,224,153, 0,222, 1, 64,234,214,173,251,131, 74,165, 58,246,240,195, 15, + 55,125,234,169,167, 72,203,150, 45,113,242,228,201,102, 91,182,108, 25, 82,175, 94,189, 68,158,231,143,214,174, 93,251,212,185, +115,231, 92,186,213, 64,243,230,205,213,217,217,217,173, 53, 26, 77,187,123, 89, 51, 56, 56, 88,207,243,252,255,133,134,134,142, +234,223,191,127,203,126,253,250,145, 38, 77,154, 32, 49, 49, 49,110,251,246,237,211, 90,183,110,125, 38, 37, 37,101,185, 70,163, +249, 54, 45, 45,205,165, 36,192,195,122,144,196, 31,119,211,166,213,221,111, 15, 33,196, 23,128,142, 82,154,238, 66,217, 32, 0, + 30,148,210, 43,255,182,230,157, 32, 52, 52,244, 60, 33,164, 86, 73, 61,108,245, 41,243,220,254, 81,146,164,162,164,164,164,134, + 85,105,214,171, 87,175,153, 44,203, 10,251,109, 42,149,227, 81, 11,162, 40,202,201,201,201,231,170,210, 36, 28,241,223,246,195, + 18, 31,173,146,131, 36, 83,200, 50,133, 4, 64,146, 0, 73,150, 33, 73, 20, 18, 5, 36, 42, 67,150, 0, 19, 47, 97,212,171,204, + 91, 49, 24,174,224,178,193, 34,132,144,184,184,184, 78,148,210, 23, 34, 26, 68, 14, 29, 60,124,180, 62,162, 81, 11, 20,202,222, +184,154, 37,227,196,222, 53, 0,176,206,157,147,239,220,185,179, 13,165,248,102,236,228, 5, 77, 91,197,180,197,159,169, 34, 14, + 39, 75, 40,186, 44, 65,169, 48, 65,150, 1, 74,169,197,221, 70,217, 72,201, 17,113, 48,145,135,130, 3, 56, 14, 80,112, 4, 10, + 55,239,211, 77, 19,190, 20,184,240,193,219,126, 61,150, 58, 16,186, 32, 24,115, 82, 97,204,201,216, 78,147, 55,220, 83,230, 42, + 36, 36,164, 91,131, 6, 13, 62,123,227,141, 55,234,164,167,167,215, 58,122,244, 40,180, 90, 45,252,252,252,148,254,254,254, 77, + 39, 79,158,156, 55,107,214,172, 9, 65, 65, 65, 39, 51, 50, 50,174,185,162,217,187,142, 38,170,117,116,244,239,227,222,159,230, + 99, 62,190, 29, 57, 63,253, 4, 5, 39, 67,237,105, 64,109,189, 7,222,123,172, 94,173,121,123, 83,126,238, 93, 75, 31,181,253, +150, 41,213, 21,205, 58, 1,181,123,134, 71, 54, 65,238,214, 37,184, 94,192,227, 84, 38,143, 30, 29,227, 80,207, 79,143, 40, 81, + 66, 45,157,170, 27,156, 24,172,208,208, 80, 63, 0,147,174, 93,187,198,169,213,106, 82,191,126,253,167,151, 47, 95, 78,155, 53, +107, 86,122,215,237,246,237,219,163,125,251,246,164,176,176, 48,234,240,225,195, 81, 27, 55,110, 20, 66, 66, 66, 18, 82, 83, 83, + 87, 57,210,109,208,160,225,117,139,197, 28,166,213,233,205,159,126,250,233,127, 31,126,248, 97, 89,163,209,224,118, 52, 1,160, +110,221,186,223,135,134,134,122, 76,157, 58, 53,171,109,219,182,180, 38, 52,235,215,175,255,107,199,142, 29,187,246,236,217, 83, +249,232,163,143, 34, 56, 56,184,116,159,191,191, 63, 58,118,236, 72,146,147,147, 91, 29, 60,120,112,201,175,191,254,186,168,126, +253,250,123,175, 94,189,218,179, 42,205, 18,154,220,230,126,123, 20, 0,102, 19, 66, 86, 80, 74, 15, 59, 42, 68, 8,137, 5,240, + 12,128,185,119, 73,179, 74,244,122,125,134,217,108, 14, 4, 0,157, 78,119,211,100, 50, 5, 57, 59,134, 16, 98,248,244,211, 79, + 3,213,106, 53, 56,142,131, 36, 73,144, 36, 9,178, 44,131, 82, 90,250,104,155,100, 52,115,230, 76,201,153,166, 44,203,220,130, + 5, 11, 84,122,189, 30, 0, 32, 8, 66,153, 71, 27,182,245,153, 51,103,186,244, 27,165, 85,114, 24,241,242,255, 61,196, 73,188, + 14, 0,100,133,198,220,227,133,143,143, 1,192,238, 85,147,202,108,127,127,246,210, 99,174,104, 50, 24, 12, 55, 12, 86, 76, 76, +204,182,222,131,158,239,245,112,167,158, 16,213,129, 72,188, 73,144,124,149, 66,169, 16,193, 65,198,149, 63, 54, 81,142,227,190, +181, 63,166,170, 25, 6,219,182,109,251, 79,189,200,214,115,222,153, 62, 91,241,103,134, 6,223, 28, 52, 65,178,228,193,148,117, + 25, 69, 55, 47,162,224,198,121,228,166,254,121,134,227,184,233,174,106,150,135, 82, 64,166, 20,132, 18, 64, 6, 0, 90, 28,198, +170, 80,174,106, 77, 42,145, 73, 9,191,126, 51, 48,102,192, 20, 92, 60,184, 26,160,220, 36,231,231,174,249,217, 21,142, 52,131, +131,131, 31,139,136,136,152, 55,122,244,232,208,211,167, 79,123, 27,141,198,162, 99,199,142,237, 79, 79, 79, 15,242,247,247, 79, +126,234,169,167, 30, 9, 12, 12, 12,236,212,169,147,199,206,157, 59,223, 5, 48,194,153,102,159, 32, 77,116,235,150,173,227,223, +158, 61,215, 51,235,231, 69,224,175,158,198,233, 44, 11, 46,220, 50,211, 32, 67, 62,233, 29,229, 11, 15,141, 18, 67, 99, 2, 12, +179,118, 37,127, 12, 96,184, 43,109, 15, 9, 14,106, 40,152, 76, 48,155,172,216,255,119,190,233, 88, 70, 78, 32,231,147,154, 57, +178,119,172, 78,145,149,134,218, 6,101, 35,119,218, 14, 20, 71, 1, 60, 60, 60, 42,221,231,227,227,131,246,237,219,163, 97,195, +134,170,103,158,121,230, 97, 0,171, 28,105, 90,173,214,186,169,169,105,104,220,164,177,182,123,247,238, 68,161, 80,128,231, 43, +246, 86,186,163, 9, 0,158,158,158,253, 98, 99, 99,149,223,125,247, 93,238,181,107,215,206, 14, 30, 60, 56,213,195,195,163,204, + 5,213,195,195, 3,245,234,213,195, 43,175,188,162, 26, 57,114,164, 83,205,160,160,160,199, 86,175, 94, 13, 66, 72,233,197,187, + 60,225,225,225,168, 83,167, 14,250,244,233,163, 28, 50,100,200, 99,246,251,202,107, 14,235, 65, 18, 81, 98,158,134,245, 32, 85, + 78, 45, 46,217,127,161,124, 36,171,188, 38,165, 52,155, 16,178, 12,192, 6, 66,200,208,202, 12, 17, 33,228, 81, 0, 63, 1,232, + 77, 41,189, 89,126,127, 85,154, 26,141, 70,109,181, 90,253,128,178,198,199, 93, 77,187,186,208,132,132, 4,196,197,197,193,254, +209,108, 54,151, 26, 33, 66, 72, 96,101,199, 86,166,169, 80, 40,176,116,233, 82,112, 28, 7,181, 90, 13,149, 74, 5,181, 90, 93, + 97,137,137,137,169, 76,178, 82, 77,149, 74,133,165, 75,151, 66,146, 36,238,218,181,107, 47, 72,146, 52,192,108, 54, 7,234,245, +250, 76,181, 90,189,181,115,231,206, 95,107,181, 90,209, 29, 77, 81,166,224, 36, 94,183,123,231,102, 79,139,197,130,190, 3,158, + 44,221, 87,126,187, 84,201, 39,227,223,252,173, 99,154, 15,182,166, 19,218, 2, 8,176, 91,231, 1,216,254,173,102,161, 56,237, + 84,237,114,219,237,203,217, 30, 51, 75,182, 7,148, 28, 71,237,116, 51, 1,252, 81, 83, 21, 86, 2,197, 63, 44,148, 82, 98,123, +116, 80,214, 59,197,228,139,194,171,254, 80,114, 50,148, 10, 2,165, 2, 0, 8,178, 83,206,131, 47,202, 62,116,252,248,241,171, +174,156,116,199,142, 29,237, 35,154, 61,244,241,244, 15, 63,225,190, 62, 96, 66,158,209,140,172,115,155,145,126,236,171,116, 89, +180,110,230, 56,238, 56,199,113, 39, 98, 91,181, 76,172, 91,183,174,211,127,118,142,144, 41, 32,217, 27, 43, 25, 32,112, 63, 45, + 5, 77, 89,127, 57,184,243,123,101,214,171, 91,167,154, 38, 52, 52,180,119,100,100,228,236,209,163, 71,135,159, 56,113,194,171, +160,160, 32,115,247,238,221,137, 86,171,245, 36,199,113, 11,211,210,210, 58,175, 94,189,218, 99,226,196,137, 61,155, 52,105,210, +228,215, 95,127, 53, 58,211,236, 19,224,217,170,207,176,167,227,187,191,252,154,238,236,250,197,208, 93, 56,129,159, 46,229, 73, +231,111,242,239,194,219,252, 25,189,161,125,180,128,151,118,189,212, 46,136, 11, 52,168, 80,199, 75,213,197,213,250,170,148,106, + 37, 85,234,192, 91, 68, 24,173, 18,191, 47,147, 22,125,240, 88, 75, 43,245,244,215, 1,128,146, 16,167,166, 63, 37, 37, 37, 39, + 56, 56,248,227,136,136,136,247, 8, 33,180, 83,167, 78,231,226,226,226,138,100, 89,134,201,100,130,213,106,133, 74,165,130,201, +100, 66, 82, 82, 18,142, 30, 61, 10, 31, 31, 31,103,178,101,200,205,205, 69, 68, 68, 4, 60, 60, 60,110, 91, 83,150,101,178,100, +201, 18,221,217,179,103,117, 27, 54,108,168,245,159,255,252, 39, 47, 38, 38,230,252,192,129, 3,147,107,213,170,101, 61,117,234, + 20,226,227,227,145,147,147,131,135, 30,122,200, 37, 77,171,213, 10,165, 82, 9,147,201, 4,173, 86, 11,165, 82, 9, 81, 20, 33, +203,114,169,233, 42, 44, 44,196,173, 91,183,160, 82,169,156,222,136,221,102,150,134,245, 32,244,199,159,126,191, 9, 73, 6,164, +124, 1,214, 60, 1, 98,158, 0, 33, 79,128,144, 43, 12,123, 99,126,171, 31,119, 59,252,141,168, 0,165,244, 8, 33,100, 40,128, +159,202,155, 44, 59, 35, 52,148, 82,122,202, 93, 77,171,213,122,200,102,124,116, 58, 93, 32, 33,197,198, 80,171,213, 10, 22,139, +165,171, 59,154, 0,144,144,144,128,216,216, 88, 69,137, 38,181, 61,150, 44,110, 65, 8,129, 66,161,128, 74,165,130, 66,161, 64, +108,108, 44,250,245,235,135, 38, 77,154, 32, 37, 37, 5,251,246,237,195,197,139, 23,161, 86,171,203,116, 29, 58, 67,165, 82,129, +227, 56,238,194,133, 11, 95,119,239,222, 61,114,220,184,113,154,122,245,234, 33, 49, 49,177,206,146, 37, 75,158,223,179,103, 79, +231, 65,131, 6, 61, 15, 64,172,170,251,208, 30, 73,254,167,121,231,207,159,175,180,140,109,123,101, 6,139,193,168, 41,156,120, +145, 0, 66,200, 86,219, 10,165,180,175,109,125,242,228,201,239,204,158, 61,251, 44, 33,100,171,253,118,251,114,246,143, 37,231, +218, 74, 41,237, 59,101,202,148,232, 57,115,230,204,178,149,173,201,246,184, 28,193, 82, 40, 20,131,255,220,241,217,145, 70, 86, + 26, 30, 20,253, 4,138,127,115, 8, 0,138,164, 83, 59, 32,203,242, 42, 87,116,226,227,227,117,162,140,175, 39,190, 51,147,251, +114,175, 9, 25, 55,210,144,182,127, 46, 76, 55,207,127,163,215,235,223,238,222,171,239,109, 13,246, 5,128,184,184,184,104,223, +218,117, 96,177,210, 18,131, 5,216,155,172, 7,133,224,224,224,126,145,145,145, 51, 55,111,222, 28,110, 50,153,188, 14, 31, 62, +156,187,107,215,174, 75, 86,171,117,101,122,122,250,247, 0, 64, 8,217,172, 84, 42, 63,160,148,194, 96, 48, 40, 21, 10,133,222, +246,233,173, 76,179,167,191, 71,236,224,103,159, 57, 52,242,147,101,186, 75,127,158,194,162,117,219, 16,168, 20,164,164,124,203, +192,237,153, 22,219,135,246,183, 23, 27,122,167, 82,138, 48, 21, 71,224,173, 87,213, 25, 22, 74,116, 63,166, 80,179,179, 58,215, + 14, 13,231,196,144, 6, 56,104,180, 64,229,161,214, 0, 64, 80,163,230,138, 83,249, 34, 14, 31,251, 11, 68, 91, 75,237, 74,219, +211,210,210,166,134,132,132, 68,236,218,181,139, 51, 26,141, 69,167, 79,159, 70,237,218,181, 17, 24, 24, 8,111,111,111, 36, 38, + 38, 98,247,238,221,184,112,225, 2, 40,165, 14,163, 4,142,200,200,200, 64,126,126,126,141,104,138,162, 72, 0, 32, 58, 58, 26, +209,209,209,154,212,212,212,192,173, 91,183,250,205,154, 53,235, 70,221,186,117,119,154, 76,255, 12,143, 42,223,221,227, 8,139, +165,184,231,220,108, 54,195, 98,177, 64,173, 86, 67,167,211, 65,173, 86, 35, 63, 63, 31, 25, 25, 25, 40, 40, 40, 0, 0,248,250, +250,150,150,119, 9, 73, 6,142,116, 56, 94, 97,123,200, 11,149, 70,111,156, 65, 41, 61, 92, 98,178,126, 35,132,216,222,223,140, +146,199, 74, 35, 91, 46,106,150,174, 91, 44, 22,251, 40,147,170, 58,154,113,113,113, 54,141, 50,191, 18, 58,157,238,166, 45,114, +165,211,233, 42, 68,196, 42,195,214, 45,168,209,104, 16, 29, 29,141,183,223,126, 27,137,137,137, 56,116,232, 16, 2, 3, 3,241, +248,227,143, 67,169, 84, 34, 57, 57, 25, 28,199,185,100,176,212,106, 53, 4, 65,192,165, 75,151, 94,232,214,173, 91,131, 69,139, + 22,105,174, 93,187,134,196,196, 68,120,123,123,227,131, 15, 62,208, 78,154, 52, 41,116,231,206,157, 35, 91,183,110,189,212,213, +118, 83, 55,126, 19, 37,129, 57, 44,198,221,165,188, 9,178, 25,167,217,179,103,247, 45,191,173, 50,195, 84,126,251,156, 57,115, +102,217,173,215,232, 44,246,210,212, 9,182,127,127,142,144,101,185,174,111, 64, 72,173,209,195, 31,135, 44, 3,162, 12,136, 18, +133,201, 88,132, 27,137,123,141, 60,207,255,228,202, 9,179,179,179, 63,120,241,205, 57,145,199,175, 43,145,158,195, 35,101,207, + 76,106,201, 74, 28,210,175, 95,191, 17,221,187,119,175, 17,115,229,231, 31,188,239,253,185, 95,225,143, 43, 60,100,250, 79, 36, + 75,146,139,159, 63, 8,132,132,132, 52,242,243,243,251,100,211,166, 77, 17, 26,141,198,235,242,229,203,210,254,253,251,211, 4, + 65, 88, 98, 51, 87, 0, 16, 28, 28,252,108,139, 22, 45, 4, 79, 79, 79,152, 76, 38,179, 32, 8,133, 14,205, 85,176, 62,180, 69, +235,102, 7, 70,126,178, 76,103,230,121,228,153, 44,136,168, 23, 34, 93,201,183, 12,220,158, 81,106,174,208, 59, 80,255, 72,139, + 6,117, 67, 56,189, 23, 0, 32,163,208,154,230,138,185, 2, 0,157,183, 15, 23,218,166, 11,218,188,241, 57, 44, 74, 31, 10, 0, + 62,129,117,185,174,175,124,132, 94,159,237,135,160, 52,184, 99,129, 77,141, 27, 55, 46, 29,119,149,157,157,141,243,231,207, 35, + 47, 47, 15,139, 22, 45, 66, 98, 98, 98,233, 69,215,108,118,169,122, 21,168, 9, 77, 89,150,203, 92, 61, 67, 66, 66, 48,118,236, + 88,149,201,100,242,180, 55, 87,238,104,242, 60, 95, 90, 15, 74, 41,120,158, 71, 94, 94, 30,120,158,199,165, 75,151, 74,205, 21, + 0, 72,146, 84,105, 87,167,227, 10,231, 85, 30,238, 18,178,171, 61,238,176,196,240,168,237,198, 29, 5,161,154,230,202, 70,137, +241,113, 57,250,227,140,132,132, 4,160,146,104,149,201,100, 10,162,148,146,132,132, 4,184, 50,254,202, 6,165, 20, 26,141, 6, +253,251,247,199, 95,127,253,133,212,212, 84, 40, 20, 10, 88, 44, 22, 88, 44, 22,196,198,198,150, 70,176,220,129, 82,218,251,245, +215, 95,215, 93,189,122, 21,217,217,217,224, 56, 14,162, 40, 66,146, 36,140, 28, 57, 82,199,243,124, 47,119,244,220,241, 76,210, + 29, 76, 76,205, 96, 0,149,123, 17, 66,200, 40,187,231, 91,203,239,119,135,242, 17, 46, 27, 83,166, 76,137, 6,160,189, 29,237, +242,148, 26,172, 42,186, 6, 17, 23, 23, 23,227,235, 31,178,119,202,172, 21,134, 13,167, 21,184,149,126, 1,201, 39, 54, 65,148, +255,159,189,243, 14,107,234,236,255,240,231, 57,217, 9,132, 29, 70, 2, 34, 10, 34,136, 40,178, 20, 68,177,213,186, 71,219,215, +109,181,182, 86,237, 91,173, 85, 91,103,221,226,168,214,213,241,218,214, 58,234,104,213,159,181,238,189,113, 2,138, 11, 17, 21, +196,176,145, 77, 32, 36, 57,207,239, 15,192, 34,101,132, 97,173,246,220,215,149, 11, 60, 57,185,207,115, 0,147,207,249, 62,227, + 0,201,247, 46,128, 26,116,255,119,251,246,237,130,234, 94, 95,206,145, 35, 71, 90, 56,185,251,125,218,214, 55, 16, 71,110, 22, +227,105,244, 14,104,179, 30,125,223,187,119,239,223, 27,227,100,124,125,125,189, 44,173, 29, 78,207, 92,250,163,213,190, 91, 2, + 60,126,116, 15,167,215,246,195,209,229,111,226,240,178, 55,113, 96,201, 27,248, 99,241, 27, 0,112,176, 46,222, 80, 66,248, 46, +150, 37,232,230, 73,160,180, 41, 4, 9,173,189, 27,235, 69,163, 86,171,239, 3,216,252,227,143, 63,230,157, 63,127,222, 48,110, +220,184,216,156,156,156, 69, 73, 73, 73, 59,202,247, 41, 27,248, 62,117,193,130, 5,238, 6,131, 1,103,207,158,189,207,227,241, +170,237, 95, 62,154,164,121,114,247,214,237,239,174,236,216,128,168,107, 87,241,199,130, 41,250, 59,183, 99,250, 30,173, 24,174, +236, 69, 30,222, 45,155,237, 31,241,241,120,134,136, 77, 16,151, 89,140,244, 2,221, 9, 99,219,157,158,175,209, 9,196, 82,152, +218, 55, 69,146,134, 21,170, 84,170,203, 73,185, 26, 33,195,227,131,225, 11,145,152,163,173,211,135, 56,203,254, 53,143, 85, 14, + 45, 0,106,237, 34,171,141,134, 56,203, 43, 88,149,209,233,116,127,217,110,172,179, 98,192,170, 72, 85, 99,177, 88,150,173, 91, +192, 42,201,173,250,119,160,173,127,192,170,104, 41,123,160, 33,225, 10, 40, 13, 62,229, 21, 37,177, 88,252,172,171,205,216, 42, + 83,101,124,125,125, 27,244,124, 69, 8, 33, 96, 89, 22, 2,129, 0,110,110,110,200,201,201,129,153,153, 25,228,114, 57, 76, 77, + 77, 33, 22,139, 97,103,103, 7,145, 72, 4,134, 97,192, 48,198, 45, 19,168,211,233,160,213,106,237, 29, 29, 29,145,159,159, 15, +137, 68,242,236, 33, 18,137,224,238,238,142,252,252,252, 58, 85, 26, 89,131,241,215, 52, 85,252,119,227,224,104, 84,170,202, 34, + 21, 87,114,111,140,110,188,170, 28,101,221,132,210,134,186, 43, 82,107, 80, 40, 15, 87,211, 22,255, 96,182, 51,146, 65,118,114, + 12, 18, 14,207,204, 51,148, 20,102,177,172,206, 57,235,193,121,160,194,128,220,154, 96, 89,214, 63,232,141,254,204,233,187, 90, +148,228, 37, 33,247,214,175,241, 98,177,120,122, 3,207,161,188,157, 94,150,214, 14,167,167, 47,249,209,106,207, 13, 62,158, 38, +221,195,131,131, 51,114, 12, 37,133,111, 68, 68, 68,212,121, 29,173,177,132, 8,214, 83,170,235,111,107, 59,192,201,201,110,249, +232,119,228,232,212, 85, 10, 51,161, 25, 22,124,197,220,181, 11, 38, 83, 83, 47,208,125,196,151, 8,104, 4,125, 41, 51, 10,111, +221,186,181,216,205,205,141,209,235,245,163, 75, 74, 74,230, 37, 37, 37, 61,171, 34, 42,149,202,110,206,206,206,203, 23, 46, 92, +232, 24, 31, 31, 47,186,116,233,210,211,168,168, 40,214, 96, 48, 44,173,201,121, 48, 69,243, 69, 15, 91, 49,207, 81,169,156,160, + 86, 39,245, 59,156, 94,124,184,252,185, 94,118, 34,175, 54,173, 90, 93,152, 50,107,154, 92,123,105, 55, 10, 83,159, 96,235,181, +180, 92, 62,203,204, 48,166,189, 42,149,202, 42, 64,206, 96,249,127, 71,179,121,121,121, 48,147,136,216, 39, 55,227,120,147,123, +135, 26,254, 55,251,115, 38, 37, 37, 5, 69,133,133, 60,149, 74,101,165, 86,171,159, 26,227,172, 42, 80, 84, 85, 5,170, 83,192, +168,130,134, 56, 43, 87,176,202,169, 42, 96, 25,235,172,216, 37, 86,145,170,126, 30, 6,131,161,110, 93,132,250,106, 2, 86, 73, +122,195, 82, 42,240,152, 16,210,164,252,251, 6,186, 0, 0, 69, 69, 69,182, 21,186, 6,107,188, 80,172,141,178, 10, 86,189,159, +175, 76,121, 5, 43, 46, 46, 14, 10,133, 2,122,189, 30, 38, 38, 38,144, 74,165,144, 74,165,208,104, 52, 16,137, 68,224,241,120, +181,203, 42, 32, 22,139, 83, 98, 98, 98,156, 45, 45, 45, 97, 48, 24,158, 11, 89,143, 30, 61,130,185,185,121,154,177,227,175,128, +231,199, 96, 1,128,133,185,137,224,228,134, 73,157,203,191,127,126,223, 58, 53,149,131,163,209, 41,175, 62, 85, 28, 75, 53,125, +250,244,153,245,245, 77,159, 62,125,102, 67,171, 98,213,193, 7,254, 76,140,149,223,156,124,125,125,125, 44,172,149,167,166, 46, + 92,111,182,237, 26,131,156,228,187, 72, 58, 62, 59,135, 45, 41,124,131, 97,152,228,196,240, 31,118, 1, 40,140,140,140, 60, 99, +204,193, 12, 6, 67,187,150, 45, 90, 96,231, 45, 61,138, 82,110,128, 33,116, 83,215,174, 93,107, 29,116, 93, 27,229,225,234,139, +176, 31,172,118, 70,241,145, 85, 26, 2,115,216,122,132,171, 97, 98,177,171,128, 97,150,187,118,104,215,123,136,157, 77,126, 47, + 87,153, 69, 47, 87, 49,120,151,126,199, 62,101, 26,158,218,156,196,248, 85, 42,215,240,189,185,127, 52,121,147,255,180, 95,167, +182,102,202,206,252, 3, 58,106,248, 34,253, 44,253,219, 7,191,223,191,127,127,161,189,189,253,158,148,148,148,103,163, 83, 29, + 29, 29,123, 54,109,218, 52,108,193,130, 5, 77, 19, 19, 19,229,215,175, 95,207,221,181,107,215, 35,134, 97, 22, 36, 39, 39,215, +122,117,127, 56,173,120, 74,111, 7,209, 79,135,210,181, 49,229,219,122, 41, 76,218,244, 30, 52,228, 98,135,129,163, 36, 15, 78, +111,134,213,147,219,216,124, 61,195,144,158,167, 29,122, 36,163, 56,165, 54,167, 74,165,178, 18,137, 68, 59,103,111,219,125,191, +117,235,214,164,176,176, 16, 58,157, 14,233,233,233,152,182,225,215, 91, 44,203,194,210,210, 18, 39, 78,156, 96, 63,253,244,211, +157, 42,149,106,160, 49, 33,139,101,217,103, 31, 86,229, 84,174, 2, 73,165,210,186, 5,140,178,215, 84, 12, 48, 13,113, 86, 23, +176, 42, 87,182,234,232, 4,128,103,131,219, 43,111, 47,135,199,227,129,101,217, 42, 43,125,213,162,203,174, 38, 96,165, 53,232, + 66,130, 82,234, 92,203, 68,154,151, 70,217, 82, 12, 0,192, 86,183, 20, 67,133, 49, 90,181, 82,222,237, 39, 18,137, 16, 30, 30, +142, 30, 61,122,128,101, 89,136,197, 98, 72,165, 82, 72, 36, 18, 92,185,114, 5, 66,161, 16, 60, 30,175, 78,221,132, 2,129,224, +208, 55,223,124, 51,106,233,210,165, 82,150,101, 33, 18,137, 32,149, 74, 33, 22,139,241,245,215, 95,107, 68, 34,209,225,186, 5, +172,231,255, 54,182,108,218, 32, 18,139,197, 34, 99,246,229,224,104, 76,170,203, 34,101,164, 87,170, 60,105, 43,252, 59, 29,165, +247, 86,238, 83,246, 61,170,248, 94, 91,197,182,204, 37, 75,150,156,170, 48,126, 43, 29,141, 72,181, 21, 44, 31, 31, 31, 15, 43, +133,227,169,201, 11,215,155,109,190,204, 67, 78,242, 29,100,156,250, 50,135,234, 53, 21, 67, 75,199, 58, 30,207,199,214,214, 26, + 25,225, 69,208,101,221, 7, 33, 36,178,254, 77, 47, 37, 32, 32,192,205,194,202,254,244,212, 69, 63, 88,109,143,224, 35, 59,233, +207, 16, 88,159,202, 21,159, 97,190, 90,121,228,215,126,226,148,187,208,220, 56,109, 33,120,250, 4,183,210, 74,176, 51, 60, 37, +239,244,133, 31,207, 51,158, 52,228,141,161, 22,166,111, 12,181,194,234,241,135,173, 82,139,110,227,114,236,254,254, 97, 51,246, + 83,188,164,213,221, 43,134, 43,165, 82,217,215,209,209,113,254,129, 3, 7,156,245,122,189,252,236,217,179,121,187,118,237,122, +160,215,235,215, 38, 39, 39, 31, 48,214,121, 32,249,207,112,245,150,141,172,221,160,145,195,206,191,191,252,123,201,237,136,171, + 88,190,249, 0,156,100, 6,195,189,180,226,129,135,211,139, 15, 25,227,227,243,249, 11,182,111,223,110,226,233,233, 73, 50, 51, + 51,159,125,224,151,148,148, 32, 55, 55,247,217,248,161,214,173, 91, 51,115,231,206, 53,153, 51,103,206, 2, 0,255,173,201, 73, + 41, 77,155, 63,127,190,237, 71, 31,125, 4, 51, 51, 51,100,102,102, 66,167,211, 61,171, 54,137,197, 98, 88, 88, 88, 32, 59, 59, + 27,199,143, 31, 71, 85, 83,246, 43, 34, 20, 10,147, 85, 42,165,147, 84,102,162,149,201,100,212,212,212,180,193, 78, 0, 32,132, +164,244,234,213,203,126,254,252,249,162,138,221, 76, 37, 37, 37,164,190, 78, 74,105,225, 91,111,189, 37, 91,187,118, 45,156,157, +157,161,213,106,193,178,236,179, 10, 86,249,210, 0,143, 31, 63,198,226,197,139, 65, 41, 53,254, 66, 70,151,165,131,227, 72, 5, + 74, 50,117, 40,201,212, 65,155,161, 67, 73,154, 14,250,194,127,220,167,107,125, 6,160, 87, 69,165, 74, 88,149, 93,108,117,169, + 96,149, 85,211, 32, 20, 10,145,152,152,136, 19, 39, 78, 32, 32, 32, 0,114,185, 28, 5, 5, 5,184,120,241, 34, 82, 82, 82,234, + 85,193,122,227,141, 55, 54, 29, 61,122, 52,228,147, 79, 62,113, 25, 55,110,156,212,195,195, 3,241,241,241, 88,181,106, 85,209, +157, 59,119,212, 19, 39, 78,252,177, 46,190,242,170, 84,121,184,175,110, 38, 33, 80, 58,238,150,131,227, 37,209,104,203, 39,252, + 93, 84, 27,176, 24,134,249, 44,240,221, 89,102,155, 46,241,145,165,190,133,156,115,115, 43,135,171, 90,169,124,183,109,129, 68, +222, 90, 79,133, 0,138,160,207,126, 0,145, 72, 84,231, 0, 84,217,201,178,236,148,246,239,206,178,218,114,149,143,156,164, 59, + 72, 63, 61,167,206,225,170,220, 57,150, 16,129, 91,144, 95,111,113,234, 61, 20,157,222, 1, 2,224,167,168, 2, 92,124,162,253, +186, 68,171, 93,116, 59,167, 56,219,177, 3,177,220, 17,150, 54,167,231,219,222,159,186, 15, 62,142,203,233,223, 3, 50,192, 82, +193,239, 89,177,187,240,101,220,189, 92,165, 82,185,201,229,242,175, 14, 29, 58,164, 16,137, 68,102,183,111,223, 54,236,222,189, + 59,209, 96, 48,172, 76, 78, 78,222, 81,213,107,106,115,190,165,148, 58,186,185, 57,159,121,127,233,183,146,188,252, 2, 20,104, + 75,224,214,204,201, 16, 21,125,251,221,163,105,218,189,198, 56,237,236,236,186, 12, 27, 54,172,141,175,175, 47, 83, 93,184,202, +205,205, 69,126,126, 62,158, 60,121,130,144,144, 16,198,195,195,163,181,157,157, 93,151,212,212,212, 83,213,181, 51, 57, 57,121, +222,142, 29, 59,130,127,251,237,183, 62, 99,198,140,145,191,243,206, 59,144, 74,165, 40, 40, 40,128,147,147, 19, 88,150,197,185, +115,231, 16, 27, 27,155, 7, 96,127,114,114,242,133,154,218,249,240,225,131, 38,132, 16,198,209,209, 49,184, 71,143, 30,141,226, + 4,128,244,244,116,215, 51,103,206, 76,235,223,191,255,164,238,221,187,203,103,206,156, 41,116,113,113,129,193, 96, 32,245,117, +102,101,101,153, 71, 70, 70,174,232,216,177,227,127,123,244,232,193, 15, 11, 11,131,185,185, 57, 12, 6, 3,164, 82, 41,114,115, +115,177, 96,193, 2,156, 63,127, 94, 79, 41,253, 54, 39, 39,103,106, 77,206,231,214,193,154,248,117,219,170,126,175, 21,246,173, +114, 29,172,151,241, 55,175,209,104,236,234, 90, 21, 51,166,157,145,145,145,180,242,122, 88, 53, 85,176, 42, 59,203,199,131,137, + 68, 34,240,249,124,164,167,167,227,232,209,163,207,173,127, 37, 18,137,158, 45,227, 80, 85, 5,171,186,118,202,229,114,246, 63, +255,249,207,232, 67,135, 14,141,154, 50,101, 74,255,188,188, 60, 91, 51, 51,179,116, 19, 19,147,253, 19, 39, 78,252,217,194,194, +162,218, 37, 26,170,114, 26,104,233, 34,162, 21,215,191,170, 10,150, 39, 42, 98,171,152,114,248, 50,126,239,156,243,245,116,190, +110,212, 52, 6, 75,114, 33, 34, 22,140, 56, 13,121,151,191,170,115,184,170, 10,125,113, 65,220,194, 95, 31,250, 24,180, 26,232, +115, 19,238,245,232,221,171,222, 87,156,229, 80, 74, 77,206, 71,198,129, 47,201, 68,246,165,101,217,196, 80,252, 70, 68, 68, 68, +157,214,191, 41,103, 61,165,186,225, 38, 38,167, 31,156, 63,241,166, 18, 64,194, 83, 45,174,199, 60, 61,186,167,176,112, 74,249, + 62, 79, 46,210, 44, 0,147, 28, 58, 49, 45,173, 90,228,116, 51, 87, 2,105,143,117,200, 74,215, 31,122, 89, 99,177,202, 81,171, +213,247,189,188,188, 54,111,216,176, 97,124,187,118,237, 76, 39, 76,152, 80, 62,240,253,183,250, 58,143, 38,105,158,244,176, 21, +127,127,225,231,213,159,243,220,253,113,116,249, 76, 67,244,205, 59, 3,142,166,105,141,238,179, 22,139,197,161,227,199,143, 23, + 22, 22, 22, 86, 27,174,114,115,115,145,151,151,135,220,220, 92, 92,191,126, 29,239,188,243,142,248,238,221,187,161, 0, 78, 85, +231,165,148,178, 0,206,185,186,186, 94,249,254,251,239,187,110,217,178,165,219, 7, 31,124, 32, 10, 13, 13,197,237,219,183,113, +229,202, 21,109, 73, 73,201, 49,137, 68,114, 60, 46, 46,206,168,193, 77, 47,200,169, 7,176,216,198,198,102,237,174, 93,187, 22, +157, 60,121,114,196,168, 81,163, 76,244,122, 61,105,160,115,146, 66,161,152,125,240,224,193, 77, 71,143, 30, 29, 48, 98,196, 8, +102,226,196,137, 88,183,110, 29,118,239,222,205, 26, 12,134,189, 2,129, 96,100,122,122,122,173, 19, 80,158, 91, 7,171,134,117, +174,106,123,222, 8, 94,196, 85,104,131,157,149, 43, 97,237,218,181,179,171, 56, 75,179,226,215,186,208,166, 77,155,231,214,185, + 42, 31,208, 94,254,224,241,120,224,243,249,117,234, 34,244,242,242,130, 64, 32, 96,125,124,124,126, 6,240, 51,240,252, 45,115, + 4, 2,193,179, 69, 77,141, 65, 83,100,192,172, 37,223, 95, 97,217,210,241, 88, 6, 67,233,108,193,210,153,215, 44, 88, 22, 48, + 24, 40, 88,202, 66,167,231, 42, 88, 28, 28,198, 82, 83,192,154,153, 31,177, 70, 7,192,154, 16, 50, 35, 34, 34,162,198,123, 90, + 25, 3,143,199,204, 72,219,247,254, 90, 10,100,241, 8,140, 26, 24, 93, 27, 6,131, 97, 86, 65,228, 90,150, 82,106, 65, 8,153, +126,237,218,181, 6,181,147,234,245, 31,127,245,227,185,175, 21,230,162,110, 25,217,197, 7, 65, 72,149,171,182,235, 65, 63,249, +101,217,227,101,150, 10,126,207,172,116,253, 33,150, 65,173,171,187,255, 29,220,186,117, 43,204,205,205,141,247,191,255,253,111, +180, 86,171,125,110,224,123,125, 57,156, 86,252, 69, 15, 91, 49,207,185,137,227,132,132,132, 39,253,141,237, 22,172,128, 72,165, + 82,221, 42, 44, 44, 4, 33, 4,197,197,197,207, 5,170,138, 1,171,164,164, 4,105,105,105,112,113,113, 65,133, 53,147,106,164, + 44,148, 28,176,177,177, 57,187,102,205,154,222,235,214,173, 11, 98, 89, 54,188,164,164,228, 64, 70, 70, 70,126,221,207,248,197, + 56,203, 94,247,169, 76, 38, 91,186,110,221,186, 21, 18,137,196, 47, 45, 45,237, 76, 67,156,101,225,233, 93,107,107,107,229,230, +205,155,119,110,216,176,161, 61,159,207,191, 68, 8, 25,152,157,157, 93,159,155, 61,223,107,224,243,181,177,187,129,175,127, 33, +206,186, 44,191, 96, 12,122,189, 62,127,198,140, 25,105,149,239, 57, 88,113,205,171,138, 95,181, 90,109,173,235,115,232,245,122, +246,203, 47,191,172,241, 34,174, 98,208, 42, 42, 42,170,181, 75,151,178, 52, 99,220,132,186,221, 91,144,178, 52,163, 78, 47,224, +224,248,151, 82,109,192,138,136,136, 72, 4,240,126, 99, 30,172, 71,143, 30, 39, 0,120, 52,166,243,250,245,235, 9, 0, 70, 52, +150,111, 91,113,113, 28,128, 62, 99, 9, 17,252, 66,171,175, 72,149, 13,104,127,251,101,206, 34,172,142,170, 6,190, 55,148,242, +129,239,135, 43, 12,124, 55, 22,189, 94,127, 68, 44, 22,147,220,220, 92,148,148,148, 32, 47, 47,239, 89,184,170, 24,178,244,122, + 61, 8, 33,200,203,203,131,169,169, 41,116,186,186,173,106, 88, 22, 82,118,132,134,134,238, 58,125,250,116,157,111, 60,254,119, + 57, 11, 11, 11, 83, 0, 12, 11, 13, 13,229, 55,150, 51, 51, 51, 51, 9, 64,144,171,171,171,200,216, 42, 88, 85,212,118, 35,103, + 99,111,244, 92, 3,255,107,224,235,171, 98,107,237,187,252,189,196,199,199,123, 54,182,243,241,227,199,141,246,255,185,156,248, + 75, 91,184, 59, 55,115,112,188, 32,254,182,245,156,230,206,157,251,143, 27, 32, 91, 19,235,107, 8, 87, 21,249,167,133,171,114, + 26, 51, 92,149, 83,113,224,123, 93, 80,171,213,167, 0,192,214,182,116,236,176,147,147,147,177,175,171,207,225,208, 88,161,229, + 85,116, 54, 36, 92,253, 29, 80, 74,235, 85,169,171,197, 89,235, 44, 86, 14, 14, 14,142,191, 27,227, 86,183,227,224,224,224,224, +224,224,224,224, 48, 26, 2,160,117, 85, 79,212,101,118, 0, 33,164, 74, 71, 77,212,230,231,156,156,147,115,114, 78,206,201, 57, + 57,231,235,231,172,205, 93,105, 70,238, 71, 21, 87,114,127,149, 32,245,153, 25, 99,180,252, 21,153, 26,202, 57, 57, 39,231,228, +156,156,147,115,114,206,151,235,172,230, 56,175,108,192,226,186, 8, 57, 56, 56, 56, 56, 56, 56, 56, 26,153,151,126,211, 98,142, + 87, 3, 71, 71,199, 37,129,129,129, 31, 95,189,122,117,229,227,199,143, 23,212,211,161,180,182,182, 94, 12, 32,136, 82, 42,230, +241,120,119, 50, 50, 50,194, 18, 19, 19,207,213,183, 93, 74,165,210, 73,161, 80, 44, 6,208,158,101, 89,161, 64, 32,184,149,154, +154,186, 72,173, 86, 95,170,175, 83,161, 80,152, 56, 56, 56,248, 81, 74,109, 41,165,140, 64, 32,200, 82,171,213,215,211,210,210, + 26,188,110, 27, 7, 7, 7, 7,199,191,131, 26, 3,214,252, 9,196, 1, 37,224,207, 93, 79, 19, 1,128, 16, 98, 6,192, 15,165, + 75, 45,220, 5,112,141, 82,154,219,144, 6,188, 42,206,127, 58,132, 16,198,194,194,226, 45,153, 76,246,105,126,126,190,143,153, +153,217,173,178,219,227,236, 47, 91, 60,179,222,216,218,218,218, 14, 26, 52,104,250,154, 53,107, 48,122,244,232,217, 54, 54, 54, +171,234,186,110,147,167,167,103, 63,149, 74,181,126,225,194, 69,138,128,128, 0, 34,145, 72, 16, 23, 23,167,154, 53,107,102,187, +118,237,218,237,140,140,140,172,241,182, 56, 85,225,229,229, 53,208,217,217,121,109, 88, 88,152,194,207,207,143,240,249,124, 68, + 71, 71, 59,206,159, 63, 63,192,199,199,103,115, 84, 84,212,148,218, 45,207,211,186,117,107, 23, 87, 87,215,160, 69,139, 22, 73, + 2, 2, 2, 32, 22,139,113,231,206, 29,147,153, 51,103, 42,218,181,107,119, 63, 50, 50,242,114, 93,124,190, 99, 35, 5, 66, 89, + 9, 31, 0, 74, 10,133,250,136,245,237,116,198,110,171,107,219, 57, 56, 56, 56, 56,254, 57, 84, 27,176, 22,140, 39, 11, 24, 96, + 38, 24,144, 73, 67,201,111,235,126, 99,174,116,237,218,181,229, 7, 31,124, 64,202,110, 29,225,185, 99,199,142,119,121, 60, 94, + 12,203,178,151, 1, 92,167,148,150, 84,231,171, 72,217, 2,146,109, 25,134, 9,252, 39, 59, 95, 5,228,114,185,155, 66,161,152, + 98,109,109,221,211,207,207, 47,119,220,184,113,241,151, 46, 93,122,232,239,239, 95,180, 97,195,134, 48,157, 78,247, 93,139, 22, + 45,142,229,229,229,173,168,239,210, 13, 2,129,192,131, 16, 2,181, 90, 13,129, 64, 32, 16,137, 68,158, 0,140, 14, 26, 78, 78, + 78, 14, 74,165,242,127,191,253,126,196, 54,183,152,193,253,116, 22, 64, 33, 12,140, 13, 22, 46, 95,103,189, 98,241,236,161, 45, + 90,180, 56, 31, 27, 27,251,171,177, 78,165, 82,233,228,236,236,188,246,228,201,147,182, 98,177, 24, 44,203, 34, 47, 47, 15,182, +182,182, 88,178,100,137,213,194,133, 11, 63,112,113,113, 57,251,232,209,163,125,198, 58, 21, 10,133,137,171,171,107,208,169, 83, +167, 36, 34,145,136,232,116, 58, 82, 92, 92, 12,123,123,123,250,245,215, 95,139,103,205,154,229,238,226,226,146,242,232,209,163, +199,198,248,124,127,136, 20,228,102,156,234, 64, 19, 53,179, 1,128, 72,164,139, 66,231, 91, 93,201,205, 56, 21, 80,219, 54,223, + 31,112, 49,226, 35, 46,100,113,252,189, 40,149,202, 96, 23, 23,151,223, 31, 63,126, 28,206,227,241, 6,199,199,199,215,237, 46, +233, 85, 64, 8,113, 4,224, 2,192, 18,165, 19,171,158, 2,136,167,180,244,194,189, 62,216,184,118,233, 11,177,236,125, 80,218, +150, 1, 0,134,185,206,150, 20,108,204,184,119,202,232,255,239, 85, 58, 37, 38,163,193,178,109, 25, 80, 22, 12,239, 6,213, 23, +252,152,126,247, 84, 93, 23, 86,230,224, 0, 80, 77,192,154,255, 33,177,100, 4,152, 54, 99,220, 71, 12,159,199, 35, 97,235,127, + 24,114, 53,124, 31,117,104,210,246,217, 45, 55, 66, 66, 66, 16, 18, 18, 66,150, 47, 95,238,113,242,228, 73,143,109,219,182,233, + 8, 33, 17,148,210, 77,213, 29,108,201, 68,217, 99,189, 78,227,180,224, 99,105, 81,211,246,223,109, 11, 10, 10, 97,197, 98, 49, + 26,226, 4,128,255, 14, 20, 28, 27, 61,208,133,132,246,153,147,208, 88,206, 87, 1,185, 92,126, 70, 46,151,187,142, 29, 59,246, +254,248,241,227,207,154,152,152, 80, 0, 72, 75, 75, 51,233,221,187,119,214,128, 1, 3, 50, 11, 11, 11,241,253,247,223, 59,173, + 93,187,246,152,153,153,153, 58, 55, 55, 55,192, 88, 63, 33,132,239,224,224,176,180, 91,183,110,147,135, 13, 27, 6,185, 92,142, + 81,163, 70,161,184,184, 56, 92,169, 84, 46, 79, 78, 78,158, 77, 41, 53,212,230,177,180,180,156, 59,127,254,124,219,124, 45, 15, +179,183,196,225,105,126,105,110,144,137, 24,252,247, 77, 49,222,123,111,164,121, 84, 84,212,114, 0, 70, 7, 44,133, 66,177, 56, + 44, 44, 76, 81,254,187,206,207,207, 71,126,126, 62,242,242,242,144,159,159,143, 97,195,134,153,221,191,127,127, 53, 0,163,223, +112, 29, 28, 28,252, 22, 45, 90, 36, 17,137, 68,216,183,111, 95,155,162,162, 34,190, 78,167, 3,165, 84,223,178,101,203,235, 35, + 71,142, 20,198,198,198,118, 0, 96, 84,192,114, 72,129,132,176,161,121, 0, 0, 32, 0, 73, 68, 65, 84, 32, 71,163,249,246,155, +101,159, 43, 0,224,147,105, 95,125, 11,104, 2,169, 17,219, 28, 82,224, 15,128, 11, 88, 53, 64, 8,225, 1,120, 91, 32, 16,188, +227,234,234,234,119,255,254,253, 40,189, 94,255,127, 0,254,143, 26,185,142, 93, 13,238, 55,149, 74,229,226,164,164,164,111, 40, +165,191, 52, 78,139,255,249, 52,111,222,124,207,182,109,219,172, 15, 30, 60,216,111,225,194,133,131, 0,108,174,175,139, 16, 34, + 0,208, 1,165,161,234, 46, 74,131, 21, 80, 26,180, 90, 18, 66,154, 3,184, 80,151, 11, 94, 27,247, 96, 83,240,205,118,116,120, +163, 71,199,129,239, 14,144, 43,172,204, 81, 80,108, 64,108,124, 74,147,163, 7,247,116,182,111,221, 59, 92, 95,146, 51, 36,227, +222, 5,163, 43,236,229,206, 46, 61,251,117,124,227,205,174,114,115,115, 11,100,230,233,240, 32,254,137,243,153, 99,123, 67,236, + 90,247, 62, 11,162, 27,145, 26,125,212,248, 27,166,115,112,192,200, 65,238,132, 16,152,152,154, 84,249,156,185,185, 57, 66, 67, + 67, 17, 22, 22, 38, 0,208,190,226,115,127,185,169,168, 65,235, 48,251,191, 19, 32,226, 83,113,239,158,221,137,153,153, 89,131, +157, 0, 96,103,165,239, 26,232,174,233,156,122,125,226,240,235,103, 22,183,214, 22,101,255,229, 78,167, 50,153, 12,110,110,110, +152, 53,107,150, 81,206,134,242,119, 56, 41,165, 74, 79, 79,207,188, 85,171, 86,185,207,153, 51,199,178,168,168,200, 4,128,163, +167, 79,176,146, 97, 24, 39,173, 86, 43,159, 55,111,158,205,178,101,203,220, 21, 10, 69, 54,165, 84, 81,151,118, 58, 56, 56,172, + 10, 11, 11,155,178,113,227, 70,226,239,239, 15,185, 92,142, 14, 29, 58, 96,203,150, 45,204,220,185,115,167, 59, 56, 56, 44, 53, +166,157, 0, 66, 2, 2, 2, 8, 11, 32, 43, 95,143, 83, 75,124,113,225, 43,127, 20,106, 89,228,228,229, 67,163,209, 64, 34,145, + 72,109,108,108, 76,141, 61,119, 0,237,253,252,252, 8,128,103,161, 42, 47,175,244,145,159, 95, 0,173,182, 4, 12,195,152, 53, +109,218, 84, 92,133,174, 74, 39,165,212, 54, 32,160, 52,127, 22, 21, 21,241,251,245,235,135, 62,125,250, 32, 47, 47,143,159,155, +155, 11,173, 86, 11,134, 97,132,101, 31,236,181, 58,181, 50, 1, 97, 41,107,103, 34,147,218,152,200,164, 54, 44,101,237, 0,192, +152,109, 90,153,128, 84,229,108, 44,140,152,154,173,224,241,120, 63,187,186,186,222,225,241,120,155, 9, 33,246, 13,113, 18, 66, +252, 9, 33, 97, 50,153,236,184,167,167,103,162,137,137,201, 73, 66,200, 82, 66, 72,135,250, 56, 9, 33, 34,153, 76,118, 50, 44, + 44,108,103, 84, 84,212,160, 19, 39, 78,184, 68, 71, 71,191,187,124,249,242, 29,166,166,166,103, 9, 33,210,250,180,179, 28, 23, + 23,151, 13,151, 47, 95,246, 15, 10, 10,250,137, 16, 82,237,223, 80, 93,156,132, 16, 30, 33,196,135, 24,121,227,193,191,251,247, +238,232,232,232,234,227,227, 99,195,227,241, 16, 18, 18, 2, 74,105, 72, 3,157, 65, 0, 82, 40,165,103, 40,165,233,148, 82, 67, +217, 35,131, 82,122, 14,165, 23, 42, 85, 30,163, 90, 39,223,108,199,167,159,125,209, 99,234,132, 15,229,145, 9, 6,252,120, 52, + 25,191,157, 79,135, 58, 79,140,110,253, 71,155,119,238, 53,172, 59, 95,104, 94,229,141,237,107,114, 78,159, 62,179,199,135,163, +134,203,111, 38, 49,216,121, 33, 3,231,239,230,162,144, 88, 34,180,255, 71,150,158, 1, 61,123, 19, 8, 55,213,241,220,235,205, +191,217,249,186, 81,101, 5,107,238, 79, 52,107,193,120,178, 44,236,251, 31,102, 51,132, 80,199, 22,221,111,187,184,181, 47, 96, + 89, 22, 26,141, 6, 37, 37, 37, 16, 8, 4,208,104, 52, 72, 72, 72,192,229,203,151, 97,110,110, 94,167, 3,103,231,228, 64,229, +232, 2,153, 76,214, 40,206, 49,255, 25,192,127,156,156,204, 15,143, 60,229,251,235,154,109,190, 78,205,187,221,109, 27,250,197, + 77, 83,243, 38,154,235,215,175,227,226,197,139,200,202,202, 66,249, 7,232,235, 0, 33, 68,183, 98,197,138,200,164,164, 36,156, + 59,119,206,103,254,234,173, 77,111,230, 54,231,167,231, 83,129,194, 52,213,217, 67,122,207,144,245,244,233,195, 41, 83,166,156, +116,112,112,208, 78,152, 48,161,179, 49, 94, 71, 71, 71, 9, 33,196,183, 87,175, 94,255, 29, 57,114, 36,226,227,227, 49,117,234, + 84,237,245,235,215,179,125,125,125, 45, 87,172, 88, 33,252,232,163,143, 16, 30, 30, 62,197,209,209,113, 23,128, 91, 79,158, 60, +169,233, 94,106, 34,137, 68, 2,228,148, 94,168,150,232, 41,128,210, 97, 97,249,249,249, 96,104, 54,132, 66, 33,195, 48,140, 2, +128, 81, 87,158, 44,203, 10, 69, 34, 17, 10, 10, 10,144,159,159, 15,117,122, 62, 18, 82, 11,144, 87, 80, 12,141, 70,135,226, 34, + 10,177,220,142,209,165,167, 91, 3, 48,106, 73,120, 74, 41, 83,222,221,168,213,106,161,209,104,160,213,106,161,213,106,159,221, +206,135,199,227,201, 85, 42,149, 25,128,172,218,124, 60,145, 84,207, 99,132, 97, 51, 23,125, 59, 15, 0,120,140, 48,204, 20, 69, +172, 49,219,120, 34,105,163,175,242,110, 44,132, 16,177, 66,161, 56,181,115,231, 78, 79, 55, 55, 55, 60,122,244,200, 99,224,192, +129,129,132, 16, 31, 74,105,157,174,226, 9, 33, 50,134, 97,150,189,255,254,251, 31, 15, 29, 58,148,180,104,209, 2,124, 62, 31, +122,189,222, 49, 46, 46,174,203,111,191,253, 54,141,207,231,255,104, 48, 24,166, 24,187,202, 59, 33,132, 17,137, 68,191,174, 95, +191,190, 83, 96, 96, 32, 54,111,222,140, 43, 87,174,176,254,254,254,204,123,239,189, 7,103,103,231,246,239,189,247,222,110, 66, + 72, 31, 99, 42,172, 85,248,157,135, 15, 31,238,196,227,241, 16, 20, 20, 36, 12, 15, 15,111, 7, 32,188,174,158, 74, 78, 83, 71, + 71,199, 51,161,161,161, 62,199,143, 31,143, 36,132,132,214,101, 85,123,165, 82,217,223,206,206,110,185, 92, 46,183, 52,246, 53, +249,249,249,133,169,169,169, 83,213,106,181, 81,247, 35,165,148, 6,121,123,123, 67,175,215,195,220,220, 28,246,246,246, 29, 85, + 42,213, 20,115,115,243,183,115,115,115, 39, 63,121,242,228,138,177,199, 38,132,168, 0, 48,148,210,251,101,255,110, 10,160,252, + 54, 75,247, 40,165,143, 40,165, 15, 9, 33, 74, 66,136,147, 49,221,133, 54,174, 93,250, 6,117,237,213, 49, 36,176, 53,179,100, + 87, 60, 12, 44, 11, 62, 12,224,243, 88,100, 24, 4, 32,132,192,217,221,159,103,119,243, 90,123, 27,247,110,125, 51,238, 29,171, +181,122,109,227,218,165,111,143,126, 3, 66, 90,186,183, 96, 86,254,254, 24,217,234,155,134,212,187, 39, 51, 8,195,160, 89,219, +110, 54,206,238, 62, 60, 87,159, 55, 5,169,241, 55,187, 88,185,117,238,250,244,254,153,227,198,254, 12, 56, 56,158, 5, 44, 66, + 8,165,148, 62,187,178,154,243, 61,157, 99, 99, 73,154,222,190,121,131, 73, 76,209, 22,220,184,113, 3,214,214,214,176,181,181, +133,153,153, 25, 98, 98, 98,112,252,248,113,220,187,119, 15,148, 82,248,248,248,212,233,192,169, 41, 41,200,124,154,215,168,206, + 38, 14, 14,104,226,224,192,207,200,202,198,197, 27,209,158,251,126,236,218, 50,149, 25,187, 81,163,209, 60,219, 71,167,123,253, +122, 93,108,109,109, 13,159,124, 50, 33,115,204,183, 15,155, 15,121, 67,197,235,223,193, 30,191,135, 39,243,118,156,230,209,217, + 31,180,201,136,139,139, 53,250,164,157,157,157, 23,119,233,210,229,115, 62,159, 47,248,232,163,143, 0, 0, 19, 39, 78, 44,142, +142,142,110,149,152,152,248,208,193,193,161,229,228,201,147,163,119,239,222, 45,248,240,195, 15, 73, 81, 81,209, 21,129, 64, 64, +149, 74,229,130,164,164,164,121, 85, 57,121, 60, 94,212,237,219,183,155,234, 37, 74,216,200, 25,116,159, 29, 9, 0, 48, 21, 83, +100,164,170,113, 43,238, 42, 20, 10,133,185,141,141,205,221,224,224,224,226,212,212,212, 79, 31, 60,120,176,169,166,118, 10, 4, +130, 91,209,209,209,142,118,118,118,200,207,207, 71, 98, 90, 1,126,190, 72, 80, 88, 44, 5, 32, 5, 15,114,200,109,156,228,205, +104,225,245,214,173, 91,151,104,181,218,233,177,177,177, 53,118,245, 8, 4,130,172, 59,119,238,152,168, 84, 42,240,120,188,146, +223,126,251, 77,168,213,106, 65, 41,213, 31, 60,120,112,112,118,118,118, 80,243,230,205, 25,103,103,231, 21,193,193,193,154,228, +228,228, 49,143, 30, 61,170,246, 70,195,135, 39,186,150,116,158,119,250,187,236, 71,137,191, 1,128, 42,208,243,233,254,121,237, +180,157,231,229,215,186,237,240, 68,215, 18, 76,120,113,107,212,213,194,251, 51,103,206,244,180,178,178,194,184,113,227, 48,127, +254,124,204,153, 51,199,109,220,184,113, 31, 1, 88,101,172,132, 16, 34,181,183,183,191,186,102,205, 26,143,224,224, 96, 28, 60, +120, 16,219,183,111,199,195,135, 15,245, 46, 46, 46,252,192,192, 64,204,157, 59, 23,221,187,119, 31, 51, 97,194,132,206,132,144, +118, 70,134,142,209,115,231,206,237,223,177, 99, 71,140, 26, 53,170,248,244,233,211,131, 0, 28, 61,118,236,216, 27,103,206,156, +217,181,117,235, 86,105, 88, 88, 88,143,201,147, 39,143, 7,240, 77, 61,206,127, 64,167, 78,157, 0, 0, 29, 59,118,196,242,229, +203,187,163, 1, 1,139, 16, 34,178,182,182, 62,176,121,243,102, 31,119,119,119,140, 24, 49,162,221,160, 65,131, 14, 16, 66,186, + 81, 74,141,186,181,145,131,131,195,178,245,235,215,187, 74,165,213, 22,230,254,130, 86,171,181, 26, 59,118,236, 82, 0, 70, 7, +172,214,173, 91,227,244,233,211,232,218,181, 43,188,188,188, 92,199,142, 29,187,162,123,247,238,248,236,179,207,206,219,219,219, + 43, 83, 82, 82,140,189,209,179, 51,128, 24, 0, 32,132, 52, 1,224, 6,224, 66,217,115,129,132, 16, 80, 74, 31,161,244,230,225, + 45, 1,212, 62, 30, 75, 98,242,126,191, 62,125,228,255, 23,158, 6, 3,203,194, 67, 37,129,103, 19, 51,196,167, 21, 33, 94,157, + 9, 1, 41,129, 92, 42,134,119, 80,111,203,167,169,241,239,195,152,225, 1, 98,217,251, 3,250,245, 49,221,115, 49, 13,217,234, + 91, 52,225,234,111, 39,117, 69, 5, 99, 0,224,246,217, 95,254,103,103, 41,233,214,162,173, 47,175, 48,164,191,229,153,223,191, +127, 31, 0, 23,176, 94, 48,149,179,200,171, 76,141,179, 8, 51,179,161,177,182,247, 68, 98, 74, 84,233,191, 51, 51,145,153,153, +137,102,205,154, 97,237,218,181,207,237, 91, 84, 84,235,205,224,171, 62,198, 11,112,218, 88, 90,160, 95,151,206,188,155, 49,223, +243, 52,172,230,185,231,234,235,252,167, 66, 41,165,132, 16,146,144,161,179,200,200,213, 9, 7,119,113,162, 2, 30,131, 33, 93, +154,144,111,246, 37, 8, 51, 52, 50, 11, 30,143,199, 24,115, 37,239,235,235, 43,232,210,165,203,231, 27, 54,108, 16, 36, 39, 39, +195,194,194, 2, 58,157, 14, 81, 81, 81, 73, 73, 73, 73, 15, 1, 32, 57, 57, 57,198,209,209, 49,213, 96, 48, 56,122,120,120, 96, +236,216,177,104,217,178, 37,153, 50,101,202, 52, 66,200,130,170,102, 44,166,166,166,134,205,154, 53,171,211,226,229,107,173,135, + 7, 18, 20, 20,106,145,159,159,143,248,216, 91,160,249, 90,172, 92,249, 53,164, 82, 41, 1, 32, 76, 79, 79, 23,206,155, 55,247, + 39, 63, 63,191, 62,215,174, 93,123,167,186,182,166,166,166, 46,154, 59,119,110,192,202,149, 43,173,242,243,243,161, 41, 42, 66, +158, 70,132,203, 95,151, 86, 40, 3, 39, 95,193, 55, 95,173, 96, 90, 59,155, 88,231,231,231,227,243,207, 63, 95,227,227,227,211, + 62, 42, 42,234,227,234,156,106,181,250,250,204,153, 51, 21,235,214,173, 19,183,108,217, 50, 58, 55, 55, 23, 89, 89, 89,204,238, +221,187, 23, 58, 59, 59, 91,173, 89,179,150,200,100, 50, 0, 64, 98, 98,162,112,246,236, 89,191,122,123,123,111,141,142,142, 30, + 85,221,239, 6, 64, 49, 33, 72, 86, 42,155,185, 22, 94,100,230, 41,149, 69,231, 79,207, 85,111, 33, 4,201,165,251,128, 58,172, +119, 24,254,120,179,184, 99,113, 49,187, 58, 37, 37,225, 30,165,160,152,251,210,194, 21,108,108,108, 38,244,239,223, 31, 75,151, + 46,197,190,125,251, 38, 91, 89, 89,125, 61,127,254,124, 40,149,202, 79, 8, 33,171,169,241,171, 19,127,181,106,213, 42, 15, 15, + 15, 15,140, 28, 57, 82,123,252,248,241,153, 0,126, 7,144,112,238,220,185, 38,155, 54,109,234,251,235,175,191, 46, 93,179,102, +141,100,221,186,117,174,239,190,251,238,106, 0, 31,212, 38,181,179,179,251,108,232,208,161, 88,177, 98, 5, 78,159, 62,253, 46, +165,244, 96,217, 83,135, 8, 33,125,195,194,194, 78,204,158, 61, 27,171, 86,173,154,132, 58, 6, 44, 66,136,169,167,167,231,151, + 61,122,244,192,185,115,231, 16, 18, 18,130, 14, 29, 58, 76, 38,132,172,165,148, 26, 27, 46, 42,250, 24, 83, 83,211, 95, 55,110, +220, 24,210,180,105, 83, 44, 90,180, 8,159,127,254, 57, 54,108,216, 16, 50, 98,196,136, 95, 9, 33,239, 24, 51,203,215,212,212, +212, 84, 42,149, 98,233,210,165,244,241,227,199,181, 86, 79, 29, 28, 28, 44,191,252,242, 75, 98,110, 68, 55, 0, 33,132,167, 84, + 42,205,237,237,237, 59,217,219,219, 99,205,154, 53,176,181,181,197,228,201,147, 97,109,109,141,130,130, 2,188,243,206, 59,130, + 75,151, 46, 13, 1,176,182, 54, 95, 25,214, 0,202, 43, 94,158, 40, 29,107,149, 87,118,188, 75, 0, 58, 2,120,132,210,113, 89, + 86,198, 8, 25, 74, 91, 91, 90,152, 33, 41, 58, 21,124,232,225,209, 68,142,107,113, 5, 40, 49, 80,200, 76, 76, 81,144,151,141, +182,174, 10,228, 22, 58, 2, 96,141, 90,125, 92,200, 99,124, 69, 98, 41,210,114,115,144,114,231, 68,102,137,161,120,108,246,195, +243,137, 0, 96,213,188,211,216, 91,151, 15, 95,123,167,103,136,109,122, 86, 19, 80,202,190, 62,221, 31, 28,127, 11,181,142,193, + 98,217,191,254,223,175, 88, 17, 42,167,164,164, 97, 19,243, 94,132,179, 42, 94,132,243, 31, 0, 85, 89,242,115, 76, 36,140,254, +216,181, 52,131, 78,111,192,145,107, 41, 6,153,152,232, 45,197,218, 92,150,101,141,250, 64,140,136,136,208,157, 59,119,110,243, +140, 25, 51,176,106,213, 42, 60,120,240, 0, 2,129, 0,238,238,238,118, 78, 78, 78, 14, 64,233,236, 61, 47, 47, 47, 27, 30,143, +135,184,184, 56,108,223,190, 29,243,230,205,163, 17, 17, 17, 27,170,251,160, 72, 74, 74,138, 74, 77, 77, 93,191,100,193,204,108, + 65,113, 18,100,134,116, 24,178, 31, 64, 96,200,193,132,201, 51,240, 40,195,128,168, 71,121,136,122,148,135, 20,141, 4, 95, 46, + 90,201,115,115,115,235,235,232,232,216,189,186,182,170,213,234, 75,201,201,201, 91,230,204,153,147,147,145,145,241,236,239,167, + 68,207,162, 68,255,124, 51, 76, 77, 77,177,100,201, 18, 11, 7, 7,135,193, 42,149, 42,180, 58,103, 90, 90, 90, 90, 82, 82, 82, +220,140, 25, 51, 74,210,211,211,145,155,155,139,195,135, 15,191,219,172, 89, 51,171, 41, 51, 22,144, 71, 25,244, 89, 59,115, 88, + 11,172, 88,251, 35,175,121,243,230,195,148, 74,101,141,227,136,148, 74,149,171,167,103,243,157,151, 46, 93, 26,229,234,234,250, + 49, 80, 26,172, 40, 5, 5, 0, 23, 23,151,113, 17, 17, 17,163,125,124, 90,237,180,179,179,111, 89,147,235, 69, 67, 8,233, 50, +120,240,224,150, 44,203, 98,231,206,157,209,148,210, 85,123,246,236,185, 90, 92, 92,140, 33, 67,134,184, 0,232, 97,164,199,127, +216,176, 97, 31,135,132,132, 96,210,164, 73, 37,199,143, 31,247,165,148,126, 77, 41,141,167,165, 36, 80, 74,215,158, 57,115,166, +237,132, 9, 19,138, 3, 2, 2, 48,106,212,168,209,132,144, 26,199,253, 16, 66,130,134, 14, 29,234,193,178, 44,118,236,216,113, +163, 66,184, 2, 0, 80, 74, 79,238,218,181,235,146, 86,171,197,240,225,195,155, 17, 66,222,168,195,185, 11,197, 98,241,206,133, + 11, 23, 90,168,213,106,188,247,222,123,197, 49, 49, 49,152, 55,111,158,212,220,220,252, 32, 33,164,218, 49,130,213, 33, 22,139, +127,248,254,251,239,251,123,123,123, 99,252,248,241,218,239,190,251,110,226,199, 31,127,172,245,245,245,197,183,223,126,219, 95, + 36, 18,213,105,133,234,212,212,212,236,211,167, 79, 91,215,246, 72, 73, 73, 73, 53,198,215,164, 73, 19, 11, 47, 47,175,104,127, +127,255,140, 54,109,218, 52, 7,128, 91,183,110,165,239,220,185,147, 90, 91, 91,227,240,225,195,248,225,135, 31, 16, 28, 28, 12, +185, 92, 62,164, 14, 77,165,101, 15, 84,248, 90,249,249,202,251,213, 12, 33, 52,167, 80, 15, 62,195, 64,192,163, 72, 72, 45, 66, +137,129, 66, 40, 96, 32,224, 1,124,134,194, 90, 46,128, 64,192, 3, 64,140,114, 50,132, 32,171, 64, 7, 62,143, 64, 32, 18, 18, + 70,111,120, 86, 34,100,248, 6,169, 88, 34, 38,182,230, 66, 8,249, 4,198,141,156,227,224,248,147, 90, 23, 26, 53, 24,254, 90, +248,168,170, 10,164,213, 26, 85,233,174,150, 23,225,172,138, 23,225,124,153,228,230,230,242,207,156, 57, 99, 46, 16, 8, 76,250, +120, 7,103, 46,251, 45,214,102,254,182,123, 16,241, 64,250,182, 97,146, 79,159, 58, 78,178,178,178, 44,221,220,220,106,189,234, + 5,128, 7, 15, 30,140,113,112,112, 88,196, 48, 76,128,193, 96,248,109,213,170, 85,248,230,155,111,100,227,198,141,139, 81, 42, +149,234, 22, 45, 90, 56,173, 94,189, 90, 12, 0, 91,182,108,193,145, 35, 71, 6, 8, 4,130, 43, 9, 9, 9, 41, 53,121,175, 95, +191, 62,219,217,217, 57,252,225,195,135,107, 9, 33, 22,114,185,220,114,207,158, 61, 36, 57, 91,139,217, 91, 30, 60,155, 89,104, + 34,230, 97,198,219, 10,252,231, 63, 3,249,247,239,223,255, 10,192,145,234,156,145,145,145,147, 93, 92, 92,206,196,198,198,174, + 18, 90,187, 91, 75, 90,127, 36,127, 99, 70,105,247,163,131,149, 24, 76,217, 27, 98, 78, 78, 14, 50, 50, 50, 48,122,244,104,139, +197,139, 23, 79, 3,112,186, 58,103, 84, 84,212, 37, 23, 23,151,228,216,216,216,246,148, 82,145,185,185,121,240,170, 85,171, 72, +194, 83, 45,166,111,138, 67, 94, 81,105, 59,229, 18, 1, 22, 12,117,196,168, 81,163,248,143, 30, 61, 90,134,210, 43,242,191,160, + 82,169,220, 60, 61, 61,119,110,219,182,205,115,245,234,213, 79,239,223,191, 95,160, 84, 42,231, 87,218,173,120,201,146, 37,153, + 91,182,108,113,127,239,189,247,118,218,219,219, 15,170,239,146, 26, 13,197,204,204,108,233,216,177, 99,241,235,175,191, 34, 43, + 43,107, 53, 0,228,230,230,174,218,182,109,219,142, 49, 99,198, 96,203,150, 45, 75, 9, 33,135,141,168, 98,245, 28, 50,100, 8, + 14, 29, 58,132, 19, 39, 78,124, 73, 41,189, 93,213, 78,148,210, 88, 66,200,180,189,123,247,174, 25, 58,116, 40,126,254,249,231, + 30, 0,106, 90,120,182, 91,247,238,221,113,240,224, 65,100,102,102,126, 91,213, 14,217,217,217,223,253,241,199, 31,237,187,119, +239,142, 37, 75,150,116, 3,112,178,182,243, 38,132,120,152,155,155,111, 92,179,102,141,191,183,183, 55,134, 13, 27, 86, 84, 82, + 82,210,227,243,207, 63,223,183,125,251,118,249,230,205,155,253, 62,250,232,163,203,132,144, 15, 41,165, 70, 45, 98,203,227,241, +194,214,173, 91,247, 65,104,104, 40, 38, 79,158,172, 63,114,228, 72, 63, 74,233, 81, 66, 72,220, 23, 95,124,113, 96,229,202,149, +188, 21, 43, 86,124,192,227,241,210, 13, 6,195, 76, 99,156,141, 13, 33,100,197,202,149, 43, 61, 91,181,106,133,162,162, 34, 60, +120,240, 0,169,169,169,219, 14, 31, 62,124,244,230,205,155,203, 83, 82, 82,118,219,217,217,141,153, 60,121,178,163,191,191,191, +191,163,163,163,229,147, 39, 79,140,121, 47, 41,175, 76,165, 1,184, 3,160,125, 89,229, 10, 0, 2, 81,218, 53, 8,148,206, 40, + 52,234,189, 9,132, 68,199, 62, 82, 55,179, 52, 53, 67, 22, 43,194, 35,117, 6,164, 38, 38, 96, 40, 3,189, 38, 11,110,206,182, + 96, 41,144,155,161, 6,195,144,104, 99,148, 58, 3, 27, 17,159,152,170,178, 48,145,192,205,183,151,245,141,147, 63,255, 98,222, +188,227, 71,124, 30,225, 9,197,102,235,135, 13, 29,105,163, 51, 80,228,103, 37,131,240, 24,163,199,160,113,112, 0, 70, 4, 44, +150,101, 33,149, 74,159,171, 48, 85,174, 2, 73,165, 82, 20, 23,215,109,185, 20,169, 84,138,146, 10,195,120, 27,195,105,204, 49, + 27,219,249, 50,209,233,116,242,143, 63,254,184, 99,251,246,237, 19,123,246,236, 25,231,225,161,136,239, 29, 36,177, 89,183, 97, +175, 79,207,206, 94, 81,185, 79, 83,211, 19,196,226,162,172,172, 44,235, 45, 91,182,180,211,233,116, 50, 99,188,201,201,201,143, + 1, 60, 86,169, 84,189,187,116,233, 50,162, 79,159, 62, 56,123,246,172,188,160,160,192,195,196,164,116, 54,233,238,221,187,241, +199, 31,127,252,152,148,148,180,215,216,246, 38, 36, 36, 28, 6,224,218,164, 73, 19,139, 38, 77,154,164, 90, 88, 88, 8,213,121, + 5,207,102, 22, 10,249, 12,130, 63,191,138,236,220, 60, 88, 88, 88, 64, 38,147,185,212,230, 44, 91,231,106, 95,192,224,133,222, +188,135,219,206,172, 91,179,218, 28, 40,189, 50,181,179, 16, 34, 59, 59, 27, 25, 25, 25, 72, 79, 79, 7,165, 20, 6,131,193,211, + 8,231, 99, 0,143,109,108,108, 28,220,220,220,136,169,169, 41,232,211, 2,100,229,151, 60,215, 5,153,151, 95, 0,149, 74, 5, +185, 92, 94,101,119,132,149,149,149, 92, 44, 22,111,250,233,167,159, 60,228,114, 57,111,204,152, 49, 22, 99,198,140,233,136,106, +194,152, 76, 38,227,253,252,243,207, 45,124,124,124, 54, 54,109,218,180, 91,124,124,124, 78,109,109,109, 44,202,102, 70,142,155, + 58,117,170,159, 68, 34,193, 55,223,124,243, 16,192,214,178,167,119,126,247,221,119,115,134, 14, 29,218,114,226,196,137, 94,179, +103,207,158, 92,214, 85, 88,109,183,179, 80, 40,244,245,244,244,196,158, 61,123, 0, 96, 79, 45,135,223, 21, 30, 30,190,166, 79, +159, 62,144, 72, 36,254,181,236,235,226,228,228,132,189,123,247, 2, 64, 84, 53,251, 68,197,196,196,224,157,119,222, 1, 33,164, +214,191, 33, 66, 72,255,183,222,122,107,215,146, 37, 75,248,114,185, 28, 31,124,240,129,246,242,229,203,189, 40,165,103, 9, 33, + 93,134, 15, 31,126,102,235,214,173, 38,103,206,156,241, 88,188,120,113, 56,143,199, 11, 51, 24, 12,179,107,113,142, 94,180,104, +209,140, 1, 3, 6, 96,254,252,249,244,183,223,126, 27, 70, 41, 61, 10, 0,148,210, 35,132,144,247, 44, 45, 45,183,206,154, 53, +139,228,228,228,204, 32,132, 60,161,148,126, 95,157,175,176,176, 48,199, 96, 48,216, 23, 22, 22, 26,117,133,104,236,254,205,154, + 53,235,217,170, 85, 43,236,221,187, 23,125,251,246,197,177, 99,199,192, 48,204, 1,181, 90,125, 10,192, 81, 0,112,112,112, 48, +143,139,139,155, 28, 18, 18,194, 28, 63,126,252, 29, 0, 63, 26,209,132, 71, 0,188, 1, 28,163,148, 38,150, 77,156, 12, 66,233, +146, 13,119, 40,165,229, 75,157,180, 6, 16,103,204, 57,177,218,252,205, 39, 14,238,234,210,237,221,143,205,121, 60, 6,124, 8, + 81,152,151, 11, 24, 12,112,117,182, 67,128,167, 29,110,196,107, 16,126,124,103,118, 97,126,161, 81,203, 75, 24, 74, 10, 54,158, + 56,188,183,179,255, 91, 35,205,197,174,173,224,100, 55,201,231,214,149,163,199,196, 34, 33,121,247,221,129, 22, 93, 2,220,112, + 34, 58, 23,151, 78,252,158, 85,152,151,187,209, 24, 39, 7, 71, 57,207, 2, 86, 53,131,202,210, 38, 79,158,108, 59,101,202, 20, +152,153,153, 33, 51, 51, 19, 58,157,238, 89,181, 73, 44, 22,195,194,194, 2,153,153,153,216,177, 99, 7, 80,122,181, 82, 45, 60, +158, 40,121,209,183,235,156, 8,207, 68, 43,150,202,168,149,172,225, 78, 0,208,234,248,105,223,239,216,109,213,179, 83, 7,126, + 19, 7,135,191, 60, 95, 31,231,171,128, 78,167, 59,150,146,146,226,215,178,101,203, 20,103,103,103, 77, 81, 81, 17,168, 70,147, +119,112,199,234,230, 78,230,227, 31, 48, 12, 67,165, 82, 41,107, 97, 97, 81,240,224,193, 3,162,215,235, 79,213,197, 79, 41, 29, + 55,110,220, 56,230,220,185,115,195, 70,140, 24,129,166, 77,155, 34, 42, 42, 10, 91,182,108,193,174, 93,187, 54, 9,133,194,137, +245,105,119, 98, 98, 98,190,167,167,231,115, 21,144,202, 51, 11,117,197,233, 96, 89,214,232,193,249, 89,145, 91,238,241,108,108, +116, 94, 77,254, 92, 78, 36, 43, 43, 11,233,101,225,170, 66,200, 50,186,132, 73, 8,201,211,106,181,149,218,249,103,247, 99, 65, + 65, 1, 74,138,211, 96, 48, 24,170,116, 62,125,250, 52, 79,169, 84,174, 91,187,118,237,202,133, 11, 23,218,174, 90,181,234,233, +221,187,119,115, 25,134,121,174, 92,203,178,172,196,213,213, 85,190, 98,197, 10,187,181,107,215, 62,101, 89,118,221,223, 28,174, + 6,120,123,123,111,234,217,179,167,252,227,143, 63,198,218,181,107,145,156,156, 60,157, 82,170, 7, 0, 74, 41, 75, 8,249,226, +219,111,191,221, 63,109,218, 52,148,148,148,172, 56,120,240,224,124, 66,200, 56, 74,233,214,170,156, 10,133,194,145,207,231, 35, + 50, 50, 50,151, 82,250,160,166,227, 83, 74, 83,220,221,221, 83, 9, 33,118, 14, 14, 14,205,107,218,215,202,202,202, 85, 46,151, + 67,173, 86, 3,165, 31,226, 85, 17,159,148,148, 68, 69, 34, 17, 81, 42,149,110,181,157,191,165,165,229, 23, 63,253,244, 19,255, +212,169, 83,152, 59,119,238,147,132,132,132,225,101,203, 8,128, 82, 26, 73, 8, 9,233,210,165,203,246,105,211,166,185, 47, 91, +182,140,196,196,196,140, 7, 80, 99,192,114,118,118, 30, 55,122,244,104,172, 91,183, 14,235,215,175, 31, 79, 41,221, 89,233,156, +183, 19, 66, 44,173,173,173,215,141, 29, 59, 22, 27, 55,110, 28, 14,160,218,128,165, 86,171,167, 13, 30, 60,120,206,211,167, 79, +195,106, 59, 31, 99,247, 87, 42,149,253, 70,140, 24, 97, 71, 41,197,218,181,107, 83,214,173, 91, 87,152,155,155,187, 53, 41, 41, +233,185,247, 9,134, 97,118, 31, 62,124,120,242,199, 31,127,140, 83,167, 78,125,163, 84, 42,105, 82, 82,210, 79, 53, 29,159, 82, +154, 76, 8,105, 78, 8,241,164,148,222, 41,155, 37,248,220, 64,118, 66,136,123,217,190, 79,140, 57,167,140,123,167,246,217,121, +245,186,112,253,202,233,183, 92,188, 66, 4,182,150,114,168,220,108, 96,101, 42, 4, 5,112, 51, 65,131, 75,103,143,234,210,146, + 31,135, 27, 51,131,176,220,105,223,186,119,184,204,198,249,173,102,173, 58,242, 93,220, 90,160, 91,112, 27, 75,107, 51, 1,180, + 58,138, 99,215,115,112,241,204, 33, 93, 90,106,226, 41,110, 6,225,223,195,235, 50,192, 29,168,189,130, 53,111,253,250,245,193, + 27, 54,108,232, 51,121,242,100,249,200,145, 35, 33,149, 74, 81, 80, 80, 0, 39, 39, 39,232,245,122, 28, 60,120, 16,145,145,145, +121, 44,203,238,199,159,179, 68, 0,252,245,110,219, 51,214, 22, 54, 33,132, 48, 64, 65,240,252,245,109, 26,197, 9, 0,225, 15, +245, 42,101,114,198,188,204,172,131,159, 57,171, 28,132,221, 59,182,231,219, 88,150,206,102,174,175,179,161,252, 29, 78,189, 94, + 63,154, 16,226,245,197, 23, 95, 44, 87,169, 84,202,249,243,231, 63,110,213,170,149, 38, 55, 55,151,106,181, 90, 54, 61, 61, 93, +182,107,215, 46,151,204,204,204, 60,157, 78,247, 30,165,244, 70, 93,218,153,148,148,164, 1, 48,220,222,222,126,111, 90, 90,218, +174, 33, 67,134, 96,227,198,141,184,120,241, 98,239,164,164,164,131, 85,189,166, 54, 39, 0, 80, 74,245, 29, 58,116,200,190,117, +235,150, 29,207,220, 5,118, 22, 2,244,248,178,180, 24, 33, 23, 3,154,130, 60, 60,140,189,131,220,220,220,107,198, 58,227,226, +226,180, 62, 62, 62,217,233,233,233, 54, 10,133,162, 52, 92, 85, 8, 86, 79,159, 62, 69, 78, 78, 14,101, 24,230,130,177,206,244, +244,244,130,160,160,160,194,184,184, 56, 17, 79,228, 0, 7, 75, 49, 74,187, 32, 41, 20,114, 62, 52,133, 5,136,142,186,134,220, +220,220,211,213, 57,147,146,146,118, 40,149, 74, 0, 88, 57,103,206, 28,155, 30, 61,122,220,191,114,229, 74,231,138,199,241,245, +245,253,125,254,252,249,189, 23, 47, 94,156,177,105,211,166,105,201,201,201,207,205,118,124,209,127, 75,214,214,214, 83, 14, 28, + 56, 32, 47, 41, 41,193,218,181,107,241,245,215, 95,111,160,148, 62, 55, 59,146, 82,122,128,199,227,125,203, 48,204,127, 63,249, +228, 19,140, 29, 59, 86,230,231,231, 55, 25,127, 86,185,158,115,170,213,234,217,190,190,190,115,210,210,210,140, 10, 4,177,177, +177, 31,249,250,250,206, 78, 75, 75, 91, 94, 93, 59, 1,192,196,196,196,196, 96, 48,224,209,163, 71, 89,148,210, 42, 67, 40,165, +180,168, 69,139, 22,106,131,193,224, 40,147,201,254, 50,128,186,178, 51, 43, 43, 43,204,207,207,111, 94,106,106,234, 81, 0,139, + 40,165, 69,149,124,215, 9, 33, 94,159,126,250,233,132,165, 75,151,190,147,146,146,242,151,117,150, 42, 59, 19, 18, 18,194,186, +116,233,242,229,189,123,247, 54, 81, 74,215, 87,211,206,111, 8, 33, 37,191,252,242,203,248, 71,143, 30, 45,169,201,153,148,148, +180, 31,192,254,170, 60, 85, 81,221,254, 21,157, 86, 86, 86,211, 38, 76,152,128, 67,135, 14, 33, 47, 47,111, 77, 82, 82,210,178, +170, 92,106,181,250,146,139,139,203, 31, 29, 58,116,232,183, 98,197, 10, 97,239,222,189,199, 3,248,169, 42,103, 37, 46, 2, 8, + 46, 27, 7,119, 23, 64,102,217,118, 43,148,206, 28, 36,168,244, 94, 92,155,211,160,203, 29, 26,117,110,207,246,196,184,232, 14, +190,157, 7, 88,230, 20, 58, 66,200,103,144,159,149,140,139,199,255, 47, 43,233,201,131,139,218,162,236,161,117,113,234, 75,114, +134, 68,159,255,125, 71, 74,252,157,246,133,193,189, 44,179,243,156, 33, 20, 16,100,167, 63,193,229,211,123,159, 38, 63,126,116, + 78,199, 22,143,170,139,179, 33,252,155,157,175, 27,196,152, 9, 65,132, 16, 17,128,174,114,185,188,219,103,159,125, 38,234,209, +163, 7, 22, 47, 94,140, 99,199,142,105,181, 90,237, 49, 0,199,171,170, 12,212,244, 11,120, 17,206,158,129, 68,110,111,199,172, +110,234,192, 12,111,229,230, 74,110,197,198,240,175, 37,245,249,161, 33,206,250,242,119, 59, 9, 33, 29, 5, 2,193, 50, 15, 15, +143,226,248,248,248, 86, 86, 86, 86,247,212,106,181, 72,167,211,125, 65, 41, 61,219,144,118,218,219,219,219,244,234,213, 43,109, +214,172, 89,100,254,252,249, 56,123,246,172, 69, 77, 21, 22, 99,156, 77,154, 52,121,195,207,207,239,200,170,111,126,226, 39,164, +230, 35, 55, 47, 15,121,121,121, 40,200,207, 71, 81,110, 10, 14,253,190, 93,123,243,230, 77,247,148,148,148, 4, 99,157,206,206, +206, 61,218,180,105,179,253,167,159,126, 50,207,204,204,124, 22,176,158, 62,125, 10,150,101,177,126,253,250,167,153,153,153,222, + 79,158, 60, 73, 50,214,217,180,105,211,254,193,193,193,187,150,175,254, 31, 63, 49, 53, 31,121, 5, 5, 40, 44, 44, 68,145, 70, +131,146,252, 84,108,250, 97,109,241,157, 59,119,154,166,167,167,167,214,228, 84, 42,149,131, 59,118,236,184, 32, 58, 58,250, 84, + 76, 76,204,184,138,207,181,104,209,226,219,182,109,219,246,186,112,225,194, 28,181, 90,189,165, 62, 63,207,186, 82,209, 73, 8, +233,161, 82,169,190, 78, 79, 79,127, 88, 82, 82,178,147, 82,250,151, 54, 84,120,221, 16, 62,159, 63,196,198,198,198, 46, 37, 37, +101, 41,165,116, 79, 85,206, 23,209,206,178,127,247,177,181,181,157,153,150,150,182,148, 82,250, 71, 13,175, 43,223,111, 57,165, +244,247,154,156, 47,162,157,175,130, 83,169, 84,246,177,181,181, 93,144,154,154,122, 42, 37, 37,229,139,154,186,124, 29, 29, 29, + 37, 44,203, 46,176,179,179, 11, 74, 73, 73, 89,153,156,156,252,127,198,182,147,148,222, 42,167, 41, 74,199, 91, 1,165, 99,174, + 18,104, 13,107, 95,213,230,180,113,239,214, 87, 44,147,190, 79, 89, 67, 91,128,128,225,241,174, 23, 21, 20,110,172,169,114,101, +140, 83, 98, 34, 27,205,178,134,182, 12, 8,203, 48,204, 13,141,166,240,199,244,187,199,170,189, 85,206,171,248,123,255, 39, 59, +171, 57,206, 71,148,210, 58, 77, 6,249,167, 96, 84,192,122,182,115,233, 44,154,222, 12,195, 4,177, 44, 27, 14,224, 0,173, 97, +221, 26, 99,126, 1, 47,194,217, 51,148,168,154,218,240,214,203,101,140,223,210, 77,186, 79, 27,195, 89, 87, 94,150,147, 16,210, +159,207,231,127,174,215,235,191,162,148,214, 58, 62,202,216,118,182,104,209,226,167,208,208,208,247,143, 28, 57,242, 93, 66, 66, +194,132,198,112,182,106,213,106,101,179,102,205, 38,244,238,221, 91, 96,107,107,139,140,140, 12,196,198,198, 34, 34, 34, 66,155, +146,146, 50, 46, 38, 38,102, 83, 93,157,109,218,180, 89,104,109,109, 61,238,195, 15, 63,180, 38,132, 32, 51, 51, 19,121,121,121, +116,247,238,221, 25, 26,141,230,195,152,152,152,103, 87,245,198, 58,189,189,189,127,112,113,113, 25, 53, 96,192, 0,129, 74,165, + 66, 70, 70, 6,110,223,190,141, 11, 23, 46, 20,167,164,164,140,184,119,239,222,179,106, 79, 77, 78, 87, 87, 87, 81, 92, 92, 92, +149,221,137,190,190,190,130,136,136,136, 42,187, 68, 95,167,191, 79,206,201, 57, 57, 39,231,172,227,113, 94,217,128, 85,235, 32, +247,138,148,133,148, 29,132,144, 93,229,227, 51, 26,202,139,112, 30, 58, 77,213, 0,122, 17, 66,248,141,229,124, 85, 40, 11, 85, + 70, 15, 60, 55,150,216,216,216, 15,149, 74,229,196,178,110,195, 70,225,246,237,219, 83, 84, 42,213, 47,241,241,241, 43,100, 50, +153, 15,203,178,186,226,226,226,243,153,153,153,147,147,146,146,234,117, 35,216, 27, 55,110,124,169, 84, 42,127, 95,177, 98,197, +116, 74,105, 27, 66,136, 86,175,215,135,103,101,101, 45, 72, 76, 76, 76,174,143, 51, 58, 58,250, 35,149, 74,245,115,124,124,252, + 18,177, 88,220,134, 82,170,213,104, 52,167,211,210,210, 62, 43,175, 92, 25, 67,117,225, 10, 40, 93, 34,163, 62,109,227,224,224, +224,224,248,103, 82,167,128, 85,206,139, 8, 45,175,138,243,223, 76, 99,134,171,114,212,106,245, 13, 0,111, 54,166, 51, 41, 41, + 41, 10,192,192,198,116,170,213,234,203, 0,170, 93, 67,139,131,131,131,131,131,163, 34, 70,221,236,153,131,131,131,131,131,131, +131,131,195,120, 8, 74,215, 33,249, 11,117,233, 91, 37,132, 24,117, 91,130,186,248, 57, 39,231,228,156,156,147,115,114, 78,206, +249,250, 57,171,112,191, 91,233, 41,117, 37,223, 43, 57, 6,171, 78,131,220,235, 44,127, 69, 6,214,113, 78,206,201, 57, 57, 39, +231,228,156,156,243,229, 58, 95, 55,184, 46, 66, 14, 14, 14, 14, 14, 14, 14,142, 70,134, 11, 88, 28, 28, 28, 28, 28, 28, 28, 28, +141, 12, 23,176, 56, 56, 56, 56, 56, 56, 56, 56, 26, 25, 46, 96,113,112,112,112,112,112,112,112, 52, 50, 92,192,226,224,224,224, +224,224,224,224,104,100, 94,232, 44, 66, 14, 14, 14, 14, 14, 14, 14,142,127, 35,207, 85,176, 8, 33, 92,218,226,224,224,224,224, +224,224,120,105,188, 46, 89,132,235, 34,228,224,224,224,224,224,224,224,104,100,184,128,197,193,193,193,193,193,193,193,209,200, + 48,192,235, 83,142,227,224,224,224,224,224,224,120, 53,121,221,178, 72,121, 5, 43,180,236,196, 66, 95,102, 99, 56, 56, 56, 56, + 56, 56, 56,254,181,188, 86, 89,132,155, 69,200,193,193,193,193,193,193,193,209,200,112, 99,176, 56, 56, 56, 56, 56, 56, 56, 56, + 26,153, 23, 26,176, 8, 33,173, 57, 39,231,228,156,156,147,115,114, 78,206,201, 57,255,109,112, 21, 44, 14, 14, 14, 14, 14, 14, + 14,142, 70,134, 11, 88, 28, 28, 28, 28, 28, 28, 28, 28,141, 12, 23,176, 56, 56, 56, 56, 56, 56, 56, 56, 26, 25, 46, 96,113,112, +112,112,112,112,112,112, 52, 50, 92,192,226,224,224,224,224,224,224,224,104,100, 8,128, 42,103, 2, 80, 74,111, 26, 45,169,199, +108,130,218,252,156,147,115,114, 78,206,201, 57, 57, 39,231,124,253,156,181,185,235,146, 63,254,201,188,208,133, 70, 9, 33,173, + 27,251, 7,197, 57, 57, 39,231,228,156,156,147,115,114,206,215,207,249,186,193,127,217, 13,224,224,224,104, 32,187, 8, 15,182, + 45, 93,192, 82, 37,248,162,100,156,140,126,128,185,148,109,176, 83,217,202, 25, 90,157, 29,164,146,116, 28,185,241,176,193, 78, + 14, 14, 14,142,127, 17, 92,192,226,224,120,213,113,240,112,135, 1, 75,192,131, 3,104, 73, 28,130, 91, 45, 1,208,176, 43, 75, +107, 15,119,232,216, 69,224, 51,142,208,150,220, 67,167,150, 75, 1,220,110,148,246,114,112,112,112,252, 11,120, 41,131,220,253, +253,253, 35,252,253,253, 23,134,134,134,138, 95,198,241, 57, 56, 94, 27,110,122,203,160, 55,244,212,234, 88,213,225,240,108,219, +194, 34,131, 59,132,250, 94, 8,119, 55,109,144, 83, 64,222, 42,210,177, 77,126, 57, 86,104, 87, 80,164,104, 49,218,236, 0, 0, + 32, 0, 73, 68, 65, 84,247, 4,131,134, 57,203,104,221,186,181, 69, 64, 64,192, 97, 31, 31, 31,155,134,186, 56, 56, 56, 56,254, +201,188,148,128,197,178,108, 59, 91, 91,219,201, 26,141, 38,193,207,207,175,223,203,104,195,203,162,125,251,246,225, 29, 58,116, + 72, 13, 10, 10, 74, 13, 10, 10,138,172,109,251,235,136, 82,169,116,247,246,246, 78,240,242,242,186, 87,113,187,109,219,119,130, + 60, 59,141,156,107,227, 53,160,243, 75,106,218,171, 71, 1,107, 7,134,215,229,118,124,161, 44, 37, 91,103, 23, 17, 83, 40, 7, +229,133,162, 4, 14, 13,114,178,244,141,235,113, 26,147,139, 15, 20,118,231,110, 22,155,129, 50, 93, 64,137,125, 67,155, 43, 18, +137,198, 83, 74,187, 9, 4,130, 73, 13,117,113,188,218, 16, 66, 90, 19, 66,250, 17, 66,252, 27,209,185,204,195,195, 67, 77, 8, +249,180,177,156, 28, 28,245,197,232,128, 53,176, 25, 9, 30,214,156,156, 25,220,140,228, 13,105, 78,242, 71, 52, 39,231,255,227, + 74, 58,215,247,192,187,119,239,150,110,217,178,197,182, 85,171, 86, 59, 2, 3, 3,207,251,249,249,181,168,143,199,223,223,255, +176,191,191,255,192,202,219,252,252,252, 6, 87,220, 22, 16, 16,112, 43, 32, 32, 32,199,223,223,255,129, 49, 94, 95, 95,223,251, +190,190,190, 5,254,254,254,247, 43,110,247,243,243, 27, 28, 16, 16,112,184,210,241, 6, 86,222, 86, 29, 12,195, 56,238,219,183, +207,246,192,129, 3,182,124, 62,223,174,242,246,253,251,247, 63,183,189,174,248,251,251,143,241,247,247, 15,175,116, 46, 31, 86, +222, 86, 19,126,126,126,225,190,190,190, 31, 86,242,134,251,251,251,143,169,111,187,202, 81, 42,149,238,157, 58,117, 58, 31, 21, + 21,213, 68, 46,151, 91, 84,124,206,222,218,162,123,248,254,111, 39,143, 26,248,214,120,219, 86,111,123, 55,244, 88,175, 61,119, + 91, 9,161,103, 59,177, 44, 85,220,126, 80,164,232,213,251, 63,252,235,247, 53, 10,157,222, 96, 5,194, 11,197,153,166,117,175, + 16,223,109, 37,132, 78, 23,194, 82,106,119,226,186, 80, 17,218,247, 19,222,169,104,190, 66,103, 48, 88, 67,135,206,245,114,150, +225,235,235, 43,224,241,120,147,199,142, 29,203, 16, 66, 62,113,117,117, 21,213,215,245, 42, 18,232, 77, 84,111,250,241,175,248, +182, 34,193,141,229, 36,132,120,153,152,152, 92, 35,132,184, 55,150,243,239,128, 16,210, 14,128,140, 82,250, 7, 0, 59, 66, 72, +131,135,171, 16, 66, 86, 45, 88,176,224,139,155, 55,111, 42,155, 53,107, 54,159, 16,194,107,120, 75, 57, 56,234,143, 81, 1,107, + 72, 51, 50,207,206, 94,117,116,214,170,109,157,126, 58,243,208,244,187,125,145, 38,147,167,133, 5,219, 91, 42, 14,142,112, 37, + 75,171,123, 93, 77, 51, 12, 68, 34, 17, 30, 60,120,128,181,107,215, 74,230,205,155, 23,100,110,110,126, 35, 48, 48,112,117,171, + 86,173, 76,106,106, 75,101, 39,165, 52, 88, 32, 16,252, 20, 24, 24,184,177,252, 13,155, 16, 18, 44, 22,139,127, 8, 12, 12,252, +165,188, 27,210,215,215,183,217,149, 43, 87,204, 8, 33,127, 9, 47, 85,181, 51, 32, 32,192, 33, 34, 34, 66, 6,148, 86, 2, 66, + 67, 67,197, 1, 1, 1, 91, 84, 42,213,122, 0,193, 0,224,234,234, 42, 10, 12, 12,220,232,228,228,244, 35, 33,207,191,105, 86, +119,238, 12,195,192,194,194, 2,219,182,109, 3,143,247,231,255,127, 66, 8, 44, 44, 44,176,117,235, 86, 16, 66,140, 58,247,138, +180,106,213,202,196,223,223,127,183,131,131,195,106,150,101, 59, 0,128,183,183,183, 44, 32, 32, 96,151, 74,165, 90, 83,190,205, + 24, 39,165,180,131, 80, 40, 92, 29, 16, 16,176,203,219,219, 91, 6, 0, 44,203,118,224,243,249,171,252,253,253,119,215,229,119, +212,174, 93,187,177,109,218,180, 73,106,211,166, 77, 82,203,150, 45, 23,219,217,217,157, 94,183,110,157,117,197,115, 47,175, 92, +165,166,101,102,133, 95,189, 21, 51,121,236,127, 66,155, 56,217, 13,183,104, 59,192,220,152,115,175, 47,175,188, 51,147,216,130, +208,174, 49, 9, 26, 73, 83, 55, 63, 19, 91,143,255, 64, 97,193, 23, 95,188, 83, 32, 7, 15,111, 66, 32, 83,212,207,201,127,243, +214, 67,141,212,178, 89, 79,153,127,251, 78, 32, 38, 45,196,167,163, 10,204,192,103,234,231,252,147,255,116,232,208, 65,212,181, +107, 87, 40,149, 74,158,185,185,249,240, 90,246,127,245,127, 71,101, 4,122, 19,149, 92, 34,186,188,114,193,103,126, 74,107,217, + 94, 99, 66,150, 17,211,231,189,108,109,109, 79,125,251,237,183,190,114,185,252,172, 49, 33,235,159,240,243, 44, 11, 87, 66, 74, +233,165,178, 77,183, 1,132, 52,208,185,106,222,188,121,147,102,204,152,129,188,188, 60,140, 26, 53,202, 12,192, 74, 99,157,114, +185,220,173, 77,155, 54,191,120,121,121, 61,246,241,241,209,122,122,122, 22,181,108,217, 50,190,117,235,214,155, 36, 18,137, 75, +117,175,251, 39,252, 60, 95, 39,103, 45,136, 0,116, 1,208, 27,192,155, 0, 2,202,190,247, 47,123,244, 6,208,181,210,215,242, +234,104,249,243,129,213, 56,122, 87,241, 58,255, 10,219, 43,254,187,242,247,213,194, 0, 0, 33,132, 86,252, 90,145, 65,205, 73, +144,181,189,234,139,101,191, 95,149,178,177,215, 17,241,193, 27,136,249,116, 0,164,247,175, 99,250,132,233, 82,185,220,114,194, +192,230,164, 75,221,126, 78,165,220,187,119, 15, 59,118,236,128,141,141, 13,217,176, 97,131,120,224,192,129,227,205,204,204, 18, +253,253,253,107,125,227, 45,135,199,227, 25, 54,110,220,104,218,191,127,255, 33, 86, 86, 86,183,124,125,125,155, 49, 12, 99,216, +188,121,179,233,224,193,131, 7,106,181,218, 59,126,126,126, 45, 34, 35, 35, 13, 87,175, 94, 5,195, 24, 87,180,139,136,136,208, + 31, 58,116, 8, 0,224,231,231,215,130, 82,122,103,233,210,165, 67,246,236,217, 35, 55, 55, 55,103,125,125,125,155, 57, 57, 57, +221, 90,182,108,217,240, 93,187,118,201,205,204,204,140,154, 97, 69, 8, 65, 81, 81, 17, 36, 18,201,115, 65,138, 16, 2,141, 70, + 3,177, 88,108,116, 27,203,241,245,245,245,178,182,182,190,187,100,201,146,254,191,255,254,187, 84, 46,151,195,223,223,223,211, +194,194, 34,102,249,242,229, 3,246,238,221, 43,149,203,229, 70,251,132, 66, 33,182,110,221, 42, 27, 54,108, 88, 63,177, 88,124, +215,223,223,223, 83, 40, 20, 98,251,246,237,178,225,195,135,247,145,201,100,119,124,125,125,189,140,113,233,116,186, 57, 87,175, + 94,117, 56,125,250,180,131,179,179,243,196,239,190,251,206, 78, 32, 16, 0, 0, 12, 6, 3,128, 63, 43, 87,195,223,233, 22, 56, +105,206,183,167, 52, 69,197,218, 69,211, 71,135, 10, 12,104, 95,167, 31,196,191,137, 93,132, 7,214,208, 14,128,107,228, 61,141, + 77,219, 78,195,249, 72,251, 3, 1,158,166,252, 51,145,249,182,148, 82,103,232,105, 0,206,132, 26, 95, 25,216, 69,120,224,209, +182, 32,108,139,163, 81,196, 38,168,235,112,126, 66, 66, 2, 92, 60, 67,121,251,175,194,142, 82,234, 2, 22,126,117,114, 86, 64, + 32, 16,204, 29, 52,104,144, 73,124,124, 60,130,130,130,100, 34,145,104, 78,125, 60,207,113,183,149, 16,151, 91, 58,227,172,123, + 40,194,221, 29,234,219,182, 23, 73,160, 55, 81,153, 73, 68,151,182,255,242,171,210, 59,100, 12, 89,255,153,179,149, 66, 46, 48, + 42,100, 85, 71, 89,184, 58,121,249,242,101,235,183,222,122, 11,243,230,205, 83,152,153,153, 25, 21,178, 94, 38, 21,195, 21, 33, + 68, 90,214, 61,168, 6,224,216, 0,231,154,121,243,230, 77,154, 57,115, 38, 46, 93,186,132,229,203,151,163,103,207,158,176,180, +180,172,245,253,227,189,247,222,147, 5, 7, 7, 71,244,235,215,239,250,164, 73,147,134,239,223,191,223,105,227,198,141,194,247, +223,127, 95, 60,104,208, 32,231,207, 62,251,108,100,175, 94,189,110, 6, 6, 6, 94, 30, 56,112,160,164,190, 77, 44,123,112,212, + 66, 77, 89, 4, 64,155, 25, 51,102, 4, 16, 66,246,207,152, 49,195, 15,128, 13, 33,100, 63, 0, 5, 0, 69,217,247,162, 74, 95, + 21, 40, 13, 77,229,207, 91, 87,229, 40,127, 84,122,157,162,194,246,138,199,168,252,125,181, 60,251, 36, 39,132,116, 6,112,182, +242, 14,124,138, 5, 99, 39, 47,148, 60,218,244, 53,146,127, 89, 5, 38, 67, 13, 94,118, 10,138,207,254, 1,221,185,125,120,175, + 67, 7,169,148,144, 69,117,250, 41,150, 33,151,203, 33, 20, 10, 17, 27, 27,139, 59,119,238,160, 87,175, 94,194,181,107,215, 90, +120,121,121,253, 16, 28, 28,124,221,223,223,191, 77,109, 14, 66, 8,220,220,220, 48,100,200, 16,209,167,159,126,218, 92, 34,145, + 68, 82, 74, 5, 46, 46, 46, 24, 60,120,176,112,218,180,105, 77, 37, 18,201, 85,150,101,133, 50,153,172,218,234, 80, 85, 94,169, + 84, 10, 0,130, 22, 45, 90, 92,219,177, 99,135, 75,112,112, 48,255,232,209,163,200,205,205,229,187,187,187, 95,223,190,125,187, +107, 80, 80, 16,255,252,249,243, 40, 40, 40, 48,106, 65, 49, 66, 8, 10, 10, 10, 32,149, 74,255, 18,176, 10, 10, 10,254, 18,188, +106,195,223,223,127,140,171,171,235,213, 29, 59,118, 56,134,132,132,240, 78,157, 58,133,188,188, 60, 56, 59, 59, 95,219,177, 99, +135, 99,112,112, 48, 47, 60, 60, 28,121,121,121, 70, 59, 69, 34, 17, 92, 92, 92, 48,104,208, 32,193,212,169, 83, 29, 5, 2,193, + 85,145, 72, 4,103,103,103, 12, 26, 52, 72, 56,101,202, 20, 71,145, 72,116,217,200, 46, 67, 30, 0,232,245,122, 12, 28, 56,208, + 68, 42,149, 34, 49, 49, 17, 44,203,130,101, 75, 51,105,114,122,102,244,133,171, 55,239, 78, 30, 55,176,115, 65,113,113,241,145, +211,215,238,180,106,225,236, 72, 8,109,106,116,163,255,109, 88,182,178, 6, 15,221, 18,146,180, 98,145,137,163,220,212,166, 37, +240,244, 44,154, 41,197, 0, 37,146,171,119, 11, 77,192,208,110, 64,134,117,157,156, 6,182,219, 67,181, 86, 92, 34,109,109,170, + 84, 53, 65,102,102, 38,156, 92, 60, 80, 12,133, 40,252,102,129, 41,104, 29,157,101,248,248,248,132, 56, 57, 57,217, 55,109,218, + 20, 25, 25, 25,112,115,115,131,169,169,169,165,175,175,111,183,186,186,158,113,166,169, 24, 57, 8, 70, 9, 89, 9,194,204, 7, +229, 47, 1, 63,189, 29, 34,125, 5,245,118, 54, 50,207,194,213,214, 95, 85,214, 14, 30,192,205, 15, 96,103, 37,194,134, 25,109, +173, 20,114,113,189, 66, 22, 33,196,203,206,206,238,228,229,203,151,109, 36, 18, 9, 34, 34, 34,208,170, 85, 43,124,253,245,215, + 10, 75, 75,203,127,108,200,170, 20,174,172, 40,165, 26, 0, 44,128,161,168,199,172, 87, 82,202, 55, 11, 23, 46,156, 56,115,230, + 76, 92,188,120, 17, 42,149, 10,105,105,105, 8, 9, 9, 73,200,202,202,170,241,115,201,203,203,203, 49, 54, 54, 86,253,217,103, +159,181,219,178,101,139,212,196,196, 4,217,217,217,248,241,199, 31, 49, 99,198, 12, 16, 66, 64, 41,197,207, 63,255, 44, 27, 61, +122,116, 64, 92, 92,156,186,105,211,166,198, 14,223, 32, 40,173,184,200, 0,152,148,125,149, 76,156, 56, 81, 68, 8, 17,151,133, + 75, 9, 33,228, 31,243,183,250, 79,161,186, 44, 2,192,102,233,210,165, 97,148,210, 62, 75,151, 46, 13,171,176,255,254, 26, 92, + 21, 67, 19, 0,160,178,131, 82,218,167,226,215,138,175,165,148,246,161,148,246,169,248,250,154,142, 87,153,138,165,146,211,148, +210,206,149,119,160, 64, 27,251,102, 45,145,125,108, 39,164, 60,242,220,131,121, 24, 13, 39, 9, 31, 58, 74,141,170,102, 84,198, +212,212,244,217,131, 97, 24, 36, 39, 39,131,199,227, 97,206,156, 57,146, 9, 19, 38,120, 11,133,194,139,157, 58,117, 90, 82,147, +163, 60,140, 92,185,114, 5,110,110,110,100,230,204,153,102,157, 59,119,230, 3,192,141, 27, 55,224,234,234, 74, 22, 47, 94, 44, +239,219,183, 47,145,201,100, 70, 87,135, 24,134,129, 84, 42, 69,104,104, 40,217,184,113,163,169, 88, 44,198,129, 3, 7,144,145, +145,129,183,222,122,139,191,113,227, 70, 83,137, 68,130, 51,103,206, 32, 39, 39,199,104, 47, 33, 4,197,197,197, 85, 6,172,170, + 42, 91, 53, 17, 20, 20,180,193,222,222,126,245,150, 45, 91,196, 82,169, 20,167, 78,157, 66, 78, 78, 14,134, 12, 25,162,223,186, +117,171,196,204,204, 12,225,225,225,200,201,201, 49,202, 87,153, 43, 87,174,192,213,213,149,204,154, 53, 75,218,161, 67, 7, 29, + 0, 68, 69, 69,161, 69,139, 22,100,214,172, 89, 82, 51, 51,179, 85, 29, 59,118,220, 80,147,131,101, 89, 36, 39, 39,227,230,205, +155,120,248,240, 33, 50, 50, 50,144,158,158,142,188,188, 60,232,245,122, 0,128, 44, 47,247,192, 55, 27,247, 93, 55,145, 74,101, +129,222, 45,154, 92,142,188,157,102, 34,149,202, 90,184, 52,113, 39,100, 62,119, 59,167,202, 16, 66, 32,208,182, 0, 37,237, 46, +221,206,183, 10,233, 62, 84,136,244, 67, 0,213, 1,132,143, 46,129,142,252,189,231, 11,236,192,162, 13,132,240, 0,140,248,131, + 34,132,128, 95,226, 6, 16,191,163, 17,122,235,142,221,199, 11,159, 60,121, 2,161, 80, 8,177, 88, 12,159,224,119,249,219, 79, +233,236, 1,180,133, 0, 45,141,114, 86, 64, 44, 22,127, 57,122,244,104, 19,181, 90,253,204,217,179,103, 79, 19,153, 76, 54,183, + 94, 63,131, 51, 77,197, 96,100, 29,160,167,147,110, 61,212, 56, 47,222,148,236,241, 32, 81,227, 1,138, 41,208,233,124, 26, 26, +178,156,157,157, 67,221,221,221, 31,186,184,184,116,172,175,163, 44, 92, 93,220,177,245, 87,149,149,125,105,184,130,161, 16,224, + 73, 97,111,107,137, 13,115, 67,173, 20,102,210, 58,133,172,178,112,117,226,210,165, 75, 54, 18,137, 4,215,174, 93,131, 72, 36, +130, 68, 34,129,183,183, 55,214,175, 95,175,176,178,178,250, 71,132, 44, 66,136, 37, 33,164, 59, 33,228, 63,132,144,119,241,103, +184,114, 1,240, 6, 33,164, 27, 0,123, 0,103, 40,165,215,141,116,118,228,243,249, 7,218,182,109,155,196,231,243,111,135,133, +133,253,119,218,180,105, 88,179,102, 13, 66, 67, 67, 31, 76,159, 62, 29, 49, 49, 49,250,194,194,194,126,148,210, 26, 63, 8,243, +243,243,255,152, 53,107,150,249,219,111,191, 93,254,111,156, 63,127, 30,155, 55,111,134,137,201,159,163, 32, 40,165,232,219,183, + 47,198,140, 25, 99,169,213,106,119,215,228,180,179,179,123,243,244,233,211, 45, 80, 26,174, 36,248, 51, 96,153, 28, 63,126,220, + 66, 34,145, 88, 5, 4, 4,152,149,109,151,189,253,246,219,214, 2,129,160,222,127, 99,175, 41, 85,102,145,114, 42, 7,156,202, + 1,168,170,231,170, 10, 79,245,109, 92, 77,199,171, 76,197, 15,175, 80, 66,200,153,170,118, 42,121,154, 10, 49, 12,144,241, 8, +164,124, 82,250,149, 71, 32, 37, 44,248, 89,169,117,124,171,253, 19, 83, 83, 83,200,229,242,191, 4, 45,141, 70,131,252,252,124, +163,130, 70,249, 88, 30, 75, 75,203,103, 31,218,166,166,165,179,201,173,172,172, 80, 92, 92, 12, 66, 8, 76, 76, 76, 96, 98, 98, + 82,167, 10,150, 68, 82, 90, 17, 14, 15, 15,199,133, 11, 23,192,231,243, 97,101,101, 5, 0,184,118,237, 26,162,163,163, 33, 18, +137, 96,109,109, 93, 39,111, 73, 73, 73,149, 93,132, 90,173,182, 78, 93,132, 12,195,160,168,168,136, 94,187,118, 13, 55,111,222, +132, 88, 44,134, 66,161,128, 72, 36, 66, 98, 98, 34,238,222,189, 11,145, 72, 4,133,162,198, 42,102,181,152,153,153, 33, 59, 59, + 27, 44,203,150, 87,243, 96,102,102,134,252,252,124, 48, 12, 99, 84, 59, 89,150,133, 90,173, 70, 70, 70, 6, 30, 63,126,140,244, +244,244,103, 33,171,188,139,144,163,142,156,247, 50, 7, 17,188,149,158,173, 19,167,231,139,204,237, 92,187, 2, 25,135, 0,194, + 3, 4,150,104,223,174, 25, 18, 82, 12, 38, 49,143,181, 18,232,208, 29, 39,221, 45,141,114,242, 4,221,210,114,116,226,248,108, +133,153,103,107, 95,164,165,165, 65, 44, 22, 67, 44, 22,195,175,253,155,120,152,196,202,110, 63,210,200, 64,241,150, 81,206, 50, +218,181,107,215, 92, 42,149,118,104,215,174, 29, 73, 77, 77,133, 88, 44,134, 68, 34, 65,135, 14, 29,192, 48,140,183,143,143,143, + 71,157,206,255,129,171, 8, 2, 89,123,128, 78,186,251,168, 80,185, 55, 92,227,222,119,192,187, 86,171,126, 75,243,184,251,168, +200, 5, 90,253, 84, 20,148,248,214, 55,100, 53,109,218,180,179,169,169,233,254, 47,191,252,210, 69, 44, 22, 31,114,113,113, 9, +169,253, 85,127,197, 84,204,251,223,151,147,134,170, 44,203,195,149,190, 0,224, 73, 1,158,172, 52,100,217,217, 96,209,167, 93, +173,100, 66,193,255, 25,235,148, 74,165,219,191,249,230, 27, 69,121,184, 18, 10,133,144, 72, 36,207, 30,237,218,181,195,156, 57, +115, 20, 86, 86, 86,219,234,211,230,198,130, 16, 98,133,210,113, 85, 55, 0,236, 6,112,162, 66,184,114, 3,240,127, 40,173, 90, + 69, 82, 74, 19,140,116, 6,245,232,209,227,212,131, 7, 15,122, 93,191,126,221, 33, 37, 37,197, 99,202,148, 41, 88,189,122, 53, +166, 77,155,182,141, 82,234,190,115,231, 78,159, 43, 87,174,120, 27, 51, 62, 40, 37, 37,101,216,244,233,211, 51, 50, 50, 50, 0, + 0,173, 91,183, 70,118,118, 54,166, 78,157,138, 73,147, 74, 39,185,250,248,248, 0, 0,210,210,210,176, 98,197,138,212,148,148, +148, 81, 53, 57, 13, 6, 67,226,158, 61,123, 58,104,181,218, 38, 0,132, 0,196, 0,100, 9, 9, 9,230, 5, 5, 5,102, 60, 30, + 79,110, 98, 98, 98, 38, 22,139, 77, 70,143, 30, 45,188,125,251,182,167, 94,175, 87, 27,115,254,255, 34,170,205, 34,192, 95, 43, + 77,213,109,171,239,254,198, 96,236,235,159,125, 66, 82, 74,207, 0,232, 84,121, 7, 30,193,141,199, 87,207,192,170, 85,187,231, + 43, 88,124, 2,153,220, 12, 15,213,137, 16,130,220,170, 71, 3,159,133,170,138, 33, 43, 57, 57, 25,211,167, 79, 47,252,229,151, + 95,162,181, 90,109,135,179,103,207,206,168,201, 83, 30, 82,108,109,109,241,248,241, 99,250,213, 87, 95,229, 30, 58,116, 72, 95, +190, 45, 49, 49,145,206,158, 61, 59,239,215, 95,127,165,117,233, 34, 44,175, 96,157, 57,115,134,206,157, 59, 55, 39, 41, 41,137, + 90, 89, 89,193,218,218, 26,199,143, 31,215,207,152, 49, 35, 39, 46, 46,142, 90, 89, 89,193,202,202,170, 78, 1, 75,175,215, 67, + 42,149, 62, 23, 80, 8, 33,208,233,116,127,169,108,213,196,249,243,231, 63,200,201,201,249,108,234,212,169,154, 59,119,238, 80, +133, 66, 1,133, 66,129, 77,155, 54,241, 71,142, 28,169,185,113,227,198,179,109,245,193,198,198, 6,247,238,221,163, 97, 97, 97, +154, 19, 39, 78, 8, 0, 64,161, 80, 32, 38, 38,134, 46, 88,176, 64,147,157,157,253,217,249,243,231, 63,168,201, 97, 48, 24,240, +240,225, 67,228,230,230,194, 96, 48,160,184,184, 24,233,233,233,120,242,228,201,179,128,165, 49, 49,235,241,201,251,125,219, 22, +104, 52,133,151,163, 99, 31, 7,182,107,101, 91,160,209, 20,198, 62,122,124,143,210,185,220,234,225,149,161,172, 61, 40,237,120, + 62, 58,223,162, 91,239,193, 34,146,123, 5,208,229, 3, 2, 75, 64, 96, 1,190,196, 26, 61,223,244,225,109, 60,146,107, 15,194, + 6, 65, 34,174,125,124, 11, 75,237,192,178, 33,199,175, 21, 89,118,236, 53, 65,244,244,233, 83, 48, 12,243, 44, 96,201, 76, 76, +240,102,159, 17,204,207, 71,138,237,193,210, 96,240,120, 70,143,153, 17, 10,133, 95,188,255,254,251,194,172,172,172,231,156, 82, +169, 20, 3, 6, 12, 16,203,229,242,217, 70,159,251,221, 86, 66,164,138,219,131,165,147, 98,226, 53,202, 61, 23, 52,238, 83,230, +252, 44,245,106, 19,136,113,253,109,165,139,183,164,181,186, 30, 87,232, 2,198, 48, 25,133, 90, 63,252, 80,183,144,229,226,226, + 18, 98, 98, 98,114,224,247,223,255,159,189,243,142,111,170,122,255,248,231,220,155,164,153,221,187,180,180, 20,232,164,172, 82, +161,236, 37,123, 43, 2,138,130,108, 20, 65, 65, 4, 1, 7, 67, 20,145, 33,202, 80, 54, 2, 2, 50, 69,150, 96, 25,178,202,166, +165,180,180,165,165,123, 55, 29, 73,179,238, 61,191, 63,210, 98, 45, 29, 41,224,207,241,189,239,215,235,190,154,220,228,126,238, +115,110,210,228,147,231, 60,231,156,131,138,110,221,186, 97,230,204,153, 74,169, 84,122,204,199,199,231,137,207,198,186, 40, 45, +230,222, 94,184,114,123,214,237, 61,189, 1, 83,113,185,185,250, 99,203, 86,243,248,232,155,223,212, 70,142,142,178, 84, 83,171, +213,190, 49,126,252,248,188,159,126,250,233, 9,115, 37,147,201,240,240,225, 67, 44, 89,178, 36, 63, 63, 63,127, 76,125,227,125, +206,180, 2,112, 19, 64, 25,128, 46, 0, 20,229, 35, 5,195, 1,252, 74, 41,229, 40,165, 89,148,210, 12, 75, 5, 89,150,253, 96, +237,218,181, 34,173, 86,139, 9, 19, 38, 32, 37, 37, 5,233,233,233,152, 55,111,222, 67,158,231,223, 40,215,188, 69, 41,141,177, + 68, 79,175,215,223, 47, 40, 40, 24,208,167, 79,159,194,130,130, 2,180,104,209, 2, 3, 6, 12,128,155,155, 27, 60, 60, 60, 48, +104,208, 32,248,249,249, 33, 47, 47, 15,163, 70,141,202,207,201,201,233, 77, 41,173,117, 20,122, 94, 94, 94,252,158, 61,123,226, +223,122,235,173,176,148,148,148, 16, 0,238, 70,163,209, 65,171,213, 90,155, 76, 38,149,141,141,141, 99,104,104,168,243,228,201, +147,237, 34, 35, 35,131, 83, 83, 83, 75, 0, 36, 91,122, 13,254, 23,168,201,139, 60, 3, 71,159, 50,142, 1, 21, 53, 88, 79,107, +200,152,114, 33, 82,249,111,101, 12,192, 71,219,246,109, 43,179,242,246,131,109, 96, 75, 40,100, 50,200,165, 86,144,219, 57,160, +140,231,177,241, 97,166,166,148, 82,203, 63, 32,255, 8,254, 79,153, 43,158,231,177, 97,195,134,178,197,139, 23, 23,102,102,102, + 78, 62,119,238, 92,203,200,200,200,219,117, 54,128, 97, 80, 84, 84,132,189,123,247,106,183,108,217,146,160,213,106, 91, 75, 36, + 18,163, 94,175,199,206,157, 59,203, 86,173, 90,149,164,209,104,194,196, 98,177,161, 62,221,111, 21, 53, 88, 98,177,216, 88, 86, + 86,214,122,247,238,221,241, 71,143, 30,213,218,216,216, 64, 44, 22, 27, 53, 26, 77,243,237,219,183,223,223,189,123,183,214,198, +198,166, 94,198,141,231,249,106, 51, 88, 28,199, 65, 42,149,214,171, 6, 43, 50, 50,242,123,131,193,208,118,231,206,157,169,155, + 55,111, 46,179,177,177, 1, 0, 24,141,198,176,109,219,182,165,174, 95,191, 94, 87,159, 2,119, 0,208,235,245,224, 56, 14,219, +183,111,215,237,218,181, 43,213,100, 50,133, 85,236,219,188,121,115,217,246,237,219, 83, 13, 6, 67,219,200,200,200,239,235,210, +226, 56,142, 43, 44, 44,132, 72, 36, 66, 66, 66,130, 78, 42,149,130,101, 89,196,197,197, 61, 54, 88, 46, 78, 14,193, 29,194, 66, + 2, 87,172,223,123, 86, 41,149, 74,123,119,109, 19, 20, 29,151,156, 74, 41, 73,170, 87,224,255, 43, 24,160, 0,129, 60, 46, 69, +103, 45, 19, 27, 9, 50,247, 3, 18,251,114,131,101,222, 60, 26,120, 34, 50, 70, 99, 13, 2, 43,232,141, 46,117,106, 26,169, 18, + 4,138,187,201,176, 22, 73,228, 36, 51, 51,243,113,166,169,194, 16, 53,106, 18,132, 27,113, 37, 42, 16, 42, 5, 96,241, 84, 34, +148,210, 1, 42,149, 74,148,145,145,241, 88,235,177,102,163, 70,172,209,104,236,109,113,219,115, 56,119,240,252,219,177,143,202, + 60, 14,254,174,245,123,239,163,205,114, 57, 91, 0, 36,173, 70, 51, 63, 55,204, 28,211,210,106,222,198,156,102,145,209,154,198, + 32,116, 50,154,149, 88,252,235,162, 81,163, 70, 29, 21, 10,197,177,131, 7, 15, 42,148, 74, 37, 18, 18, 18,208,162, 69, 11, 44, + 90,180, 72,161, 80, 40,126,241,246,246,238,106,113,156, 0, 46,223,167,201, 37,197, 92,248,236, 13, 41,153,183, 31,114,102, 99, +197,152,205, 85,142,154, 98,252,130, 35,133, 5, 69,101, 47, 93,186, 99, 60, 99,169, 38,165,244,166, 90,173,238,181, 96,193,130, +188,220,220,220, 63,153,171,228,228,228, 10, 35,208,149, 82, 90,239, 31,189,207, 25, 37,204,197,235, 1, 0,154, 0,104, 73, 41, + 53, 1, 40,166,148, 62, 85,234, 58, 56, 56,184,181,183,183, 55,214,173, 91,135,141, 27, 55, 22,172, 88,177, 2,148, 82,248,249, +249,217, 60,173,102, 86, 86,214,213,251,247,239,247,110,217,178,229,189, 53,107,214,164,186,187,187,243, 19, 38, 76,192,184,113, +227,224,236,236,204,173, 94,189,250, 81,167, 78,157,238,198,199,199,247, 44, 45, 45,189, 83,151, 30,165,148,230,230,230, 94,220, +180,105,211,213, 30, 61,122, 88,143, 29, 59,214,117,227,198,141,110, 49, 49, 49, 13, 53, 26, 77,131,236,236,108,229,185,115,231, +164,219,182,109,115,139,142,142,126,168,213,106,175,210,191,114, 65,224,127, 25,181,121, 17, 0, 57,229, 70, 71, 95,229,111, 78, + 29,143, 89,122,108,181,183, 45,120, 94,141,212, 57,226,102, 79, 2,189, 56,186, 9, 89,182,104,243,134,247, 71, 55, 15,148,251, + 52, 10, 2, 87, 82,136, 59,153,153,216,150,161,214, 24, 41,253,102,111, 2,253,173, 46,157,170, 84, 24, 44,150,101,113,226,196, + 9,110,231,206,157, 6, 74,233,119, 69, 69, 69,243,163,163,163, 75, 45,213,225,121,158,125,243,205, 55, 75, 10, 10, 10,246,103, +100,100, 76,142,143,143,215,119,234,212,137,125,245,213, 87, 75,242,243,243, 15, 19, 66, 38, 92,187,118, 77,215,177, 99, 71,212, +231,125, 76, 8,129, 68, 34, 1, 33, 4,145,145,145, 15,131,131,131,155, 93,190,124,249,219,216,216,216, 87, 40,165,236,245,235, +215, 83, 66, 67, 67, 91, 92,188,120,113, 77, 76, 76,204, 40,158,231, 45,154,115,133, 16,242, 56, 59, 86,217, 72, 49, 12,243,216, +212,213,199, 96, 1,192,245,235,215,163,130,131,131,131,174, 94,189,186,117,226,196,137,189, 1, 40, 34, 35, 35,239, 53,111,222, + 60,240,242,229,203, 91,223,120,227,141, 62, 48,247,249, 91,132,193, 96,192,144, 33, 67, 52,106,181,250,120,113,113,241,152, 59, +119,238,104, 66, 67, 67, 43,246,157, 40, 44, 44, 28, 83,143,215,104,225,215, 95,127,253, 17, 0,240, 60,191,117,229,202,149,227, +103,205,154,229,156,150,150,246,216, 96,101,231,230,159,105,223,127, 26,151, 87,168,214,111, 94, 57,251,101,185, 76,106, 53,255, +243,205, 17, 70, 22,151,107, 85,254, 95,197,138, 43, 2,101,210, 95,238,110, 47, 93,253,205, 38,201,216, 65,141,101, 33,129,222, +102,115, 37,177, 71,100,116, 33, 62,250,114, 47,255,197, 20,231, 68,240, 72, 1,135,251,117,106,170, 68, 69, 40, 51,102,143,239, + 45,145, 46,253,110,134,111,135, 1,239, 75,131, 66, 94,120,108,132, 98,162,174, 97,229,146,105,252, 23,147, 29, 18,193,147,116, +152, 96, 81,150, 0, 0, 76, 38,211,203,159,127,254,249,241,177, 99,199, 42,155, 53,107,246, 88,243,225,195,135,248,226,139, 47, +180, 58,157,238, 37,203,148, 8, 1, 19,220,138,227, 56,151, 31, 78,230, 53,125,247,157,201, 10, 57,147, 15, 36, 46, 55,155, 23, +177, 45, 90,133, 56,225,163,119,220,196, 51,151, 30, 9,190,240,173,111, 9,140,146, 32, 0,233,150,168,139, 68,162,163,159,125, +246,153, 66, 46,151, 35, 46, 46, 14,114,185, 28, 50,153, 12,161,161,161, 88,181,106,149,226,173,183,222, 58,214,181,107, 87, 85, + 68, 68,132,201,210,182, 95,190, 79,147,219, 5,144,240,217,107,227, 47, 45,155,110,231,214, 34,192, 9,185,197,192,248,143,127, + 46,200, 47,210, 14,175,143,185,170,128, 82,122,147, 16,210,107,198,140, 25, 39,183,108,217,226, 24, 20, 20,132,148,148, 20,140, + 28, 57, 50, 47, 39, 39,167,219, 63,192, 92, 1, 64, 41,128, 6, 0, 98, 97,174, 69,122, 64, 8,177,194, 51, 44,207, 22, 29, 29, +125, 35, 57, 57,217,125,220,184,113, 40, 42, 42,178, 31, 49, 98, 4, 18, 18, 18, 16, 27, 27,123,243, 89, 2,213,106,181,145,132, +144,230,239,190,251,238,232,217,179,103,119,176,182,182,110, 68, 41,165, 69, 69, 69,137, 28,199, 93, 0,176,147, 82,203,215,225, + 44, 55, 76, 15, 8, 33,137,241,241,241,174, 91,183,110,181,131,249, 26, 0,128, 22,128, 26, 64,214,211,154,194,255, 97, 34,255, +166, 99,159, 30, 74,169, 69,219,203,141,208, 97,108, 99,114,246, 85, 95, 20,143,242, 69,201,216, 38,228,194, 75,141,209,165,182, + 99, 0,132, 84,183,191,117,235,214,212,100, 50,209,147, 39, 79,210,190,125,251,150,118,236,216,241, 66,104,104,168,159, 37,113, + 84,213,236,218,181,235,241, 54,109,218, 12,175,186,239,133, 23, 94, 24, 81,121, 95,151, 46, 93,162,186,116,233,162,238,220,185, +115,130, 37,113,118,238,220, 57,166, 67,135, 14,165,157, 59,119,142,169,188, 63, 44, 44,108,112,247,238,221,143, 86,222,247,194, + 11, 47, 12,170,186,175,166,182,247,236,217, 51, 37, 54, 54,150, 62,122,244,136,246,235,215, 47,189, 98,127,143, 30, 61, 82,110, +221,186, 69, 99, 99, 99,105,159, 62,125,210,171, 59,182, 38,205,202, 91,155, 54,109, 38,116,234,212,233, 98,149,152,199, 87,221, + 87,155,102,167, 78,157, 46,134,133,133,141,175,186,175, 77,155, 54, 19,158,230, 53,170,188,185,187,187,251,183,106,213, 42,123, +229,202,149,212,215,215, 55,187,242, 99,205,186,190,185,160,176,168,164,104,214,194,117,123,156,131,134, 52,175,111,219,235,187, +253,107, 53,239, 5, 73,232,239, 65, 29,232,185,160,163, 49,219,189,239,141,233,165,212, 93,223,217,135,210,152,247,233,229,189, +227,104,120,144, 21,247,251,183, 94,177,244, 92,224, 49,122,222,191, 51, 61,214,216,202, 34,205,115, 77, 58,209,115,129,199,162, +183,122,223, 27,210,217, 89,191,115,251, 6,250,224,193, 3,122,248,192, 78,218, 46, 72, 81,174, 25,116,146,158, 11,234,102,145, +102,165,173,117,235,214, 29,194,195,195, 75,246,236,217, 67,227,226,226,232,169, 83,167,104,251,246,237, 53,173, 90,181,234,102, +121,219, 65,232,217,224, 33,166,223, 2, 46,204, 29,169, 42, 28,223, 91,166, 27,217,205, 74, 63, 56, 92, 98,232,213, 90, 98,234, + 16, 36,226, 90,248, 50,124,144, 23,104,175, 80,185,142,158, 11, 56, 79, 47, 4,245,182, 52, 78, 63, 63,191, 71, 62, 62, 62,180, +166,205,223,223, 63,167, 75,151, 46,162,167,121,221,219,250,195,187,103,152, 52,227,244,119,221,232,192,206,214,121,237, 66, 68, +221,159,245,189, 4,160,149,147,147, 83,238,150, 45, 91,168,171,171,107, 14,128,102,255,136,247,167,121,159, 3,128,193, 0,156, +203,239,171, 96,158,127,200,247, 25, 52,219,247,234,213,203,120,227,198, 13,154,144,144, 64,143, 31, 63, 78, 59,116,232, 96, 2, +208,245,105, 53,255,138,182, 11,154,194, 86,177,145,242, 11,245,151, 64, 8, 9,161,213, 20, 27,134,134,134,210,222,189,123,107, +207,158, 61, 91,162,215,235, 39, 93,187,118,237,240,179,106,254, 21,113,254, 21,154,221,187,119,191,200, 48,140,111,249, 16,224, +244, 95,127,253,181, 53, 0,116,235,214,237, 34,203,178,190, 0, 64, 41, 77, 63,125,250,116,235,191, 51,206,191, 82,211,195,195, +195,159, 97,152, 19, 0,116,169,169,169,143, 71, 59,185, 52, 27, 28,238, 96,111,219,173,176, 80,125, 51,243,238,161, 99,127,119, +156,255,104,205,227, 77,172, 96,109,213, 6, 28,230,220, 77,208, 52,154,191, 41,183,241,128, 94,237,197, 91,247,158,227,151, 77, +117,137,111, 31,172,124, 8,194,127, 1, 78,119, 21, 93,146,116, 22,107, 42,200, 11,128,120,206,173,120,141,247,172,181, 5, 77, +123, 14, 28,207, 30,217,183,129,255,114,170, 99,124,251, 96,213, 35, 0, 95,128,215, 92,178, 88,179, 18,161,161,161, 29,164, 82, +233,177, 81,163, 70,169,118,237,218,165, 45, 43, 43, 27,112,227,198,141, 90,179,223, 79,104, 94, 10,108, 8, 19, 89, 2, 80,175, +218,142, 51,195, 60,128,137, 95,132,110, 49,143,234, 19,231,211, 96,137,102,187, 0,226,173,180,150,254,172,209,153,102, 88,146, +185,178, 68,147, 16,210,202,222,222,126, 71, 65, 65,193, 8,106, 65,230,234,255,179,237,132, 16,103,152, 39, 98, 20,193, 60,109, + 65, 20,173,163,134,201, 2,205,142, 44,203,126,208,184,113,227, 22, 9, 9, 9,119, 57,142,251,146, 82, 26,241, 44,154,207,130, +160,249,255, 62,217,232,191,138,191,197, 96,117,234,212,233, 58,199,113,199, 37, 18,201,146,136,136,136, 39, 62,168,159, 70,243, + 89, 16, 52, 5,205,127,165,102, 37,147,117, 61,182,212,119,233, 15,249,222,239,141,176,127, 84,151,185,170, 83,179,220,100, 93, +189,175,241,249, 98,103,177,247,204, 17,170, 71,117,153,171, 90, 53, 43, 17, 26, 26,218, 65, 38,147,109,211,106,181, 19,234, 50, + 87,213,106,198, 4, 75, 80, 96,108, 0, 19, 27, 2, 6, 53, 47,181,195, 83, 13,196,236, 93,100, 32, 11, 47, 71, 27,234, 27,103, +125, 17, 52, 5, 77, 65, 83,160, 42,127,203,172,199,231,207,159, 15,253, 59,206, 43, 32,240,159,162, 79,188, 30,199,155, 92,131, +181,213,231,161,254,242,105,251,151,200, 53,224, 73, 42, 8,191,170, 54,115,101,129,230, 85, 40,140,159,191,224, 47,159,113, 96, +137, 92, 3, 32, 19, 20, 43,107, 51, 87,150,114,253,250,245,223, 1,248, 62,181, 64, 96,180, 1,192, 67,128, 36,225,211, 90,102, +199,254, 24, 20,248, 11,127, 61, 10, 8, 8, 8,212,193, 63,110, 89, 9, 1, 1,129,122,208, 39, 94,143,152,224, 72,228,177,179, +192,193, 23, 82, 83, 50, 10, 77,153,232,147,164,127, 70,205, 43,200, 35,211,193,195, 31, 86,166,120, 20,234,159, 77,243,185, 67, +169,217, 68, 9, 8, 8, 8,252, 51, 17, 12,150,128,192,191, 29,115, 86, 39,181,124,251,231,106, 10, 8, 8, 8,252, 15, 65, 0, +132, 84,247, 64,125,250, 86, 9, 33,213,106,212,134, 5,197,155,130,166,160, 41,104, 10,154,130,166,160, 41,104,254,199, 52,235, +210,254,175,212,118,253, 45, 69,238,130,166,160, 41,104, 10,154,130,166,160, 41,104, 10,154,255,101,132,133,116, 5, 4, 4, 4, + 4, 4, 4, 4,158, 51,127,107, 13,150,194,201,223, 29, 34,166, 5,225,105, 32, 0, 80,134,196,192,196,223,214,228,198, 90,188, + 62,149,128,128,128,128,128,128,128,192, 63,141, 26, 13,150,127,251,161,231,149,114,101, 83, 0,224, 41, 5,199, 3, 69, 5,217, +151,146,111,159, 26, 10, 0, 30,205,122, 28,176, 82, 58,133,243, 60, 5, 79, 41, 76, 60,133, 73,167,125,144, 19,125,212,162,149, +231, 85, 46, 1, 67,123,246,234, 57,108,192,128,254, 1,205, 67,154, 55, 1,128, 59,119,239,196,255,252,243,209,251, 42,151,128, +253, 37,217,247, 15, 60,143, 6, 10, 8, 8, 8, 8, 8, 8, 8,252,127, 83,163,193, 82,202,149, 77,207, 28,218,228,114,224,124, + 10, 0,160,103,168, 27, 62,253,106,203, 16, 66,200,125, 0,120,233,173,175,252,231,191, 59, 6, 23,163,114, 64, 41, 69,171,166, + 14, 24,242,218, 91, 22,157, 84,238, 22, 28, 54,226,149, 87, 94,157, 53,107,230,160, 7, 15, 30, 36,237,218,181,235, 60, 0,116, +234,220,185,233,103,159,125,246,202,114,123, 7,169,220, 45, 56, 77,155, 25,253,247,172, 31, 36, 32, 32, 32, 32, 32, 32, 32,240, + 12,212,218, 69,168,146,137,112,255,161,185,183,206, 78, 1, 76,124,227, 37,100,101,101,250, 27, 76, 60, 70,143, 24,138, 27,247, + 51, 16,251, 48, 7,148, 2,254,158, 22,175, 37, 12, 22,124,155, 55,199,189,217,229,196,201,147, 87, 23,204, 95,176,157, 16, 92, + 2,128, 13,223,125, 31,254,209,199, 31, 77, 24,253,198,232, 23,247,237,219, 23,133,191,107,129, 70, 1, 1, 1, 1, 1, 1, 1, +129,103,160, 86,131,197,241, 20, 49,137,153, 0, 0,134, 21,161,127, 7, 91, 44, 95,252, 1,180, 58, 14,183, 18,213, 56,248,123, + 10,116,165,133,160, 20,232, 16,226,130,170,211,254, 85, 29, 97,240,213,116, 69,107,214, 74, 60,162, 79,155,166, 62, 14,246,246, +246,113, 87,183,151,126,244, 90, 86,144,200,100,184,190,248, 72, 88,162,210,218,170,253,222,125,251,130, 7, 14, 24, 96,101, 99, + 99, 59,219, 33,176,151, 39, 95,102,152, 89,152, 20,161,174, 73,243,121, 32,104, 10,154,130,166,160, 41,104, 10,154,130,230,223, +171,249, 95,131, 1, 0, 66, 72,181,115, 53,196,167,228,225,126, 98, 6, 90, 7, 54, 64, 19, 31, 55, 92,141, 43,192,206, 51, 41, +216,124, 50, 9,103,110,231,128, 23, 91, 35,179,152,224, 65,114, 22, 98,147,114,235,156, 86,153,181, 18,143,152,177, 76, 61, 43, +216,183,168, 93,196,158,105,240, 80,197, 5,127,240, 85,225, 52,214, 74, 60,194,197,205,110,215,172,233,147, 95,179, 86,200,173, +244, 58, 61, 26,249,120,201,166, 76,120,115,172, 68,165,220,245,220, 91, 45, 32, 32, 32, 32, 32, 32,240,143,162, 38, 47,242,111, +165,198,105, 26, 74,181,165, 15, 94,159, 52, 43,187,169,117,134,126,104,183, 32,128, 2, 57, 25, 73,136,190,122, 2,113,215, 79, +162, 56,231, 17, 40, 5,124,124, 26, 66,162, 77,212,111, 88,191, 54,155, 55,149, 61,168, 73,111,112, 47, 15,207, 7,105, 74,102, +217,172,134,151,226, 98, 88, 96, 79,111, 0, 0, 32, 0, 73, 68, 65, 84, 51,156,166,206,218,130,184,216, 12,167,101,179, 26, 94, +122,144,166,100, 20, 18,174,253, 27, 35, 7,147,193, 3,250,224,131, 15,102, 97,240,128, 62,152, 53,249, 21, 34,179, 18,183,251, +107,154, 46, 32, 32, 32, 32, 32, 32, 32,240,215, 80,163,193,138,189,120,160,211,245, 95,183,187,230,102,101,169,149, 82, 17, 68, + 12,131,236,212, 4,108,251,106, 58,246,125, 51, 19,133, 25, 15, 64, 41, 32,151,176,208,149,228,169, 51,110,238,117,205,173,101, + 4, 33,129,241,197,111,119, 60,108,148,148, 65,109,119, 30, 47, 17, 3,192,206,227, 37,226,164, 12,106,251,237,142,135,141,172, +104, 14,120,142,195,128,193, 47, 97,251,214,141, 8,239, 62, 24,251,206, 61,130, 70,107,248, 7,173,127, 38, 32, 32, 32, 32, 32, + 32, 32, 80, 55, 22, 77, 52,154,158,157, 15, 7,107, 22,206, 30,141,240,234,244,229, 0, 0,142, 55,129,194, 60, 61,131, 37, 57, + 61, 10,241,169,183, 71, 55, 74,244,113, 39,234,215,250, 42,180, 0,240, 90, 95,133,214,199,157,168,223, 30,221, 40, 81,195,217, + 27, 56,142,195,133,168,108, 44,251,241, 30, 22,108,185,141, 19,215,132,233,176, 4, 4, 4, 4, 4, 4, 4,254,125, 60, 54, 88, +132, 16, 90, 93,255, 39, 15, 32, 46, 41, 7, 82, 17, 15,207,134, 77,254, 40,100,167, 0,165,128,209,196, 91,116,162, 67, 39,211, + 83,125, 27,148,210,217,203, 31,133,135, 4, 58,222,158, 50,202, 43, 38, 36,208,241,246,236,229,143,194,125, 27,148, 82, 35,111, +197, 81, 74, 65,121, 10, 74, 41, 40, 5,120,254, 63,213, 29, 43, 32, 32, 32, 32, 32, 32, 80, 11, 53,121,145,127, 35, 12, 0, 80, + 74, 73,197, 86,221,147,188,189, 92,113,229,110, 50, 26,186, 74, 97, 99,107,141,152,248, 84, 48,172, 8, 44, 67, 96,226, 44,191, + 14, 84,111,252,113,197,108,219,229,143, 50,184,203,107,119, 36, 60,120,148,193, 93, 94, 49,219,118, 57,213, 27,127, 52,199, 97, +158,212,148,175,244, 87, 64, 64, 64, 64, 64, 64,224,191, 79, 93, 94,228,223, 70,221, 75,229, 80, 10,165, 66, 14,158,145,225,194, +181,120, 4, 6,181,192,150,195, 87,209, 36,164, 45, 50,138, 77,160,245, 88,206,112,230,106,205, 13, 0, 55, 6,247,242,240, 28, +218,183,193,139, 20,226, 83,223,238, 82,167, 2,192,166,240,161,229,198,202,156,185,226,169,121,154, 8, 1, 1, 1, 1, 1, 1, + 1,129,127, 27, 22,185, 35,158,167,112,118,178,135, 84,101,139,196, 28, 61, 74,224, 12,181,150,128,231, 0,206, 84,179, 9, 34, +132,132, 84,183,255,208,201,244,212,131, 39,115, 54, 29, 58,153,158, 90,121,191,185,107,208,220, 61, 72, 41,173,182,139,176, 38, +205,103, 65,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,191, 87,243,191,134, 69,139, 61, 55,118, 87,162,105, 3, 37,202,244, +174,208,234, 57,148,234, 76, 40,214, 24,161,214, 24,145,148,169, 65,108,196,179, 7, 66, 97, 54, 85,160, 4, 60,165, 0, 49,119, + 19,254, 55, 18,133, 2, 2, 2, 2, 2, 2, 2,255, 75,212,105,176, 52, 90,205,131, 23,135,141, 47, 95,240,153,130,227,204,153, + 37,174,162, 43,143,167,224, 12,218, 26,231,191,178, 20,142,231,175,174,219,242, 99,191,150,173,218,178,193,222,214, 40, 42,204, +197,181, 43,151, 76,148,231, 47, 61,171,182,128,128,128,128,128,128,128,192,255, 39,117, 26,172,184, 75, 7,106,156,219,234,121, +146,159,159, 53,122,199,238,253,139,127,216,115,184,131,206, 96,104,192,131, 77,225,140,198,179,210,226,188,143,254, 63,206, 47, + 32, 32, 32, 32, 32, 32, 32,240,188,176,168,139,240,255,131,252,248, 43,197, 0,222,249,187,227, 16, 16, 16, 16, 16, 16, 16, 16, +120, 86, 44, 31, 2, 40, 32, 32, 32, 32, 32, 32, 32, 32, 96, 17, 4, 64,181, 35, 1,234,179, 82,246,211,140, 38,168, 75, 95,208, + 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,255,158,102, 93,218,245,241, 31,255,100, 8,165,127,221, 92, 83,132,144,144,231,125, +161, 4, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,239,105,254,215, 16,186, 8, 5, 4, 4, 4, 4,254,231,112,242, 31,164, +114,242, 31,164,178,244,249,206,193,195, 93,157,131,135,187,254,149, 49, 9,252,183,248,199, 20,185,255,155, 33,132, 72, 1,240, +148, 82,195,223, 21,131,189,189,175,141,201,218,233, 0,195,235,190, 80,167,220, 62,245, 60,181, 9, 33,210,224,224,224, 86, 0, + 16, 29, 29,125,147, 82,170,123, 86, 77,165,107,192, 40,123, 27,187, 73, 6, 94,207,105, 74, 53,235, 74, 50, 99,247, 61,123,164, +127,224,236, 28,172,212, 75,229,203, 64,104, 95, 80, 48,148, 33,167,217, 34,227,123,133,133,183,212,181, 29,215,112,240,210,192, +113, 47,247,159,191,105,223,209,197,143, 14,205,141,169,250,184, 67,223, 53,214,239,140,238, 49,251,155, 31,127,254, 34,247,240, +236,146,231, 25,243,255, 10, 13, 59,190,106,103, 18,185,177,233, 17,203,243,234,115,156,103, 64,120,148, 88, 44,118, 54, 24, 12, +217,105,177,151, 45,234,182,240, 10,108,127,131,101, 25, 15,206,196,167,166,220,191,216,230,233, 34,254,223, 66,225, 17,216,138, +112,220, 7,148,231,196, 60,216,149,101, 57,113, 23,158, 69,207,195,195, 67,110,107,107,219,217,198,198,198, 75,161, 80,200, 10, + 10, 10,180, 5, 5, 5,143,146,147,147,207, 80, 74, 77,207, 43,238,250,224,220,108,200, 92,145, 21,243,113,249,237, 79,115,162, + 14, 46,173,253,249,131, 23, 19,134,204, 45,191,189, 52, 39,234,208,252,255,143, 56,235,194,181,249,176,182,160,252,187, 12,195, +182,231,168,233,179,236, 59,135,214,214,231,248,240,240,240, 33, 70,163, 81, 90,113, 95, 44, 22,235, 46, 93,186,116,240,249, 71, +250,191, 73,189, 13,150,103,240,112,123,163,136,126, 34, 98,153,151,120, 74,173, 51,110,238, 85,254, 21,129, 61, 47,188,219,190, +126,141, 97, 24,207,202,251,120,158, 79, 77,190,178,253,185,124,216, 18, 66, 60,191,154, 17,250, 65, 86,158,182,136, 16,178,168, + 38,243,225,218,106,212, 69,194, 16, 95, 66, 8, 24, 2,176, 12, 1,128,244, 71, 87,118,180,174, 70,211,221, 70, 41,242, 47, 42, + 53,221,165,148,214,249, 37, 36,119,244,243, 80, 58, 54, 56,219,117,232,180, 70,215, 78,108, 9, 82,185, 6,246, 40,201,138,137, +126, 14,109,115,110,210,164, 73,152,191,191,191,227,180,105,211, 36, 0,176,114,229,202,166, 77,155, 54,205,139,143,143,143,164, +148,230, 60,141,174,210, 37,112,244,234,229, 11,183,247,237,219, 23,233, 57,165, 88,182,114,109, 87,149,155,255,240,231,101,178, +136, 71,168,220, 78,169,184,251,214,187, 31,121,246,235, 22, 38, 42, 44, 49,226,151, 51,151, 71,239,219,188,172,187,157, 93,203, +230,181,153, 44, 94, 83, 56,223,213,154,246,225, 53,133, 0, 48,170,234,227, 13, 84,198,158, 14, 10,244,117,151,138,110, 1,216, + 95, 87, 44, 30, 97,111,156, 16, 75, 36,222,132, 48,230,215,157, 37, 96,202,223, 3, 38,163, 62,249,193,249,205,189,159,169,177, +207, 9,215,208,209,153, 4,196,145, 41,143,143, 16,128, 97, 24,136, 8, 0, 74,139, 18, 46,110,113,124,214,115, 16, 66,108, 67, +154,218, 53,235,223,161,227,166,179,137,249,170,134, 93,222, 61, 74, 40,179, 54,249,220, 87,183, 44, 57, 94, 38,147,217, 31, 57, +114,196,185, 79,159, 62,182,174, 33, 67,206, 90,114,140,202, 74, 22,252,243,207,135, 37,125,250, 88,126,153,149, 46, 1, 47,130, + 97,118, 16, 64,204,243,116, 37,203,211, 61, 37,121,177,241,180,158,245, 20, 46, 33, 67, 22,130, 32,200,226, 3, 40,238,101,223, + 61,248, 84,211,210, 16, 66, 88,185, 75,192, 24,185, 76, 54,171,169,127,160,127,210,195,132,216,162, 34,245, 10,109,118,236, 38, + 74, 41, 95, 47, 45, 19, 55,227,228,153,139, 47,139,196, 98,210,187, 91,152,146, 16,210,187,190, 26,149,113,117,117, 29,178,102, +205,154,198,225,225,225, 0, 0,147,201,100,179,119,239, 94,183, 69,139, 22, 41, 97,193,255, 80,117, 52,104,208,160,129,173,173, +109, 67,185, 92,222, 0, 0,180, 90,109,154, 90,173,126,148,150,150,150, 86,215,177,110,173,134, 59, 49, 12, 22, 30,223,255,157, + 8, 0,122, 15,155,180,184, 81,215,247,237, 9, 43,214, 86,247,124,206,164, 87, 50,132,188,123,250,200, 22, 2, 0, 61, 6,141, +157,227, 28, 60,252,155,156,232,189, 89, 79, 19,251,179, 66,134, 15,103,157,226, 12, 67, 8, 37,239,133,182, 9,107, 55,108,112, + 95, 4, 55,241,192,144,145, 83,102, 1,168,151,193, 50, 26,141,210,125,251,246,121, 50, 12,195, 26, 12,134,178,145, 35, 71,102, + 63, 75,108,126, 29,223,184, 8, 66,188, 12, 38,211,247,201,151,155, 44,166,244,227, 63,189,111,200,240,225,172,251, 67,209, 60, + 16,102, 2,229,249,148,140, 27,187,218, 63,203,249,254,233,212,203, 96, 57,249, 15, 82,177, 82,201,221,174,157,218, 57,206,157, + 50,212,106,253,158,243,240,104,245, 74, 90,250,205, 61, 13,254,170, 0,159, 21,134, 97, 60, 15,237, 92,227, 34,151,178, 0,128, + 18, 45,135, 97,163,167,213,121, 92,131,176,215, 34, 64, 16, 80,209,135,202,113, 38,153, 72, 36, 46, 35, 0, 64,204,163, 3,228, +114,171,203,155,230,133,171,199, 14,244,125,253,131,111,110,108, 5, 96, 7, 32,179, 58, 61,194, 48,158,187, 55,175,116,105,224, + 40,131,136, 37, 40,209,154, 48,244,245,247,184, 39,158, 71,136,231,166,121,225, 11, 71,247,245, 25,225,210,231,167, 97, 0,142, +213, 22,167,202, 45, 56,208,218,201,227,212,176,137, 11, 61,180,176,193,252,197, 43, 92, 46,158,220,119,190,231,144,241,134, 71, +169,169, 26,147,193,120, 63, 47, 63, 99,102,113,122,108, 92,157,141, 54,159,159, 85,169, 84,141, 85, 42, 85,203,190,125,251,202, +102,205,154, 37,238,218,181,235,227,199, 39, 78,156, 40,137,136,136,112, 95,190,124,121, 63, 15, 15,143,178,146,146,146, 91, 37, + 37, 37, 9,148,210, 39,218, 82, 19,110,110,206,111,191, 52,100, 32,186,191,244, 22, 56,158, 96,194,212, 25, 56,113,108,255,100, + 0,207,197, 96,169, 88,230,211, 9,211, 62,244,236, 18, 30, 42,250,124,239, 3,216, 42, 36,232,221,182,141, 72,202,206,118,223, +189,121,249, 10, 0,111, 86, 61,166,225,224,165,129,188,166,112,126,136,147, 97,228,160,246,190, 56,188,219, 48,210,179,231,108, + 48, 10,187,199,153,172, 38,125,223,177,182,151,203,214, 52,176, 99, 93,164, 92,246,154, 38,125,223,249, 53,254,216,215,197,181, +197, 34,150, 72,188, 55,125,179,196,207, 65, 37, 1,203, 18,136, 24, 6, 44, 75,160,211,115, 24, 61,101,238,243,104,110,249,151, +171, 95, 63, 6, 24, 11, 0, 60,176, 69,155, 29,247, 75,125, 94, 19,194,176,142,123, 55, 47, 23,185,216, 90,129,101, 9, 88,198, +188, 61,204,212,226,157,247, 63,177,125,198,248,156,251,118,112, 9,139,248,166, 75,239,118, 33, 14, 45,126,188, 68,236,218,245, + 29,225,152, 91, 38, 31,179,251, 80,196,200,134,157,223,187, 66, 41,255,101,202,249, 85, 39,107,211,209,233,116, 89,189,251,244, +181, 33, 34,165,226,215, 3, 91, 59, 87, 44, 54,111,228,248, 63, 22,135,167, 64,197,143, 24,158, 2, 19,199,143, 67,239, 62,125, + 53,188,137, 79,173, 77,251, 79, 48,204,142,227,191, 94,112, 46, 51, 82,124,181,102,227,194, 82,117,238,194,196, 24,199, 36,133, +171,255,187,154,172,216,195,150, 55, 28, 65,177, 23,247, 14,221,249,243, 37,132, 4, 7,129,227,205,235,171,250,123, 42,177,235, +232,101, 4, 6, 4,154, 39,111,230, 41, 2,188, 84,232,210,255,117,139,165,255,116, 26,210, 85,164,116, 13,220, 53,100,196,216, +151,135,190, 52, 18,118, 54, 42,232, 13, 58,255, 51, 39,143,125,183,110,205,178, 14,132,144, 49,245, 49,135, 60,207, 89,253,113, +219, 40, 3, 32, 6,160,127,170,224, 0,120,120,120, 56,135,133,133, 61,190,111, 50,153,208,168, 81, 35,164,165,165, 5,212, 87, +203,213,213, 85,225,225,225,209,127,217,178,101, 46,221,186,117, 19, 59, 59, 59, 3, 0,114,114,114, 26,252,246,219,111,173, 91, +183,110,157,157,158,158,126, 52, 43, 43, 75, 83,147,134,145, 47,147,176, 84,196, 74,165,114, 0, 0, 5,152, 89,211, 94,109,225, +236,236, 92,237,143,227,188,188,124,171,143, 63,254,136,136, 68, 98,243,243, 41,101, 40,207,213,184,198, 72,251,246,237, 7, 25, + 12, 6, 89,117,143,229,154,156,251,149,241, 86, 35, 96,254, 10,129,136,101, 11,210,111,238,115,182,172,245,128, 75,139,193,189, +220, 25,241,186,129,131, 7,251, 12,233,215, 21,238,206,182, 56,115,249, 62,166,207,251, 10, 70, 19,183,202, 82,157,202,176, 44, + 43,202,206,206, 78,178,183,183,119,123,154,227, 43,195, 48,140,239,161,157, 95,187,252,118,254,218,156,111,164,187,167, 52,238, + 56,214, 88,177,252, 29,199, 83, 4,200,108,196,157, 7,191,104,237,216,192, 95,190,241,155,207,197,207,122,190,127, 58,245, 50, + 88,172, 21,187,168, 99,251, 48,199,185, 51,198, 89, 45,218,120, 22,151, 78, 30,213,166,223,220,251, 92,204,149,210,197,175, 57, + 43,177, 26, 71, 88,177,146, 1,145,242, 38, 83, 6,199,105,190, 40,201,140,207,125, 86,109,142, 7,126,250,189,158,198,156,210, +166,223,125,251,149,139,171,157, 20, 90,189, 9,111,190,189, 0, 27, 86, 45,180,118,182,181,130,206,192, 97,203,161,200,220, 22, +165, 43,232,216,126,190,175, 47,217, 20,181,255,203, 29, 49,251, 97, 94,241,167, 90, 24,194,192,197, 86,138,197,187,238,195, 70, + 33,134,131,202, 10, 76,149, 10,184, 10,115, 53,118,160, 89,179,176, 88,111, 34,132, 88, 81, 74,171,253,112, 83,185,135,116,178, +118,246,220, 55,116,252, 66,231,184, 28, 2, 74,245, 72,176,149, 98,216,232, 41,118, 77,220,228, 80,202, 88, 36,165,100, 52,122, +127,246,236, 54, 50,247,192,176,178,140,152, 71,117, 53,219,199,199,103,216,128, 1, 3, 20, 51,103,206, 20,123,121,121, 97,199, +222, 19,222, 47,190,252,206,192,180,204, 60, 47,158, 2,174, 46, 14, 41,227, 70,244, 59,242,203, 47,191, 36,167,164,164,136,151, + 45, 91,214,118,223,190,125,193,168,199, 47, 81,142, 82,104,245, 28, 56,142, 7,199, 19,228, 20,214,191,199,145, 16,194,212,252, +171,154, 14,238,213,245, 5,209,202,131, 9, 40,214, 24, 33,151,176,120,144, 81,138,240,240, 48,209,158, 45,164, 91,117, 71,140, +123,185,255,124, 87,107,218,103, 80,123, 95,184,216, 43,176,249,155, 37, 56,124, 49,177, 79, 86, 49,129,211,160,101,147,220,165, +162, 23,157, 21,146, 53, 93,219, 52,117,235, 17,234,141,107,109,154,186,157,187, 30, 19,219,252,149, 21,211,210, 74,196,191,230, + 31,155, 86,173,209, 98, 8, 3, 7,149, 4, 27, 79, 36, 65, 41, 21, 67, 41, 19,153, 55,169, 8, 12,243,108,235, 64,201, 61,130, +189, 88,158, 27,103,227, 17, 60,110,228, 43,195, 61, 70,141,124,153, 18,134,197,222,253, 71, 6,255,240,195,142, 12,149, 91,192, + 70,142, 97, 55,105,211,163, 83,234,210, 34, 4,112,177,181,194,251,223,223,133,181, 66, 12, 27,133, 24,214,114, 49,122,180,116, +126,234, 56, 9, 33,246,147, 7, 55,238,119,123,123,207,110, 1, 13, 85,126,183,226,213,209,227, 22, 95, 91, 21, 81,216,109,198, +154,149,193,142, 86, 5, 58,209,130, 89,227, 69,105,233, 25,221,246, 30, 57,219,221,227,133,113,247, 77,134,210, 15,179,111,237, + 57, 84,157, 94, 74,204,197,214,158,225,195,101,134, 18,227,157, 91,177,169, 77,242,203,172, 16,157, 92, 84,126, 77,197, 80, 85, + 92,219,242,235,155,145,154,132,124, 13,123, 33,205,145,233, 70, 35, 46,214,171, 43, 74,107,224,113, 43,177, 4, 62,254,173,225, +230,238, 1,125,191, 87,125,174,158,249,233,144,210, 61,104,105,105,198,189, 15, 45,213,217,249,243, 37, 44, 90,186, 42, 14, 4, +247, 0, 0, 20, 65, 51,223,155,230,247,213,138, 53,127,218, 55,229,173,169,126,245,137,175, 2, 66, 8,171,112, 13,248,161,231, +160, 49, 47,183,104,251, 34,226,226, 19, 16, 23,117, 13, 61,122,246, 70,223, 1, 67,161,215,149,189,190,233,187, 53,145, 0,190, +173,122,172,181,123, 80,199,230, 33, 65, 63,120,184,123,120, 81, 90,190, 52, 25,165,232,214,173, 27,102,191, 59, 1,154,146, 98, + 4, 4,132,116,176,235,212, 75,215,103,196,219,224,121,138,188,188,220,210,251, 49,209, 61,181, 89, 49, 87, 44,141, 81,163,209, + 24,115,114,114,112,243,230, 77,196,198,198, 34, 42, 42, 10,121,121,121,176,181,181,173, 87, 23,187,189,189,189, 77,155, 54,109, + 94,221,179,103,143,204,214,246, 15,207,175,215,235,161, 80, 40, 48,100,200, 16,113,199,142, 29, 27,140, 29, 59,246, 13,123,123, +251,157, 5, 5, 5, 69,213,233,228,221,254, 57,221,173,249,144,245,253, 94,158, 56, 5, 0, 36, 82, 85,226,234,239,247, 71,213, +118,110,137,204,198,187,231,144, 55,155,128, 82, 16, 66, 86,231,198,236,175,246,135, 52, 0, 24, 12, 6,249,143, 63,254,216,128, + 16,242,167,239,215,133, 95,255,216,254, 78, 92, 70,207,117,159,124, 32,178, 86, 74,145,171,214, 99,210,148,105, 78,150,182,223, +165,249,224,169, 97,173, 91,127,187, 96,214, 4, 40, 21,114,156,188,156,128,119,231, 46, 53,229,231,102,111, 7, 33, 43,115,162, + 14, 60,107,175,197,115, 25,241,230,215, 64, 5,235,222,225,178, 9,175,116,149,233,141, 28, 10, 74,140,208, 25, 56,240,148, 66, + 93,106, 68,116,114, 49,156,108, 37,216,248, 60, 78,246, 15,167, 94, 6, 75, 36,182, 26,240,206,152,126, 86,203,119, 94,193,165, +147, 59,181,233, 55,246, 42, 42, 30,243,106, 51, 50, 49,229,218,110,223,202,207,183,100,132,129,117,131, 0, 7, 48,178, 47, 58, +119,233, 50,228,181, 55, 38, 16,239, 6,206, 98, 19, 71,249,168,152,120,227,222,157,155,199,219,120,182, 88, 81,148,122,123, 97, +125, 52, 43,195,243,124,106,213,140, 21,207,243, 85, 23,153,126, 66,147, 16,192, 78, 41,198,250,163,137,230, 95,198,160,176, 85, +136,177,235,183, 84, 20,229,167,229,182,208,174,248,125, 92, 63,151, 65,139, 55, 69, 31, 90,123, 36,235, 58,128, 40, 74,105, 86, + 77,154,132, 1, 68, 44,129,173, 82, 2, 91,133, 24,182, 42, 49, 24, 66, 42,157,239,207,230,106,193,119,183,183, 2,184, 95,217, + 92, 85,214, 84,186, 6, 52,179,113,246, 57,248,210,228,207,236,239, 60, 50,128, 97, 0, 95, 55, 37,236, 85, 86,208, 27,129,164, + 28, 67,121, 91,109, 48,117,230, 39,206,115,222,155,252, 11, 33, 93, 91, 80, 26,241,167, 47,154,170,113,106, 52, 26,171,209,163, + 71,139,141, 70,163, 97,236,244,197,189, 50,178,114, 7,175,250,236,125,169,147,147, 35, 74,203, 76,184,121, 47, 41,104,233,151, +223,248,254,114,230,202,129, 87,251,183, 62,236,226,226, 98,171,211,233,248,218, 52,171,146,147,149,251,205,150, 29,251,182,175, + 92,190, 20, 49, 73,249,216,252,221, 90, 80,206,180,190,182, 99,170,106,110,216,176,193, 37, 60, 60,156,185,124,249,114, 94, 85, + 3, 74, 8,148,249,106, 29,236,148, 18, 40,164, 34,184,217, 73,225,104, 45,129, 84,194,128, 97,254,248, 16,169,172,185,105,223, +209,197,188,166, 16,135,119, 27, 70,110,254,102, 9,222,124,123, 30,238,230, 74,142, 51, 10,187,197,111,143, 24,252,129,131, 2, +125, 27,216, 49, 46, 61, 66,125,160,148, 73, 48,247,157,209, 8,187,158,228,146, 90,200,207,203,215,160, 37,128,249,213,197,201, +176, 4, 34,150,129,181, 92,140,136,163,187,178, 53,197,106, 53, 97,205, 25, 22,163,222,144, 92, 91,155,107,106, 59, 0, 40, 93, + 3,230,132,182,106,177,100,202,196,113, 76,135,240, 23, 40,195,136,144, 91,100, 32, 20, 20, 51,222,158,140,169,147, 39,184,165, +166,101,125,244,237,218, 13,243, 85, 46, 65,139, 74,178,239,125, 82,155, 38, 75, 24, 48, 12,129, 82, 46,134, 74,246,199, 86,166, +231, 65, 8, 88,207,208,145,106, 16,128, 16,146,158, 18,185,171,218,110,175,170,154, 30,205,251,158, 62,155, 45, 9,212,252, 82, +118,233, 65,220,141,197, 87,111, 63,186, 74, 41,205,111,216,229,189, 55,140, 70,138,146, 50, 19, 30,102,105, 96,210, 83,242,102, + 31,111, 52,122,153, 4,124,182,249,198,118, 66,136, 77, 69,198,165,170,102,234,165,189,101, 78,205,135,141, 88,249,245,134,200, +229, 75,230,177,121, 69,122,112, 20,144, 91,177,144,149,111,114, 9,139,178, 82, 53,190, 93,255,125,166, 9,100, 24,141,168,253, + 61,255, 4, 60,125,109, 88,191,206,187, 9, 96, 69, 24, 73,170,135,183,143,119,247, 1, 99,100, 61, 6,190, 14,206,100,152,163, +116, 13,252,173, 52, 43,230,180, 37,154, 33,193, 65, 0,193,189,236, 59, 7,135, 1,128, 75,243, 33,251, 3, 3, 2,253,170,238, +107,218,212,255, 9,131, 85,147, 38, 33,132,145, 59,251, 77,108, 26,216,124,246,148, 5, 27,124,210,243,116,176,111,208, 20, 55, +111, 92,199,137,189,223,222,208, 22, 23, 44, 63,241,243,129,217,139, 62, 95,213,114,192,144, 87,112,232,224,158,153,132,144,181, +212,204, 99, 77,202,243,175,109,221,184,193, 75, 44,145,194,200, 81, 24, 77, 60,140, 28, 15,163,137, 34, 35, 35, 29,197, 37, 37, +144,201,173,161,180,113,128,209,100,206, 20,234,116, 70,229,228,215, 7, 76, 5,112,165,186, 56, 27,181, 29,125, 13, 12,241, 52, +239, 55,239,147, 48,246, 26,119,119,247,237, 0, 32,149, 74, 33,149, 74, 97, 50,153,112, 39, 29, 51, 60,194, 94,155, 11, 90,254, +205,206,243,169, 25, 55,118,181,169,169,237, 94, 94, 94, 3,171, 51, 87, 37, 37, 37,248, 61,242,182,237,150, 31, 79,246, 73, 74, +201,108,204,115, 46, 58,185, 91,203,222, 0, 6,214,116, 61, 51,239, 28,156,218,176,235, 12,102,230,148,209, 77, 87,127,191,239, +106,220,241, 69,181,166,147,125,123,206,209,207,158, 58,170,205, 23,171, 55,199,165,158, 93,245,110, 93,175,145, 68, 34, 17,231, +228,228, 36, 87,220, 95,184,230,167,190,143,178,138,122,126,185,100,158,228,102, 66, 9,110, 63,204,192,152, 23,189,171, 61, 87, +117,154,238,205,134, 6,120,251,120,173, 90,181,104, 58, 98,211,181, 88,243,211, 85,156, 61,186,253,186,161,172,184,127,118,212, +225, 58,179, 7, 22,126,111,214,203, 96, 85,167, 89,241, 69,240,219,237, 92, 20,107,205,198,202,200,241, 40,214,154,144, 93,168, +131,186,212,136,146, 50, 35,198,244,244,174,207,169, 42, 8, 3,224, 12, 32, 7, 64,100,149,251, 40,191,141,106,238,231,194,156, + 49,116,132, 57, 19,251, 56, 67, 91,233,126, 77,251, 43,142,143, 6, 16, 84,174,201, 1,184, 10,160,160,174,128, 69,132, 16, 74, +233, 31, 75, 42, 87,189, 95, 25,206,100,244,244,112,119, 7, 79, 83,203,227, 53,227,211,118,164,230,221,137,195,229, 30,173, 94, + 46, 77,191,185,207,226,154, 44,165,115,112, 11,153, 82,121,236,235, 53,107,172, 6,116,107,163,122,144,165, 43,142, 77,211,231, +106,244,156,201,185, 81, 43,201,252, 37,205,101,171, 87,124,246,142,181, 71,179,244,226,244,168, 77,213,105,120,132,141,186, 70, + 8,227,249, 56, 25, 68, 0,202,211,212,212,200,157,109, 0,224, 89,106,173, 74,203, 76, 96, 89, 2,113,121, 77,138, 70,207, 65, + 83,152,153,215, 66,179,234,247,113,125,204,230,234, 74,154, 91, 2,203,230, 24, 40,165,181,118, 65, 48,132,160, 72, 99,132,141, + 92, 12, 91,165, 4,118, 10,201,227, 12, 86, 13,230, 42,170, 54, 77,137,193,144,194, 25,117,101,148,227,208, 47,204, 25, 46,182, + 86,112,183,151, 66,102, 37,130,145, 3,180,122, 30, 90, 61,135,228,108, 13,138, 53, 82, 52,239, 50,178,169,147,251, 21,141,147, + 79,216,214,220,164,200, 73,181,197,202,113, 28,126,216,119,162,105, 90, 70,246,224, 67, 59, 86, 72,179,213, 70,220, 78, 42, 65, +118,129, 30,148,216, 98,238,252,249,210,249,243, 63, 26, 74,202,242, 30,250,251, 58, 89,222,245, 82,113, 93,179, 99,118,180,232, +208,255,155,254, 3,135, 88, 71, 95, 61,134,184,155,167, 23,148,100,213,175,254,202,219,219,155,251,246,219,111,237,214,175, 95, +223,212,197,197, 37, 37, 59, 59, 59, 17, 48,119, 71, 53, 10, 14, 79, 63,117,230,156, 99,151, 14,157, 69, 41,185,101,112,178,150, +192,219, 85,129,235, 23,127,211, 51,132, 28,175, 78,175,188, 27,112,148,103,207,217, 56,124, 49,177, 79, 84,158, 52, 98,252,132, + 55,147, 78, 29,189,154,247,245,142,211,203, 26,168,140,183,100,124,246,154,235,109,154,186,205,153, 54, 26, 75,191,222,129,179, +215, 99,178, 75, 25,143, 37, 25, 58,211,169,143, 71, 86,223,219,193, 50,128, 88, 68, 96, 45, 23, 67, 83,170, 86,223,253,117,173, +127,125,175, 87, 13,188,113,226,224, 14, 38,191,216,136,212, 92, 45, 73,207, 43,134,137,231, 97,167,180,130,137, 7, 10,243,115, +201, 15, 63,236, 64,100,228, 37, 6, 44, 51, 30,192, 39,181,137,145,242,186, 64,149, 76, 4,149,220,156, 5, 82,201, 69, 48,152, +120,248,249,122, 97,213,194,119,108,156, 93, 92,209,107, 88,173,111,157, 63, 33, 87,218,183,220,182,110, 17, 34, 46,221,234,250, +219,131, 93, 97, 46, 33, 45,191,246, 12, 30,190,156,113,240,208,234,140, 28,138,212, 5, 40,211,165,224,133, 6,185,112, 80,114, + 72, 42,114,199,221,204, 56, 85, 93,221, 89,185,119,246,223,116, 14, 25, 58,127,239,145, 51, 75,123,191,216, 21, 81, 15,139,204, +230, 74, 98, 54, 87, 34,194, 99,197,250, 13,198, 2,117,241,128,220,187, 7,235,157, 1, 47,205,142,249, 21,230, 15, 99, 0,128, +202,181,177,243, 15,107,230,111,155, 48,123, 89,239,222, 67,223, 32,119, 35,127,251, 16,192,233,154, 21,254,128,171, 38,199,202, +241, 79, 54,175,186,125,213, 65, 8, 97, 92,154,180,217,185,101,235,174, 17,193,126, 94,200, 42, 52, 34,189,192,128,243,215, 31, +224,192,134, 15, 11, 11,179, 18, 94,131,161,164,132, 39, 38,245,201, 19, 71,142,191,245,206,108, 52,107,214,210,167, 40,181,200, + 6,192,159,106, 15,121,150,108,120,125,220,228, 17,174, 46,174,214,124,121, 6,139,167, 20, 1, 1,193,232, 55,112, 24, 34,206, + 93, 68,116,212,109,243,126, 30,160,148,162,176, 32, 47,211,100,212,111,173, 49, 62,150,120,110, 89,191,194,133, 33,128,193,196, + 67,111,228, 49,103,238, 2,253,244,143,214,116,236,221,161, 69, 20, 11,190,232, 81, 70,161, 93,228,253,140,230, 68,108,227,254, +234,196, 15, 36, 90, 3,135, 34,141, 17,167,247,174,174,177,221, 30,141, 91,134, 55, 10,234, 56,110,226,188,245, 82, 41,203, 24, +154,249,123, 37,118,105,215, 44,165,161,135, 83,241,103,171,127,120,225,226,245,251,253,134,189, 52, 84, 54,162,113, 48,241,112, +148, 89, 79,158, 58,173,133,155, 95,199,215, 51,227, 46,108,175, 73, 83, 36,146, 22,122,121,122, 61,238, 74,116, 9, 25,114, 27, +128,119,149,167, 37,103,223, 61,216, 2, 0, 92, 92,221,202,136, 88, 90,107, 73, 64,101, 42,222,199,159,126,189,175, 95,106, 78, +201,203, 95, 46,153, 39,185,153, 88,138,155, 9,106, 88, 73, 88,232, 12,150,151,181,113,132,206,248, 96,218,155,226,252, 82, 19, +126,187,157,131,187,215,206, 80,147,161,104, 12, 37,162,177,206, 33, 67, 94, 39, 64, 35, 10, 60,100, 8,190,211, 51,216, 90,120, +235, 96,173,131,121,106, 10, 25, 0, 92,130,135,181, 39, 44,250,177, 34, 73, 24,192, 7,154,140, 70, 23,134,101,115, 51,111,237, +179,120, 4, 37,165, 20,154,236, 56, 44,251,236, 35,172,218,120, 0, 87, 99,243, 97,107, 74,193,161,205, 75, 48,115,233, 15,208, +232,171,175, 94,168,195,143, 56, 19, 66,126,166,148, 14, 0,208, 19,128, 85,165,251, 32,132,252, 92,126,238, 63,221,159, 51,103, +206,135, 75,151, 46,141,170,120,110,197,254,138,231,214,182,191,210,241,142,115,231,206, 13,249,252,243,207, 63, 11, 15, 15,223, +125,241,226,197, 68, 88, 98,176, 42, 55,130, 16, 82,227,127,185,107,243,193, 47, 0, 12,235,230,168, 66, 83, 95, 47, 40,135,143, +149,123,134,142, 40,101, 89,134,217,186,234, 67, 89,158, 86, 4, 17,203,150,214,117,194, 10,148, 46,254, 33,214,118, 14, 39,143, + 28, 62, 40,245,107,232, 32,219,127,165, 48, 37, 50, 65,243,248, 77, 81, 90,144, 33,113,181,202, 19,247, 31, 48, 84, 20,121,249, +202, 28, 0,213, 26, 44, 66, 24,207,175, 87,124,225, 98, 45, 23,131, 33, 64,145,214,132, 25,239,125, 96,105, 24, 53, 66, 65,217, +169,239,125, 12,134,152,191,124, 74,212,249, 88,178,114, 75,201, 48,207, 51, 23,198,245,113, 26,180,120, 83,244,161,147,247,228, + 15,134, 14,237,174, 78, 74, 74,170,243, 66, 19,202,165,190,252,198,116, 9,195,152,187,141, 8, 33, 0,184,172,167, 49, 87, 0, + 80, 80,144, 88, 36,119,107, 49,116,199,138,105, 27, 27,122, 54,112,176, 86,200,160, 82, 74, 73, 96, 64, 19, 89,187,182,225,114, +239, 38,205, 36,231,238,149,224, 81,142, 22, 9,105, 69,144, 58,135,136, 71,116,125, 17, 59, 86,127,208,207,146,246,159,185,116, +119,224,218,229,243,164, 89, 5, 6,220, 75, 41, 70,102,190, 14,153, 5,101,200, 44,208, 65, 37, 19, 33,188,231, 75,210,115, 71, +127, 24,226,239,235,244,181, 69, 23,180, 10, 9,241,137, 7,146,211, 50,198,180,104,245, 2,126,216,182,165, 29,241,244,148,209, +212,212, 50, 75,143,223,184,113, 99,126,235,214,173,157,190,252,242,203,210,128,128,128,150, 1, 1, 1,190,177,177,177, 17,141, + 27, 55, 30,184,110,245,162,136,233,243,150,123,139, 96,178,109,215,161, 3,171,176, 34,184,124,238,164,110,235,198,245,233,134, +194,146,217,181,233, 50, 10,187,197, 89,197, 4,206, 30, 94,119,149, 98, 99, 47,177,194, 16,155,191,125,218, 14, 0,251,155,244, +125,231,215,223,174,221,143, 13,189,158,228,114,230,122,108,118,190,198,232, 31,127,236,189, 90, 63,112, 89, 82,158,193, 82,252, +145,177,116,109, 57,252, 1, 37,196, 25, 48,191,183, 8,204, 25, 45, 2,128, 0,233,169,215,127,180,160, 48,154, 80,158, 7, 98, + 83, 75, 80,172, 53,161,204,104,130,151,147, 18, 57, 89,169, 88,247,245, 86,220,184, 22,137, 94,125, 7,225,219,239,127,192,132, +215,135,215,121, 93, 25,134,128, 97, 72,121,230,202,108,174, 84, 50, 17, 64,128,194, 82, 35,246, 95, 72, 65, 19, 95, 6,164, 30, +189,133,214, 42, 57,212,197,101, 96,196, 42,196,156,223,174, 56,118,230,234,220, 79,150,111,122,191,168, 36,235, 81,124,244, 37, + 4,216,231,193,215, 67,143,168, 44, 91, 92,203,247, 65, 64,147,198, 96, 36,145, 22,105,231, 70, 53, 95,118,152,249,105, 64, 88, +171,224,240,134, 46,182,208,234,185,242, 44,150, 8, 91,183,108, 65,210,195,212,113,185, 81, 7,111, 88, 30,109,205,148,100, 37, +228,200, 92,253,222,186,115,249,116,226,144,215,166,194,173, 65,195,150,150, 30,107,169,153,226, 45, 48, 88,132, 16,198,193,167, +213,182,109, 59,246,142,240,109,232,134, 83, 87, 31,226, 70,124, 1,108,172,237,192, 42,221,225,223,101,172,221,157,227,171, 95, +210,230,150,108, 19, 75, 20,227, 95,104,215, 1,148, 82,220,143,137,202, 87,171,109,159,248,108,214,164,199,220, 4, 96, 83,121, +159,194, 57,168,165,181,173,195,205, 50, 3,135,180,180, 84,252,126, 49,162,117,249,243, 44, 70, 42, 97,112,242,122, 54, 12, 38, + 30, 6, 35,143,214,205, 3,203,196, 18,121,167, 47, 54, 30,109,151,153,149,205, 40, 84,182,188,173, 83, 99,137,157, 49, 83,119, + 43, 81, 45, 49,152,120, 52,118,175,253,119,185,194,161,241,103,239,190, 55, 61, 72,100, 37, 71, 81,169, 78,159,145,154,230,246, +221,174,223, 74,238,221,143,110,208,200,167,161,205,162, 69,159, 72,138,202, 40,178, 11,117,200, 45, 54,144, 87, 70,141,243,216, +190,249,219,215, 0,212,104,176,170,161,249,238,237,235,141, 14, 42, 9, 41,214, 24,105, 78, 81, 25, 55,245,173, 25,205,235,211, +246,170,252,201, 92, 37,148,226,102, 98, 33,164, 18, 22, 82, 9, 11,163,201,178, 18, 73,231,224,225, 74,103,103,187,215,218,182, +106,138, 19,215,115, 32, 98, 9,180,165, 69,122,153, 84,117, 55, 48,208,143,105,213, 50, 4, 93, 59,182, 71,124, 98, 82,192,137, + 83,103, 86, 94,141,188,177,196, 57,100,232,236,156,187, 7,158,232, 22,174,141,228,180, 28,101,150,201,107,164,139,155, 83,200, +160, 65, 3,165, 13, 27,184, 18, 39, 71, 59,112,144, 96,202,212,183, 93, 44,213,225, 41, 5, 5,240,249,194,185,208,233,245,112, +177,179, 2,165,192,230, 53,159, 66,175,215,195,195, 81, 6,117,169,177,198,227,235,242, 35,213, 25,162,170, 70,171,226,118,197, +243,150, 46, 93, 58,160,178, 70,197,227, 85,169,186,191,242,241,159,127,254,249,103,149, 30,175,177,198,175, 50,162,114, 17, 82, + 91,163,156, 91, 12,237, 32,151, 42, 79,126,187,116, 6, 83, 88,106,128, 84,194,160,177,111, 35, 76,123,103,186,162, 71, 43, 23, +104, 97,131,159,118,109, 45, 50,113,198,159,159, 60,197,147,168,220,130,130, 84, 54, 14,191,238,218,253,163,216,209,193,150,172, + 60,154, 19,155,173, 54, 60,158,226, 32,241,246,105,195,229,195,171,220, 9,197, 49,169, 66,233,109, 48,232,106,124,113, 25,152, + 95,208,205, 39,147,192, 50, 12,216,231, 52,179, 23,195, 48,220,247, 95, 47,130,147,141,185,230,234,211, 85, 59,138, 7, 58, 31, + 63, 83,217, 92,181,106,213, 74,221,178,101,203, 66,166,106, 49, 85, 53, 60,186,250,195, 19,163, 37,158,214, 92, 85,160,205,188, + 29,137, 42, 51,241, 19, 18, 42,118,106,180,119,230,200, 87, 95,155,235,218,108,160,245,195, 12, 53,172, 24, 35,194,130,220, 17, +113, 98, 63,159,146,120,111,178, 37,218,217,121,106, 47, 39, 71, 71,220, 72, 40, 65,122, 94, 25, 50,242,205,230, 42, 51,191, 12, + 69, 90, 19, 90, 53,114, 65,169, 86,231,101,137, 86,117, 80, 66, 15,158, 56,126, 98, 76,223,193, 35, 48,237,253, 79,250,110, 92, +251,213,109,185,107,208,235,218,172,123, 87, 45, 57,126,239,222,189,156,143,143, 79, 98,110,110,110,216,236,217,179,139, 27, 53, +106,228,182,104,209,162,137,141, 27, 55,246,232,209,173,155, 58,242,183,118,219,166,191,255, 73,183, 15,167,111,244,101, 24, 38, +139,242,244,112,122,169,241, 99,154, 19, 93,237, 72,161, 10, 30, 29,154, 27, 67,130, 63, 29,211,163,147,227, 97, 71, 57, 19, 44, + 38,186, 81, 36,248,211, 61, 52,250, 99, 67,252,177,175,139,155,191,178, 98, 90, 90, 33, 63,175,140,113, 91, 82,151,185, 2,204, + 89, 33,189,129,135,141, 92, 92, 49,114, 20,160,112, 95,187,230, 43,133,179,173, 20, 34,150, 64,204, 50, 80,107,140,200, 43,210, +227,253,217,181,250,191, 74, 80,158,227,121,104,116, 28,180,122, 19, 8, 8,138,139,114, 49,247,253,119,209,119,224, 48,140,155, +252, 30, 10,181,192,181,196, 98, 24,140,198, 58,109, 17, 75, 0,141,206,132,113,189,189,145, 87,108, 64,105,153, 9,122, 3, 15, +133, 76, 4,145,136,129, 82, 42,130,181, 92, 12, 66,168,196,221,221,125, 34, 0,136,197,226,178, 71,143, 30,237,168, 73,147,231, + 41,124,188, 92,161, 53, 48,120, 97,196,114,244, 12,247,199,205, 83,155, 68,231,174,220,241,125,255,147,149,152, 58, 42, 28,251, +238, 55,129,131,139, 15, 84, 10, 25,140,148, 1, 96,217, 20, 32,148,126,204,187, 7, 14, 27,181,254,251,205,247, 23, 46,248, 64, + 86, 80, 74, 32,149,136,112,230,204,175,184,116,229,218,234,156,168,131, 53,198,245, 52,136, 41,227,106, 99,107, 3,153, 21, 11, +131, 65,103,113,193, 55,199, 83,128, 34,200,165,249, 16,115,141, 34, 69, 16, 95,205,190,186, 50, 88,132, 16, 98,235, 17,178,101, +253,198, 31, 94,115,119,115,193,129,211,183,177,109,227, 55,104, 16,210, 23, 15,174,175,135, 87,232, 16,168,124,187,195,202,122, +239, 68,134, 21, 53,159, 58,125,238,176,208, 54,225,184,120,254, 55,100,103,102,172,167, 52,198,162, 26, 52, 86, 76,222,233,214, +115, 0,116, 6, 14,157,186, 15,192,241, 35, 7,166,161,124,240,196,211,194,178, 12,255,246,132,145,226,236, 66,189, 56, 91,173, + 67, 90,174, 22,137,153,165, 56,244,227, 38,139,187,164, 8,203,132,117,105,233, 41,158,184,236, 76,138,151,167,187, 78,172,211, +202, 99,227,227, 3,199,143,121, 77,220,168,105, 0,147, 83,168, 67,142, 90,143, 28,181, 30,165,101, 70, 52,241,104,200,232, 76, +162,240,250,198,234, 98, 43, 19,127,251,115, 34,108, 20, 34,180, 15,114,124,234, 34,108,158,231,255, 48, 87,139,205,153,171, 91, +137,106,200, 36, 44,172,196, 44,164, 18, 6, 70,206,178,230, 51,140,105,228,164, 49,175,200,245, 70,138,220, 34, 61, 88,134,192, +205,201, 81,234,229,238,143,205,203,223, 6, 0, 76,248, 96, 45,198,191, 57, 26, 1,254, 77,161, 86, 23,203,199, 79,153,190, 2, +213,212,221, 85, 7,165,148,254,112,232, 92,240,181,187,201, 51,223, 24,243,186,120,196,160,206,204,141,132, 34,100,228,235,144, +240, 64, 3,189,177,126,179,209,152, 56,115,159,239,150, 61, 63, 67, 33,196,225,200,213, 0, 0, 32, 0, 73, 68, 65, 84, 97,145, +163, 54,255,187, 44, 94,179, 7, 42,185, 8,153, 5,122,240,124,205,217,187,186,252, 72, 77, 89,167,250, 80,217,132,213,182,159, + 16,242,243,156, 57,115, 62, 4, 64,231,204,153,243, 97,197,253,165, 75,151,106, 1,164,215,117,158,199, 53, 88, 53,117, 11, 58, +183, 24,218, 65,110, 37, 59,185,125,205,135,242,211,177, 20,171, 79, 94, 71,191,118,238,144,136, 8,100, 42, 55,220, 76, 44,196, +233,211,135,138,207, 95,186, 82, 70, 24, 99,157,195,162, 84,238, 77, 3,228, 74,135,136,117,223,111, 33, 14, 14, 14,116,203,233, +156,228,188, 82,238, 79,243, 71, 93, 62,242,181, 7, 12, 92,103,117, 78, 76,124, 93,122, 60,165,146,165,235, 14,131, 82, 10,240, + 28,120,240, 96, 37, 82,165,119,219,209, 89, 32, 0,199,241, 50, 17,203,152,127,193,151,255,252,166, 60,151,154,124,101,103,173, + 93,135, 4,128,141, 66,140, 31,207,166, 66,157,159,158, 59,208,249,248,239, 21,230,234,120,148,244, 65,104,104, 43,117,219,182, +109, 11,165, 82, 41, 88,150,173, 43,204, 39,245,159,209, 92,213, 4,165,215,141, 0, 62,247, 8,236, 60,168,175, 50,164,173, 21, + 17, 35, 52,208, 29, 17, 39, 15,240,151,142,109, 26,170,201,138, 61,106,153,142,185, 70, 38, 61, 95,139,180, 92, 45, 50, 10,202, + 51, 88,249, 58, 16, 2,148,233,159,109,250, 26, 77, 86,236, 17, 85,131,102,235,117, 70, 76,238,212,107, 8,102,126,242, 77,211, + 29,235,151,157, 87,186,248,133,149,102,199,221,177, 68, 35, 41, 41, 73,231,234,234,122,163,184,184,248,197, 21, 43, 86,148, 4, + 5, 5, 89,201,229,242, 60, 0,178,184,251,247, 37,103,126,217,251, 48, 39, 61,125,146,193, 96,176, 44, 45, 2,192,167,235, 88, +105,160, 77,254, 68,111, 69,251,222,141,221, 20,240, 86,148,246, 14, 84,221,250,210,165,199,140,207,178, 79,175,202,206,208,153, + 78,229,107,208, 50,173, 68,252,171, 37,122, 38,131, 62,249,213, 73,115,192, 50, 4, 6,157, 62,185, 98,191,179,173, 20,159,236, +184, 7,107,185, 24, 42,185, 24,214,114, 17, 58, 4, 57,162, 30, 9, 34,106, 52, 81,104,245, 38,104,117, 28,180, 58, 19,156, 26, +218,225,251,237,251,240, 40, 71,139,195,145,185,136, 73, 42,130,191,151, 18,148,214,157,119,226, 41, 87,250,202,196,121,214, 44, +195,128, 37, 96, 2,155,250, 32,191, 68, 15,137,136,129,149,149, 21, 20, 50, 17,108, 20, 98,136, 69, 98, 92,189,125, 27, 58,157, + 14,109,219,182,173,118,164,212, 31, 17,154,179, 88,126,190, 30, 48, 24, 77,248,229, 92, 52, 22,207, 24,138, 23, 59,183,193,251, +172, 21, 98,116,173, 96,237, 96, 13,158,176, 48,152,120,232,140, 28, 0, 82,163, 1, 38,132,180,135,185, 46,162,140, 82,122, 57, + 35,102,255, 35,151,102, 67, 38, 30, 59,121,102,199,192,126,189,112,227, 86, 20,126, 58,112,248,124,174,163,122, 86,165, 99,154, +163,124, 20, 28,165,180,214, 66,230, 90,206, 75,148,174,129, 51,194, 59,116, 69, 73, 65, 54,178, 82, 30, 90,252,161, 30,220,208, + 26,239,206,152,230, 23, 16, 16,224,199,241, 20, 60, 79, 17,236,109,141, 73, 83,166,248, 53,105,234,239,199,151,143, 34, 12,244, +178,174, 85, 71,233, 26, 48,117,201,138,117,175,123,121,121,225,248,133,123, 88, 58,111,242, 13,133, 66,213,168,141,131,181, 29, + 31,208, 18,137,119, 79,193,193,167, 16, 54,174,126,158,131, 94, 28,227,217,183,255, 16,220,185,117, 29,171,190, 92,116,169,148, +149,127,102, 73,172, 42,215,198,206,173,194, 58,191,106,227,224,138, 2,117, 9, 84,246, 46, 8,106,209,230, 85,149,107,227, 15, + 74,178, 18,158,106, 74, 22,192,252, 3, 88,103,224,145, 95, 98, 64,106,142, 22, 15,179, 52,120,152,169, 1,207,255,209, 21, 92, +215, 59,148,128, 16,165, 84, 36,114, 48, 62,104,120,251,215, 51,212,219,203,149, 44, 91, 52,155, 53, 80, 41,178,213,122,228, 20, +233,145,163,214, 33,167,200,108,176,236, 85, 34,240,148,175,247,232,140,252, 18, 3,172,229, 34,216, 42, 37,224, 44, 52, 64,213, +241,201,202, 93,237, 83,115, 74,122,124,185,120,158,228,230,195, 82,220, 78, 84, 67, 42, 97,204,217,171,114,131,101,105,183, 48, + 43, 98,166,245,239,217, 22, 41, 57,101, 16,177, 12, 68, 44,131,166,205, 90,195, 73,193,163,199,136, 57, 0,128,129,253,204,211, +144, 36,102,148,226,200,229, 12, 0,144, 88, 26,107,118,110,145,236,192,169, 27,211,119,125,191,204,170,140, 19, 99,221,209, 36, +148,233, 57, 72, 37,229,221,238, 86,245,251,126, 51,113,230, 12, 86, 74,142, 1,165, 58, 14, 69, 26, 3, 40, 5,174, 62, 40,134, + 70,199, 65,173, 49,160, 93,128, 67,173, 26, 53,249,145, 74,143, 87,155,129,178,148,242,227,115,240, 71,157, 86,181,186,149, 51, + 88, 75,151, 46,141, 90,186,116,105,181, 25,177,154,168,181,200,221,185,197,208, 14,114,137,236,228,182,175, 63,148,255,122,159, + 34,226,118, 30, 94,238,228,137,188,236, 84,108, 92,187,154,167, 20,144,202,172, 50, 57, 19,127,172,140, 55,205, 46,188,117,164, +214,126, 95,107, 15,127, 63,153,220,225,236,210, 21,235,121, 71, 39, 55,236,185, 88,144, 81,168,225,254,148, 43,164,148,130,154, +120, 73,177, 5,230, 10, 0, 24,134, 24, 62,153, 54, 20, 60,165,248,120,245, 30, 44,157, 57, 18, 42,153, 72, 65, 8, 81,148,150, +153, 48, 99,209, 38,172,152,255,166,181, 66, 42, 42, 55, 6, 28, 38, 79,123,223, 18,105,104,117, 28, 74, 11, 50,243,154,151,172, +172, 98,174, 66,213, 97, 97, 97,133,246,246,246, 80, 42,149,245, 54, 88,213,153, 43, 55, 55, 55, 15,133, 66,225,224,231,103,174, +117,101, 89, 22, 28,199,149,198,197,197, 61,213,164,111, 69,133,185, 7,211, 31,222,109,219,161,107,127,156, 61,121,144,191,244, +203,198,161,245, 25, 98,110,103,107,147,114, 61, 58, 57, 8, 80, 33, 45,175, 12,153, 5,101,200,200,215,193, 96,226,225,237,170, + 64,106,202, 35, 40,229,210, 58, 71,167, 85,160,112,243,235,195, 80,118, 18, 79,240,189, 38, 51,230, 23, 0, 40, 73,139,154,162, +112,241,191, 19, 21,117,107,213,128,145,211,172, 94,124,105,138,100,195,231,111,205, 1, 48,210, 82,221,172,172, 44,141,139,139, +203, 37, 15, 15,143, 1, 31,127,252,177, 14,128,149, 78,167, 83,188,249,230,155,138,228,228,228,119, 41,165, 22,197,216,233,205, + 45, 78, 68, 70,251, 52, 14, 8, 29,229,173, 40,237,213,189,115, 56,218,135,120, 33,181,115, 56, 0,188,147,172, 81,249,119,156, +188,241, 71, 95,103,251, 99,235,182,254,178,116,194,136,238,239,122, 12,252,116, 69,250,145,143,107,205,136,221, 63,183,233,201, + 9,152, 8, 32, 46, 47,124,175,108,176, 76, 28,173, 79, 23, 28, 53,114, 60, 52, 58, 19, 52, 58, 19, 74,202,140, 56,125, 51, 27, + 89,133,122, 20,148, 26, 80,166,227, 64, 1, 24,140,180, 98, 86,145, 90, 73,186,184,213,174,226,182,103,232, 72,245,234,133,211, +108,126,186,144, 10,165,212, 92,143,101,171,180,130,141, 66, 12,128, 34, 34, 34, 2, 21,195,227,107,131,231,121,252,116,252, 42, + 86,108, 61,131,227,155,102, 67,102,197,162,229,144,133, 24, 51,164, 45,120,158, 34,254,254,221, 44,191,160, 86,174,140, 74, 1, +134, 65, 69, 77, 74,109,215,211,145, 82,122,152, 16, 50,128, 16,210, 31,230,154,145,130,131, 92, 94,233,153,163,187,148,165, 90, +157,169, 32,249,222, 55, 40,205,237, 98,238,130, 7, 15,243, 15,244, 8, 66, 72,231, 58, 3,174, 6, 66, 8, 35,119,241, 95, 61, +126,202,140,151,155, 52,105,140, 61, 59, 55,131, 82,242,147,165,199,239, 56,114, 9, 43, 87,253,121,196,224,164, 41, 83,252, 54, +172, 91,247,167,125,175,191, 57,177,198, 81,132,132, 16,226, 25,210,125,118, 64, 96, 48, 46, 71,165, 98,217,130,169, 55,202,178, + 19, 71,233, 85,142,147, 12,165, 25,239, 5,135,180,130,155,171, 35, 50, 51,178,208,109,240,139,232,219,187, 55,238,220,186,142, +197, 31,189,127, 9, 26,125,175,186,178,182, 21,240, 84, 60,185,107,239, 33, 98,141,206,128, 53,203, 62,194,164, 89, 75,208,174, +219, 64,241,221,155, 87, 38, 3, 88, 88,167, 64, 57,122, 35,143,110, 45,156,161, 55,114, 48, 24,121, 28, 78,100,159,248,158, 33, + 4, 16,177, 12,211,170,177,185,123,183, 72, 91,115,151, 17, 0, 48, 34,146, 89, 80, 84,236,243,205,146,233,108,169,142, 67,142, + 90,135,236, 66, 61,114,138,116,200, 85,235,204,230, 74,173, 71,174, 90, 7, 17, 75, 16,151,152, 6,150, 37,245,174,191, 43, 44, + 53,224, 5,127,123, 0, 4,204, 83,118,135,228,154,156,251,222,138, 77,237,177,108,209, 60,201,205,196, 18,220,126, 88, 84,110, +172, 24, 88, 85, 50, 88,181, 36,113, 30,227, 18, 60,168,253,235, 35, 7, 55,179, 81,202,144,118,191, 24, 34,134, 64,196, 18,216, + 56,123,193, 86, 86,134,105, 83, 39,193,209,193, 22,143,114,203,176,250, 64, 44,110, 71, 63, 0,175,173, 95,179,215,254,112,124, +232,235,175,141,144, 50, 98, 25,118,156, 76,132,149,132,133, 8,122, 68, 95, 57,167,203, 74,125,104, 40, 46, 42, 84,138, 68, 98, +139, 68, 9, 64, 77, 28, 15, 74, 41, 62,251,116, 46,118,111, 93,139,227,215,178, 64, 97,158,170,225,247,253, 95, 97,198,156,197, +200, 41,210, 3,168,185, 36,201, 2,142, 2,232, 95,113,167,114, 54,171,134, 12, 84,117, 68, 86,214,168,120,126, 85,141,170,143, +149,235, 89,148,105, 23, 85,117,138, 21,247,157, 91, 12,237, 32,179,178, 58,185,117,245, 92,249,233, 88, 60, 54, 87,218,146, 92, +108,223,180,161,132,130,239,153,117,247,144, 69,221, 57, 0, 96,227, 28,216, 68,106,109,115, 97,246,167, 43,140, 78,110, 13,185, + 95,110, 22, 21, 20,151,113, 79,164, 65, 8, 33,176,113,241, 52, 57, 54,122,225,195,252, 36,249,178,170,163,222,158,132,128,167, + 20, 71,174,100, 2,188,249, 69,220,115, 46,205, 60,143, 15, 75,192,241,230,126,238, 83, 55,178, 31,239,179, 4, 66,128, 31, 79, +222,200,173,201, 92,217,217,217,193,206,206, 14, 42,149,197, 43, 45, 84,180,175,218,204,149, 66,161,112, 56,113,226,132,204,198, +198, 6, 44,203, 66,167,211,225,197, 23, 95,172,151,118, 5, 74,215,128,145,237,122, 12, 91,218,177, 91,127,252,118, 98, 63,127, +233,151, 45,195, 52,217,245,152,191, 7, 64,223,206, 45,142, 44,251,106,141,239,172, 57,243,164, 74,153, 8, 5, 37, 6,176, 12, +129,183,139, 28,142, 42, 22, 23, 79, 31, 41, 11,247,119,180,216,252,121,121,250,108,255,106,245,122,199, 21, 95,124,218,203,222, +222,215,181,160, 32,177, 8, 0, 52,217,177,235, 85,110, 1,247, 61, 27,158, 60,219,178,243, 80,184, 52,104,106, 81,141, 88,101, +178,179,179,179, 67, 66, 66,238, 5, 7, 7,183, 25, 54,108, 24,253,236,179,207,236, 83, 83, 83,247, 90,106,174, 0,160,123,239, +246, 51,148, 98, 99,184,163,156, 9,110,236,166, 64,251, 16,115,239,231,136,254, 29,225,233,213, 16, 9,153,154, 86,121, 90, 94, + 82,106, 20, 55, 94,183,126,115,164,183,131,104,130,169, 68, 27, 13,160,218, 41, 5,106,131,160,252, 67, 82, 81,110,174,100, 34, +168,228, 98,240,212,252,152,133, 80,163,137,135,222,192, 67,163, 55, 65,163,227,204,102, 75,207,129,231,205,197,202,132, 16, 24, +140,156,249,148,245, 11, 16, 54,246, 78,240,245, 49,199,248,120,147,139, 65, 8,224,236,236, 12, 71,199,186,231, 29,229,121, 30, +122,131,249,223, 87,111,228, 30, 15,234,208, 27, 76,160,148, 34, 54, 54,110,118, 82, 98,210,224,166,126, 77, 58, 7,183,104,229, + 32,183, 98, 0,160,182,122, 49, 66, 8, 25, 5,192, 72, 41,125, 60, 40,194,167, 89,199,178, 3,251,127, 82, 14, 24, 56,176, 64, + 95,146,179,175,210,147, 89, 0,125,202,205,152, 69, 38,163,242,137,148,206,254, 67,188, 2,219, 47, 25, 61,118,146,127,183,158, +189, 17,113,250, 20, 14,239,223,181,173, 52,251,126,173,243,117, 85, 38, 32, 32,224,137, 81,132, 77,154,250, 63, 49,138,208,199, +215,175, 70,131,101,107,219,194,166, 69, 88, 87,175,228, 92, 3,142, 29,251, 5,165,234,204, 5,122,125,137, 6, 98,186,241,215, +253,223,141, 27, 53,249, 99,155,118, 97,109, 96,103,173,128,147,189, 10,215,175, 93,194, 23, 11,231, 93,130, 70,223, 43, 39, 39, +218,162,186, 88, 18, 28, 44,105,218,208,103,186,119,227,102,184,126,229, 2,226, 99,239, 70,221,140,188,212,172,105, 72, 91, 56, +123,120, 79, 39,193,193,159,211,232,232, 58, 87,170,160, 28, 77,125, 99,226,123,230,219,229, 95,159,237, 90,250, 90, 1, 85,223, +132, 4, 38,163,129,219,177,225,139,236,202,163, 8,107,210, 45, 43, 46,220,119,254,202,157,247, 7,245,238, 68, 42,186, 2, 43, + 76, 85,213,251, 77, 27, 40, 17,127, 39,134, 55,150,170, 45, 54,194,229,209,103, 77,153,250,142,220, 28, 59, 15,106,158, 88,173, + 94,239, 27, 0, 40,227, 36,175,174,251,244, 67,114, 43,169, 20,119, 30, 22,153,187, 5,203, 13,150, 84,194,194,170,252,175, 69, + 83,147, 49,204,178,215,135,247, 70,174, 90, 15,158,210,242,185,244, 8, 68, 34, 49,146,139,128,148,162, 18,228, 20,102, 33,241, + 97, 18,212,153,137, 96, 24, 22,142, 13,154, 66, 83,231,132, 60,102,138, 57,149,191,145, 71,147,225, 3, 58,177, 7, 47,102, 64, + 46, 21,161, 56, 55, 5, 23, 78,236,209, 82,142, 91,175, 55,234,119,187, 80,171,187,209,119,246, 90,180, 74, 9, 1,114,138, 74, +245,174, 82, 9,139, 61, 91,190,193, 43, 99,166,152, 31, 40,111,234,251,243, 22,129, 16,130, 2,117, 9, 0,242, 68, 86,180, 38, + 63, 82, 78, 78,165,204,211, 19,247, 43,153,162,234,238,147,242,251,250, 26, 52,244, 85, 76,149,190,202,126,125, 21, 61,139, 38, + 71,174, 49,131, 37,102,216, 83, 91, 86,125, 40,139,202,150,226,106, 76, 38, 94,238,228, 9, 77, 81, 46, 54,124,187,178,164,204, +104,232,155,115,199,114,115, 5, 0, 28,131,126, 67,222,152,121,199,187, 81, 19,227,217,232,226, 20,181,198, 88,227, 11,214,110, +232, 28,249,245,163,223,140, 52, 25, 31,124, 96,211, 32,132, 55,153, 12,203, 53, 89,177, 75,170,123, 46,207, 83,171,143, 87,239, + 49,155, 43,158,199, 7, 95,108, 7,229,185,242, 9,252, 56, 80,142,199,219, 11,214,194, 84,126,155,227, 57, 16, 35,167,168, 78, +171, 50, 42,153,228,100,243,146,149,182, 85,205, 85,235,214,173, 11,237,236,236,224,232,232, 8,123,123,123, 84, 24, 34, 75,168, +173, 91,208,207,207, 15, 42,149, 10, 17, 17, 17, 80,169, 84, 80, 42,159,110,130,124,149,107,224, 43,109,187, 15,253,161,219,192, + 55,153, 95, 15,108,224,174, 68,252,252,178, 54, 59,198, 98, 19,192,113, 28, 49, 26,141,232,221, 53, 52,249,230,253, 71,199, 23, +125,250,105,159,176,238, 47, 73,219, 7,184, 64,171, 55, 33, 53, 37, 5, 23,207, 28, 42,115,177, 21, 31,247,247,117, 74,229, 56, + 14, 28, 87,243,164,123, 21,232,116,250, 60, 70, 44,115, 28, 49,242, 85,105,228,213,171, 63, 40, 93, 3,118, 49, 44,127,139,114, +108, 11,128,190,210,162,121, 16, 12, 38, 30, 90, 77, 81,254,211,180, 59, 42, 42, 42,242,171,175,190, 10, 16,139,197,158,251,246, +237,203, 45, 40, 40,168,215,114, 65,167,142, 94, 93, 45, 82, 25,227, 36,180,108,148,183,162,180, 87, 74,167,112,140, 28,208, 17, +187,143, 94,192,111,231, 46, 33, 89,163,186, 89,170,103, 15,166,166,166,235,130,237,213,251,135,116,104,196,254,180,189,232, 39, +151,110, 31, 12,167, 84,126, 42, 39,226, 99,139, 7,120, 16, 2, 20,105,141,149, 50, 88,230,250, 38,134, 33, 22,103,176, 8,144, +120,238,226,245,144, 80,255, 32,220, 76, 40, 66, 78,129, 14, 26,189,249,125, 79, 65,225,104, 35,129, 84,194, 34,249, 97, 34,120, +106,120, 88,159,107, 1,138,156,190, 47, 79, 50, 15,128, 1, 47, 18,139, 69,160, 40,159, 92, 87,102, 85,226,226,226, 98,145,193, + 50,114, 28,134,245,110,139,118, 97, 45, 48,120,242, 87, 0,128,211,219, 62,128,189, 74,130,125,251,246,225,209,133,149, 59, 26, +183,159,114,242,238,157,232,151,162,110, 92,124,181,111,168,188,149,155, 40,163,198,174, 13, 74,233, 33, 66,136, 21,128,110,132, +144, 23, 1, 68, 80, 74,141,156,137,127,212,167, 79,111,158,227,248,199, 53, 17,132, 16,123, 0,225, 0,242, 1, 92,167,148,214, +154, 34, 81,186, 4,246, 4,131, 93, 32, 68,166,146, 43,146,195,123,142,244, 8,107,215,214,118,200,176,225,176,146, 88,225,215, + 83, 39,240,245,202,207,247,148,100,220,123, 98,146,218,218,168,174,120,189,186,125,181,117, 23,169,213,182,165,177,209, 55, 11, + 18,179,244,246, 34, 59, 63,136,165,214,147,136,173,199,106, 86,170,250,184, 65,187, 49, 54,167, 47, 92, 69,212,205,139,240,112, +146, 35, 49,254,129,230,238,173, 27,107, 53, 68,252, 41,205,137,182,168, 16, 23, 0, 20,121,220, 75,237, 70,247,177, 47, 51,112, + 56,127,230,104, 25,111,226,251, 92, 62,251, 75,188,151,127,152, 44, 36,172,135,125,238,161,141,195, 0,236,174, 75,231,225,149, + 29, 79,148, 94, 52,110,251, 74,250, 47,167,206,169, 60, 26, 54,101, 65, 24,232,180,165,200, 73,190,107, 42, 43,202,210,100,221, + 57,232, 97, 73,124,201,166,180, 5, 31,125,190,126,106,104,203,102, 74, 74,173,254,148,177,170,184,157, 87,172, 55,215,204,150, + 22, 34,225,206,133,178,156, 7,234, 90, 75, 86, 56,206,168,200,203,203,127, 60, 52, 95, 94, 98,231,163,182, 85,155,151,141, 33, + 0, 88,192, 86,109,247, 56, 83,145,151,151,111,197,113,198, 58,191, 59, 0, 16, 59,107, 25,238, 60, 76,127, 92,208, 46,149, 48, +229,181, 87,127,100,178, 44,129, 0,161, 34, 43, 37,210,242,202,192, 80, 10,158, 55,193,100,212,163,164,168, 8,233,105,153,200, +202,202, 70, 73,177, 26,114,149, 29, 66, 90,181,129,181,181, 53,238, 93,251, 13, 0, 57, 98,137,126, 25, 47,241, 11,107,211, 70, + 28,149, 84, 12,131,145,135, 24, 6,156, 63,254, 99,153,201,168, 31,152,117,231,224, 25,139,130,172,132,137,167,191,222,189,159, +220,204,203,201,157,220, 72, 40,196,246,239,214,152, 71,147,154,204,217,204,168, 71,165, 72,207, 43, 69, 90, 74, 50, 5,207, 89, + 84,102, 81,137,170,165, 30, 22,151,126,212, 67,243,185, 82,163,193, 50,153, 76,178,134,222, 62, 24, 57,105, 52,214,174, 93,135, +216,132,100,124,247,237, 42,179,185,186,125,224,119, 75,196, 43,175,182, 93,154, 21,179,106,236,250,196,172, 19, 81, 26, 70,103, +168,125,248,132,196,222, 3,225,175, 47,125,124,241,127,120,219,119, 79,117,154, 0,192, 50, 68, 95,222, 45, 8, 66, 8, 42,186, + 5,215, 46,156, 0,133,148, 5, 33, 4, 26,157, 9,175,191,187, 2,219, 86,152,127, 89,141,159, 58,243, 79, 31, 60, 85, 53,203, +141, 16, 25,219,199,119,208,226, 77,209,135, 46, 36, 57, 38,244,239,223, 69,221,170, 85,171, 66,185, 92, 14,165, 82, 9, 27, 27, + 27,216,216,216,192,206,206, 14,213, 81,141,166,107, 93, 53, 87, 12,195,192,198,198, 6,114,185,188, 90,227, 86,215,234,229, 42, + 55,255,225, 47,116, 27,186,171,251,160,113,204,175, 7,190,227,175, 69, 28, 25,174,205,190, 95,107,150,169,170, 38,207,243,183, +134, 13, 27,214,124,210,164, 73,146, 15,167, 14, 59,113, 34,226,122,236,254, 83, 63, 13,204, 47, 44,246,226, 56, 14, 74,185, 52, + 37,172,169,253,145,224, 38, 46,201,119,239,222,229, 35, 34, 34,116, 0,238,212,166, 9, 0,185,185,217, 91, 78,159, 62,243, 69, +231, 46, 93,241,221,214, 93,253,163,163,239,245,143,127, 16, 7, 47,239,198,104,212,216, 15, 26, 98,135,211,103,207,163, 56, 63, +107,139, 37,113, 86,166,121,243,230, 13, 90,182,108,233, 89, 88, 88, 88,182, 96,193,130, 0,142,227, 14,135,132,132,180,105,214, +172, 89, 70, 84, 84, 84,141,191,138, 43,107, 94,220, 62, 58, 7,192,118,159,174, 99,247,166, 27, 10,167, 3,248,220,171, 97, 67, +252,118,238, 18, 46,255,126,101, 93,174,162,225,167, 99, 95,125, 99,130,143,163,120,194,224,246, 62,172,139,189, 2, 59,191,251, +138, 61,116, 49,105,101, 82,158,241,123, 0,139,235,138,179, 50,249,197, 6,116, 8,118,132,201, 68,193, 81, 10,134, 16, 88,203, + 69,213, 26,172,234, 52, 69,122,233,155, 83, 38, 79,138, 15,105,209,106,198,171, 99, 38, 73, 90, 53,105,136,171,113, 5, 0, 8, + 28,109, 20, 72, 79,207,192,249,195,223,155, 10,210, 98,214,177, 44,255, 68,247, 78,109,113,166, 94,223,221,180,226,182,187,187, +251,196,155,119,239, 34, 34, 34, 2,142,142,142,168, 48, 87,213,117, 17, 86,213, 44, 40, 40,254,125,209, 87,223,119,152,240,218, + 96, 12,232,218, 12,103, 35,227,161, 55,242, 48,152,248,199, 69,174,137,151,214, 91, 77, 31,209, 88, 63,117,152,127,145,198,104, +149,244,113, 82,209,217,202,147,200, 86,213,164,148,234, 9, 33, 39, 0,180, 5, 48,152, 16,114,146, 82,218,166, 82, 12, 4, 64, +115, 0,205, 0, 92,162,148, 38, 90,212,118, 6, 59,175, 71, 94,115, 52,152,120,156,191,114, 43,168,123,135, 86,160, 60, 69,100, +228, 53,108,220,188,177,236,206,237,155,203, 75,179,220, 22,210, 26, 38,183,173,233,122, 90, 58,138,176,186,125, 21,154,148, 70, +152, 84,174,129,235, 46, 94, 56, 59, 79,234,209, 6,129,253, 62, 28,148,118,235,240, 32,183,224,222,112,106,210, 1,233,183, 14, +226,198,239, 59,127,185,102, 50,205,145,241, 76,114,105, 78, 76,141,102,191,166, 56,165, 50,197,180,102,173,187, 32,229, 81, 18, + 30,198,221,221,166,205,139, 75, 87,185, 5,110, 75, 75, 77,158,220, 40,184, 3, 46,156,216,253, 14,106, 48, 88,117,189,231,157, +172,212,235, 34, 46, 92, 28,153,182,247,176,107,113,137, 86, 46, 18, 49, 26, 41,139, 44,137, 38,254, 71, 75,227,164,209,209, 6, +151, 38,237,135,189, 58,105,254,209,149, 95, 44, 16,187,216, 73,145, 89, 80,134, 34,141, 17, 69, 90, 35, 88, 2, 52,245, 80, 65, + 91, 90,132,203,191,108, 55, 82, 67,254,176,242,122,212,106, 53,157,155, 13, 94, 76, 8,222,158, 63,127, 46, 88, 43, 27, 15,223, + 30, 31, 26, 24, 95, 55,216,163,202,100,230, 14,128,111,143, 15,161, 43,206, 26, 56,127,254,220, 0, 74,105, 15,231,102,131,139, + 43,214, 34,172,169,237,121,197, 6,188,214,205, 11,122,163,121,254, 48,142, 51,215,218,241,229,179,154,155, 3,170,187,237, 20, +144,236, 57,122, 9,255,199,222,121,199, 55, 85,189,127,252,115,114,179,218,116,111,154, 14,104,129,150, 82,202, 46,136, 12, 65, + 64,150,168,160,192, 79, 81, 81,145,225, 87,150, 34,130, 3, 68, 84,112, 49, 68,197,129, 32, 67, 64, 81, 64, 16,100, 84, 64,144, +202, 40,171, 45,165,116, 67,155, 54,221, 43,105,154,228,222,123,126,127,180,169,165,180, 77, 82,234,194,243,126,189,242,106,114, +123,238,231,158,155,180,185,159,251,156,243, 60, 39, 71, 91,130,170,106, 51,140, 38, 30, 70, 94,128, 68,194,193,195,195, 3, 29, + 67,123,194,221,205, 21,249,133, 69, 56, 27,123, 18,191, 39, 95, 72,167,192, 91,133,158,101, 91,109,249,140,136,212,169,163,159, +175, 55,209, 86, 24,225,160,228,240,251,177,227,102, 0, 27,109, 49, 87,141,105,150,233, 75, 87, 46, 92,182,230,209, 79, 63, 92, +210,166, 91,136, 43,110, 20, 26,144, 93, 80,133, 10, 3, 15,128,130, 23, 40,140,134, 50, 92, 61,251,115, 30, 15,253, 74,107,199, +248,183,211,116, 4, 75, 38,171, 62,123, 41, 89,185,240,141,247,113, 37, 37, 29,235,215,173,213, 85,219, 97,174, 26, 99,227,140, +208, 38,255,161,110,135,198,134, 5, 69, 74,177,247,247,188,186,101, 63, 44, 67,133,113, 41,165,205,106, 17, 66,100,239,207,234, +177,192, 98,132, 62,218,149,243,187, 82, 89, 40, 94,191,126,189,100,235,214,173,117,166,135,227, 56, 88,178, 7,141, 70,163,213, +172, 34, 15, 87, 69,151,199, 71,181,155,212,148,185,226, 56, 14,162, 40,214, 69,175,236, 29,122,116,242,237, 52,188,207,189,227, +182,223,251,224, 84, 73,204,238, 47,197,115,199,126,124,164, 50,255,234, 46,187, 68, 0,148,148,148, 36, 16, 66,174,125,240,193, + 7, 61,214,175, 95, 31, 58,127,254,252,180, 47,151,207,248, 8, 0, 14, 30, 60, 8, 0, 72, 77, 77,165,107,215,126, 87,109, 50, +153,210, 43, 43, 43,227,168, 13,139, 92,235,181, 87, 63,216,248,233,123,157,110,228,228, 78,233,208,165, 47,188, 67,250,160, 77, +135,190, 40,174, 52,225,116, 74, 14,210, 18, 99,112,229,212,206, 29, 85, 5,126, 54, 77,200,181,208,163, 71,143, 96,153, 76, 54, +150, 82, 26,238,228,228, 20, 66, 41, 85, 72,165,210, 9,132,144,107, 60,207, 39, 70, 70, 70,198, 36, 38, 38,218,188,102, 88,230, +177,141,213,237, 6, 63,181, 38, 75,239, 52, 56, 45, 79,223, 51, 75,239,116, 94,175,116,123, 33, 63,102,117,181,223,125, 31,172, +130,185, 40, 97,231,166,178, 31,190,249,226, 67,110,242,180, 23,133,248, 98,215, 57, 82,103,199,195, 43,158,178, 57,115, 31, 18, + 66,114,231,207,127,233,143, 50, 13,164,102, 96,176,182,100,131,213,204, 20, 0,168, 93, 79,241,101, 71,117,151,143,227,231,206, + 88,214, 53,186,255,227,247,140,156, 36,113,150, 59,225,240,174,207,104,250,165,163,223, 73,169,240,170, 62, 63,245, 22,131, 97, + 47, 70,163,241, 38, 99,101, 75,244, 10, 0, 10,188,202, 6,255,116,232,216,148,125, 63, 31, 95, 62,106,248, 0,175, 79, 94,159, +136,247, 62,223, 3,103,149, 18, 84, 20, 48,233,222,224, 71,174,108, 27, 49, 54,200,207, 33,224,251,163,217,191, 62,191, 42,254, +101,189,222,148,220,148,137,177, 80, 91, 95,232,119, 66, 72, 71, 0, 99, 9, 33, 34, 0, 39, 0, 58, 0,149,168, 25,144,216, 77, + 41,181, 57,170, 8,212,212,109,202,208, 26,176,231,135,157,184,120, 58, 6, 87,174, 92,173,184,146,120,101, 45,145,210, 85,149, +121,201, 45,138,172, 54,150, 69, 40,136,104, 60,179,176, 25,116,156,227, 59,231,247,189, 63, 56,236,222,217,253,188, 58,244,135, + 71,219, 26, 79, 89,150, 29,143, 27,103,119,238,169,208,200, 39, 80, 26,223,252, 68,166,102, 80, 7,133,134,137,156, 2,167,142, +237, 7, 21,197,117, 0, 64, 69,113,221,133,147,251,103,244, 29,245, 12, 60,125,219,118,183,164,118,217,171,237, 40,229,203,126, +250,250,157,239, 50, 50, 50,144,148,148,132,148,148, 20, 20, 23, 23,227,155,111, 78,216, 85,171, 41, 63,245,212, 97,191,240, 65, + 35, 30,125,106,238,222,113, 15,143,115, 8, 14,233, 32,233, 20,232, 10, 47, 23, 41,174,166,230, 32, 53,254,154,152,114,233, 87, + 3,173,202,127, 40, 63,229,183, 38,163, 35, 62,145, 19,252, 36, 28, 89, 24,243, 99,205,218,130,195, 30,124,186,211,130,231,231, +223,229,233,229,209,232,247,120,113, 81,137,226,141, 55, 22,119,178,180,183,182, 22,161,132,227, 42,166,205,152,229, 36, 33,146, +186, 97, 64,106, 25, 35,179,252,160, 20, 32,128, 92, 38,181,250, 55, 58,101,220, 0,240,162,136,202, 42, 19, 42,245, 38,148, 86, + 26,144, 87, 88,138,132,196, 84,156, 57,113, 0, 25,169, 41, 21, 60,207, 31, 5,197, 15, 5, 94,101, 59, 26, 22,214,109, 14, 17, + 92,176,167,135, 11, 50, 74, 12,112,148, 75,161,185,158,194,155,120, 67,139,139,172, 23, 94,248, 49,215, 47,234,193,251,158,122, +238,149,159, 7, 13, 26,232,218,173,103,111, 39,111, 87, 23,200,165, 4,169,215,181,184,124,254,172, 46, 43,249, 66,185, 96,174, + 26, 89, 24,255, 99,110, 75,143,243,111,161, 73,131,101, 18,248, 97, 47,190,178,226,144, 32, 8,142, 82,142,171, 50, 83,113,228, +237,152,171, 63, 11, 74,197,236,231,230,212, 76, 90,183,220, 16,152, 5,209,113,234,115,243,171,234,223, 32, 16,179,160,178, 68, +174,172,100,234,113, 5,165,213, 21,139, 62,189,184,233,221, 77,137, 59, 1, 36,222,110,102, 31, 0,148,148, 27, 47,122, 13,255, +246,193, 10, 61, 79, 0, 92,105, 68, 83,119,239,189,247,214,116,160,214,196, 9,130, 96,243, 5, 66,225,160,154, 49,100,236,211, +146,152, 61,235,197,179, 71,247, 76,104,137,185,178, 80,107,152, 78, 19, 66,226, 95,125,245,213,104, 63, 63, 63,191,197,139, 23, + 59,228,228,228,200,126,254,249,103, 67, 89, 89, 89,158, 94,175,143,165,212,246,249, 9,181, 23,205,167, 28,253, 58,127, 70,118, +126,117,159,135,111,192, 8,119,239,160,240,146,130,236,212,242,162,236,159,137,136,195, 21,249, 87, 99,237,237,235,133, 11, 23, +174,119,237,218,117, 55,199,113,129,130, 32,120, 19, 66,156, 41,165, 37, 60,207,151,136,162,152,107,143,185,178,144,121,108, 99, +245,160,255,109,216, 86, 84, 37, 42, 76,196, 97, 91,230,177,141,213, 0,160, 61, 52, 95, 15,224, 71,191, 33, 47,143,219,115, 42, + 99,109, 66,137,235,172,252, 99,239,218, 20,138,175, 79,206,249, 29, 29,173,183,178,141, 42, 77, 66, 54,128, 41, 78,126,157, 62, +140, 63, 31,187,132, 80,200, 4,240,111,233,181,215,206,181,134,190, 76, 38, 51,244,238,221,187,209,108, 65,165, 82,217,108,125, +173,218, 47,250,245,100,240,224,175,127,142, 57, 49,229,192,225,147,203,239,234, 55,192,203, 65,169, 70, 91, 15, 19,190,126,169, +215,236,152,243, 5,103, 30,120,233,215, 79,211, 52,134, 75,148, 82,155,235,160, 1, 0,165, 52,133, 16, 82, 6,224, 65, 74,233, + 23,132,144,105, 0,174, 0,136,183,219, 8,136,120,172, 95,191, 62,223, 16, 66,164,148, 23,223,139,149,113,219, 12,185, 87,178, + 91, 98, 40,234,211, 45,196, 21,211,102,204, 8,107,223,225,143, 44,194, 46,237, 92, 48,121,202,179, 97,109, 67,195,234,182,117, + 10,106,254,134,138,106,226,170,136, 95,215,225, 87, 15,125,240,186, 87,234,111,207, 57,122, 6, 58,235, 10, 51,139, 75, 50,207, +125,160,207,247,251,192,250, 92,213,230,201, 72, 73, 88,245,213,135, 47,207,207,205, 73, 93,175,203, 79,174, 25,117,200, 79,142, + 87,249,133,191, 94,152,151, 61,191, 40, 63,237,131,150,190, 23, 58,157, 78,179,117,235, 86,247,254,253,251, 75,252,252,252, 80, + 80, 80,128,163, 71,143,138,162, 40, 90, 93,152,185, 33,218,228, 95,143,146, 14, 29, 60,183,125, 93,246,158,212,209,101, 52, 47, + 64, 77, 41,133, 84, 66,114, 77,213,101, 63, 23,184, 87,189, 68, 47,197, 54,255,119, 41, 10,132, 74,168,196,178,182,160, 40,138, +228,253,143, 55,103,114, 50, 69,163, 67,170,130,217,168, 18, 69,209,230,181, 8,181, 92,150, 87,148, 57,194,122, 22, 31, 5,226, + 73,146,149,155, 83,122,240,238, 81, 79,140,224,121,193,140,154,249,137,150, 71, 62,165,228, 23, 16,225, 80,161,103, 69,172, 61, +166,170, 62, 38,147,201, 29, 18, 57, 92, 84,102, 72, 64, 80, 94, 86,166,244, 17, 20, 87, 90,162,101, 65, 27,191, 39,129, 12, 30, +220,214,120,228,151, 39,143,159,248,109, 2, 21,197, 16,129, 2,160, 36,195,104, 50,124,151,239, 90,184,169,165,253,253,183, 65, +110,243,251,163,121,113, 27,135, 75,254,105,154,132, 16, 57, 0,111, 0, 2,173,183,252,205,237,104,214,219,222,228,218,130, 45, +213, 4,106,214, 21, 83, 58,168, 94,210,235, 43,214,235,181,201, 54, 95,244,109,121, 63, 9, 33,110, 74,165,178,167, 92, 46,151, + 85, 84, 84,156,166,148, 54,123,231,249,111,253,220,235, 51,240,233,141,222,247,142,184,123,238,225,159,206,172,169, 29, 62,172, + 35,112,194, 42,135,201,163, 7,189,176,249,135,125,171, 26,102, 17,222, 9,231,254,103,105,146,193,131,165,190, 37,174, 83, 4, + 65,124,235,222,176, 10,125, 94,250,213,153, 39, 46, 23,156,166,148, 54, 89, 79,204,198,191,207, 71, 81, 27,193,162,148,110,187, +221,126,182,132,198, 52,125,163, 30,122, 19, 4, 54, 20,141,173,133,226, 74,126,252,238,197,205,105, 2, 53, 19,210, 85, 5,240, +208, 23,122, 23,217,107,172,254,150,207,157, 16,174,107,215,174, 3,229,114,121,176, 32, 8, 42,163,209,168,175,170,170,202,200, +204,204, 60, 69,155, 88,144,252,207,238,167, 95,215,135, 86,201,100,178, 57, 0, 96, 54,155,215,104, 47,239,158,215,220,190, 77, +181,255, 75,174, 71, 19, 38,112,244,187,239,108, 94,184,221, 22, 77, 11, 1, 61, 31, 41, 53,155,249,186,181,135,228, 50,105, 89, +246,249,157,141,207,123,177, 81,147,241, 7,204, 96, 49, 77,166,201, 52,255,114, 77,210,236, 98,221, 45,211,180, 21,166,201, 52, + 1, 64, 29, 57, 54, 8, 0, 52,137,123,109,202, 54,110,172,253,191,245,220,255,169,154,119, 26,118, 45,246,204, 96, 48, 24,173, +129, 45,230,138,193,248, 51,177,213, 88,181,180, 61,131, 65,208, 96,169, 21, 11,246, 56, 83, 66, 72,163, 26,205, 97, 67,216,159, +105, 50, 77,166,201, 52,153, 38,211,100,154,119,152,166, 53,237, 59, 37, 50,198,134, 8,153, 38,211,100,154, 76,147,105, 50, 77, +166,249,183,107,222,105,180,210,210,200,119, 30,132, 16, 63, 66,136, 95,107,183,101,180, 14,132,144, 0, 66, 72,128,157,237,253, + 91,120, 44,246,249, 50, 24, 12, 6,195, 46,254,242, 57, 88,150, 11,149,181,236, 60, 91,219,181,246,190,181,251, 47, 39, 4, 11, +106,159,191, 71, 41,109,178, 34,176,141,109,173,214,231, 14, 15, 15,119,114,116,116,124, 68, 16,132,246,162, 40,130, 16,146, 74, + 8,249,238,242,229,203, 85,168,171,158,210, 60,193,193,193, 33, 14, 14, 14, 83, 8, 33,157, 1,128, 82,122,197, 96, 48,124,125, +253,250,117,251, 42,121, 55, 2, 33,132, 0,152,166, 84, 42, 39,186,187,187,119, 44, 41, 41, 73, 49, 26,141,223, 1,248,188, 37, +233,219,106,181, 58, 28,192,147,162, 40, 74, 37, 18,201, 54,141, 70, 99,211,210, 3,181,125,177,249,243,169,109,179,146, 0,115, + 65, 64,109,105,127, 59,199,106,192,237,222,192,176,121, 74, 12, 6,131,241, 47,165, 73,131, 21, 22, 22,118, 78, 46,151, 7,114, +181,139,247,145, 6, 37,166, 27,190, 22, 69,145, 26,141,198,236,171, 87,175,222,178, 84, 66,189,125,108,186, 88,221,206, 69,173, +193,190,171, 40,165,243,109,221,183,118, 31, 63, 66,176, 64, 20,169, 4, 0, 36, 18,242,178,159,159,159,167, 84, 42,189,165,230, + 19,207,243,142,132, 96,170, 40,214,172,151, 36,145,144, 5,132,144, 53,246, 26,187,240,240,112, 39, 87, 87,215,215,214,173, 91, +231,218,185,115,103, 2, 0,113,113,113,238,179,102,205, 10,235,218,181,235,178,203,151, 47, 91, 93,242,162,125,251,246, 15,245, +232, 25, 61,123,222, 75, 47,251,249,122,121,187,240, 2,111,202,201,201, 85,175, 94,245,238, 93,237,219,183,255, 52, 45, 45,205, +166,117, 3, 45, 70, 74, 42,149, 78,116,112,112,232, 96, 48, 24, 82,121,158,223,201,113,220,136,183,222,122, 43,106,204,152, 49, + 14,101,101,101, 10,158,231, 59,110,221,186,245,133, 13, 27, 54,140, 34,132, 60,216,220,164,101, 75,164,137, 82, 90,191,238,205, +163,167, 79,159, 30, 42,149, 74, 73,159, 62,125, 28, 9, 33,179,232, 31,213,187, 27,107,111,209,186,229,243, 33,132,124, 68, 41, +205, 11, 10, 10,234, 45, 8,194, 19, 0,192,113,220,230, 27, 55,110,156, 35,132,180,113, 80, 42,231, 86, 25, 12, 4, 0,177,231, + 51,106,236, 88,206,206,206,155, 43, 43, 43,175, 90,126, 95,219,207, 22, 25,121, 6,131,193, 96,220,185, 52,105,176, 56,142, 11, + 60,124,248,176,175, 66,161,168, 51, 83, 77,253, 20, 4, 1, 38,147, 9, 35, 71,142,108,178, 38, 75, 99, 23,171,161, 67,135,246, +116,116,116,188,169, 38, 84, 85, 85,149,130, 16, 12,109,137,105,177, 28,195,104,172,150,200,100, 10,112,156,228,197,238,221,187, +247, 46, 44, 44,140, 17, 4,225,179,188,188, 60,187, 87, 87, 39,132,224,171,175,190,234,236,231,231,119, 75, 65, 56,173, 86, 43, + 31, 59,246,150, 69,183,237,198,209,209,241,145,207, 62,251,204, 53, 34, 34,130,232,245,122,152,205,102, 4, 7, 7, 75, 94,123, +237, 53,183,183,223,126,123, 2,128, 70,151,143,177, 16, 20, 20, 20,218, 43,186,239,236,175, 55,110,236, 91, 86, 92,108, 88,191, +114,221,249,106,169, 82,223,182,115,184,252,245, 37,111,185,189,185,120,209,244,160,160,160,248, 27, 55,110, 52, 91,213,155, 16, + 34, 1,176,107,238,220,185, 93,238,191,255,126, 69, 69, 69,133,131, 94,175,111,183,117,235,214,215,162,163,163,157,123,246,236, +169,216,190,125, 59, 41, 45, 45, 5,165, 84, 21, 17, 17, 65, 39, 76,152, 96,248,246,219,111,159, 7,240, 81, 19,154,141,154,101, + 65, 16,100,150,192, 23,207,243, 10,212,252, 45,154, 90, 16,157, 34, 94, 94, 94, 83, 0, 44,231,121,126,234,209,163, 71,123, 2, +192,144, 33, 67,228, 0,206,185,186,186,246, 55, 25,141,246, 45,118,220, 4, 99,198,220, 15, 0, 95,248,251,251,255, 90, 80, 80, + 16, 72, 8, 38,219,218, 79, 6,131,193, 96,252,183,104,118,136, 80,161, 80,224,247,223,127, 7,165, 20, 18,137,164,110,121, 24, +137, 68,130,189, 41,222,208, 25, 37,208,107,227, 49,123,108, 91,132,132,132,220, 18,213,106,132,186, 6,132, 16,204,153, 24,174, + 86, 99, 0, 0, 32, 0, 73, 68, 65, 84, 51, 7,254,254, 55, 79,139,201,205,205,197,177, 99, 71, 91,124, 66,245,143, 1, 0,111, +191,253,182, 91, 81, 81,209, 3, 95,125,245,213,136, 54,109,218,188,150,151,151,119,172,185,157, 41,165, 90, 66,200,123,181,145, + 17, 40, 20,202,140,233,211,167,159,171,253, 93,251,189,123,247,170,198,142, 29,171, 39,132,164, 1,128, 66,161,244,229, 56, 73, + 8,173, 89, 99,234,189,150, 68, 51, 76, 38, 83,135,136,136, 8, 82, 89, 89, 9,163,209,136,204,204, 76, 20, 20, 20,192,199,199, +135,240, 60,223,193,218,254, 42,149,234,153,185,243,230,251,148, 21,151, 84,153, 43, 42, 76,206,162,192,187, 58,200, 72,121, 65, + 81,105,198, 13, 87,253, 51, 51,103, 75, 23, 47,124,225, 25, 0,175, 88,145,122,126,222,188,121,157,251,244,233, 19,176, 99,199, + 14, 82, 86, 86, 6,169, 84,234,220,163, 71, 15,244,238,221, 91,136,137,137, 33,161,161,161,136,138,138,194,201,147, 39,241,219, +111,191,145,158, 61,123,170,118,237,218,245, 56, 26, 49, 88, 13, 77, 53,199, 73, 22, 78,154, 52,105,148, 74,165, 50, 15, 30, 60, + 24,207, 62,251, 44,116, 58, 29, 58,119,238,220,109,240,224,193,177,227,199,143,151, 73, 36, 36, 74, 16,106,130, 97,141,153,235, + 6,159, 15,153, 50,229, 41,173,179,179,243,120,181, 90,125,149, 16, 34,149,203,229,150, 99,115,126,126,126, 62,221,186,117,155, +233,233,233,153,207, 73, 36,190,180,102,145, 21,155, 63, 35,203,177,198,142,189,255,101,128,224,222,123,239, 45,154, 61,123,182, +112,229,202,149,193,227,199,143,187,235,218,181,148,219,138, 92, 50, 24, 12, 6,227,206,165, 89,131, 69, 8,193,230,205,155, 97, + 48,220,186,242,128,199, 61,239, 96,254,248,182,120,106,214, 38,188,151,252, 29, 62,249,228,147,186,117,151, 44,212,207, 48,160, +148,106, 57,142,251, 84, 34, 33,207, 17, 66, 16, 21,213, 53,125,245,234,213,141, 85, 52, 55, 70, 69,117, 77,231, 56, 73, 40,165, + 20,132, 72,214,137,162,160,109, 76,179, 33,150, 11,162, 66,161, 92, 0, 0,254,254,106,237,190,125,251,204,143, 60,242, 8,222, +127,255,125,197,194,133, 11,223, 82,171,213,147, 52, 26, 77,118,131,253,226, 27,188, 94,228,231,231,231,249,213, 87, 95,117,158, + 62,125,250,185,156,156,156,185, 0, 16, 16, 16,176, 26, 64, 87, 66, 72, 90,189,109,248,252,243,207,123, 63,243,204, 51, 87,180, + 90,237,162,166, 52,155,162, 67,135, 14, 33, 99,199,142, 85, 2,128,217,108,198,141, 27, 55,112,227,198, 13, 20, 21, 21,193,108, +190,121,105,177,166, 52, 9, 33, 17, 30,238, 30, 78,235, 63, 92,119,206, 71,201, 17,239, 32, 53,145,187,186, 75, 37,206, 46, 74, +202,113, 85,109,131,212, 46,132,144,136, 38,222,179, 58, 77,185, 92,254,248,136, 17, 35, 84,219,183,111, 39, 81, 81, 81,112,119, +119,199,175,191,254,138, 11, 23, 46,160,164,164, 68,194,243, 60,162,163,163,241,222,123,239, 33, 40, 40, 8,101,101,101,200,204, +204,244,150,203,229, 62, 77,105,162,129,225, 93,176, 96, 1,124,125,125, 33, 8, 2,114,115,115, 81, 89, 89, 9, 39, 39, 39,184, +185,185, 65,163,209, 96,207,158,198, 71, 50, 27,252, 45, 45, 82, 42,149, 95,181,109,219,118,229,236,217,179,253,189,188,188, 80, + 93, 93,253, 90, 81, 81, 17, 22, 44, 88, 0, 0,232,211,167, 79, 55, 74,233,129,103,158,121, 6, 33, 33, 33, 57,197,197,197,215, +227,226,226,158,213,233,116,241,141,105, 54, 69, 64, 64,192,161,252,252,130,129, 67,134, 12, 65,105,105,169,105,201,146, 37,232, +209,163, 7,194,194,194,173,246,179,181, 96,154, 76,147,105, 50,205,255,130,230,157,134, 20, 0, 72,205, 26,158,164,145,231,248, +246,219,111, 27,221,113,202,202, 68, 72,107,166,103, 97,221,186,117,224,121, 30,150,253,154, 66, 16,132,231,189,189,189,243, 23, + 45, 90, 52, 32, 60, 60,220,248,252,243,207,199,103,100,100,188, 90,191, 77, 72, 72,200,219, 31,127,252, 49,146,147,147, 51,151, + 47, 95,126,178,176,176,112,153, 61, 39, 68, 41, 93, 72, 8, 89, 13, 0, 26,141,166,112,239,222,189,125,142, 31, 63,190,112,245, +234,213,254,207, 63,255,188, 98,246,236,217, 51, 97, 61,146, 3,169, 84, 90,213,216,176, 96, 99,248,249,249,153, 26,155,163,213, + 28,131, 7, 15,230,174, 95,191,222,217,209,209,241,255, 94,120,225, 5, 71,147,201, 4,141, 70,131, 27, 55,110,160,180,180, 20, + 18,137, 4,201,201,201, 34, 33,228,170, 13,114,149, 70,179,185,218, 41, 72,109, 30,251,224,136,174,151,207, 92, 72,118,244,244, +148,116,141,238, 17,153,148,146, 25, 71, 0, 35,106, 30,205,226,230,230, 22, 94, 88, 88,136,242,242,114,248,248,248, 96,205,154, + 53,240,243,243,131, 94,175, 71, 66, 66, 2, 13, 12, 12, 36, 39, 78,156,128, 90,173, 70, 65, 65, 1,140, 70, 35,244,122,125,190, +209,104,108,244,220, 41,165, 90,169, 84,186, 94, 34, 33,207, 18, 66,208,177, 99,152,246,163,143, 62, 50, 83, 74, 17, 17, 17,129, +113,227,198,225,215, 95,127, 69, 66, 66, 2, 40,165, 16, 69,209, 28, 18, 18,170,149, 72,136,111,205,238, 77, 71,155,170,171,171, +211,252,252,252,166,190,248,226,139, 91, 63,251,236, 51,143, 87, 94,121, 5,148, 82, 8,130, 0, 65, 16, 32,138, 34, 68, 81, 4, +165, 20,187,118,237, 66,106,106,234,219,245,205,149, 53, 2, 3, 3, 29, 4, 65,152,209,169, 83,167,251, 31,125,244, 81,147, 92, + 46,135, 94,175,183,188, 23,166,145, 35, 71, 22,141, 29,123,191,215, 79, 63,253,100, 87, 84,140,193, 96, 48, 24,141,211,148, 23, +249,183, 82, 23,193,106,120, 50,150,225,190, 67,135, 14,129, 16, 2,142,227, 64, 8,169, 27, 42,212,229,222,192, 83,179,183, 66, + 33, 5, 46, 93,186,132,136,136, 70, 3, 36,183,192,113,220,231,135, 14, 29,234, 49,104,208, 32,233,208,161, 67,163, 2, 3, 3, +163,178,179,179,227, 1, 32, 48, 48, 48,106,228,200,145, 81,190,190,190, 88,179,102,141,158,227,184,207, 91,114, 82, 13, 46,118, +177, 1, 1, 1,175,255,240,195, 15, 95, 77,159, 62, 29,126,126,126, 61, 90,162,217, 26, 44, 93,186,148,172, 93,187,118,165,163, +163,227,120,133, 66,225,234,227,227, 83, 54,106,212,168, 20, 23, 23,151,244,140,140, 12, 80, 74,225,233,233,137,202,202, 74, 36, + 39, 39,139,135, 14, 29, 42,117,118,118,254,222,154,174,201,100, 58,123, 61, 43, 43,188,255,192,254,254,191,158, 75, 60, 63,254, +161,251,135, 72,164, 18, 73, 70, 86,238, 89, 31, 47, 79,167,223, 78,157, 44, 55,153, 76,103,173,233,232,116,186, 12,158,231, 61, + 41,165, 62,199,142, 29,131,183,183, 55, 74, 74, 74, 96, 54,155, 97, 50,153,140,122,189,222, 33, 41, 41, 9,213,213,213,168,174, +174,134,171,171, 43, 46, 95,190,172,229,121,254,151,166, 52,121,158,159, 70, 8,121,147, 82,138,171, 87,175,230, 0,128, 90,173, + 14,115,119,119,255,134,231,121,104, 52, 26, 28, 59,118,108,178, 70,163, 73,182,236,211,220, 36,247,250,104,181,218,130,128,128, +128,231,167, 77,155,246,102,167, 78,157,218, 83, 74,209,177, 99, 71,140, 24, 49, 2,251,247,239,199,181,107,215,160,211,233,132, +223,127,255,125,155, 70,163,217,107,237,252, 45,248,250,250, 70, 57, 57, 57, 45,154, 53,107,150, 95,151, 46, 93,234, 34,184,206, +206,206,208,235,245,112,117,117,197,221,119,223,125,101,217,178,101, 38, 74, 49,133, 82,154,103,171, 54,131,193, 96, 48,154,230, + 78, 48, 86, 22,234, 12, 22,165,148, 16, 66,110, 26,227,179, 24, 42, 66, 72,221,115,203, 99,246, 3,193, 40, 41,113, 1,199,213, +188, 22, 69,219, 50,202,181, 90,109, 65, 96, 96,224,207,113,113,113,247, 79,156, 56, 17,199,142, 29,155, 2,224, 5, 0, 80, 42, +149, 83, 38, 78,156,136,184,184, 56, 36, 37, 37,253,172,213,106, 11,154, 87,179, 13, 66,136,222,104,172, 9,224, 56, 56, 56, 56, +218,179, 47,165,180,125,237,208, 32, 40,165,237,155,218,102,141,165, 75,151,146,143, 63,254,248,218,220,185,115,219,206,154, 53, + 75,234,234,234,138,210,210, 82,231, 77,155, 54,249, 62,249,228,147,234,101,203,150,157,200,203,203,195,198,141, 27,171,146,146, +146, 12, 28,199, 37, 41, 20,138, 93,177,177,177,213,214,180, 13, 6,195, 87,111, 47,123,125,200,150,173,223, 70,116,138,232,232, +177,255,208,209,243, 94, 94,174,142, 33, 33,237,149,101,165,165,213, 31,175,126, 95,170,211,233, 54, 88,211,169,170,170,218, 21, + 19, 19,243, 80, 80, 80,144, 79,124,124, 60,140, 70, 35, 4, 65,192,176, 97,195, 64, 41, 85, 2, 16,165, 82, 41,174, 92,185, 2, +147,201,148,127,237,218,181,156,212,212, 84, 37,128, 21, 86,222,195,155,140,146, 68, 34,153,116,255,253,247,131,231,121,140, 24, + 49, 2,187,119,239,158, 8, 96,105, 83,237,155, 35, 39, 39, 39, 5,192,164,200,200, 72,121,105,105,105,239,225,195,135,175, 25, + 62,124, 56,206,159, 63,143,147, 39, 79,254,159, 82,169,204, 55,153, 76,188,191,191,255, 52, 66,136,171,201,100,250,166,176,176, + 48,183, 41, 61,127,127,255, 1,225,225,225, 75, 63,248,224, 61,226,231,231, 15, 65,224, 97, 54,155, 80, 80, 80,132,138,138, 10, + 68, 70, 70, 34, 56, 56, 24, 43, 86,172, 0,128,221,204, 92, 49, 24, 12, 70,235,209,152, 23,249,183,114,211, 28,172,198, 78, 76, + 34,145,212,253,180, 60, 8, 33,144,203, 56,180,241,243,169,155,248, 46, 8, 2, 96, 67,189, 39, 0,208,235,245,223,110,221,186, +245,190,149, 43, 87,202, 71,143, 30,221, 33, 48, 48,176, 15, 0,140, 31, 63,190,131,139,139, 11,182,110,221,106,210,235,245,141, +143, 77,182, 0, 81, 20, 71, 68, 71, 71,163,184,184, 24,153,153,153,231,236,217,119,239,222,189, 42, 0, 93,173,109,179,198,218, +181,107,215,204,157, 59,183,237,162, 69,139,164, 6,131, 1,229,229,229,144,201,100,120,234,169,167,228, 21, 21, 21, 33,171, 87, +175,214,252,254,251,239,231,140, 70,227,250,212,212, 84,187,234, 86,105, 52,154, 42,181, 90, 61,251,173,183,223,250,230,131,247, +223,247, 45, 46, 42, 73,150, 43, 28, 13, 42, 71,165,231,203,243,151, 81,173, 86,251,162, 86,171,181, 90,234, 1,192,138,111,190, +249,102,228,125,247,221,119, 41, 40, 40,200,183,176,176,176, 77,121,121, 57, 45, 46, 46, 38,168,249,108, 9, 80, 19,177,204,202, +202,226, 5, 65, 56, 1,224, 77, 74,169,213,225, 71, 11,129,129,129, 30,125,250,244, 25,233,229,229, 85, 55, 20,217,179,103,207, +145,129,129,129,107,179,179,179, 75,236, 57,239,250,148,149,149, 61,120,247,221,119,191, 56,115,230, 76,152,205,102, 60,244,208, + 67,200,206,206,254, 48, 35, 35, 99,135, 90,173,158,252,212, 83, 79,249,120,121,121, 97,254,252,249,142,168,103,230, 26, 66, 8, +121, 98,210,164, 73,196,209,209, 9, 60,207, 67,169,148, 67,169, 84,194,217,217, 21,158,158,158,200,202,202,194,189,247,222, 43, +166,167,167,239, 81,169, 84,205,102,119, 50, 24, 12, 6,195,126,238, 20,147,101,117,146,187,209,104, 4,199,113,216,157,236, 3, +157,145,160, 60, 59, 14,115, 30,104, 91,103,182, 68, 81,132, 84, 42, 69, 77, 22,157,109,239, 71, 73, 73, 73,185,191,191,255,158, +216,216,216, 9,227,199,143,199,225,195,135,159, 4,128,241,227,199, 35, 54, 54, 22,233,233,233,123, 74, 74, 74,202, 91,225,252, + 16, 16, 16,240,240,144, 33, 67,158,236,211,167, 15,246,238,221, 11, 65, 16,154, 28,206,106,140,250, 25,131,141,101, 17, 90,182, + 89,211,145, 74,165,143,204,154, 53, 75,106, 48, 24, 64, 41,133, 92, 46, 71,121,121, 57,242,242,242, 48,112,224, 64,249,220,185, +115, 59,234,116,186,151,178,178,178, 90, 84, 20, 84,163,209,100,135,135,135,167, 86, 25, 12, 50, 15, 47, 79,189,139,147,130,150, + 87, 84, 72, 46, 93, 58,159,171,213,106, 51,109,209,160,148, 26, 9, 33,247, 28, 60,120,112, 49,199,113, 19, 3, 2, 2, 48, 97, +194, 4, 50,116,232, 80, 40, 20, 10, 84, 85, 85,161,180,180, 20,123,247,238, 5,207,243,161, 0,224,227,227,227,215,174, 93,187, +239, 37, 18,137, 54, 61, 61,253, 25,107,199, 16, 4, 97,252,131, 15, 62, 40, 53,155,205, 88,182,108, 25,222,120,227, 13,140, 26, + 53, 74,122,246,236,217,241, 0,190,108,201,185, 7, 6, 6, 78,155, 50,101,202,180, 9, 19, 38,160,162,162, 2,177,177,177,232, +223,191, 63, 86,172, 88,225,127,242,228,201, 23,162,163,163, 33,149, 74,113,252,248,113,240, 60,223,228,130,173,131, 7, 15,150, +114, 28,215, 62, 32, 32, 0,153,153,153, 80,169, 84,240,243,243,131,187,187, 59,188,189,189,177,114,229, 74,172, 90,181,234, 34, +199,113,235, 52, 26, 77,106, 75,250,202, 96, 48, 24,140,255, 6, 82, 0, 55, 77, 78,175, 63,193, 29, 0, 54,110,172,185, 73, 87, +221,181, 4, 11, 39,180,195,227,207,109,194,135, 31,254, 0,165, 82, 89, 39,194,113, 28,150, 46,109, 50, 40,208, 40,162, 40,238, +250,230,155,111, 70,247,235,215, 79, 53,100,200,144,246, 0,160, 84, 42,141,223,124,243,141, 94, 20,197, 93,246,158, 72,195,162, +143,129,129,129,209, 28,199, 77, 25, 59,118,108,244,211, 79, 63,141,132,132, 4,108,221,186,245, 74,120,120,248, 97, 59,117,211, +172,100, 17,174,134, 13,209, 44,158,231,221, 93, 93, 93, 81, 94, 94, 14,185, 92, 14,158,231, 81, 84, 84,132,171, 87,175,194,203, +203, 11,101,101,101,174,237,218,181, 75,176,247,188,235,227, 40, 23,123,189,182, 96, 90, 71,131,161, 42,178,172,172,140,151, 74, +165, 82,165, 76,104,182,246, 85, 67, 40,165,213,193,193,193, 15, 10,130,224,109, 52, 26,205,126,126,126,178, 35, 71,142,192, 82, + 15, 45, 42, 42, 10, 10,133,194, 24, 24, 24, 88, 1, 0, 94, 94, 94,146,229,203,151,203,230,205,155,103,181,239,189,122,245,146, +181,107,215,110, 82,120,120, 56, 78,157, 58,133,196,196,196,180, 83,167, 78,181,239,213,171, 23,130,130,130, 38,245,234,213,235, +235,184,184, 56,179, 53,157,250, 68, 70, 70,202,123,244,232,241,228,132, 9, 19,144,150,150,134,229,203,151, 23,230,230,230, 30, + 61,120,240,224,195, 51,103,206,228,250,247,239,143,194,194, 66,124,253,245,215,252,185,115,231, 54,228,229,229,109,110, 74,235, +248,241,227,162, 90,173,174,155,115,168,215,235,145,158,158,142,187,239,190, 27, 27, 54,108,192,234,213,171, 55,231,230,230,178, +168, 21,131,193, 96,252, 9, 52,230, 69,254,205, 88,141, 96,109,223,190, 29, 0,240,204,154, 36, 24,141, 53,215,190,117,235,214, +161, 77,155, 54, 55,181, 77, 77, 77,181,235, 13,209,106,181,122,127,127,255,157,207, 61,247,220,138, 11, 23,206,135, 2,192,153, + 51,103,210, 53, 26,205, 66, 27,135,179,234,247,211, 82,156,146,168, 84,170, 75, 29, 59,118, 44, 26, 57,114,164,199,184,113,227, +224,237,237,141,243,231,207, 99,249,242,229, 9, 6,131,225,249, 99,199,142, 53, 89, 12,245,207, 68, 42,149,150, 22, 23, 23,251, + 42, 20, 10,148,149,149,213,153, 43,157, 78,135,226,226, 98, 80, 74,203,143, 29, 59, 38,180, 84, 63, 48, 48,240,158,209, 35,239, +137,250, 96,229, 71,168,210, 87,226, 76,236, 62,148, 20, 23,226,243, 47,127,232, 26, 24, 24,120, 79,118,118,246,113, 91,181,120, +158,111,191,115,231, 78, 0, 53,181,208,222,124,243, 77,168,213,106,184,186,186,162,178,178, 18,211,166, 77, 83,204,153, 51, 7, + 0,144,152,152, 8,103,103,103,155,116,115,115,115,135, 76,159, 62,221,213,108, 54,227,192,129, 3,213,130, 32,204, 62,124,248, +240,174,238,221,187, 43, 7, 13, 26,228,186,101,203,150,123, 1, 28,180,231,188,121,158, 87,168, 84, 42,133, 32, 8,216,185,115, + 39,178,178,178,158, 46, 44, 44,204,243,243,243,251,225,165,151, 94,154, 31, 22, 22, 22,114,237,218,181,172,138,138,138,247,180, + 90,109,179,209, 65, 74,169,168, 86,171,175, 31, 58,116, 40,120,194,132, 9,144,203,229, 40, 41, 41,129,139,139, 11, 62,248,224, + 3,106, 50,153,172, 38, 28, 48, 24, 12, 6,131, 1,216,176, 22,225,233,211,167,193,113, 28,248,226, 44, 60,183,112, 7,156, 85, + 50, 92,189,122, 21, 69, 69, 69,117,119,250,150,225,194,134, 16, 43,171,109,151,149,149,157,213,106,243, 66,235, 85,109, 15, 85, + 42, 29,154,205,118,107,168,217, 72, 49,203,238,111,191,253,118,188,175,175,175, 57, 62, 62, 30,235,214,173, 19,227,226,226,126, + 2,240,129, 86,171,109,180,156,128,181,126,182,132,134,154, 60,207,239,124,255,253,247,167, 47, 92,184, 80,150,155,155,139,228, +228,100,232,116, 58,152,205,102,236,223,191,159,215,235,245, 86,163,118,205,245, 51, 59, 59,251,120, 88,135, 96,124,253,229, 74, +152, 76,213,200,205,201, 2, 0, 20, 22,149,161, 57,115,213,152,166, 68, 34, 41,157, 50,101,138,202,104, 52,146, 73,147, 38,201, +242,243,243,209,161, 67, 77,189,211,242,242,114,252,244,211, 79,117, 89,163,151, 47, 95,190, 37,131,180,169,126,170, 84,170,137, + 3, 6, 12, 64,102,102, 38, 18, 18, 18,246,107,181,218, 2,127,127,255,253, 89, 89, 89,227,123,247,238,141, 93,187,118, 77, 64, + 19, 6,171,185,115,183,148,103, 16, 69, 17,158,158,158, 58, 0,168, 53, 83,207, 53,117,222, 77,105,242, 60,255,242,174, 93,187, +166,199,198,198,222,243,194, 11, 47,144,161, 67,135, 2, 0,116, 58,157, 80, 88, 88, 88,217,156,158,181,126,182, 20,166,201, 52, +153, 38,211,252, 47,104,222,105, 52,107,176,244,122, 61, 58,118,236, 8, 65, 16,240,238,115,129,168,168,232, 10, 65, 16,192,243, + 60, 84, 42, 85,221,188,171,218,197,137,237, 62,184,193, 96, 48, 55,220,205, 96, 48,216, 53, 68,212, 24, 27, 54,108, 64, 94, 94, +158, 49, 43, 43,235, 71,147,201,180,181,185,172, 49,107,180, 86, 22,225,172, 89,179,230,124,252,241,199, 35, 42, 42, 42,130,199, +143, 31, 47,243,244,244, 68,113,113, 49, 14, 28, 56,192,159, 63,127, 62,107,214,172, 89, 47,180,180,143, 64, 93, 4, 11, 83,166, +206, 67, 85, 85, 37,126, 63,181, 15,165,197,133,136, 61,155, 12,123, 35, 88, 82,169, 52,216,108, 54, 43,121,158,207,161,148,226, +137, 39,158,128, 32, 8, 48, 24, 12,168,168,168, 64,113,113,177, 97,214,172, 89, 18, 0, 80,169, 84,184,239,190,251, 20,182,232, +182,111,223, 62, 88, 42,149,226,224,193,131,224, 56,238,123, 0,224, 56,238,251,152,152,152,241,147, 38, 77, 66, 64, 64, 64, 56, +169,205,209,181,231,220, 69, 81,180,212, 97,179,103,183, 70,201,207,207,207, 7,240,166, 90,173,254,110,193,130, 5, 51,251,244, +233, 19, 85, 59,252,205,221,182, 56,131,193, 96, 48,254, 51, 52,105,176, 68, 81, 76, 31, 62,124,184,169,161,113,106,248,186,126, +228, 74, 20,197,155, 42,164, 91,163,182,242,250,187, 18, 9, 89, 80,243,218,254,130,141,244,143,165, 83, 22, 0, 32, 82,169,108, +235,233,211,167, 95,209,104, 52,121,148,210, 22, 15,185, 89,104,173, 44,194, 37, 75,150, 80, 0, 97,107,215,174, 93,179,107,215, +174, 71,170,170,170,220, 29, 29, 29, 75,121,158,223, 57,107,214,172, 57,181,191,111, 49,217,217,217,199, 59,180, 15, 60,244,200, +248,209,247,181, 15, 81, 3, 0,210, 50, 52, 40, 44, 46, 59,100,143,185, 2,128,204,204,204,106, 0,213,254,254,254,227,191,253, +246,219,157,181,166,167,126, 41,142,106,169, 84, 26, 6, 0, 21, 21, 21,109,119,237,218,245,141, 84, 42,181,250,217, 39, 38, 38, +110, 95,178,100,201,228,244,244,244, 31,179,179,179, 83,107,251,157,170, 86,171,215,105, 52,154,201, 89, 89, 89, 91,236, 53, 87, + 70,163,209, 92, 93, 93,205, 11,130, 32, 53,153, 76,212,104, 25,199,190, 77,106,235,114,205, 81,171,213,253, 70,140, 24, 49,133, + 82,154,223, 26,186, 12, 6,131,193,248,111, 64, 90,227,174,191, 73,113, 27, 67,136, 13, 39,168,183, 68,211, 30, 13, 91, 52,213, +106,245,243,132, 16,155,162, 83,181,199, 77,211,104, 52, 31, 55,161,121,187,147,245,104, 83,253,108,140,176,176, 48,154,146,146, + 98,211,156, 56,107,154,129,129,129, 14, 82,169,180, 97,132,170,186,214,132, 89, 52, 8, 0,142, 82,202,219,211, 79,123,104, 78, + 51, 36, 36,228,127,145,145,145,143, 95,184,112, 97, 71, 78, 78,206,234,214,208,108, 41, 13, 52,111, 29, 55,183, 15,177, 17,205, + 86,129,105, 50, 77,166,201, 52,255,105,154, 54, 16, 13,192,178, 52,155,165, 78,166, 79,131,231, 70, 0,245,175, 89,150,215, 5, + 0,206,214,211,168,191,221,218,190, 0, 80, 8,224, 18,108, 88, 21,197,130,213, 57, 88,127, 5,173,177,204, 72,107, 47, 85, 82, +223, 44,181, 2,127,105, 61,143,107,215,174,181, 90,246, 69,118,118,182, 1,192,173,139, 81,214,163, 54,234,244,183, 36, 15, 0, + 64, 70, 70,198, 39,131, 7, 15,254, 60, 39, 39,231,111,235, 67, 19,216, 86,125,151,193, 96, 48, 24,214,136, 6,224, 67, 8,217, + 7, 0,148,210,251, 1,128, 16,178,175,225,115, 75, 27, 75,187,250,109, 44, 26, 13,183, 55,183, 47, 0, 44, 92,184,240,149,229, +203,151,171, 0, 28,181,181,195,183,123,135,205, 96,252, 35,248,187,178, 67, 25, 12, 6,131,241,151, 80,103,140, 26, 26,161,134, + 88, 76, 83, 61, 83,213, 36,141,233, 88,142, 81,255,245,138, 21, 43,222, 1, 96,215, 74, 48, 82, 66, 72, 84, 19, 29,180, 57,244, +215,148, 70,115,191,179,166,207, 52,153, 38,211,100,154, 76,147,105, 50,205, 59, 79,179,181,246,111, 13, 26, 51,107, 13, 34, 94, + 32,132,236, 91,184,112,225, 43,176, 99,120,208, 34,254,167, 61, 0, 68, 49, 77,166,201, 52,153, 38,211,100,154, 76,147,105,222, +230, 99, 76,141,101,161, 99,234, 63,111,108, 91,115,207,173,237,107, 67, 91,155,251,252,143,152,131,197, 96, 48, 24, 12, 6,131, +209, 12, 5,180, 94,180,137,214, 68,152,132,133, 11, 23,190, 82,127,158, 20,128,106, 0,202,134, 59, 55,156,187,213, 28,246,180, +109, 14,102,176,254, 26,172,206,117, 27, 56,176,141, 39, 87, 85,185, 74, 16,133,254, 0, 64, 32,249, 85, 38,115,127, 33,230, 76, + 78, 41,108,156, 44,221,185, 3,233,236, 32,197, 75,162,136,110,132, 0,132,224,146,129,199,251, 87, 82,233,149,219,236, 63, 8, + 33,164, 75, 40,166, 41,148,170, 73,110,238, 30, 29, 75,138, 10,175,153, 76,213,223, 37,102,224,115, 90,123, 59, 99, 15, 17, 29, + 72, 15, 8,120, 89, 16, 33,147, 74,176,234, 74, 6, 61,121,187,125,100, 48, 24, 12, 27,105,149, 12,223, 6,180, 74,182, 56,163, + 73,206, 2,136,174,103,122, 10, 0, 92, 94,190,124,121,201,242,229,203,235,111,187, 8,160,123,109,187, 2,224, 22,163,100,172, +125,109,108,164,141,209,150,182,182, 98,151,193,234, 18, 68,102,130,226, 13, 16, 80, 0, 75, 19,110,208,117,118,237,223,145, 12, +115,144,114,235, 65,193, 25,204,194,139, 84,192,175,141,181, 35, 28, 6, 57,200,184, 15, 65, 32, 26,120,225,153,132, 20,122,196, +214, 99, 68,133,145,145, 82, 34,217, 34,138, 84, 38,136,116, 19, 68,236,115, 54,227,183,216,108,218,108, 38, 92, 67,122,116,228, +150, 5, 7,251,246, 6,106,135, 81,107,107, 64,137,181,255, 3,117,166,130,138,160, 34,133, 38,183, 52,238, 82, 26,125,221,158, + 99, 88, 24, 56,176,141,167,163, 40, 94, 90,247,213,150, 54,193, 29,251, 17, 42, 86, 35,229,194,129,199,230, 44,120,117,200,208, + 62, 1,221, 98,206,228, 20, 91,211,232, 30, 70,166,118,104,215,233,165,121,175,174,148,168,213,129,206, 34,111,228,115,111, 36, +246, 90,187,114,201,247,221,195,200,135, 23,175,209,245,182,244,133, 16, 66, 34, 67, 48, 93, 42, 83, 76,112, 84, 57,117,212,235, + 43, 82, 4,179,249,187,168, 14,210,145,239,191,183,186,199, 61, 67, 70, 57,139,213,121, 18, 51, 79, 34,119,124,187,173,237,199, +159,174, 27, 77, 8,121,128, 82,106, 95,198,156,128,185,151,247, 76,123, 68, 38,229, 72,196,152, 47,157, 8, 33, 35,236,214, 0, + 16, 21, 74,186, 80,224,127, 86,207, 11,248, 36, 62,157,182,104,173,199,206,161,228, 43, 2,132, 3,216, 73, 40,182, 39,100,176, +154, 88, 12,198,157, 70, 64, 64,192,209,156,156,156, 33,173,172,217, 55, 39, 39,231,116,107,106,254,199,105,108,165,151, 51, 54, +182,251,203,177, 55,130,245, 86, 66,202, 13, 15,136, 38,116, 9,111,191, 12,128, 93, 6,203, 65,202,109, 58,123, 73,219, 6,212, +132, 47, 87, 62,183,195,104, 6,120,222, 4,129, 55, 67,224,205, 53,207, 5, 51, 68,222,128, 37,171,142, 1,124, 5,122,247, 8, +219, 4,192,223,214, 99,200, 32,217, 18,247,219, 33, 79,194,151, 97,199,215,203,103,101,105, 42,103, 29, 57,163, 41,236, 18, 66, + 22, 37,102, 98,163,173, 23,241,224, 96,223,222,187,143,228,222,119,116,251,108,244,237,209, 17, 84, 52, 3,148,135, 42,226, 37, +196,108,126, 2,125,187, 6,215,108, 19,205,112,238,249, 33, 70, 13,112,107,241,221, 7, 87, 85,185,234,211, 47, 55,182, 9,110, +219,150,152, 51,222, 2,204,213, 8, 10, 30,205,189, 58,111,170,255,210,247, 62, 89, 9,224,201,230,246,143,104, 79, 34,195,195, + 58,191,184,105,199,169, 96, 93,101,190,241,151,159, 94, 73, 37,148,154,189,189, 35,228,111,190,245,129,227,107,139,230,189, 16, +209,158,156, 78, 74,163,137,205,233, 16, 66, 36,157, 67,176,231,157,119,222,239, 54,116,248, 88,103,193, 88,192, 25, 42, 43,194, +215,111,252,234,141,136, 46,125, 84, 3,122, 6,202, 11,126,155, 65,244, 21,197, 48, 81, 71,229,189,189,135,186,234, 31,159,104, +254,106,243,182,231, 1,124,100,207, 57, 11,252, 31,181, 70, 76, 60, 28, 0,200, 96,239, 4, 66, 0, 20,248,223,133,216,163,211, +249,146,179,128,104,170,253, 76, 76,128,104, 6,173,247,243,174, 71, 55, 2,192, 12,123,245, 1, 64, 66,112,223,145, 35,103,253, +181,218,220,232, 85,171,222, 89, 20, 25, 74, 14,128, 96,203,149,116, 28,111,137, 41,100, 48, 24,255, 76,212,106,181,160,209,104, + 90,117,213,134,128,128,128,209, 57, 57, 57,251,111, 71, 67,173, 86,191, 4, 96,106,237,203,245, 26,141,230,253,219,237, 87,116, +116,116, 32,165,180, 13, 0, 16, 66,242,206,158, 61,107, 87,161,112,134,117,236, 53, 88, 14,160, 34,240,219, 67, 0,177, 47, 93, + 17, 0, 40,224, 0,194, 1,230, 74, 60,120,255, 48,120,123,249, 3,130, 14, 16,170, 0, 94, 15, 8, 53,143,194,130, 44,128,215, + 1, 5, 7,192, 83,122,203, 88,170, 85,204,101, 64,254,119,184,175, 95, 48,220, 93, 28, 48,231,255, 34,189,191,216,157,188,126, +253,238,171,195, 0, 76,178, 85,230,232,246, 57,216,250,253,254,236, 53, 95,126,155, 36,130,194,195, 89,217,233,241,241, 9, 65, +155,191, 63,122, 99,245, 6, 67, 18, 21, 41,220, 93,148,157,158,124, 32, 37,216,238, 62,214, 67, 16,133, 1,193, 29,122, 18,254, +250,123,144, 72, 74, 80, 89, 89,136, 27,105, 95,195,219,111,132,132, 23,197, 65,214,246,119,148, 98,225,156,151, 86, 72,117,149, + 90, 35,229,243, 69, 63,231, 66,185, 12,132, 19,117, 39,140, 85,121,165,149,115,255,247, 56,255,226,194,119, 22, 2,152,220,156, + 78,100, 40,158,255,240,189,213, 93,251,247,233,228,155,119,114, 14,169, 44,211,194, 76, 29,149, 15,220,211, 31, 30,109, 35, 69, +237,133, 15,137,210,127, 24, 60, 66,218, 35,251,242, 86,100, 93,250,129, 12,236, 51, 94,185,233, 27,249,227,104,194, 96,133,249, +147, 1, 35,238,235,179,163,125, 91,181, 63,165, 34, 68, 81, 4,165, 34,158,156, 52, 18,139, 62, 78,133,174,138,199,253,195,238, +234,239,229,198, 85, 47,127,113, 48, 40, 21,113, 67, 83,164,255,229, 84,210,208,212, 28,106,245,206,143, 0,159,116,239, 55,100, +192,165, 51,177, 17, 38,205, 62, 68,143, 91,158, 68,128,186,225, 70, 10, 12, 56, 31,179, 49, 2,216,104, 77,170,113,125, 66, 72, +231, 16, 8,215,127, 95,129,192,158,211,184,207, 55,254,236, 83, 86,148,243,228, 15,223,126,250,200,167, 95,124,190, 21, 45, 52, +109, 12, 6,227,159,135, 70,163,105,117,147,117,234,212, 41,205,237,152,172,232,232,232, 65, 0,222,211,104, 52, 0, 0,181, 90, +253, 94,223,190,125, 23, 3, 64, 35,179, 51,202, 40,165,147,207,158, 61,219,232,232,144,133, 23, 94,120, 65, 13, 32,228,220,185, +115,150, 99,132, 68, 71, 71,135, 52,214, 86,165, 82, 9,221,187,119,207, 92,185,114,165,166, 37,253,255, 47, 99,175,193, 74,202, + 59, 49,183,167,177, 88, 15, 0, 73,214, 26,211, 6,169,150, 6,179,176,226,235,213, 79,174,232, 18,238,129,242, 10, 35, 14,159, +200,172,141, 96,241, 16, 4,115,221,207, 17,253,188,113, 55, 63, 3, 31,109,191, 10, 94, 16,151, 55,167,217, 16,147, 40, 62,218, + 99,208,196,111, 69, 74, 21, 42,149,164,172, 67,144,151,239,139,143,119,151,204,249,191, 46,168, 50,240, 19, 35, 67,200, 47,137, + 25,244, 75,107,154,148, 82,244,237,217, 17,107,190,212, 37,253,120, 52,127, 4, 0,140, 25,236,253,115,223,174,109,131, 86,111, + 48, 36,253,116,188,120, 36, 0,140, 26,224,118,160, 79, 84,155, 96,177,193, 31,186,181,126, 90,232,222,201,177,239,184, 81, 3, + 93, 97, 46,134,160,203,128, 81, 16,145,155,171, 67,186, 70, 14, 55,241,230,218,169, 77,105,138, 34,186,181,105,227,175, 58,117, +232,229, 12, 95,151, 18,185,151,163, 32,151, 19,145, 74,204,148, 51, 26,147, 12, 30,234, 97, 50, 81, 68,183,198,246,173,175,233, +232,232,242,196,192, 33, 99,220,174,199, 76, 37,142, 65,163,224, 27, 26,136,140,184,175,145, 31,191, 15, 69,249, 89,196,141,150, + 64, 21,214, 30,163,198,255, 31,222,123,190, 55,202,203, 43, 65, 10,210,220, 20, 10,165,123, 83,154, 84,130,201, 31,190,251,182, +191, 84, 42, 1, 68, 30,160, 60, 64,205, 0, 53,163,162,178, 26, 70,163, 17, 14,114, 10, 39, 7, 10,212, 70, 9, 5,193,168,234, + 54,116,225,115, 0, 78, 55,166, 89,159,248,116,154,208, 37,148,156, 4,229, 35,168, 80, 5, 2,156, 76, 72,167,117,166, 39, 42, +148,116,233, 53,244,169,255, 17,224,147,230,206,189, 41,162,218,225,254,222, 17,206, 78,142,124, 18,178,143,205, 66,170,224, 64, +253,186, 78,197,255, 77,126, 94,245,249,250, 47,198, 18, 66,102,214,159,131,102,235,231,110, 15, 76,147,105,254, 91, 53,221,220, +220, 66,219,181,107,183,216,108, 54, 15,146,203,229,126, 38,147, 9,162, 40,230, 41, 20,138, 19,153,153,153,111,150,149,149,165, +255, 19,250, 89,159, 3, 7, 14,216,108,178,108,209,148,201,100,216,191,127,127,138,173, 38,171,161,166, 68, 34,217,178,115,231, + 78,124,251,237,183, 0,128,163, 71,143, 34, 44, 44,204,169,177,125,111,220,184,225,244,240,195, 15,111, 1, 16,212,156,230,181, +107,215, 66,223,126,251,109,236,220,185, 19, 0,176,121,243,102,132,135,135, 55,218,159,139, 23, 47,114,175,189,246, 90, 40,128, +155, 12,214,159,241, 25,221,105,212, 25,172,218, 53,118,173, 77,210, 75,107,227, 34,235, 9,179, 25, 0,210,236, 61, 88, 98, 42, +125,183,123,184,108,100,204, 15,159, 12,114, 80, 72,240,198,170, 23,111, 20, 20, 84,220, 37,229,106, 38, 12,242, 2, 36, 30,238, +138,216,229,179,186, 7,151,148, 25,240,227,241,156, 95, 19,210,168, 93,161,208,132, 84,122, 24, 64,221, 5, 63,170, 29, 9,127, +242,213,195,219,183,191, 59,178,219,188,201,221,176,231, 88,230, 60, 0, 95, 54,173, 80, 15,241,214,218,149,181,171,193,220,188, + 77,180,127,201,195,165, 75, 39, 72,247,108,223, 53,210, 73, 41, 93, 59,227,217,233,174,230,162, 68,148,149, 10,200, 43,212, 33, +171,192, 29,130, 99, 7, 36, 39,156, 22, 56,137,196,234,252, 51, 34, 65, 57, 53,235, 92, 60, 28, 29, 37,145,125,158,243, 47,139, +127,165, 92,201,153, 57,247, 30,111,187,104, 47,127,120,157,175,206,175, 36, 18,152,172,233,184,186,185,133, 85, 87,100,114,101, +165, 69,112,239, 26,137, 81, 15,140,197, 27,207,116, 70, 69,133, 14, 5, 69,167,104,199,182,110,196,112,254, 27,188,250, 68, 4, +138, 10,115, 97, 52, 3,146,114, 67,177,193,104,168,108, 74,147, 82,124, 62,247,197, 5,143,182, 13,244,113,178,204,101,163,162, +128,238, 81,237, 49,124, 72, 95, 28,142, 61,133,179,231,147, 33, 82,177,118,174,155,128,236,252, 82,173,193, 36,124,109,207,251, + 73, 69,190, 38, 18,218,128,218,121, 87,118, 71,153,186,118, 37, 42, 65,135,215,239,138,116,121,230,229, 39,218,186,184, 40, 8, + 12,142, 2, 12, 6, 51, 42,146, 62,134, 87, 96, 87,168, 28, 28, 72,207,158, 85, 82, 0,173,178,254, 33,131,113,167, 48, 97,194, + 4, 7,173, 86,123,108,204,152, 49,145,195,134, 13, 83, 13, 26, 52, 8, 58,157, 14, 7, 15, 30,132, 94,175,111, 27, 20, 20,212, +246,208,161, 67,227,251,246,237,155, 24, 20, 20, 52,248,187,239,190,179,107,142,108, 45,150,235, 85,171, 78, 14, 87, 40, 20,136, +141,141,109,213, 72,150, 66,161,192,153, 51,103,108, 54, 89,245,209,233,116,242, 54,109,218,192,203,203, 11,130, 32, 64,167,211, + 97,247,238,221, 40, 47, 47,135, 40,138,112,116,116,196,135, 7,202, 96,184,186, 19,235,215,190,141,178,178, 50,185, 53,205,194, +194, 66,210,169, 83, 39, 84, 87, 87,131,231,121, 24, 12, 6, 28, 57,114,164,238,181, 84, 42,197,178,157, 90, 84, 39,111,199,166, +207, 63, 68, 97, 97, 97,171,173, 14, 98, 13, 27,189,200,191, 2, 41,240,199, 9,253, 21, 39, 38, 8,252,162, 47,190,222, 30,187, +104,214, 36, 60,255,196,208,160, 55, 63,218, 53, 44, 49,141,110, 2,128,200,246,228,201,199, 71,119, 12,118,119,146, 97,233,103, +231, 0,208, 69,183,123,188,248, 76,154,220,165, 3,153,183,235, 88,214,177, 87,158,233,137,246, 65,174, 97, 29, 58, 16, 69,106, + 42,109,118,190, 15, 21, 69, 80,202,215, 77,106,175,221, 88, 59,167,231,143,109, 34,165, 0, 53,131,218,248, 63,222, 39, 74,249, +172,163, 76,242,172,147,139,123,240,220, 25,143, 59,142, 25,243,176,163,147,130,162, 40,113, 63,202,105, 23, 24,157,156, 64,245, +165, 72,191, 22, 47, 28, 56,126, 46, 71,233,229, 63,223,154,166, 40,224, 87,205,141, 43,227,218,117, 28,230, 94,112,238,213,252, +208,161,223,132, 72, 32, 72,116,177,227,243,157, 92, 34,229, 39, 47,198,243,162,128, 83,214,116, 42,202,203, 51,205, 38,248, 27, +204, 50,151,212, 51, 27,177,240,241, 46, 40, 45, 41,128,161,154, 71,169,142, 55,249,123,155,148,134,146,203,168, 54,242,168, 54, + 81,200, 84,106, 28,138,141, 47, 20,121,243,129,166, 52, 83, 53,244, 2, 0,231,250,219, 58,168, 73,247,151, 61, 28, 47, 64,168, + 66,214,117, 13, 54,125, 31,219,179,182, 93,203,161, 60, 40,255,199,119,180,101,242,123, 75, 38,183,119,110, 71,250, 56, 58,202, +214, 46, 93, 56, 38,114,112, 23, 65, 73, 12,185, 32, 0, 84, 14, 82, 84, 59, 8,112,115,104, 15,106,170,160,122,131,161, 52, 33, +254,239, 91, 34,136,193,248, 39, 18, 17, 17,209,198,205,205, 45,225,197, 23, 95,244, 28, 55,110, 92,157, 25,248,250,235,175,177, +122,245,106,188,241,198, 27, 48,155,205,248,226,139, 47, 84,223,127,255,125,159, 79, 62,249, 36,187,109,219,182, 93,178,178,178, +242,108,144, 39, 0,228,168,185,118, 73, 80, 99,174,132,165, 75,151,210, 55,222,120, 3,245,183, 81, 74,173,222, 84, 54,134, 66, +161,128, 66,161, 64, 82, 82, 82,171,152, 44,153, 76, 6,185, 92, 14,133, 66,129,171, 87,175,218,109,178,120,158,231,178,179,179, + 81, 94, 94,142,225, 99,199, 98,245,138, 21, 24, 52,104, 16,134, 13, 27, 6, 74, 41, 98, 98, 98,112,183, 71, 50, 60,199,222,131, + 43, 87,174,192,108, 54,219, 52, 50,149,157,157,141,162,162, 34,140, 28, 59, 22, 95,126,250, 41,122,245,234,133, 78,157, 58, 1, + 0,142, 29, 59,134,161, 1,153,112,238, 52, 12,201,201,201, 45, 60,115,251,249, 43,189,200, 95,193, 95, 94,166, 33, 62,149,254, + 30, 25, 74,246,253,223,152,232,251,199,222, 27,137, 47,183,255,242,118,100, 36,217, 14, 0, 94,110,202,183,158, 24,211, 30,137, +105, 37,136, 57,163,217,151,152, 78,127,111,141, 99,138, 2,188,189,220, 85,128, 68, 1,189, 81,224, 93, 93,109, 92, 35, 78, 52, +195,195, 89,217,105,204, 96,239,159, 65, 69,184, 59, 43, 35, 64, 5,184,187, 40, 59,141, 26,224,118, 64,164, 20,238, 78,242, 8, +218, 72,164,171, 49, 6,246,112, 56, 52,127,246,172,126, 99,198,254,159,163, 92,229, 5,177,234, 6,204,197,151, 80,148,126, 20, +213,142, 61, 80,144,157,129,237,123,126, 44, 75, 74,215,150,115,156,228,176,212,205,111,193,145, 35,233, 77, 70,135, 44, 24, 56, + 44,127, 99,241,162, 49,219,183,110,115,115, 84, 15,196,181, 61,163, 75, 21,156, 89,233, 27, 16,142, 42,222, 69,248, 96,195, 62, +119, 29,176,194,154,142, 94, 87,254,195,145,152,159, 39,117,244, 31,224,146, 17,191, 15,122,189, 17,213,102, 32,170,215, 16, 8, + 34, 85, 16, 9, 17, 93, 57,142,104,181,193, 24,101,114, 0, 0, 32, 0, 73, 68, 65, 84,197, 32,102, 81,123,226,124, 70,238,201, +179,105, 92,181,196,186,118,125,164,114,110,246,216, 97,221, 1,161, 10, 15, 12,143,194,170, 13, 49,179, 0, 60,101,143,198, 45, + 80, 51,168, 80, 5, 10, 12,232, 18, 74, 62,163,192,128,184, 3,171, 34,122,143,154, 7,216, 17,193,138, 10, 37,163,186, 70,168, + 55,174,122,123,145,167,167,111, 16, 7,161, 10,132, 47,167, 98,241,239,144,234,174,193, 53,112, 12, 4,183,254,248,252,211, 15, + 42, 69,145,110,111, 73,137, 10, 6,227, 78,198, 96, 48,252,176, 98,197, 10,207,251,239,175,201,118,175,172,172,196,169, 83,167, +176,126,253,122, 56, 57,253, 49,178, 69, 41,197,232,209,163, 65, 41,245, 92,178,100,201, 15, 0,250, 53,165,217,191,127,255,177, + 43, 87,174,188, 30, 29, 29,125, 13, 53, 53,142,228, 0, 56, 0,244,200,145, 35, 18, 0,232,211,167,143,112,230,204, 25, 17, 0, +157, 60,121,178,204,217,217, 57,172,178,178,242,184,189,253,183, 24, 44,133, 66,129,156,156,156,219, 54, 89, 50,153,172, 78, 79, + 46,151, 35, 39, 39,199, 46,147,197,243,188,244,167,159,126,194,249,243,231,177,180,103, 79,204,241,247,135,151,151, 23,142, 31, + 63, 14, 74, 41,156,156,156, 80, 92, 92,140,237,219,183, 99,200,144, 33,224,121,222,106, 4, 11, 0,118,239,222,141,184,184, 56, + 44,235,221, 27,179,156,156,224,238,238,142, 99,199,142, 1, 0,148, 74, 37,114,114,114,112,228,200, 17, 12, 30, 60,184,165,167, +254,159,199,102,131, 53,152, 16, 41, 9, 66, 27,179,169, 10,148,167, 0,129, 58, 50,146,200, 19, 19,237,191, 75,144, 0,175,174, +217,176,111,204,170, 69, 15,144,105,143,244, 84,191,249,201,209,153, 0,240,204,196,240, 0,149, 82,138, 53,219, 19,169, 4,120, +213, 94,221,198,136,140, 36,114,137, 4, 51,135,247,239, 4, 77,161, 17,105,215,203,126, 73, 76,167, 86,135,116, 68, 80,168, 58, + 47,196,227,227,174, 4,245,237, 26, 20, 68, 41, 95,155, 49,184, 18, 79, 62,144, 18, 28,221,197, 47,184,102, 78,145, 25,174,119, +127, 3,136,141, 14,137,215,209, 39, 74,249,236,203,243,230,245,123,240,177, 5,142,230,236, 93,168,206,252, 9, 16,244,208,235, + 8,202,249,142,200,189,158,141,165,171,182,221,168, 54, 75, 30, 61,151,104,176,203, 88, 38, 39,211,202,200,246,100,220,138,119, + 23, 31,126,103,233, 18,103,101, 78, 76,185, 76, 10,157,196,107,144,236,173,197,235,164, 21,101,198,135, 83,179,104,133, 53,157, +106, 9, 86,188,251,225, 71, 99,166, 62, 62, 46, 41, 60,104,176,151,144,151,230,165, 47, 43,203,255,230, 64, 92, 27,212,220, 57, + 18, 0, 72,205, 40, 66, 65,177,142, 23,120,243,113, 23, 19,222, 76,200,110, 62, 26, 88,159,246,126,196,103,220,152,110,143,249, +184, 43, 80,165, 43,129,175,135, 28, 35, 6,116,120,172,189, 31,121, 57, 77, 75,237,170, 49, 82, 31,203, 16, 97,236,250,123, 35, + 32,154, 34,168,104,134, 49,107,139,253, 58,192,188,121,147,218,186,121, 58, 25, 37, 68,208, 1, 50, 15, 64,225, 67, 36,142, 33, +224, 28,131,145,153,114,142,159,247,220,164,162,204,204,188,175,188, 41,110, 59,147,135,193,184,211,200,202,202,122,226,149, 87, + 94, 57,217,183,111, 95, 63,111,111,111, 68, 69, 69, 97,239,222,189,152, 63,255,143, 96,124,143, 30, 61, 0, 0, 69, 69, 69,120, +247,221,119,243, 52, 26,205, 19,205,105, 38, 36, 36, 36,109,217,178,101, 64,183,110,221,140,114,185,188, 4,181, 38, 43, 43, 43, + 75,170,211,233,136,209,104,164, 78, 78, 78,162, 82,169, 52, 79,152, 48,193,116,230,204,153, 48,157, 78,151,213,146,254, 91,204, + 80,239,222,189, 47,151,150,150,150, 17, 66,110,187,132,131,197, 92, 69, 68, 68,248, 24,141, 70, 1, 64,113, 75, 74, 56,240, 60, +143,222,189,123,227,200,175,231,112,224,215,203,168, 44, 72,195,228,135, 71, 32, 34, 34, 2, 7, 15, 30,108,105,247,106, 52,143, +156,196,177,115, 87,161,205, 74,196,227,255,247, 16, 58,117,234,132, 35, 71,108,174,144,196,104, 4, 41, 0, 88, 11,201,117,110, + 75,186,251, 69, 41, 54,191,250, 64,135, 72,105,212, 27, 32, 82, 71,236,218,184,183,255,162,119, 62, 75,234, 26, 64, 38, 95,182, + 33,219,171, 62,181, 19,147,183, 93, 76,140,120,236,129, 65, 65,248,242, 59,213,235, 0, 48,113,120, 40,206, 36, 22,224,116,124, +254,182,132, 22,214, 44,170, 79, 87, 63,162,130, 19,182,189,187,224,193,193,109, 3,219, 96,253,183, 39, 65, 40,126,176,117,255, +152, 77,143, 99,243, 15,199,110,172,222,120,115,198,224,198,221,113,215, 63,220,100, 72,162,160,112,119,148, 69, 60,245,192,221, + 86,179, 8, 29,100,146,105,163, 30,120,194,145,215, 30,132, 88,252, 29,100, 10, 57,170,116, 2,114,243,171, 81,165,114,196, 47, + 39,142, 87, 85,234,249,121,151, 82,248, 22, 69,237, 18,211,104, 90,143,112,114, 93, 87, 85,229,239,236,217, 65, 39, 33,160,149, + 70, 25,141, 75,204,209, 37,100,209,171,182,104,164,166, 82, 99,191, 64, 50,240,243, 77,223, 45,150,201, 20, 19, 57, 14,196,215, +221,201,231,179, 53,203,224,226,226, 12,202, 87,128, 86, 23, 98,220, 51,239, 20, 92,190,102, 10, 5,128,240,112,226, 60,168,187, +124,147, 84, 66,178,127, 57,111,124,205,218, 49, 8,135, 25,147, 31,232, 46, 19,205, 58,204, 94,178, 3,159,191,245, 0, 30, 31, +219, 89,246,211, 47,201, 51, 0,188,217,146,115, 7, 0,136, 53, 67,132,253,166,253,154, 68,128,147, 20, 24,112,110,223, 91, 17, +128,237, 35,143,189,122, 17,153, 84, 74, 58,119, 14, 48,202,132,236,237, 32, 14, 1,148,243, 30, 12, 56,133, 17,234, 28,133,143, +215, 44,174,252,114,253,250, 67, 34,193,210,164,140,230, 75, 94, 48, 24,255, 85, 40,165,105,238,238,238, 35, 71,143, 30, 29,115, +240,224, 65,207,168,168,154,229,230,226,226,226, 0,160,110, 40, 74,171,213,226,209, 71, 31, 45,204,205,205, 29, 73, 41,109,118, + 78,111, 69, 69, 69,250,174, 93,187,252,170,170,170,162, 95,123,237, 53,109,187,118,237, 42,204,102, 51,173,168,168, 0,207,243, +212,199,199, 71,214,171, 87, 47,210,165, 75,151,170,152,152, 24,175, 27, 55,110, 84, 0,200,108, 73,255,167, 78,157,138,239,191, +255, 30, 0,208, 26,117,177,228,114, 57, 70,143, 30, 29,112,234,212,169,156, 90,205, 22,215,197,162,148,226,210,165, 75, 56,145, + 34, 64,225,228,129,204,164,114, 28,249,113, 15, 38, 79,155, 14,158,111,249,108,133,139, 23, 47, 98,251,145,139,240, 11,232,128, +178,234, 75,216,189,123, 55,102,206,156,121, 91,154, 45,225, 78, 26, 30, 4,234, 69,176, 26, 59,161, 14, 29,136, 66,105,196,146, + 17,119, 5, 44,152, 48,180, 3,199,235, 53, 16, 69, 17, 28, 0,111, 23, 9, 54,124,249,121,232,119,187,246,199,118, 13,230, 62, +130, 81,124,245,178,150,234,109, 62,178, 4, 75, 86,126,253,219,196, 45,203,238,145,206,124, 36,194, 19, 0,228, 50, 9,214,108, + 75,224, 33,193,146,219, 57,169,126,129,196,161, 82,142,105,109, 66,220, 94, 95,244,220, 24,207,193,125,195,113, 60, 54, 30, 31, +109,141,253, 85,225,129,205,182,104, 80, 74,105,223,110,193, 88,189,177, 97,198,160,127,240,135,155, 12, 73, 7,127, 43, 31, 5, + 0,247,245,115, 58, 16,221,217, 51,216,218, 80,145, 32,210, 54, 10,149, 55, 12,153,251, 33, 85, 40,193,243, 38, 20,104,245,200, +200, 19,225,160,150,225,204,165,172,170,135, 30, 27,247, 83, 75,207,153, 16, 66, 6,244,112, 80, 47,121,235,131,192,170,170, 10, +190,188,180,144,151,202, 99,165, 42, 71,165, 45,243, 26,234,136,205,166,134,123,122,200,123,129,138,156,146,163,250, 69,243,166, + 56,229, 36, 31, 68, 71, 31, 13, 8, 40, 28,213, 99,224,226,196,201, 7,118,151, 95, 7,128, 16, 47, 55,197,187,111,206,119,155, +251,242,210, 19,214,180, 35, 35,137,188,107,120,155,185, 81, 29, 61,113,252,244, 21,252,122, 54, 43,225,215,223,147,187, 12,233, +163, 70,120,168,251,156,200, 72,178,162, 37, 17, 81, 0,117, 67,132,150, 44,194,168, 80,210, 37,250,254,215, 26,205, 30,108,138, +144,243, 16,147, 67, 41, 8,225, 64, 65, 0, 67, 14,248, 27, 91,192,133,206,162, 63,236,121,171,106,253,151,235,151, 37,102,216, +151,116,193, 96,252, 23, 41, 45, 45,189,164, 82,169, 70,116,239,222,253,235,217,179,103,187, 60,246,216, 99,234,169, 83,167, 74, + 0, 64,171,213,138,171, 87,175,214,172, 93,187,182,172,176,176,240, 41,147,201,116,217,154, 94,237,196,156, 83, 27, 54,108, 40, + 56,121,242,100,151,187,238,186, 75, 21, 29, 29, 45,250,250,250,202,245,122,189,112,227,198,141,170,216,216, 88, 33, 37, 37,197, +173,180,180, 52, 5, 64,106, 75,134,239,213,106, 53, 36, 18,201,155, 65, 65, 65,139,115,114,114,186,182,198, 28,172,142, 29, 59, +170, 1,164, 4, 4, 4,116,180,119,120,176, 33, 82,169, 20, 37, 37, 37,168,200, 78,133,190,168, 16,157, 56, 61,122,120,122,195, +197,197,229,182,204, 80, 89, 89, 25,164,213, 90,164, 93,202, 66,105, 94, 38, 34,219,246,134,147,147, 19,170,171,171, 91,172,217, + 82,238, 20,115, 5, 52, 51, 68,216, 37,136,204,244, 80, 96,245,148, 9,161,242,208,182,129, 48, 22,196,225, 66,106, 37, 94,251, +170, 79, 34, 39,119,169,126,254,201,225,189,134, 12,243,193, 61,131,251,144,118,109,221,231,172, 88,177,238,127, 93,130,201,252, +132,235,116,141, 45, 7, 78, 72,165,233,157, 67,201,250,163,103,115,102, 4,250, 84,129,130,226,232,185, 92, 92, 78, 45, 89,127, + 37,157, 54,154,186,219,100, 95, 59,146, 97, 82, 34,217, 65, 5,234,224,230,226, 84,209, 99, 80,132,247,176, 1,221, 36, 35,135, + 68, 67, 46, 5, 78,158,190,136,121,111,253,240,187,168,160, 99,226,226,172, 15, 15, 90,160, 34,127,211,132,246,154,109,141,236, +222, 72,102, 97, 67, 56, 9,201,211,105,207,181, 81,184, 68,194, 84,244, 11,180,218, 74, 36,164,153, 80,137, 32,148,100,103,131, + 82,225,250,146, 37,223,181,248, 63,196,219,219,219, 55, 52, 44,188,195,218, 47,119,194, 84, 93,134,180,196,141,168, 44,207,195, + 91,203,127,236, 16, 24, 24,120, 79,118,118,246,113, 91,181, 8, 72,120,204, 47,219,124, 65, 1, 78,170,196, 79, 95,124,139, 66, +169, 35,188,221,228, 16, 13,249,152,246,236,100,183,209, 99, 38,187, 1,192,245,212,139, 8,246,180,205, 87,155, 74, 49,126,226, + 83,157,220, 33,232,177,121,247, 69,131,132, 96,228,230, 31, 19, 82,135,244,114,119,152, 56,188,173,199,155,159,151, 62, 12, 96, + 91, 75,206,159,138,194, 77, 89,132, 45,201, 30,252,142, 82,161,115, 40, 73,221,118,164,192,121,194,232,158,142,114, 41, 33,212, +144, 3,145,200,201,154, 79, 54, 84, 40, 8,190,104, 73,223, 24,140,255, 34,122,189, 62,142, 16,210,245,165,151, 94,122,244,149, + 87, 94, 25,228,228,228, 20, 10, 0, 58,157, 46,221,108, 54,255, 10, 96, 27,165,212,230, 20,236, 90,195,148, 66, 8, 73, 79, 77, + 77,245,219,188,121,179, 59, 0,135,218, 95, 27, 0,148, 2,208,218,163,217, 16,139,153, 82,171,213,139, 91,170,209, 16,139,153, + 10, 8, 8,232,216,146,253, 57,142, 19, 36,146,154,149,125,148, 74, 37, 78,156, 56,129, 81, 3, 6,226,226,145, 44, 68,248, 5, + 97,200,228, 41,216,125,244, 40, 56,142,179,180,183,235, 58, 34,149, 74,113,242,228, 73, 60,114,255, 96,236,222,189, 27,237,123, +119,199,172, 89,179,240,243,207, 63, 67, 42,101,171,233,221, 14, 77,191,123, 20,111, 30,222,241,142, 28,162, 25, 59,191,121, 15, +135,207,234,141, 87,115,240,106,167,108,172,222,137, 10, 49,191,240,251, 25, 63, 29, 75,123,255,233,167,238, 87,221,123,207,112, +220, 59,104,136,180, 75,247,123, 94, 7, 80,103,176, 8, 33, 81,205,213,202, 16,204, 88,246,197,247, 73,211,119,236, 79, 38,224, + 43, 48,233,129,104, 42,152,177,172,185, 14, 55,166,233,166,114,222,113,242, 68,172, 7,132, 74,228,101, 28,117,104,227, 23, 10, + 80, 51,174, 93, 75,198,199, 27,118,139,199, 98,175,110, 49,114,152,157,154, 72,117,182,106,130,138,183, 24,167,154,140, 65,254, +166,140, 65, 74, 41,133,200,163, 97, 65,239,134,154, 6,179,248,197,150, 77, 95,126,240,204, 51, 83,157,138,170,115,144,124, 35, + 1, 6, 46, 0,156,170, 3, 18,206, 29,172,170, 50,139, 86, 75, 71, 52,247,126, 22, 22, 22,230,199,157, 43,198,142,175,151,195, +108,174, 70,126,110,141, 71,205,213,150,195,213, 53, 32,214, 30, 77, 19, 47,150,141, 31, 55, 77,238,232, 0,199,201, 19,199, 40, + 82, 53,213,232,217,201,165,230,124, 77,133, 72, 58,118, 2, 67,124,107, 38, 67,166, 38,113, 8,190, 75,109, 83, 63, 93, 92,228, +179, 71, 13, 12, 64,122, 86, 30, 78,196,229,108, 74,203,161,154,246, 1,100, 83,234,245,210, 25, 15, 14, 9,198,170, 45,137,179, +208,132,193,106, 74,179, 54, 91,112, 0,168, 25,148, 55,128, 2, 3,162, 66, 73, 23, 91, 50, 7, 27,211,148, 74,240,216,202, 29, +153,175,237, 60, 86,240,224,130,169, 3, 93,251,247, 27,165,128,104,166, 21,250,106,115, 98, 58, 45,111,137,230,237,194, 52,153, +230,191, 85,179,214,236,108,169,125,180,166,166, 6, 13,234, 50,221,142, 38,112,243,112,160, 70,163,225,212,106,181, 96,109,146, +187, 13,154,167,235, 61,223, 95, 27,189,106, 54,138,213,136,166,166,111,223,190,158, 99,199,142, 5,207,243, 72, 73, 73, 65, 86, + 86, 22,198, 62,253, 20, 60, 60, 60,112, 58, 49, 17, 41, 41, 41, 88,188,120, 49,120,158,199,153, 51,103,110,169,200,222, 80, 83, + 38,147,153,186,119,239, 46,127,232,161,135,192,243, 60,210,210,210,144,153,153,137, 89,179,102,193,205,205, 13,137,137,137, 72, + 75, 75,195,226,197,139, 81, 93, 93,141,244,244,244, 91, 70, 22,254,140,191,165, 59,141,166, 13, 22,129, 0,209,140,178,179, 75, +240,217, 62,152, 76, 60, 34, 18,110,208,140,122, 45,214,117, 11, 36,123, 47, 37, 36,165,199,157,190, 87,129,242,203, 0, 96,215, +157, 67,242, 13,154, 27,221, 73, 90, 1,190,194, 21, 5, 7,144,145, 83, 81,153,124,131,230,218,123, 18, 84, 20, 8, 4, 61, 80, +118, 14,187,247, 29,131,210,225, 2,206,158, 79, 18, 78,197, 37,239,144, 80, 44, 75,204,160,215,236,213, 4, 0,136, 60,220,156, + 21,183,100, 12,186, 59,202, 34,238,235,231,116,128, 82, 74, 93, 84,178,136,198,106, 99, 53,228, 76,124,245,151, 3,123, 56, 60, + 92, 81, 94,216,119,248,144,193, 78, 62,225, 19, 81,118, 45, 17, 9,231, 15, 87,157,187,156, 28,123, 38,190,218,182,218, 92, 77, + 16, 16, 16, 48,104,232,208, 78,152, 52,101, 17, 76,213,165, 72, 75,216,128,138,242, 60,156,248,205, 25, 73,215,203,251, 1, 56, +110,171,214,169,120,115, 23, 0, 24,208, 85,126,221, 85, 97,108,243,196, 35,247, 67, 41, 53, 64, 52, 87,128,152, 10,145, 90,108, + 42,123,120, 73,182, 0, 0, 42, 7, 34,117,146,150,185,218,162, 27,217,222, 43, 76, 37, 55, 99,243,158, 4,136,164,102,153, 37, +145, 96,221,230,189,169, 51,150, 61,223, 19,145,237, 61,186, 91, 6,224,109,237, 43, 5,254,119,238,199,165, 17,134,132,215, 65, + 69, 51, 78,190,239, 17, 49,240,165,146,255,161,133, 21,214, 47,167,210, 28, 0, 51, 58,183, 37,159,207,121,251,231,215,123, 71, + 37, 14,120,113,198,131,174, 32,108, 97,116, 6,131,241,215,163,215,235,167,191,252,242,203,159,115, 28,231, 3,128, 80, 74, 81, + 93, 93, 45, 93,191,126,189,140,231,121, 9,199,113,130,131,131, 3, 31, 23, 23,103, 22, 69,177,192,100, 50, 77,183,166,105, 52, + 26, 83, 63,254,248,227, 14,102,179,185, 46,227,176,186,186, 26, 91,182,108, 65,117,117, 53,148, 74, 37,156,157,157,145,150,150, + 6, 66,136, 73, 16,132,212, 63,245, 36,239, 80,154,187,104, 44,237, 63,126,201, 18, 80, 16, 16,188,209,192, 92, 1, 0, 46,101, + 83, 77,151, 32, 50,175, 75,143,123,106,230, 76, 17, 44,181,183, 3, 6, 65,120, 36,186, 87,248,118, 0,168, 22,133,199,237,221, + 31, 0,202, 13, 85, 19,123,244,233,183, 67,164, 84,202, 11,116,189, 68,130,239, 13,192,149,212,116,235,153,115, 77, 65, 69, 10, +231, 94,171, 49,229,129,212,154,140, 65,106, 6, 21,121,184,245,223,134,167, 30,184, 59, 56, 58,194, 61, 24,162, 25,148,154,225, + 49,244, 40,240,154,131, 85,205, 19, 23, 12,247,245,137, 82, 62,123,240,248,249,105,130, 72,219,112, 18,146,103, 48,139, 95,220, +174,185, 2,128,236,236,236,227,145,237,201,161, 75, 3,252,238,243,174, 45,179, 90, 88, 10, 20,150,225, 80,118,118,197,241,150, +104,150, 84,153, 31,124,229,253, 61, 63, 42,164,156, 20,160, 16,107, 23,188, 54,152,132, 98,139, 9,235, 22, 70,212, 47,173,231, +183,115, 28,201,178,166,119,250,114,238,170, 73, 47, 29,153,159,144, 82,178, 62, 35,187,230,206, 39, 35,155,198,119, 12, 32,175, +167,222,168,152, 31,159, 82,242,129,189,243, 38, 8,240, 73,244, 3, 75,110,217,102,143, 70, 99, 92,201,162, 23, 1,140,235, 18, + 66,134, 79,154,185,246, 69, 66,236,187, 91,102, 48, 24,255,110, 44, 81, 44,137, 68,210,242,228,155, 6, 88,162, 88, 0, 82,236, +216,231, 52,128,174,173,213, 7, 0,136,139,139, 43, 2, 80,212,154,154,140, 91, 33,127,102, 25,159,127,115,136,187, 91,123,178, +204,191,141,107, 79,203, 18, 56,117,195,130,181, 38,131, 82,122,211, 58,191,133, 69,213, 23, 46,165,209,215,155,208,148,220,102, + 23,197,166,250,217, 24, 97, 97, 97, 52, 37, 37,197,166,201,130,255,230,207,136,105, 50, 77,166,201, 52, 91,168,249,103,124, 39, +223,238,228,108,218,136,102,171,240,111,209,188,211, 96,195, 30, 77, 80,223, 44,181, 2,182, 21, 54,109, 37,174, 93,187,118,199, +100, 97, 48, 24, 12,198,159,192,159,241,157,204,138, 14, 51,110,226,118, 93, 60,131,193, 96, 48, 24, 12, 6,163, 1, 4, 64, 84, + 99,191,176, 39,244, 71, 8,105, 84,163, 57,172,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,206,211,180,166,125,167, 12, + 61,178, 57, 88, 76,147,105, 50, 77,166,201, 52,153, 38,211,252,219, 53,239, 52,216, 16, 33,131,193, 96, 48, 24, 12, 70, 43,195, + 12, 22,131,193, 96, 48, 24, 12, 70, 43,195, 12, 22,131,193, 96, 48, 24, 12, 70, 43,195, 12, 22,131,193, 96, 48, 24, 12, 70, 43, +195, 12, 22,131,193, 96, 48, 24, 12, 70, 43,243,167,102, 17, 50, 24, 12, 6,131,193, 96,252, 23,145, 0, 0, 33,132,214, 62,238, +249,155,251,195, 96, 48, 24, 12, 6,227, 63,200,157,230, 69,234,150,202,161,148, 18, 66, 8,197,237,175,167,196, 96, 48, 24, 12, + 6,131, 97, 55,119,146, 23,169,155,131, 85,123, 66,131,255,198,190, 48, 24, 12, 6,131,193,248, 15,115, 39,121,145,155, 34, 88, +127,103, 71, 24, 12, 6,131,193, 96,252,183,185,147,188, 8,203, 34,100, 48, 24, 12, 6,131,193,104,101, 88, 22, 33,131,193, 96, + 48, 24, 12, 70, 43,195, 34, 88, 12, 6,131,193, 96, 48, 24,173,204,159,106,176, 8, 33, 81, 76,147,105, 50, 77,166,201, 52,153, + 38,211,100,154,255, 53, 88, 4,139,193, 96, 48, 24, 12, 6,163,149, 97, 6,139,193, 96, 48, 24, 12, 6,163,149, 97, 6,139,193, + 96, 48, 24, 12, 6,163,149, 97, 6,139,193, 96, 48, 24, 12, 6,163,149, 97, 6,139,193, 96, 48, 24, 12, 6,163,149, 33, 0, 26, +205, 4,160,148,198,219, 44,210,130,108, 2,107,250, 76,147,105, 50, 77,166,201, 52,153, 38,211,188,243, 52,173,105,219,227, 63, +254,201,252,169,133, 70, 9, 33, 81,173,253, 70, 49, 77,166,201, 52,153, 38,211,100,154, 76,243,206,211,188,211, 96, 67,132, 12, + 6,131,193, 96, 48, 24,173,204,223,102,176, 8, 33, 18, 66,136,180,246, 33, 33,132,220,246, 2,143,127,134, 38,131,193,248,103, + 66, 26,240,119,247,135,193,248, 55,115,238,220, 57, 90, 88, 88, 72,253,253,253,147, 8, 33, 51,255,238,254,220, 9, 72, 91, 83, +172,147,175,227, 93,237,130,124,198, 28, 56,151,245,106,115,237, 8, 33,146,128,128,128, 21, 62, 62, 62, 51,245,122,189, 1, 0, +149, 72, 36,180,115,231,206, 32,132,192,242, 93, 41, 8, 66, 65, 82, 82,146, 77,227,191,173,169, 25, 30, 30,126, 78, 34,145, 4, +214,255,206,182,246, 92, 20,197,236,196,196,196,222,214,250,233,239,239, 63, 66, 34,145, 44,180,214, 78, 20,197, 21,185,185,185, + 7,155,107,211,181,107,215,243, 78, 78, 78,126, 18,137,164,201,139, 75,253, 33, 96,158,231,169, 94,175,215, 38, 36, 36,244,180, +118,124, 6,227,159, 12, 33,132, 4, 5, 5,245,240,243,243, 11,169,170,170, 18, 0,160, 75,151, 46,148,227,184,155,218,153, 76, + 38, 83, 82, 82,210,254,191,165,147, 12,198,191,136,195,135, 15, 99,218,180,105,184,124,249,114,167,253,251,247,127,170, 86,171, +255,151,155,155, 59,132, 82, 90,240,119,247,237,223, 74,171, 25,172,142,254,206,157,218,120,123,237,123,247,237,165, 0,208,164, +193, 34,132, 72,252,253,253,223, 29, 56,112,224,211, 91,183,110,117,218,181,107,151, 83, 72, 72, 8,228,114, 57, 56,142, 3,199, +113,144, 72, 36,224, 56, 14, 15, 62,248,160, 77,119,165, 13, 53, 99, 98, 98,156,194,195,195,235,204, 15,165,180,206,100,141, 30, + 61,218,170,166, 68, 34, 9, 60,127,254,188,175,131,131, 67,221,254,162, 40,222,244,160,148,214, 61, 4, 65,192,192,129, 3,109, +233, 42, 36, 18,201,194, 43, 87,174, 12,210,233,116, 55,105, 88,142, 97,121, 62,104,208, 32, 0,104,214, 96, 73, 36, 18,245,111, + 39, 98,124,137, 41, 29,224,139, 65, 57, 79, 64, 17, 10, 72,148,141,182, 47, 46, 46,198,144, 33, 67,184, 70,127,201, 96,252, 75, +176,152,171, 81,163, 70,181, 93,183,110,157,244,202,149, 43,210,206,157, 59, 67, 16,132,186,135, 40,138,118,253, 95, 50, 24,255, + 69,218,142, 95,255,169,200,155,106,163, 85,238, 0,190, 64, 69, 69, 5,166, 78,157,138, 61,123,246,116,190,235,174,187, 86, 0, +120,250,239,236,227,191,153, 86, 49, 88, 29, 2, 28, 3, 92,148, 78,135, 62,255,108, 45, 49, 87,104, 61,154,106, 71, 8,145,180, +105,211,230,173,129, 3, 7, 62,190,117,235, 86, 15, 66, 8, 98,102, 61, 3,119,147, 1,234,197,239,193,195,219, 7,198,133,211, +224, 34,240,232,250,203, 69,155,142,221,152,230,213,171, 87, 81, 92, 92, 12, 31, 31, 31,168, 84, 42, 40,149, 74,200,229,114, 40, + 20, 10, 91, 53,225,224,224,128,195,135, 15, 67, 42,149,214, 61, 56,142,107,244,181,159,159,159,109,111, 20,106, 34, 83, 17, 17, + 17,221,146,147,147, 93, 75, 74, 74,208,175, 95,191,114, 66,200, 37,203,239, 41,165,221, 46, 93,186,228,106,171, 30, 49,165,163, +242,250,103,160, 37,223, 3,238,227, 33,184, 78,130, 1,161, 55, 93,100, 44,166, 80, 16, 4,155,251,201, 96,252, 19, 33,132, 16, +127,127,255,110,247,221,119, 95,208,186,117,235,228, 0, 16, 31, 31,143,220,220, 92,248,250,250,194,193,193, 1, 50,153, 12, 28, +199, 65, 46,151,255,221,221,101, 48,254,209,136,188,105,102,247,222,119,215,189,222,116,248, 35, 84,187,245, 68,206, 27,111, 96, +245,234,213, 8, 11, 11,235,243, 55,118,239, 95,207,109, 27,172,168, 96, 55,119, 37,145, 29, 90,191,110,165, 2, 38,157,199,213, +179,191,161,203,168,233, 0,110, 78,181,172,157, 35, 33,241,243,243,123,110,219,182,109,174,150,232, 82, 56, 17,224, 14, 19,218, + 69, 70, 66,229,230, 14, 45,111, 2, 53,155,160,144,203,209,216,180, 10, 91, 52, 37, 18, 9,100, 50,217, 77, 15,133, 66, 1,133, + 66, 97, 85,179, 62, 22, 19,117,248,240, 97,152,205,102, 60,242,200, 35,141,154,173,198,104, 74, 51, 55, 55,247, 96, 64, 64,192, + 37, 74,233, 32, 81, 20, 65, 8,185,148,147,147,115,143,229,247,254,254,254, 35,186,119,239,190, 80, 20,197, 21,214, 52, 41,165, + 0, 95, 4, 90,188, 13, 46,253, 10, 81, 30,235, 13,226, 52, 12, 2,218, 34, 62, 37, 15, 49,231, 50, 81, 88, 92,137, 94,225,190, +184,175, 95,123,136,162,104,115, 63,111, 7,166,201, 52,255, 76, 77,127,127,255,208, 47,190,248, 66, 86,127,155, 92, 46,175,139, +130,215,143,134, 55, 28, 50,252, 43,251,201, 52,153,230, 63, 93, 83, 34,149,175,187,120,238,212, 76, 0, 40,191,242, 3,230, 60, +122, 55, 42, 42, 82, 48, 99,198,235,200,201,201,193,181,107,215,226,254,202,126,222,105,212,185, 3, 66, 8,165,148,218, 53, 81, + 52, 48,144, 56,184, 8,142,251, 62, 93,181,194,205,197, 89,229,115,238,208,110,100,101,229, 53,187,143, 94,175, 55,238,217,179, + 7,135,254,247, 52,194, 8, 15,143,197,239,195, 87,173, 70,217,211, 15,162,210,108, 66,135, 3,103,160,116,118,134,194,201,185, + 81, 51,212,148,230,209,163, 71,145,144,144, 0,169, 84, 10,103,103,103, 56, 57, 57, 65,169, 84,214, 25, 43,203, 23,176,173,154, +148, 82, 72,165, 82,196,199,199, 35, 43, 43, 11,238,238,238,248,237,183,223, 48,108,216,176,155,204, 21,199,113, 55,205,241,178, + 21,203,208, 98, 67,106,231, 93, 53, 59, 52,120, 19, 50,111,192,243,113, 84,252,174, 6, 60, 38,195, 76,221, 32, 82, 17, 23, 82, +138, 48,125,242, 24, 0,192,115,175,125,134, 97,125, 67,234,134, 32, 25,140,127, 51,122,189, 94,184,114,229,138,236,226,197,139, +224, 56, 14,174,174,174, 80,169, 84,144,203,229, 80, 42,149,117,198,138, 69,176, 24,140,230,201,250, 97,234,115,132,144,101,193, +193,193,199, 63, 91,190,188,227,208,161, 67, 1, 0, 49, 49, 49,216,240,232,163,120, 3,120,226, 35, 66,114,103, 83,186,232,175, +234, 83, 75,188,200, 63, 21, 41,240,199, 9,217,115, 98,132, 16,210,193,207,229,187,165,175, 60, 31, 18, 28,218,190,205,233,159, +190, 69,122,122, 14,180,218,146, 70,219,215, 30, 64, 36,132,136,161,161,161,112, 53, 27,224, 70,141,240,245, 87,195,197,211, 11, + 37,230,218,200,149,147, 19, 20, 78,206, 54,125, 57,214,215,140,140,140,132, 86,171,133, 92, 46,135,179,179, 51, 92, 92, 92,234, + 12,150,197, 92,217,250,133, 75, 8,129, 40,138,144, 74,165,184,116,233, 18, 6, 12, 24,128,160,160, 32,236,216,177, 3, 35, 70, +140,184, 37,138,213,146, 4, 38,203,156, 43, 11,255,207,222,153,135, 69, 85,182,127,252,251,156, 89, 25, 24,134,125,153, 5, 17, + 16, 16,200, 5,112, 95, 18,212, 20, 84, 52, 77, 83, 51,183,204, 82,115,121, 53,211, 50, 95, 51, 53, 45,203,204, 76,211, 22,181, +215, 52,247,220,151,220,210,212, 16, 92, 19, 69, 5,100,153,129, 97,223,134,217,207, 57,191, 63, 96, 8,145,129, 65, 91,253,205, +231,186,184, 6,206,242, 61,207, 57,204,156,249,158,251,185,159,251,177, 36,191,219,146,220,254, 16,130, 86, 48, 59,191, 8,202, +177, 15,140,172, 4,122, 86, 90,211, 37,200,226, 80,162, 26,169,153,133, 15,117, 23,218,177,243, 52, 16, 26, 26,138,252,252,124, +112, 56, 28, 56, 59, 59,195,201,201, 9,173, 91,183, 70,118,118,246, 67, 81, 44, 59,118,236, 52, 14,135,195, 89,177,111,223,190, + 96, 7, 7, 7, 44, 91,182, 12,206,206,206,184,180,100, 9,190,229,243, 33, 2,176,222,104,156, 15,224, 47, 49, 88,143,227, 69, +254,201, 60,118, 23,161, 66,161,248,164, 75,247,206,207, 6, 70,116,116,248,245,232, 30,220,187,155,137,194,194, 50,176,128,182, +145,221, 88, 66, 8,203,227,241,224,253,214,251,104,209,182, 45,170, 38,191,128, 18,147, 17, 65,135, 46, 65, 40, 22,227,246,115, + 81, 96, 13, 6,244, 76, 81,219,106, 92, 88, 66, 8, 11, 0,158,158,158,224,243,249,112,112,112,128,131,131, 67,109,238, 85,221, + 31, 91,205, 16,195, 48, 40, 47, 47, 71, 70, 70, 6, 38, 79,158, 12, 71, 71, 71, 16, 66,160, 86,171,225,239,239, 15, 14,135, 3, +165, 82,137, 83,167, 78, 33, 48, 48, 16, 2,129,160, 89,111,134, 58, 73,237,237,228,114,249, 89, 66, 72,187,164,164, 36, 73,135, + 14, 29,128,230, 68,176, 8, 31,122,248,131,134, 2, 12,251,123,174,149,201,108,126,104, 51,139,201,178, 99,231,223, 12,203,178, +108,155, 54,109, 88, 14,135, 3,111,111,239, 90, 51,197,227, 85,247, 24,250,248,248,160,188,188, 28, 28, 14,167,118,153, 29, 59, +118,172, 19, 18, 18, 18, 45,151,203, 49,107,214, 44,232,182,109, 67, 37,128, 65, 0,246, 25,141, 0, 0,103, 96,206,223,218,192, +127, 49,143,101,176, 20, 10,197, 27,237,219,183,159,244,213,230,173,226, 15, 23,190, 85, 94,146,114,131, 99,208, 26,157,244, 38, +147,225,126,110,209, 26,107,251,177, 44,203,134,133,133, 85, 63,117,186,186,193, 81,226, 2,125,189,200, 21,107, 48,128, 49, 26, +192,183,241,230,104,209,100, 89, 22, 34,145, 8, 2,129,160,193,200, 85,115, 34, 88, 0, 80, 90, 90,138, 29, 59,118,160, 83,167, + 78,112,116,116, 4,135,195, 65,187,118,237,144,146,146,130,160,160, 32, 0,192,190,125,251, 48,108,216, 48,220,187,119, 15,225, +225,225, 98,155,197,241,123, 23,225,241,227,199, 37, 44,203, 62,203,178, 44, 10, 10, 30,111, 52, 44, 77,211,208,104, 52, 56,126, +252, 56, 84, 42, 21,124,125,125, 81, 86,230, 12,137,172,218, 80,213, 29,253,104,199,206,211, 0, 77,211,184,124,249, 50,126,254, +249,103,156, 63,127, 30, 25, 25, 25,181,235, 36, 18, 9, 78,156, 56,129,216,216,216,191,177,133,118,236,252, 59,184,123,247,110, + 98,102,102,102,216,194,133, 11,177, 73, 46,135,179,179, 51,102, 47, 90,116,209,108, 54,119,107,122,111, 59,141,193, 5,128,230, +132,228, 20, 10,197, 80,169, 84,250,225,214,173, 91, 69, 42,149, 10,178,144,103, 36, 7,118,237,208,123,139,249,218,220,226,146, +113, 87,149,149,187,155,210,160, 40, 10,230, 37,179, 81,100, 54, 32,224,192, 5, 8,197, 98,164,246,239, 0,214, 96, 64,183,228, + 7, 16,138,197,224, 58,136,154,125, 50, 13, 69,172,234,254, 80,148,109,117, 85, 13, 6,131,107,223,190,125,209,167, 79, 31,188, +240,194, 11,181, 93,129,145,145,145,216,190,125, 59,134, 14, 29,138,107,215,174, 65, 38,147,161,117,235,214,104,221,186, 53, 78, +159, 62,221,172,182, 90, 34, 88,253,251,247, 47, 39,132, 92,103, 89,182, 93, 98, 98,162,205,163, 7, 45, 26, 64,181,129, 58,126, +252, 56, 6, 14, 28,136,160,160, 32, 92,185,114, 5, 39,222, 95, 9,174,216, 19,160,188,193, 50,108,109,100,203,158,131,101,231, +105,128,166,105, 80, 20,101,245, 51,109, 45,193,221,142, 29, 59, 15, 67,211,244,252, 33, 67,134,116, 92,182,108, 89,248,236,217, +179, 1, 0, 50,153,172,171, 76, 38,187,245, 87,215,193,122,154,186, 7,129, 58, 17,172,166, 78, 44, 38, 38,230, 43,147,201,244, +188,147,147,147,219,164, 73,147,140,133,133,133,216,187,119, 47,190,253,246,219, 42,141,137,147, 84, 90,100, 30,155,166,170,204, +105,234,128,132, 16, 80, 20, 5,190,201, 4,214,252,123,228,138,209,235,107, 35, 89, 60,145, 99,179, 78,130, 16, 2,150,101, 27, + 52, 85,150, 72, 86,115,110,182, 66,161,176,244,252,249,243,222, 57, 57, 57, 15, 37,180, 7, 4, 4, 0, 0, 18, 19, 19,113,233, +210, 37,140, 26, 53, 10, 92, 46, 23,124, 62, 31,215,175, 95,175,104, 78,155, 45,134,199, 50,138, 80, 42,149,246,239,220,185,115, +131,163, 7,109,209,202,202,202, 66, 80, 80, 16,244,122, 61, 92, 93, 93, 81,148,155,129,172,140,116, 84,233, 83, 17,232,235,128, +252,252,124, 8,133, 13,215,199,178, 99,231,223, 72,223,190,125,209,191,127,255,218,110, 66, 79, 79, 79, 24,141, 70,152,205,102, +187,185,178, 99,199, 6,252,135,125,189, 78,145,240,197, 20, 0,152,243,217, 73, 44, 88,242, 41,198,188,208, 31, 19, 38, 76,248, +219,234, 96, 61, 77, 38,235,161, 46,194, 70,204,213,120, 55, 55,183,209, 19, 39, 78, 20, 37, 38, 38, 98,201,146, 37,220, 19, 39, + 78, 24, 47, 95,190,108,166,105,122,142, 82,169,220,208,156,131, 82, 20,133,192,173,135, 32,243,245,197,221,184,142, 15, 69,174, +206,182, 83,128,209,235,241, 92,122, 89,179, 79,134,199,227, 61,100,172, 44,230,202, 90, 41,133,198,176, 60, 1,215,175,123,245, +250,235,175,227,171,175,190, 66,183,110,221, 16, 28, 28, 12, 46,151, 11,138,162, 30,107, 20, 97,221, 46,187,102,143, 30,172, 3, + 77,211,104,209,162, 5,110,220,184, 1, 23, 23, 23,124,247,221,119,240, 83,200, 49,182, 95, 0, 12, 6, 3, 76, 38, 19, 52, 26, +141, 37,130,245,175,127,211,218,177, 67,211,244, 67,163, 5, 45,134,202,110,174,236,216,177,157,135,234, 96,117,232,134, 95,246, +172,196,246,212, 22, 80, 46, 89,242,183,214,193,122, 90,190,167,154,236, 51,235,220,185,179,115,105,105,233,103,227,198,141, 19, +105, 52, 26, 20, 22, 22,162,168,168, 8,191,254,250,235, 9,131,193,240, 76, 99,230,138, 16,242,200,148, 52,132, 16,112, 56, 28, +184,123,121, 67, 40,118, 6,107, 48,212, 70,174,248,142, 78, 96,244,122, 48, 70, 3, 96,165, 43,203,154, 38, 33,228,145,168,149, +173,230,170,190,166, 37, 34,214, 80, 81, 81, 63, 63, 63,124,240,193, 7, 24, 60,120,240, 67,101, 26,108,105, 39, 80, 61, 90,144, +101,217,118, 0,106,147,220,165, 82,105,255, 38, 27,217,136, 38,195, 48,232,213,171, 23, 78,156, 56,129, 5, 11, 22, 32, 35, 35, + 3,241,241,241, 32,132,192,197,197, 5,190,190,190,112,115,115,131,131,131, 3, 44, 3, 2,154,210,124, 18,236,154,118,205,191, + 66,179,174,185,226,241,120,208,106,181, 54,153,171,167,225,220,237,154,118,205, 63, 66,179,166, 14, 22,174, 37, 93,192,217,205, +179, 49,109, 80, 0,134,182,188,135,133, 11,155,174,131,245,103,180,243,105,163, 73,247, 81, 85, 85,181, 36, 52, 52, 84,144,146, +146,130,251,247,239, 35, 53, 53, 21, 52, 77,223,203,201,201, 25,244,184, 7,165, 40, 10, 46, 46, 46, 16, 8, 4,232,122, 67, 9, + 1,159, 15,129, 83,117,142,248,115,233,101, 0,203,130, 18, 52,175, 59,139,162,168, 71,106, 94, 61,201, 40, 34,154,166,107, 43, +180, 91, 12,156,229,199,146,251,241, 56,145, 43,138,162,230, 95,188,120, 81,146,153,153, 9,150,101,177,103,207, 30,201, 11, 47, +188, 48, 31,143, 17,189, 98, 89, 22, 69, 69, 69, 96, 24, 6, 60, 30, 15,189,123,247, 70, 84, 84, 20, 42, 43, 43, 65,211,116,109, +247, 37,159,207,183,143, 34,180,243,212, 81,215, 92,217,115,174,236,216,105, 62,153,123, 38, 77, 5, 48,149, 16, 50,106,209,162, + 69,219,166, 78,157, 10,134, 97,112,230,204, 25,124, 49,111, 30,222,163,233,177,107, 8,169,154,193,178, 83,255,238,182,254, 27, +177,106,176, 58,117,234,212, 82,163,209,124,103, 50,153, 34, 25,134, 17,156, 61,123, 22, 58,157, 14, 41, 41, 41, 90,134, 97,118, + 61,193, 49, 51,227,227,227, 41,139, 49,105,204,160,208, 52,109,107,114, 93,102,223,190,125,255, 48, 77,134, 97,114,234,206, 97, +102, 77,183,238,223,102,179,185,201,252,179, 26,237, 21, 93,187,118,125,100,153, 45,251, 54,160,149,222,167, 79, 31, 99,221,101, +117,147,216, 27, 74,104,167,105,218,166,118,218,177,243, 79,133, 16, 82, 89,255, 51,100, 13,150,101,117,127,114,115,236,216,249, +215, 35,228,243,199, 78,155, 54, 13,255,251,223,255,176,119,245,106,244,207,201,193,118, 62, 31, 34, 62, 31,235,141,198, 41, 0, +236, 6,235, 49,176,106,176, 42, 42, 42, 62, 40, 46, 46,238, 82, 94, 94,110, 78, 79, 79,215, 18, 66,204,132, 16, 45,195, 48,239, + 51, 12,243,229,227, 30,240,214,173, 91,182,221, 25,255, 70,205, 91,183,110,117,248, 35,245,234,242, 36,185, 86,245,185,117,235, +150,125, 24,173,157,255,119,220,184,113,227,212,223,221, 6, 59,118,158, 38,174,221,184,209, 31, 0,226,227,227,161,157, 83, 93, +246,106,203,239,117,176,214,255,125, 45,123,136,142, 0,188,106,126, 47, 4,112, 7, 64, 52, 0, 17, 0, 61,128, 74, 0,158,117, +182, 47,170, 89,103, 89,255, 51, 0,211, 95,213, 88,160,145, 28,172, 59,119,238,140, 42, 40, 40,224, 26, 12, 6, 33, 77,211,142, +102,179, 89, 98, 50,153,124,105,154, 94,207,218,199,250,219,177, 99,199,142, 29, 59, 79, 5,161,161,161,196,211,211,147,132,134, +134,146,119, 89,246,161,159,127, 80,247,160, 23, 33,228, 32, 33,228,224,219,111,191, 29, 11,160,219,219,111,191,221,169,230,239, + 14, 0, 60, 45,235, 9, 33, 7, 1,120,212, 91,223,254,175,110,176,109,133,161,236,216,177, 99,199,142, 29, 59,118,254,102, 88, +150, 29,180, 98,197,138, 15, 0,112, 86,172, 88,241, 65,157,191,193,178,236,160,186,175,245,214,123, 89, 87,253,115, 32, 0, 26, + 28, 9,208,156,153,178, 31,103, 52, 65, 83,250,118, 77,187,166, 93,211,174,105,215,180,107,218, 53,159, 62,205,166,180,173,236, + 63,144, 16,114,144,101,217, 65,117, 95,235,236, 51,168, 70,243, 96,221,223,235,173, 63,212,156,243,120, 98, 88,150,253,211,126, + 0,180,177,107,218, 53,237,154,118, 77,187,166, 93,211,174,105,215,124,194,159,129,213, 38,136, 87,248, 0, 0, 32, 0, 73, 68, + 65, 84,150,197,250,171,181,223,235, 44,251, 43,219,219, 72,153,134, 93,187, 56,202,112, 72, 4, 34, 71, 62, 0, 24,180, 85, 70, +121, 10,202, 49,124, 56,221, 92, 19,103,199, 14, 33,196, 7, 0, 88,150, 85,255,145,219,218,177, 99,199,142,157,255, 63, 16, 66, + 14,206,159, 63,255,157,191,187, 29,182,208,176,193,218,181,139, 83,216,193,209,147,171, 47, 9,165,205,198, 48, 0,224, 82,236, +237,194, 14,110,169,158,187,118, 21,254,209, 38, 43, 62, 62,254, 29,150,101,125,120, 60,222, 33, 95, 95,223, 51, 27, 54,108,248, + 75, 51,253,255, 42,108, 53, 14, 79, 98, 48,158,208,156, 52, 89,212, 43, 52, 52,212, 73, 36, 18, 13,167,105, 58,136, 97, 24, 16, + 66,238, 19, 66,118,222,184,113, 67, 11,160,193,193, 15,132,144,229,132,224,173,154,223, 63, 98, 89,246,237, 70,218,111,243,182, +117,105,209,162, 69,128,131,131,195,120, 66, 72, 56, 0,176, 44,155,162,211,233, 54,103,101,101,101, 52,181,239,211,134, 76, 38, + 19,177, 44,251, 60,143,199, 27,231,238,238,222,169,160,160,224, 61,165, 82,249,233,227,104, 17, 66,184, 0,230,184,186,186,142, +114,117,117, 13, 44, 46, 46, 78, 43, 47, 47,223, 1,224, 19,150,101,155,252,156, 46,121, 67,222,229,217, 1,189, 22,254,124,248, +236,146,133,107,149,151,234,175, 95,252,166,204,163,119,159,238, 11,143, 28,186,240,254, 7,107,149,197,205,108, 27,133,223,243, + 72, 25, 84, 63,165,254, 99, 7,224,200,100,178, 72, 0,243,104,154,230, 81, 20,245,105,110,110,238,249,191,187, 77, 77, 17, 22, + 22,246,150, 64, 32,152, 66, 81, 84,154, 90,173,158,168, 82,169,254,144, 50, 47,132, 16,202,223,223,223, 57, 51, 51,179,130,101, + 89,123,129, 62, 27,233,218,181,171,218,104, 52,122, 55,182, 13,159,207,207,191,120,241,162,207, 95,213,166,191,144, 66,182,166, +235, 15, 64, 62, 0, 78,205,223,134,154, 87,117,157,101,106, 43,235,255, 82, 26, 52, 88,202,112, 72,184,250,146,208, 34,245,173, +145, 5,185, 87, 95, 4, 0, 47,105,228, 14, 15,159,136, 31,148,225, 2, 99,199,176, 97, 98,158, 35,119, 29,135,195,139,212, 25, +244,158, 60, 46,175,208,104, 54, 93,165, 12,236,212,220,219,123,178,108, 57,112, 66, 66, 66, 40, 0,151,168,168,168,203, 6,131, +161,211,167,159,126, 42,221,189,123,119,187,228,228,228,209,131, 7, 15, 62,192,178,236,177, 3, 7, 14,104,155,115, 50, 36, 38, +134,235, 93,234, 62,150,195,229, 38, 0,104,199,178, 0, 8,231, 58, 99, 50, 30,202,119, 43,218,204,158, 57, 99,110,142, 94, 93, +186, 70,123,132, 18,198, 56,151,199, 97,123,154,104,114,142,165,248, 43, 47, 38, 23,165,218,220, 54, 27,141,195,227, 26,140,250, +251,114, 56,156,207,105,154,158,101,235,190,182, 16, 26, 26,234, 36,145, 72,222, 93,191,126,189, 36, 60, 60,156, 0, 64,114,114, +178,235,244,233,211, 67,218,182,109,187,228,198,141, 27, 85, 13,180,201,135, 16,188,197, 48, 44, 5, 0, 20, 69,230,249,248,248, +184,115,185,220, 71,254,183,102,179, 89, 68, 8, 38, 49, 76,245, 52, 9, 20, 69,222, 34,132,124,214,148, 89, 12, 10, 10,122, 62, + 50,170,227,140,255,204,157,231,227,237,225,233,108,166,205, 70,165, 50, 87,182,250,211, 15,187, 4, 5, 5,173, 75, 75, 75,219, +215,220,115, 37,132, 16,133, 66, 49,146,199,227, 13, 2, 16, 94,179, 56,197,100, 50, 29,204,201,201,249,193,214, 47,242,246,237, +219,255, 76, 81, 84,203,230, 28,155,166,233,172,235,215,175,247,104,110,155, 1, 64, 46,151,143,144,203,229,223,118,233,210,197, + 49, 50, 50, 18,124, 62, 31, 31,125,244,209, 28, 0,141, 26, 44,139,145,114,116,116, 28,233,228,228, 20, 84, 89, 89,121, 95,171, +213,238, 22, 8, 4,125, 63,251,236, 51,191,238,221,187, 59,171,213,106,194,225,112,124, 14, 28, 56, 48,246,243,207, 63,239, 79, + 8,233,195,178,108,163,159,169,146, 52,102,161,144, 23,214,179,228,254,233,133, 0,226,235,175, 55,235, 28,198,113,120,126,131, + 56,236,149,108, 0,159,216,122,158,132, 16, 74,161, 80,124,230,227,227, 51, 65,171,213,234, 8, 33, 44, 33,132,109,219,182,173, +101, 61, 0,192, 96, 48,148,220,185,115,167,117, 99, 90, 1, 93,221,147, 56, 20, 71, 97,109, 61,205,208, 57, 25, 23,139,159,184, +116, 11,203,178,179,174, 93,187, 54,156,203,229,146,246,237,219, 59, 17, 66,250,219,106, 46,100, 50, 89, 40, 33,100, 1,203,178, +151,115,115,115,215,177, 44, 75,203,229,242, 88,150,101,107,239, 21, 74,165,242, 52, 0,200,229,242,117,193,193,193,131,239,221, +187,183, 94,169, 84, 46,125,220,246,134,132,132, 76,157, 57,115,230,162, 41, 83,166,136,138,138,138,252,251,245,235,247, 61,128, +158, 77,238,216, 8,209,209,209,188,188,188,188, 57,237,218,181,155,222,177, 99, 71,233,173, 91,183,242,100, 50,217, 26, 95, 95, +223, 79,146,147,147,155, 52,236,237,218,181,147,113,185,220, 9, 0,198,162,250, 11,116, 59,128,205, 87,174, 92, 73,123,146,118, +253, 91, 48, 26,141,222, 63, 45, 93, 8,194,225,192,161,103, 95, 48, 12,131,194,149,139, 96, 46, 46,132,231,210, 53, 48,155,205, +232,219,183,111,163, 6,236, 95, 76,226,223,221,128,230,210,160,193, 18,136, 28,249,180,217, 24, 86,144,123,245,197, 78,113,107, + 92, 0, 32,241,232,140, 23, 61,228,207,220, 20,112, 29, 83,133, 18,135, 61,195, 18,250, 70, 14, 31,212,139, 40,164,222,200,201, +205,247,249,102,251,177,184,131,199, 78,239, 65,117, 93,138, 38, 41, 47, 47, 95,230,239,239,239,117,242,228,201, 7, 2,129, 64, +228,224,224, 64, 70,140, 24, 33, 26, 61,122,116,196,169, 83,167,130,142, 30, 61, 58,124,200,144, 33, 71,249,124,254,161,157, 59, +119,150, 52,165,231,211,118,104,132, 47,215,119,215,144,231,227, 91, 14,124,206, 91,224,239,235, 5,134,113,192,157,116, 99,139, + 19,231,174,196, 29, 62,122,124,174,119,196,208, 17,249,183,246,222,176,245,226,180,105,227,226, 42,162,216,217, 34, 1, 59, 42, +174,103, 68, 64, 66,124, 55, 18,216, 42, 16,169, 41,169, 65,167,207, 94,158, 16,219,201, 57, 67,107, 32,219,181, 12, 89,117,243, +102, 89,169, 53,157,134, 76, 70,159, 62,125,162, 68, 34,145,161,238,118, 90,173, 86, 64, 8,250, 52,215, 96,212, 61,134,193,160, +167,120, 60, 1, 56, 28,106,102,199,142, 29,187,170,213,234,147, 58,157,110,109, 97, 97, 97,174,173,231,109, 13,145, 72, 52,252, +203, 47,191,148,132,133,133,145,170,170, 42,152, 76, 38,180,104,209,130,122,247,221,119, 93,150, 45, 91, 54, 2,192, 38, 27,218, +137,111,190,249, 38,220,199,199,199, 88,127,157, 90,173,230, 39, 36, 52,111,130, 0, 63, 63,191,192,232,142,157,103,108,222,180, +169,115, 89,113,177,238,235, 85,235,175,232,185,194, 42,255,240, 80,254,194, 69, 75, 93,222,255,239,219,175,249,249,249,221,204, +206,206, 78,183, 85, 83, 42,149,182,104,217,178,229,158,119,222,121,167, 77,143, 30, 61,120,222,222,222, 80,171,213,184,115,231, + 78,155, 95,126,249,229,249,125,251,246,205,145, 74,165,195,114,115,115,155,124,152, 96, 89, 54,228,199,143, 62,240, 22,122,120, +130, 49,153,224,214, 54,178,118,157,234,212, 49, 48, 38, 19, 24,147, 9,126, 3,159,183,108,143,216,216,216,199, 42, 73,174, 80, + 40,100,161,161,161,255,155, 63,127, 62, 95,175,215,227,234,213,171,184,120,241, 34,147,159,159,223,104, 33, 91, 66, 8,151, 16, +114,124,209,162, 69,138, 30, 61,122, 56, 23, 22, 22,130,166,105,207,125,251,246, 77,141,138,138,146, 40, 20, 10,193,150, 45, 91, + 44, 51, 4,184, 7, 5, 5,185,143, 30, 61,218,240,221,119,223,205, 1,240, 97, 67,154, 75,222,144,119, 41,189,207, 44,204,227, + 6,197,181,238, 48, 30,121,220, 99,113,179,251, 75,143,184, 6, 81,181,145,172,248, 86,173,156, 3,195, 28,231,137, 37,109,220, +203,148, 39,230,197,183,106,245,213,145,251,247,155,156, 52,157, 16, 66,201,229,242,207, 6, 12, 24,240,210,250,245,235, 29, 83, + 82, 82, 28,195,195,195,193, 48, 12,204,102, 51,104,154,182,204,187,137,186, 5,131,173,193,161, 56,138, 95,246,252,230, 45, 18, +137,106, 39, 97,183,188,106, 52, 26,244, 31,215,165, 73, 13, 91, 96, 24, 70, 96,241,229,102,179,217, 1, 0, 15,128,161,209,157, +126,103,241,133, 11, 23, 70, 28, 57,114,100,204,210,165, 75, 67, 0,188,193, 48,204,194,148,148,148, 94, 0, 16, 30, 30, 46, 0, +112, 90, 38,147, 77,156, 50,101,202,148,105,211,166, 97,220,184,113, 11, 9, 33,203, 30, 55,170, 39, 16, 8,254,251,250,235,175, +139, 76, 38, 19, 68, 34, 17,140, 70, 99,171,199,209,177, 16, 17, 17,193,175,170,170,218,189,120,241,226, 65, 67,134, 12, 1,151, +203, 5,195, 48,190, 63,255,252,243,242, 55,223,124,179, 91,116,116,244, 80,107, 38, 43, 58, 58, 58, 18,192,251,193,193,193,253, +199,141, 27,199,233,222,189, 59, 42, 43, 43,113,252,248,241, 5,123,246,236, 89, 16, 29, 29,125, 1,192,194,228,228,228, 51, 79, +210,198,122,199,204, 4,208,162,230,207,172,228,228,100,255, 63, 74,251, 73,224,136,157,113,103, 88, 44,130, 82,138, 0, 0,121, +235, 86, 2, 0, 36,255,253,248,239,108,150,157, 6,104,254, 44,200, 0,170,170,170,162,222,158, 49, 22, 20, 85,253,148, 24, 28, +216, 2,203,223,153, 76,126, 60,120, 44,170,177,253,186,118,237,186,138,166,233, 16,119,119,247,185, 58,157,206, 97,245,234,213, + 14, 74,165, 50,108,247,238,221,236,181,107,215,192,231,243,225,226,226,130,222,189,123, 11,227,226,226, 90, 93,184,112,161,197, +158, 61,123,134, 12, 28, 56,112,243,161, 67,135, 14, 88,211,245,108, 59, 56,196,199,203,247,236,199, 75, 95,117,111, 19, 24, 4, +131,201,132,156,124, 37, 88, 8,224,235,237,132, 49,207,183,231,119,239,192, 15,254,228,139,147,103,124,218, 12,121, 86,125,243, +199,223,154, 58,199,158,209, 78,137, 67,123,181,138, 30,220,191, 27, 21, 28, 30, 1,190,208,177,118, 93,219,168, 40,180,141,138, + 34,147, 39, 87, 4, 94,187,114,237,221,163, 39,127,125,167,103,180, 83,242,185,100, 77, 99, 19, 99,214,118,191, 17, 66, 48,115, +230, 76, 72,165,210,135, 54,200,205,205,197,153, 51,167,155,106, 90, 99, 60,212,197,247,222,123,239, 9, 52, 26,205,115, 95,127, +253,117,172, 76, 38,251, 64,165, 82, 89,189,134,182, 96, 52, 26, 91,133,133,133,145,202,202, 74, 24, 12, 6, 60,120,240, 0, 5, + 5, 5,240,242,242, 34,102,179,185,193,155, 47,203,178,106, 66,200, 71, 20, 69,230, 17, 66, 32, 16, 8, 51, 94,123,237,181,164, +154,117, 65, 7, 14, 28,112, 76, 72, 72,168, 34,132,164, 1,128, 64, 32,244,230,112,168,128,234, 36, 65,124,212,148,185,116,116, +116,124,101,214,127,222,244, 42, 43, 46,209,154, 42, 42,140, 98,134, 54, 75, 28,120,164,188,160,168, 52, 35, 91, 82,245,202,148, + 25,220,255,206,159,253, 10, 0,155,250,236,165, 82,105,139,176,176,176,196,175,190,250,202,219,195,195, 3,165,165,165, 40, 42, + 42, 66, 98, 98, 34, 24,134, 65, 92, 92,156, 48,170, 93,187,168, 79, 86,173,186, 40,149, 74,187,218, 98,178,132, 30,158,216,221, +171,250,163, 49, 34,173,250,166, 72, 8,193,209, 81, 9,181,219,140,206,172,158,220,188,102,190, 72, 91,154,250, 8, 44,203,118, +237,222,189, 59, 31, 0,230,204,153, 83,174,209,104,150, 19, 66,190, 87,169, 84,202, 38,118,157,243,238,187,239,202, 3, 3, 3, +253,191,255,254,123, 84, 86, 86, 2,128,119, 96, 96, 32, 66, 66, 66,232,179,103,207, 34, 52, 52, 20,206,206,206, 56,123,246, 44, + 46, 93,186,132,200,200, 72,103, 62,159,255, 34,172, 24,172,103, 7,244, 90, 40,228,133,245,108,221, 97, 60,196, 18, 41,190,218, +246, 3,238, 36,109,238,169, 55,221, 94,248,206, 27,242,151, 57,172,112,188, 60, 68, 60, 63,160, 67,140, 71,240, 51, 67,208, 50, +250,170,167,158,254, 57,125,225,180,160, 21, 92, 7,221,150, 69, 31,171,138, 26,210, 37,132, 80,190,190,190, 43,227,227,227, 71, +172, 95,191,222, 21, 0,110,220,184,129,188,188, 60,120,121,121,193,193,193, 1, 60, 30, 15, 92, 46,183, 89, 83,101,137, 68, 34, +228,230,230,194, 88, 83, 92,145,166,105, 84, 84, 84,192,215,215, 23, 0,176,120, 49,161, 22, 45,178, 45,218, 36,149, 74,123, 68, + 69, 69,109, 85, 40, 20,126,117,151,199,199,199, 99,242,228,201,208,104, 52,136,140,140,236,238,227,227,163,127,245,213, 87,193, + 48, 12,212,106,117,229,141, 27, 55,158, 83, 42,149,191, 90, 57,111,109, 94, 94, 30,166, 76,153,130,172,172,172,105, 50,153, 44, +147,162, 40, 7,129, 64, 96, 89, 47,144,201,100,161,161,161,161,159,189,250,234,171,120,240,224, 1, 82, 83, 83, 19,159,164,203, + 84, 40, 20,106,104,154,246, 54,155,205,208,106,181,136,139,139,115, 8, 11, 11, 83,243,120,188,219,165,165,165, 99,178,179,179, +109,122,104, 35,132,112,165, 82,169, 47,143,199, 91, 63, 99,198,140, 1,189,122,245,194,237,219,183,113,244,232, 81, 12, 30, 60, + 24, 49, 49, 49, 88,176, 96,193,192,133, 11, 23,206, 1, 96,237, 97, 96,215,238,221,187, 3, 20, 10, 69,237,148, 72, 18,137, 4, +175,188,242, 10,198,142, 29,139,195,135, 15,119,251,224,131, 15,118,199,196,196,120,159,121,130,158,138,122,180, 72, 78,174,158, +138, 47, 58, 58,186, 69, 19,219,254,101, 8, 59,116, 67, 80, 74, 17,210,194, 61, 0,160,214,104, 89,254,134,188,209,175, 97, 59, +127, 33, 13, 26, 44,131,182,202,200,165,216,219, 94,210,200, 29,137, 71,103,212,118, 17,194,204,222, 54, 24,171,140, 0, 64, 51, + 44,202,171,204, 16, 9, 41, 60,200,173,192,205,180,194, 71,116,216,122, 67, 45,171,170,170,254,179,102,205, 26,124,244,209, 71, +241, 90,173,182, 50, 61, 61, 61,183,178,178, 82, 51,102,204, 24,194,227,241,240,203, 47,191, 32, 35, 35, 3,109,219,182,133,171, +171, 43,122,244,232,193,239,215,175,159,223,196,137, 19, 95, 6,112,160, 33, 77, 50, 98, 4, 71, 42, 16,238, 95,185,116,164, 59, +225,164, 34, 53,171, 20,173, 20,157,224,225,226, 7,101, 65, 37,146,111, 29, 70,234,253, 67,104,165,104,129,201, 47,181,114,253, +244,203,130,131, 36,250,181, 86,108,242,239,121, 94,245, 53, 1,192,129, 79,119,124,111,205, 53,208,154,251, 96, 77, 89, 96,141, +121,143,156,159,163,171, 31,194,218,251,192, 81,224, 69,221, 72,249,180,163,181,115,103, 89, 86,205,225,112,214, 81, 20,153, 74, + 8, 65,155, 54,109,211, 87,175, 94,221,208,147,171,161, 77,155,182,233, 28, 14, 21,200,178, 44, 8,161,214, 51, 12,173,110, 72, +179,129,107,173, 38,132,124, 44, 16, 8,223, 4, 0,133,194, 47,255,228,201,147,166,231,159,127, 30, 31,124,240, 1,119,209,162, + 69, 11, 20, 10,197,157,156,156,156,251,214,218,217, 24,173, 90,181, 10, 72, 72, 72, 16, 2,128,201,100, 66,118,118, 54,178,179, +179, 81, 84, 84, 4,147,233,225,135,206,250,154, 44,203,190,237,227,227,227,254,205, 55,223,132,191,246,218,107, 73, 74,165,114, + 22, 0,200,229,242,213, 0,218, 18, 66,210,234, 44,195,134, 13, 27, 58,188,242,202, 43, 41,106,181,250,109,107,154, 22, 8, 33, + 97,110,174,110, 78, 95,127,178, 62,201, 75,200, 33,158,126, 50,194,151,184,114, 41,177,179,144,229,112,180,254,126, 50,103, 66, + 72,152,149,107,118,179,158, 22,105,217,178,229,158, 77,155, 54,121,243,120, 60,208, 52, 13, 47, 47, 47,164,167,167,163,180,180, + 20, 21, 21, 21, 72,191,157,130, 0,133, 2, 51, 39, 79,146, 46,254,120,213, 30, 66, 72,135,186, 95, 98, 13,181,147,169,119,125, +172, 25, 40,107,203,109,253, 31, 49, 12,147,161, 82,169,224,232,232,136,240,240,112,241,229,203,151,207, 41,149,202, 6,205, 85, + 93, 77, 7, 7,135, 23,187,119,239,238,188,109,219, 54, 68, 71, 71,195,197,197, 5,167, 79,159,198,141, 27, 55, 96, 52, 26,169, +138,138, 10,136,197, 98,172, 88,177, 2, 45, 90,180, 64, 89, 89, 25, 50, 51, 51, 61,120, 60,158,167, 53,205,159, 15,159, 93, 82, +146,118,122, 97, 30,231, 88,220, 87,219,126,192,171,163, 71,194,215,156,118,206,173, 21,181, 36,126, 96,183,255,114,120,126,131, +156,156,219,184,133,180, 25, 2,190, 64,140, 55,222,122, 31,169, 55,247,187, 85, 85,220,152, 70,155,178,253, 0,204,172,175, 73, +170, 47, 16, 37,147,201, 38,109,216,176,193,217,178,156,162, 40,240,120,188,135,140,149,101,146,246,134,174,105, 67,215,147,166, +105, 24,141, 70, 24,141, 70, 48, 12,131,130,130, 2, 84, 84, 84,192,205,205,173,122,131, 69, 0, 1, 33, 44, 26, 54, 44,117, 53, + 41,138, 26,243,195, 15, 63,248, 57, 58, 58, 62,178, 93,118,118, 54,202,202,202,224,228,228, 4, 87, 87, 87,152, 76, 38,152,205, +102,232,245,122,113, 76, 76,204, 84, 0,191, 54,164,201,225,112,102, 79,153, 50,165,251,193,131, 7,131,150, 46, 93, 10,163,209, +184,178,160,160, 0, 22,131,214,163, 71,143, 46, 44,203,222,153, 49, 99, 6, 0, 96,241,226,197,166,202,202,202,215,109, 57,247, +134,240,241,241,137, 72, 72, 72,112,251,233,167,159,208,163, 71, 15,232,245,122, 76,157, 58, 85, 50,105,210, 36,201,133, 11, 23, +188, 86,175, 94,189, 5, 64,223,198, 52,163,163,163,121,106,181,122,222,152, 49, 99,230,244,237,219,215,165,176,176, 16, 66,161, + 16, 59,118,236,192,215, 95,127,125,196,104, 52,190,187,123,247,238,101, 27, 55,110,140, 27, 50,100, 8, 54,110,220, 56,163, 38, + 45,130,105, 64, 83,230,231,231,135,235,215,175,195,205,205, 13,158,158,158, 40, 43, 43,195,165, 75,151,144,152,152,136,176,176, + 48, 16, 66,220, 80,253,157,214,160,193,106,164,157,153,120,204, 72,149,173,215,179, 57, 52,165,105, 25,161,102,113,251, 52, 93, +157, 18, 77,195, 74, 18,172, 13,154, 64,181, 17,150,201,100, 67, 92, 93, 93,167,177, 44,203, 45, 41, 41,217,224,232,232,184,235, +254,253,251, 13, 70, 89,255,140,115,127,218,224, 2, 0, 33,196,242,127,137, 97, 89,246,172, 60, 5,229,133, 29,220, 82, 61,124, + 34,126,240,144, 63, 83,125, 17,205,236,109,142,208, 45,213, 39,169,170, 28, 0,140, 38, 22, 23,110,151,224,250, 61, 53,174,223, +205,131,216,161,233,167,110, 15, 15, 15,116,235,214, 13, 63,254,248, 35,178,179,179,197, 43, 86,172, 8, 49, 26,141,198,132,132, + 4, 85,203,150, 45, 75,122,244,232, 1, 30,143,135, 95,127,253, 21,229,229,229,224,112, 56, 16, 8, 4, 96, 24,198,106,164,205, +251, 46, 61,126,220,228,168, 32, 79, 87, 10, 7,126, 57,134, 46, 97, 67,225, 40,228,161,160, 68, 11,138, 16,220,207,248, 9, 52, +237,132,107,183,179,208,181,141, 19,122,118,118, 81, 84,158, 44,158, 12,224, 11, 91, 46,144, 81,121, 6,130,150,195, 0,135,103, +192, 26,238,131, 49, 40,193,242,188,161,169,114, 64,225,131, 76,220,190,180, 11,172,249,145,212,163, 71,160,105,250, 13, 79, 79, +207,252,183,223,126,187, 71,104,104,168,225,141, 55,222,184,153,145,145,177,160,238, 54, 1, 1, 1,203,214,174, 93,139,212,212, +212, 7,203,151, 47, 63, 95, 88, 88,184,196,150, 54, 90, 96, 89,246, 45, 66,200, 42, 0,224,243,249,165, 59,118,236,120,246,244, +233,211,111,126,242,201, 39,110,211,167, 79,231, 76,158, 60,121, 10,128,217,205,209,140,137,137,225,100,101,101,133,139, 68,162, + 81,179,103,207, 22, 25,141, 70,168, 84, 42,100,103,103,163,180,180, 20, 20, 69, 33, 53, 53,149, 33,132,220,105, 76,135,203,229, +106, 27,234, 22,108, 8, 31, 31, 31, 99, 67, 57, 90, 86,168, 52,152, 76,122, 39, 63,153, 41, 97, 72,255,182, 55, 18,175,166,138, +220,221,169,182, 29, 35, 35,110,223,123,144, 76,170,187, 96,108,234,134, 81, 40, 20, 35, 23, 45, 90,212, 86, 34,145,128, 97, 24, +184,184,184,160,160,160, 0, 70,163, 17,101,101,101, 48, 84,148,195, 88, 94,134,235,153,233,232, 17,211, 27,253,186,118, 9, 63, +100, 50,141, 4,176,189, 49, 93,247,118, 81,181,145,171,157, 65, 30,181,203, 71, 61, 40,173, 53, 0,135, 59, 5, 67, 40,118, 66, +155, 89, 54,167,220, 61, 66,110,110,238, 21,127,127,255,195,113,113,113, 3, 38, 79,158, 76,229,229,229, 29,245,241,241,233,174, + 86,171,111, 53,182,159, 88, 44,110, 85, 88, 88,136,138,138, 10,184,184,184, 96,245,234,213,240,246,246, 70, 85, 85, 21, 46, 95, +190,204, 42, 20, 10,114,250,244,105,200,229,114, 20, 21, 21,193,104, 52,162,170,170, 42,207, 96, 48, 88,253, 31,213,116, 3,198, +207,238, 39, 61,114, 39,105,115, 79, 57,210, 47, 15,159,219,243,238,181,196,212,236, 83, 39,127, 89, 98,214, 57,100,151,230,156, +152, 23,216,241,154,231,180,185,139,177,118,229, 34,220,249,245,108,177, 79,139,138, 47,104,162,223,220,189,191,245,246, 86, 85, + 85,233, 82, 82, 82,156,175, 93,187, 6,138,162, 32,145, 72,224,228,228, 84, 59,177,185,197, 92,113,185,182, 7,232, 45, 93,138, + 22,115, 85, 80, 80,128,251,153,169,216,125,106, 11, 76,102,147,231,166,206,146,188, 32, 62,255,186,103, 25,121,167,240, 38,123, +165, 49, 45,150,101, 55,140, 26, 53,106,164, 92, 46,119,174,187,188,125,251,246,120,233,165,151,112,244,232, 81, 36, 37, 37,129, + 97, 24, 48, 12, 3,150,101, 81, 80, 80,144, 75,211,244,102,107,154, 89, 89, 89,165, 10,133, 34,110,210,164, 73,201,123,247,238, +149,124,252,241,199,160,105, 26,102,179,185,182, 91,212,242,186,109,219, 54, 36, 39, 39, 47,204,203,203,187,109,243, 5,168,131, +175,175,111, 88, 66, 66,194,207, 95,124,241,133,171, 90,173, 70, 97, 97, 33, 52, 26, 13,120, 60, 30,204,102, 51,130,131,131, 9, + 77,211, 1,141,105, 68, 68, 68,240, 41,138,218,127,234,212,169,254, 33, 33, 33, 0,170, 31,204,126,249,229, 23, 76,158, 60,185, +200,209,209,241,197, 7, 15, 30,104,100, 50,217,130,131, 7, 15,198,181,111,223, 30,109,219,182,245,205,207,207,119, 6, 80,214, +144,166,165,219,214,242,255,249,230,155,111,106,215,233,116,213, 83, 78, 26, 12, 6,210,177, 99,199,128,203,151, 47, 55,103,112, +139,181, 72, 85, 86,157,191,109,202, 45,254, 43,200,252,223, 87,120,240,206,116,248,159,171,190,229, 38, 71, 84,167, 92,249,159, + 77,169,222, 96,236,216,102,233,201,100, 50, 15,150,101, 95,237,219,183,239,172,184,184, 56, 47,169, 84, 10, 15, 15, 15,220,184, +113,163,251,177, 99,199, 62, 87, 40, 20, 95,210, 52,253,165, 45,209,250, 39,165,190, 23,249,179,143,247,103, 83,123, 7, 98, 89, +150,212,156, 28,193,240,225,180,231,174, 93,133,202,112,129, 81,192,117, 76, 5, 0,131,177,202,232,147, 84, 85, 93,166, 97,201, + 54,176, 96, 65, 51,213, 55, 36,134,101, 65,219, 56, 14, 68,119,251, 5, 48,165,251,225,237, 54, 4, 27, 55,238, 69,126,126, 62, +127,245,234,213, 45,247,238,221,171, 24, 51,102, 76, 86,112,112,112, 89,239,222,189,177,101,203, 22,248,250,250,194, 96, 48,128, + 97, 24,171,238,205,217,157, 30,222,185,109, 48, 39, 53,243, 6, 58,132,188,128, 0,105, 15,220, 87,150,161,164, 66,143,162, 50, + 45, 66, 67,231, 66, 93, 92,133,114,141, 14, 55,238,124, 15,133, 52,144,226,240,238,199,193, 70,131,165,191,191, 21,250,244, 31, +192,151,198, 66, 16, 56, 18, 60,207,174,200,190,115, 6, 87,127, 90,133,156,187,231,193, 50, 52,124,252, 26, 12,144, 60, 2,135, +195,217,112,252,248,241,200,103,159,125,150,219,167, 79,159, 54, 10,133,162, 77, 78, 78,206, 77, 0, 80, 40, 20,109,226,226,226, +218,120,123,123,227,179,207, 62,171,226,112, 56, 27,108, 18,173, 71,189, 46,181, 19, 50,153, 76,179,127,255,254, 53,227,198,141, +131, 92,110, 91,236,120,241,226,197,228,243,207, 63, 95, 37, 18,137,134, 9, 4, 2,137,151,151, 87, 89,124,124,252, 61,103,103, +231,244,140,140, 12,176, 44, 11,119,119,119, 84, 86, 86, 34, 53, 53,149, 57,126,252,120,169, 88, 44,222,253, 56,237,125, 82,140, + 70,227,229,172,204,204,208,238, 61,187, 75,127, 78,186,117,101,216,243,131, 98, 41, 46, 69,101,100,230, 94,246,242,112,119,250, +229,194,249,114,163,209,120,217, 22, 45, 30,143, 55,168, 71,143, 30,220,146,146, 18,200,100, 50, 20, 20, 20, 64,169, 84,194,100, + 50, 65, 87, 86, 2, 99,121, 57,140,101,165, 96,171, 42,145,118,249, 87,132,251,201,133,199,171,147,224, 27, 53, 88,150, 0, 87, + 67,147,133, 91,150, 9,157,197, 16, 57, 59,215,118,127,216,138, 76, 38, 27, 34,145, 72,230, 85, 84, 84, 28, 86, 42,149, 75, 13, + 6,195, 27,203,151, 47,239,248,254,251,239,123,206,155, 55, 79, 50,111,222,188,157, 45, 91,182,140,124,240,224,129,222,154, 70, +101,101,229,125,147,201,228, 1,192,231,228,201,147,240,242,242, 66,121,121, 57, 76, 38, 19,180, 90,173,193,205,205,205,161,168, +168, 8, 58,157, 14, 6,131, 1, 18,137, 4,201,201,201,197,102,179,185,201, 46,103,215, 86,212, 18,189,233,246, 66,247, 8, 39, + 37,205,122,244,170,208, 50, 37,139, 62, 86, 45, 1,240, 73,124,171, 86, 95, 25,152,179,233,169, 55,127,116, 75,191,124,186, 88, +117,183, 42,232,171, 67,105, 86,115,176,216,234,155, 20, 67, 8, 97, 91,183,110,141,130,130, 2,112, 56, 28, 56, 57, 57, 65, 44, + 22, 35, 44, 44, 12,217,217,217,143,109,176,234,154,171,159, 46, 30, 68, 97,101, 46,190, 90,185, 13,114, 95, 63, 10,128,151, 50, + 47,251,185,137,115, 70,116, 14,236,225,182, 60,253,124,137,213,188, 54,149, 74,117, 21,128,164,238, 50,185, 92, 30,235,230,230, +118,202,104, 52,226,193,131, 7, 56,126,252,120, 76, 78, 78,206, 89,155, 27, 8, 32, 39, 39, 39, 77, 46,151,199, 61,255,252,243, + 91,218,182,109,219,138,101, 89,132,133,133, 97,200,144, 33,216,189,123, 55,110,221,186,133,242,242,114,230,220,185,115,155,114, +115,115, 31, 43, 33, 71, 42,149,182, 30, 56,112,224,249,181,107,215,186, 21, 22, 22, 66,167,211,161,178,178, 18,187,118,237, 66, +247,238,221,225,224,224,128, 53,107,214,148,155,205,230,181,214, 52, 34, 34, 34,248, 44,203,254,184,119,239,222,254, 65, 65, 65, +184,125,251, 54,206,157, 59, 7, 47, 47, 47,136, 68, 34, 36, 36, 36,120,252,240,195, 15,111, 68, 68, 68,172,226,241,120, 75, 6, + 12, 24, 0,154,166,145,148,148,148,155,153,153,105,245,255,111,137,212, 52,132, 78,167, 3,203,178, 48,153, 76,171, 41,138,122, + 49, 58, 58,186, 95,114,114,242, 19, 37, 69,255, 83,114,174, 0, 64,161, 80, 60,195,227,241,102,186,185,185,161,160,160, 0,165, + 12, 32, 46,174, 30,116, 91, 86,243,221, 91, 92, 92, 92,123,175, 9, 9, 9, 57,164,213,106,223,177,124,191, 52,132, 92, 46,111, +231,232,232, 56, 43, 33, 33, 97,204,192,129, 3, 57, 70,163, 17, 7, 15, 30,196,218,181,107, 17, 23, 23,135,224,224, 96,204,157, + 59,215, 69,175,215,207, 63,122,244,232,188,240,240,240,163, 21, 21, 21,111, 55,166,249, 71,240,144, 23,249,151, 83,123, 7,170, + 57,161,152,218, 53,195,135,211,114,160, 4, 0,124,125,125, 61,221,221,221,215,210, 52, 29,139,255,254, 23,206, 92, 23, 60,184, +127, 23, 21, 37, 12, 76, 6, 61, 24,134, 5,107,221, 3, 61, 4, 83,186, 31,146,103, 89,148,255, 76, 96, 52, 26,225,237,237,141, + 21, 43, 86,160,172,172,140, 59,113,226,196,128,197,139, 23, 95,213,233,116,208,104, 52,208,106,181,208,106,181,141, 26, 44,190, +131,190,173,191, 79, 8, 42,180,157,224, 40, 16,160,168, 92,143,146, 10, 61, 10, 75,117,216,243,227,104,232,181, 85, 48, 27, 12, +160,141,102,136,125,134, 34,216, 61, 22,192, 61,155, 42,211,214,246,252, 48,102, 24,149, 39, 96, 84,158,128, 99,251, 5,248,113, +205,203, 15,109,103, 54,219,214,229,175, 86,171, 11, 20, 10,197,209,228,228,228, 65, 47,190,248, 34,206,156, 57, 51, 30, 53, 17, + 37,161, 80, 56,254,197, 23, 95, 68,114,114, 50,110,223,190,125, 84,173, 86, 23,216, 36,218,244, 57,148,234,245,213,223,173, 66, +161, 80, 64, 8, 33,141,229,101, 44, 94,188,152,172, 93,187,246,238,172, 89,179,252,167, 79,159,206,149, 72, 36, 40, 45, 45, 21, +111,217,178,197,123,220,184,113,178, 37, 75,150,156,203,203,203,195,166, 77,155,180,183,111,223,214,113, 56,156,219, 2,129, 96, +239,197,139, 23,173,126,129,215,107, 79, 80, 77,215, 32, 88,150, 13,178,182,204, 86,116, 58,221, 55,203,150, 44,140,253,223,214, + 29, 97,173,195,130,221, 14, 31, 63,125,197,195, 67, 34, 10, 8, 8, 18,150,149,150,234,215,174, 94,201,213,104, 52,223,218, 40, + 23,238,233,233,137,188,188, 60,220,187,119, 15,122,189,190,186, 11,167,170, 18,134,210, 82, 24,203, 74, 0,157, 22, 2,154,134, +190, 80,141,128,160, 0,224,247, 17,134,141, 82,215, 76,213, 93,102,121, 21,185, 72, 32,112,114, 2,135,215,112,183, 86, 67, 72, +165,210,232,168,168,168, 29, 27, 55,110,228,207,158, 61,187,115,203,150, 45,215,230,229,229,101, 42, 20,138, 62, 43, 87,174, 76, + 92,186,116,169,112,204,152, 49,173, 55,108,216, 48, 14,128, 85,195,174,211,233,118, 28, 62,124,248,165, 22, 45, 90,248,220,188, +121, 19, 58,157, 14, 12,195, 32, 62, 62, 30, 0, 28, 44,219,221,185,115, 71,171,213,106,213,191,253,246, 91, 69,102,102,166, 17, + 54,140,250, 91,184, 86,121,105,246, 8,197, 48,169, 84,118, 81, 32,244, 15,164,170,146,135,206, 30,161,248,120,213,206, 28,221, +145,251,247, 43, 22, 78, 11, 90, 81, 85,113,115,154,155, 66,243,197, 23, 7,172,155,171, 58,176, 53, 35, 6,225,233,233, 89,219, + 37,200,231,243, 1, 0, 62, 62, 62, 40, 43, 43,107,180,139,176, 33,104,154, 70, 89, 89, 25,202,202,202,112, 55,227, 54, 10, 42, +114,113, 98,251, 69,208, 52, 93, 27, 29,145,249, 40,240,211,246, 68,231,152,225, 29,223,241,104, 71, 78, 23, 93,103,109, 50,238, + 0, 64, 81,212,172, 23, 94,120, 1, 70,163, 17, 67,134, 12,193,182,109,219,102, 1, 56,107,235,254, 22,148, 74,229, 37, 66, 72, +200,189,123,247, 36, 38,147,105,112, 66, 66,194,230, 1, 3, 6,224,226,197,139, 56,121,242,100,140,193, 96, 72,165,105, 90, 43, +149, 74,151, 75,165, 82,111, 66,200,114,149, 74,213,232,104,231,208,208,208, 49,206,206,206,203, 68, 34, 81,197,128, 1, 3,100, +150,200,149, 70,163,129,217,108, 70, 78, 78, 14,142, 28, 57,146,123,248,240,225, 92,150,101, 29, 43, 43, 43, 23,101,101,101,237, +106, 72, 43, 58, 58,154,103, 50,153,246,237,223,191, 63, 46, 40, 40, 8,103,207,158,197,135, 31,126,136, 86,173, 90, 97,211,166, + 77,232,214,173, 27, 2, 2, 2,224,238,238, 62,179,188,188,188,235,135, 31,126, 56, 32, 42, 42, 10,123,247,238, 69,126,126,254, +231,141,141,170,108,236, 62,171,213,106,193,178, 44,122,247,238, 61,121,246,236,217, 72, 72, 72, 56,222,161, 67,135, 78, 73, 73, + 73,119,109,184,172,255,200, 72,149, 5,153, 76,182,162,111,223,190,243,218,181,107,135,173, 91,183, 66,223,161, 7,156, 54, 29, +192,205, 65,221,193, 2,144,109,250, 17, 0,112,115,112,245,128,142,128, 62,195, 49,111,222,188, 1, 67,135, 14,109, 1,224, 25, + 43,154, 31,191,252,242,203,115, 94,126,249,101, 92,185,114, 5, 27, 54,108,192,213,171, 87,107,191,243, 76, 38, 19, 82, 82, 82, +144,146,146, 2,169, 84,138, 65,131, 6,145,215, 94,123, 45, 62, 62, 62,222, 11,192, 19,143,168,109,140, 71,188,200,191,152,134, + 35, 88,117,240,245,245,245,116,115,115,251,109,237,218,181, 30,157, 59,119,230,152,205,102,156, 60,117, 10,111, 78,159,136,184, + 65,211,160,211, 11, 96,214, 17,208,124,177,109, 71,148, 12, 66,249,207, 4,140,120, 0, 12, 6, 3, 38,111,227,195,149,168,177, +122,188, 15, 0, 16,173, 86, 11,189, 94, 15,173, 86, 11,141, 70, 3,141, 70, 3,154,166,173,222, 37, 43, 74,157,140, 70, 19, 3, +101,126, 38,114,114,111,194, 69,220, 2, 44,229, 7,117,113, 21, 8,188, 97,210,221, 1, 83,243,193,212,107,115,160,209, 63,153, + 41,166, 43, 30, 29,140,198, 48,182,231, 84, 86, 85, 85,237,216,186,117,107,191, 85,171, 86,241, 7, 12, 24,208, 74,161, 80,116, + 2,128, 97,195,134,181,114,118,118,198,214,173, 91,141, 85, 85, 85, 59,158,168,145,117, 32,132, 12,234,210,165, 11, 42, 42, 42, +144,150,150,150,220, 84,210,235,231,159,127,254,217,172, 89,179,252,223,126,251,109,174, 78,167, 67,121,121, 57,120, 60, 30, 38, + 76,152,192,175,168,168, 8, 88,189,122,181,234,210,165, 75, 73, 6,131,225,235,251,247,239, 55,187,198,212,129, 3, 7, 28, 1, +180,109,106,153,173,168, 84, 42,173, 76, 38,155,177,116,217,210,239, 63, 94,185,210,187,184,168, 36,149, 47, 16,233, 28, 69, 66, +247,121,111, 46, 97,213,106,245, 28,181, 90,221,116, 31,110, 13, 37, 37, 37, 72, 79, 79,135, 72, 36, 2,159,207, 7, 93, 85, 9, + 70,163,129,190,164, 8,148, 65, 15, 33, 77,195,221, 81, 8, 63, 31, 31,180,240,182,109,106,171,220,211,199,113,100,100,245,232, + 72, 75,183, 32, 33, 4, 71,187,181,134, 64,236, 4, 7,177, 24, 61,246,157, 3,128,106,163,176,122, 99,147,154,190,190,190,158, + 50,153,108,255,231,159,127,206, 47, 44, 44,196,111,191,253,118,237,193,131, 7,101,238,238,238,206, 60, 30,143,185,123,247,238, + 79,119,238,220, 25, 20, 16, 16, 0,150,101,155, 26,253,245,201,158, 61,123,158,235,222,189,187, 57, 32, 32,192,169,160,160,160, + 69, 73, 73, 9,201,205,125, 56,135,249,242,229,203, 14, 89, 89, 89, 85, 12,195,236, 69,117, 29,172, 38,223,248,179, 71, 40, 28, + 46, 92,193,140, 94,158, 1,237, 92,188,218,161,208,116,181,221,165,107,121, 51,102,143, 80,172, 89,181, 51, 71, 71, 19,253,102, +218,148,237,199,117,208,109,105,242,164, 81, 29,197,138,136,136, 0,203,178,184,124,249, 50,206,157, 59,135,115,231,206,225,193, +131, 7,181,219,184,184,184,224,196,137, 19,136,141,141,181, 69, 18, 0, 80, 85, 85, 5,169, 84, 10, 87, 87, 87,236, 61,243, 29, +190,254,120, 91,109,162,187,133,194,194, 66, 56, 58, 58, 98,217,155,171,196, 19,223, 26,190, 4, 64, 63, 91,180,253,252,252, 2, +187,119,239, 62,208,199,199, 7, 37, 37, 37,240,242,242, 66,199,142, 29, 19,124,124,124, 2,212,106,245, 99,213,105, 51, 24, 12, + 83, 99, 99, 99,151,206,153, 51, 7, 38,147, 9, 35, 71,142, 68,122,122,250,142,180,180,180,213,254,254,254, 51,166, 77,155,230, +227,233,233,137,169, 83,167, 58, 1, 24,102, 77, 39, 44, 44,236, 63,243,231,207,255, 96,236,216,177, 66,147,201,132,147, 39, 79, +226,193,131, 7,208,235,245, 48,155,205,200,204,204,196,162, 69,139,114,203,203,203,123,213,207,223,108,136,188,188,188, 57,251, +246,237,139, 15, 13, 13,197,209,163, 71, 49,101,202,148, 67, 98,177,248,153,129, 3, 7,182,112,114,114,194,181,107,215, 96, 52, + 26, 33,149, 74,125,230,207,159, 63,168,127,255,254,248,233,167,159,176,100,201,146,131,190,190,190,141, 26,118,154,166,193,229, +114, 31,201,249,228,112, 56,184,122,245, 42,122,247,238,141,121,243,230, 1, 0,126,250,233, 39, 73,191,126,253,110,198,196,196, + 72,206,156, 57,211,232,195,159,181, 72,213, 63,101, 20,161,147,147,211,132, 77,155, 54,225,222,189,123, 56,127,254, 60,138,138, +138, 96, 48, 24, 80,198, 84,231, 92, 9,107, 34, 87,172,220, 31,221,230,188,131, 81,131,134, 33, 55, 55, 23, 20, 69,121, 90,211, + 36,132,140,121,231,157,119,112,228,200, 17,172, 88,177, 2,229,229,229, 13,110, 39, 18,137,208,177, 99, 71, 68, 70, 70, 34, 61, + 61, 29, 0,172,106,254, 81, 60,149, 17, 44,107,184,185,185,173, 94,183,110,157, 71,247,238,221, 57, 26,141, 6, 12,195,160,107, +151, 46, 24, 55,126, 28,142,237,221, 5,105, 96, 44, 56, 58, 17,204,206,143, 38,116, 54, 4,237,183, 25,197,197,197, 16, 10,133, +112,168, 73, 40,189,158, 83, 27,222,133, 78,167,171, 53, 87,150,215,198, 48, 27, 4,201, 41,105,180, 95,121,229, 85,252,154,252, + 63,152, 12, 6, 4,132,188, 13,189,217, 19, 78,222,175, 64,107,220, 15, 99,105,245,200, 93,129, 36, 6,106,117, 33, 0, 98, 83, +136,179, 33, 47,194,104, 31, 77,118,103,104,219, 13, 86, 73, 73, 73,185, 84, 42,253,241,226,197,139, 35,134, 13, 27,134, 19, 39, + 78,140, 3,128, 97,195,134,225,226,197,139, 72, 79, 79,255,177,164,164,164,225,119,123, 51,145,203,229,227, 7, 12, 24, 48,226, +153,103,158,193,137, 19, 39, 96, 54,155,155, 28,162,200,229,114,135, 79,159, 62,157,107, 9,185,243,249,124,148,151,151, 35, 47, + 47, 15, 61,123,246,228,207,154, 53, 43, 88,163,209,204,205,204,204,124,172, 47,134,186, 35, 6, 27, 26, 69,104, 89,214, 28, 77, +149, 74, 93,168,216, 95, 0, 0, 32, 0, 73, 68, 65, 84,149, 19, 26, 26,122, 95,171,211,241,220, 60,220,171,156,157, 4,108,121, + 69, 5,117,253,250,149, 92,181, 90,253,160,105,133, 90, 82,126,251,237,183, 54, 74,165, 18,153,153,153,160,171, 42, 65,233,245, + 32,122, 45,250,116,237, 2, 17, 88, 8,193,128,207,152,192,227,112, 81, 81, 81, 9, 0, 41, 77,137,214, 77,114,183,152, 43, 66, + 8, 28,196, 98, 8,156,197, 16,138,197,181,235,106,174, 65,147, 13, 21,137, 68,223,111,216,176, 65, 42,149, 74,241,233,167,159, + 66, 42,149,134,245,237,219,183,170, 87,175, 94, 34, 79, 79, 79,132,134,134,162, 67,135, 14, 56,125,250, 52, 8, 33,141,126, 49, +178, 44,107, 38,132,244, 59,127,254,252,156, 11, 23, 46,140,144,201,100,100,236,216,177,136,139,139,131, 80, 40,132, 86,171, 69, + 73, 73, 9, 14, 29, 58, 68,104,154,142, 2, 0, 95, 95, 95,255,150, 45, 91,110, 35,132,228,100,100,100,188, 88, 95,243,203,101, +237,100, 21, 90,102,162,212, 87, 54,172, 87,255,128,182,189,251,247, 69, 96, 72, 31,244,238,159, 13, 0, 43, 60,121, 25, 35, 63, + 90,208,102,111,128,159,251,166, 11,251,126,250,111,143,248,216,119, 23,207,112, 95,178,104, 77,177, 45,101, 26,106,191,108, 41, +138,106, 48, 74,197,225,112, 64, 81,182,205,101, 79, 51,116, 78,220,248,174,181,127,155,204, 70, 79,185,175, 31,101,137, 92, 1, + 64,121,121, 57,178,178,178, 96, 50,153,224,225,225, 1,147,201,216,206, 38,113, 0, 52, 77,207, 24, 57,114, 36,209,233,116,152, + 51,103, 14, 86,174, 92,137, 33, 67,134,144, 95,127,253,117, 6,128,102,215,170,147,201,100, 43,167, 78,157, 58,103,194,132, 9, + 40, 45, 45,197,169, 83,167, 16, 27, 27,139,117,235,214,121,157, 58,117,234,131,110,221,186,129,195,225,224,196,137, 19, 48, 26, +141,141,230, 70, 10, 4,130,233, 99,199,142, 21,102,103,103,131,207,231,163, 67,135, 14,200,201,201,129, 70,163, 65,126,126, 62, +222,127,255,253,188,178,178,178, 24,165, 82,217,164,185, 34,132, 80, 61,123,246,156, 25, 28, 28,140,147, 39, 79, 98,234,212,169, + 71,156,156,156,134,149,148,148,188,166,215,235,215, 12, 26, 52, 8,221,186,117,195,157, 59,119,144,144,144,128,142, 29, 59,226, +212,169, 83,152, 55,111,222, 33, 71, 71,199, 23,154,168,131,117,247,204,153, 51,109, 58,116,232, 0,141, 70,131,138,138, 10,240, +120, 60,184,186,186, 34, 37, 37, 5, 33, 33, 33,152, 55,111, 30, 86,173, 90,133,217,179,103, 51,253,250,245, 51, 27,141, 70,190, +101,148,229, 99,242,143, 24, 69,168,209,104,216,220,220, 92, 72, 36, 18,236,220,185, 19, 55,126, 58,134,195,211, 95,129,195,187, + 43,193,178, 44,114,150,206, 71,239,183,222, 69,151,107,105,200,205,205,197,150, 45, 91, 64, 81, 84,237,136,216,134, 96, 89, 22, +101,101,101,136,140,140,196,229,203,151,177,101,203, 22,124,250,233,167,181,209, 90, 30,143,135,152,152, 24, 60,247,220,115,184, +123,247, 46, 54,108,216, 0,137, 68, 98, 85,207, 78,195,112,129,106,199, 88,247,181, 46, 12,195,244,238,216,177, 35,167,178,178, + 18, 58,157, 14,106,181, 26, 25, 25, 25, 16,137, 68, 80,230,103,161, 83,171, 74,228, 17, 3,126,187,154, 74, 19, 14,239,106, 99, + 7,179,140,212, 49, 24, 12,184,126,253,122,245,208,247,144,229, 96,152,234,168,112, 77,206, 7,116, 58, 29,206,156, 57,195,138, + 68, 34, 56, 57, 57,145,198,250,222, 25,179,254,200,233, 95,174, 13,120,121,104,111,193,137, 51, 95,195,164, 55,163, 82,239, 10, +141,206,128, 10, 45, 15, 6, 97,127, 16,114, 14, 20, 71,136,110,145,173,112,234,252, 93, 29,109, 50, 30,181,233,234,176, 52, 56, +238,237, 64, 23, 95,255,253,120,218,135,159,234,249, 66, 49,104, 27,187, 8,107, 53, 24,102,239,247,223,127, 63,160,107,215,174, +142,177,177,177, 65, 0, 32, 20, 10, 13,223,127,255,189, 37, 58,208, 44,234, 86,111, 39,132, 16, 31, 31,159,158, 14, 14, 14,175, +188,248,226,139, 97,163, 71,143, 70, 90, 90, 26,182,110,221,154,229,232,232,120,184, 41, 45,179,217,236, 42,145, 72, 80, 94, 94, + 14, 62,159, 15,179,217,140,162,162, 34,220,185,115, 7, 30, 30, 30, 40, 43, 43,147,180,108,217,178,201, 50, 23,141,180, 53,173, +137, 81,132,171,241, 24,209, 44, 17,159,137,126,247,173,201,193, 58,157, 54,162,162,162,194,204,229,114,185, 66, 30,109,115,237, + 43, 0, 48,153, 76, 7,207,157, 59,247,124,143, 30, 61,132,169,215,175,194, 88, 86, 6, 83,121, 41,248,180, 25,238,209,145,160, + 12, 58, 16,131, 9,242,112, 22,218, 82, 39,252,114, 37,205,100, 50,153, 14, 54,165,107, 49, 88, 20,135,243,112,222,149,196, 25, + 2,113,181,193,170,187,156, 52,209,175,229,227,227,227, 24, 31, 31,223, 39, 42, 42, 10, 44,203, 98,229,202,149, 48, 24, 12, 2, +147,201, 4,147,201, 4,163,209,136,138,138, 10,236,222,189, 27,223,125,247,221, 47, 46, 46, 46, 77,214, 39, 99, 89,214,172, 80, + 40,222, 96, 24,198,219,108, 54, 27,189,188,188,248, 59,118,236,128,131,131, 3, 40,138, 66,100,100, 36, 28, 28, 28,244, 50,153, +204, 88,211, 6,211, 39,159,124,194,157, 52,105, 18,191, 33,189,246,157, 66,223,164, 89,143, 94, 2,161,127,128,139, 87, 59, 4, +134,244, 1, 0, 60, 55,104, 34, 2,131,253, 80, 86,112, 61,208,160,207, 28,202, 33, 69,110,255,187,168, 76,233,233,216,102, 66, + 81,206,153, 84, 0,223, 52,164,247,200, 53,101, 24,244,233,211, 7,253,250,245,171,237, 14,244,246,246,134,193, 96,128,217,108, +182,217, 92, 1,128,165,136,232,226,197,132,194, 34, 96, 83,103,231, 60, 0,181,225,201,178,178, 50,100,103,103, 35, 51, 51, 19, + 64,245,125,138, 97,109,123,186,150,201,100,162,192,192,192,241,207, 60,243, 12, 78,157, 58,133,235,215,175, 43,207,158, 61, 43, +239,212,169, 19, 20, 10,197, 4,153, 76,246,142, 74,165,178,185,160,178,151,151,151, 83,207,158, 61,167, 79,152, 48, 1,119,238, +220,193,188,121,243,138,242,242,242,246, 30, 60,120,112,210,127,254,243, 31,170, 87,175, 94,200,207,207,199,151, 95,126, 73, 39, + 38, 38,126,236,230,230,246,126, 99,122, 12,195,164,171, 84,170,150, 58,157, 14, 69, 69, 69,176,148,100, 56,122,244, 40,142, 29, + 59,166, 46, 45, 45,141, 81,169, 84,247,108,105,155,191,191,191,115,116,116,180, 79,106,106, 42,182,111,223, 14,163,209,248,238, +131, 7, 15,140, 46, 46, 46, 91,191,248,226,139, 69, 65, 65, 65,238,207, 62,251, 44,186,117,235, 6,150,101,113,224,192, 1,188, +247,222,123,135, 68, 34,209,176, 91,183,110, 53, 53, 0,102,232,146, 37, 75,150,120,122,122,190,248,210, 75, 47, 81,209,209,209, + 72, 74, 74, 2, 77,211,232,211,167, 79,173,185, 58,122,244,232,247, 71,143, 30, 29, 14,128, 47, 22,139, 29,154,138, 94, 1, 0, + 33, 36, 1,128,229,161,174,138,101,217, 39, 42,103,243,103,160,211,233,144,154,154, 10, 31, 31, 31, 4,119,234,138,121, 55, 51, +112,238,194, 69,176, 44,139, 30,191,101,160,178, 82,131, 77,155, 54, 33, 57, 57, 25, 28, 14, 7, 65, 65, 77,103, 90, 24,141, 70, +220,187,119, 15, 5, 5, 5, 24, 50,100, 8,198,140, 25,131,143, 62,250, 8, 70,163, 17, 11, 22, 44, 64,113,113, 49, 54,110,220, +136,123,247,238,129,203,229, 66, 44,182,177,151,234, 9,104,204,139,252, 27,177, 41, 11,212,108, 54,131, 97, 24,168, 84, 42, 92, +190,124, 25, 25, 25, 25,112,114,114,130,214,204, 48,159, 95,186,198, 80,132,167,164, 89,156,103,205,213, 85,196,173,161,209,104, + 88,147,201, 68,184, 92, 46, 46, 92,184,128,251,247,239, 67, 18,204,214, 70,175, 76, 38, 19,244,122, 61,170,170,170,192,227,241, + 42, 47, 94,188,248, 32, 41, 41, 41,144,203,229, 90, 29, 5,150, 31,194,217,124,226,167,147,111, 70, 71, 70,132,246,237,245, 30, + 14, 30,252, 47, 74,203,203,161,209,115, 81,169, 53, 66,163, 99, 33,115,110,133,206,237,162, 80, 80,100,192,221,223,146,115, 10, +249,238, 77,246,193,152,104,170,236,251,181,175,185, 12, 30, 62, 21, 14,190,207,194,144,177, 3,140, 86, 93,107,176,248, 14,206, +144,120,182, 64,121,165, 22,191,164,164,195, 68, 83, 13,142,124,105, 8,181, 90, 93, 37,149, 74,119, 77,157, 58,117,197,213,171, + 87, 2, 1, 32, 49, 49, 49, 93,165, 82,205,111, 78,119, 22, 80, 91,189,125, 30, 0,136,197,226,148, 30, 61,122,148, 68, 70, 70, + 58, 14, 26, 52, 8, 46, 46, 46, 72, 73, 73,193,178,101,203, 50,244,122,253,107, 89, 89, 89, 77,142,166,227,114,185,165,197,197, +197,222, 2,129, 0,101,101,101,181,230, 74,163,209, 88,146, 40,203,207,156, 57,243,143,154,143, 82,161, 80,244, 26, 16,215,171, +205,199,171,214, 64, 91, 85,137,196,139, 7, 81, 82, 92,136, 13, 95,237,105,171, 80, 40,122,217,154, 76,156,147,147,243,195,158, + 61,123,230,180,127,230,153,168, 32, 63, 63,220,200,204, 0,159,161, 33,160,105,112, 12, 58, 80,180, 30,138, 54, 44, 40, 74, 12, +117, 94, 5,214, 31, 63,117, 51, 39, 39,231,135,166,116,229,241,131, 49, 58,179, 12,132, 16, 28,239, 25, 1, 7,177, 24,124,177, + 19,186,237, 62, 83,107,170, 30,172,152, 11,190,147, 24,110, 29,155, 46,140,169, 86,171,171,130,131,131,147,110,223,190,221,177, +117,235,214, 88,188,120, 49,178,179,179,193,178, 44,242,243,243,117, 5, 5, 5,202,162,162,162, 7,132,144,189, 42,149,234, 43, + 91,171,133, 51, 12,227,125,224,192, 1, 0,224, 3,192,201,147, 39, 33,147,201,224,226,226,130,242,242,114,140, 29, 59, 86,184, +112,225, 66, 0,192,149, 43, 87,120, 14, 14, 14, 86,181,126,187,122,231,147,146,114,182,132,210, 36, 15, 43, 52, 95,109,219,187, +127, 14,158, 27, 52, 1, 39, 14,110,194,169, 99, 63,193,147,151,145, 78,139, 42,143, 20,164, 23, 86,228,106, 66,190,140,232, 48, +137,163,170, 60,182, 97,218, 16, 55,174, 66,202,236,156,191,206,122,225, 94,160,250, 9,156,195,225, 60,146,208,222, 92,115, 85, +151, 69,139, 88,134,128,144, 64, 30,247,170, 50, 47,187,191,204, 71,129,252,252,124,100,101,101, 33, 43, 43, 11,217,217,217, 8, + 14, 14, 70, 70,102, 26, 4, 2,126,163, 15,147,117,218,249,210,160, 65,131,156, 13, 6, 3,246,237,219,103, 38,132, 12, 58,112, +224, 64, 82,251,246,237,185,177,177,177,206,155, 54,109,122, 9,192, 87,205,104,166,147, 88, 44,230,155, 76, 38,108,222,188, 25, + 74,165,178, 87, 94, 94, 94,138, 76, 38,251,242,245,215, 95, 95, 23, 30, 30, 30,156,146,146,114, 87,171,213, 78, 85,169, 84,215, +155, 18, 43, 45, 45, 29, 23, 23, 23,183,147, 97, 24,255,238,221,187, 59,141, 30, 61, 90,194,178, 44,194,195,195,113,248,240, 97, +149, 74,165,178, 37,135, 9, 0,144,153,153, 89,113,238,220, 57,117, 68, 68,132,143, 84, 42, 5,159,207, 95, 33,149, 74,151,138, +197,226,143, 19, 18, 18,220,119,236,216,129, 93,187,118,193,201,201, 9,233,233,233,170,219,183,111,175,246,245,245,253,204,150, + 10,238,201,201,201,233, 0, 70,119,234,212,233,189, 79, 63,253,244, 93,138,162, 94, 62,126,252,120,109,173, 51,139,185, 10, 8, + 8, 24,183,115,231,206, 49,182,182,185, 6, 71, 75,201, 1, 66, 72,221,252,220,127, 74,110,150,201, 96, 48,192,195,195, 3, 5, + 5, 5,200,207,207, 71,139, 22, 45,208,181,107, 87,152, 76, 38,252,120,240, 16,206,157, 59, 7,150,101,225,233,233, 9,137, 68, +130,107,215,174, 1, 64, 99,163,135, 77, 70,163, 17,238,238,238, 40, 45, 45,197,181,107,215,224,237,237,141,217,179,103,195, 96, + 48, 96,199,142, 29,184,122,245, 42, 40,138,130,151,151, 23,156,157,157,113,245,234,213,166, 52,237,212,163, 73,131,197,225,112, + 78,159, 62,125,122,120,187,118,237,184,119,239,222,197,221,187,213,159, 55,173, 86,107,230,114,176, 75,125,125,223,104,107,251, + 18, 66,218,212,173,149, 33, 16, 8,214, 15, 31, 62,124,234,196,137, 19, 49,109,218, 52, 80, 20,133,111,174,232,145,149,197,192, +104, 52, 66,173, 86,227,198,141, 27,108,199,142, 29, 9,195, 48,198,152,152,152, 87,147,147,147, 59,113, 56,156,114,107,154,236, +206,157,180,103,219,193, 67,190, 88,255,213,133,241,227,199,187, 15, 30,242, 5,174,220,250, 13,165,154,234,161,171, 50, 79, 39, +116,110, 61, 23,249, 69,122, 28, 59,114,176,132, 49,235, 94, 96,111,110, 55, 53,214, 78, 0, 40,168,210,122,127,185,101,207,202, +237,187,247,190, 58,121,220,104,135,152,152,113,224, 85,220, 0, 93,148, 12, 89, 72,119, 16,142, 35,126,189,118, 5,215,239,101, +235,170,116,156,175,202,141,218,185, 77,105,214,165,172,172,236,178, 90,157, 23, 88,167,106,123,160, 80,232,208,104,210,108,125, +205,154,234,237,243, 44, 26, 28, 14, 21, 49,127,254,252,155,222,222,222,166,140,140, 12,108,220,184, 17,151, 46, 93, 58, 39, 16, + 8,222,203,202,202,106,176,235,165,190,166,217,108,222,181,114,229,202,215,230,207,159,207,203,205,205, 69,106,106, 42, 52, 26, + 13, 76, 38, 19, 14, 31, 62,108,174,170,170,106, 50,194,214,212,185, 63, 14,141,105,230,228,228,156, 13,105,213, 2,155,191, 90, + 5,163, 81,143, 92,101, 38, 0,160,176,168, 12,141,153,171, 71,222, 75, 44,203, 74,165,210, 97,159,174, 94,125,105,202,184,151, +125,123,246,238,131,236,235,215, 96, 40, 46, 0, 69,155,193, 99,185,168,202, 23, 65,173,174,196, 7,135,127,202,215,234,116,195, +234,231,180, 89,107,103,109,183,160,196, 25, 66,177, 24,130,154,168,149,101,157, 64,236, 12,158,147, 24, 28, 62,191,161,100,248, + 71, 52,171,170,170, 94,152, 60,121,242,245,195,135, 15,187,141, 30, 61, 26,131, 7, 15,190, 82, 90, 90, 26, 91, 92,220,116, 23, +155, 53, 77,138,162,242, 7, 12, 24,224,109, 48, 24,204, 35, 71,142,228, 22, 22, 22,194, 50,196,190,162,162, 2, 71,142, 28, 65, +235,214,213,179,206,252,246,219,111,136,136,136,176,170, 57,233,173, 27, 74, 0, 75,102,143, 80,124,124,233, 90,222, 12, 0, 43, + 2,131, 21, 56,117,236, 39,156, 59,117, 97,126,151, 54,204,154,129, 47,117,122,223,161,247,139,115, 35,162, 39,113,196, 18, 41, +182,236,217,205,185,149,252,245, 50,157,230,102, 16,128,185,214,218, 73, 8,169,158,169,190,142,185,226,114,185,168,170,170,178, +201, 92, 53,246, 94, 98,193,178,158,229,228,221,241,179, 71,116, 61,185,253, 87,103, 39, 39,167,218,156,159, 86,173, 90,129,203, +227,226,155,189,159,107, 74, 75, 11, 23,218,162,233,228,228,244, 70,108,108, 44,210,210,210,112,253,250,245,221, 42,149,234,186, + 76, 38,219,157,158,158, 62,178, 83,167, 78,248,225,135, 31,222,128, 21,131,101, 77,211, 82,177,158,101, 89,208, 52, 93, 12, 0, + 42,149,234, 26,128, 38, 75,206,215,215,172, 41, 22,218, 29, 0,194,195,195,179,135, 14, 29, 42, 49,155,205,168, 49,207, 30, 86, +100, 26,212,100, 89,150,145,201,100,159, 37, 38, 38, 46,143,140,140,196,168, 81,163,158, 75, 74, 74,122,174,125,251,246, 8, 10, + 10, 66, 73, 73, 9,206,156, 57,243, 63,134, 97, 94,207,205,205,213, 53,150, 15,106,237,220, 19, 19, 19,239, 1, 24, 27, 29, 29, +253, 34,151,203,133, 68, 34,225, 40,149, 74,206,241,227,199, 1, 96,242,206,157, 59,173, 62,252, 53,247,190,100, 75,206,213, 95, +113,175, 35,132, 44, 24, 55,110,220,151,175,189,246,154, 67,167, 78,157, 80, 86, 86, 86,107,250, 15, 31, 62, 12,134, 97,224,225, +225, 1, 15, 15, 15,220,187,119, 15,123,247,238, 53,148,149,149,173,230,243,249, 43, 26,211, 28, 59,118,236, 67,154, 22,243,118, +240,224, 65, 88, 6,145,120,120,120,224,238,221,187,216,179,103,143,174,172,172,108,149,193, 96,248,232,207, 60,247,167,141, 38, + 13, 86,113,113,241,204,183,223,126, 59,246,149, 87, 94,241,208,106,181, 28, 79, 79, 79,168, 84, 42,243,177, 99,199,138, 43, 42, + 42,102, 54,231, 96, 23, 46, 92,152, 54,104,208,160,213,223,126,251,237,198,141, 27, 55,246, 26, 53,106, 20,198, 14, 24,128,169, + 93,157,160,215,235, 65, 8,193,177, 99,199,238,156, 62,125, 58,144,207,231,235, 23, 45, 90,196, 0,120,100,130,216,250, 20,222, +216,127,215,167,237,208, 94,107, 62, 95,183, 43,170, 67, 23,255,150, 1, 45,133,221,253, 92, 96, 52,209, 80,231, 23,225,236,133, + 91,250,187,183,174,101, 51, 70,195,136,252, 91, 77, 87,113, 7,128, 91,183, 88, 35,128,153, 17, 17,146,197, 31,173,255,126,253, +119, 59,119, 15,125,117,212, 48,110,116,219, 88,100,228,253,136,159,147, 78,155, 75, 42,216,189, 21, 6,206,148, 91,183,202,155, +156,202,167, 62, 58,157,206, 84,191, 35, 72,167,211, 61,241, 36,215,219,183,111, 71,126,126, 62,115,251,246,237,147, 0, 54, 43, +149, 74,155,194,251, 22,166, 79,159, 62,115,237,218,181,253, 43, 42, 42, 90, 12, 27, 54,140,231,238,238,142,226,226, 98, 28, 57, +114,196,124,229,202,149,204,233,211,167, 55,171,142, 86,125,254,232, 81,132, 64,109, 4, 11,227, 39,253, 7, 90,109, 37, 46, 93, + 56,136,210,226, 66, 92,188,156,138,230, 68,176, 0, 32, 55, 55, 55, 75, 42,149,118, 89,186,122,205,158,184,206, 29,195, 67,101, +190, 66,143,128,150,112,242,242, 69,113, 81, 17, 46, 93,187,111, 90,123,226,236, 77,173, 78,103,211, 84, 57, 64,245, 23,162,101, +148, 91,196,140,249,160, 40,170,118, 22, 4,203,122, 73,135, 30,160,184, 60,208, 44, 96, 52, 26,155, 76,194, 82,169, 84, 57,114, +185,252,133,233,211,167,159,220,188,121, 51, 21, 19, 19, 19,185,127,255,254, 39,154, 52, 55, 39, 39, 71, 1, 0, 50,153,172, 92, + 34,145,112, 39, 76,152, 0,147,201,132,170,170, 42,148,151,151,163,168,168, 72, 63,107,214, 44, 33, 0,240,249,124, 83, 92, 92, + 92,147,247,143, 85, 59,115,116,179, 71, 40,214,120,242, 50, 70,150, 21, 92, 15,244,228,101,164,119,105,195,172, 89,181, 51, 71, +247,225,107,110, 75,149, 5,103, 82, 85,149,199, 54,108,217,179,155, 51,110,232, 11,180, 84,124,119,190,167, 31,118,198, 14,110, +186,189,245, 13,214,227, 70,174,234, 83,120,147,189, 18,216,213,101,121,236,136, 78,239, 44,157,243,137,216,211,203, 19,102,179, + 25,233, 89,105,248,118,207, 90, 77,133,190,100, 89,209, 45, 54,201, 22,173,192,192,192, 0, 14,135,131, 31,127,252, 17, 0, 44, +165, 13,214, 30, 57,114,100,228, 75, 47,189,132, 22, 45, 90, 68,180,108,217, 82,216, 88, 25,141,250, 88, 34,254,182,228,234, 53, + 7, 66, 72,218,181,107,215,228,114,185,156,108,223,190,189,210,104, 52,190,215, 92, 13, 95, 95,223, 79, 14, 29, 58,212,147,101, +217,184,168,168, 40,248,251,251, 3, 0,110,221,186,133,115,231,206,109, 83, 42,149,227,109,141,168, 54, 1, 75, 8, 65,121,121, +185,165,174,137, 81, 44, 22, 63,174,110, 85,157,200, 85,179,122, 16,254, 10,148, 74,229,119, 62, 62, 62,199,222,123,239,189,255, +182,106,213,234,245,201,147, 39,115, 66, 67, 67, 81, 86, 86, 6,137, 68, 2,169, 84, 10,165, 82,137,239,190,251,142,206,207,207, +255,150,162,168,197, 42,149, 74,245,184,154,110,110,110,144, 74,165,200,201,201,177,104,110, 52,153, 76,239, 23, 20, 20,252,229, +147, 37,255,219, 33,182,124, 72,107,202, 52,124, 70,211,116, 44, 80, 29,213, 42, 46, 46,158,153,151,151,247,104,249,246,186,226, +141, 56,220, 65,131, 6,181, 42, 44, 44,220,104, 52, 26,123, 13, 30, 60, 24,163, 70,141, 66, 66, 66, 2, 70,141, 26,197,177, 68, +173,126,252,241,199, 71, 10,229, 53,166,105,153,236,153,226,240, 7,177, 44,219, 14, 0, 33, 20,213,228,100,207,182, 56,241,168, + 8, 73,144, 72,200,124, 37, 18, 48, 61,180, 6,234,188, 86, 79,189,122,229, 86,185,213, 9, 70,109,209, 36,117, 38,103,174,153, + 22,166,209, 42,147, 86,158,230,107,187, 8,185, 92,222, 78, 15, 15,143,197,132,144, 44, 91,243, 58,234,105, 18,160,182, 14,214, +103, 92, 46,119,184, 86,171,117, 21,137, 68,165,102,179,121,215,244,233,211,103, 46, 90,180,168,177, 55, 12,107,173,157,114,185, +124,245,254,253,251,109,206,173, 26, 60,120,240, 13, 75, 94,150, 53,205,186,180, 10, 82, 28, 11, 10,144,247, 11, 10,144, 1, 0, +210, 50, 84, 72,203, 80, 30,191,159,150, 99,181,100,101,163,239, 37,242,251,100,207,164,166, 20, 3,107,195,100,207,245, 53,159, +121,230,153, 36, 14,199,250, 68,194, 13,193, 48,140,234,230,205,155,181, 53,203, 26,107,167, 76, 38, 27,237,231,231,183, 66,165, + 82,237,201,206,206,254,143,173,199,104, 66,179, 27, 69, 81,135, 25,134, 17,213, 93, 78, 81, 84,190,197,132,249,250,250,250, 11, +133,194,135,146,220, 27,211,252,104, 65,155,133,221,123,245, 28,250,203,217,115,123,223, 90,118,243,161, 2,186,111, 12,117,159, +248,210,180,153, 31,125,255,197,103,111,173,221, 91,252, 80, 73,141,134, 52,219,181,107,119, 6, 64, 72,205,250, 70,207,147,166, +105,213,205,155, 55, 31, 26, 86,110,235,147,183, 71, 59,210,209,213,201,115,137,193,104,108, 79, 17,176, 60, 62,255, 90,105,105, +225,194,134,204,149, 53, 77,133, 66,177, 34, 56, 56,120,230,253,251,247,183,101,103,103,191, 98, 89, 46,147,201, 62,110,217,178, +229,180,236,236,236,181,217,217,217,115,235,239,103, 77, 51, 48, 48, 80,210,190,125,251,146,197,139, 23, 83,139, 22, 45, 66, 98, + 98,162,123, 78, 78,142,205, 15,120,141,157,187,191,191,191,175,131,131,195, 22,134, 97,130,104,154,254, 34, 45, 45,205,166,201, +183,235,107, 70, 68, 68,240, 75, 75, 75,103,250,249,249,205,246,241,241,241, 81,171,213,153, 89, 89, 89,203,243,242,242,190,182, +213, 92,217,242, 63,138,142,142,214, 3, 16, 0,128, 45,249, 86,127,117,100,253,207,208, 84, 40, 20, 65, 12,195, 44,107,223,190, +253,240,137, 19, 39,146,148,148, 20,156, 56,113, 2, 15, 30, 60,216,203,178,236, 59,214,186,116,155,171,121,236,216, 49, 54, 51, + 51,115, 39, 69, 81,239,230,228,228, 52,248, 61,103,143, 96, 53,141, 77, 6,235,177,197,109,248, 7, 88,140,150, 94,175,127, 22, +128,230,250,245,235,206,141,109,255,119,127, 72, 98, 98,188,156,206,156, 41,104,124,104, 99, 51, 52,235, 38,168, 63,174,102,115, + 52,154,208,124,210,196, 66,171, 6, 75, 38,147,189, 65, 8,177, 57, 58,197,178,108,154, 74,165,170, 45,102,104,235,245, 12, 9, + 9, 97,239,221,187,103, 83,146,228,223,253, 94,250,255,164,249,229,178,118,178,246,157, 66,223,252,237,234,157, 79,106,186, 15, +107, 89, 60,195,221,185,123,239,152,119,127, 57,117,102,105,253, 81,132, 79,195,185, 19, 66,168,134,140, 5, 33,141,215,164,179, +166,217,162, 69,139, 47,163,162,162, 94,189,114,229,202, 55, 89, 89, 89,147,255,168,118, 62, 46,141,220,151,136,191,191,191,160, + 57,209,185,166, 52,159,132,167, 73,211,215,215,183, 3, 69, 81, 11, 1,128,162,168,101, 57, 57, 57,141, 22, 85,109,166, 38,205, +178,236,210,220,220,220, 70,103, 44,176, 27,172,166,121,172,201,158,255, 72, 14, 30, 60,120, 31, 64,204,224,193,131,189, 57, 28, +206, 31, 53, 73,231,159,134, 45,230,170, 57, 60,142, 41,250, 51, 52, 44, 82,127,144,206, 35,212, 53, 75,127, 38,119,239,222,125, + 42, 70,159, 60,109,188,190,224,186, 10,192,127, 58,245,121,116, 93,141,169,122,171,183, 13,221,130,255, 70,172, 69,109, 26, 51, + 87,141,145,149,149,245,186, 76, 38,155,221,156,209,135,127, 7, 53,231,215,108,115,101,167,105,242,242,242,146, 0, 36, 52,185, +225,223,172,249,255,157,191,221, 96, 89,216,191,127,127,254,223,221, 6, 59,118,236,216,249, 55,240, 79, 55, 87,118,236,216,169, +238, 18,106,112,218,152,230,132,254,234, 13,109,181, 9, 27,242,147,236,154,118, 77,187,166, 93,211,174,105,215,180,107, 62,101, +154, 77,105, 63, 45, 93,143,127,123, 14,150, 93,211,174,105,215,180,107,218, 53,237,154,118, 77,187,230,211,198, 31, 51,174,217, +142,157, 70,248,252, 85, 34,255,252, 85, 34,255,179,182,183, 99,199,142, 29, 59,118,254,105,252, 99,114,176,254, 40, 58,116,232, + 16,193,178,236, 75,132,144,225, 0,192,178,236, 46, 66,200,247, 73, 73, 73, 54, 85,160, 21,137, 68,121, 58,157,206, 27, 0, 28, + 28, 28,242,117, 58,157, 20, 53,163,235,134, 15, 31, 78, 10, 11, 11, 73,101,101, 37, 1, 0,177, 88,204,158, 61,123,150, 5,192, + 52,150,176,234,224,224,160,214,235,245,222,245,151,243,249,124,163,155,155, 91,137,183,183,119,137, 84, 42, 45,241,247,247, 47, + 9, 10, 10, 42,144, 74,165,151,162,163,163,119, 7, 5, 5,217, 84, 52, 18, 0,158,123,238,185,215,157,156,156, 22,106,181,218, +143,142, 29, 59,246,153,173,251, 61, 46,132,144,206,126, 50,223, 77, 38,179,145,201,203, 47, 94,192,178,236,143, 13,109,183,238, + 21,178,156, 75,170,139, 70,174,123,133,172,156,250, 77,227,165, 40,154,187,125, 35,237,235,192,227,241,222,240,241,241,137,207, +201,201, 73, 2,240, 22,203,178,246, 42,196,118,236,216,177, 99,231, 47,161, 89, 6,171,107,180, 71, 40, 97,140,115,121, 28,182, +167,137, 38,231, 88,138,191,242, 98,114, 81,234,147, 52, 64, 38,147,249, 17, 66, 98, 88,150, 13,167, 40,234, 6,195, 48,199, 85, + 42, 85, 81,115, 52,162,163,163,253, 0,140, 2, 48,186, 75,151, 46,109,166, 76,153,130,224,224, 96,232,116, 58, 36, 38, 38,206, +223,186,117,235,252,232,232,232,155, 0,182, 1,216,158,156,156,156,109, 77, 75,167,211,121, 91,188, 18, 33,196,123,242,228,201, +180,165,214, 14,203,178,112,115,115,179,212,222, 57, 70, 8, 57, 26, 22, 22,118,244,139, 47,190, 72,107,237, 45,234,210,210,207, +107,224,145,164,204, 5,245, 53,245,122,189,183, 58,249, 87,176,102, 26,149,202, 44,200,227,135,128,166,105, 48, 12,195, 63,210, +183,179, 15,163, 45,244,145, 58,186, 33,124,241, 98,131, 78,167,219,105, 48, 24, 10,130,130,130, 42, 26,211,172, 79,100,100,228, +251,239,189,247,158,231,224,193,131,223, 0, 96,213, 96, 53, 71,211, 26,132, 16, 97,151, 14,237, 78, 31,216,189,221, 1,132,194, +243, 67,135,111, 35,132,140,101, 89,118,119,221,237,214, 77, 32, 62,132,131,185, 83,102, 77,225, 0,192,186,213,235,223, 90,253, + 50, 89, 51,235,127,108,158, 92, 46,143,101, 89,246,173, 26,189,143,148, 74,229,233,117, 19,136, 15, 40,204,155, 50,107, 10, 1, +128,245,171,215,207, 93, 55,129,124, 54,117, 83,243, 70, 73, 18, 66,166,142, 31, 63,126,205,178,101,203, 56, 53, 69,248,226, 34, + 34, 34, 66, 9, 33, 17, 44,203,218,147,131,237,216,177, 99,199,206,159, 78,147, 6,171, 77, 27, 23, 87, 17,197,206, 22, 9,216, + 81,113, 61, 35, 2, 18,226,187,145,192, 86,129, 72, 77, 73, 13, 58,125,246,242,132,216, 78,206, 25, 90, 3,217,174,101,200,170, +155, 55, 27,159, 63,108,205, 92, 98, 50,153,171,143,201,231,130, 94,185, 67,177,183,111,223,190, 1, 19, 39, 78, 68, 84, 84, 20, +146,146,146, 98,119,238,220, 57,211,207,207,239,178,201,100, 58, 44, 20, 10,207, 52, 85, 67, 37, 58, 58,122,133, 92, 46,127,107, +206,156, 57,164, 67,135, 14, 16, 10,133,181,235,196, 98, 49,250,244,233,131, 62,125,250, 32, 47, 47,175,205,153, 51,103,218,124, +255,253,247,203,163,163,163, 63, 74, 78, 78,158,111,203, 5,122,227,141, 55, 26, 90,124,140, 16,114,148,162,168,163, 97, 97, 97, +105,193, 82,113,107, 31, 47,143,131, 31, 46, 91, 12, 0, 86,141,203,190,254,221, 0, 0,195,239,255, 94,159,149,173, 44,133,162, +125, 91,184,135, 71, 48, 58,157,110,183, 78,167,219, 29, 18, 18,114,200, 86, 77, 0,136,137,137, 17, 58, 59, 59, 19,150,101,209, +169, 83, 39,247,254,253,251,167, 82, 20,245,217,145, 35, 71,214,215,221,174, 57,154, 77,208,249,189,185,211,248,133,105, 87,113, +251,194,113, 12,137,150, 59, 92,249,237,206, 82, 0,187, 27,219,137, 16,138,218,156,228, 57,127, 22, 48,147, 97,152,133, 41, 41, + 41,189, 0, 32, 60, 60, 92, 0,224,244,150, 68,183, 1,227,187,149, 61,118,153, 5, 66, 8,159,195,225,124,177,101,203,150, 73, + 99,199,142, 69,102,102, 38,206,159, 63, 15,177, 88,140,247,223,127,191,229,156, 57,115,150, 3,104,214,236, 3,118,236,216,177, + 99,199,206,227,208,168,193,234, 25,237,148, 56,180, 87,171,232,193,253,187, 81,193,225, 17,224, 11, 29,107,215,181,141,138, 66, +219,168, 40, 50,121,114, 69,224,181, 43,215,222, 61,122,242,215,119,122, 70, 59, 37,159, 75,214,116,178,166,103, 50,131, 59,231, +149, 41, 87, 0,224,204,133,245, 81,169,169,169, 1, 34,209,239,197,162,123,245,234,133, 94,189,122, 81,203,151, 47,239,124,250, +244,233,206,219,183,111, 55,202,229,242,213, 74,165,114,103, 35,205,124,107,231,206,157,132,195,225,128,195,225, 88,221,200,215, +215, 23,207, 61,247, 28,124,125,125,201,220,185,115,223, 2,208,160,193,114,112,112,200, 39,132,120, 3,128,135,135, 7,214,172, + 89, 3,212,169, 15, 69,211,244, 49, 0, 71,121, 60,222,209, 13, 27, 54,164,183,146,139,228,206, 66,199,227, 27,191,252, 28,166, +114,181,187,181,227, 87,169,114, 26, 92,222,162, 99, 52,220,194,159, 97,120,238, 30, 63,235,116,186, 93, 33, 33, 33, 7,108,213, + 4,170,205,149, 72, 36,250,249,203, 47,191,116, 3,128,233,211,167,187, 86, 85, 85,185,190,250,234,171,243, 1,212, 26,172,230, +104, 90,131, 16,226,218,179,107,135, 7,107, 86,252, 87, 18,213,185, 7, 46,237, 90,135,210, 82, 13, 52, 21, 85, 96, 24,230,145, +153,127,167,254, 31,123,103, 30, 23, 69,253,255,241,215,103,102, 47,118, 57, 68,144,107,193, 19,143, 64, 80, 4, 20, 81,243,206, +210, 44,181, 50, 51, 21,191,150,230, 93,169, 37,154,229, 45,230,149,166,230,149, 87,105,150,119,105, 30,120,226, 45,135,120, 32, +162,120,195,130,128,156,238, 46,123,205,124,126,127,192, 18,226,178,187,152,253,190,213,119,158,143, 7,143,221,217,153,121,205, +103,102,150,221,215,190, 63,239,207,251,179,145, 62,250,238, 3,178,240,187,111, 86, 77, 38, 12, 67, 66, 94,253, 28,175,186,209, +241, 74,165,242, 26, 33, 68, 44,149, 74,205,186, 34, 63, 63, 63,101,179,102,173, 22, 54,233,240, 18, 86, 45, 91, 9,202,243, 20, +192, 66,123,163, 87,132, 16, 79,103,103,231,189,135, 15, 31,142,104,221,186, 53,206,159, 63,143,219,183,111, 99,204,152, 49,250, + 49, 99,198, 72,162,162,162,200,132, 9, 19,198, 17, 66,118, 80, 74,207, 60,207,249, 11, 8, 8, 8, 8, 8,216,139, 85,131,229, + 32,225, 90,207,248, 54, 25,156, 58, 29,212,248, 0,212,144,253,204, 54, 10,215,186, 8, 8,241,130, 66,234,193, 92,185,254, 77, +235,202,235,108,141, 48, 48,155,171, 29,139,149, 65, 90,117,150, 4, 0,228,142, 62,134,183, 39,100, 94,107,221,186, 53, 60, 60, + 60, 36,103,207,158,157, 0,160,194, 96, 89,208, 36,250,203, 9, 72,125,163, 61, 26,167,230, 67,161, 80,192,252,197,109, 38, 45, + 45, 13,113,113,113,184,127,255, 62,252,253,253,129, 42, 21,203, 43,107,106,181, 90,239,168,168, 40,245,164, 73,147,228,171, 87, +175,198,197,139, 23, 93, 19, 19, 19,139, 97,129,224,122,181, 92,165, 84,124,120,221,170,111,196,208,171,221,110,196,159, 65, 80, +207,143, 44,182,211,187,123,175,138,200,213,142,198,117,224,225,223, 16,202,150, 45,208,120,225, 6, 94,167,211,109, 47, 45, 45, +221,222,180, 73,147, 95,237,213,236,218,181,235,127, 68, 34,209, 23, 0,106,173, 89,179,198,213,213,213,149,217,187,119,175, 97, +245,234,213, 37, 18,137, 68, 79, 8,153,247, 60,237,180,134,152,101,103, 47,154,241,153,139,130, 49, 33,233,247, 31,145,113,255, + 1, 46,223,202, 52,254,124, 42,133,211, 27,185, 97,150,174,231,232,245,116,202,196,126,178,141, 9, 89,254,191,245,158, 62,166, +233,156, 55,189, 96, 48, 24,214,229,230,230, 98,248,240,225,224,121, 30, 29, 58,116,104, 79, 41,205, 28, 63,126, 60,252,253,253, +177,238,215,155, 26, 81,241,133,206, 91,142, 22, 39, 88,210,172, 10, 33, 36,184,126,253,250,135,143, 31, 63,238,229,235,235,139, + 19, 39, 78, 32, 59, 59, 27, 62, 62, 62, 24, 51,102,140,116,254,252,249,155,139,139,139,251,207,157, 59,215,225,234,213,171,219, + 8, 33,117,105, 25, 47,124, 4,140,160, 41,104, 10,154,130,166,160,249,151,208, 26,128, 7,128, 92, 0,241, 85,150, 81,254, 28, + 22,150,243, 80,246,157, 95,121,242,242, 60,148, 5, 78, 60, 0,112, 0, 46, 2,168,241,156,194,182, 16, 1, 0, 33,164, 19,128, + 19, 0,102, 82, 74,103, 84,221,200,144,121, 2,210, 6,111, 1, 14, 65,160,250,116,240,250, 76, 80,177, 39,212, 26, 7,228,221, +187,143,212,243, 59, 64, 77,182,231,200, 20,139, 96,218,125,112, 85,168,171, 51,192, 74, 61, 12, 37, 37, 37,112,116,116,132, 86, +157, 37,137,138, 42, 75, 27,218,188,249, 99,201,241,227,199,145,152,152, 8,165, 82, 89,209, 70,107, 80,125, 89, 47,162, 94,175, +135, 94,175, 71,118,175, 54,112,108,219, 17, 5,131,199,224,200,145, 35,200,205,205,133, 68, 34,129, 68, 34,129,201,100,187, 88, + 60, 33,132, 1,202,114,174,100, 50,153,197, 42,204,126,126,196,193,153,147,239, 91,190,100,158,139,139,147,194, 43,225,240, 30, +220,191,255,172, 1, 53,195,243,127,200,248, 4, 52,131, 79,139, 96,212, 14,106, 1,157, 78,183, 83,167,211,237,108,210,164,201, +158,154,104,178, 44, 59,107,231,206,157,190, 58,157, 14, 18,137, 4, 59,118,236, 48,108,218,180,233,154, 90,173,126, 57, 49, 49, +177, 34,207,168,166,237,180,134,187,135,199,254,183, 6,125, 52,102,206, 7,175, 64,171, 46,197,238, 83, 41, 56,122,229,238,155, + 0, 78, 83, 74,171,173,112,191,120,183,238,150,175,175,111,183,225,195,135, 95,218,181,107, 87,157, 69,139, 22,129,227, 56,152, + 76, 38,152, 76,166,138,231, 28,199,225,167,159,126,194,233, 11, 41,227, 85,170, 98,187, 38,211, 37,132, 40, 27, 54,108,120,228, +194,133, 11, 30, 10,133, 2,177,177,177, 40, 44, 44,196,232,209,163, 43, 34, 87,133,133,133,239,173, 90,181,234,237,123,247,238, + 45, 58,117,234,212, 99, 0, 44,128,191,253,172, 1, 2, 2, 2, 2,255, 75,216,240, 34, 30,132,144,125,148,210,222, 0,186, 3, +144, 86, 90, 6, 33,100, 31, 0, 84, 93,142,142,142,158, 26, 19, 19,115,205,188,108,222,102,202,148, 41, 65,243,231,207,159, 23, + 25, 25,185,237,236,217,179,119,240, 87, 25, 44, 0, 39,168,149,185,219,116,233, 91,160,187,243, 51, 36, 62, 93, 32,109, 52, 0, +226, 58,145,120,120,227, 4, 46, 29, 89,130,140,155,167, 65,121, 14, 94,117, 3,108, 30,108,252, 66, 42, 86, 42,149,137, 42,149, + 10, 73, 73, 73, 72, 79, 79,135,131,195, 51, 61, 75, 56,122,244, 40, 0,192,203,203,203,174,147,144,182,110,143,186,201, 89,120, + 24,226, 3, 0,168,155,156, 5, 0,152, 55,101, 10,164, 82, 41, 36, 18, 73,197,182, 28,199,217,212, 35,229, 89,236,148, 82, 60, +121,242,196,226, 28, 98,141,189,156,183, 79,143, 30, 91,191,161,127, 19,229,133,253,191,224,206,157, 76, 60,122,100,249,254, 56, + 59, 59,151,240, 60, 95, 49,199,162,111, 88, 40, 92,155,183, 0, 91,199,235,184, 94,175,223,217,184,113,227, 93, 53,213, 4,240, + 75,255,254,253,255,211,175, 95, 63,121,219,182,109,101,235,215,175, 47,172,106,174,158, 67,179, 90,124,124,124, 94,125,253,245, +215,247,143, 24, 49, 2,125, 94,235,142,247, 59, 4,210,140,156, 34, 45,128, 88, 74,169,205,139,154,153,153,153,233,235,235,251, +202, 91,111,189,181, 37, 40, 40, 40,144, 82,138,128,128, 0,244,233,211, 7, 59,119,238, 68, 74, 74, 10, 74, 74, 74, 12,167, 78, +157, 90,170, 82,169, 54,216,210, 43, 63, 63, 69,237,218,181, 15, 30, 59,118,204, 67,161, 80,224,240,225,195,208,104, 52,207, 68, +174,230,205,155,231,112,247,238,221, 21,135, 14, 29,106, 0,128,161,148, 10,230, 74, 64, 64, 64,224,239,135, 85, 47, 2,148, 25, + 39, 74,105,239,202,134,169,170,209, 50, 63, 55,111, 23, 19, 19, 83,177,108,222,103,254,252,249,243, 42, 45,219,142, 16, 61, 7, +102,131,213,153, 16, 66, 1,116,166,148,158,172,188, 65, 69,245, 1,222, 4, 67,102, 44, 12,153,177, 80,132,124,129,189,223, 14, +126, 74,200,158,200,144, 37, 74, 75, 75, 33,150,186, 27, 54,111,254, 88, 2, 0, 28,117, 52, 60,115,108, 27,212,164, 88,170,157, +237,172, 48, 88, 90,173,246,153, 29,252,252,252, 22, 71,182,143,232,208,164, 69, 27,197,133,131,187,112,235,230,125,228,229, 21, + 1, 20,165,150,196, 60, 60, 60, 30, 31,235,223,211, 89,202,105,225,213,162, 5,234,125,185, 20, 90,173,118,151,193, 96,216,238, +239,239,191,227,121, 52, 99, 99, 99, 39, 69, 70, 70,126, 5, 32,237,197, 0, 0, 32, 0, 73, 68, 65, 84,185, 99,199, 14,149,191, +191,191, 76, 36, 18, 25, 42,155,171,231,209,172,138, 82,169,108, 47, 18,137, 14, 51, 12, 35,127,237,181,215, 48,126,252,120, 44, + 91,182,204,196,139, 29,122,175, 58,152,208,255,137,206,240,133, 61,230,202, 76,102,102,230,101, 0,205, 27, 52,104, 32, 51,153, + 76, 93,222,120,227,141,223,123,245,234,133,115,231,206,225,200,145, 35, 77, 13, 6, 67, 86,249,113,103, 1,240, 98, 24,102,129, +149,153,220, 25,137, 68,178,237,200,145, 35, 65, 74,165, 18,177,177,177,208,104, 52, 21,145,171,161, 67,135, 62, 21,185, 58,123, +246,236, 99, 8,230, 74, 64, 64, 64,224,239, 76,181, 94,196,140,217, 52, 85, 53, 89,246, 80,201,124,105,163,163,163,167, 18, 66, +246,149, 71,184,180, 0, 84,127,190,249, 79, 35, 42,111,240, 73,148, 79,238,142, 42,249, 73,150,224, 74,238, 60,243, 26,207, 63, +255,247, 86,211,238,135,174,201,229,114,172, 90,181, 10, 10,197, 31,137,244,246, 26, 39,245,239,187,240,112,204,160,138,200,149, + 57,146,133, 87,163,158,217,214,206, 46, 66,179,193, 58, 20, 18, 18,242,212, 14,126,126,126, 99, 91,182,108,249,193,218, 77, 91, +156,231,127,249,121, 81,113,234, 53, 81,169, 70,231,168, 51,154, 12,233,143,242, 44,150, 71, 80, 42,149,249,181, 61, 92, 26, 58, +251,188, 4,215,192, 22,208,233,116,123,202,187, 5,119, 62,175, 38, 0,156, 59,119,174,180, 91,183,110, 27,231,205,155,215,150, +231,249, 77,127,182,157, 85,218,220,222,221,221,253,208,138, 21, 43,228,114,185, 28, 58,157, 14, 11, 22, 44,192,209,163, 71,123, +103,101,101, 29, 2,112,200,230,133,172, 6,131,193,240, 97,247,238,221,191,153, 52,105, 18,140, 70, 35, 6, 12, 24,128,123,247, +238, 29,190,117,235,214, 50, 63, 63,191, 73,163, 71,143, 86,214,169, 83, 7,163, 70,141,146, 0, 24, 90,141,204,215, 91,183,110, +237, 29, 18, 18,130,147, 39, 79,162,168,168, 8, 62, 62, 62, 24, 59,118,172, 52, 38, 38,102,115, 73, 73, 73,255,152,152, 24, 33, +114, 37, 32, 32, 32,240, 15,193, 94, 47, 82, 57, 18, 85, 67,125,243,126,226,152,152,152,107, 49, 49, 49, 79, 69,184, 94, 52,230, + 28, 44,179,147,233,108,161, 65,207,236,196,107,159,205,225,225, 57,251,191,187,236, 53, 78,246,116,231, 1,127,228, 96, 85,197, + 92,191,170,242,114, 13, 12,214, 33, 66,200,193, 29, 59,118, 84,116, 17,250,249,249,245,245,246,246,254,122,235,214,173,114,149, + 74, 5,191,102,193,181,246,239,252, 89,231,229, 40, 43,205,200,207,143, 74,206,124,178,195,146, 94,253,250,245, 31,187,214,115, +130, 75, 64, 48,136,167,242,104,105,105,233,142,172,172,172,157, 77,154, 52,225,159, 87,211,204,209,163, 71, 39, 86,125,237,207, +106, 42,149,202,246,117,234,212, 57,180, 98,197, 10,133, 74,165,130, 68, 34,129,147,147, 19,142, 29, 59,134,114,115,245,220,248, +249,249,205, 24, 55,110,220,244,161, 67,135,162,160,160, 0, 71,142, 28, 65,151, 46, 93,176, 98,197,138,250,199,142, 29,251,166, + 93,187,118, 96, 89, 22,177,177,177, 48, 26,141, 55, 45,105, 16, 66,250,141, 24, 49, 98,210,219,111,191,141,139, 23, 47, 34, 43, + 43, 11,163, 70,141,210,143, 29, 59,182, 34,231,234,187,239,190,123,251,238,221,187, 66,228, 74, 64, 64, 64,224, 31,130, 53, 47, + 82,133,253, 0, 94, 55, 47, 84,142,102, 85, 54, 95,230, 8, 85,229,229,170,219,151,175,183,171, 87,167,166,152, 35, 88,213, 71, +173, 40, 7,214,173, 37,184,252,203, 21, 47,241,218,172,167, 54,145,200,156,192,217, 97, 92,190,253,140, 24,151,127, 2,209,201, +181, 12, 24,137,187,193, 49,248,208,181,234,182,117,114,114,122, 42, 49,220, 10,156,164,215,219,108,227, 87,251,226,118, 11,111, + 80,163,161, 34,146,133,169, 21,215, 21,132, 16, 72, 36, 18,232,245,122,160,108,212,128, 53, 98, 9, 33,135, 89,150, 61, 72, 41, +165,157, 59,119, 94,103, 52, 26,251, 58, 57, 57,213, 30, 62,124,184, 33, 47, 47, 15,187,119,239,198,198,141, 27,181, 79, 12,162, +132,130,199,198,193,183, 85, 79, 44,215, 97, 0,208,172, 89,179,124,239, 15, 63,132, 94,175,255,173,180,180,116,123, 73,113,241, +206,153, 51,103,174,154, 54,109,218,115,107, 90,226,207,182, 19, 40, 51, 87,158,158,158, 21,230, 74, 38,147,193,201,201, 9,153, +153,153, 16,137, 68,127,170, 72,103,131, 6, 13,100, 17, 17, 17,147,163,162,162,144,154,154,138,232,232,232, 44,149, 74,181,107, +239,222,189,163, 38, 76,152, 32,234,212,169, 19,114,114,114,176,122,245,106,227,197,139, 23,231,101,103,103, 47,180,164, 35, 18, +137, 62,156, 61,123, 54, 85,169, 84,228,246,237,219, 79, 69,174,138,139,139,251,199,196,196, 56,220,185,115, 71,136, 92, 9, 8, + 8, 8,252,131,176,145,127,149, 87,110,158, 30, 89, 88,102, 43, 25,171,170,203, 57, 85,150, 1, 64, 95,101,125,242,139, 57,131, +167,177, 58, 66,207,200, 49, 69, 91, 87,124, 84,235,205,119, 70,195,193,187, 35,244,119,127, 1,175,125, 84, 97,176, 36, 14,206, +112,169, 83, 15,197, 79,180, 56,115,253, 14,140, 28, 83,100, 85,207, 4, 81,191,215,254,168,131,229,234,234,138,162,162,162,167, + 34, 90, 10,133, 2, 74,165, 18,197,197,197,216,177, 99, 7,108,213, 44,162,148,206,142,138,138,250,106,244,232,209, 76,227,129, +195,240,228,252,169,167,214, 19, 66,224,224,224, 0,185, 92,142,204,204, 76,220,184,113,131,167,148,206,182,122, 85,128,195, 12, +195, 28, 92,185,114,229,237,206,157, 59, 15,173, 93,187,246,192, 97,195,134,201, 47, 94,188,136,217,179,103,139, 98, 99, 99, 13, +241,241,241, 38,142,227, 38,102,102,102,174,182,161,133, 86,173, 90, 61,214,233,116,251,117, 58,221, 78, 0, 59, 39, 77,154,244, +254,159,213,172,202,139,104,167, 82,169,108,167, 84, 42, 15, 45, 91,182, 76,145,157,157, 13,153, 76, 6,103,103,103, 60,120,240, + 0,179,103,207, 86,155, 76,166,215,106,218,174, 42,200, 28, 29, 29,101, 70,163, 17,155, 54,109, 66,102,102,102,100, 86, 86,214, + 3,111,111,239,213, 35, 71,142,252, 54, 48, 48, 48,224,198,141, 27, 55,159, 60,121, 50, 38, 59, 59, 59,181, 58, 17, 87, 87,215, + 72, 15, 15, 15,114,238,220, 57,140, 26, 53, 74, 63,110,220,184,138,156, 43, 33,114, 37, 32, 32, 32,240,175,228,162,141,229,191, + 29, 86, 39,123,206,213,104, 61, 87,111,222,245,237,128,119,187,149, 30, 58,118, 12,168, 31, 5,177,239,171, 0,235, 0,101,211, +246,240,104,208, 22,201,183,178,177,251,212,181,210,180, 76,253,183,185, 26,237, 83,243,237, 17, 66,130,173,233, 23, 21, 21,161, + 65,131, 6,208,166,244, 10,122,116, 42, 32,180,111,224,242,208, 8,207,197, 65,199,142, 29,195,226,197,139,159,164,165,165, 45, +105,218,180,233, 36,107,154, 73, 73, 73, 51, 31, 62,124,216,106,202,148, 41, 7,191,200, 40, 70,193,172,149, 40,254, 36, 10,217, +221, 90, 64,161, 80,160, 78,157, 58, 80,171,213,136,139,139, 67,114,114,242,193,210,210,210, 86, 73, 73, 73, 51,173,105,150, 79, +129,115, 59, 34, 34,194,185,168,168,104, 89, 84, 84,148, 92,173, 86, 35, 47, 47, 15,143, 31, 63,198,133, 11, 23, 98,245,122,125, +144, 53,211, 82, 89, 51, 32, 32, 32, 81,175,215,239,204,203,203,219, 57,104,208, 32,233,139,208,172,204,139,106,167,163,163,227, +103,187,119,239, 86, 48, 12, 3,153, 76,134, 90,181,106,225,225,195,135,152, 53,107,150, 90,171,213,190,166, 82,169,236, 42,208, +105,237,190,243, 60, 15,147,201, 4, 74, 41,164, 82,105, 49, 0,100,103,103,167,222,190,125,187,219,175,191,254,234,115,235,214, +173,206,150,204, 85,101,205,188,188,188, 19,247,238,221,131,163,163, 35,198,141, 27, 39,157, 55,111,222, 15,203,150, 45, 43,141, +137,137,145,116,239,222,125,197,161, 67,135, 94,210,106,181, 29,109,153, 43, 91,239,207,231, 65,208, 20, 52, 5, 77, 65, 83,208, + 20, 0,108, 68,176, 82, 82,168, 1,192,199,205,155,187,204, 92,176,106,235,170, 31,182,239,236, 55,252,189,183, 68, 97, 45,186, +224,110,246, 94,196, 37, 28, 55, 21,148,208,221, 37,122,118, 84, 74, 74,177,205,177,255, 98, 17, 76,139,215,175, 10, 5, 0,137, + 24,166,249,179,122,159, 8, 10, 10,234, 48,188,107,142,228,173,119,202,242,174,119,237,248, 88,114,226,196,137,237, 50,153,108, +205,157, 59,119, 44, 22,248,172,202,165, 75,151,174, 0,232,217,186,117,235,142,147, 38, 77,250,186, 87, 67,191, 54,253, 34, 59, + 67, 44, 22, 35, 62, 62, 30,249,249,249, 23, 25,134,153,156,148,148, 20,103,143,222,247,223,127,127, 27, 0, 52, 26,205,236,166, + 77,155, 74,175, 95,191,142,244,244,116,164,165,165,129,227,184, 91, 25, 25, 25, 53, 74,136, 51,153, 76,199,138,138,138,242,219, +182,109,107,212,104, 52,243, 95,132,102,101, 94, 84, 59,181, 90,237,188, 57,115,230,244,152, 57,115,166,204,217,217, 25,151, 46, + 93,194,204,153, 51,213,165,165,165,118,155, 43, 91, 80, 74, 97, 52, 26,107, 52,242,211, 2,147, 67, 66, 66, 94,154, 51,103, 78, +211,242, 92, 46, 33,114, 37, 32, 32, 32, 32,240,183,194,174,201,158,203,205,211,187,161,205, 93,252,231,173,220,178, 78, 46,229, + 59,104,245,204,105,173,142, 25,158,148, 82,108,113, 24,189, 37,198, 47,164,226,202,203,227, 22, 0,205,155, 55,119, 76, 76,197, +147,183,202, 95, 75, 76, 5, 84, 42,213, 2,251, 79,225, 15,226,227,227,227, 0, 68,132,134,134,246,251,157,144,169,192, 29, 80, + 74,231, 37, 37, 37,237,174,137, 78,155, 54,109, 26,168,213,234, 31, 12, 6, 67, 43,158,231,165, 39, 79,158, 68,105,105, 41,174, + 95,191,174,229,121,222,106,130,184, 37,234,215,175,255,232,221,119,223,125,161,154,127, 69, 59, 51, 50, 50,226,149, 74,101,119, + 66,200,145,201,147, 39,203,102,205,154,245, 66,205,149,155,155,155, 38, 59, 59,251,113,105,105,169,251,163, 71,143,244,110,110, +110,207, 85,123,132, 82,122,139, 16,210,226,211, 79, 63,157, 53,105,210,164,207,190,254,250,107,137,144,115, 37, 32, 32, 32, 32, +240,119,194, 46,131,101,166,220, 76,117,238,220,217,195,241,244,217,220,106, 43,119,215,132,148,148, 20,245,140,143,136,105,202, +204,143, 69, 0, 32,149,252,249, 10,219,229,134,170, 70,166,170, 50, 37, 37, 37,243,242,243,243,219, 22, 23, 23,155,238,222,189, +171, 37,132,152, 8, 33, 90,158,231,103,241, 60, 95,227,252,168,127,146,166, 74,165, 58,227,237,237,253,242,153, 51,103, 38,168, +213,234, 21, 42,149,234,236,243,232, 88, 34, 49, 49,209,232,227,227, 51,232,141, 55,222, 24,198,243,252,234,204,204, 76,227,243, +106, 81, 74,245, 0, 38, 19, 66,118, 93,185,114,229,151,179,103,207,102, 65, 48, 87, 2, 2, 2, 2, 2,127, 19,106,100,176,204, +156, 56,241, 98,204,149,153, 25,107,158,142,108,253,183,185,113,227,198,123, 0,222,251, 95,212, 4,128,236,236,236,132,191, 66, + 23, 0,178,178,178, 14, 3, 56,252,162,244, 40,165,241,132,144,134, 40, 27, 37, 34,152, 43, 1, 1, 1, 1,129,191, 5,207,101, +176, 4, 4,254, 78,208,178,132, 46,193, 92, 9, 8, 8, 8, 8,252,109, 32, 0, 44,142, 4,168,201, 76,217,207, 51,154,192,150, +190,160, 41,104, 10,154,130,166,160, 41,104, 10,154,255, 62, 77, 91,218, 53,241, 31,127,103,200,159, 28,205,101, 93,156,144,224, + 23,125,161, 4, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,247,105,254,219,176, 90, 7, 75, 64, 64, 64, 64, 64, 64, 64, 64, +160,230,212, 56, 7,171, 77,155, 54, 77, 0,224,226,197,139,183, 94,124,115,202, 32,132,140,245,241,241, 25,222,178,101,203, 64, +137, 68,194, 20, 21, 21,205, 60,113,226,196, 76, 75,219,134,132,132, 36,244,232,209,195,255,248,241,227,250,242,125, 81,249,145, +227,184,140,132,132,132,240,191,170,173, 2,214,241,241,241, 57,228,224,224, 80,191,172,192, 40,133,137,231,192,241, 20, 28,199, +195,200, 81, 24,244,165,247,117,234,162, 87,159, 75,187,213, 91,245, 56,142,143,161,160,171, 8, 37,163, 40,161,171, 8, 37, 35, + 41, 67, 86, 17,158,126, 4,145,105, 17, 76,162, 73, 34, 94,252,133, 42,101,251,195, 23,125,110,255, 13,102,206,156,249,167,126, + 20, 77,159, 62,221,226,252, 83,161,161,161,251, 28, 28, 28, 26, 87,183,159, 70,163,201, 74, 78, 78,238,242,103,142,253,119,199, +219,219,187, 35,195, 48,203, 1, 4, 85, 89,149, 10,224, 99,149, 74,117,244,191,208, 44,171,120,122,122,198,177, 44,219, 84,173, +209,168, 75,138,139,253,157,157,157,111,203, 21,142,142,156,137,187,153,151,151,211,241,191,221, 62, 1,129,255,101,108, 26,172, +176,176,176,102, 0, 58, 17, 66, 58, 81, 74, 59, 6, 4, 4,120,105, 52, 26,132,133,133, 61, 34,132,196,149,207,126,125, 50, 49, + 49, 49,237, 69, 52,136,101,217,133,203,150, 45,155, 56,110,220,184, 10,147,116,245,106,245, 81, 72,150,101,253,230,207,159, 95, +235,193,131, 7,144, 72, 36,144, 74,165, 21,127, 44,203,162,109,219,182, 53, 58,190,155,155,155,179,167,167,231, 76, 66, 72,127, +134, 97, 88, 91,219,243, 60,207, 81, 74,183,231,228,228, 76,207,207,207, 47,169,201,177, 90,135,183, 52, 2,164,154, 99, 80, 46, + 62,225,178,213,209,149, 47,189,244, 82,130, 72, 36,242, 3, 44, 79,108,109,233, 57,199,113, 25,215,174, 93,179,203,112,186,185, +185, 57, 59, 40, 20,159, 17, 70,212, 29,148, 15, 40, 19, 99, 82, 41,111, 58, 82,170,209, 44,180,231,124,101, 50, 89,253,196,164, +164,166, 41, 55,238,192,191, 81, 61,232, 13, 38,232,244, 70,236, 61, 18,143,144,192,134,120,179,215, 43,246, 52,197, 34, 38,158, +204,248, 98,236,224,174,243,150,255,212,122,234,184,129, 78,243,150,255, 20, 62,117,220, 64,231,121, 43,126, 10,255, 98,252,251, +206,115,150,111, 13,255, 98,252,251,181,230, 46,223,170, 7,240,225,243, 28,227,131, 22,245,213, 12,103,146, 89, 90,199,179, 34, +221,250, 43,247, 29,159,251, 4,254, 4,243,230,205,107,102, 48, 24,174, 15, 29, 16, 62, 59,160,137,103,142,165,109,138,138,114, + 60,211, 83, 19,190,132, 88, 18, 24,216,102,170,213,255, 79,137, 68,210, 40, 46, 46,174,169,185,210, 62,199,113,224, 56, 14, 38, +147, 9,122,189, 30,111,191,253,246, 11, 25, 16, 19, 30, 30, 62,140, 82, 58, 23,101,115,170,207, 73, 72, 72, 88,241,188, 90,132, + 16, 39,145, 72,244,169, 84, 42,237,100, 50,153, 2, 1, 64, 44, 22, 95,215,233,116, 39, 77, 38,211, 55,148,210, 39, 53,209, 99, + 24,102,233,197,139, 23,155, 59, 59, 59,195, 96, 48, 84, 76, 12,207,178,108, 64, 68, 68,196, 74, 0, 77,237,213,242,243,243, 75, + 32,132,248,213,228,248,148,210,140,140,140,140, 26,253, 24,100, 89,182,233,189, 7, 42,207, 6,245,148, 0, 0,133,194,209, 49, +254,234, 93,207,176,160, 6, 53,145, 17, 16, 16,248, 11,168,246, 67, 51, 44, 44,236,119, 0,157, 2, 2, 2,228,175,188,242, 10, + 66, 67, 67, 81,191,126,125, 56, 56, 56, 0, 0,242,243,243,189, 82, 82, 82,222,189,116,233,210,187,231,206,157, 67, 88, 88,152, + 22,192,233,196,196, 68,139,209,136,238,111,116, 26,231,232, 44, 95, 6, 0,143, 50,115,179, 30,166,103, 47,207,202,202, 90, 72, + 41,173,248, 69, 77, 8,241, 31, 58,116,232,132,241,227,199, 99,223,190,125,248,233,167,159,160,211,233, 80, 84, 84,132, 19, 39, + 78, 88,108, 39,199,113, 25, 67,134, 12, 17,165,165,165,153,202, 53, 80,249,145,227,184, 26, 77,152,236,233,233, 57,243,131, 15, + 62,248, 36, 60, 60,188,226,203, 69,175,215,195, 96, 48, 64,175,215, 35, 39, 39, 7,227,199,143, 7, 80, 86,149,156,231,121, 28, + 57,114,100, 92,116,116, 52, 0,124,106, 73,243,149, 78,141, 19, 68,132,248,153, 79,148,231,249,140,216,184,219,225, 0, 97,227, + 19,146,159,114, 70,230,156,184, 54,173, 91,217, 52,119, 34,145,200, 47, 41, 41,201, 83, 34,145,216,117,110, 60,207, 35, 52, 52, +212,174,109,125,125,125,187, 56, 58,185,252,212,239,189, 15,106,183, 10, 13, 21,251, 41,125, 96, 52,153,112,231,238,131, 54,201, +151, 18, 91, 29,254,237,231,225,190,190,190, 3, 51, 51, 51,143, 91,211, 49,114, 60,146,175,221, 66,236,233, 36,188, 33,113,128, +166, 84,143, 18,141, 30, 63,252,122, 6, 25, 57, 86,167,174,180, 74, 68, 68,132,175,163,168, 78,196,248, 15,251, 58, 46,250,110, +179,227,248, 15,251, 98,241,170, 31, 42, 30,199,125,208, 7, 11,191,219,236, 52,254,131, 62, 88,190,122, 99,100, 68, 68,132,239, +133, 11, 23, 50,171,211,171,238, 30, 49,156, 73,182, 46, 37,147, 5,128,220,213,171, 97,120,244, 8,202,233,211, 1, 0, 35,130, +252, 44, 26,175,234, 8, 14, 14,174, 48,196,214, 48,153, 76, 25, 87,175, 94,173,246,139,214,108,174, 76, 38, 19, 21,137, 68, 95, +158, 58, 48,115, 71,187, 54,205,158,186,152,105, 55,211,106,205,248,106,250, 59,191, 28, 44,161,239,190,230,124,253,250,197,121, + 86, 77, 22,207,243,140, 78,167,195,205,155, 55, 45, 86,217,103, 24,198,214, 4,233, 22,233,220,185,179, 76,173, 86,111,117,114, +114,106,169, 86,171,135, 81, 74,191, 58,113,226,132, 23,195, 48,232,222,189,251, 87,225,225,225,119,101, 50,217,119,165,165,165, +151,156,156,156, 6,158, 56,113, 66,103,143, 46, 33,164,163,179,179,243, 15,123,246,236,169, 29, 26, 26,202,228,229,229,161, 97, +195,134,200,207,207,111, 19, 23, 23, 23,246,193, 7, 31,124, 64, 8, 25, 66, 41,181,107,246,134,114, 94,114,116,116,164, 81, 81, + 81,132,227,254, 56,221,245,235,215, 35,172,241,163,198,163,222,145,107, 74, 13,180,232,212,101,135,145,148,161,167,239,221, 43, +172,246, 13, 76, 8,241,155,185,238, 99, 79,169, 84, 10,163,209, 88,241, 71,121, 0, 20,160, 60, 64,121, 10, 74, 1, 80, 2,158, +227,177,120,202,186, 26, 52,245,105, 20,142,142, 10,111,111,159, 71,114,133, 66,241,215,101,213, 10, 8, 8,212, 4,107,191, 74, +123,158, 56,113, 2, 38,147, 9,206,206,206, 96,217,167,191,239,221,220,220,208,177, 99, 71, 68, 68, 68,160,123,247,238,184,113, +227,134,252,235,175,191,174, 54, 28, 49,236,179,183, 81,191,169, 47, 0,128, 82,234,115,226,183, 11, 49,223,205,216, 82, 7, 64, +229,185, 6,135,141, 24, 49,130, 60,126,252, 24,253,251,247,143,211,233,116,125, 40,165, 86,167,203, 73, 78, 78,126,161,221,127, +132,144,254, 45, 90,180,192,119,223,125, 7,173, 86,251,204,122, 23, 23, 23, 92,187,118,173, 98,153,101, 89,132,135,135,179,132, +144,254,168,198, 96, 49,132,248, 29, 56,113,171, 98,158,198, 1,111,182,146,244,232,212,248,145,136,145, 82, 0,228,139, 47,190, + 0, 80,102,174, 40,165,152, 53,107,150,221,237,149, 72, 36, 72, 77, 77, 5,203,178,184,221,161, 25, 0, 32, 56,233, 33, 88,150, + 69,114,203,178, 95,181,145, 55, 11, 32, 18,137,224,228,228,100,151,166,175,175,111,103, 47, 31,191, 61, 83,166,199, 56,151, 26, + 41,246, 31,187,136, 7,170, 88, 80, 74,225,227,233,134,118, 97,161,226,192, 22, 45, 61, 55,172, 92,184,199,215,215,183, 79,102, +102,166,101,247, 11,192,100,226, 16,216,172, 17, 54,237,137,195,220,239,118,224,113,113, 41, 74, 52,122, 0, 64,247,200,230, 88, +191,216,238, 83,125, 10,150,101, 23, 6, 52,106, 84,119,211, 47,135,208,174,109, 27,108,250,229, 32, 34,219,182,193,166,237,101, +203,155,183, 31,194,203,145, 17,216,188,253, 16,130, 3,155,214,123,124,175,104, 33,172,212,246,122,230, 30,245, 41,187, 71, 13, + 89, 9, 1,202,238,205,189, 81,163, 0,160,194, 96,213, 20,179, 33,182,181,157, 53, 19, 92,201, 92, 33, 39, 39,135, 20, 22, 22, + 82, 87, 87,215,119, 42,155, 44,179,185,250,249, 64, 49,180,105,203,201,150, 45, 39,249, 65,131, 58, 93,191,126,113, 94, 32, 48, +221,226, 36,218, 6,131,225,110,143, 30, 61, 40, 0,232,245,122, 95,169, 84,250,148,107,231,121, 94,217,190,125,251,103, 12,154, +173,174, 67,181, 90,189,117,251,246,237,253,188,188,188,208,167, 79,159,195,205,155, 55,151, 42, 20, 10, 28, 56,112, 0,126,126, +126,117, 92, 92, 92,126,143,137,137,193,146, 37, 75,234, 29, 62,124,248, 39, 0,253,108, 93, 31, 66, 72,247, 46, 93,186,108,219, +183,111,159,131, 68, 34,129, 86,171,197,181,107,215, 80,171, 86, 45, 72,165, 82,244,233,211,135,109,215,174,157,123,151, 46, 93, +118, 18, 66, 6, 82, 74,143,216,210, 52,163,213,106,233,148, 41, 83,160, 80, 40,224,232,232, 88,241, 39,151,114,100,213,140, 70, +242, 79,230,103,203,191,248,124,208,252,181, 27,126, 59, 94,175, 94,173,175, 30, 60, 40, 42,172, 78,203,143,109,129,232, 73,209, + 0, 0,134, 97, 32,149, 74,159,138,178,155,159, 75, 36, 18,180,106,213,202,102,219, 2, 3, 3, 87,179, 44,235, 81,249, 53,134, + 97,216, 47,167, 77, 53, 93,185,118,195,209,104,130, 99,169,222,136, 57,179,190, 50,177, 12,203, 6, 7, 7,239,166,148,230, 94, +187,118,109,164,189,231, 47, 32, 32,240,226,176, 26,246,119,114,114, 66,124,124, 60, 8, 33,112,118,118,134,139,139, 11,106,213, +170,133,226,226, 98,164,164,164, 32, 53, 53, 21,119,239,222, 5,195, 48,240,247,247, 7,202,202, 62, 84, 80,121,132,193,134,133, + 59,225,232, 44, 7, 33, 4,145,175,132,161, 77,183,112, 92, 62,127,243, 99,165, 82,185, 78,165, 82,221, 36,132,136,130,131,131, + 63,104,219,182, 45,150, 44, 89, 2,157, 78,247,141, 37,115,101,105,212,194,200,126,226, 83, 18, 17, 83,215, 96,226, 31,174,222, +109,124,185, 85,171, 86, 9,161,161,161, 13,175, 92,185, 98, 4,202,162, 89, 85,187,201, 42,231,101, 85,213, 84,171,213,224,121, +139,169, 42,207, 64, 41, 69,113,241,179, 30,176,178,102,213,136,192,156,152, 37,174, 37, 69, 57,152,189,224, 71, 24,141, 70, 76, +156, 56, 17, 60,207,131,231,121,112, 28,135,130,130, 2,192,194,207,208,170,237, 52,159, 19,203,178, 79, 25, 96, 91,203,214, 52, + 61, 60, 60, 28,101, 14,138,159, 38,125, 49,219,249,114, 90, 6,246, 29,187, 8, 74, 41,246,174,253, 10, 0,208,103,196, 44,100, +102,229,162, 93, 88, 0,134,126,244,169,243,210,152, 47,126,242,240,240,104,156,155,251, 71,241,217,202,154, 70, 19,143, 29, 7, +207, 33,235,241, 19, 12,233,215, 21, 58,189, 17, 57,143,178,176,241,187, 69, 24,253,159, 93,168,237, 36,247,246,247,247, 79,171, +124,141,156,157,157,217,210,210,210,184,180,180,180, 15, 45,105, 2,128,209,104,236, 57,229,147,225, 88,186,110, 7,130,252,189, +176, 47,246, 60, 90, 7,215,199,239,199, 46, 34,178, 69, 67, 28, 60,153,128,118, 33,254, 56,126,238, 42, 62, 30, 57, 8,159,125, + 28,215,211,218,185, 63,115,143,230, 45,113, 45, 41,206,193,254,121,155,145,179, 98, 5,238,143, 27,135,214,229,239,137,120,134, +129,196,215, 23,112,177,125, 61, 45,145,154,154, 10,157,238,217, 64,141, 76, 38, 67, 64, 64,128, 85, 77,115,228,234,209,163, 71, +228,209,163, 71,112,116,116, 36,215,175, 93,229, 2,131,130,223,225,242,127, 89, 7, 0,101,145,171, 98,104,110,124, 11,237,205, +229,144, 20, 94, 97,214,206,250, 72, 63,226,171, 53,215, 81,254, 63, 90,181,157,201,201,201, 21,215,167,109,219,182,169,167, 79, +159,126,169, 82, 20, 24, 38,147, 73, 98, 50,153,154,154,187, 13, 77, 38, 19,116, 58, 29, 6, 14, 28, 88,241,198,178,116,238,114, +185,188,165,151,151, 23, 46, 92,184,128, 25, 51,102, 72,131,130,130,112,243,230, 77, 48, 12,131, 97,195,134,161,121,243,230,200, +205,205, 69,235,214,173,113,234,212,169,103, 92,134,133,247,188,179,163,163,227,134,223,126,251,205,129, 97, 24,148,148,148,128, +231,121,180,111,223, 30,132, 16, 92,185,114, 5,211,166, 77,195,174, 93,187,176,103,207, 30,121, 88, 88,216, 6, 66, 72, 32,165, +180,164, 58,205,202,135,211,233,116,212,193,193, 1, 14, 14, 14,144,201,100,144,201,100,144, 72, 36,208,234, 89,124, 52,253,174, + 78, 44,115,226, 91,182,240,111, 60,122, 68, 63,102,246,252,141,199, 0,236,173, 78, 83, 69,175,193, 45,136,224,240,198, 4,244, + 25,213, 17, 18,177, 20, 18,177, 4, 82,137, 20,226,242,231, 18,177, 4, 82,177, 12,108,157,210,103, 27, 83, 69, 83, 44, 22,215, + 73, 74, 74,114,173,252,191,108, 50,153,174,143, 27, 55,206,191,223,155,189,189,126,217,181,143, 29, 60,160, 15,231,237,229,153, +247,240,225,253, 91, 0, 92,195,194,194,168, 53,205, 23,129,160, 41,104,254, 63,209, 26, 64,229, 31, 24,122, 0,210,242,231,121, + 40,251,108,115,175,242, 58, 0,228,150, 63,122, 84,179,156, 7, 32, 5, 64, 96,249,107, 28,128,139, 0,108,206,175,108, 11, 17, + 0, 16, 66, 42,254, 9, 41,165,164,234, 70,102, 19, 81, 92, 92,140,135, 15, 31, 98,213,170, 85, 16,139,197, 16,137, 68, 16,137, + 68, 96, 24,166, 34, 95,161, 58,142,252,118,114, 57,128,229, 97, 97, 97,226,228,179, 63,254, 62,123,115,116,183,200, 30, 17,236, +249,216,196,119, 0,204, 1,208, 51, 42, 42,170, 14, 0,108,222,188, 57, 15,192, 1,123, 79, 66, 34, 98,234,126,187,236,199,122, +227, 63, 30, 12,160, 44, 47,107,221,186,117,181, 51, 50, 50,158,250,149, 40,145, 72,108,230,101, 81, 74,183,199,199,199,127,210, +163, 71, 15, 24,141,198,138,174, 65,243,159, 70,163,129,171,171,107,197,151, 76,105,105, 41,214,175, 95,111,162,148,110,183,162, +137,180,107, 71,113,243,218,113,112, 28,255,148,153, 42, 45, 45,197,140, 25, 51, 42,162, 87, 0, 48,170, 60, 82, 98, 47,214, 34, + 87, 44,203,226,180,127,153, 19,232,149, 75,159,201,213,170,138, 88,234, 48,177,215, 91,131,220, 76,148,173, 48, 87,101,231, 80, +102, 46,164, 98, 17,228, 50, 49,110,222,126,136,134,190, 97,232,246, 90,223,218, 71,126,223, 57, 17,128,197, 65, 8, 70,142, 71, +175,206, 97,248,110,219,113, 20, 63, 41, 69,113, 97, 62,242, 30,166,226,250,229,139,144, 74,165, 56,127,254,188,115,173, 90,174, +206,141, 26, 53, 4,199,241, 56,125, 62, 1, 10,133, 28,219,126,218,210,176,126,195, 70,184,127,247,142,197,220, 41,158,231, 69, +237,194, 3, 81,156,247, 0, 34,145, 8,237, 66, 27, 67, 36, 18,161,125, 88, 83,176, 44,139, 14,173, 95, 2,203,178,232, 20,209, + 28,141, 27, 55, 6,207,243, 86,127, 76, 80, 74,145,118,245, 40,210, 82,142,131,242, 60, 56,190,172,251,151, 2, 48,100,101, 61, +123, 94,217,217,160, 46, 54,131, 81, 22,143, 51,121,242,228, 66,149, 74,101,168,186, 78,169, 84, 74,118,237,218,229,106,173,116, +138, 68, 34, 9, 20,137, 68,215,243,243,243,121,133, 66,193,112,156,137, 15, 12, 10,102, 79, 29,152, 89, 49,247,228,140, 89, 51, +119,188,251,154,203, 59, 63,110,252,141, 74, 60,218, 19,194,202, 76,195,191, 90, 35,133, 88, 18,104, 79, 27,205,221,133, 55,110, +220,176, 57, 41,183,165,207,139,202,168,213,234,161,125,250,244, 57, 60,114,228, 72, 7, 0,200,203,203,131, 72, 36,170, 48,253, +233,233,233, 96, 24, 6,107,215,174,133, 78,167,179,249,198, 23,137, 68,159,236,220,185,179,150, 84, 42,173, 48, 87,148, 82,176, + 44,139,212,212, 84, 44, 94,188, 24, 81, 81, 81,120,240,224, 1,124,124,124, 48,113,226, 68,167,249,243,231,127, 2,192,158,176, +240,101,189, 94, 31, 46,151,203, 33,147,201, 96, 54, 90, 0,144,152,238,117,245,206,157, 59, 45,234,215,175,227,221,176,249,149, + 95, 59,119,104, 25,226,238,238, 26,137,114,131,101, 9,167, 39,245, 80,146, 38, 66,167, 78,157,112,242,100, 28,122,247,238, 13, + 78, 34, 1, 47,149,130,151, 74, 65, 37, 18, 64, 42, 5,145, 74, 65, 21, 10, 59,154, 7,202,178, 44,178,179,179,159,122,109,196, +136, 17,247, 7, 13, 26,228, 9, 80,168, 84,153,244,211, 79,198,103,230,229,229, 81, 47, 47, 47,123, 52, 5, 4,254, 54,216,240, + 34, 30,132,144,125,149,214,247, 54, 47, 71, 71, 71, 79,141,137,137,185, 70, 8,217, 87,249,117,243,118,229,218,251, 44, 45,151, +239,235, 62,101,202,148,224,249,243,231,207,139,140,140,220,118,246,236,217, 59,120, 81, 6,139, 82, 74, 8, 33,212,214,135,165, + 25, 75, 95,210,182, 12,150,153,196,196, 68,163,175,175,239,247, 41, 9,183,186, 5,132, 7, 66,238, 40,127,133, 16,178, 92, 38, +147,125, 58,100,200, 16,156, 63,127, 30, 87,175, 94, 93, 79,107, 48,237,137,193,196, 63, 28,255,241, 96, 24, 76,252, 67,160, 44, + 66, 53,113,226, 68,201,233,211,167, 13,230,246, 86,141, 96, 85,167,149,147,147, 51,125,239,222,189,176,150,228,126,228,200, 31, + 61, 14,149,147,220,171,211,164, 60,133,193, 96,132, 90,173, 45, 51, 86,229, 95,222, 28,199, 65,173, 86, 99,192,128, 1, 21,166, +139,231,121,228,228, 88,204, 89,182, 9,195, 48,118, 71,174,170,213, 96,217, 87, 91,134,132,138,143,157,189,252,212,151,107,223, +143,230, 64, 42, 41, 51, 87,114, 7, 9,228, 50, 49, 30,170, 30, 33, 32, 48, 72,114, 50,118,223,171,168,206, 96,153, 56, 44,223, + 18, 11, 16,130, 29,251,142, 33,188,161, 2, 51,167, 77, 70,255,254,253, 33,149, 58, 96,231,206,237, 88,184,114, 19, 70,213,175, + 15, 10, 32, 34,188, 21, 22,172,222,134,217,179,102, 49,219,127,217,209,193, 86,123,197, 98, 49, 88,150,173,248,210,174,250,200, +178,172, 77,147, 0,148,223, 35,163, 17, 26,181, 22, 28,207,131,231, 41, 40,207, 3,148,194,119,238, 92,248,206,157,139,120,166, +108, 0, 95,115,181,186,172,251,184,115, 75, 59,175,106,249, 49, 40,133, 94,175,135, 74,165, 50, 36, 39, 39, 63,243,237, 23, 18, + 18,242, 72,175,215, 91,109,239,212,169, 83,211,230,205,155, 23,232,230,230,118,253,242,229,100, 99,203,150, 33,226,170, 57, 88, +205,154, 54, 43,154, 49,107,230,142,193,255,121,227,157,213,211,222, 51,141,156,254,131,200,158, 68,119, 51, 6,131,225,110,247, +238,221,237, 74,229,209,106,181,217,213,173, 11, 15, 15, 31, 70, 8,153,219,172, 89, 51, 89,215,174, 93, 17, 23, 23,135,185,115, +231,242, 38,147, 41, 15, 0,218,181,107,231, 49,123,246,108,146,146,146, 2, 87, 87, 87,228,228,228,108, 10, 15, 15,159,109, 45, +241, 93, 42,149,118,110,221,186, 53,163,211,233, 42,126,148, 48, 12,131,212,212, 84,204,159, 63, 31, 3, 7, 14, 68,179,102,205, + 42,254,183,186,116,233, 34,254,246,219,111, 59,195, 14,131,197, 48,204,199,221,186,117, 91,132,178, 81,132,149, 63,228,174, 3, +248, 12, 0,238,223,207,203, 30,248,118,187,107,221, 58,133,134, 55,110,232,235, 99, 77,239,177, 56, 29, 62,161,114, 72,196, 18, + 68,125,254, 38,246,237,219,135, 49, 51, 6,149, 71,178,202, 34, 88, 98,177, 4, 18,177, 20, 82,143,231,155,136,160,252,115,132, +184,184,212, 2, 0,212,170, 85,246,200,113, 28, 1, 64, 25,134, 17, 82,178, 4,254, 49,216,227, 69,204, 6,169,242, 50, 33,100, + 95, 76, 76, 76,239,170,175, 85, 54, 83,150,158, 87,222,119,254,252,249,243, 42,105,107, 94,196,249,188,176,169,114,140, 70,235, +243,246,118,237,218,117,156,179,179,243, 50, 0, 8, 15, 15,199,205,211,119,112,243,244, 29, 4,190, 20,216, 62, 52, 36,180,112, +224,192,129,112,119,119,199,103,159,125, 70, 1,108,168,201,177, 87,239, 54,190, 92,121,249,210,165, 75,207,157,151, 85, 62, 50, +238, 83, 84,147, 79,245, 60, 80, 74, 97, 52, 24,161,214,148,194, 96, 48,192,104,228, 96, 50,113, 8,107,238,140, 31,214, 76,134, + 94,111,128,145, 43,123,205,104, 52,194,100,226, 32,147,232,208,169,109, 93, 35, 8,163, 61,121,238,190,133,206,168, 63, 8, 74, +124, 0,150,101,113, 57,164, 44,199,173,106,228,234, 21,149,193,110,163, 69,121,238, 37, 47, 47, 79, 60, 56,120, 1, 0,224,164, +112,192,161,205,179,225,168, 40,251, 37,223, 51,106,106,153,201,146, 73, 96, 48,232,225,233,213, 0, 38,206,248, 82,117,122, 38, +163, 65,223,178,169, 47, 92,157,229, 72,142, 63,135, 79,199,126,136, 97,195, 62,128,196,193, 25, 39, 79, 30,199, 3, 85, 14,210, + 51, 10, 48,118,250,119, 48, 26, 57, 24, 76, 28,140, 38, 30, 75, 55,238,131,129,179,237,140, 36, 18, 9, 38, 78,156, 40,175,110, +253,182,109,219,180,118, 25, 44, 90,110,130, 53, 90,232, 74,117,208, 27,202,238, 5,215, 72,140, 57,211, 6,193,104, 52, 66,251, + 94, 36, 12, 70, 35,184,143,251,193, 96, 48,224,161, 66,196,116, 8, 87, 26, 65, 24,237,233,248, 12,171,247,200,124, 12,107, 6, +138, 82,106,177,235,176, 42,102,147,213,178,101,200,245,168, 1,225, 49,103,206,198,231,158, 57, 27,255,204,118,141,154,133,223, + 30, 57,103,219,148,154,152, 43,224,233,238,194, 63,131, 57,161,221,201,201, 9,105,105,105, 96, 89, 22,132,144,199,137,137,137, + 94, 0, 48, 99,198,140, 60,177, 88,236,206,178, 44, 62,249,228, 19,176, 44,235, 49,102,204,152, 47, 1, 84,107,176, 76, 38, 83, +160,179,179, 51, 74, 74, 74, 42,174,163, 84, 42, 69,116,116, 52, 6, 15, 30, 92, 97,174,164, 82, 41, 54,109,218,132,176,176, 48, +232,245,122,187, 34,119, 25, 25, 25,241, 0, 94,182,181, 29,207,243,101,221,172, 60,111,245,141,229,164,174,139,210,187, 82,112, + 18, 9,182,237,221,139,193,131, 7, 67, 42,149, 85, 68,174, 32,145,128, 72,165, 96, 36, 18,112,108,141,198, 75,152,219,129,226, +226, 98,118,211,166, 77,141,130,130,130, 8, 5, 16, 16,208,156,236,219,191,191,158,147,147,211, 29, 55, 55,183,103,162,164, 2, + 2,255,116, 42, 27,164, 23,161, 21, 29, 29, 61, 21, 0,141,142,142,158,106, 94,142,137,137,209, 2, 80,253, 89,253, 23,102,176, +108, 69,176,150, 44, 89,130, 22, 45, 90, 84,187,158, 82,138,111,191,253, 22, 63,252,240,195, 18, 74,233,237,154, 28,251,163,190, +226, 11, 10,185,196, 71,163, 53,100,173,217, 99,140, 8, 9, 9, 73,136,140,140,108,148,144,144, 80,109, 4,171,186,218, 88,127, + 69,153, 6, 74, 41,244, 6, 35, 52, 26, 45, 74,245,122, 76,152,188,210,158,211, 34, 6,125,137,232,245,215, 58, 86,107, 30,106, +146,131,101,171,107,176, 50, 70,163, 9,102, 15,240, 68, 83,138, 46, 3,163, 17,255,235, 50, 0,168, 48, 87,114,153, 24, 14, 82, + 49, 24, 2, 16, 84,175,109,212, 22,191,249,249,184, 15, 79,173, 90,255,131, 95,223,142,195, 49,126,252,120,136,164, 10,212,118, +247,128,137,163,168,167,244, 68,122, 70, 1,118,174,152, 92,158,118, 70,209,241,253, 25, 88, 50,109, 56, 22,206,176,253,171,158, +101, 89,172, 88,177, 66, 91, 53,106, 85, 57,146,101, 15, 21, 6, 75,173,133, 86,167,199,164, 41,223,217,179, 91,217, 61,122,245, +229,106,239, 81, 85,244,122,189,213, 54,216,138, 96,153,153, 58,117,106, 26, 0, 22, 0,170,251, 22,149,185, 3,129,237,123, 77, +179,183,109,127, 5, 60,207, 99,255,254,253,207, 68, 87, 43, 99,190,103,246,252, 8,224,121, 30,247,239,223,199,213,171, 87, 17, + 25, 25,137,162,162, 34,136, 0, 76,188,114, 5,205,135, 12,129,174, 60,117, 65, 42,149, 98,196,136, 17, 47,248,108,202, 41,127, +195, 83, 98,253, 70,169, 21, 25,240, 10,150, 97,195,252,221, 24, 55, 43, 10, 30, 1, 14, 88, 60,101,109,197,250,133,223,207, 40, +207,195,146,194,193,190,241, 39, 79, 81, 92, 92, 44, 90,180,120,113,203,136, 54,109,229,131,163,134, 49,122, 19,143, 57, 95, 47, + 99,127,249,105,179,251,230,205, 63,202, 29, 28, 28,174,215, 92, 85, 64,224,239,205,139, 50, 87,102, 45,115, 4, 43, 38, 38,230, + 90, 76, 76,204, 51,209,176, 63,131,205,111, 31,150,101, 81,121,200,114, 85, 8, 33,118,229, 96, 77,152, 48, 1,206,206,206, 22, +215, 25, 12, 6,122,249,242,229,148,172,172,172,117,148,210, 26,215,197,145,138, 25,175, 37,139, 54,250,141,255,120, 48, 15,148, +141,214, 90,185,114,165,171, 57, 7,171,114, 30,150,173, 28, 44, 79, 79,207,153, 11, 22, 44, 24,223,179,103, 79,134, 97,254,168, +233,104,238,142,168,220,149,199,243, 60,140, 70, 35,126,251,237,183,241, 49, 49, 49, 64, 53, 81, 47, 74,203,186,159,212, 26, 45, + 74,117,101, 95,176,233, 87,119, 88,218,212,210,206, 54, 55, 49, 71,174,218,166,229, 91,140, 92, 29,244, 42,251,226,234,149,107, + 91,139, 48,108,218,221,251, 15,219,120,215,113, 69, 65,209, 19,200,202,187, 5,205,152,205,149, 92, 38, 65,237, 90, 78,200,127, +156, 3,177, 88, 92,109,116,132, 82,122,159, 16,242,242,128,126,189, 14, 51,172,200,161,242, 58,177,220, 69, 17,123,230, 74,237, + 71, 5, 26,240,149,206,147,167, 20,227,102,219, 23,196, 20,139,197, 24, 51,102, 76,181, 6,103,239,222,189,207, 14, 5,181,220, +206, 74, 6,171, 44,138,100,247, 61,178, 19,123, 34, 88,246, 26,172,170,152, 71, 23, 74, 36,146,192,114,229, 5,253, 98, 0, 0, + 32, 0, 73, 68, 65, 84,243,101, 55, 33, 33, 33, 7, 20, 10, 69, 67,123,183,183,183,232, 40, 33,100, 86,215,174, 93,231,250,249, +249,121,142, 28, 57,146,136, 68, 34,132,135,135,215,249,234,171,175,138, 0, 32, 48, 48,208, 25, 40,251,140, 89,186,116, 41,174, + 95,191,158, 75, 8,153,109, 77, 83, 42,149,166,214,170, 85, 43,188,107,215,174, 40, 42, 42,194,131, 7, 15,224,228,228,132,230, +139, 23,227,202,232,209, 8, 89,189, 26, 76,215,174, 0,202, 6, 13, 92,185,114, 5, 50,153,204,226,200, 73, 0,240,245,245,141, +160,148, 46, 0,208, 30,127,116, 11, 82, 0,103, 8, 33,159,103,102,102, 94,120,102, 39,134, 48, 0,192,217,136,176, 74,139,188, +160,123, 40,195,208,161, 67, 33,145, 72, 1,169, 20,147, 38, 77,170,244,121, 36, 5, 91,158,143,197,115, 82,107, 82, 0,158,206, + 79, 1, 0,189, 94, 79,100, 82,169, 44,234, 63, 31, 48,159, 79,250,148, 55,154, 76,188, 72, 36,102, 38,126, 49,143,185,121,227, +170, 76,173, 86, 51,164, 38,191,172, 4, 4,254, 1, 88,202,165, 42,143, 66, 85, 71,110,229,188,172,234, 12, 90,229,156, 44, 0, +118,149,139,177, 69,133,193,178,208,231,121, 51, 57, 57,185,105, 80, 80, 16, 30, 60,120,128,194, 66,203,163,145, 29, 29, 29, 33, +151,203,113,235,214, 45, 0,184, 89,221,129,142, 29, 59,182, 28,192,114,243,178, 82,169,140,236,254,238, 43,103,194,186,182,193, + 79, 75,126, 44,202,202,202, 10, 49,215,196, 34,132, 16,165, 82, 57, 88, 44, 21,189,219, 44,184, 81, 39, 19,207, 47, 56,242,171, +229, 74,238,192,179, 57, 88, 38,147,233,185,115,176, 8, 33,253,123,246,236,201,164,164,164, 96,192,128, 1,248,241,199, 31,171, +219, 20,131, 7, 15,198,182,109,219,240,234,171,175, 50,243,231,207,175,182, 76, 3,165,128,209, 96,130, 90, 83,138,210,210, 23, +114,223, 44,242,103, 35, 87, 0, 64,121,211,145, 43,151, 18, 91,181, 8,139, 20,223,125,152, 13, 7,169,248, 41,131,165,144, 73, +224, 32, 43,123,205,219,163, 54, 46,158, 61,105, 48,153,140, 86,135,193, 83, 74,239,195, 66,145, 70,153,115,157,180, 87,218,183, +168,109,105,159, 37, 83,162,208,226,231, 37, 54,219, 43, 22,139,177,126,253,122,109,117,209, 43,123,175, 1,165,168,232, 34,212, +104, 95,236, 61,242,242,242,242,240,244,244, 92,229,234,234,234, 96,206, 29,170,110,189,181, 8, 87,117, 84,169,139,117,125,222, +188,121, 53, 50, 89, 82,169,180,225,153, 51,103,154,154,243, 2,173, 61,234,245,122,188,251,238,187,118,133, 5, 19, 18, 18, 54, +132,134,134,166,123,120,120,196,182,107,215, 78,150,146,146,130, 57,115,230, 16,177, 88,236, 2,148,253, 95,150,148,148, 64, 36, + 18,161,160,160, 0,132,144,161, 9, 9, 9, 7,173,105,234,116,186, 19, 39, 78,156,104,245,230,155,111,178,215,175, 95,135, 72, + 36, 2,207,243,208,181,109,139,144,213,171,113,245,211, 79,209,241,238, 93,232,140, 70, 56, 56, 56,224,224,193,131, 6,141, 70, + 83,109, 25, 17,169, 84,186,246,220,185,115, 65, 14, 14, 14, 48, 24, 12,224,121, 30, 12,195, 16,150,101, 59, 4, 5, 5,125,139, +178,145, 75, 21, 52,108,232,233, 57,230,195, 94, 47,113, 60,207,101,170,114,115,171,145, 5, 0,232,157,115,225, 17, 40,171,200, +183,146,136, 37,144,136,202,140,149, 57,114, 37, 17, 75, 32,145, 72, 33,147,218,213,133, 79,171,190,119,204,185, 87,142,142, 10, +190, 73,147, 38, 41, 55,111,165, 55, 7,192,212,170,229,106,119, 94,172,128,192,223, 9, 43,249, 87,185, 85,204,145,190,210,114, + 46,202,230, 86,238, 93,254, 28,149,158,199, 3,104, 93,101, 91,243,122,125,149, 71,243,250,228, 23,113, 46,214, 62, 40,123,125, +248,225,135,171,123,244,232,209,109,226,196,137,112,114,114, 66, 86, 86, 86,197, 63,173, 84, 42, 69,221,186,117,161,213,106, 17, + 23, 23,135,194,194,194, 99, 0, 62,178,247,192, 89, 89, 89,231,111, 36,165, 61,238,212,231,101,247,224,136, 64,215, 7,105,247, +219, 2, 56, 75, 8, 33,190,190,190,223, 15,153,208,247, 63,175,188,221, 1, 18,169, 24, 15,110, 61, 59,138,171, 50, 85,115,176, +254, 76,109, 44,134, 97, 88, 66, 8, 6, 12, 24, 96,215,246,239,189,247, 30, 78,158, 60, 9,107,221,137,101, 93,132, 6,104,212, + 90,104, 94,160,193, 34,132,128,227,184,138,200,149,249,239, 21,149, 1, 12,195, 84, 24,139,158, 57,246,149,156, 0,128, 82,141, +102,225,169, 35,123, 71,188,212,188,165, 71,100,104, 51,220,188,243, 16, 11,167,254,209,213, 50,105,212,123,216,180,237, 55, 40, +189,221,161,211, 62,193,161,223,127, 43, 42, 46, 46, 94,248,188,231,176,105,247, 73, 0,192,203,239, 63, 61, 70, 96,192, 39, 75, +237,218, 95, 36, 18, 97,216,176, 97,213, 70,176, 98, 99, 99,181,149, 35,145,213, 97,190, 71,106,117, 41, 52, 22,234,159, 61, 47, + 74,165, 50,164,109,219,182,177,107,214,172,113,175, 83,167, 14, 84, 42,213, 83, 6, 75,169, 84,134, 68, 68, 68,196,174, 89,179, +198,221,195,195, 3, 15, 30, 60,176,187, 68, 8,240,116, 93,172,220,220, 92, 82, 80, 80,192,215,174, 93,187, 70, 38,139, 97, 24, +232,116, 58, 92,191,110, 95,143, 82, 77,138,142, 54,108,216,240,199,101,203,150,201,238,221,187, 7,163,209,136,148,148,148,103, + 6, 33,176, 44,139,232,232,104,124,241,197, 23,171, 0,212,183,166,103, 50,153,190, 25, 50,100,200,135,153,153,153,181,189,188, +188,144,149,149, 5,137, 68, 2, 74, 41, 72,151, 46,120,249,206, 29, 24, 56, 14,114,185, 28, 55,110,220,192,186,117,235,212, 6, +131,225, 27, 75, 90,141, 27, 55,150, 50, 12,211, 84, 34,145, 96,208,160, 65, 79,173,219,188,121, 51, 34, 3, 11,194, 63,122, 75, +250,132,163, 18,221, 19, 4, 30, 96, 24,134,140, 29,222,171, 89,135,200, 22,193,215, 82,238,166,171,114,242,207, 88,107,171,184, +200, 29, 6,149, 12,144, 72,254,200,183, 42,207,185, 98,165,210,138, 17,133, 84, 42, 5, 47,181,175, 88,112,101,211, 68, 8,129, +187,187,187,110,233, 55, 11,101,142,142,142, 28, 0, 56, 59, 57,114,191,108, 94, 9,119, 55, 55,221, 51,110, 76, 64,224,159,205, +179,137,166,255, 63,251, 62, 55,213, 26,172,196,196,196, 59, 0,186,135,134,134,190, 31, 23, 23,183,100,194,132, 9, 30, 29, 58, +116, 64,126,126, 62,234,215,175, 15, 31, 31, 31, 36, 36, 36, 32, 57, 57, 57,143, 82, 58, 49, 33, 33,225,153, 80,143,181,217,182, + 41,165, 84,169, 84,110,215,107,212,163, 67, 59,182,192,209, 29,199, 99,124,124,124, 62,242,243,243,251,120,248,212,119,255,211, +173, 95, 59, 92, 79, 74,199,217, 67,137,200,188,159,139, 1,237, 71, 87,171,105, 79, 14, 86,229,199,170, 57, 88,149, 53,121,158, +231,244,122, 61,126,254,249,103,187, 76,214, 79, 63,253,132,210,210, 82,240, 60,255,212,151, 78,101, 77,142,231,136,179,139, 7, +124,235, 5,194,160, 87,131,231,237,255,101, 89,249, 19,210,210,185,155, 76, 38,204,156, 57, 19,159,125,246, 25,102,207,174,190, +119, 69, 36, 18, 97,229,202,103,115,191,170,106,230,231,231,151, 40,149,202,193,219,214, 47,219,241,254,240,241,206,126,237, 66, +176,225,151,223, 97, 52, 24,225, 32, 19,161,182,139, 19,154, 52,244,133,190, 84,131,239,150, 47, 41, 46, 45,213, 14,174,154,123, + 86,147, 89,214,135,246,235,132,175,215,253,138, 83, 91,255, 8, 80,190,252,254,116,108, 89, 52, 14,161,161, 27,173,106,114, 28, + 7,177, 88,140,173, 91,183,106,171, 27, 77,200,178, 44,170, 51, 88, 85,239,145,139,139, 7,252, 26, 52,135,190,244,201, 11,187, + 71,238,238,238,159,125,255,253,247,238, 90,173, 22,169,169,169, 72, 77, 77, 5, 33,228,122,213,245,106,181, 26, 87,175, 94, 53, +155,156,167,156,142,181,235,105,142, 92,229,230,230,146,172,172, 44, 40, 20, 10,230,242,229,203,165, 45, 91,182,188,142,242, 28, + 45, 91,231,174,211,233,238,117,235,214,205,226,118, 58,157,206, 87, 38,147, 61, 53,101,147,185,232,104,213,174, 66, 75,237,124, +248,240,225,165,101,203,150,213,107,214,172, 25,214,174, 93,171,115,118,118,150, 78,152, 48, 1, 44,203,146,165, 75,151,210,252, +252,124, 67,116,116,180,244,244,233,211, 80,171,213,151,172,181, 19, 0, 40,165, 37,132,144, 17,237,218,181,251,225,192,129, 3, +242,166, 77,155,162,168,168,108, 0,229,166, 77,155, 48,118,236, 88,200,229,114,164,165,165,161, 79,159, 62, 26,141, 70, 51,162, +114, 13,172,202,154, 38,147,137,136,197, 98,202,243, 60,166, 77,155,246, 84, 97, 81,133, 66, 1,185,148,195,154, 89,254,142,159, +126,157,237, 56,126,244,144, 33, 0,192,241, 60,119, 45,229,110,250,154, 13,191, 30, 7, 16, 87, 93, 59, 1,128,175, 85,132, 58, + 77,203, 34, 88, 98,115,205, 43,137,236,169,209,131,101,117,176,202,234, 98,217, 58,247,170,169, 24,110,110,110,166,176,176,208, + 20,173, 86,203,154,189, 84,157, 58,117,174,150,111, 75,235,214,173,171, 71,149,138,122, 53,249,223,180, 23, 65, 83,208, 20,176, +140,205, 80,127, 82, 82,210,214,224,224,224, 3,243,231,207,159,191,123,247,238,225,227,199,143, 39, 46, 46, 46,216,190,125, 59, +205,207,207,223, 40,149, 74, 63, 59,119,238,220,115,213,139,160,148,110,138,251,245,212,168, 33, 19,222, 33,147, 22,143,108,159, +112,226,210,245, 86,237, 3,209,170,125, 32, 46, 28, 77,198, 55, 83, 54,254,104, 50,154,190,202,202,202,122, 96, 77,199,158, 28, + 44,243,159, 72, 36,178, 89, 7,107,247,238,221,227,123,245,234,197, 92,188,120,241,153,156,171,202,121, 88,177,177,177, 48, 24, + 12,216,190,125, 59,111,173, 14, 22, 15,236,253,102,209, 87, 81,235, 55,239,151, 50,196,128,115,113, 59, 81, 84, 80,237,232,118, + 0,128, 68, 34,198,150,159,246, 26, 68, 34,246,134,149,182,222, 79, 76, 76,116,255,250,235,175, 89,134, 97,176,114,229,202,167, + 34, 87, 85,185,114,229, 10,111, 52, 26,109,222, 43,149, 74, 21,235,237,237,253,222,234,111,102,109,234,242,234,155,174, 1, 1, + 65, 34, 79,207,122, 16, 49, 12, 10,243,115, 17,127,254,180,233,224,254, 61,133,122,189,126,168, 74,165,138,181,165,103,141,152, + 53,123, 44,190,254,246,120,235,221,131, 12,195,152,140, 70,163,200,209,209, 17, 38,147,201,162,185,234,214,173,155,252,204,153, + 51, 90,131,193, 0,150,101,173, 58,166,178,123, 52, 61,106,253, 15, 47,246, 30,113, 28, 23, 88, 80, 80, 0,181, 90,141,132,132, + 4,186,114,229,202,220,194,194,194,169,149,215,231,231,231,163,164,164, 4,241,241,241,116,237,218,181,185,197,197,197,214,242, + 9,170,180,161,172, 46, 86, 65, 65, 1,175, 80, 40, 24,163,209,104,108,217,178,165,131, 68, 98, 95,205, 43, 0,184,116,233,210, +107,213,173,107,223,190,253,205, 51,103,206, 52,169, 60, 55,161,201,100,146,232,116,186,166,125,250,244,177,249,249, 33,151,203, + 7,238,220,185,115,171,131,131, 67,139,210,210,210, 15,115,114,114, 54, 1,168,199,178, 44,110,221,186,149,103, 50,153,250, 79, +155, 54,109,189, 90,173,190,226,228,228,244,190, 61,237,165,148, 30, 36,132,188,223,188,121,243, 13, 51,102,204,112,236,220,185, +179, 88,169, 84, 34, 44, 44, 12,105,105,105,216,191,127,191,225,187,239,190,211,104, 52,154, 97,148,210,106,223,159, 34,145,136, + 2, 32, 38,147,233,169, 57, 76,165, 82, 41,196, 98, 49, 52, 58, 6,195,167,221,214,242, 16,107,231, 45,252,113, 63,165, 32,170, +172,188,188,236, 71,133, 23, 68, 70, 99,220, 61, 85,137,213,185,158,184, 60, 5, 26,184, 4, 3,248, 35, 77,129,225, 25, 16, 3, + 1,203,177, 96,141, 44,136, 72, 84, 22,221,178,111,186, 43,106, 50,153,208,187,119,111,236,219,183, 15,125,251,246,165,176,146, + 43,178,111,223,190,106,127, 92, 8, 8, 8,252,245,216,149, 75,113,245,234,213, 66, 0, 31,181,110,221,122,243,184,113,227,246, +241, 60, 47,230,121,254,245, 75,151, 46,157,250, 51, 7,207,202,202, 74, 84, 42,149, 83, 61,125,107,199,244, 30,212, 21, 45,218, +248,131, 51,113,136,219,127, 17,107,230,110,219,150,241, 48,227, 63,180,210, 92,133,213, 97, 79, 14, 86,229, 71, 91,117,176,230, +204,153,131,185,115,231,214,120, 20, 97,117,219,156,141,207,252, 40, 50,220,199,239,237, 55,219,191,202, 16, 66,117, 86,242,108, + 8, 1, 53,103, 90,136, 68,236,141,147,231, 31, 86, 91,108, 41, 59, 59,187,219,232,209,163,143, 50, 12, 83,255,143,253,171,207, + 55,226, 56, 46,235,241,227,199, 61,108,157, 83,185,246, 1, 63, 63,191,102, 39, 15,254, 58,229,244,145, 3,157, 57,206,208,152, +128, 64, 34,145,164, 27, 57,211, 9,163, 94, 31,147,145,145,241,167, 11,177, 77,249,168, 47,238,171,242, 32, 18,177,101,181,167, +202,111,247,206,111, 39, 32, 52,116, 75,181,251,201,100,178, 3, 27, 54,108,232, 61,100,200, 16, 34, 18,137, 42,186,221,204,231, +207, 48, 12,206,159, 63,175,213,235,245,216,184,113, 35,149,203,229, 86, 11,215,254, 85,247,232,201,147, 39,195,250,244,233,179, + 9,128, 12,192,173,162,162,162,145, 42,149, 42,163,242,250,190,125,251,110, 2, 32, 35,132, 60,179,222, 22,230,146, 13,181,107, +215,190, 94, 30,185,114,120,158, 68,247,234,224,121,158,173,174,251,208,158,174,194,242,185, 5,223, 50, 47,135,135,135,207, 26, + 53,106, 84,229,201,158,227, 0,248,215,180, 93,148,210, 88, 66, 72,208,180,105,211, 62,150,203,229, 93,180, 90,109, 0, 0, 40, + 20,138, 84,141, 70,115,220, 96, 48, 44,163,148, 86, 59,141, 13, 0,164,167,167,235, 27, 53,106,148,102, 50,153,130, 61, 61, 61, + 43, 70, 31, 74,165,101,209,164,243,169,110, 9,153,153,153,173,173,105, 88,105, 95,134,181,136,114,117,251, 88, 91,175,215,235, +115,207,158, 61,235,118,228,200, 17,150,227, 56, 28, 60,120,176,226, 71,159,165,222,192,219,183,111, 67,175,215, 63, 91, 34, 94, + 64, 64,224,255, 5,242, 87,118,211,219, 27, 66, 84, 42,149, 3, 20,142, 14,163, 27,188,228,215,242,225,157,236,148,146,130, 39, + 91,178,178,178,214, 80, 74,159,249, 0,255,167,132, 58, 5, 77,219,154, 82,133,203, 33,194, 74,234, 87,183,158,114,134,251,122, + 77,241,171,150, 52, 35, 34, 34,124, 37, 18,201, 66,157, 78,215,211, 90,149,118,150,101, 77,114,185,252, 64,105,105,233,103, 85, + 39,123,254, 39, 94,207,153, 51,103, 90, 12, 73,216, 59,138,112,250,244,233,230,129, 36,118,181, 51, 36, 36,228,184, 66,161,176, + 88, 80, 83,163,209, 60, 72, 78, 78,174, 48,236,255,205,235,105, 30, 45,103, 79,222, 81,101,205,231, 26, 69,248, 39,218, 89, 19, +170,106,250,249,249, 57,184,184,184, 44,100, 24,198,106,129, 83, 51, 60,207,235,115,114,114, 38,228,229,229, 85,132, 98,255,137, +239,121, 65,243,127, 71,243,223,198, 11,171,131,245,103, 80,169, 84, 63, 3,248,249,191,221, 14,129,255, 95,204,230,233,121, 40, + 55, 75,213, 78,222,252,111,197,108,144, 44,188,158, 10, 88, 41, 72,246,156,216, 83,142,225,239,192,243, 38,116,151, 27, 40,155, +197, 69,255, 14,100,100,100,148, 2, 24,251,223,110,135,128,128,128,125, 8, 29,244, 2, 2, 2, 2, 2, 2, 2, 2, 47, 24, 2, + 32,216,210,138,154,132,254, 8, 33, 22, 53,172, 97, 75, 95,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,127,159,166, 45,237, +127, 75,215,227,223, 34, 7, 75,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,255,109,205,127, 27, 66, 23,161,128,128,128,128, +128,128,128,192, 11,198,110,131,229,228, 29, 24,232,209, 32,100,147, 91,221,150,151,221,234,182,188,236,209, 32,100,147,147,119, +160,221,181,118,254, 77, 40,149, 74,185,143,143,207,251,245,234,213,139,109,213,170, 85,177,175,175,175,197, 41,114, 4,172,211, +153, 16,209,123,132,140,137, 34,228, 65, 20, 33, 15,222, 35,100, 76,103, 66,254, 22, 3, 47, 94, 36,179,199,250,182, 61,117,112, +208,129,217, 99,125, 45, 22, 96,155, 57, 73,233,126,230,208,187,203,166,142,245,117,123, 17,199, 35,132, 56,123,121,121,173,245, +246,246,190,231,229,229,117,223,203,203,107, 3, 33,164,214,139,208, 22, 16, 16, 16, 16,176, 15,187,190,204,220,234,183,248, 48, + 48,224,165,207,102, 77,159, 66,124,189, 61, 20, 70, 19,103,184,123, 47,163,249,244, 57,243,119,184,213,111,177, 36,255,254,149, +239,107,122, 96, 66, 8,241,243,243, 27, 32, 22,139,123, 3, 48, 27,181,235, 70,163,113, 95, 70, 70,198,207,246,142, 10,106,217, +178,229,105,150,101,235,213,228,216, 60,207,223, 75, 78, 78,238, 88,211, 54, 3,128,175,175,111,127, 95, 95,223, 13,109,219,182, + 85,180,106,213, 10, 18,137, 4, 11, 22, 44,152, 8,192,226,116, 28,150, 32,157, 59,139, 60, 11,221,134,176, 34,209, 27, 0, 90, + 82, 10,128,176,151,121,163, 97,127, 78,237,199,155,232,137, 19,118,149, 17,247,241,241,153, 74, 8, 25,138,178, 97,229,223,171, + 84,170,231,158,178,198, 26, 74,165,178, 46, 33,164, 11,165, 52,128, 97,152, 43, 60,207, 31, 86,169, 84,143,255,172,174, 23,240, + 81,187, 14, 29,150, 69, 77,156,200,106,227,226,176,108,195,134,165, 40, 46, 6,128,103, 75,206, 91,129, 16, 66, 34, 34, 90,189, +227,236,140,222, 4, 8, 5, 1, 97, 64, 47,229, 23, 50,191,199,199, 39,253,108, 79, 45,181,234, 8, 11, 11,219, 15,160, 87,249, +226,239,137,137,137,175,215, 84,163,224, 54,255,165, 76, 28,240,114, 65,250,241, 47, 1,244,172,186,222, 84,234, 16,197,138,235, +246,102,105,210, 67, 0,139,159,183,173, 0, 64, 8, 81,120,120,120, 92,222,179,103,143, 95, 68, 68,132, 8, 0, 18, 18, 18,134, +244,238,221,187,107,121, 72,191,248,207,232, 63, 47,145,145,145,181, 77, 38,211,102,150,144,182, 60,207,187, 2, 0,195, 48,133, + 28,165,231, 69, 34, 81,212,243, 22, 43, 22, 16, 16, 16,248,187, 98,211, 96, 57,121, 5, 52, 15, 10, 10,156,120,112,247,230,186, +133,249,133,165, 43, 23,110, 74,210,138,164,154,134,205,155, 74,190, 93,242,181,235,216, 79, 38,125,226,228, 21,112,225,201,163, +212, 20,123, 15,234,227,227, 83,175, 65,131, 6,187,166, 78,157, 26,220,161, 67, 7,177,167,167, 39, 30, 61,122,132, 27, 55,110, + 4,159, 57,115,166,239,158, 61,123, 38,250,248,248,188,101,171,130, 59, 0, 56, 74, 37,141,126,254,122,158,183,212,181, 54, 40, +103,130,107, 80, 8, 0,128,242, 60,178, 78,196,130, 55, 26, 65,121, 14,126,175,189, 89,246, 58,165,104,211,166,141,125, 19,127, + 85,193,207,207, 79,217,172, 89,179, 31,163,163,163, 37, 58,157, 14,151, 46, 93,194,185,115,231,248,156,156,156,249,246,106,120, +181,232,215,220, 91,228,189,163, 79,223,158, 13, 94,127,197, 83, 90,223,219, 3, 60,239,128, 27,119, 12,245, 98, 79, 37,189,246, +251,193,195,159,121, 54,239,215, 63, 39,101,247, 21,107, 58,193,193,193,109, 25,134,153,155,153, 89, 86,218, 73,169, 84, 46,136, +136,136,248,170,242, 54, 85, 61, 42,207,243, 16,137, 68,143, 52, 26,205,128,171, 87,175, 38, 89,210, 93, 54, 73,244,200,196,113, +158,101, 75,162,146,101,187,188, 15,119,239,222,189,225,176, 97,195, 16, 26, 26,138,132,132,132, 46,219,183,111,255,184,110,221, +186,241, 70,163,241,119,153, 76,118,226,222,189,123,207, 53,193,162, 4,248, 60,106,226, 68,214,233,222, 61, 56, 93,186,132, 65, +197,197,162,175,129,207, 81, 3,131, 21, 22, 22,214,168, 71,247,208, 29,125,223,234, 20,232,237,221, 92, 34, 22,215, 1,165, 20, + 70, 99,126,179,220,220,235,239,212,170,133,232, 54,109,218,188,125,241,226,197, 91,246,232,181,110,221,218,139,231,249,213,148, + 82, 9, 33,100, 28,128, 94, 7, 15, 30, 4,199,113,120,253,245,215,123,133,133,133, 53,162,148, 46,119,114,114,162, 90,173,246, +131,248,248,248, 71,213,105,205, 30,235,219,182, 48,157,255, 50, 91,228,255,218, 75,225, 67,145, 45, 58,244,218,132, 87,125, 14, +184,250, 51,179,191, 92,145,121, 30, 0,122, 54,110,236,220, 40, 64, 49,217,201, 37,216,173, 40, 51,118,114,207,198,141,215, 29, + 72, 79, 47,169, 78,211, 22, 74,165,114,225,230,205,155,235,182,109,219,182,162, 72,110,171, 86,173,216, 5, 11, 22,248, 78,152, + 48, 97, 41,128,255,216,169,211,204,221,221,253, 16,207,243,186,107,215,174, 53, 51,191,238, 25,242, 86, 59,119,103,199,110,185, + 5, 37,113,121,215,246,156,180, 71, 43, 60, 60,124,152,132, 97,214, 46,153, 54,150, 13,108,217, 18,138, 58,158, 48,168, 84, 80, +155,140,110,231,147,175,189,254,245, 55,107,115,195,195,195, 71, 36, 36, 36,108,168,233,249, 10, 8, 8, 8,252, 93,177,105,176, +100, 50,105,244,244, 47, 38,147,130,199,133, 90, 67, 73,177, 65, 65,245, 38, 23,133, 3, 41,206,201, 45,188,235,162,208, 76,248, +100,188,195,228,232, 47,162, 1, 12,178,165, 5,148,153,171,128,128,128,139,235,214,173,243,116,115,115, 67, 81, 81, 17, 30, 63, +126,140,139, 23, 47,130, 82,138,158, 61,123,202, 66, 90,180, 8, 93,242,205, 55,231,124,124,124, 34,109,153, 44,145, 88, 68,196, +142,142,216,217, 41, 20,140, 68,130,183, 83,203, 38,134,166, 70, 3, 14,190,247, 6, 0,128,149, 74,241,238,205, 28, 0,128,131, +131,131, 61,205,180, 8,165, 52,178,125,251,246, 18, 0,152, 56,113, 98,177, 90,173,142, 33,132,108, 85,169, 84,153,182,246, 5, +128, 58, 45,222,108,234,229,225,125,114,209,156,225,110,193,141,252,161, 55, 26,145,145,147, 9, 10, 41,188, 61, 29, 49,168,111, +136,164,125,184,164,201,226,149, 71, 79,120, 5,247,233,248,232,234,222,107,213,105, 57, 58, 58,110, 94,186,116, 41,126,249,229, + 23, 0,192,241,227,199,209,180,105, 83, 71, 91,109,184,113,227,134,255,208,161, 67,183, 1,104, 98,105,189,137,227, 60, 39,126, + 48, 10, 0,176,120,253, 42,231,180,180,180,134,114,249, 31,115, 41,119,234,212, 9,157, 58,117, 98, 98, 98, 98, 34,142, 31, 63, + 30,177,109,219, 54,131,175,175,239,210,204,204,204,106,167, 10,178,134, 54, 46, 14, 78,151, 46, 1,113,113,182, 55,174, 66,171, + 86,173,234, 5, 5,121,156, 91,188,232, 43,143,223,246, 93,195,162, 69, 27,144,158,158, 14, 0,240,247,247,199,251, 3,251,139, +183,110, 89, 29, 20, 29, 61,227,108, 88, 88, 88,135,196,196, 68,155,213,205,121,158, 95, 29, 19, 19,243,166,147,147, 19,162,163, +163,211, 26, 53,106, 4, 23, 23, 23,172, 89,179, 6,181,107,215,134,209,104, 76, 91,176, 96,129, 72,165, 82,225,219,111,191, 93, +143, 63,162, 91,207,208,177, 87,167, 47,101,226,128,151, 95, 10, 31, 10, 39, 23, 31,172,251,233,103,220, 72,216,244,178,206,152, +250,229,212,177,190,131, 89, 42, 27,234,219,212, 41,186, 97,120,103,247, 38, 65,125,208, 32,236, 82, 29, 29, 23,119,231,203, 49, +254,243, 69, 14,165,155,167, 47,122, 54, 74, 72,250,239, 96,131,139,227,221,174,198, 58, 62,166,180,162,104, 40, 65,121, 13, 44, +111, 31,229, 27,157, 58,117, 98,129, 50,131,125,239,222, 61,232,245,122, 52,111,222,156,209,235,245,118,213,180, 82, 42,149,205, + 58,118,236,120,250,199, 31,127,116,127,249,229,151,115, 43,175,243,118,119,125,245,228,174,165,227,231, 46,219, 18,224,217,188, + 95,161,173, 31, 2,225,225,225,195, 90, 52,243,255,126,233,130,233,132, 85,103, 64,228,250, 24,224, 31, 35,107,219,122, 64,225, +134,215, 71, 78, 64,235,136, 8,118,252, 39, 83,191,111,221,186, 53,141,143,143,223,104, 77, 79, 64, 64, 64,224,159,130, 77,131, +197, 83,190,165,135,135,155,195,183, 11, 55, 37,248, 56, 48,196,219, 79, 73,164, 46,174, 34, 56, 57,202, 24, 86,172,245,247,247, +147,240,148,183, 56, 85, 72,213, 17, 6,132, 16,210,160, 65,131, 93, 27, 55,110,244, 20,139,197,224,121, 30, 30, 30, 30,184,115, +231, 14, 10, 10, 10,240,228,201, 19,164, 95,191,142, 6,117,253, 48,126,196,112,159,217,139, 22,239, 34,132,132, 87,238, 46,172, +170, 73,121, 10,222,244,116,143, 26, 33, 4,150,250, 23,171,155, 70,198,222,145, 16, 60,207,223, 85,169, 84, 80, 40, 20, 8, 12, + 12,116,138,143,143, 63,149,105, 14, 33,217, 58,247,254,253, 89, 31,169,236,215,133,115, 6,184, 17, 54, 13,105, 15, 10,209,216, +175, 13,220,107,213, 69,102,238, 19, 36,166,252,142,180,244,253,104,236, 87, 15, 35,222,111,236,250,205,234,220,125, 36,236,163, +198, 52,113,141,209,146,102, 73, 73,137, 83,189,122,245,224,235,235, 11,158,231,193,113, 28,174, 93,187, 86,241,220, 60, 95,162, +249,249,210,173,103, 80,155,205,195,128,126,189,144,159,159,239,100,239,185,155,205,213, 15,243,148, 65,154, 39, 89, 18, 0, 80, + 56,249, 24, 6, 79,201,188,214,186,117,107,120,120,120, 72,206,158, 61, 59, 1, 64,133,193,178,247,122, 26,128, 5,203, 54,110, +252,118, 80, 81, 17, 3, 0,223, 19,194, 27,202,170,106,219,190,158,132,144, 30,175,180,218,253,205, 55, 95,122, 16,154, 2,183, + 90, 95,227,226,197,251, 48, 24,202,238,252,227,199, 57, 24, 55,166, 24, 34,145, 51, 22, 47,158,238,254,238,128, 81, 59,203,187, +200,248,234, 52,203, 95,147,164,166,166, 34, 40, 40, 8,219,182,109, 19,177, 44,139, 11, 23, 46, 64, 46,151, 99,232,208,161, 8, + 14, 14, 22,201,229,114,156, 58,117, 10,197,197,197,207,188,161, 42,107,198,253,126,114,118,193,237,227, 95,102,179,135, 94, 91, +247,211,207, 24, 62,112, 0,188, 77,183, 79,213,110,204,204,238,249,122,187,175, 88,113,221,222,142,206,193,181,155, 6,247,129, + 68,234,132,177,159,207, 66,218,213, 95,107,107, 74,174,140,225,140, 15,235, 2,248,184,170, 38,221,254, 14,183,100,147,103,216, +145,122, 73,245,149, 97, 31, 93,200, 74, 90,123,249,143,163, 7,138,192,104, 93,203,247,193,173, 91,183,144,158,158, 14,150,101, +161,213,106,159,154, 40,184,178,102,104,104,232, 71, 28,199,125, 5, 0,122,189,126,147,151,151,215,176,229,203,151,187,179,236, + 31, 51, 69,153, 35, 87,249,133,197, 5,103,227,175,221,152,240,209, 59,157,227,206, 95,125,232, 26,210,247, 65, 97,242,158, 34, + 75,215, 51, 50, 50,178,182,148,101,215, 46, 91, 52,147,112,183,143, 66, 22,216, 25, 34,167,166,224,140,153, 40, 45,120, 2,237, +157,108, 24,214,172,128,255,200, 79,176,112,193, 92, 50,112,240, 7,107, 27, 55,110,188, 43,189, 82, 4,239,175, 24,165, 36,104, + 10,154,130,230,223, 83,243,223,134, 77,131, 69, 8, 83,108, 48, 24,197, 46,117,125,141,111,191,213,177, 69,210,133,171,105, 78, +110,181,152,144, 54, 45,154, 95, 77,203, 72,132,137, 51, 16,194,216,149,215,225,231,231, 55, 96,250,244,233, 45, 92, 92, 92,192, +243, 60,106,213,170,133,220,220, 92, 24, 12, 6, 20, 23, 23, 67,247,164, 4,134,146, 98, 36, 63,184,135, 14,157, 59,227,149,200, +200,192,223,141,198, 1, 0,182, 85,167,201, 49, 44,117, 15,109,131,254,183, 31,131, 55,232,177,221,223, 29, 64, 89,212,234,189, +123,133, 32,132,128,211,235,240,123,155, 38,144, 57, 57,162,229,103,213, 78, 25,104,147,172,172,172,164,250,245,235, 31,120,237, +181,215,122,142, 24, 49,130,201,206,206, 62,232,229,229,213,254,209,163, 71, 54,187, 71, 61,111,114, 67,163, 70,132,250,215,113, +101,240,219,153, 67,104, 27,208, 15, 10,153, 24,185, 5, 90, 48,132, 32,253,238, 17,112,156, 35,146, 83, 31, 32, 50,216, 17, 47, + 71,212,242,123,114, 52,127, 4,170,239, 46, 35, 5, 5, 5,200,201,201,129,209,104,132,201,100,194, 59,253,251, 99,243,166, 77, + 80,171,213, 40, 45, 45,133, 94,175, 7,207,151,249,137,236,220, 39,184,152,124, 16,225, 45,154, 1, 86, 42,126,139, 88, 54,103, +241,250, 85,158, 0, 32, 87,184, 25, 75, 74, 74,224,232,232, 8,205,147, 44,201,168,247,203, 34, 91,171,182,174,146, 28, 63,126, + 28,137,137,137, 80, 42,149,192,115,206, 8,144, 14,172,189,203,113,211,122,238,222,237,121,102,247,110,254,252,111,191,101,200, + 74, 74,214,216,179,111, 68, 68,171,119,198,142,125, 61, 80,238, 32, 71,198,131,165, 8, 8,144, 96,226,167,238,136,249, 58, 15, + 0, 48,126,172, 31,194,195,221, 81, 92,184, 3,117, 60,167, 98,226,132,190,141,159, 60,161, 67, 0,108,178,166, 75, 8, 25,183, +101,203,150,180, 30, 61,122,136,146,146,146, 32,147,201, 32,151,203,225,224,224, 0,185, 92,142,236,236,108,232,245,122,108,223, +190,221, 84,222,133, 88, 45,229,221,128, 61, 39,244,240, 57,112, 35, 97,211,203,190,204,157,228,190, 19,218,221, 77,186,144,252, +228,216,209, 51,179, 77,165, 14, 15, 11, 51, 98, 39, 55,106,157, 92,103,204,103, 51,177, 98,225,116,220,184,112, 50,223,171, 94, +201, 74,142,232, 54,181,183, 80,231,190,115,231,153,162,209,211, 6, 26, 71, 15,123,187,214, 62,159,179,195,247,137,144,247, 40, +255,202, 34,220,190,168,149, 53, 13, 26,220,172, 17,209, 31, 59,118, 76,222,177, 99, 71,104,181, 90, 0, 0,203,178,216,178,101, + 11,111, 50,153,142, 91,106,167,209,104,252, 42, 49, 49,209, 71,163,209, 96,224,192,129,227,103,204,152,225, 40, 22,139, 1, 0, + 28, 87, 54, 91,149, 57,114, 53,231,155, 31, 14,125,242,213,202,227,135,182,125,173,156, 19, 61,172,243,160,177,115,143, 3, 56, +104, 73,215,100, 50,109,254,230,235, 41,172,204,213, 0,210,186, 7, 12, 57, 90,220,255,126, 4,244, 69, 90, 52,155, 61, 11,128, + 4,122, 3,139,125,125,251,131,117, 83,226,195,142,237, 69,107, 78,158,222, 12,160,175,181,235, 42, 32, 32,240, 63, 73,107, 0, + 30,229,207,243, 80,246, 61,230, 14,192, 28,101,247, 0,160, 7, 32,173,180, 79,213,229,202,219, 86, 93,174,252, 60, 15,101,185, +205, 30, 0, 56, 0, 23, 1,212, 56, 79,148, 1, 0, 66, 72, 69,192,167,242,115, 0,224,121, 62, 46,253,246, 61,109,231, 78,225, + 62,199, 47,222, 76,122,173,223, 43,109, 58,118,141,104,251,232,113,241,109,111, 15, 23,199,179, 23,206,203,120,158,183,171,127, + 71, 44, 22,247,238,208,161,131,168,160,160, 0, 10,133, 2,185,185,185,200,204,204,132,193, 96,128,182,168, 16,186,194, 2,104, + 11,242, 97, 44, 41, 68,122,252, 5,188, 84,207, 87, 86,158, 4,111, 23, 85, 35, 84,230, 25,236, 9,195,192,193,197, 25,114, 23, + 23,176,108,205, 42, 83, 40,149,202, 62, 1, 1, 1,231,125,125,125,167, 1,128, 94,175, 31, 19, 19, 19,147, 71, 41,197,228,201, +147, 93, 92, 92, 92,182, 55,104,208, 64,102, 75,199,217,141,123, 39,162, 69, 19, 54,237,254, 21,132, 55,125, 27, 13,125, 58, 34, + 61,179, 8,185, 69,165,200,206, 87,163, 89,179,207,224,161, 28,142, 90,222, 35,113,229,198, 67,248,120, 55,100, 88,177,228, 53, +107,154,217,217,217, 79, 45,255,180,117, 43, 52, 26, 13,154, 52,105,130,247,222,123, 15,159,127,254, 57, 6, 12, 24, 0,165, 82, +137,151,155,136, 48,108,240, 59,200,201,201,177,218,206,143, 23,153,188,150,108,247, 73,154,248, 13, 77,106,221,247,240,213,244, +244,116,164,165, 61,219,179,118,244,232, 81, 20, 21, 21, 85,124, 1,219,131,151,151,215, 20, 31, 31,159,203, 62, 62, 62,215,124, +124,124,126,127,164, 84,166, 26,253,253,189,218,247,237, 75,154,191,251, 46,251,208,209,145,220,173, 91,215,201,182, 18,224,226, +130,215,195,195, 59, 72, 11, 11, 54, 0, 40, 51,145,195,254,227,129,211, 39,131,112,230, 84, 24,198,141,245, 7, 67, 28, 64, 24, + 9, 52,234,163,104, 30, 20, 44,113,118,166, 86,223, 75,229, 9,237,183,131,130,130, 68,163, 70,141,130, 76, 38,195,230,205,155, +177,106,213, 42, 44, 89,178, 4,105,105,105,168, 95,191, 62,124,124,124,224,229,229, 37, 2,112,187,124, 31,171,184, 54,102,102, +235,140,169,167,106, 55,117,188, 77, 24,207,118, 58,147,195,219,211, 23,169, 30,207, 94,121,123,241,221, 27, 90,255,212, 11, 39, + 31,167, 93,221,203,223,137, 63,158,167,186,249,196,127,246,202,219,139,231,173,200,204,183,164,117,242,228,116,110,207,239, 39, + 13,234, 39, 26, 81,159,158,221,180, 35,255,243, 94, 51, 55,197, 75, 91,224,219,163, 85,131,186, 62,131,167,207,251, 86,255,225, +168, 79, 12,223,175,223, 64, 75, 74, 74, 80, 92, 92,140,101,203,150,153,126,251,237,183, 76,142,227, 62,169,166,137, 44, 0,152, + 76, 38,244,239,223,223, 81, 46,151,227,225,195,135, 21, 81, 80, 0,200,202,125,124,229, 76,252,213,212, 9, 35,251,119, 82,235, +116,186, 67, 39, 18,174, 55,111, 90,223,143, 16,218,160,186,243,102, 9,105, 27,212,178, 37, 40, 45, 4, 35,170,135,140, 31, 22, + 65,155,157, 15, 77,110, 62, 24,177, 35,140,112,128,129, 74,225,208,178, 13,238, 39, 94,130,151,147, 11, 68,132,180,183,117, 61, + 5, 4, 4,254,157, 88,243, 34, 0, 60, 8, 33,251, 8, 33,251,166, 76,153,210, 5,128, 59, 33,100, 31,202, 76,144, 71,249,115, +169,121,155,106,150, 61, 42,235, 84,217,183,242,243, 58, 83,166, 76,233, 74, 8,217,215,174, 93,187,193, 40, 51,114, 53,198,166, +219, 96, 75,245, 49, 83,166, 77,103, 92,156,164,206,205, 3, 27,214,254,237,112, 92,210,153,243,151,174, 59, 43, 28,100, 79,212, +106,233,146,229,171,234, 17,141,214,222, 36,239,192, 58,117,234,192, 96, 48,224,214,173, 91,200,200,200,128,193, 96,128, 73,163, +134,174,176, 16,165, 5, 5,224, 53, 79, 32,225,120,104,243,114, 81,219, 65, 10,252, 49,194,176, 90, 40,165, 21,102,170, 50,230, +101, 66, 8, 28, 92,156, 33,117,118, 2, 35, 98, 45, 73, 88,196,199,199, 39,172, 85,171, 86,191, 28, 59,118, 44,162, 67,135, 14, +179, 27, 52,104, 80, 43, 59, 59,251,254,163, 71,143,186, 45, 92,184, 80,231,225,225,129, 65,131, 6,189,100, 52, 26,163,108,105, + 73, 28,116, 45,234,123, 53, 69, 61,175, 62, 80,186,183,197,227, 98, 29,114, 11,181,200,126,172,193,207, 59,223, 67,236,129,247, +112,233,212, 96,220,186, 48, 12,143,213, 46,112,112,235, 2,128, 90,173,160,123,254,252,255,177,119,230, 97, 81,149,237, 31,255, + 62,103,246, 25, 96, 24,134,125, 88,220, 16, 49, 68,101, 81, 92,195, 61, 83,204, 22,245,205, 92, 82,203,202,210,124, 43, 83, 83, +115,169,196, 50,179,172, 92,126,105,154, 90,110,169,249,230, 26,149,251,138,184,162,130,130,236, 59,195, 14,179,158,121,126,127, +192, 16, 18, 48, 51,136,162,117, 62,215,117,174,153, 57,203,247,220,231, 48,204,124,231,126,238,231,121,206, 98,237,218,181, 53, +203, 55,223,124, 3,181, 90,141, 78,157, 58, 33, 45, 45, 13,135, 14, 29, 66,118,118, 54, 92, 93, 93,113,233,210, 37,172, 91,183, + 14,231,206, 89, 53,119,237, 61,104, 52, 26, 8,197,206,250, 53, 63,174,193,154, 31,215,128,133,157,222,188,205,150,129,106, 25, +134,121, 57,235,217,103, 59,103, 41, 20,129, 93,186,116,121,122,204,152, 49,237,194,195,195,107,182,251,249,249,249,242,249,252, +108,149, 74,181, 94,165, 82, 5, 55, 42,102,162, 33, 78,202, 39,160,211,222, 4, 0, 16,194, 7, 33, 98, 12, 24,124, 3,189,251, + 94,132,222, 32, 2, 97,196, 96,136, 4, 70, 99, 1,228, 14,238,160,212,226,136,196,195, 14, 29, 58,132,181,107,215, 34, 41, 41, +169,166,121, 52, 50, 50,114,250,216,177, 99,119,179, 44,139, 95,127,253, 21,123,247,238, 69,219,182,109, 17, 28, 28, 12,189, 94, +223, 96, 13,150,153, 5,223,100,156,253,241,139,131, 47, 10,140,138, 96,145,184, 85, 91,166, 84, 54,242,205,126,174,118, 0,112, +240,206,157, 82,119,223,210,101, 21,165,215, 82,157,188,203, 63,181, 84,224, 78, 41,104, 76,252,245,115,219,126, 62, 82,156,147, + 95, 32, 8,233, 26, 84,249,201,226, 89,194,214,109,218,127,182,112,246, 52,247,140, 18, 73,241,224, 25, 7,111,238, 62,116,190, +108,194,228,169,198, 41, 83,223,210, 28, 62,242,251, 30,147,201,212,165,161, 30,132, 38,147, 9, 89, 89, 89,184,118,237, 26,146, +146,146,144,159,159,143,188,188, 60,148,150,150,214, 52, 43,202, 74, 75,246,127,179,241,127,151,237,164, 82, 89,120,103,127,223, +115,177,113,185,118, 82,169,204,191,141,111, 7, 66,234,159,128,218,100, 50, 41,170,238, 33, 65,233,181,227,208,168, 75, 81, 89, + 84,134, 74,117, 25,180,122, 30, 52, 90, 6, 26, 61, 3,151,190, 67, 80, 86, 94, 9,141,186, 8, 38, 74,157, 44,221, 79, 14, 14, +142,127, 47,148,210,200,101,203,150, 45,109,108,123,173, 71, 93,157,215, 32,132,252, 74, 41,141,164,148, 70, 86,155, 41,152,215, +215,214, 89,182,108,217, 82, 74,105,228,233,211,167,127, 2, 80,209,148, 88, 45, 54,237,228,231,199,151,201, 93, 3,159,159, 57, +251,195, 3, 91,191, 91,229,166, 86, 23,198, 11, 37, 82,141, 68, 34, 82,190, 63,123,177,162,188,162,248,249, 50,181,245,189,158, + 10, 11, 11,107,190,188,245,223, 43, 29, 0, 0, 32, 0, 73, 68, 65, 84,132, 66, 33,216,138,114,176,149, 21,208, 20, 22,128,232, +181, 16,178, 44,148, 50, 25,124, 85,238,104,237,238, 97, 81,143,103, 98, 73,230,111, 7,112,120,252,115,247, 52, 11,154,244, 58, + 28,234, 21, 0,145,189, 29,164, 10, 39,244,217,123, 2, 0, 32, 20, 10,129,133,159, 90,212,245,240,240,112, 81,169, 84,251,190, +254,250,107, 97,126,126, 62,174, 95,191,126, 57, 57, 57,185, 88,169, 84, 58, 8, 4, 2, 83, 66, 66, 66,244,173, 91,183, 34,219, +180,105, 3, 74,169,159, 37,189,210, 34, 59,189,222, 96, 66, 70,110, 10,210,179,174,193,209,222, 23,148,241, 65,142,186, 2, 4, +110, 48,104,110,213,212,146,105, 43,211, 81,174,181,110,222, 94,189, 94, 15,131,193, 0,131,193, 0,157, 78,135, 9, 19, 38,224, +244,153, 51,248,113,239, 81,164,165,165,161,173,135, 12, 47,254,103, 52,186,118,237,138,152,152, 24,171, 52,235,163,203,240,195, +215,165, 82, 41,214,172, 89, 3,153, 76, 86,179,222, 90,131,229,233,233,185,162, 99,199,142,237,111,149,151, 35,238,230, 77,116, + 31, 61, 26, 0,112,242,228,201,154,125, 42, 43, 43,241,210, 75, 47,137,146,146,146,166,220,188,121,115,138,167,167,231, 23, 89, + 89, 89,239, 54,164,185,127,255, 25,188,254,122, 28,242,242,170, 50,187,219,127, 10,172,217,118, 55, 73,143,161,195,171, 90,174, + 20, 10, 5, 86,172,176,110,182, 7,150,101,177,110,221, 58, 72,165,210, 26,131, 37, 20, 10,123,191,243,206, 59,207,215,183,127, + 96, 96, 96,125,171,239,225,157,209,222,146, 75, 41,210, 55, 29,219,183, 9,114,116,237,130,124,227,165,206,177, 25,217,211,223, + 25,237,253,229, 23, 59,211, 53, 44,209,110, 98, 13,105, 62,124,137,230, 7,107, 98,188,115,112,149,206,169,237,107, 63,100,231, + 22,207,123,107,234, 56,103,133,147,123,217,250,175,163, 20, 12,195,224,127, 23,117,133,157,218, 57, 59,141,236,241, 85,217,235, +255, 93, 16,171, 51,166, 76, 71,218,175,183,128,122,203, 18, 1, 84, 25,172,140,140, 12,228,231,231, 35, 53, 53, 21,121,121,121, + 32,132, 32, 47, 47,207,166, 12,101, 93, 8, 33,208,165,103, 32,123,207, 6,120,188, 52, 14, 29,150, 44,129,201, 36, 64,101,133, + 17,187,250, 14, 68, 73,113, 37,116, 38, 2, 69,104, 47, 12,254,245, 4, 24,147, 17, 56,115,186,201,231,227,224,224,248,231, 67, + 8,249,117,206,156, 57, 31, 88,185,123, 52, 0,171,134,214,169,107,184,230,204,153,243,129,249, 92, 81, 81, 81,149, 0, 50,109, +141,213,170,218,153,146,188,184, 68,231, 86, 93,178,202, 42, 42, 37, 78, 74,167, 10, 7,123, 17, 45, 46, 42,230,221,188, 29,175, + 41,203,186,125,203,134,243,221,184,126,253,122, 80, 70, 70, 6, 82, 83, 82, 96,168, 40, 7,209,105, 1, 77, 37, 6,245,237, 13, + 9, 0, 9, 1,132, 38, 61,120, 60, 17,202,202, 74, 0,224,134, 37, 81,147,161,166, 14,252,222,102, 65, 7, 7,136,236,237, 32, +150, 59,212,108,179, 22,169, 84,250,227,186,117,235, 60, 61, 61, 61,177,114,229, 74,120,122,122,118, 28, 52,104, 80, 69, 68, 68, +132,212,197,197, 5, 29, 58,116, 64, 88, 88, 24,254,252,243, 79, 16, 66,238, 88,210, 51,234, 68, 23,111, 36,178, 62, 37,101,151, +112,238,226, 22, 24,116, 58,180,241,159, 11,173,209, 5,118,110, 83, 80,169,223, 7,125,209, 81, 0,128, 72,222, 15, 57, 57,249, + 0, 72,163, 69,132,117,205, 13,165, 20, 87,174, 92,193,166, 61, 39,225,251, 68, 63,100,171, 15,225,218,181, 24,184, 59, 29,129, +127, 96, 39, 24,106,221, 39, 75, 88,107,156,172,253, 2, 38,132,188, 52,119,238, 92, 20, 75,165,192,240,225, 16, 38, 38, 66,175, +215,163, 71,143, 30,232,214,173, 27, 0,160, 71,143, 30,224,241,120,104,223,190, 61,148, 74, 37,118,239,222,253, 18,128,122, 13, + 22, 37,228,146,137, 45,232,216,174, 93,187, 26,131,245,195,230, 60,196,198, 12, 2,129, 8,171,190,249,235, 79,226,235,235,139, +236,236, 36, 16, 98,177, 40,243,192,240,225,195,135, 57, 57, 57, 97,210,164, 73,144, 74,165,120,238,185,231, 80, 89, 89, 57, 6, + 0,150, 45, 91,134,185,115,231, 2, 0, 22, 46, 92,136, 69,139, 22,161,162,162,162,193, 33, 42,214,126,210, 69, 85, 90,105,154, +236,233,169,122,174,191, 75,155, 46, 3,158, 26,132,182,254, 3, 49,224,169, 52, 0, 88,234, 34,184, 59,250,179,121, 65,123,218, +248, 40, 55,158,222, 27,253, 97,159,167,251,207, 95, 60, 67,249,209,194, 85,106,139, 63, 88,138,238,254, 95,233, 77,193,136, 47, + 87,173, 53,174, 92,248,193, 59,226,148,124,189, 58,179,208, 84,102, 39,230, 59,248,185,195,126,250,251, 31, 37,101,102,222,126, + 15,105, 71, 44,246,156,100, 89, 22, 73, 73, 73,208,106,181, 96, 89, 22, 90,173, 22,101,101,101, 72, 79, 79,175,249,251, 86,218, +201,135,190, 53,105, 68,215,242,202,202,138,115, 87, 19, 82,231,207, 24,215,179,188,178,178, 34,225,110,106, 60,165, 95,213, 59, +206, 24, 33,164,168,162,180, 76,169, 43, 53,160,232,114, 60, 92, 6,180,130,206, 72,160, 53,242,160,206, 47,133,158, 5, 12,140, + 0,222,163, 38,192, 72,248, 40,201,203, 6, 67, 8, 55, 30, 22, 7, 7, 71,131,152,141, 80, 84, 84,148,213,229, 67,182,106, 3, + 64, 84, 84,212,245,168,168,168,251, 58,151,217, 96,245,171,213,222,217,175,238, 78,132, 16, 18,220,197,215,107,233, 7,207,171, + 12, 6, 93,199,178,178, 50,150,207, 23,241,125, 28, 43,179,235,238,219, 24, 6,131,225,215, 19, 39, 78, 60,219,183,111, 95,113, +194,213,203,208, 22, 23, 67, 91, 92, 4,161,201, 8,165, 36, 12,140, 65, 7,162,211,194, 43,192,132,202, 18, 9,206, 92,184,101, + 48, 24, 12,191, 54,166, 73, 65,169,201, 88,101, 28, 24,134,119, 79, 83,161,216,193, 30, 34,123,123,136,237, 29,234,109, 66,108, + 8,119,119,119,217,211, 79, 63, 61, 48, 36, 36, 4,148, 82, 44, 95,190, 28, 58,157, 78,100,206, 20,233,245,122,148,150,150,226, +231,159,127,198,230,205,155, 79, 57, 58, 58, 90,236, 90,110, 50,106, 15,254,121,234,242,176,241,207, 13, 16,253,118,116, 61, 12, + 90, 35,202,180, 10,148,107,116, 40,173, 20, 64, 39,126, 10,132,156, 0,195, 19,163, 87,176, 31,254, 56,153,160, 97, 13,250,122, +139,135,255,118, 15,170,205, 16, 33, 4, 90,173, 22,185,185,121, 80,151,254, 9,148,102,192, 69, 95,138,178,187,119, 16, 60, 97, + 34,116, 58,157, 69,173,175,222,227,231,188, 51,154,117,251,226, 29, 6, 18,169,147,161,251,115,191, 53,104, 74,236,237,237,107, +106,116,172,161,164,164, 4, 91,182,108, 65,143, 30, 61, 16, 17, 17,129,140,140, 12, 36, 38, 38, 98,216,176,191, 90,217, 46, 95, +190,140,216,216, 88,248,249, 53,158, 20, 44, 41,161, 7,212,234,219,163, 71,142, 28, 41, 60,123,246, 44, 40,165,240,247,119,132, +220,193, 30,132, 17,227,137, 39, 92, 1,220, 2, 33, 4,253,250,245,131, 94,159,105, 44, 47,199,129,198, 52, 47, 94,188, 56, 60, + 52, 52,180,173,193, 96,136, 15, 10, 10,226,103,103,103, 99,212,168, 81,216,190,125, 59, 0, 96,206,156, 57,152, 51,103,206, 61, +199,148,149,149,105, 26,210,235,218,189,195,123, 44,117,142, 16,137, 91,181,117,116,237,130,182,254, 3, 1, 0,131, 35, 39,163, +109,123, 31, 20,231, 93,105,171,211,166, 60,199, 35, 5, 78, 91,207,102,196,245,149, 5, 77,202, 79, 59,154, 0,192,226,192,189, +148, 82, 74, 8,201, 73, 21,200,119,236,250,229,215,215, 70,140,120,134,111, 96, 77,198, 32, 95,190,227,246,221,251,115, 51, 82, + 82,191, 66,234,145,235,181,247,111, 72,139,101, 89,182,168,168, 8,246,246,246, 72, 76, 76,212,142, 24, 49, 66, 92, 89, 89,137, +132,132,132, 26,131,229,230,162, 12,236,221, 45,168,227,199, 43, 55, 31,182, 19,139,197, 79,245, 11,123, 34, 46, 33, 37,157, 82, +146,220,160, 46,165,103, 19,110,220, 24,238,234,226,139,172,163,167, 97,215,231,105,104,181, 4, 26,189, 9, 58, 22, 48,242,132, +112,236,218, 29,210,118, 79,192, 68,129, 27, 87, 47,195, 72,233, 41, 75,215,206,193,193,241,143,165, 81, 47, 2, 84,101,176,122, +246,236,185, 13,248, 43,203,100,126, 14, 64, 11,160,177,154,232,188,218, 38,202,220,108,216,208,121,234,232,218, 12,191,250, 36, +199,208, 72,207, 50, 23, 23, 23,183, 39, 2, 58,181,251,110,195,122,232,181,197, 72,140,219,136,242,210, 28, 44, 88,122,198,207, +219,219, 59, 34, 61, 61,253,152, 53, 39, 75, 79, 79,223,190,123,247,238,119,187,118,234, 20,210,218,219, 27, 87,146,239, 66, 72, + 89, 8, 89, 22,140, 94, 11, 62,171,131,119,160, 9, 12, 99,135,236,236, 82,172, 59,244,251,181,244,244,244,237,141,105,178,132, + 7,159, 17, 47, 96,236,224,225,160, 6, 61,142,244, 13,132,196,222, 30, 98,133, 2,189,126, 62, 90, 53,100,131,209,128,228,101, +179, 32,180,179,135,178, 71,189,127,179,123,200,201,201,169,104,223,190,125,204,205,155, 55,187, 5, 4, 4, 96,241,226,197, 72, + 75, 75, 3,165, 20,185,185,185,154,188,188,188,140,130,130,130,100, 66,200,158,204,204,204,239,172, 25, 41, 60,215,159,183,233, +183,232,223,223, 11, 13, 14,236, 48, 40, 98, 17,126,253,245, 67, 20,149,148,160, 92,203, 71, 89,165, 30,229, 26, 10,149,131, 31, +194,187,132, 32,175, 64,135,132,235, 23,211,243,133,202,255,179,230,190,154, 33,132,224,242,229,203,104,165, 36,136,139,143,133, +139, 70,141, 0,133, 61, 66,250,244, 69, 82, 82, 18, 0,203,153,169, 58,227, 96, 9, 20, 10, 5,138,139,139,239, 57, 78, 38,147, + 65,165, 82,161,164,164, 4,187,118,237, 2,181,238, 75,209,160,211,233,208,177, 99, 71, 92,184,112, 1,209,209,209, 24, 48, 96, + 0,158,124,242, 73, 28, 61,122, 20, 49, 49, 49,136,141,141, 5, 33, 4,206,206,206,230,108, 91,131, 41,183,243,231, 47,239,180, +183, 39,115, 39, 77,122, 35,104,220,184,113,248,249,231,109,152, 60, 41, 0,132, 17,131, 16, 49,158, 25,209, 17, 75, 62,138, 65, +120,120, 63,184,184, 8, 17, 29,125, 61,137,207,119,220,108, 41, 72, 74,233,215,159,125,246, 25, 95, 34,145, 64,167,211,161,172, +172, 12, 5, 5, 85,195, 81,213,151,193,170,172,172,108,112, 96,181,235,151,110,173, 40, 44,161,133, 76,197,197,231,242, 13,151, +186, 12,120, 42, 29,131, 35, 39,225,183, 95, 55,226,143,195,209,112, 17,220, 77, 98,165,101, 7,243,146,242, 75, 51,203,252,215, + 5,134,189,194,203, 42, 63,188,246,205,145, 78, 60,111, 79,211,206, 57,171,139,139, 44,197,171,142,219,178,111, 31,197, 51,125, +122,116,247,235,236,171, 18,169, 11,114,177,251,151,131,215,245,119,127,254, 21, 85,205,130,214,164, 34,151,172, 90,181,234, 67, + 0, 48,153, 76,155, 86,174, 92,249,202,123,239,189,231,154,145,145, 81, 99,176,114,243,213,127,244, 26, 62,157, 45, 40, 42,214, +125,191,242,253, 81, 82,137, 88, 52,127,217,247, 71, 13, 60,156,109, 72,148,207,231, 79,252, 96,245,214,188, 93, 59, 55,242, 92, + 37, 66,156,156,189, 16,137,191,255, 9, 61, 17,226,169, 35,231,160,211,179, 40,201, 45,192, 31,147,166,193,201, 83,137, 3, 5, + 9,108,113,105,137,197,122, 70, 14, 14,142,127, 38, 22,188, 72, 94, 45, 67,164, 6,144, 28, 21, 21,149, 95, 43,187,148, 7,224, + 50,128,174,213,251,229,213, 57, 46, 15,192, 5, 0,221,106,233,228, 85,159, 55,178,206,115, 93,157,125, 46, 55,229,122,172,106, + 34,204,207,207,207, 61, 31,115, 13,167,126, 91, 3,163, 65,139, 98,117,213,216,159,153, 57, 26,200,229,242, 51, 13, 29, 87,119, +182,109, 74, 41,245,244,244,124,126,229,151, 95,158,125,109,226,120,143, 39, 7, 14, 68,202,213, 43,208,170,243,193, 99, 89,240, +136, 0,101,249, 18,228,100,151, 32,106,223,193,220, 74,141,230,249,186,191,188,235,155,193,219, 92,228, 78, 9,129,196, 81, 14, +177,157, 29,196,142,242,191, 50, 86,132, 64,100,239, 0,129,157, 61,120,194,218, 61, 54, 27,214,172,168,168,120, 97,234,212,169, + 87, 14, 28, 56,224, 52,118,236, 88, 60,243,204, 51,177, 69, 69, 69,253,213,106,203,205, 55,245, 94,251,206,157,172, 75,231,103, + 70,126,187,230,187,211, 47,191,252,178,242,153,145,223, 34, 54,238, 58,138,202,171, 6, 77, 87,185,216, 33, 60, 96, 22,114, 11, +180, 56,124,240,215, 66,147, 81,243, 2,189,182,205,208,144, 38,165,148,186,184,184,220,147,149,227,241,120, 56,122,244, 40,222, +126,251,109,184, 56, 28, 69,105,114, 34, 58,247,141,192,224,113, 19, 49,121,242,100,240,120, 60, 56, 59, 59, 3,181,190,116, 45, +205,136, 94, 92, 92,140,214,173, 91, 99,251, 10,191,160,202, 10,181,192,151, 7, 8,203,229,134, 63,254, 24,126,237,248,241,227, +101, 0,190,243,247,247,191,103,144,209,250, 52, 9, 33,243,150, 46, 93,186,166,119,239,222, 82,123,123,123,248,251,251,227,212, +169, 83, 56,117,234, 20, 78,156,168,170,143,115,118,118,134, 82,169, 68, 81, 81, 17,210,210,210, 42, 9, 33,243, 26,188,159,148, +154,186,117,235,246,236,111,191,237, 57, 55, 98,196,243, 46, 67,135,246,132,135, 71, 41,140,198,124, 16, 70, 8,177,196, 13,223, +125,183, 12,185, 57,106,156, 62,115, 70, 93, 86,198,127, 33, 38,230,222, 41,136, 26,136, 83,127,232,208, 33, 72, 36, 18,252,252, +243,207, 70,119,119,119,190, 66,161, 0, 80,127, 6, 75,163,209,136,235, 28, 95,163,249,202,251, 87, 51, 0,124,244,206,104,239, +207, 79, 95,207,121, 22,192,143,109,219,123,227,143,195,209, 56,241,199,233, 57, 61,130, 76,171,134,191,212,125,137,100,192,152, + 89,129,161,175,240,236,229,158,248, 97,247,207,188,184,139,235, 63,209,148, 95,107, 7, 96,150,133,191, 17, 5,128,178,220,156, +185, 81, 95,124,179, 41,106,241,135,210,229, 95,173,206,172,204,207,254, 0, 85, 93, 43,105,237,253, 26,138, 51, 49, 49,113, 29, +128,154,225, 49, 84, 42,213,150,101,203,150, 29, 31, 63,126,188,171, 57, 67,153,123,253,151, 51, 0,206, 4,245,159,178,160, 87, +183, 78, 1,159,124,181,245,112,106, 90,206,214,162,184,170, 49,176,234,139,243,204,153, 51,133, 97, 97, 97, 83,103,205, 94,180, +126,241,146,133,164,227,204, 57,136, 63,117, 1,218, 74, 61,244,148, 7, 3, 8, 46,126,252, 5, 28, 92,229, 56, 73,213, 84,203, + 99, 94,189, 83,167,200,223,210,251,179, 41,112,154,156, 38,167,249,104,106, 90,224, 66, 61,235,234,155, 73,163,238,126,150, 94, + 63, 48,172, 50, 88, 94, 94, 94, 79, 14, 30,216, 3,189, 7,191, 1,189,182, 8,137,215,191, 71, 89,105, 14,188, 60,196, 72, 76, + 45,233, 9,224,152,181, 39,204,202,202, 74,245,244,244,236,241,201,151,171,118, 63,213,189,219, 19,254, 94,158, 98, 69,235, 86, +176,115,115, 71,126, 94, 30,206, 93,140, 55,172, 62,252,199,181, 74,141,198,170,169,114, 76, 38, 19,165,148, 66, 40, 20,130,242, +120, 8,156, 62, 27, 12,195,212,233, 45, 72, 32, 15,235, 3,134, 47,128,193,202,154,161,204,204,204,116, 47, 47,175, 23,166, 79, +159,254,251,166, 77,155,152,126,253,250, 5,239,219,183,175,201,115,218, 1, 64,254,213,125, 9,238,157,159,139, 88,245,245,234, + 93, 33, 97, 61, 90,181,110,211, 90,220,219,199, 17,122, 3,139,156,220, 2, 28, 59, 29,167, 77,136,187,156,102,210,235, 70,231, +198, 53, 60,138, 59, 0, 24, 12,134, 84,149, 74,229,190,104,209, 34, 24,141, 70,176, 44, 11,163,209,136,252,252,124,196,198,198, + 34,180, 71, 79,116,156,242, 10,212,106, 53, 54,108,216, 0,111,111,111, 12, 27, 54, 12,165,165,165, 56,126,252,120,131,247,181, +246, 56, 88,132,225, 23, 69, 70, 70, 30,237,212,169, 83,159, 65, 1,106, 65,237,204,214,209,163, 71,119,138,197,226,117, 73, 73, + 73,141,142,129,230,231,231, 39,210,104, 52,193,148, 82,126, 73, 73,201,151, 90,173,246,229,119,222,121,199,243,179,207, 62, 67, +151, 46, 93,144,159,159, 15,165, 82, 9, 79, 79, 79,148,149,149, 33, 41, 41,137,213,235,245,107, 89,150, 93,146,147,147,147,215, +152,246,133, 11, 23,238,134,132,132,244,204,201, 94,179,251,141,215,135,248, 27, 12, 97, 34,185, 99, 95, 80,106, 68, 81, 97, 26, + 8,189,162,223,179,247,247, 59, 69, 69,188,231, 99, 98, 98, 18, 26,211, 50,195, 48,204,235,255,251,223,255, 96,158, 42, 39, 51, + 51, 51,145, 97,170, 58,201,213,151,193,178,134, 47,118,166,107, 0,252,244,249,127,123,206, 44,206,187,210,193, 69,112, 55,169, + 71,144,105,213, 23, 59,211, 53,159,190,230,244,113, 70,222,209,248,204,178,195,235,126,216,253, 51,111,226,115, 47,176,158,246, + 9,115, 92,124,176,179,255, 51,141,235, 82, 74,105,215,174, 93,125, 25, 70,221, 38,183,224, 86,204,228, 87, 95, 27,227, 40,172, + 60,208,197, 43,191,189,209, 61, 80, 18, 23, 23,151, 92,189,155,245, 93, 61, 1,100,102,102,198,171, 84,170, 39, 87,172, 88,113, + 24,117, 82,227,185,249,234, 63,122, 70,190, 69,139,138,138, 47,229,198,253,210,232, 40,238, 0, 16, 19, 19,243,125, 88, 88, 24, + 38,140,159,252,127,175, 78,153,202, 11,154,241, 62,210,255,252, 29, 48, 26,144,117,226, 24,100, 14, 44,126,205, 79,102, 43,120, +204,212,152,152, 24,110, 20,119, 14, 14,142,127, 12,196,218,207, 94,191,118,222,135,219,181,241, 26,210,174,141, 10, 0,144,120, + 55, 19,137,119, 51,142,220, 73, 76,175,103, 56,196,106,241, 70, 28,110,237,201,158, 73,245, 80, 12,212,138,201,158,235,106, 6, + 5, 5,197, 50, 12,163,178,234, 34,170, 97, 89, 54,253,250,245,235, 97,214,196,169, 82,169,198,250,248,248, 44,203,204,204,220, +157,150,150,246, 95,107,207,209,232,181, 87, 79,246,204,240,132,145,148,210, 46, 0, 8, 97, 24,139,147, 61,215,214,244,242,242, +234, 44,149, 74,215,241,249,124, 95, 84,167, 84,205,183, 76,175,215,243,138,139,139, 37, 58,157,142, 7,128, 8,133, 66,163,189, +189,189, 70, 32, 16, 24, 89,150, 77, 53, 24, 12,175,101,100,100, 92,181, 20,167,153,192,192, 64,187, 73,131,110,148,213, 50, 88, +120,119, 37,109,176, 73,185,182,230,237,219,183, 59, 56, 57, 57,253,135, 16, 50,138, 82, 26, 80, 90, 90,170,253,240,195, 15, 47, + 29, 59,118,172,196,215,215,119,104,223,190,125,201,149, 43, 87,144,156,156, 76,203,202,202,118, 49, 12, 51, 47, 61, 61, 61,209, +166,251, 73, 8,211,171, 87,240,139, 14,246, 24,110,162,232, 10, 80, 66, 8,185, 90, 86, 70, 14,120,122,182,217,186,115,231,206, +122, 93,181, 53,215, 30, 26, 26,186,191,172,172,108, 88, 66, 66,253,254,140, 16, 2, 74,255,186, 23,141,105,126, 62,175,243,188, +158, 17,125, 94, 56,117,236,196,158,247, 63,185,246, 81,237,109,111, 61,167,156,252,210,155,111,127,246,227,183, 95,189,255,205, + 30,245, 61,115,242, 53,164, 25, 26, 26,218, 22,192,139,148,210, 78,132, 16,127,147, 9, 18, 66,168,154, 16, 18,103, 50,153, 46, +155, 76,166,255, 93,185,114,165,222,158, 47, 15,251, 23,109,237,201,158, 9,203, 42, 88, 66,172,154,236,249,113,249,229,205,105, +114,154,156, 38, 71, 93,172, 30,129,219,108,164,252,253,253,233,237,219,183,239,249, 82,105, 10,213, 6,106, 27, 26, 25,165,221, + 26,174, 93,187, 22,114, 63,199, 91, 34, 51, 51,243, 39, 0, 63, 53,167,102,181,129,250,190,122,105, 18,213, 6, 41,220,226,142, +205, 64, 92, 92, 92,249, 87,239,241,107, 50, 91,124, 30,175,241,209, 74,107, 49,100,200,144, 20,189, 94, 31, 13, 32, 29,128, 2, +128,218, 96, 48, 28,202,203,203,203,241,240,240, 8, 75, 73, 73, 89, 0, 0, 38,147,233,163,236,236,236, 38,141, 35, 81, 93, 3, +247, 99,245,210,172, 92,188,120,113,184, 74,165,138,117,118,118,246,211,104, 52, 34,141, 70, 35,168,253,222,151, 74,165,141,102, +217,106,227, 40,199, 15, 60, 82,224,236, 36, 39,127,203,212,184,120,225,231,202,242,107, 29, 92,188,240,179, 13,177, 37, 5, 7, + 7,111, 97, 24,166,141,201,100,114, 7, 32,167, 20,249,148,210,124,150,101,211,175, 94,189,106,115,183,226, 7, 69,181,129,106, +246, 94, 63, 28, 28, 28, 28,143, 42, 54, 79,113,146,144,144,112, 95,198,138,227,241,228,237,207,141,238, 77, 57, 46, 57, 57, 89, + 11,224,116,245,114, 15,213,134,106,196,125,134,246,192,201,204,204,108, 22, 19, 95, 93,147,245,223,238, 3,255,190,173,122,104, +134,247, 7, 88,104, 22,172,203,165, 75,151, 82, 1, 88,108, 74,231,224,224,224,224,120,184,216, 54,111, 12, 7, 7, 7, 7, 7, + 7, 7, 7,135, 69, 8,128,122,135,184,182,165,109,149, 16,139, 83,144,216,172,207,105,114,154,156, 38,167,201,105,114,154,156, +230, 63, 79,211,146,246, 63,165,182,203,234, 34,247, 38,137, 63, 38,133,117,156, 38,167,201,105,114,154,156, 38,167,201,105,182, +172,230, 63, 13,174,137,144,131,131,131,131,131,131,131,163,153,225, 12, 22, 7, 7, 7, 7, 7, 7, 7, 71, 51,195, 25, 44, 14, + 14, 14, 14, 14, 14, 14,142,102,134, 51, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12,103,176, 56, 56, 56, 56, 56, 56, 56, 56,154, +153, 7,218,139,144,131,131,131,131,131,131,131,227,223, 8,151,193,226,224,224,224,224,224,224,224,104,102, 24, 0, 32,132,208, +218,143, 28, 28, 28, 28, 28, 28, 28, 28, 15,147,127,154, 23,225, 50, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12,103,176, 56, 56, + 56, 56, 56, 56, 56, 56,154, 25,179,193,234, 87,157,146,235,215,146,193,112,112,112,112,112,112,112,252,107,249, 71,121,145,154, + 94,132,132, 16, 74, 41, 37, 45, 28, 15, 7, 7, 7, 7, 7, 7,199,191,148,127,146, 23,225,134,105,224,224,224,224,224,224,224, +224,104,102, 30,104, 13, 22, 33, 36,136,211,228, 52, 57, 77, 78,147,211,228, 52, 57, 77, 78,243,223, 6, 87,228,206,193,193,193, +193,193,193,193,209,204,112, 6,139,131,131,131,131,131,131,131,163,153,225, 12, 22, 7, 7, 7, 7, 7, 7, 7, 71, 51,195, 25, + 44, 14, 14, 14, 14, 14, 14, 14,142,102,134, 51, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12, 1, 80,111, 79, 0, 74,233, 53,171, + 69,154,208,155,192,146, 62,167,201,105,114,154,156, 38,167,201,105,114,154,255, 60, 77, 75,218,182,248,143, 71,153, 7, 58, 14, + 22, 33, 36,168,185,111, 20,167,201,105,114,154,156, 38,167,201,105,114,154,255, 60,205,127, 26, 92, 19, 33, 7, 7, 7, 7, 7, + 7, 7, 71, 51,195, 25,172, 38, 64, 8,153, 64, 8, 57, 68, 8,185, 70, 8, 57, 76, 8,153,112, 31, 90, 82, 66,200,156, 90,122, + 7, 9, 33,239, 19, 66,196,205, 25, 51, 71,243, 66, 8,225,181,116, 12, 28, 28,181, 81,169, 84, 29, 2, 3, 3, 47,170, 84,170, + 14, 45, 29, 11, 7, 7, 7,192,111,104,131,159,159,223,105,134, 97,218, 50, 76,149, 7, 35,228,175,169,129,204,207,235, 62, 82, + 74,147,226,226,226,122, 53,164,217,182,109,219, 26, 77,134, 97, 64, 8, 1,195, 48, 48, 24, 12, 14, 60, 30,175,180, 62, 77,150, +101,211,111,221,186, 21,118, 31,215,216,172, 16, 66,182, 56, 57, 57, 25, 86,175, 94,253,109, 72, 72, 72,123,181, 90, 93, 62,117, +234,212,167, 8, 33,131, 40,165,227,109,212, 10, 34,132,108,238,214,173,219,238,183,222,122,107,103, 96, 96,160, 67,121,121,185, +120,251,246,237, 30,107,215,174, 61, 65, 8,153, 76, 41,141,123, 80,215,194, 97, 59,158,158,158, 33,132,144,111,252,253,253,195, + 84, 42,213, 5, 0,111,102,102,102, 94,110,233,184,254, 77, 16, 66, 94, 17,137, 68, 67,253,253,253,187,107,181,218,194,164,164, +164,243, 44,203,126, 72, 41,205,110, 38,125, 71, 0, 31,138,197,226,112, 63, 63, 63,159,132,132,132, 52,189, 94,127, 14,192, 18, + 74,105,113,115,156,163,185, 81,169, 84, 29,194,195,195, 79, 46, 93,186,212,121,238,220,185, 39, 85, 42, 85,159,204,204,204,248, +150,142,139,227,209,199,215,215, 87, 81, 94, 94,190,158, 97,152, 16,137, 68,226,225,224,224, 0,123,123,251,108,177, 88,124, 73, + 38,147, 77,217,191,127,127, 81, 75,199,248,184,210,160,193,226,241,120,222,231,207,159,119,115,112,112, 0,203,178, 48,153, 76, + 48,153, 76,160,148,214, 60,154,161,148,130,101, 89,244,239,223, 95,223,232,201,248,124,159,139, 23, 47,186,217,219,219,215,172, +211,235,245,232,210,165,139, 41, 54, 54,214, 77, 34,145,220,179,191, 78,167, 67,104,104,232, 35, 51, 89, 34, 33,100,156,179,179, +179, 46, 37, 37,181,167, 70,171,239, 53,109,214, 71, 31,254,231,153, 8,199, 51,103,206, 48, 35, 70,140, 16, 16, 66, 38, 80, 74, + 55, 91,169, 37, 37,132,108,152, 63,127,254, 50,190, 80,230,182,235,192,105,254,215,235,126, 76, 11,122,162, 13,153, 57,125,154, +108,198,140, 25,231, 59,118,236,248, 61, 33,164, 47,165, 84,251,160,175,141,195, 50,132, 16,190,143,143,207, 47, 81, 81, 81, 94, +217, 89, 89,248, 98,229,202, 30, 0, 86, 3,232,209,210,177,253, 91, 32,132,204, 89,188,120,113,212, 75, 47,189, 4,163,209,136, +202,202, 74,213,157, 59,119, 58,205,159, 63,255, 57, 66, 72,119, 74,105,226,125,234,187,250,251,251,223,156, 57,115,166,178,123, +247,238, 96, 24, 6, 69, 69, 69,170,147, 39, 79,246,216,176, 97,195, 4, 66, 72, 71, 74,105,222,125,232, 51,206,206,206, 51, 0, +244, 55,153, 76, 98, 0,231, 10, 11, 11, 63,166,148, 54,250,217,105, 9, 39, 39,167,173,159,127,254,185,179, 88, 44,198,198,141, + 27,157,199,140, 25,115, 66,165, 82,245,229, 76, 22, 71, 99,184,184,184,188, 82, 90, 90,250,173, 76, 38, 19, 42, 20, 10, 72,165, + 82, 8,133, 66,136, 68, 34, 95, 39, 39, 39, 95,123,123,251, 97, 99,199,142,125,243,167,159,126, 90,223,210,177, 62,142, 52,216, + 68,200, 48, 12,164, 82, 41,182,111,223,142, 61,123,246,224,224,193,131,248,227,143, 63,112,242,228, 73,196,196,196,224,234,213, +171,184,121,243, 38,238,220,185,131,180,180, 52,240,120,150, 91, 76,204, 89,169,125,251,246,225,248,241,227,184,114,229, 10, 8, + 33, 32,132, 64, 44, 22, 35, 58, 58, 26,199,142, 29,195,233,211,167,113,225,194, 5, 8,133,194,123, 50,103, 15,133,236,197,116, +244, 32, 66,235,123,244,112,198,150,165, 75,151, 30,170,208, 26, 4, 44, 37,218,236, 66,131,122,201,242,111, 79,229,231,230, 30, +219,177, 99, 71, 9,128,177, 54,156,233,237,238,221,187,239, 51, 66,228, 62,225,229, 73,147,190, 89,177,228, 53, 42,117, 49,158, +140,189,147, 27, 24, 24,242,163, 66,161, 48,126,253,245,215,241, 0,102,216, 18,126,183,110,221, 82, 67, 67, 67,105,104,104, 40, +237,222,189,123, 94,191,126,253, 26, 52,209, 15, 19, 66,136,138, 16,242, 19, 33,228, 7, 66, 72,199, 58,219, 58,136, 68,162,255, + 17, 66, 54, 18, 66,124, 90, 42, 70, 75,120,121,121,117, 28, 63,126,188, 75, 65, 94, 30,190, 88,185,210,188, 58,172, 37,154, 11, + 67, 67, 67,219,246,233,211,103, 79,159, 62,125, 82,195,194,194,216,176,176, 48,246,201, 39,159, 76,237,219,183,239,202,208,208, + 80,105, 83,117, 9, 33, 62,132,144, 97,132,144,225, 13, 44,195,150, 47, 95,222,182, 37, 52, 9, 33,173,221,221,221,151,142, 30, + 61, 26,251,247,239,199,244,233,211, 13,139, 22, 45,162, 2,129, 0,111,190,249,166, 19,128, 97, 77,189,238, 90, 12, 91,188,120, +177,178,119,239,222,248,229,151, 95,176, 96,193,130,202,131, 7, 15, 34, 36, 36, 4, 83,167, 78, 85, 2,120,218, 86, 65, 66,136, +184,186,217,255, 48,143,199, 43,127,249,229,151,151,196,198,198, 14,186,122,245,106,248,164, 73,147, 70,200,229,242, 56, 23, 23, + 23,123,203, 74, 13, 83, 88, 88,248,241, 71, 31,125, 84, 42,151,203,145,154,154,138,197,139, 23,187,120,122,122, 30,227,154, 11, + 27,135,199,227,233, 9, 33,212, 92,146, 97,233,245, 63, 9,103,103,231, 55,212,106,245,119,174,174,174,194,214,173, 91,195,193, +193, 1,124, 62, 31, 38,147, 9,229,229,229, 72, 79, 79,135, 78,167, 19,118,236,216,241,187,183,222,122,235,141,150,142,247,113, +132, 79, 8,137,160,148, 30, 51,175, 48,191, 38,132,192,100, 50, 65, 32, 16,128,199,227,129,207,231, 67, 32, 16, 64, 32, 16,220, +243,220,188,212,103,132,234,246, 48, 96, 24,134,148,150,150,194,209,209, 17,114,185, 28,142,142,142, 53,153, 48,131,193,240, 55, + 77,150,101,193, 48, 12,109, 76,179, 57,168,173, 57,122,194, 34,236,140,166, 4, 0,118, 70, 47, 68,237,199,236,130, 69,241,189, +123,247,246,121,251,227,141, 81, 5, 5, 69,185,129,222,174,198,177, 47, 69,180, 18,229,231,228, 59,183,105, 19, 9, 32,215,134, + 56,251,188,254,250,235,187,118,253,121,219, 78, 44, 22,137,120, 12,120, 29,218,181, 21,120,201,219, 43, 93,159,234, 46, 74, 78, + 76, 60, 49, 97,194,132,215,167, 77,155,230, 12,224, 51, 43, 53, 65, 41,245, 60,114,228, 8,248,124, 62, 6, 13, 26,228,132,170, + 44,165,209,154,107,111, 46, 26,208,156,159,147,147,243,162, 70,163, 65, 88, 88,216, 51,132,144,254,148,210, 75,132,144,206, 35, + 71,142, 60,177,115,231, 78,135,216,216, 88,244,232,209, 67, 10, 96, 76, 11,198,249, 55, 84, 42,213, 17, 0,131,121, 60, 30,116, + 26,141,110,249,138, 21,181, 55,199, 80, 74, 89, 91, 53,109,161,174,102,112,112,112, 71,153, 76,118,122,197,138, 21,242,192,192, + 64, 34, 16, 8, 96, 52, 26,145,144,144,224,179,101,203,150,215, 46, 92,184,240,116,104,104,104,224,197,139, 23, 13,214,106,214, +162,211,137, 19, 39,202,219,181,107,199,214,183,177,162,162,130,215,174, 93,187,126, 0,146, 90, 64, 51, 61, 39, 39,231,217,193, +131, 7,191,158,157,157,125,211,104, 52,206, 6, 16,228,226,226, 18,251,194, 11, 47, 64, 42,149,246, 7,240, 85, 3, 49, 88, 19, + 39,220,220,220, 70,246,234,213, 11,223,124,243, 13, 62,253,244,211, 65,148,210,223, 9, 33, 3, 75, 74, 74,162,159,121,230, 25, + 40, 20,138,103, 1,108,178, 86,147, 16, 18, 40, 22,139, 55,253,244,211, 79,246,237,218,181,107, 39, 20, 10,153,118,237,218, 65, +173, 86, 67,163,209,136, 63,254,248,227,206, 18,137,228,242, 87, 95,125,181, 9,192,243,214,198, 89, 27,149, 74,213,161,123,247, +238,223,189,243,206, 59, 14,191,254,250, 43,252,253,253, 81, 82, 82,130,201,147, 39,187,173, 90,181,234,168, 74,165,234,103,206, +100, 61,236,255, 35, 66, 72, 49, 0, 57, 0,133, 45,205,171,141,220,207, 98, 0, 53,102, 71, 32, 16, 64, 44, 22, 67, 34,145, 64, + 34,145, 32, 41, 41,233,103, 30,143, 55, 9,192,223,222,251,245,105,146,191,190,184,186, 18, 66,206,243,120,188, 70, 95, 83, 74, + 77,214,196,121, 63, 88, 49,108,130, 55, 33,228, 75, 0,253, 81,149, 36, 57,230,230,230,246,118,118,118,118,138,181,154, 42,149, +202,185,172,172,236, 43,149, 74, 5, 55, 55, 55, 0, 0,143,199, 67, 88, 88, 24, 52, 26, 13,174, 95,191, 14,147,201,132, 59,119, +238, 64, 46,151,163,115,231,206, 95, 45, 94,188,120,215,194,133, 11, 11,172,141,211, 86, 26,242, 34,205,121,142,135, 13, 3,224, + 40, 80,117, 49,213,235,142,154, 55,178, 44,251, 55,211, 83,159,201,226,243,249, 32,132,128, 82,218,104,186,137, 16,194,232,116, +186, 26,115, 37,151,203,107,204,153,209,104,172,215, 96, 53, 21, 39, 39,167,195,132,144, 33,182, 30,183,115,243,162,198, 54,223, +201,205,205,213,143,236,211, 65, 44, 44, 83, 23, 76,232, 19,224,216,197,207, 59,200, 93,229, 53,166,162,162,226, 2,128, 44, 27, + 78,229, 21, 24, 24,232, 80,144,147,149,255,210,140,229, 75,102,125,188,246,163,110,254,238,242, 39,159,104,237,217,167,107, 96, + 27,103,106,100,100, 50, 89, 39, 0, 94,182, 94,131,163,163, 35,254,248,227, 15, 91, 15,123,208, 56, 85, 86, 86, 66,173, 86, 99, +237,218,181,114,103,103,231, 63, 9, 33, 19, 71,142, 28,121,106,215,174, 93, 14,197,197,197,208,235,245, 0, 80,217,210,129,214, +195, 71, 78, 78, 78,186,103,159,125, 22,219,118,236, 16,153, 76,166,114, 0,101, 0,178, 40,165,111, 61,236, 96, 36, 18,201,123, + 31,127,252,177, 60, 48, 48,144,228,231,231, 35, 51, 51, 19,249,249,249,112,113,113,193,172, 89,179, 36,237,219,183,247, 18,137, + 68, 31, 52, 81,158, 52,100,132, 0, 64, 38,147,177,176,189,115, 76,189,154, 70,163,145,132,135,135,191, 31, 20, 20,180,217, 26, + 77, 74,169,145, 82,186, 47, 45, 45,109,168,193, 96,120,151, 82,106, 4,112,249,230,205,155,149,124, 62, 31,109,218,180, 9,183, + 49,174,191,209,161, 67,135,158, 2,129, 0,231,206,157,211, 2, 56, 86,189,250,216,149, 43, 87,180,124, 62, 31, 62, 62, 62, 61, +173,213, 34,132,136,197, 98,241,166,219,183,111, 7,140, 24, 49,162,125, 73, 73, 9,163, 82,169, 96,254,155,165,166,166,226,202, +149, 43,152, 50,101,138, 27,203,178, 13,214,174,214, 70,165, 82,117,136,136,136, 72, 27, 53,106, 84,193, 11, 47,188, 80,240,252, +243,207, 23, 12, 31, 62,252,252,198,141, 27,157, 1,192,104, 52, 98,238,220,185, 72, 76, 76,132, 66,161,192,164, 73,147,220,165, + 82,233, 86,155,111, 68,243, 83, 36, 16, 8,168, 66,161,112,188, 79, 29, 49, 0, 17, 0, 17,159,207, 23,137,197, 98,145, 68, 34, + 17,137,197, 98,145, 88, 44, 22, 53, 67,156,143, 52,132, 16, 47, 66, 72,156, 64, 32, 24,174, 80, 40, 28,149, 74,165,131,175,175, +239, 83,126,126,126,215, 39, 76,152,208,218, 90, 29,141, 70,179, 89, 42,149, 10, 92, 93, 93, 1, 0, 67,134, 12,193,214,173, 91, +241,226,139, 47,154,134, 12, 25, 98, 26, 61,122, 52,220,221,221, 1, 0,151, 47, 95,134, 72, 36, 18, 40,149, 74,171,202, 95,238, +131, 6,189,200,227, 74,237,230,163,163,168, 26,120,180, 6,147,201, 4, 30,143,215,104,230,170,118, 6,203, 82,115, 30, 33, 4, + 44,203,194,195,195, 3, 50,153, 12, 50,153,172,102, 91,125,102,142, 82,218,228, 38,194,246,237,219, 15,144,201,100,125, 9, 33, +207, 80, 74,163,173, 61,174, 42,131,181,176,161,205,191,204,156, 57,115,216,217,179,103, 53, 61,187,180, 53,137, 51,211, 10,100, + 78, 46, 93,136,171,219,160,105,175, 78, 61, 3,224, 39, 27, 66,204,212,104, 52,226,214, 30, 76,101,102,113,137,174,173,220, 81, +209,214,209, 94,214,218,197,209,217, 73, 34, 98,236,220,221, 84, 6,131,161, 8, 64,166, 37,161,110,221,186,165,154, 76, 38, 31, + 0,144, 72, 36, 58, 66, 8, 95,161, 80,192,209,209, 81, 95, 88, 88,168, 9, 13, 13,133, 72, 36,202, 23, 10,133,158, 71,143, 30, +109, 48,155, 85,155,238,221,187,231,176, 44,235,214,216, 62, 66,161, 48,247,204,153, 51,238, 86, 93, 45, 48,175,107,215,174, 17, +171, 87,175,118,245,247,247,199,218,181,107,229,187,118,237,218,180,117,235, 86, 20, 21, 21,225,238,221,187,152, 60,121,114, 9, +128,229, 86,234, 61, 52,148, 74,229,201, 81,163, 70, 97,253,250,245,180,250, 71,132, 29, 33,164,139,163,163,227,173,184,184,184, +251,170,157,105, 10, 12,195, 60, 21, 16, 16, 64,138,139,139, 65, 41, 5,143,199,187,103,153, 53,107,150,116,202,148, 41,243,123, +246,236, 57, 75, 32, 16,148, 24,141,198,109,101,101,101,159, 92,187,118,237,145, 42, 86,237,219,183,239,127,211,210,210, 34, 91, +181,106,245,191,166,106, 80, 74,105,183,110,221,116,148, 82, 41,143,199, 19,220,111, 76,230,230, 94,150,101, 53,213, 6, 14,148, + 82, 99,104,104,168, 6, 85, 95,238,182, 52, 7,207,216,185,115,167,131,167,167,167,180,178,178, 18,137,137,137, 8, 13, 13, 69, +105,105, 41,202,203,203, 81, 81, 81, 1,189, 94,143,226,226, 98, 5,203,178, 58,107, 4,149, 74,229,214, 45, 91,182,120,123,123, +123,195, 96, 48,192, 96, 48,160,188,188, 28,199,142, 29,131, 86,171,133,193, 96, 64, 64, 64, 0,150, 45, 91,166,121,243,205, 55, + 37, 59,118,236,200,173,172,172, 28,103,243,141,104,102,120, 60, 30,196, 98, 49, 4, 2, 65,145,175,175, 47, 24,134,145, 36, 39, + 39, 55,165,182, 84, 14,160,132,207,231,139, 36, 18, 9,196, 98,113, 77, 6,235,218,181,107,219, 27,202, 94, 53, 4,173, 51, 16, +164,165,215, 45, 13, 33,228, 75,129, 64, 32,118,118,118, 22,154,215,233,245,122,161,147,147, 19, 90,181,106,245, 13,172,108, 38, + 39,132, 4, 59, 59, 59,131, 16, 2,161, 80,136, 87, 95,125, 21,231,207,159,223,147,158,158, 62, 33, 55, 55, 23,101,101,101,155, +229,114,249,115,185,185,185, 96, 89, 22,201,201,201,232,218,181,107,240, 3,187,176,123,249,155, 23,121, 92,225, 3,127, 57,198, + 90,206,209,156,145,178,152,185,106,172,137,176, 46,122,189,222, 62, 50, 50,210,100, 54, 99,230, 94,132, 0, 8,203,178, 16, 10, +133,247,104, 86, 27,172, 38,189,193,197, 98, 49,134, 13, 27, 38,145,201,100,123,171, 77,150, 85, 41,157,250, 50, 88, 1, 30,146, + 86, 2, 70,176, 61,114, 64,223,224,169, 51,103, 9,250,245,235,247,191,163, 50,131, 7, 0, 0, 32, 0, 73, 68, 65, 84,189,123, +247,134,184,244, 25, 48,188,168,168,232,226,180,137, 47,159,216,190,125,123,169,181, 5,238,213,156,218,179,103,143,231,123,211, +167, 9, 35, 34, 34,126,158,216,249, 29,190,167,200,228,160, 20, 11,121, 50, 30,159, 17,251,180, 30,250,251,177,227, 89, 0,142, + 91, 18,162,148,122, 70, 71, 71, 67,161, 80, 0,128, 72,167,211, 65,161, 80, 96,237,218,181, 18,185, 92, 14,185, 92,142, 94,189, +122, 57, 9,133,194, 70,155, 11,107,195,178,172,219,209,163, 71, 97,111,111,143,242,242,114,104,181, 90, 24,141, 70, 80, 74,193, +231,243, 33, 22,139,209,175, 95,191, 70, 13, 88,157, 24, 19, 9, 33, 79, 78,155, 54,237,248,234,213,171, 93,253,252,252,176,100, +201, 18, 20, 20, 20, 32, 53, 53, 21,227,198,141, 43, 73, 74, 74,234, 79, 41,189,105,173,230,195,160,115,231,206,244,212,169, 83, + 56,120,240, 32, 70,140, 24, 65,246,237,219,167,103, 89, 86,152,145,145,113,181,165, 98, 50, 26,141, 14, 34,145, 8, 6,131, 1, +124, 62,191,166, 9,223,108,176,188,188,188,240,219,111,191,241, 43, 42, 42,248, 5, 5, 5,178, 13, 27, 54, 76,143,137,137,241, +132,109, 53,130,205,206,154, 53,107, 90,189,250,234,171,169,124, 62,159, 14, 29, 58,116,124, 74, 74,202,179,158,158,158,191,255, +249,231,159, 43, 0,216, 92, 43, 20, 20, 20, 20,195,227,241,188, 1, 8,247,238,221,107, 96, 89, 86,216,185,115,231, 28, 74, 41, +204, 11, 0, 24,141,198,244,248,248,120,139, 61,145,131,130,130, 98, 36, 18,137,240,255,254,239,255, 12, 26,141, 70,216,165, 75, +151,156, 90, 58,194, 95,126,249,197, 96, 48, 24,132, 1, 1, 1, 49, 86,246,108,238, 23, 30, 30,222,170,168,168, 8,142,142,142, + 40, 43, 43, 67, 76, 76, 12, 2, 3, 3,145,153,153, 9,134, 97,160, 80, 40,176,102,205,154, 10, 66,136,218,154,107, 86,171,213, +227,102,206,156,121, 98,251,246,237, 46, 60, 30, 15, 41, 41, 41, 80,171,213, 80, 40, 20,216,178,101, 11, 90,183,110,141,232,232, +104, 53,203,178,175,172, 95,191,126,126,101,101,229,184,150, 46,116,103, 24,166,198, 8,213, 50, 68,154, 30, 61,122,224,212,169, + 83, 63,218, 98,138, 40,165, 58,115,179, 96,237,166, 65,177, 88, 12, 30,143,103,115,147, 7,203,178, 66, 66, 72, 48,170,191,208, + 45,189,126, 4,136,176,179,179, 19,214, 93, 89, 88, 88, 40, 12, 8, 8,232,107,173,136, 88, 44,118,150, 74,171, 74, 53, 35, 34, + 34,144,155,155,203,182,107,215,238, 63, 99,198,140, 49, 0,192,107,175,189,246,159,188,188, 60,141,193, 96,224,241,249,124,228, +229,229,161,109,219,182,206,205,118, 21, 13, 80,159, 23,121,156,225, 83, 74, 9, 33,132,214,126, 52,111, 52,215, 96, 53,150,185, + 50,111, 51, 27,165,198, 78,198, 48, 76,209,197,139, 23,237,236,236,236,106,214, 25, 12, 6, 4, 7, 7,155, 76, 38, 19,169,123, +174,251,201, 96,137,197, 98, 40, 20, 10,140, 29, 59, 86,150,145,145,177, 9,128,183, 53,199,213,205, 96, 5,120, 72, 90,121,185, +186,159,254,244,147,197,158,119, 14,110,196,119, 95, 45, 55,158, 63,127,126,143,167,167,231, 11, 0, 74, 60,156, 49, 60,187, 0, +227, 41,165, 86,167,225, 9, 33, 12,128,237,103,206,156,185, 52,100,200,144, 51,119,239,222,117, 74,185,125,251,164, 92, 87, 86, +102,239,211,198, 40,116,115, 31, 89,169, 55,240, 71,141, 26,229, 14, 96,149, 21,122, 48,153, 76,216,191,127, 63, 28, 28, 28, 32, +151,203,161, 80, 40, 96, 54, 87, 77, 37, 41, 41, 9,233,233,233,176,179,179,131,157,157, 29,236,237,237, 97,111,111, 15,145, 72, +116, 79,246,209, 90, 40,165,241,132,144,183,119,239,222,189, 45, 42, 42, 10,133,133,133, 40, 47, 47,199,194,133, 11,145,152,152, + 56,147, 82,122,169,201,193, 62, 0,186,116,233, 66,207,156, 57,131,147, 39, 79,162,188,188, 28,223,124,243, 13, 60, 61, 61, 7, + 0, 88,208,146,113,153, 76, 38,161,121,168, 19,134, 97,254,150,193, 50,155, 45,169, 84, 10, 23, 23, 23,204,157, 59, 87, 56,114, +228,200,200,150,140,249,179,207, 62,107,255,229,151, 95,110,248,225,135, 31, 14,142, 27, 55,110,199,181,107,215, 38, 57, 58, 58, + 94,253,227,143, 63, 62, 22,139,197, 38,203, 10,127,135,207,231,123, 95,186,116,169,182,201, 23,176, 44, 43, 99, 89, 22, 70,163, + 17, 6,131, 1, 21, 21, 21, 24, 52,104,144,213,122,231,207,159,151, 1,192,130, 5, 11, 4, 0,100, 38,147, 9,181,245, 42, 43, + 43, 5, 3, 7, 14,180,234,179, 4,128,202,201,201, 73,144,154,154, 10,163,209,136,144,144, 16,172, 89,179, 6, 99,198,140, 65, +167, 78,157, 80, 90, 90,138,184,184, 56,108,218,180,201, 73, 40, 20,190, 96,141, 96,102,102,102,188, 74,165,234,251,159,255,252, +231,244,182,109,219,156, 90,181,106,133,244,244,116,100,102,102,194,207,207, 15,171, 86,173, 42,167,148,246,174, 54, 85,191, 88, + 25,231, 3,131, 97,152, 26, 19, 84,223,210, 20,140, 70,163, 92, 34,145,148, 84, 55, 13, 66, 44, 22,227,194,133, 11, 54,103,175, +204,212,253,220,177,244,186, 37, 49,127, 6, 27, 12,247, 94,166,157,157, 29,252,253,253,173,214,177,179,179, 35,230,239, 88,131, +193,128,172,172, 44,246,218,181,107,108, 72, 72, 8, 0,192,211,211,147, 61,123,246, 44,171,213,106,121, 14, 14, 14, 0, 0,133, + 66,241, 64, 77,102, 99, 94,228,113,197,220, 68,120,188,206, 99, 77, 6,203,108,120, 26, 43,114,231,243,249,214, 26, 44,240,120, + 60, 28, 58,116, 8,246,246,246,112,112,112, 64,199,142, 85, 29,202,204,217,178,186, 89,177,166, 26, 44,145, 72, 4, 71, 71, 71, + 28, 57,114, 68,115,249,242,229, 87,173, 61,174,118, 6,203,108,174, 86,124, 22,229, 89,112,227, 12,210, 51,179,144, 16,151,241, + 27,165,244, 7, 0, 63, 0, 0,178, 23, 83,120, 44,180,218, 92, 61,225, 42,235,218,195,223,227,151,254,131,135,122, 61, 59,113, + 26,243,230,155,111,246,124,249,229,151,213,227,199,143,159, 33,149, 74, 59, 25,141,198,194,232, 99,199,146, 71,143, 30,237, 92, + 92, 92,252, 50,165,212, 98, 77, 18,143,199,203, 26, 50,100,136, 15, 0, 56, 56, 56,232,190,255,254,123,145, 66,161,192, 75, 47, +189,164,201,206,206,150, 84,223,143, 66, 88,153,189, 2, 0, 62,159,159,251,202, 43,175, 52,154,161, 18,137, 68,185,141,109,175, + 11, 33, 36, 56, 50, 50,242,187,237,219,183,163,160,160, 0,229,229,229, 16, 10,133, 88,190,124, 57, 82, 83, 83,191, 34,132, 92, +123, 84, 62,204,186,118,237, 74,207,157, 59,135,171, 87,175, 66,171,213,226,213, 87, 95,173, 93, 99,104,115,109, 95, 51, 67, 50, + 50, 50,176,101,203, 22,176, 44,139,113,227,198,161,117,235,214, 53, 6, 43, 59, 59, 27,223,127,255, 61, 88,150,197, 43,175,188, + 2, 95, 95, 95, 24, 12, 6, 73,191,126,253,248,214, 54, 17, 55, 55,239,188,243,206,157, 61,123,246, 28, 76, 75, 75,123,250,211, + 79, 63,141, 32,132,152,102,205,154,181, 76, 46,151, 55,189,208, 18, 64, 97,113, 41,110,221, 78,129,209,104,172,119,113,117, 81, +218,172,151,144,152, 10,163,145,173,209, 96,217,191,244,156,149, 54,233,101,168,213,106,127, 30,143, 39,188,125,251, 54, 90,181, +106,133,238,221,187, 99,233,210,165,200,203,203,131,209,104,132,155,155,155,201, 96, 48,196,234,116, 58,139,153,106, 51, 89, 89, + 89, 21, 5, 5, 5,229,175,188,242,138,226,187,239,190, 35,254,254,254,184,123,247, 46, 4, 2, 1, 28, 28, 28, 42,110,222,188, +249,200, 12,205, 80, 55,115,101, 94,170, 51, 87, 12,128,255, 1,176,201, 96, 83, 74,117, 62, 62, 62, 53, 25,172,166,102,175, 30, + 20, 60, 30, 79,111, 50,153, 4, 0, 36,148, 82,173,165,215,182,104,251,251,251, 31,147,203,229,145, 55,111,222,188, 39,139, 53, +118,236, 88,189,159,159,223, 9,107,117,228,114,121,161, 72, 36,114,214,104, 52, 56,115,230, 12, 58,118,236, 40, 44, 46, 46,142, + 34,132,204, 1,128, 46, 93,186, 68,229,228,228, 8,189,188,170, 74,128, 3, 2, 2, 80, 92, 92, 92,232,227,243,192, 59,121,255, +205,139, 60,206,240, 1,128, 82, 26, 81,251,209, 76,221, 38,194,198, 76,150,121, 64,210,198, 32,132,160,178,178,178, 38, 35, 98, +103,103, 7,147,201,116, 79,115,100, 93,131, 85,183, 23,161,181,136,197, 98,252,249,231,159,154,117,235,214,141,162,148, 30,182, +246,184,218, 25, 44, 15, 87,215, 67,102,115,117,229,228,111,216,121, 57, 55,131,192,244,102, 67,251, 91, 34,208,213,174,139,135, +187,203,209, 47,150, 47,147,103,156, 59,136, 29,235,190,160, 87,206,159,239,246,198,249,243, 47,188,241,198, 27, 74, 84,213, 91, +101, 0, 56, 9,224, 43,107,204, 21, 0,156, 61,123,214,215,252,188,123,247,238, 6,185, 92, 14,123,123,123,228,229,229, 9,237, +237,237, 37, 71,143, 30,181,185,214,225,220,185,115,214,214, 86, 89, 5, 33,164,195,136, 17, 35,142,255,252,243,207,118, 69, 69, + 69, 72, 78, 78,198,251,239,191,143,111,191,253, 22,114,185, 28,251,247,239,119,136,140,140, 60, 74, 8,233,213,210,131,171, 6, + 7, 7,211, 11, 23, 46, 32, 57, 57, 25, 70,163, 17,207, 62,251,172,197, 14, 28, 15, 19,147,201, 68,103,206,156,137,239,190,251, + 14, 12,195, 96,226,196,137, 40, 41, 41,169,217,174, 84, 42,235,219,198,131,133, 30,165, 15, 18, 62,159, 79,143, 29, 59,246,105, + 68, 68, 4,210,210,210,158, 14, 13, 13,253,122,210,164, 73, 25,247,171,235,228,232,128,174,129,237,160,213,106,161,213,106,161, + 82,169, 80, 90, 90,138, 59,119,238, 64,171,213,194,221, 77, 97,179, 94,112,167,246,208,233,116,208,106,181,112,115,115, 67,121, +121, 57,238,222,189, 11,173, 86, 11, 87, 87, 39, 91,228,142,157, 60,121,178,213,160, 65,131, 2,226,226,226,112,252,248,113,232, +116, 58, 4, 7, 7, 35, 33, 33, 1, 61,123,246, 68, 73, 73,201,185, 11, 23, 46,236,179, 86,144, 16,226,243,212, 83, 79,253,249, +227,143, 63, 58,111,221,186, 85,247,252,243,207,139,150, 44, 89, 66,228,114, 57,114,114,114,238, 25,159,240, 81,160,174,177,138, +137,137,217, 46, 20, 10, 41,128, 38,101,155,204,164,165,165,137, 59,119,238,172, 21,139,197,162,211,167, 79,219,212,204,248,160, +185,223,158,137,141,209,190,125,251,153,222,222,222,131, 66, 66, 66, 16, 23, 23, 39, 20,139,197, 24, 63,126,188,126,216,176, 97, +122, 62,159,111,117,135, 27,137, 68,114,195,193,193,225, 73,173, 86, 11,157, 78,135,232,232,104, 40,149,202,247, 35, 35, 35,223, +206,202,202, 66,102,102,166, 72, 44, 22,215,100,201,251,247,239, 15,181, 90,125,195, 90,253,166,210,144, 23,121, 92,105,112,140, +164,186, 25, 44, 75, 61, 9,173, 49, 88, 12,195, 64,167,211, 65, 38,147,213, 24,172,218, 35,197, 55, 69,179, 33, 46, 93,186,116, + 58, 49, 49,113, 5,165,244,128, 45,199,153, 51, 88,126,110,142,109,187,181,114,232,144,121,238, 0,110, 93,137,193,246,216,156, +140, 50,131,174,207,173,108, 77, 74,125,251, 91,162,131,155, 93,144,151,187,243,209, 47,150, 47,147, 23,220, 56,131,219, 87, 99, +112,224, 92,250, 69, 45,165, 9, 0, 62,177, 37, 70, 75,152,219,214, 31, 37,196, 98,241,204, 93,187,118,217, 21, 21, 21, 33, 49, + 49, 17,227,198,141, 43, 74, 78, 78,158,246,236,179,207,126,123,248,240, 97, 39, 39, 39, 39, 28, 57,114,196,193,199,199, 39, 10, + 64,139, 53,103, 17, 66, 40,203,178, 40, 40,168,234,141,220,187,119,239, 71,202, 92, 1, 64, 76, 76,140,112,196,136, 17,191, 3, + 24,112,227,198, 13,152, 76,166,211, 23, 47, 94,236,109,222,222,216, 54, 43, 48,149,150,150, 10, 28, 28, 28,234,253,178, 18, 10, +133, 66,216,152,113,168,173,121,234,212,169,101, 43, 86,172,216,243,238,187,239,222,190, 79, 77, 0,127,207, 96, 69, 70, 70, 66, +163, 53, 32, 61,167, 24, 70,163, 17, 21,186, 28,155,245,106,103,176, 34, 35, 35, 81,169,209, 33, 53, 75, 13,163,209,136, 50,141, + 77,137,146, 85, 99,199,142, 29,117,234,212, 41,117, 64, 64,128,242,194,133, 11,200,205,205,133,193, 96,192,128, 1, 3, 32, 22, +139, 83,162,162,162,132,176,162, 12, 0, 0, 8, 33,178,193,131, 7, 31,222,182,109,155,199,233,211,167,161,211,233, 76, 49, 49, + 49,119,167, 78,157, 42,159, 50,101,138,115,213,109,124,180, 48, 27,171, 27, 55,110,152,141,213, 68, 52,147, 17, 50,103,176,254, + 77,108,221,186, 53, 99,227,198,141,129,158,158,158, 95,142, 31, 63,190,191, 74,165, 98, 68, 34,209, 49, 62,159,255, 54,128, 20, +107,117,196, 98,241, 36, 39, 39,167, 59, 60, 30,143,151,145,145,129,219,183,111,131,199,227,129, 82, 42,170,172,172,132,187,187, +123,205,216,150, 99,199,142,133,183,183, 55,155,144,144, 48,233, 1, 93,214, 63, 22,139,131, 80,126,244,209, 71, 88,183,110, 29, + 94,123,237,181, 70,247,219,183,111, 31, 80,167,137,144,212,153,109,219,220,139,112,209,162, 69,247, 28,103,110, 10,156, 54,109, +218, 61,154,123,247,238,253, 91, 19, 97, 93,205,134,184,115,231, 78,132,165,125,234,211, 52,103,164,238,228, 22, 39,117, 86, 57, +156,216,180,239,247,190,119,213,149, 73,229, 6,253,192,186,230,170,246,254,141,105, 62,225, 97,255,132,183,155,243,177, 21,203, +151, 57,154,179, 97,219, 98,179,139, 97,164,141,223,212, 70, 52, 27, 66, 32, 16,100,245,234,213,203, 7,176,174, 89,208,218,251, +105, 11,245,105,106,181, 90,156, 61,123, 22, 0, 48,121,242,228,162,228,228,228, 39, 41,165,215, 9, 33, 55,134, 14, 29,122,236, +208,161, 67, 78,213,191,190, 11,234,145,124,168,179,193,179, 44, 11, 62,159, 15,127,127,127,155,205,213,195,138, 51, 43, 43,235, +181,215, 95,127,125,157, 86,171,229,151,151,151,191,102,237, 54, 75,113,238,220,185,243,182,191,191,127, 4, 26, 30, 54,193, 4, +224,204,253,104,126,249,229,151, 0, 16,112, 63,154,102,234,102,176,182,111,223, 14,150,101,225,237,238, 8,173, 86,139,218,245, +158,214,104,214,205, 96,237,216,177, 3, 38,147, 9,190,158, 74,104,181,218, 6,107, 15,235,211,164,148,106, 9, 33,147,122,245, +234,181,249,227,143, 63, 78,234,216,177,163, 79,175, 94,189,156,212,106,117,238,165, 75,151,146,215,173, 91,103,111, 52, 26, 39, + 53,212, 76, 84, 87,211,217,217,249,139, 31,126,248,193,251,198,141, 27,200,200,200,192,202,149, 43, 83,242,242,242,134,241,249, +124,241,215, 95,127,125,116,248,240,225,238, 70,163,177,209,108,245,195,252, 63, 2,128,204,204,204,125, 0, 4,176,209, 88, 89, + 19,231,249,243,231,119, 84,107, 31,176, 70,251, 97, 93,251,253,246, 76,180, 20,231,164, 73,147,210, 81,103,204, 52, 91,227, 60, +114,228, 72,242,139, 47,190,248, 81, 80, 80,208, 34,123,123,123,196,199,199,215, 12,139,100,254,129, 78, 8,193,232,209,163,241, +198, 27,111,224,200,145, 35, 31,141, 26, 53, 42,217,150, 56, 57, 26, 49, 88, 44,203,166, 37, 39, 39,123,254,240,195, 15, 60, 66, + 8,182,108,217,130,186,133,181,230, 71, 0, 56,123,246,172,145, 82,122,167,177,147,177, 44,155, 22, 19, 19,227,190,113,227, 70, +129, 84, 42,133, 88, 44, 70,102,102, 38, 76, 38,147, 41, 39, 39,135,249,241,199, 31,239, 41,214, 61,115,230,140, 81,175,215,167, + 54,243, 53, 55, 74,237,140,212,213,204,210, 39,253,188,164, 94,242, 76, 77,238, 45, 74,235,253, 7,182, 38,131,101,231, 32, 95, +182, 98,249, 50,133,217, 92,109,143,205, 46,210,104,217,254, 55,242, 42,174, 52, 87,220,102, 78,157, 58,229,107,121,175, 22, 97, + 97, 68, 68,132, 9,128, 11,128,249,180, 42,115,135,106,147,213,195,223,223,255, 93, 0, 82, 0,214,181,183, 62, 0, 8, 33,212, +100, 50,213,100, 78, 31,181,204, 85,109, 46, 94,188,152, 4, 96,160,173,219, 44, 49,106,212,168, 68, 0,247, 53,221,204,195,208, + 52,163, 46, 42,193,157,187, 25,213, 83,121,177, 96, 83,178,107,213, 79, 25,160, 46,169,215,175, 55, 72, 97,113, 41,238,220, 77, +135,201, 68,171,244,216,140,154, 34,119,163,209,136,252, 34,219,134,105,163,148,198, 17, 66,122,206,158, 61,123, 6,128, 62, 0, +124, 1,164,162,170, 12, 96,149,181, 53, 56, 2,129,160,207,151, 95,126, 57,140, 97, 24,230,236,217,179,218,229,203,151,167,229, +229,229,141,164,148,166, 2,128, 74,165,234,183,119,239,222,173,143,194,144, 12,117,152,248,152,106, 55,153,199,165,103,226,182, +109,219, 22, 79,155, 54,141, 31, 30, 30,254, 65,183,110,221,152,187,119,239, 34, 55, 55,183,230,199,229, 83, 79, 61,133, 86,173, + 90,153, 14, 28, 56,176,244,185,231,158, 91,220,146,177, 62,174, 52,104,176,242,243,243,159,154, 56,113,226,111, 12,195,180, 49, +103,145, 26,122, 4, 0,147,201,148,156,147,147,211,232, 52, 18,249,249,249, 79, 45, 92,184,240, 55, 62,159, 95,163,201,178,172, +182,160,160, 96,218,232,209,163, 87, 11, 4,130,154, 17,122,171,123,198,165,100,101,101, 61,212,130,226,186, 25,169, 59, 25,149, +141,214,137, 88, 83,131,101, 39, 66,187,180,179,251,113,251,234, 69,108,143,205, 46, 44,213,177,253,226,243,202,255, 85,206,159, + 82,154, 11, 96, 90, 3,219,110, 3,176, 41,155,247, 32,248, 39,245, 94,249, 55, 96, 52, 26,211, 7, 13,232, 87, 51, 36,131, 57, + 49, 80,247, 53,203,178,233,214,234, 13,236, 31,209,160,142,249,185,181,122,102,170, 77,212,103,213, 75,147,224,241,120,239,134, +135,135,243,222,125,247,221,156,131, 7, 15,254, 94, 88, 88,248, 14,165,180,194,188,189,186,215, 96,104, 83,245, 57,154,151,199, +165,103,226,234,213,171, 23,188,255,254,251,155, 84, 42,213,150, 62,125,250, 4,248,249,249,201, 29, 28, 28, 80, 82, 82, 82,170, + 86,171,111,237,223,191,127,220,196,137, 19,255, 54,195, 2,135,149,212,254, 16,105,238, 5, 64,208, 99,167,153,181,136,142, 26, + 8,106,203,163, 37,205, 14,238,118, 17,221,125,229, 23, 59,171, 28, 46, 4,184,217, 5, 62,178,215,206,105,114,154,156,230, 35, +169, 9,192, 87, 36, 18,253,194,231,243,251, 60,202,113,114,154,143,183,230,168, 81,163,120,163, 70,141,226,181, 84,156, 22,150, +110,148,210,225,213,143,230,231,131,106,173,123,152,177, 88,181, 60, 18, 19, 1, 63, 82,120, 44, 36,117,231, 32,180,244,104,137, + 91,217,101,199,192,253,186,228,224,224,104, 34,180,170, 41,112,100, 75,199,193,241,207,102,231,206,157,143,204,112, 23,245,224, + 74, 8,249,149, 82, 26, 9, 0,230,231,181,215, 61,106, 52,189,155, 30, 7, 7, 7, 7, 7, 7, 7, 7, 71,189, 16, 0, 65,245, +109,160, 54,244, 14, 32,132,212,171,209, 24,150,244, 57, 77, 78,147,211,228, 52, 57, 77, 78,147,211,252,231,105, 90,210,110,224, +248,225, 22, 50, 88,251,109,141,243, 65, 67,170,219, 82, 31,140,248, 67,238, 18,204,105,114,154,156, 38,167,201,105,114,154,156, +230,227,169,105,129,199,206, 96,113, 53, 88, 28, 28, 28, 28, 28, 28, 28,143, 58,149,115,230,204,249,128, 16,242, 43, 0,204,153, + 51,231,131,150, 14,200, 18,156,193,226,224,224,224,168,133, 74,165, 26, 1, 96, 49,170, 74, 40,162, 50, 51, 51,119,180,112, 72, + 28, 28,205,138,171,171,171,157,179,179,243,239, 12,195,180, 2,238, 29,114,169,238,224,222, 0, 96, 50,153,178,212,106,245,144, +236,236,236,252,135,169, 89,135,211, 81, 81, 81, 21, 81, 81, 81,230,130,246, 60, 84,181,194, 69, 86, 63,127,228,176,217, 96,205, + 25,210,166,175,202,203,235,199,162,130,130, 88,109, 69,233,148,165,191,103,168,155,114, 98, 66,136,179, 72, 36,250,143,157,157, +221, 32, 74,105, 59, 30,143,119,179,184,184, 56,218, 96, 48,108,163,148,150, 53, 69,147,131,163, 57, 9, 14, 14,238, 44, 18,137, +222, 39,132,244, 48, 26,141,222, 2,129, 32, 19,192, 57,173, 86,187, 60, 54, 54, 54,182,165,227,227,104, 30, 8, 33,140,167,167, +231, 87, 10,133, 34,188,168,168,104, 28,128, 15,226,227,227,187, 48, 12,131,192,192,192, 15, 84, 42,213, 29, 7, 7,135,245,165, +165,165,167,179,178,178,222,166, 54,204, 29,199,241,232,226,231,231, 23,195, 48,140,119,237,233,218,204, 52, 52,230, 35,165, 52, + 41, 46, 46,174, 87, 67,154,222,222,222,237,228,114,249,106, 0,221,234, 51, 21,181,169, 46,207,185, 80, 82, 82, 50, 45, 61, 61, +189,222,129,120,149, 74,165,131,155,155,219, 98, 66,200,104,134, 97,120,150,174,201,100, 50,177,148,210,157,185,185,185, 11,213, +106,117,105, 67,251, 57, 59, 59, 71, 31, 63,126,188,155,139,139,139,197, 49,255,140, 70, 35,210,211,211, 93, 35, 35, 35,143, 3, +232,248, 48, 53,235,160, 3,112,222,202,125, 31, 9,108, 54, 88,132,197,248, 41,175, 78,244, 42, 74,139,247,250, 97,219,161, 14, +243,158,106,213,239,147,195, 41,217,182,104, 72,165,210,255, 4, 5, 5,173, 90,181,106,149,115,155, 54,109,136, 84, 42, 69, 86, + 86, 86,199,203,151, 47, 63,183,104,209,162,133, 2,129, 96,146,193, 96,248,205,214,216,238,137,147, 16,133,210,158,255,126, 65, +169, 97,238,253,232,112,252,251, 24, 61,122, 52, 47, 45, 45,109,145,139,139,203,123,179,103,207, 22,183,109,219, 22,246,246,246, +200,205,205,245, 77, 72, 72,240, 89,189,122,245,136, 94,189,122,125, 45, 20, 10,231, 29, 61,122,180, 69, 38, 79,230,104, 62, 60, + 61, 61,191, 58,126,252,248, 91, 42,149, 10,189,123,247, 62, 29, 28, 28, 44,151,201,100, 56,120,240, 32,218,181,107,215,201,209, +209,241,220,218,181,107, 5,139, 23, 47,238,186,123,247,110, 0,152,222,210, 49,115,220, 63, 12,195,120,199,198,198,186,201,100, + 50,176, 44, 91, 61, 27,128, 9,148,210,154, 71, 51,148, 82,176, 44,139,254,253,251,235, 27,211,148, 72, 36,223, 94,189,122,117, +144,121,134, 19,243,177, 13,145,153,153, 57,168,127,255,254,223, 2,168,119, 64,109, 55, 55,183,197, 83,166, 76,153, 25, 22, 22, + 6,163,209, 8,157, 78, 7,157, 78, 7,189, 94, 15,157, 78,135,220,220, 92,204,152, 49,163,230, 60, 38,147, 9,209,209,209,211, +231,204,153, 3, 0,255,109,228,218, 91,185,184,184, 16, 75, 83,224, 45, 90,180, 8,139, 22, 45,194,170, 85,171, 8,159,207,111, +116,230,244, 7,161,249,184, 99,187,193, 2, 61,112, 96,215,142, 41,145, 17, 1,228,229,145, 33,254, 91,247,197,156,153, 51,168, +237,147,203,162,147,210,172, 57, 94, 42,149,206,120,253,245,215,151, 45, 89,178, 68,114,235,214, 45,196,197,197,193,104, 52,194, +222,222, 30,157, 59,119,102, 14, 28, 56,224, 57, 99,198,140, 93, 34,145,104,178, 78,167,219,109,251, 37, 85,225,225,196, 91,110, + 39,229,189, 36,226,243,207,233,140, 70,171,103,171,127,152,132,135,135, 31, 49, 24, 12,159,198,198,198,254,217,210,177, 88, 75, +104,104,104,111,161, 80,184, 80, 36, 18, 13,253,167,154,139,148,148,148,133,125,251,246,125,111,209,162, 69,226,187,119,239, 34, + 62, 62, 30, 89, 89, 89,104,211,166, 13,218,180,105, 67, 86,173, 90, 37,249,250,235,175,167, 95,190,124,153, 1, 48,203, 90, 93, + 66, 8,227,225,225,241,202,192,129, 3, 95,112,113,113,113,204,200,200, 40, 62,117,234,212, 47, 89, 89, 89,255, 71, 41,109,210, +189, 36,132, 48, 46, 46, 46, 47, 71, 70, 70,190,160, 84, 42,149, 89, 89, 89,234,223,127,255,253,151,220,220,220,245,247,147,105, + 33,132,120, 2,232, 2,192,185,122, 85, 86,235,214,173,175,223,189,123, 55,183, 25, 53, 51, 91,183,110, 29,215, 20, 77, 87, 87, + 87, 59, 62,159,191,131, 16,162,106,104, 31, 74,105,166,209,104, 28,147,151,151, 87,222,152,150, 92, 46,239,225,233,233,137,115, +231,206, 97,254,252,249,202,254,253,251, 35, 33, 33, 1, 12,195,224,189,247,222, 35,129,129,129,130,236,236,108,132,133,133, 33, + 58, 58,186,193,236, 5,199,223, 33,132,236, 4,160, 0, 48,150, 82,154, 95,107,189, 11,128,189, 0,114, 41,165, 54,205,171,215, +156, 72,165, 82,252,244,211, 79, 16, 8, 4, 16, 10,133, 40, 44, 44,132,151,151, 23,132, 66, 33, 4, 2, 65,205, 34, 20, 10,225, +227,227, 99, 81,207,100, 50,117,231,241,120, 40, 43, 43, 3,203,178, 53,211, 44, 21, 23, 23,131, 82, 10,145, 72, 84,179,222,188, +205,100, 50,117,111, 72,143, 16, 50,186,115,231,206, 88,189,122, 53, 42, 43,255, 62, 77,147, 92, 46,199,245,235,215,107, 94,243, +120, 60,132,133,133,241, 8, 33,163,209,136,193, 34,132, 80, 0,120,245,213, 87,239,153,158,174,238, 98,158, 59,152, 82, 90, 51, +133,216,195,212,124,220,105,212, 96,205, 29,216,118, 90,167,144,174,203, 69, 34,129,212,196, 26, 96, 50, 26,208, 41,200, 31, 38, +147, 17, 73, 41, 89,104,231, 38,194,228,167,253, 90,109, 62,146,112,237,131, 33,254,225, 75,143, 36,196,215, 62,190,110, 15, 3, + 66, 72,235,110,221,186, 45,254,248,227,143, 37,191,255,254, 59,110,221,186,133,165, 75,151, 2, 0,236,236,236,112,240,224, 65, +176, 44,139, 47,190,248,194, 97,232,208,161,171, 9, 33,199, 40,165,234,198, 52,235,131, 16,210,234,201, 48,239,145,187, 63,127, + 82,220,233,185, 93, 95, 18, 66,246, 83, 74, 27, 28, 64,237, 65,244,132,176, 70,211,104, 52, 14, 22, 8, 4,189, 66, 66, 66, 70, + 88, 99,178, 90, 42, 78, 51,161,161,161,189, 5, 2,193, 33,189, 94, 47, 19,137, 68,124, 52, 48,145,116, 75,199,121, 63,154,193, +193,193,157,149, 74,229,123, 11, 23, 46, 20,159, 61,123, 22,133,133,133,200,205,205,197,219,111,191,141, 53,107,214,160, 83,167, + 78,176,179,179,195,244,233,211, 37,111,190,249,230,180,110,221,186,237,188,112,225, 66,140,165, 56, 9, 33, 76, 68, 68,196, 79, + 91,182,108,105, 99, 52, 26, 25, 0, 48, 24, 12, 78, 41, 41, 41, 19,231,206,157, 27, 65, 8, 25,219,144,201,106, 76,179, 87,175, + 94, 91,182,110,221,234, 39, 18,137,152,234, 15,107,215, 9, 19, 38, 76,153, 55,111, 94,127, 66,200, 75, 13,189,239, 27,187,159, +132,144, 96,153, 76,246,196,180,105,211,242, 71,142, 28,153, 1, 0, 23, 47, 94, 36,151, 46, 93,234,189,120,241,226,228,133, 11, + 23,214, 59,205,135, 5,205, 80,153, 76, 22,240,214, 91,111,229, 13, 27, 54, 44, 83, 40, 20,154,206,158, 61,203,187,118,237, 90, +159,165, 75,151, 38,126,240,193, 7,245,206,203,217,144,166, 64, 32,216,190,123,247,238, 8, 47, 47, 47, 22, 0,173, 62, 7, 37, +132, 80,134, 97, 40,195, 48, 72, 76, 76,108, 61,106,212,168, 31, 1, 60,211,152,102, 81, 81,209,196, 62,125,250, 28,159, 63,127, +190, 18, 0,142, 31, 63, 14, 62,159, 95,243,133,112,235,214, 45,104,181, 90,172, 90,181, 74, 95, 90, 90,250,138,173,215,222, 84, +254, 33,154, 62, 0,186, 3,248,131, 16, 50,128, 82,154, 95,109,174,254, 4, 16, 8,224, 84, 75,197,201, 48, 12, 88,150,173, 49, + 81,191,253,246, 27,214,172, 89,131,109,219,182,193,203,203,235, 30,131, 37, 16, 8,234,173, 35,170,231, 59, 14, 64, 85, 19, 24, +203,178, 56,127,254, 60,214,175, 95, 15, 55, 55, 55,184, 56, 59,195,197,213, 21,225,225,225, 48,103,205, 88,150,253,155,110, 93, +205,242,242,114,152, 76,214,253, 86,162,148,162,164,164,196, 98,156,102, 26, 51, 66,181,151, 6,206,213,236,154,255, 52, 26, 53, + 88,158, 30, 46,243, 70,189, 48, 88, 10,214, 8,232,203, 1,125, 5,168,190, 2, 84, 87, 14, 34,146,130, 26, 52,176,227, 21,224, +181,129,238,242, 93,103,114,110,204, 25,208,106,248,178, 63, 82, 14, 53,164, 39,151,203, 23,172, 91,183,206,241,234,213,171,136, +143,143,199,202,149, 43,177,100,201,146,154, 95, 14,207, 60,243, 12, 78,159, 62, 13,157, 78,135,249,243,231, 43,103,207,158,253, + 22,170,138, 77,109,194,195,153,191,102,199,230, 85, 74,165, 52, 31,147, 71, 94,112,254,118, 71,242, 52, 0, 95,219,170,243, 48, +152, 61,123,182,236,179,207, 62,251,159,181, 38,171,165, 8, 13, 13,237, 45, 22,139, 15, 45, 88,176,192,110,193,130, 5,205, 50, +218,111,104,104,104, 39, 62,159,191,221, 96, 48,188, 27, 27, 27,123,184, 57, 52,239, 23,177, 88, 60,227,189,247,222,147,164,167, +167,163,168,168, 8, 98,177,248,158, 15, 55,177, 88, 12,134, 97, 32, 18,137, 48, 97,194, 4,201,134, 13, 27,222, 1,240,162, 37, + 93, 15, 15,143, 87, 54,111,222,220, 70,175,215, 51,229,229,229, 16, 10,133, 16, 10,133,232,220,185, 51,111,214,172, 89, 62, 51, +103,206,124, 29,192, 55,182,196,234,228,228, 52,113,203,150, 45,126, 34,145,136,201,202,202, 66,239,222,189,113,238,220, 57,132, +135,135,243,102,205,154,229, 59,125,250,244,169, 0,214,216,162, 73, 8,241,148,201,100,157,142, 31, 63,158,166, 82,253,149, 28, +106,211,166, 13,125,250,233,167,213,241,241,241, 1,177,177,177, 5, 33, 33, 33, 86,101,172,171, 53,189,100, 50, 89,199,195,135, + 15,103, 45, 89,178,100,224,154, 53,107, 70, 2, 64,247,238,221,247, 45, 93,186,244,247,130,130,130,192,243,231,207, 23,116,239, +222,189,209,121, 63,235,224,236,225,225, 97,156, 54,109,154, 67,221, 13, 11, 23, 46,196,226,197,139,177,105,211,166, 2, 0,110, +141,137,168, 84,170, 17, 12,195, 44,238,212,169,147,124,192,128, 1, 56,126,252, 56,166, 79,159,174, 53, 24, 12, 9, 0, 48,104, +208,160, 14,139, 22, 45, 18,197,198,198,194,201,201, 73,144,149,149,245,189, 74,165,226, 10,223,173,103, 36,128,163, 0, 58,161, +202,100,141, 1,176, 11,192, 19, 0,226, 1,140,106,193,216,106, 12, 86, 70, 70, 6, 54,108,216,128,165, 75,151,194,223,223, 31, +122,189, 30,124, 62,191,198, 92,241,249,124, 16, 66, 64,173,156,167,148,101, 89, 92,184,112, 1,155, 55,111,198,252,121,243,224, +224, 80,245, 54,213,235,245, 80, 23, 22, 66, 34,145,212,152,176,198,160,148,238,188,112,225,194,204, 33, 67,134,192, 96, 48,212, + 52, 13,154,151,138,138, 10, 40, 20,138,154,201,200, 53, 26, 13, 54,108,216, 96,164,148,238,108, 76,215,108,234,120, 60, 30,254, +251,223,255, 66,171,253,107,206,241, 46, 93,186, 0, 0, 90,183,110,141,174, 93,187,214,188, 54,103,168,172,209, 92,223,187, 51, + 42,107,237, 29,176,232,115, 0,128,183,183, 55, 2, 2, 2,224,233,233,105,149,230,227, 14, 31,168,186, 72, 90,207, 68,183,217, +217,185,159,110, 90,251,253,231, 34, 1, 35, 24,212, 43, 0, 78, 98, 35,136, 76, 9, 97,196, 28, 16, 69, 43, 0, 0, 85, 39, 66, +119,120, 14,198,116,205,103, 54,107,121,123, 23, 63,237,231,186,240,224,157,122,139,235, 24,134,233,225,235,235,139,227,199,143, +163, 77,155, 54, 88,176, 96, 1, 58,118,236, 8,153, 76,134,156,156, 28,148,151,151,195,206,206, 14, 44,203, 34, 36, 36,132,231, +224,224,208, 31, 54, 26, 44, 66, 72,200, 43, 99,194,187,243,229, 29,209,123,104, 79, 28, 89, 29, 97,183,233,215,204,185,132,144, +239,105,173,201, 81, 31, 21,158,125,246, 89,228,228,228,200,182,108,217,210,100,147, 21, 30, 30,126,196,104, 52, 14,182,180,159, + 84, 42,253,243,196,137, 19, 3,108,213, 55,155,171, 13, 27, 54,216, 41, 20,138,122,127,201, 53, 65,179, 19,159,207, 63, 57,113, +226, 68,249,150, 45, 91,246,132,132,132, 60,247, 40,152, 44, 66, 72,175,182,109,219, 34, 53, 53, 21, 57, 57, 57,208,106,181,200, +201,201, 1, 0,164,167,167,195,219,219, 27, 78, 78, 78,240,246,246, 70,135, 14, 29, 8,195, 48,225,214,232,246,239,223,127, 36, + 0, 38, 49, 49, 17,121,121,121,112,116,116,132,157,157, 29,188,188,188, 48, 96,192, 0,190,159,159,223, 48,216,104,176,158,126, +250,233, 23,100, 50, 25,147,146,146,130,228,228,100,104,181, 90, 36, 36, 36,192,209,209, 17,131, 6, 13, 18,248,249,249, 69,194, + 70,131, 5, 32,104,234,212,169,185,181,205,149, 25, 59, 59, 59, 18, 16, 16,160, 86, 40, 20, 97, 0,172, 54, 88, 0,130,166, 79, +159,158, 19, 21, 21,245,100,116,116,244,108,243,202,232,232,232,247, 1,224,155,111,190, 57,174, 84, 42,195, 0,216, 98,176, 64, + 41, 53, 77,153, 50,229,182, 72, 36,130,121, 49, 27,215,207, 63,255, 28, 12,195, 56, 90, 33,243, 65,124,124,124, 23,123,123,123, +196,199,199,131,199,227,129, 16,114, 59, 51, 51,179, 11, 0,204,158, 61,251,142, 70,163,105,167,209,104, 48,106,212, 40, 50,124, +248,240,206, 43, 87,174,156, 7,224,145, 48, 88,132,144,110, 0,190, 64, 85, 1,240, 60, 74,233,185, 22, 14,233, 30, 40,165, 57, +132,144,126,248,203,100, 93, 2, 32, 70,149,185,234, 71, 41,205,105,169,216, 8, 33, 48,153, 76,224,243,249,248,252,243,207,161, +215,235,177,117,235, 86,236,218,181, 11, 12,195,128, 16, 2, 66, 8,228,114, 57,190,250,234,171,154,215,214, 96, 52, 26,177,113, +227, 70,204,153, 61,187,198, 92, 1,128, 80, 40,132,135,187, 59,156, 93, 92,144,152,152,104,209, 96,229,230,230, 46,252,229,151, + 95,208, 88,145,123,116,116,116,205,243,218, 69,238,214,196,201,227,241,160,213,106, 49,120,240, 95, 95, 31,111,189,245, 86,205, +243,194,194, 66,243,255, 4,136,149, 23,207,227,241, 80, 73,129,103, 37,127,173, 27,246,238,187, 53,207,243,243,243, 27,212,108, +200,139, 60,174, 52,154,193, 18,245, 73,249,230,238,105,166,235,232,200,158, 47, 43,229, 82,152, 74, 51, 33, 28,184, 8, 87,213, + 50,124,185,182,234,187,112,230,168, 16, 4, 13,254, 24,218,239,135, 96, 64,107,157,232,251, 88,233, 44, 0, 11,234,211,115,113, +113,113, 49, 26,141, 96, 24, 6,118,118,118, 80, 42,149,144, 74,165,200,207,207,199,140, 25, 51,112,232,208, 33,232,116, 58, 8, +133, 66,180,109,219, 22,122,189,190,157,173, 23,228,225,196, 95,191,242,243,165,138,130,196, 31,113,241, 86, 17,100,142,222,152, + 55, 53,204,105,209,234,152,133, 0,222,183, 85,239, 97, 16, 24, 24,136,183,223,126, 91,246,245,215, 95, 55,201,100, 25,141,198, +143,248,124,126,239,119,223,125, 87, 58,106,212,223,127, 16,198,197,197,225,245,215, 95,175,172,168,168,248,196,214,216, 66, 67, + 67,123,139, 68,162, 67,235,215,175,183,115,116,116, 68,106,106,170,173, 18,245,105,118,226,243,249, 39, 87,173, 90, 37,111,215, +174, 29, 4, 2,129,100,227,198,141,143,132,201, 50, 26,141,190, 50,153, 12,249,249,249,152, 57,115,230, 61, 5,170,230,230,108, + 0,136,143,143,135,183,183, 55, 52, 26,141,151, 53,186, 74,165,210,137, 82,138, 87, 95,125, 21,105,105,127,121, 19, 47, 47, 47, +164,165,165,193,104, 52, 42,109,141,213,201,201, 73,105, 48, 24, 16, 17, 17, 1,141, 70, 3, 0, 24, 51,102, 12, 4, 2, 1,114, +115,115,161,215,235,157, 45, 72,212,135,203,240,225,195, 51, 27,218,104,103,103,103,112,114,114,106,109,163,166,115,100,100,100, +198,186,117,235,158,169,187,225,252,249,243,207, 56, 58, 58, 70, 43,149,202, 0,155, 35, 5, 76, 98,177, 24, 98,177, 24, 2,129, + 0, 34,145, 8, 98,177, 24, 34,145, 8, 2,129, 0, 60, 30,207,170,118, 21,147,201,132,253,251,247,131, 97,152,123,154, 46, 22, + 44, 88,240,154, 66,161,112, 63,118,236, 88,205, 15,192,178,178, 50,180,111,223,190,237,160, 65,131, 46,103,103,103, 39,199,197, +197, 61,215,132,184,155,147,229, 0,204,117, 97,107, 0,116,109,193, 88,234,165,218,100,141, 6, 16,131, 42,115,165, 3,240, 66, + 75,154, 43, 51,102,131,101,254, 63,151, 72, 36, 8, 9, 9,169, 49, 83,132, 16, 84, 84, 84,212, 52, 17, 90,251,165, 95, 92, 92, + 12, 79, 79, 79, 56, 56, 56,160,189,191, 63,110, 39, 36, 0, 64,205,115,145, 72, 4,160,202,136, 53, 70,117, 79,192,255,162,145, +122,170,166, 96,206, 28,241,249,141,151, 97,123,122,122,194,100, 50,153,141,165,165, 12,150, 85,154, 46, 46, 46, 40, 43, 43,179, + 74,243,113,135, 15, 0,245, 57,198,197,139, 9,163, 61,221,102,195,232, 97,221, 95,126,194,219, 14,218,252, 68,136,236,157, 65, + 20,173,241,229,218,195,184,145, 92, 85, 26,245,229,174, 88,108,154,251, 20,136, 76, 9,207,202, 91,112,144,136,159, 67, 3, 6, +171,160,160,160, 76,175,215, 43,165, 82, 41,248,124, 62,132, 66, 33,242,243,243,241,225,135, 31, 98,199,142, 29,104,221,186, 53, +140, 70, 35, 68, 34, 17,242,242,242, 32, 20, 10,109,234,157,200,231,147,225,139,222,126,186,141,157,179, 63, 10, 98,151, 84,173, +148,135, 96,234, 24,158,104,197,230,235, 19, 9, 33, 43, 40,165, 77, 46,210,125, 80,216,219,219,163,107,215,174,120,233,165,151, +100, 91,183,110,253, 1,128,183, 45,199, 95,188,120,241, 84,104,104,232,144, 47,190,248,226, 72, 86, 86,150, 52, 56, 56, 24,246, +246,246,176,183,183, 71, 98, 98, 34,150, 44, 89,162,209,106,181,145, 77,201,142,241,249,252,141, 83,166, 76,177,147,203,229, 72, + 76, 76,132, 82,105,179, 15,184,135,208,208,208, 78, 2,129,224,228,170, 85,171,228,126,126,126,184,121,243, 38, 66, 67, 25, 53, + 49, 37, 0, 0, 13,102, 73, 68, 65, 84, 67,225,225,225, 33,137,138,138,106,113,147, 37, 20, 10,211,243,242,242,252,124,124,124, +176, 97,195, 6, 48, 12,131,204,204, 76,204,155, 55, 15, 81, 81, 81, 8, 15, 15,135,131,131, 3,124,124,124,112,251,246,109, 72, + 36,146, 44,107,116, 51, 50, 50,212, 0,220, 14, 29, 58,132,188,188,191,134,108,105,213,170, 21,212,106, 53,180, 90,109,129,173, +177,102,100,100, 20, 0,112,191,124,249, 50,146,147,147, 49,116,232, 80,236,221,187, 23, 97, 97, 97, 96, 89, 22, 6,131,193,102, + 77, 0, 44,143,199,107,240, 67,175,250, 23,167,147,141,154,198,198, 52, 81, 53,222,148,173,154,160,148,210,134,204,149, 72, 36, +130,133,115,154, 89,218,177, 99,199,197,109,219,182,125, 98,222,188,121, 2, 62,159,143, 62,125,250,116,152, 53,107, 86,138, 84, + 42,117,158, 51,103,142,172,158, 99,164, 0,186, 60,241,196, 19,118,182,198,252, 0,168,157,165,123, 36, 59,157, 16, 66,220, 80, +149,241, 19, 1,208, 87, 63,110, 51,215,100,181, 96, 92, 48,153, 76, 16, 10,133, 88,180,104, 17,222,120,227, 13,184,187,187, 99, +246,236,217,224,243,249, 53, 11, 80,149,149, 49,103,181,172,225,255,219, 59,247,160,166,206, 52,140, 63,223, 57,185,144,152,132, +139, 37, 2, 3, 11,214,138, 16,148,162,128, 72, 29,215,177, 45, 86,237,118,187, 59,181,182,238,106, 87,167,182,162,118,168,182, + 91,187,186,186,218, 69,106,113,187, 75,219,233, 42,222,214,203,142,142,218,177, 45,234, 86, 89,235,174,182,138, 55, 66, 84,208, + 66,226, 2, 42,169,200, 45,114, 75, 78,110,231,236, 31, 36, 49, 80, 2, 9, 70, 81, 60,191,153, 51,225,144,195,147,239, 28, 32, +231,201,251,190,223,251,113, 28,135,176, 33, 61,102,167, 93, 69,238, 61,113,175,218, 52, 56,205,144, 55,181, 80,110,209,166, 30, +143,243,135,230, 64,138, 94, 1, 30, 82,132, 46,115, 53, 53,101,142, 42, 74,138, 18,245, 37, 36,134, 91,193, 9,133,158,149,236, + 86, 16,145, 12,193, 82,129, 71,115, 64, 8, 81, 87, 85, 85,197, 4, 7, 7,195, 98,177, 64, 44, 22, 35, 49, 49, 17, 69, 69, 69, + 96, 24, 6,102,179, 25, 1, 1, 1, 16,137, 68, 40, 45, 45,133,197, 98, 57,225,237,137, 16, 66,232,176, 16,250,179,165,203,255, +172, 64,205, 86, 4, 43,196,120, 58,125, 56, 32, 75, 0,221,246, 3,254,182,226,133,193,243,255,248,213, 39,240,162, 94,230,126, + 35,151,203, 81, 93, 93,141,221,187,119,183, 51, 12,243,187,190,104, 56, 77,214,222,189,123, 11,131,131,131,165,227,198,141, 67, + 69, 69, 5,114,114,114, 76, 12,195,252,162,175,245, 93, 54,155,109,238,230,205,155, 15,219,108, 54,153,211, 92,244, 21,103,228, + 42, 43, 43, 75, 17, 27, 27, 11,157, 78,135,160,160, 32, 40, 20, 10, 60,254,248,227,136,136,136,144,100,101,101,245,171,201, 98, + 89,246,148, 78,167,123, 66,165, 82,145,184,184, 56,136,197, 98, 68, 70,118, 4,169,146,146,146,160, 82,169, 32, 18,137, 0, 0, + 58,157, 14,240,178, 47,203,119,223,125,247,117,121,121,249,188,212,212, 84, 58, 60, 60,188,211,236,164,181,107,215, 90,170,171, +171,125, 94,230,225,216,177, 99, 95, 93,186,116,233,141, 9, 19, 38, 8, 66, 66, 66, 16, 16, 16,128,196,196, 68, 68, 68, 68, 32, + 39, 39,199, 82, 89, 89,217,151,165, 35,174,105, 52, 26,201,136, 17, 35,186,205, 93,200,229,114, 5, 0, 95, 35, 15, 55,138,139, +139, 69,233,233,233, 5,223,124,243,205, 40,247, 39,210,210,210, 10,228,114,121, 16, 0,175,140,106, 23, 88,247,212,160,123,170, + 80, 44, 22, 67, 32, 16,244, 26,193,210,235,245, 7,194,195,195,255, 23, 22, 22,118,114,252,248,241, 65,231,207,159,199,202,149, + 43, 69, 12,195, 68, 59, 83, 47, 30,138,155,209,214,214, 38,249,201, 19,247,159,197, 0,242, 0, 12, 2,240,126, 47,199,222,119, + 8, 33, 97,232, 40,104,143, 71, 71, 90,240, 21,116,152, 45,103, 77, 86,191,154, 44,150,101, 33, 20, 10, 17, 31, 31,143, 37, 75, +150, 32, 55, 55, 23, 11, 23, 46, 68,108,108,172,115,252,174, 26, 44,199,140, 55,175,110,252, 34,145, 8, 97,225,225,176, 90,173, +174,232, 21, 0,104, 43, 42, 32, 16, 8,192,178, 44, 24,134,233, 53, 69, 56,100,200,144, 15,214,173, 91,151, 53,109,218, 52,202, +125,198, 29,199,113,174,182, 12,238,155,213,106,197,129, 3, 7,178,214,174, 93, 11,120, 17,245,162,105, 26, 73, 73, 73,157,210, +130,159,127,126,167, 82, 33, 57, 57, 25, 25, 25, 25, 62,205,246,163,105, 26,241,171, 63,238,148, 22,252,151,242,206,101,251,217, +107,111, 34, 54,231,179,110, 53, 7, 90,138,176,219,171,102, 41,138, 89,243,242,148,209,115, 84,145, 1,208,168, 75,113,240,236, +143, 63,212,215, 27,192,214, 94, 2, 91,119, 5,139, 95, 78, 70,194,208,193, 72, 24, 58, 24,139, 95, 78, 6,123,171, 20, 92,211, + 85,112,146, 16,220,106, 35, 30,211, 11,141,141,141,127,201,206,206,110, 10, 9, 9,129, 68, 34,129, 88, 44,198,141, 27, 55, 48, +114,228, 72,215,190,227,147, 39, 86,174, 92, 89, 87, 87, 87,151,239,237,137,200,164,212,155,185,127,156, 25, 38, 10, 80, 0,141, + 39, 16, 24, 40,199,214,252,143, 1, 70, 15, 80, 98,252, 50, 99, 52, 29, 17, 22,252, 12, 33, 36,174, 47, 23,234, 94,114,237,218, + 53,172, 94,189,186,221,104, 52,222, 85,161,123,113,113,241, 73,139,197,242, 92,126,126,190,241,224,193,131,119,109,174,156,154, + 86,171,117,234,142, 29, 59,218,174, 93,187, 6,185, 92,222, 87, 41,136, 68,162, 63,216,108,182,192,188,188, 60,118,242,228,201, +246, 69,139, 22,217,231,206,157,107,127,233,165,151,236, 25, 25, 25,246,204,204, 76, 59,195, 48, 1,131, 6, 13, 90,215,231, 23, +185, 75, 24,134,249,124,195,134, 13, 38,138,162, 32,151,203, 33, 22,139,161, 84, 42, 1,116, 24, 97,231,141,220, 98,177, 96,253, +250,245, 70,163,209,248,137, 55,186, 13, 13, 13, 91,223,123,239,189,202,194,194, 66,171,115,150,143, 94,175, 71, 78, 78,142, 37, + 63, 63,191,198, 96, 48,108,242,117,172,205,205,205,219,150, 46, 93, 90,117,232,208, 33, 43, 69, 81,104,106,106, 66,112,112, 48, +114,114,114, 44,155, 54,109,170,105,105,105,241, 89,243,169,167,158,210,213,212,212, 40, 24,134,249, 73,244, 71, 40, 20, 18,137, + 68,146, 6,224,152, 47,154,169,169,169,186,170,170,170,192, 53,107,214, 28,207,200,200,200, 85, 40, 20, 21, 10,133,162, 34, 35, + 35, 99,221,250,245,235,255,227,208, 60,218,171, 80, 23, 40,138,114, 25, 44,103,170,208, 25,197,114, 68,178,188, 74, 17,170, 84, +170, 93, 59,119,238, 12,170,168,168, 64,115,115, 51, 74, 74, 74,160, 86,171, 93,169, 92,231,205,204,125, 3,128,246,246,118,169, +175, 99,246, 55, 28,199,253,151,227,184, 36,142,227,134,115, 28,247, 32, 78,146,249, 2,119,204,213, 36,199,204,179, 73,142,253, + 81, 0,190,238,175,129, 57, 82,126,174, 15, 59, 51,103,206,196,209,163, 71, 17, 27, 27,235, 50, 85,238,179, 8,125, 49, 25,118, +187, 29,137,137,137, 96,204,230, 78, 6, 93, 32, 16, 64,169, 84, 66,167,211,185, 10,211,123, 25,227,140,105,211,166, 81,101,101, +101, 80,169, 84, 80,171,213, 80,171,213, 40, 41, 41,129, 70,163,193,197,139, 23, 81, 90, 90,138,203,151, 47, 35, 37, 37, 5,213, +213,213,152, 50,101, 10,229, 72,201,246,132, 79,209, 38, 47,163,119,247, 66,243,161,198,149, 34,116,127, 12, 11,145,205, 77,136, + 16, 64,163,185,140,130,226,198,237,132, 80,251,213,149,204,193, 41,195, 90, 96,217,251, 27, 36,206,248, 39,182, 47,155, 2, 0, + 96,111,149,194,178,111, 54,200,160, 80,104,155,101, 48,154, 13, 30, 63, 53,115, 28,119, 54, 36, 36,100,207,206,157, 59, 95,159, + 51,103,142,152,101, 89, 72,165, 82,188,243,206, 59,174, 30, 33, 52, 77, 99,225,194,133,173,183,110,221,202,227, 56, 78,231,205, + 73, 16, 66,164,145, 74,241,138, 89,111,172,148,224,250, 70,128, 18,161, 30, 99,144, 52,241,117,220,170, 42, 2,218, 46, 3, 68, +132,252,143,230,133,190, 56,247,175,155, 0,252,252,110, 47,156,191,184,114,229, 10, 86,173, 90,117,215,230,202,137, 51,146, 85, + 80, 80,176,131, 97,152, 55,252,168, 57, 53, 55, 55,247,240,144, 33, 67,250,156, 22,137,140,140,124,173,190,190,254,117, 47, 14, +237,183, 84,135, 90,173, 86,167,167,167,111,200,203,203, 91,248,246,219,111, 75,164, 82, 41, 2, 3, 3, 81, 94, 94,142,232,232, +104, 0,128,209,104,196,178,101,203,140, 86,171,117,251,185,115,231,138,188,209,229, 56,142, 37,132,204,202,204,204,156, 23, 23, + 23,247, 34,203,178,143,153,205,230,134,234,234,234, 67, 45, 45, 45,125,234,131,229,208,252,237,130, 5, 11,230,140, 24, 49, 98, +186,197, 98,121,204,102,179, 53, 92,191,126,189,160,185,185,121,107, 95, 52, 79,157, 58, 85,183,101,203,150,171, 55,111,222, 28, + 25, 17, 17,113, 59, 40, 40,200,108, 54,155,105,185, 92,174, 16,139,197, 41, 0,138, 0, 92,246, 69,243,220,185,115,181,249,249, +249, 85, 12,195,196,109,222,188,249,132, 76, 38,251,150, 16, 66, 68, 34, 81,136, 76, 38,123, 26,192,113, 0, 90, 95,199, 74, 81, + 20,235,110,168,220,163, 88, 34,145, 8,132, 16,175, 12,150, 78,167, 59,153,157,157,253,228,176, 97,195,144,159,159,223, 40,151, +203, 21,211,167, 79, 23,220,190,125,155, 0,158, 35, 88, 70,163,241, 65,136, 96, 61,232, 52,160, 35,202,251, 43,103,205,149, 91, +225,251, 23, 0, 12,253, 57, 56,142,227, 58, 25,169,232,232,232, 78,166,202,253, 57, 95, 12,150,205,102,131, 72, 36,130, 64, 32, + 64,120, 68,132,203,204,113, 28,135, 10,173, 22, 77, 77, 77,174, 54, 13, 61, 65, 81, 20, 77, 8,193,171,175,190,234,213,235,206, +156, 57, 19,199,143, 31, 71,111,233, 68,247, 25,127, 67,135,246, 92, 82,233, 52, 76, 20, 69,121, 61,139, 48, 42,170,231, 42, 23, + 79,154, 93,189,200,195, 78,183,213,104,250,198,246, 53, 91,190, 44, 89,166,111,182,237, 15, 24, 95,189,100,245,106,112,203,158, + 29, 90, 24, 37, 19, 63,151, 64,213,128,217, 52, 1, 36,176,227,102,195,181,234, 65,100,225,104, 18, 70,227,128,250,230, 77, 74, + 72,247, 24,125, 48, 24, 12,139, 63,253,244, 83,250,240,225,195, 51, 62,252,240,195,224,248,248,120,204,154, 53, 11,102,179, 25, + 23, 47, 94, 68,102,102,102, 99, 93, 93,221, 70,131,193,144,235,237, 73,132, 6, 10,254,244,201,242,231, 30,163,216, 86,160,185, + 24, 16, 4, 33,116,176, 2, 23,206,159, 0,110,159, 7, 40, 17, 64,137,145, 58, 70,133,164, 81,195, 85,132,144, 9, 28,199,125, +239,211,149,186, 71,204,159, 63,223,111,230,202, 73,113,113,241, 73, 0,195,252,165,231,212, 76, 73, 73,153,250,238,187,239, 30, +102, 89,182,187,186,148, 94,217,183,111,159, 29,128, 95, 90, 60,220, 75,172, 86,235,178,178,178, 50,188,245,214, 91, 11,102,207, +158, 45,141,143,143, 71, 76, 76, 12, 42, 42, 42, 80, 94, 94,142, 13, 27, 54,152, 88,150,221,106, 48, 24,126,239,139,174,163, 39, +213, 70,199,230, 23, 28,205, 68,255,225,216,252,194,188,121,243, 46,105,181,218,198,200,200,200,113, 52, 77, 63,137,142, 70,145, + 63, 58, 94,195,103, 35, 4, 0,153,153,153,154,171, 87,175,214,135,135,135,143, 19,137, 68,195, 29,154, 53, 0,182,246, 81,179, +225,194,133, 11,195,211,210,210, 88,154,166, 57,161, 80,200, 57,110,134,156, 64, 32,224, 8, 33,220,145, 35, 71, 36, 0,122,173, +185,188,113,227, 70,214,246,237,219, 57,185, 92, 62,174,181,181,117, 22,128, 29, 70,163, 49,205, 96,232,184,247,123,234,196,109, + 50,153, 2,250, 48,238, 71, 10,142,227,126,237,225,251,181, 0, 38,220,231,225,116, 75,118,118, 54, 54,110,220,136,222, 58,144, + 23, 20, 20, 0,189,164, 8,157,127, 43,206,250, 42,179,217,140,178,178, 50, 16, 66, 92,251,238, 77, 70,237,118,123,143,157,222, + 89,150,181,155,205,102,236,217,179,199, 43,147,181,123,247,110,152, 76, 38,176, 44,235,213,251, 44, 77,211, 24, 61,122, 52,154, +154,154, 92,173, 19,146,147,147, 93,207, 91, 44, 61, 54,174,247,168, 25, 31, 31,143,250,250,122,132,134,134, 2,232, 72, 11, 58, +177,181,245,216,247,119, 64, 65,122,250,229,186,243,193,164,161, 65, 38, 1,245,229,232, 72,118, 82,106, 76, 0, 66,131, 37,160, +133, 1,104, 54, 17,148,233, 77,248,254,114,243,117,187,141,123, 33,231,219, 74,175, 26,196, 17, 66,210, 35, 34, 34,150,219,237, +246, 81, 20, 69, 13,226, 56,174,149,166,233, 18,189, 94,255, 1,199,113,165,189, 43,220, 33, 88, 65,107, 67,100,116,144, 80, 44, +230,236, 54, 22, 0, 5, 80, 20, 64, 40, 0,180,227,177, 99,223,104,180,136,236, 44,217, 95, 91, 87,223,109,195,192,251,201,196, +137, 19, 11,219,218,218, 30,186, 78,238, 82,169,116, 21, 77,211, 3,182,147,187,147,177, 99,199,166, 74,165,210,229, 44,203,142, + 53,153, 76,225, 82,169,180,150, 16,114,190,165,165,229,163,146,146,146,211,253, 61,190, 71, 25,127,118,114,239,138,115,177,231, +208,208,208, 17, 23, 46, 92,144,184, 71,176,220,223, 47,125,153, 85,198,243,224,145,144,144,112,102,215,174, 93,169,209,209,209, +148,179,224,154,162, 40,215,230, 76, 99, 57,163, 45,167, 79,159,182, 45, 90,180,168, 72,163,209, 76,244,164, 25, 27, 27, 91,120, +244,232,209,201,238, 17, 42,167,145,234,250,181,221,110, 71,123,123, 59, 86,173, 90,245,111,173, 86,219,237, 82, 57, 42,149, 42, +111,197,138, 21, 89,207, 63,255, 60, 69, 81,212, 79,106,174,186,214, 97, 89, 44, 22,236,223,191,159,221,182,109,219,103, 87,174, + 92,241, 88,131, 53,102,204,152,235, 37, 37, 37, 81,206,150, 9, 93,183,174, 51,106, 1, 32, 61, 61,253,199, 51,103,206,120,252, +127,187, 23,154, 15, 59, 94, 27, 44,160, 99, 6,209,251,207,196,188, 66, 64,205,160, 8,155, 8, 66,196, 44,135,114, 2, 20,138, + 37,230,245,171, 14,232,141, 93,142, 79,244,119, 71, 94, 94,147,215,236, 15, 77, 66, 8,197,121,177,244, 76,127,143,147,215,244, +159,102,108,108,172, 86,171,213, 14,239, 65,199,101,176, 6,218,185, 63, 10,154, 74,165, 82,166, 84, 42,191,165, 40, 42,198,105, +162, 61, 61, 2, 0,203,178, 85,181,181,181,207,214,214,214,182,123,210,140,138,138,122, 66, 34,145,252,157,101,217,180,222,234, +139,184,142,165, 98,206,154, 76,166, 69,238,139, 61,187,107,250,107, 22, 97,215,113,142, 26, 53, 74,119,246,236,217, 39,164, 82, +105,167,186,194,174,231,236,164,178,178, 18,211,167, 79,175,214,104, 52, 67,221,142,243,187,230, 64,195,167,181, 8,185,142, 43, +182,199,177,241,240, 60, 50,120, 99,174,120, 6, 22, 70,163,177, 73,169, 84,182,154, 76, 38, 33,195, 48, 66,155,205,214,233, 6, + 39,149, 74,235, 60,253, 44,207,131,143, 35,178,233, 85,163, 96,111,113, 24,165,110,163, 81,125,225, 94,245,193,106,106,106,122, + 97,236,216,177, 71, 4, 2, 65, 64, 87,243,211,157, 25,178,219,237,166,134,134,134,169,247, 91,243, 97,199,231,197,158,121,120, +120,120, 30, 5,106,106,106,252,122,243,229,225,121, 80,208,235,245,229, 0, 98, 30,116,205,135,157,129,189,148, 53, 15, 15, 15, + 15, 15, 15, 15, 79, 63,192, 27, 44, 30, 30, 30, 30, 30, 30, 30, 30, 63,195, 27, 44, 30, 30, 30, 30, 30, 30, 30, 30, 63,195, 27, + 44, 30, 30, 30, 30, 30, 30, 30, 30, 63,243,127,112,255,137,153,247, 9, 28,230, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/datafiles/prvicons.c b/source/blender/editors/datafiles/prvicons.c index 2a470e056cf..2c606230345 100644 --- a/source/blender/editors/datafiles/prvicons.c +++ b/source/blender/editors/datafiles/prvicons.c @@ -1,304 +1,409 @@ /* DataToC output of file */ -int datatoc_prvicons_size= 9534; +int datatoc_prvicons_size= 12878; char datatoc_prvicons[]= { -137, 80, 78, 71, 13, 10, 26, 10, 0, 0, 0, 13, 73, 72, 68, 82, 0, 0, 0,192, 0, 0, 0,192, 8, 6, 0, 0, 0, 82, -220,108, 7, 0, 0, 0, 1,115, 82, 71, 66, 0,174,206, 28,233, 0, 0, 0, 6, 98, 75, 71, 68, 0,255, 0,255, 0,255,160,189, -167,147, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 11, 19, 0, 0, 11, 19, 1, 0,154,156, 24, 0, 0, 0, 7,116, 73, 77, 69, 7, -217, 3, 14, 12, 53, 26, 8,211, 40, 12, 0, 0, 0, 29,116, 69, 88,116, 67,111,109,109,101,110,116, 0, 67,114,101, 97,116,101, -100, 32,119,105,116,104, 32, 84,104,101, 32, 71, 73, 77, 80,239,100, 37,110, 0, 0, 32, 0, 73, 68, 65, 84,120,218,237,125,123, -120, 20, 85,182,239,175, 30, 93,213,121,116, 58, 47, 72, 32, 64,194, 0,137,134, 16, 68, 6, 6, 66, 8,207,235, 1,230,160,131, -115,124,220, 17,189,119,230,206,225, 19,207,232,204,248, 64, 16,197,232,213,113, 12,160,163, 40,122, 70, 4, 6,225,115,102,206, -209, 15,225,158,163, 3,142,142, 56, 38,228, 33, 4, 3, 73, 32, 60, 66, 72, 32,129,188, 31,221,233, 71, 85,221, 63,160,234, 84, - 63,211,143,170,238,228,176,127,223,215, 95, 63,170,171,123,213,174,223, 90,123,173,181,215,222, 27, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, - 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32,184, 14,234,102,186,216, 89,179,102,165,139,162,120, 24, 64,158, 94,255, -193,113, 92, 91, 89, 89, 89,186, 30,191, 61,121,242,100, 62, 41, 41,105,142, 32, 8, 38,189,228, 55, 24, 12,182,242,242,242,195, - 55, 11, 39,216,155,133, 64, 55,100,255,242,181,215, 94,227,138,138,138, 80, 85, 85,133,140,140, 12, 24,141, 70, 48, 12, 3,138, -162, 64,211,244,127, 89, 6,138,242,251, 90,253,153,252,222, 98,177, 96,233,210,165,105,122,145, 63, 49, 49,113,238,150, 45, 91, -232,162,162, 34, 28, 59,118, 12, 25, 25, 25,224, 56, 14, 44,123,253, 54, 50, 12,227,243,124,127,199,100,216,237,118, 44, 92,184, -144,191,153,140, 34, 27, 44,129,182,110,221,202, 45, 88,176, 64, 33, 16,207,243, 96, 24, 6, 52, 77,123,144, 99, 40,226,184,191, -214,139, 64,178,236, 91,182,108,225,139,138,138, 38, 2, 64, 85, 85, 21, 6, 7, 7,145,144,144, 0,150,101,149,107,144,175,195, -215,195,223,241, 11, 23, 46, 64, 79,242,191,250,234,171,116, 81, 81, 81, 44, 0, 84, 84, 84, 32, 47, 47, 15,137,137,137,138,252, -106,146,203, 74,225, 78,126, 95,159, 51, 12,163,155,252, 35, 94, 1,212, 4, 90,176, 96,193, 68, 0, 40, 47, 47, 71, 94, 94, 30, -204,102,179, 79, 2,185,147,101,168, 99,231,207,159,215,203,237,249,114,243,230,205,252,194,133, 11, 39,202,159,211, 52, 13, 81, - 20, 93, 20,208, 31,185, 3, 85, 12, 61,201,191,120,241,226,216, 64, 44,122, 40,228,191, 89,193,134, 74, 32,134, 97, 32, 73,146, - 79, 2, 5, 75,126,249,181, 30,228, 47, 41, 41, 49, 46, 90,180, 40,203,151, 75, 16, 14,249,245,146,221, 31,249,221,201,172,190, -158, 80,201,239,254,123, 68, 1,194, 32, 80,168,228,215,146, 68,106,217, 23, 47, 94,156,229,205, 39, 14,150,224,129, 28,139, 4, -249, 3, 33, 49, 33,127,152, 10, 16, 40,129,100,119, 34, 88,242,251,250, 94, 36,200, 47,223,116, 57,232,213,138,252, 90,201, 63, - 20,249,229,246,247,229,186,132, 74,254,155,209, 21, 98, 67, 37,144,193, 96, 8,217,210,235,233, 2,169, 93, 54,247, 94, 75, 13, -158,247, 76,118, 4,235,239,235,161, 0,129,144,223,151,252,196,242,107,160, 0,129, 18,136,227, 56,175,228, 9,135,252,234, 52, -100,184,217, 30,117,188, 2, 0, 54,155, 13,141,141,141,104,106,106, 66,103,103,167, 75,250, 51, 92,171,175,149,252,254,200,111, -179,217,112,225,194, 5, 52, 53, 53,161,171,171, 11,177,177,177, 30,100, 15,135,252, 55,107, 32,204, 6, 67, 32,249, 6,116,118, -118, 34, 38, 38,198, 37,127, 30,109,242, 3,128, 40,138,135,111,228,249, 39,138,162,136,150,150, 22,212,213,213,225,244,233,211, -104,111,111, 71, 66, 66, 2,146,147,147, 97, 54,155, 97, 50,153, 60, 20, 32,220, 88, 32, 92, 36, 37, 37,205,185,145,231,143, 21, - 4, 1, 45, 45, 45,168,175,175, 71, 67, 67, 3,218,219,219, 97, 50,153,144,148,148,132,196,196, 68,152, 76, 38,176, 44,235, 65, -252,112,200,127,211,187, 64,162, 40, 30,190,145,231, 87, 8, 84, 91, 91,171, 16,200,100, 50, 33, 57, 57, 25,137,137,137,136,139, -139,115,201,255,135, 75,126,141, 92,136,188,220,220, 92,108,223,190, 29, 13, 13, 13, 96, 24, 6,105,105,105, 72, 73, 73,193,216, -177, 99,149, 65, 35,142,227, 96, 52, 26, 21, 2, 13,149,255, 15,230, 88, 56, 16, 4,193,148,155,155,139,183,223,126, 27,231,207, -159, 7,195, 48, 24, 53,106, 20, 82, 83, 83,145,159,159, 15,150,101,193,243, 60, 56,142, 83,198, 95,124, 89,125, 66,254,208, 92, -160,188,169, 83,167,226,173,183,222, 66, 67, 67, 3, 88,150, 69, 90, 90, 26,146,147,147, 49,109,218, 52,133, 64, 60,207,195,104, - 52,194, 96, 48,128,101, 89,205,200,175,133, 21,237,235,235, 67,124,124, 60,138,138,138,144,152,152,168, 4,233,234, 96,221, 96, - 48,120,144,200, 23,201, 35,157, 5,234,237,237,133,201,100, 66, 97, 97, 33,146,146,146, 60,200, 45,203,203,243,188, 34,191,183, - 94,128,144, 63,196, 24,160,183,183, 23,113,113,113, 10,129,220, 51, 61, 52, 77, 43, 74,192,243,188,242, 62,216,108,143,175, 99, -225, 34, 46, 46, 14,249,249,249, 16, 4, 65,137, 77,212,207, 52, 77,131, 97, 24, 24, 12, 6,229,217, 91, 15, 16,106, 32, 28, 46, - 18, 18, 18, 48,125,250,116, 69,126, 95,153, 31,119,242, 19,183, 71, 35, 5,144, 9,228, 62, 74,170, 38, 16,203,178, 10,113, 56, -142,115, 33, 80,184, 46, 81,216, 23,116,195,197,145, 36,201, 43,249,229,255, 83, 91,126,173, 98, 1, 45,228,151,173,187,211,233, - 28,146,180, 90,146, 95,118, 7,111,122, 5,144,173,187, 40,138, 30, 55, 86, 38,250,147,123,175,225,211,138, 86, 8,162, 20,210, -159,246,239, 95,161, 91, 26, 84,125, 35,101, 37, 80, 63,220, 7,192,130,177,252,145, 8,132,189,213,245,248,203,238,120, 35,127, - 32,113,129,191,239,220,244, 10,160,190, 1,238, 55,153,166,105,252,105,195,237,232, 24, 0,254, 87, 73, 37,190,172,190,170,156, -219,189,255, 71, 48,199, 25, 92,126,175,173,107, 16,223,157,239,193, 75,251,234,112,164,230,154,223,148,169, 22, 80,187, 82, 90, -167, 56,135, 74,127,106,117, 13,129,100,117, 66, 33, 54, 33,191, 39,104, 95, 4,146,173,139,252,144, 3, 94,134, 97,208,209,209, - 1,214,217,131, 23, 30,204,113, 57,183,179,163, 3,237,237,237,232,232,232, 64,103,103, 39,186,186,186, 16,195,216, 49,239, 86, - 19, 62, 47, 41,196,242,217,233,126, 7,156,180,136, 1,180, 28,213, 13,134,252,122, 21,195, 69,138,252, 55,107, 44,224, 83, 1, -134,242,221, 69, 81, 68, 70,162,251,205,242, 78,104, 65, 16, 96,183,217,240,220, 3,183,250,253, 15,173,160, 21,249, 3, 77,143, -234, 85, 16, 71,200, 31, 5, 23,200, 87,208,232, 77, 17,226, 88,215, 27,206,120, 33,132,250,253,237,147, 76, 88,124,219,104, 93, -201,239, 79,126, 45, 21, 67,175, 58, 32,119,191, 62, 28,242, 7, 26, 71,144, 44, 80,144, 46,132,175,238,158,166,135,174,243, 57, -252,234,124, 8,130,160, 43,249,135,122,232,161, 24,122,129,144, 63, 10, 61,128,123, 16, 25,232,192, 21,195, 12,237, 58,233, 73, -126, 95,242,235, 29, 11, 16,242,255, 55,139, 1, 66, 29,184,162,189,156,247, 96,201, 49,175,196,209,139,252,122,184, 60,145, 38, -191, 58, 11, 71,200, 63, 76, 98,128, 64, 6,174, 24,198,245,152,213, 46,226,179,170,171, 17, 35,191,187,252,122,250,251,122, 90, -126, 45,130, 89, 66,126, 13, 99,128, 64,235,247,153, 27, 89, 19,135, 32,161,165,221,138,205,255,126, 14, 22,155, 16,113,242,171, - 21, 64,175, 64, 56,146,196, 39,228,143, 98, 12, 16, 76, 9,115,194,221,159,249, 37,165,222,228, 15, 38, 11, 20,205, 73, 47,129, -248,253,132,252, 81,238, 1, 2, 73,131,186,147, 65, 58,124, 15, 0,192,238, 20,113,233,170, 5,191,249,176, 30, 59, 63,187, 16, - 81,242, 7,146, 9,138,102,173, 79,168, 10, 65,200, 31,161, 32, 56, 80,203,239,141, 16, 86,171, 21, 54,155, 13, 16,157,200, 28, -109,196, 27,143, 76, 71, 44,207, 16,242, 19,242,143, 60, 5, 8,165,126,223, 93, 49, 98,121, 6, 63,252,193,152,136, 95, 20, 33, - 63, 33,127, 84,210,160,222,206,251,243,115,115,163, 78,254,112,102,124, 17,242,223,164,105,208, 80,234,247,189, 29, 83, 47,158, - 21, 13, 37, 8,135,248,209, 32,127, 48,196, 38, 19,220,117, 10,130, 67,157,194,168,231, 18,129,161, 40, 0, 33, 63, 65,216, 49, - 64, 80, 35,193,132,252,218, 90, 39, 66,254,232,198, 0, 67,145,191,215,226,116, 57,215,253,125,212, 46,106, 4,147, 95, 38, 53, - 33,127,148,123,128, 64,252,255, 51, 45, 3, 46,231,213, 94,236,141,250, 5,133, 90,219, 79, 44, 63, 81, 0,175, 22,212, 23,249, - 47,180, 90,240,236,238, 90,151,243,214,191, 95,131,186,166,225,167, 4,129, 16,127,184,144,223, 23,177, 9,249, 35, 24, 4, 15, - 69,254, 5, 79,126,141,163,117,157, 30, 63,246,117, 77, 59,166,254,252, 16,242,191,103,198,161,223, 22, 97,116, 34, 31,117, 5, - 32,228, 39, 8, 74, 1, 2,201, 4,149,189,185,100,200, 31,142, 70,250,147,144,159, 64,147, 30, 96,168,165, 66,228, 37, 83,134, -173, 95, 23, 0,241, 35, 89,158, 17,174, 34, 16,242, 71, 33, 8,142,196, 58,254,145, 12,130, 9,249, 9, 2, 82,128,145, 76,254, - 64,148,128,144,159, 32,172, 24, 96,184,195,110,183,227,236,217,179, 94,253,124,189,201,111, 48, 24,194,254, 13,167,211,137,134, -134, 6,175, 10,160, 55,220,247,124,184, 41, 21,192,225,112,224,220,185,115, 81, 9, 22,195, 37, 16,207,243,109,243,231,207, 79, -139,102,131,242, 60,223, 22,234,185, 49, 49, 49,182,130,130,130,168,238,211, 27, 19, 19, 99,187,153, 20,192,133,213, 5, 5, 5, -173, 54,155, 45,234, 4, 42, 45, 45, 77, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,129, 38, - 8, 42,185,127, 99, 31,225,195, 0,242,244, 18,136,227,184,182,178,178, 50, 93,210,160,179,102,205,202, 23, 69,177, 28,128, 81, - 71,249,197,178,178, 50, 70, 39,249, 71,122,251, 15, 59,249,217, 32,133,255,242,198, 62,194,168,170,170,194,184,113,227,192,243, -188,178, 85,170,251,128, 89,176,175,173, 86, 43,150, 44, 89,146,166, 35,249, 43,183,110,221, 74,233, 44, 63,173, 35,121,148,246, -175,172,172, 68, 70, 70,134,135,252,190,228,243, 54,127,219,253,243,190,190, 62, 44, 95,190, 60, 77, 79,249,111,108,100, 62,108, -248,195, 6, 35,252,150, 45, 91,248, 5, 11, 22, 76, 4,128,170,170, 42,216,108, 54,152,205,102,101,235, 36,127, 19,105, 2, 41, - 83, 62,127,254, 60,244, 36,255,230,205,155,233, 5, 11, 22,176, 35, 80,254,116, 81, 20,191,220,188,121,179,210,254,229,229,229, -152, 58,117, 42, 18, 18, 18,188,202, 31,202,242,143, 23, 46, 92,208, 85,254, 45, 91,182,240, 69, 69, 69,195,138, 63,108, 48,194, - 47, 92,184,112,162,114, 34,203,186,212,252, 7, 34, 96, 36,118, 89,244, 71,254, 69,139, 22,177, 35, 80,254,116, 81, 20,191,124, -245,213, 87,249, 69,139, 22, 41,237,207, 48,140,178,149,173, 86,107,159,234, 77,254,225,200, 31, 54, 64,203, 99, 92,184,112, 97, -150,250,152, 92, 88,230,190, 21,105,184, 59,174,235, 65,254,146,146, 18, 23,242,143, 32,249,101,242, 27,151, 44, 89,226,209,254, -238,174, 64,160,147,128, 34,181,240,239, 72,224, 15, 29,136,240,139, 22, 45,202,242,208,156, 27,126, 91, 32,141, 31, 76,119,166, - 7,249, 23, 47, 94,204,142, 64,249,125,146, 95,238, 1, 2,149, 63, 26,171,224,141, 20,254,176,161, 8,175,190, 0, 45,133,215, -234, 6, 12, 69,254, 17, 32,191, 95,242,123, 35,144, 22,228,215,170, 92, 60, 16,254, 28, 56,112, 0,102,179, 25, 70,163, 17, 44, -203,186,244,104,238,138,225, 45,104,151,229,125,250,233,167,181, 85, 0, 55,159, 45,203,215,137,114,233,178,183,110, 56, 28, 82, -233,229,243,123,147,223, 91,214, 97, 24,200,175,248,252,190,200,175,110,127,111,132, 9,101, 85, 12,173, 98,152, 64,249,115,223, -125,247, 33, 35, 35, 3,102,179, 25, 28,199,193, 96, 48, 40,189, 90, 36,219,159, 13, 36, 96, 1, 0,155,205,134,198,198, 70, 52, - 53, 53,161,171,171, 75,209,220, 96, 27, 93,207, 46,216, 31,249,189,201,207, 48, 12,174, 94,189,170,108, 6, 62,126,252,248, 33, -229, 60,119,238,156,226,187,222,122,235,173, 90,203,175,100,123,212, 1,175, 44,255,133, 11, 23,112,241,226, 69,180,183,183, 35, - 38, 38,198,107,230, 39, 28,242,107, 37,191, 55,254,244,247,247,163,186,186, 26,199,142, 29,195,201,147, 39, 49, 48, 48,128,184, -184, 56,151, 13,216, 3,181,252,234, 9, 78,235,215,175,215, 78, 1, 68, 81, 60,124, 35, 79, 59, 81, 20, 69,180,180,180,160,190, -190, 30,167, 79,159, 70, 71, 71, 7,226,227,227,145,146,146, 2,179,217,140,132,132, 4, 69,232, 64,211,111,122,103, 81, 68, 81, - 44,191,145,231,103, 3,149,191,170,170, 10, 63,254,241,143,113,240,224, 65,165, 87,240,230, 87,202,159,151,150,150,226,167, 63, -253, 41,118,237,218,133,220,220, 92,173,229, 63,124, 35,207, 63, 81, 20, 69, 52, 55, 55,163,174,174, 14,245,245,245,104,111,111, - 71,124,124, 60,146,146,146,144,148,148,132,184,184, 56, 15,139, 25, 77,242, 7,195,159,229,203,151, 35, 41, 41, 9, 38,147, 9, -177,177,177,202, 88,128, 47, 62, 69, 50, 11,148,151,155,155,139,237,219,183,227,236,217,179, 96, 24, 6,163, 71,143, 70,106,106, - 42,198,142, 29, 11,142,227,192,178, 44,120,158, 87,122, 0,117, 47,160,197, 70,116, 97,194, 56,117,234,212,160,228, 63,118,236, - 24,142, 31, 63, 14,138,162,144,158,158,238,211,250, 40, 75,194,148,149,161,180,180, 20,146, 36,225,231, 63,255,185,214,242,231, -229,230,230,226,173,183,222, 66, 67, 67, 3,104,154, 86,228,207,203,203, 83,172, 37,207,243,136,137,137, 81,222, 15,163, 93, 47, -125,242,231,155,111,190, 1, 69, 81,202, 70,224, 44,203, 42,110,143, 58, 6, 8,196,242,171,123,128, 13, 27, 54,132,213,254, 30, - 62,114,127,127, 63, 76, 38, 19, 22, 44, 88,128,196,196, 68, 23, 63, 83, 94, 94,208, 96, 48,192, 96, 48,128,231,121,208, 52,173, -108,235,169,133, 59, 20, 46,130,149,191,178,178, 82,249,206,209,163, 71, 21,247, 70,126,200,239,213,159,203,175,245,144,191,175, -175, 15,177,177,177, 40, 44, 44,132,217,108,246, 32,128, 76, 24,142,227,192,113,156,210,246,129, 14, 34,233, 29,195,248,106,255, -181,107,215,122,180,191,209,104, 84, 94,187, 43, 65,164,248,227,161, 0,113,113,113,152, 62,125, 58, 4, 65, 80,114,180,234,220, -173, 76,120,131,193,160, 92,140, 63, 95, 52,216,207,195, 69,176,242,159, 59,119, 14,205,205,205, 24, 55,110, 92, 80, 36, 53,153, - 76,186,200, 31, 27, 27,139,105,211,166, 65, 20, 69,143,129, 34,185,205,100,249,213,214, 83, 62, 22,110, 76,160, 87,251,255,254, -247,191,247,112, 39,101,222,248,202, 0,249,139, 7,228,199,198,141, 27,181, 85, 0,185,107, 82,167,217,188,237, 28,175,182,252, -222,172,191, 32, 8,104,105,105,193,165, 75,151,208,218,218,138,246,246,118,116,117,117, 97, 96, 96, 0, 91,183,110,213,237, 6, - 4, 43, 63, 0,133,252,197,197,197,160,105, 26, 5, 5, 5,200,205,205, 69, 74, 74, 10, 58, 58, 58, 80, 91, 91,139,210,210, 82, -136,162,136,226,226, 98,152, 76, 38,159, 89, 23, 45,228,231, 56,206,101,241, 49, 95,139, 21,171, 13,207,156, 57,115,208,214,118, -125, 62,126,122,122, 58, 42, 43, 43, 67, 42,141,208,171,253,127,245,171, 95, 5,197,159,168,100,129,228, 1, 22,121, 57, 14,111, -221,188,250, 61,195, 48,232,237,237, 69, 83, 83, 19,174, 92,185,130,107,215,174,161,171,171, 11,189,189,189,176, 88, 44,232,237, -237, 69, 79, 79, 15,186,187,187,209,211,211,163,188,126,237,181,215,116, 27,132, 9, 86,126,247,209,201,135, 30,122, 8,153,153, -153,202,103, 99,198,140,193,152, 49, 99, 48,121,242,100,236,217,179,199,229,251,122,200, 47,251,199,178,187,229,111,165,110,153, - 72,221,221,221,200,202,202, 66,125,125, 61, 0, 96,249,242,229,232,237,237, 69,114,114,114,196,199, 0,124,181,255,182,109,219, -188, 38, 22,220,173,251,186,117,235, 34,186,119,179,135, 2,200,141,170, 30,110,247, 39,200,203, 47,191,236, 65,240,158,158, 30, -244,245,245, 65, 20, 69, 36, 36, 36, 96,202,148, 41,152, 57,115, 38,178,179,179,241,194, 11, 47,232,122, 19,130,149, 31, 0,218, -218,218,144,150,150,134,130,130, 2, 23,242, 83, 20,165,184, 33,153,153,153, 40, 40, 40, 0,112,189,234, 48, 38, 38, 70, 23,249, -229,223,241, 70,126, 81, 20,241,248,227,143,227,242,229,203,120,241,197, 23,145,151,151, 7,154,166,209,211,211,131,185,115,231, -226,210,165, 75, 74,111,208,221,221,141,148,148, 20, 80, 20,133, 83,167, 78, 97,221,186,117,152, 48, 97, 2,222,125,247, 93,151, - 49, 16,173, 51, 65,190,218,255,241,199, 31,215,101,224, 49,220,246,247,187, 71, 88, 32,130,236,221,187, 23, 52, 77, 99,252,248, -241,152, 50,101, 10,230,205,155,135, 41, 83,166, 32, 59, 59, 27,217,217,217, 74,102, 69, 62,199,151, 2,104,185,104, 85,176,169, -191,180,180,235, 21,180,185,185,185, 30,131, 75,106,200,199, 99, 98, 98,188, 22,112,105, 37,187,175,209,221, 39,158,120, 2, 51, -103,206,196,139, 47,190,136, 13, 27, 54, 32, 61, 61, 29,171, 87,175,198, 31,255,248, 71,204,153, 51, 7,253,253,253,160,105, 26, -185,185,185,216,181,107, 23, 86,175, 94,141,125,251,246, 65, 16, 4,236,217,179, 7, 31,127,252, 49,214,174, 93,139,247,223,127, - 95,215, 82, 14,138,162, 80, 83, 83, 3,150,101, 49,109,218, 52, 77,139,221,180, 54,158, 67,238, 20, 31, 72,212,125,233,210, 37, - 24,141,198,128, 9,167,247,114,133,193,202, 47, 35, 37, 37, 69,121,237, 30, 64,187, 31,119,143, 41,180,132,175,118,148, 45,191, - 40,138,216,177, 99, 7,254,246,183,191, 97,211,166, 77, 88,179,102, 13, 86,172, 88,129,227,199,143,131,166,105,220,117,215, 93, - 72, 72, 72,192, 7, 31,124,128,181,107,215, 34, 53, 53, 21, 3, 3, 3,184,243,206, 59,113,224,192, 1,221, 75, 57,104,154, 6, -207,243,184,229,150, 91,192,178, 44, 4, 65,208, 44, 77,174,181,241,244,187, 83,124,160, 89, 27, 95,228,247,213,192,122,146, 63, - 20,249, 59, 58, 58,148,128,119,204, 24,223,251, 26,119,116,116, 0,184,190,252, 34,199,113,186,173, 53,234, 75,129, 95,122,233, - 37,172, 95,191, 30,239,191,255, 62,190,249,230, 27,228,231,231,227,147, 79, 62,193,229,203,151, 81, 89, 89,137,193,193, 65, 24, -141, 70,212,214,214, 98,234,212,169,152, 61,123, 54,218,218,218, 80, 87, 87,135,156,156, 28, 60,247,220,115, 74, 2, 66,175, 44, -156,252, 59,185,185,185, 46,228,127,227,141, 55, 92,140, 74,176,163,190,190,142, 61,255,252,243,225,197, 92,129, 16,104,168,192, - 35,216, 52,167,158,245,243,161,200, 47, 91,246,218,218, 90, 69, 1,212,191, 33,199, 1,181,181,215,119,196,145,215,208,212,131, -252,254,218, 53, 55, 55, 23,227,198,141,195, 23, 95,124,129, 25, 51,102,160,166,166, 6,181,181,181,168,175,175,199,161, 67,135, -148,193,167,153, 51,103, 98,245,234,213,200,201,201,193,192,192, 0, 82, 82, 82,112,233,210, 37,196,199,199, 99,250,244,233,186, -142, 3,168,127, 71,109,249,221, 99,128,112, 75,102,180,226, 15, 27,172, 31,234,205,122, 7, 27,169,235,189,208,110,176,242,203, - 40, 45, 45,197,228,201,147,145,153,153,233,177,193,199,197,139, 23, 81, 90, 90, 10,189, 49,148,171,120,255,253,247,163,184,184, - 24,251,247,239, 71,109,109, 45,246,239,223,143, 35, 71,142,224,217,103,159,197,220,185,215, 55, 37,175,168,168,192, 83, 79, 61, -133, 95,255,250,215, 88,185,114, 37, 56,142,195,198,141, 27,241,232,163,143, 70,164, 28,218, 91,251,191,254,250,235, 30, 61, 64, - 56,150, 95,126,189,105,211, 38,253, 20, 32, 16,237, 12,212,213,240, 53,103, 85, 79, 5, 8, 84,126,249,198,136,162,136, 61,123, -246,248, 29, 7,240, 21, 31,232,165,192,114, 15,212,219,219,139,174,174, 46,236,219,183, 15,107,214,172,193,149, 43, 87, 80, 95, - 95,143, 35, 71,142,224,171,175,190, 66, 98, 98,162,242,253,204,204, 76, 44, 91,182, 12,133,133,133, 40, 42, 42, 66, 90, 90, 26, -150, 46, 93,138, 15, 62,248, 0,107,214,172, 65,106,106, 42,146,146,146,116,155,203,224,173,253,159,120,226, 9,205,252,125, 45, -101,101,195,201,160, 4, 59, 33, 35, 18,107,243,135, 42,191, 60, 16, 22,204, 13,142,148, 2, 20, 20, 20, 32, 43, 43, 11,115,230, -204, 65, 97, 97, 33, 86,172, 88,129,202,202, 74, 28, 62,124, 24,207, 62,251,172, 11,249,229,135,217,108,198,166, 77,155,176,111, -223, 62,108,220,184, 17, 75,150, 44, 65,107,107, 43, 94,127,253,117, 28, 63,126, 28,237,237,237,184,112,225,130,110, 46,144,251, -227,181,215, 94,115,153,253, 21,142,229, 87,255,151, 46, 61, 64,176, 89,148,104,104,174, 30, 89,160,225, 0,111,174, 98,107,107, - 43,234,235,235,209,220,220,140,254,254,126,156, 56,113, 2, 14,135, 3, 13, 13, 13,152, 59,119,174,207, 54, 47, 40, 40,192,219, -111,191,141,146,146, 18,180,180,180,224,238,187,239, 6,207,243,136,139,139,195,232,209,163,117,115,129,188,181,255,147, 79, 62, - 57,172, 44,191,166, 89,160,225, 68,254, 80,228,183, 88, 44,136,141,141, 13,184, 20, 66, 20, 69, 93,123, 51, 95,164, 84,143,254, -202,243, 1,134,234,245,212, 37,198,238, 50,235, 57, 6,227, 46,215,214,173, 91,189,246,112,161, 88,126,221,123,128, 96, 6, 46, -134,186, 1,209,218, 89, 38, 24,249, 99, 99, 99,131, 42,133,208,155,252,238,237,154,158,158,142,101,203,150, 97,238,220,185,200, -205,205,197, 93,119,221,133,179,103,207, 98,246,236,217,168,168,168, 64,102,102,166,215,107, 59,122,244, 40, 86,174, 92, 9,171, -213,138,184,184, 56,236,222,189, 27, 13, 13, 13,168,169,169, 65, 70, 70,134,174,110,169,187, 44,235,214,173,139,234, 76,181,144, - 71,130,135, 10, 36,253,165, 65,171,171,171,241,209, 71, 31,225,242,229,203,184,120,241, 34,146,147,147,135, 21,249,221, 27, 86, - 93, 10,161, 14,144,221, 75, 33, 34, 33,191,250, 58, 42, 43, 43,209,219,219,139,238,238,110,252,225, 15,127, 0,199,113,152, 55, -111, 30, 30,122,232, 33,252,242,151,191,196,178,101,203,148,210,105,249,218,250,250,250, 80, 92, 92,140,242,242,114,216,108, 54, - 28, 56,112, 0,221,221,221,216,180,105, 19, 82, 82, 82,144,156,156,172, 43,249, 43, 42, 42,192, 48, 12,230,204,153, 3, 0,216, -188,121,179,207, 94, 34, 88,203,175,107, 15, 16,108,142,214,155, 2,136,162,136,157, 59,119,162,167,167, 7,113,113,113,176, 90, -173,104,106,106, 82,234,237,135, 11,249,101,249,229,218, 30,117, 41,132, 76,124,245, 56,128,124, 92, 79, 23,200,151,251,150,156, -156,140,212,212, 84, 60,240,192, 3, 88,191,126, 61, 86,174, 92,137,236,236,108,172, 91,183, 14,133,133,133,216,180,105, 19, 10, - 10, 10, 64, 81, 20,142, 30, 61,138,226,226, 98,188,247,222,123,136,143,143,135,197, 98,193,238,221,187,177,123,247,110,100,103, -103, 71,196,242,115, 28,135,156,156, 28,165,174, 73, 61,121, 61,152,146,109,189,225, 51, 8,246, 38, 88, 77, 77, 13, 14, 30, 60, -136, 43, 87,174,224,226,197,139, 72, 74, 74,242,122,179, 94,121,229, 21, 52, 54, 54, 98,194,132, 9,232,233,233, 65, 71, 71, 7, -172, 86, 43, 4, 65, 64,122,186,254,187, 31, 5,187,140,134, 92,219,227,173,212, 65, 61, 30, 32, 31,215, 59,155,229, 79,238, 61, -123,246,224,209, 71, 31, 69,103,103, 39, 58, 59, 59,177,114,229, 74,204,159, 63, 31,251,246,237,195,246,237,219,193, 48, 12, 86, -174, 92,137,242,242,114,196,199,199, 43, 3, 96,171, 87,175,198,142, 29, 59,240,230,155,111,234, 46, 63, 77,211,152, 53,107,150, - 75, 81, 95, 73, 73,201,144, 22, 63, 80,203, 31,177, 30, 64, 93,219,255,225,135, 31,194, 98,177, 32, 33, 33, 1,141,141,141,104, -110,110, 70, 69, 69,133, 11, 33,228,155,244,167, 63,253, 9, 6,131, 1,231,206,157,131,197, 98, 65, 91, 91, 27,186,187,187, 33, - 8, 2, 30,124,240,193,168,165, 65,135,202, 2,169, 75, 33,220,201, 47, 31,143,180, 11,167,150,251,228,201,147,104,110,110,198, -146, 37, 75,112,250,244,105,140, 31, 63, 30, 38,147, 9, 70,163, 17,207, 60,243, 12, 94,121,229, 21, 80, 20, 5,139,197, 2,187, -221, 14,171,213,170,244, 0,247,222,123, 47, 86,173, 90,133, 19, 39, 78, 96,198,140, 25, 17, 73, 66,168,211,158,235,215,175, 31, - 50, 22,139,164,229, 15, 56, 6,160, 40, 10,191,251,221,239,208,210,210,226,215,162,171,133, 55,153, 76, 74, 53,160, 32, 8,112, - 56, 28,144, 36, 9,207, 61,247, 28, 54,110,220, 24,149,177, 0,127, 89, 32,185,182, 71, 93, 10,225, 45, 14,144, 75, 33,244,118, -129,124,201,253,244,211, 79,227,253,247,223, 71,111,111, 47, 38, 79,158,140,207, 62,251, 12,239,188,243, 14,126,246,179,159, 97, -249,242,229,104,105,105, 81, 50, 68, 7, 14, 28, 80, 42, 66,239,189,247, 94,176, 44,139,226,226, 98, 60,246,216, 99,248,250,235, -175, 35,222,254, 37, 37, 37, 62,107,129,130,181,252,186,103,129,220,133,255,232,163,143,192,113,156, 87,139,254,192, 3, 15,120, -104,238,222,189,123,241,212, 83, 79,161,169,169, 9,241,241,241, 72, 78, 78,198,134, 13, 27, 48,107,214,172,168, 90, 80, 95,150, - 71,174,237, 9,180, 20, 34, 82, 46,144,187,220,227,199,143,199, 39,159,124,130, 21, 43, 86,224,225,135, 31,198,164, 73,147,176, -109,219, 54,236,217,179, 7, 29, 29, 29,184,239,190,251, 64, 81, 20,118,237,218,133,238,238,110,236,222,189, 27, 59,118,236,192, -170, 85,171, 80, 92, 92,140, 67,135, 14,185,100,184, 34,217,254, 27, 54,108, 24, 86,150, 63,168, 32, 56, 62, 62, 30,167, 78,157, -242,176,232, 27, 55,110,116,153,147, 41, 99,210,164, 73,248,248,227,143,163, 58,144, 20,108, 29,144,108,217, 3, 41,133,136,196, - 53,120,147,253,221,119,223,197, 35,143, 60,130,131, 7, 15, 98,235,214,173,184,237,182,219, 64, 81, 20,214,172, 89,131,173, 91, -183, 42,138,220,208,208,128, 77,155, 54, 33, 59, 59, 27,219,182,109, 67,117,117, 53, 30,123,236, 49,100,102,102, 98,247,238,221, - 81,105,255,223,254,246,183, 67, 86,131,134,242, 95,186,245, 0,106,225,119,238,220,137,103,158,121, 70, 9,168,212, 22,125, 56, -142,168, 6,187, 12,139,236,210, 4, 90, 10,161,183, 11,228, 75,118,131,193,128, 29, 59,118,120, 28, 79, 77, 77, 69,117,117,181, - 50,158,241,221,119,223, 33, 37, 37, 69,249,222,140, 25, 51,116,119,123,134,186,134,103,158,121,102, 88,142,200, 7,148, 5,154, - 52,105, 18,254,252,231, 63,143,152,114,130, 96,179, 64,193,146, 57, 26, 89, 32,127,228, 73, 74, 74, 66, 71, 71, 7, 70,141, 26, - 5, 0,200,200,200, 80,166, 67, 14,151,246,255,205,111,126,227,115, 12, 32,146, 22, 63,164, 44,208, 72,172,165, 9, 69,254, 64, - 75, 33,134,147,252,242,231,234,194,182,104,141,190,251,147,255,217,103,159, 29,150,252, 9, 40, 8,214,107,246, 80,180,131, 96, -119,151, 38,208, 82,136, 72,215, 2, 5, 90, 54, 16,109,242,143, 68,254,208, 55, 59,249,213, 46,141,123, 41,132,250,123,234, 82, -136, 72,186, 64,234,133,163, 8,249, 93,241,194, 11, 47,192,233,116,234,215, 3,140, 52,242,135, 43,127,160,165, 16,195, 33,139, - 53, 28,201, 31,105,254,132, 59, 31,216,107, 15, 48, 84, 38, 98, 36, 32, 88,249,229,244,102,160,165, 16,122,167, 67, 71, 50,249, - 71, 26,127, 60,122, 0,135,195,129,115,231,206,249, 92,193, 75, 79,168, 55,125, 8, 21,161,200, 47,187, 52,238,171, 66,200,121, -107, 89, 9,228, 82, 8,249,251,103,206,156,209, 92,254,129,129, 1,156, 63,127, 62,160,149, 52,180, 38, 86,180,218, 63,154,252, -113,145,170,160,160,160,213,102,179,165, 69, 83, 35,121,158,111, 43, 45, 45, 13,169, 98,110,238,220,185,130,221,110,167,163, 44, -191, 88, 90, 90,202,132, 40,127,171,221,110, 31,177,237, 63,210,249, 67, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, - 64, 64,240,223, 21, 20,105, 2,130, 72,225,198, 62,194,135, 1,228,233,245, 31, 28,199,181,149,149,149, 5,156, 6,101,201,109, - 33,136, 32,249,191,188,177,143, 48,170,170,170,144,145,145,161,108, 88,238, 62, 73,201,125, 65, 48,247,215,222,150, 73,180, 88, - 44, 88,186,116,105, 80,227, 16, 68, 1, 8, 34, 70,254, 45, 91,182,240, 69, 69, 69, 19, 1,160,170,170, 10,131,131,131, 72, 72, - 72, 80, 54,201, 14,164,240,207,223,241, 11, 23, 46, 4, 45,155,203,168,169,209,104, 44,166,105,218, 1, 64, 10,228, 65, 81,148, - 13,192, 6,114,139, 9,134, 34,255,230,205,155,249,133, 11, 23, 78, 84,136, 71,211, 46, 53, 85,129,204,226,211,125,167,120,187, -221,190,177,166,166,134,157, 56, 81,145,211, 99,114,184, 26,205,205,205,214,156,156,156,231, 1,188, 66,110, 53,129, 47,242,151, -148,148, 24, 23, 45, 90,148,165, 62,166,222,161, 83,171,237,147, 66,129,139, 2,136,162,200,102,101,101,161,183,183,215,163,226, -209,155, 34,164,165,165, 93, 3, 48,153,220,106, 2,127,228, 95,188,120,113,150,251,113,245,222,192, 90,238, 29, 22,150, 2,168, - 20,193,239, 68, 3, 89, 25, 4, 65, 16,201,173, 38, 8,150,252, 0,148, 29,238,229, 30, 64,171,141,243,194,138, 1,124, 89,123, -121,211,102,249,161,238, 49, 0, 12, 2,200, 32,183,157,192,221,231,247, 69,126, 0,224,121,222,227,179, 96,253,125, 93,118,138, -111,110,110,198,145, 35, 71, 48, 48, 48,160,144, 93, 77,122,245,103, 44,203,166,254,226, 23,191,232,123,231,157,119, 46,250,136, - 21, 40, 47, 10, 69,121, 81, 56,151,207,104,154,118,114, 28,247,242,224,224, 96, 49,161,212,200,204,246,168, 3, 94, 0,176,217, -108,104,108,108, 68, 83, 83, 19, 58, 59, 59, 93,210,159,195,106,163,108,134, 97, 16, 19, 19,227, 98,237,125, 41, 0,128,132,123, -238,185, 7,143, 60,242,136, 18, 51,200, 19, 72,124,229,113,213, 83, 13,221,143,201,104,106,106, 98,151, 47, 95,190, 17, 0, 81, -128, 17, 4, 81, 20, 15,223,200,243, 79, 20, 69, 17, 45, 45, 45,168,171,171,195,233,211,167,209,222,222,142,132,132, 4, 36, 39, - 39,195,108, 54,195,100, 50,121, 40, 64,184,177, 64,216, 65, 48, 0, 56,157, 78,244,247,247,163,191,191,223, 27,225, 61,148,161, -172,172, 76,209,102,111,110,148,183,158,193,215,111,202,207, 61, 61, 61,178,123, 69, 48,178,144,151,155,155,139,237,219,183,163, -161,161, 1, 12,195, 32, 45, 45, 13, 41, 41, 41, 24, 59,118, 44, 56,142, 3,203,178,224, 56, 14, 70,163, 17, 44,203, 42,177,128, - 86,129,176, 38, 61, 64,108,108,172,203,142,136, 67,244, 2,144, 36,201,231,247,135, 58,207,219,177, 72, 45, 65, 72,160, 61,250, -250,250, 16, 31, 31,143,162,162, 34, 36, 38, 38,202, 46,173,242, 44,175,112,199,113, 28,120,158, 7,195, 48, 16,122,175,161,225, -173,255,141,254,150,179,136, 73, 29,131, 49,119, 60,140,177,119,252,159,232,100,129,156, 78, 39,250,250,250,208,215,215, 23,176, - 5,215,138,248,242,179,197, 98, 33, 76, 26,161,136,139,139, 67,126,126, 62, 4, 65,240,234,234,210, 52, 13,134, 97, 96, 48, 24, -148,231,150,175,246, 34, 65,186,134,249,247, 44,133,197, 98,199,241, 67,111, 97,160,177, 26,217,255,252, 6, 40, 47,113,130,150, - 89, 32, 15, 5,144,151,215, 22, 69, 81, 83, 82, 7,115, 44,220,181, 94, 8,162, 7,217,197,241,182, 16,174,154,180, 12,195, 40, -229, 15,163,231,174,194,201,191,238, 68,231,229, 22,140,190,117, 38, 10, 87,164,225,196,223,171,112,226,133,229,152,246,244,191, -129, 55,167, 6,181, 15,181,102, 49, 64, 36, 20,192, 91,207, 66,122,128,145,173, 0, 44,203, 42,247,211,215,174,149,234,116,103, -220,184, 91, 48,245,233,127,199,177, 45,247, 35,207, 1,140,187,125, 62,110,191, 99, 9,206,125, 91,137,111,215,207,199,109, 27, -247, 35,126,194,173,250,151, 66,200, 49,128,209,104,132, 32, 8, 97, 19, 62,212,243,237,118, 59, 97,210, 8,133,175,101, 91, 36, -135, 13,151,246,174, 71,111,221,223, 33,216,108,144, 36, 17,144, 36, 72,162,120,253, 53, 0,138,166,241,221,183,103, 64,153, 51, - 48,238,214,169,152, 52,243, 7, 72, 72, 78,194,177,231,151, 97,234,163,239, 97,244,172,229, 67,238, 86,170, 73, 15, 48, 48, 48, -224, 17, 3,132, 74,106,111,239,135, 58,207,106,181, 18, 38,141, 96, 5,240,182,150, 81,235, 95,222, 69,220, 96, 51,110,255,209, - 63,128,229, 56, 80, 52, 11,138, 97,111, 60, 51, 0,197, 0, 20,125,253,193,242,144,156, 54,192, 97,193,168,239,229,160, 48,105, - 20,202,255,245, 23, 24,184,180, 22,147,254,105,157,223, 77, 54, 52,235, 1,100, 63, 92, 38,103, 93, 93, 29,170,171,171, 49, 56, - 56, 8,187,221, 14,135,195, 1,187,221,238,242,218,225,112,104,150,193,161,105, 90, 20, 69, 81,242,209,200, 86, 73,146, 54, 2, -120,157, 80,110,120, 42,129, 90, 1,104,154,134,104,183, 34, 54, 54, 6, 28,108,160, 4, 1,144, 88, 64, 50, 0, 52, 11, 9, 70, - 64, 24, 0,104,246,186, 34, 56, 44,128, 36, 1, 6, 35,224,180, 33, 46,209,140,249,247,172, 66,213,103, 31,160,191,177, 6,183, - 61,245, 1, 40,138,214, 47, 11,228,173, 7, 56,121,242, 36,246,238,221,139,212,212,212, 72,181,163,207, 97,189,150,150,150,152, -217,179,103,191,234,116, 58,137, 2, 12, 99, 5, 80, 19, 52,109,209, 67,104,220,245,107,156, 62,118,200,165, 22,128,102, 12,184, -117,217, 61,152, 48,214, 4, 26, 34, 40,134,189,113,235, 69, 72,130, 19, 0, 5, 8,118, 24, 40, 96,206,157,255,136,227,127,253, - 18,117,239, 61,137,105,107,223,208,100,217, 69,175, 89, 32,163,209, 8,135,195,225,226,150,112, 28,135,212,212, 84, 52, 53, 53, -185, 28, 11, 7,254, 74,173,253,161,175,175, 15, 78,167,211, 64,168, 54,124, 93, 32,247, 71, 76, 90, 22,114, 55,236, 87,122, 4, -123, 71, 11,106,183,254, 79,228,204,153,143,140,172, 81,144,108,189,160, 24, 14, 84,242, 36,208, 19,139, 64, 37,100, 0, 20, 13, -169,251, 34,196,179,159, 67,188, 82, 13, 88, 59, 49,125,225, 2,124,179,255, 0, 46, 29,154,129,204,101, 63, 11,123,217, 69, 15, - 5, 16, 4,193,101, 36,216,221, 87,183,219,237,176,217,108, 81,109,100,185,119, 34, 24,158,240, 87,229, 73,211, 52,250,206,126, -139,134,119, 30,198,237, 63,188, 11, 73,102, 14,210,192, 53,128, 53,130,154,184, 0, 76,246, 10, 80,234,169,145,105,121,160, 71, - 79,133,112,250, 63,225, 60,177, 15,204, 96, 59,102, 47, 91,130, 35,127,120, 6, 19,254,199,131,160, 13,124,120, 89, 43,111,194, -199,196,196,192,233,116,186, 88,104,185,122,207,189, 34, 52, 26,136,246,255, 19, 4, 31, 4,203,228,191,250,247,127,195,229,131, -175, 99,238,170, 31, 35,150,177, 0,150, 94,128,225,129,132,113,160, 38,255, 3, 4, 81,196,153,166, 78,212, 54,118,194, 50,232, -196,196,177, 9,152,153, 61, 26,252,148,101,144,202,182, 65,104,248, 11,184, 81, 57, 24, 53,126, 2,174, 30,251, 28, 99,126,240, - 67,109, 21, 64, 16, 4, 12, 12, 12,184,140, 3,184,247, 2,132,128, 4,193, 4,193, 20, 69,129,166, 40, 52,126, 88,140,193,179, -101,152,183,234, 71,224,108, 87, 33, 57,132,235,214,158, 18, 32,101, 21, 65, 16, 37,156,187,220,141,191, 84, 52,193, 41,136, 56, -118,230, 42,206,182,116,227,159,255,113, 42, 30,186,227, 22, 72,115, 31, 7, 26,254, 2,169,255, 42,198,140,189, 13,151, 14,239, -210, 94, 1,228, 24, 64,206,197,203,100,231,121,222,235,156, 0,210, 3, 16,248,235, 1,228, 12, 80,237,155, 63,131,137, 19, 48, -251,142,133, 96,196, 1, 88,185,116, 56, 41, 30,241,150, 6, 80,160, 32,198,141,129,228,116,162,236, 84, 43, 46,119, 12,160,170, -190, 21,253,214,235,177,230,159,191,108,192,143, 11,179,192,143,206, 7, 77,209,144,172, 93, 48,103, 36,160,174,186, 50,108,121, -253,246, 0,106,178,169,139,221,136, 2, 16, 4,154, 5,114,116,181,226, 84,201, 63, 33, 51, 39, 27,147,110,153, 0, 56, 7,208, -221,231, 64,233,199,251, 48,239,254,135, 0,138,129, 36,216, 33, 56,157,144, 4, 1, 45,215,250,240, 85,245, 37,168,111,177,145, - 99, 0, 73,132,195,233, 0,127,253, 15,192, 24, 56, 56,172,253,218, 43, 0, 77,211,224,121, 30, 70,163,209,174,244, 93,155, 0, - 0, 4,137, 73, 68, 65, 84,133,112,242,123,162, 0, 4,129,246, 2,131, 87, 47,226,228,203,119, 34,191,168, 16,233,163,227, 1, -209,137,182,214, 30,156,248,219, 87,136, 31,151, 3,199, 64, 15, 40, 51, 3,105,112, 0, 98,199, 89, 88, 17,139, 41, 99, 99,225, -126,123, 23, 79, 31, 3, 65,112, 2, 45,223, 2,146, 8, 24, 98, 97,119, 72,136, 73, 14,127, 43, 2,143, 92,187, 60, 14, 32,247, - 2,253,253,253,202,236,176,225,244, 32, 24,222,228,167, 40, 10, 13,255,250, 47,200,159, 63, 15,105,137, 20, 36,198,128,198,243, -173, 56, 89, 86,137, 89,175,124,137,180,194,123,208,121,249, 50,192, 39, 92, 31,248,250,250, 21,216,172, 22,204,201, 78,194,125, - 69,153, 24,101, 54,194, 28,103,192,178,239,143,197,157,115,198,194,225,112,128,173,120,227, 58,105, 19, 51,209,221,213,135,164, - 91,230,106,223, 3,200, 35,193,118,187,221, 37,240,245, 54,135, 51, 90, 86,153, 40,192,200, 80, 2,103,239, 53, 36,143,155, 7, - 73,178,227,244,137,211,104,191,218,141,217,175, 30,129, 33, 62, 17,227, 22,175, 70,217,255,123, 27, 89,121,121,160, 91,190, 5, -107,237,130,177,244, 37,244,205,122, 26,119, 23,140,197,221, 5, 99,255, 43,150,128, 8, 67,197, 27, 48, 52,253, 13,160, 89,136, - 99,102,226,204,127,124,133,121,175,188,169,189, 2, 56,157, 78, 88, 44, 22, 12, 12, 12,184,144, 77,174,239, 38, 22,152, 32,208, - 30, 32,225,150, 2,148,127,250, 57, 28,150,126,152, 38,127, 31,183,255,223, 63,129, 49,240,215, 39,197,196,153, 49,126,249, 26, -156, 59,245, 53,110,201,248, 62,132,115,159, 35,254,228, 78,112,173, 85,232,207, 95, 3,123,106, 62, 68,138, 1,215, 81,131,248, - 83,127, 0,127,165,236,186,245, 31, 55, 27,205, 45, 93, 24,117,219, 18,196,103, 76,209, 39, 6,144,103,235,168, 21,128,196, 0, - 4,193, 42,193, 45, 15,191, 5, 75,115, 61, 56, 83, 50,140, 41, 99, 61,198, 5, 38,174,252, 23,124,245,200,187, 48, 39, 23, 96, - 76,222, 61, 16, 78,255, 39,184,246,239,144,252,197, 47, 60,127,148,225,192, 76, 94,138, 46,167, 25,167, 43,190,192,226,237,199, - 53,145,213,107, 22,200,106,181,122,237, 1,252,213,242, 19, 5, 32,112, 87, 0,154,166, 97,202,156,234,187,126,159,143, 65,225, -230,175, 81,245,210, 42,116,143, 78, 70,206,109, 15,129,106, 61, 6,169,175, 21, 82,223, 21, 64, 20, 64,197,167,129, 50,141, 1, -149,158,143,198,243, 87,208,120,178, 12,133,175,254, 21,198,228,116,125, 20,192,189, 7,144, 9, 23, 19, 19, 67,122, 0,130,160, -200, 31,200, 92,222,152,212, 12,204,127,173, 12,167,222,123, 2,127, 63,240, 23,140,157, 50, 5, 73,163, 38,195,148,147, 14,138, -166,209,223,126, 13, 61,215,218,113,249,175, 21, 48,142,202,194,226,119,190, 3, 27, 19,175,153,188, 94,123, 0,139,197, 2,139, -197,226, 98,241, 29, 14,135, 50, 97, 93,239, 73,235, 67, 17,156, 76,154, 31,222, 8,122,133, 7,214,128,252, 71,182,161,239, 82, - 61, 58, 78,254, 29,205,213,135,209,241,197, 62, 72,130, 19, 73,217,223, 71,202,140, 59, 48,253,174, 66, 36, 77,153,169,185,172, - 62,199, 1,228,145, 95,181, 98, 72,146, 4,167,211,169,217,156,221, 80, 45, 57,153, 51, 60, 50,130,224, 96, 22,181,162, 40, 10, -230,204, 92,152, 51,115,241,189, 31,174,137,152,188, 94,123, 0,155,205,230,210, 3,200,100, 21, 69, 17, 14,135, 67,119, 2, 14, -165, 24, 54,155, 13, 20, 69,137,196, 21, 26, 25, 74, 16, 8,249, 35,177,147,252,144, 10,192,178,108,255,213,171, 87,227, 71,143, - 30,237, 82, 10, 33,138, 34,210,210,210,148, 50,137,104, 90,127, 73,146,112,229,202, 21,240, 60,127,105,112,112,144,176,109,152, - 43,192,112, 38,191,135, 2, 24,141,198,147,135, 15, 31,158,179,116,233, 82,212,213,213, 65, 16, 4,101,121,148,217,179,103,163, -171,171, 43,104,235,175,181,149,150, 36, 9, 53, 53, 53,131,162, 40,150, 17,170, 17,242,107,170, 0, 14,135, 99,211,206,157, 59, -255, 99,213,170, 85,134,159,252,228, 39, 56,115,230, 12, 40,138, 66, 78, 78, 14,210,211,211,113,252,248,241,168,251,255,151, 47, - 95,198,167,159,126,234,176,219,237,207, 19,186,141,188, 32, 56,156,133,108,117, 87, 0,155,205,118,152,231,249,119, 86,174, 92, -185,118,237,218,181,134, 69,139, 22, 33, 61, 61, 29, 61, 61, 61, 40, 47, 47, 15,105,185, 18, 45,122, 0, 65, 16,208,214,214,134, -154,154, 26,235,193,131, 7, 5, 81, 20,127, 13,224, 12,161,218,200, 9,130,135, 35,249,125,107, 5,203, 46,141,141,141, 61,202, -178,108, 63, 2,220, 47, 76,207, 7, 69, 81, 2,207,243,141, 6,131,225, 67, 0,217,132,102,195, 19, 51,103,206,148,156, 78,167, -100,177, 88, 36,171,213, 42, 13, 14, 14, 74, 54,155, 77,178,219,237,146,195,225,144,156, 78,167, 36,138,162,110,143,250,250,122, -105,230,204,153, 65, 89, 92,175, 43, 48, 59,157,206,207,157, 78,231,231,195,165, 97, 37, 73,138,250, 60,100,130,192, 96,183,219, -113,246,236, 89,175,126,190,222,150,223, 96, 8,126,157, 4,178, 4, 57,129,102,224,121,190,109,254,252,249,105,209,150,129,220, - 9, 2, 2, 2, 2, 2, 2, 2, 2,191,248,255, 88,111,246,205,191, 63,162, 3, 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, 0,192, 0, 0, 0,192, 8, 6, 0, 0, 0, 82,220,108, 7, 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,237,125,121,124, 20, 85,186,246, 83, 85,221,213, 91, 58, 59, 36, 16, 32, 48, 64,192,128, 65, 68, 17, + 66, 8,171, 10, 40,174, 51, 46, 31,200,111,116,188, 92,113, 70,199,141, 77, 16,163, 51,138,128,224, 40,138,203,160, 32,202,117, +197, 65,244,122, 85, 28, 29, 81,194,146, 24, 64, 48, 4, 66, 32, 9, 9, 16,204,218,221,233,164,151,170,250,254,232, 84,165,186, +187,186,187,122,203, 98,215,195,175, 72,117, 45,167,158,115,234,121,207,121,207,123, 78, 85, 17, 28,199, 65,129,130, 88, 5,217, +221, 4, 20, 40,232, 78, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166, +161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26, +138, 1, 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, + 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, + 1, 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, 24, +128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, + 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, 24,128, +130,152,134, 98, 0, 10, 98, 26,138, 1, 40,136,105, 40, 6,160, 32,166,161, 24,128,130,152,134, 98, 0, 10, 98, 26,138, 1, 40, +136,105,168,186,155, 64, 87, 98,252,248,241,233, 44,203,238, 6, 48, 58, 90,215,160,105,186,174,176,176, 48, 61, 26,105, 15, 31, + 62, 92,147,148,148, 52,129, 97, 24, 99, 52,210, 7, 0,181, 90,109,219,191,127,255,238,104,165,223,211, 16,148, 1,244,102, 1, +117,112,255,110,253,250,245,244,148, 41, 83, 80, 92, 92,140,140,140, 12,104,181, 90, 80, 20, 5,130, 32, 64,146,157, 13, 34, 65, + 16,126,215,197,219,248,223, 86,171, 21, 51,103,206, 76,139, 52,119,192, 37,254,196,196,196,137,207, 61,247, 28, 57,125,250,116, +148,148,148, 32, 35, 35, 3, 52, 77, 67,165,114,221, 70,138,162,124,158,239,111, 31, 15,187,221,142,169, 83,167,106, 34, 70,186, + 23, 64,182, 1,248, 18,144, 70,163, 1, 69, 81, 32, 73,210, 75, 28,129,132,227,185, 30, 45, 1,241,220,159,127,254,121,205,148, + 41, 83,134, 0, 64,113,113, 49,218,219,219, 17, 31, 31, 15,149, 74, 37,228,129,207,135,175,197,223,254, 51,103,206, 68,154, 58, +128, 78,241,175, 89,179,134,156, 62,125,186, 30, 0, 14, 30, 60,136,209,163, 71, 35, 49, 49, 81,224, 47, 22, 57,111, 20, 0,100, +109,167, 40, 42,106,252,123, 50,100, 25,128,148,128, 14, 28, 56,128,209,163, 71, 35, 33, 33,193,167,128, 60,197, 18,104,223,233, +211,167, 35,158, 65,158,251,186,117,235, 52, 83,167, 78, 29,194,111, 39, 73, 18, 44,203, 10,199, 5, 18,183, 92,195,136, 52,164, +196, 15,248,175,209, 67, 17,127,172, 34,160, 1,248, 18, 16, 69, 81,224, 56, 78, 56, 78,142,192,229,236,139, 36,120,238,107,215, +174,213, 78,155, 54,109,176,120,159,248,166,135, 35,254,104,113, 7,124,139, 31,112, 23,179, 56, 63,161,138,223, 51,189, 88,129, +223, 92,135, 42,160, 80,197, 31, 73, 17,137,185, 79,159, 62,125,176,231,126,222,239,143,148,248, 35,205,223,159,248,121,254,158, +235,138,248,131,135,207,156,203, 21, 16,128,144,196,239,235,184, 72, 32, 16,119,192,117,211,249, 78,111,164,196, 31, 41,254,129, +196, 15,192,203,231,247,220, 39,206,167,212,246, 64, 70, 19, 43,144, 52, 0, 57, 2, 82,171,213, 33,215,244,209,116,129,196, 46, +155,103,171, 37,134, 70,163,241,186, 94,176,254,126, 52, 12, 64,142,248,121,254, 82, 80,106,254,224,224, 85, 2,114, 5, 68,211, +180,219, 13,247, 39,144, 96, 12, 35, 28,136, 59,235,226,254, 10, 0,216,108, 54, 84, 86, 86,162,186,186, 26,141,141,141,208,106, +181,146, 66, 14,183, 35, 28, 14,252,137,223,102,179,225,204,153, 51,168,174,174, 70, 83, 83, 19,244,122,189,151,216,195, 17,127, + 44,214,254,128,135, 1,200, 17, 80, 85, 85, 21, 26, 27, 27,161,211,233, 4, 65, 68,162,230, 15, 87, 60, 0,192,178,236,238, 13, + 27, 54,208,249,249,249, 67, 88,150, 69,109,109, 45,142, 31, 63,142, 19, 39, 78,160,190,190, 30,241,241,241, 72, 78, 78, 70, 66, + 66, 2,140, 70,163, 91, 63, 32, 18,125,129,112,145,148,148, 52,225,249,231,159, 39,243,243,243,245, 12,195,160,182,182, 22,101, +101,101, 40, 47, 47, 71,125,125, 61,140, 70, 35,146,146,146,144,152,152, 8,163,209, 8,149, 74,229, 37,124, 32,116,241,199,162, + 17,184,149, 4,203,178,187, 59,226,252,130,128, 74, 75, 75, 5, 1, 25,141, 70, 36, 39, 39, 35, 49, 49, 17, 6,131,193, 45,254, + 31,174,248, 35,228, 66,140,206,206,206,198,166, 77,155, 80, 94, 94, 14,138,162,144,150,150,134,148,148, 20,244,239,223, 95, 24, + 52,162,105, 26, 90,173, 86, 16, 80,160,248,127, 48,251,194, 1,195, 48,198,236,236,108,188,242,202, 43, 56,125,250, 52, 40,138, + 66,159, 62,125,144,154,154,138,156,156, 28,168, 84, 42,104, 52, 26,208, 52, 45,140,191,248,170,245, 1, 69,252,114,224,233, 2, +141, 30, 53,106, 20, 94,126,249,101,148,151,151, 67,165, 82, 33, 45, 45, 13,201,201,201,184,244,210, 75, 5, 1,105, 52, 26,104, +181, 90,168,213,106,168, 84,170,136,137, 63, 18,181,168,217,108, 70, 92, 92, 28,242,243,243,145,152,152, 8, 0, 66,235,194, 95, + 75,173, 86,123,137,200,151,200,187, 58, 10,100, 50,153, 96, 52, 26,145,151,151,135,164,164, 36, 97,187,120,180,151,162, 40,104, + 52, 26,129,191, 84, 43,160,136, 95, 30,188,250, 0, 38,147, 9, 6,131, 65, 16, 16,127, 83,197,238, 14,111, 4, 26,141, 70,248, + 29,108,180,199,215,190,112, 97, 48, 24,144,147,147, 3,134, 97, 0,120,143, 64,147, 36, 9,138,162,160, 86,171,133,191, 82, 45, + 64,168, 29,225,112, 17, 31, 31,143, 49, 99,198, 8,252,197, 16,215,248,158,226, 87,220,158,208,224,101, 0,188,128, 60, 71, 73, +197, 2, 82,169, 84,130,112,104,154,118, 19, 80,184, 46, 81,216, 25,234,112,113, 56,142,147, 20, 63,127, 61,113,205, 31,169,190, + 64, 36,248,243,181,187,211,233, 12, 40,218, 72,138,159,119, 7, 99, 13, 94, 57,230,107,119,150,101,189,110, 44, 47,244,130,215, +255,141,226, 95,106,193,136,140, 36, 24, 28,221,185,210,167,168,194,133,248, 70,242, 70, 32, 94, 60, 7,192,130,169,249,187,162, + 35, 44, 53,175,199, 95,116, 71, 74,252,114,250, 5,254,142,137, 37, 72, 26,128,248, 6,120,222,100,146, 36,241,236, 3,179,209, +208,210,134,231,222,250, 22, 37,199,107,133,115,119,191,177, 8, 70,131,123,120,177,201,212,134, 83,213,191, 98,243,142,125,248, +169,180, 90, 50,205, 72,137,159, 79,219,215, 0, 87, 36,230,250,248,218,199, 95, 47, 18,144, 19,213, 9, 69,216,138,248,189,225, +229,116,243, 55,148,175, 93,248,133,239,240,242,219,211, 83,227,177,240,247, 19,221,206,165, 36,106,212,212,164, 56, 76,188,236, +119,216,252,183,121,152, 60,110,152,112,141,104,245, 1,194,169,189,195, 17,127,180, 38,195,117,149,248, 99,181, 47,224,211, 0, +124, 9, 64,188, 62, 36, 35,197,237, 92, 74,229,219,151, 86, 81, 20, 22,221,145,239,247, 26,145, 66,164,196, 47, 55, 60, 26,233, + 86,140,135, 34,254,232, 67,178,253,227,111,100, 32, 67, 48, 26,180,110,231, 81, 18,130, 16,255, 30, 51, 98, 0,174,202, 25, 18, + 85,241,251,227, 31, 73,195,144,218, 30, 9,120,250,245,252, 54, 32, 60, 97, 43,226,151,134,151, 1,200,185,233,190,106,188, 64, +157, 74,146, 36,241,246,234, 63, 70, 93,252,129,150,104, 24, 70,180,160,136, 63,186,144,108, 1, 60, 59,145,114, 7,174, 40, 74, +126,216, 51, 26,226,247,197, 63, 18,181,190, 34,254,223, 38, 36,251, 0,114, 69,236, 41, 96, 74,226,216, 71,215,238,232, 82,241, + 71,195,229,233,106,241,139,163,112,138,248,163, 11,217,125, 0, 57, 3, 87, 36,229,222, 7,104,183, 59,177,167,184,188,203,196, +239,201, 63, 18,226,247,183, 47,218, 80,196, 31,125,200,234, 3,248,243,235,197,224,195,160, 78,134, 69, 93,189, 9,111,124,188, + 23,109, 54, 71,151,139, 95,108, 0,209,234, 8, 71, 19, 82,177,121, 69,252,209, 65,192, 62, 64,160, 78,173, 24, 99,110,121, 86, +242, 34, 93, 37,126,241,245, 0,255, 81,160,112, 12, 35,154,144, 18,169, 34,254,232,193,103, 11, 0, 4, 14,131,122,138,225,216, +167, 79,128, 32, 8, 48, 44,135,186,122, 19, 94,251,240, 7,236,248,186,164, 75,197, 47,206, 67,164,107,253,174,112,123, 60,161, +136, 63,186,144, 84,165,156,154, 95, 74, 16,252, 62, 90,173,194,160,254, 41, 88,117,255,245,208,105,212,138,248, 67,132, 34,254, +232,195,167, 1,200, 17,191,167, 40, 60,247, 25,116, 26, 76,187,106,100,151,100,196, 31,127, 69,252, 10,124, 33, 96, 39, 56,152, + 48,168,212,121, 27, 87,222,217,101,153,145,226, 31,174,191,175,136,255,183, 13,159, 97, 80, 57,226,151,114,129,124,237,235, 74, + 68,170,214,239,206, 60, 4, 35,126,229, 1,247,208, 33,217, 2,200,245,255,125,245, 1,186, 83, 56, 60, 15, 69,252, 10,228, 32, + 96, 31, 32, 24, 23, 72, 17,127,100,161,136, 63,250,240, 59, 21, 34,144,248, 45, 86,155,219,185,158,191,187, 11,189, 89,252,188, +168, 21,241,119, 13,100,133, 65,125,185, 68,167,107,234,221,206, 43,175,186,216, 37,164,253,193,159,240,123,186,248,121, 40,226, +239, 58, 72, 26,128, 28,241,215, 92,104,194, 11,111,127,227,118,222,218, 55,191,196,169,234,158,103, 4,114,132,223, 83,196, 47, +134, 34,254,232,195,111, 24,212,151,248,239,124,108, 51, 14, 29, 63,235,149, 88,209,209, 74, 92,123,239, 63, 48,242,119,233,216, +246,220, 61, 72, 73,140,235,146, 76,120, 66, 17,191, 2,185,240, 25, 6,245, 23, 9,250, 96,195,194, 30,209,225,149,130, 34,126, + 5,193, 32,232, 48,168,248,119, 79,133, 28,225,119,229,244,140, 80,161,136, 63,250, 8, 42, 12,218, 27,196, 47,167,198, 87,196, +175,128,135,236, 48,104,111, 16, 63, 15, 69,252, 10,228, 34,232, 62, 64, 79,135,221,110,199,169, 83,167, 36,253,252,104,139, 95, +173, 86,135,157,134,211,233, 68,121,121, 57,128,174,127,105, 21, 77,211, 93,122,189,158, 0,175, 18,118, 56, 28,168,168,168,232, +150,206, 98,184, 2,210,104, 52,117,147, 39, 79,142,202,119,122,131,225, 16,234,185, 58,157,206,150,155,155,219,173,223,233,213, +233,116, 61, 99, 52,179,139, 64,136,191,244, 56,105,210,164, 11, 54,155,173,219, 5,180,119,239,222,168,124,105, 93,129, 2, 79, +184, 25,128, 2, 5,177,134,158,223, 35, 84,160, 32,138, 80, 12, 64, 65, 76, 67, 49, 0, 5, 49, 13,197, 0, 20,196, 52, 20, 3, + 80, 16,211, 8,106,164,165,227, 59,194,187, 1,140,142, 18, 31,208, 52, 93, 87, 88, 88, 24,149, 48,168,194, 63, 48, 98,141,191, +108, 3,224, 63,162,221,241, 29, 97, 20, 23, 23, 99,192,128, 1,208,104, 52,194,167, 82, 61, 7,204,130, 93,111,107,107,195,140, + 25, 51,162, 50, 14,193,243,239,248,144,118,175,229,207,151,127, 81, 81, 17, 50, 50, 50,188,248,251,226,231, 57,144, 41,181,221, +108, 54, 99,246,236,217, 49, 85,254,178, 12, 64,252, 5,249, 41, 83,166, 12, 1,128,226,226, 98,216,108, 54, 36, 36, 36, 8,159, + 78, 10,244, 58,244, 64,251, 78,159, 62, 29, 12,119,217, 16,243,207,207,207,239,181,252,215,173, 91, 39,148,255,129, 3, 7, 48, +106,212, 40,196,199,199, 75,242,151, 51, 29,220,115,255,153, 51,103,162,202,191, 39,150,127, 64, 3, 16,147,159, 58,117,234, 16, +225, 68,149, 10,226, 65, 52, 57, 4,229,100, 42,210,248,173,240, 95,179,102,141,102,218,180,105, 2,127,138,162,132, 79,217, 6, +203,213,215,254,104,160,167,151,191, 95, 3, 16,213, 60,218,169, 83,167, 14, 22,239,227, 39,150,121,126,138, 52, 28,242,145,190, + 9,191, 21,254,107,214,172,209,206,152, 49,195,139,191,248,122,114,133, 31,232,152,104,240,239,201,229,239, 51, 10, 36, 38, 63, +109,218,180,193,158,251,121,191, 13, 8, 92,248,193, 52,103,145,194,111,133,191,148,248, 1, 87, 11, 32,151,191,220,188,196, 98, +249, 75,182, 0,129,200,139, 51, 16, 73,242,145,186, 1,191, 21,254,190,196, 47,230, 15,200,251, 14,130,156, 99, 34, 53, 93, 92, + 78,249,239,218,181, 11, 9, 9, 9,208,106,181, 80,169, 84,110, 45,154,167, 97,120,110, 19,231,121,233,210,165,145, 53, 0, 15, +159, 77,146, 60,224,154,186,236,121, 81,185, 5, 30,205, 38,248,183,194,127,205,154, 53, 26, 95,226, 23,243,231,121, 75,241,151, + 43,124,241, 49,145,226, 31,168,252,111,191,253,118, 12, 24, 48, 0,241,241,241,160,105, 26,106,181, 90,104,213,186,178,252,221, + 12,192, 87,135, 5, 0,108, 54, 27,170,170,170, 80, 85, 85,133,166,166, 38,104,181, 90, 47,194,225,146, 15,247, 6, 4,226, 95, + 89, 89,137,234,234,106, 55,254, 23, 47, 94, 20, 62, 6, 62,112,224,192,128, 60, 43, 42, 42, 0,184,124,215, 75, 46,185, 36, 42, +252,215,173, 91,231,214,225,229,249,159, 57,115, 6, 85, 85, 85,168,175,175,135, 78,167,147,245,174,163, 96, 91,134, 72,240,151, + 42,127,139,197,130,195,135, 15,163,164,164, 4,199,142, 29, 67,107,107, 43, 12, 6,131,219, 7,216,229,214,252,252, 58, 73,146, + 88,182,108, 89,228, 12,128,101,217,221, 29,113,218, 33, 44,203,162,182,182, 22,101,101,101, 56,113,226, 4, 26, 26, 26, 16, 23, + 23,135,148,148, 20, 36, 36, 36, 32, 62, 62, 94, 32, 45, 55,252, 22,237, 40, 74, 40,252,139,139,139,113,235,173,183,226,179,207, + 62, 19,106, 85, 41,191,146,223, 94, 88, 88,136,187,239,190, 27, 91,182,108, 65,118,118,118,196,249,119,196,249,135,176, 44,139, +154,154, 26, 28, 63,126, 28,101,101,101,168,175,175, 71, 92, 92, 28,146,146,146,144,148,148, 4,131,193,224,183, 2,234,106,241, + 7, 83,254,179,103,207, 70, 82, 82, 18,140, 70, 35,244,122,189, 48, 22,224, 75, 79,209,212,143,167, 11, 52, 58, 59, 59, 27,155, + 54,109,194,169, 83,167, 64, 81, 20,250,246,237,139,212,212, 84,244,239,223, 31, 52, 77, 67,165, 82, 65,163,209, 8,190,155,216, +151, 14,245,149,132, 17,188, 9, 65,243, 47, 41, 41,193,161, 67,135, 64, 16, 4,210,211,211,125,214, 62,252,178,111,223, 62, 20, + 22, 22,130,227, 56,220,123,239,189, 81,225,255,242,203, 47,163,188,188, 28, 36, 73, 10,252, 71,143, 30, 45,212,150, 26,141, 6, + 58,157, 78,248, 29,138,248,125,237,143, 4,127,169,242,223,187,119, 47, 8,130, 16, 62, 4,174, 82,169, 4,183, 71,220, 7,144, + 83,243,139, 91,128,229,203,151,135, 85,254, 94,125, 0,139,197, 2,163,209,136, 41, 83,166, 32, 49, 49, 81,216,206, 23, 26, 73, +146, 80,171,213, 80,171,213,208,104, 52, 32, 73, 82,248,172,103,176,133, 29,141, 78,100,176,252,139,138,138,132, 99,246,239,223, + 15,192,229,222,240, 11,255, 91,188,157, 95,143, 6,127,179,217, 12,189, 94,143,188,188, 60, 36, 36, 36,120, 9,128, 23, 12, 77, +211,160,105, 90, 40,123,185,131, 72,129,246,135, 11, 95,229,191,104,209, 34,175,242,215,106,181,194,186,167, 17,116,149,126,188, + 12,192, 96, 48, 96,204,152, 49, 96, 24, 70,136,209,242,224, 51, 64, 81, 20,212,106,181,144, 25,169, 81,200, 80,200, 71,226, 6, + 4,203,191,162,162, 2, 53, 53, 53, 24, 48, 96,128,236,107,152,205,102, 24,141,198,168,240,215,235,245,184,244,210, 75,193,178, +172,215, 64, 17, 95,102, 60,127,113,237,201,239, 11,183, 79, 16, 46,124,149,255, 27,111,188,225,102,204,252,125, 16,115,231,247, +121,254,245,181,141, 32, 8,172, 88,177, 34,178, 6,192, 55, 77,226, 48, 27, 31, 30, 19, 23,162,184,230,151,170,253, 25,134, 65, +109,109, 45,206,158, 61,139, 11, 23, 46,160,190,190, 30, 77, 77, 77,104,109,109,197,250,245,235,163,118, 3,130,229, 15, 64, 16, +127, 65, 65, 1, 72,146, 68,110,110, 46,178,179,179,145,146,146,130,134,134, 6,148,150,150,162,176,176, 16, 44,203,162,160,160, + 0, 70,163,209, 45,189, 72,243,167,105, 26, 44,203,122, 9,198, 83,196,226,138,103,194,132, 9,168,171,115, 61,143,159,158,158, +142,162,162, 34,217,125, 51,241,254, 72,240,151, 42,255,135, 30,122, 40, 40,253,132, 82,121, 70,196, 0,248, 90, 5,144,110,230, +197,191, 41,138,130,201,100, 66,117,117, 53,206,159, 63,143, 95,127,253, 21, 77, 77, 77, 48,153, 76,176, 90,173, 48,153, 76,104, +105,105, 65,115,115, 51, 90, 90, 90,132,245, 13, 27, 54, 68, 69, 60,161,240, 23,131, 36, 73, 44, 88,176, 0,153,153,153,194,182, +126,253,250,161, 95,191,126, 24, 54,108, 24,182,109,219,230,118,124, 52,248,243,254, 49,239,110,249, 18,191, 88, 72,205,205,205, + 24, 60,120, 48,202,202,202, 0, 0,179,103,207,134,201,100, 66,114,114,114,151,138, 31,240, 93,254, 27, 55,110,244, 42, 43,169, +218,125,201,146, 37, 33,247, 37, 67,129,151, 1,240,133,202,175, 7, 34,242,204, 51,207,120, 9,188,165,165, 5,102,179, 25, 44, +203, 34, 62, 62, 30,195,135, 15,199,184,113,227,144,149,149,133,167,158,122, 42,170, 55, 33, 88,254, 0, 80, 87, 87,135,180,180, + 52,228,230,230,186,137,159, 32, 8,193, 13,201,204,204, 68,110,110, 46, 0,215,172, 67,157, 78, 23, 21,254,124, 58, 82,226,103, + 89, 22,143, 60,242, 8,206,157, 59,135,167,159,126, 26,163, 71,143, 6, 73,146,104,105,105,193,196,137, 19,113,246,236, 89,161, + 53,104,110,110, 70, 74, 74, 10, 8,130,192, 47,191,252,130, 37, 75,150, 96,208,160, 65,120,237,181,215,220,198, 64, 60,175, 17, + 46,124,149,255, 35,143, 60, 18,118,237, 30, 13, 35,246,251,141, 48, 57, 68,222,125,247, 93,144, 36,137,129, 3, 7, 98,248,240, +225,152, 52,105, 18,134, 15, 31,142,172,172, 44,100,101,101, 9,145, 21,254, 28, 95, 6, 16,169, 26, 40, 88,254, 0,144,150,230, +154, 65,155,157,157,237,150,134, 39,248,253, 58,157,206,235, 58,145,226, 47,174, 17, 61,111,248,163,143, 62,138,113,227,198,225, +233,167,159,198,242,229,203,145,158,158,142,249,243,231,227,253,247,223,199,132, 9, 19, 96,177, 88, 64,146, 36,178,179,179,177, +101,203, 22,204,159, 63, 31,219,183,111, 7,195, 48,216,182,109, 27, 62,249,228, 19, 44, 90,180, 8,111,190,249,166, 79, 81, 69, + 42, 15, 71,143, 30,133, 74,165,194,165,151, 94, 42,108,235,105,226, 7,100,124, 41, 62, 16, 9, 0, 56,123,246, 44,180, 90,173, +108,193, 69, 83,252,161,240,231,145,146,146, 34,172,123,118,160, 61,247,139,211,143, 52,127, 95,229,200,215,252, 44,203, 98,243, +230,205,248,207,127,254,131, 85,171, 86, 97,225,194,133,152, 51,103, 14, 14, 29, 58, 4,146, 36,113,227,141, 55, 34, 62, 62, 30, +239,188,243, 14, 22, 45, 90,132,212,212, 84,180,182,182,226,134, 27,110,192,174, 93,187,100,151, 71,168, 32, 73, 18, 26,141, 6, + 35, 71,142,132, 74,165, 2,195, 48, 97, 9, 60,154,238,155,223, 47,197,203, 33, 1,192,167,248,125, 21,112, 52,197, 31, 10,255, +134,134, 6,161,195,219,175, 95, 63,159,105, 55, 52, 52, 0,112,189,126,145,166,233,168,240, 7,124, 27,240,223,255,254,119, 44, + 91,182, 12,111,190,249, 38,246,238,221,139,156,156, 28,124,250,233,167, 56,119,238, 28,138,138,138,208,222,222, 14,173, 86,139, +210,210, 82,140, 26, 53, 10,227,199,143, 71, 93, 93, 29,142, 31, 63,142, 17, 35, 70,224,137, 39,158, 16, 2, 16,209,138,194,241, +233,100,103,103,187,137,255,197, 23, 95,116,171, 84, 60,239,145,231, 54,185,251,158,124,242,201,176,248,202, 50,128, 64, 29,143, + 96,172,150, 63, 94,236,131, 71, 18,161,240,231,107,246,210,210, 82,193, 0,196,105,240,253,128,210,210, 82, 0,157,239,208,140, +134,248,253,149,107,118,118, 54, 6, 12, 24,128,111,191,253, 22, 99,199,142,197,209,163, 71, 81, 90, 90,138,178,178, 50,124,253, +245,215,194,224,211,184,113,227, 48,127,254,124,140, 24, 49, 2,173,173,173, 72, 73, 73,193,217,179,103, 17, 23, 23,135, 49, 99, +198, 68,117, 28, 64,156,142,184,230,247,236, 3, 4,186, 55,114,195,185,225,194,103, 31,128,255, 27,168,105, 18,103, 90,174,224, +162, 37,254, 80,249,243, 40, 44, 44,196,176, 97,195,144,153,153, 9,207, 55,230, 85, 85, 85,161,176,176, 48,106,156,197,220,125, + 25, 0, 73,146,184,227,142, 59, 80, 80, 80,128,157, 59,119,162,180,180, 20, 59,119,238,196,158, 61,123,176,114,229, 74, 76,156, + 56, 17, 0,112,240,224, 65, 44, 94,188, 24, 15, 63,252, 48,230,206,157, 11,154,166,177, 98,197, 10, 60,240,192, 3, 81, 31, 7, +224,121,243,127,249,235,189,240,194, 11, 94, 45, 64, 56, 53, 63,191,190,106,213,170,176,184,250, 53, 0, 57,214, 41, 38, 37,199, +114,197,233, 71, 11,193,242,231,111, 12,203,178,216,182,109,155,223,113, 0,241,241,209,230,207,115,228, 56, 14, 38,147, 9, 77, + 77, 77,216,190,125, 59, 22, 46, 92,136,243,231,207,163,172,172, 12,123,246,236,193,247,223,127,143,196,196, 68,225,248,204,204, + 76,204,154, 53, 11,121,121,121,200,207,207, 71, 90, 90, 26,102,206,156,137,119,222,121, 7, 11, 23, 46, 68,106,106, 42,146,146, +146,162,210, 1, 22,243, 23,167,255,232,163,143,202,210, 72, 87,213,252, 60,252,126, 35, 76, 14, 65,241, 57, 93, 21,107,246,135, + 80,249, 3,174,129, 48,185,215,136, 38, 60,203, 53, 55, 55, 23,131, 7, 15,198,132, 9, 19,144,151,151,135, 57,115,230,160,168, +168, 8,187,119,239,198,202,149, 43,221,196,207, 47, 9, 9, 9, 88,181,106, 21,182,111,223,142, 21, 43, 86, 96,198,140, 25,184, +112,225, 2, 94,120,225, 5, 28, 58,116, 8,245,245,245, 56,115,230, 76,196, 91, 0, 95,229,190, 97,195, 6,183,167,191, 60,243, + 41, 62, 55,208, 62,241,181,162,210, 2, 4, 27, 69,233, 14,203,245,135, 80,163, 64, 61, 1, 98, 94, 60,223, 11, 23, 46,160,172, +172, 12, 53, 53, 53,176, 88, 44, 56,114,228, 8, 28, 14, 7,202,203,203, 49,113,226, 68,159,101,158,155,155,139, 87, 94,121, 5, +107,215,174, 69,109,109, 45,110,185,229, 22,104, 52, 26, 24, 12, 6,244,237,219, 87,242,156, 72, 64,170,252, 31,123,236,177, 30, + 85,243,243,136, 72, 20,168, 39,137, 63, 20,254, 86,171, 21,122,189, 94,246, 84, 8,150,101,163,218,154,249, 18, 37,159, 15,146, + 36,161,211,233,132,145,108,127,101, 47,158, 98,236,201, 89, 92, 54,145,230,238,201,107,253,250,245,110,199,120,254, 13,166,230, + 23,167, 19,149, 22,192,147,188, 63, 95,218,243,216,238, 20,127,168,252,245,122, 61, 0,249, 83, 33,162, 45,126,207,114, 77, 79, + 79,199,172, 89,179, 48,113,226, 68,100,103,103,227,198, 27,111,196,169, 83,167, 48,126,252,120, 28, 60,120, 16,153,153,153,146, +121,219,191,127, 63,230,206,157,139,182,182, 54, 24, 12, 6,108,221,186, 21,229,229,229, 56,122,244, 40, 50, 50, 50, 34, 46,126, +207,124,136,185, 44, 89,178, 36,232, 90,191, 43,244, 19,112, 36, 56, 80, 71,210,243,120,241,254,195,135, 15, 99,199,142, 29, 56, +119,238, 28,170,170,170,144,156,156, 28,181,140,132,195,159,135,120, 42, 4,191, 79,106, 42, 68, 87,240, 23,231,163,168,168, 8, + 38,147, 9,205,205,205,120,251,237,183, 65,211, 52, 38, 77,154,132, 5, 11, 22,224,175,127,253, 43,102,205,154, 37, 76,157,230, +243,102, 54,155, 81, 80, 80,128, 3, 7, 14,192,102,179, 97,215,174, 93,104,110,110,198,170, 85,171,144,146,146,130,228,228,228, +168,138,255,224,193,131,160, 40, 10, 19, 38, 76, 0, 0,172, 91,183,206,109,191,191, 26,223,243, 24,127,215,137,120, 11, 16,140, +120,124, 25, 0,203,178,120,235,173,183,208,210,210, 2,131,193,128,182,182, 54, 84, 87, 87, 11,243,237,163,137, 80,248,243,115, +123,196, 83, 33,120,225, 19, 68,231, 56, 0,191, 63,154, 46,144, 84,153,146, 36,137,228,228,100,164,166,166, 98,222,188,121, 88, +182,108, 25,230,206,157,139,172,172, 44, 44, 89,178, 4,121,121,121, 88,181,106, 21,114,115,115, 65, 16, 4,246,239,223,143,130, +130, 2,252,243,159,255, 68, 92, 92, 28,172, 86, 43,182,110,221,138,173, 91,183, 34, 43, 43,171, 75,106,126,154,166, 49, 98,196, + 8, 97, 94,147,248,225,117,185, 46,115, 87,120, 14, 62, 59,193, 82,196,142, 30, 61,138,207, 62,251, 12,231,207,159, 71, 85, 85, + 21,146,146,146,220, 50,205,147, 95,189,122, 53, 42, 43, 43, 49,104,208, 32,180,180,180,160,161,161, 1,109,109,109, 96, 24, 6, +233,233,209,255,250, 81, 48,157, 45,160,115,110,143,212, 84, 7,241,120, 0,191, 63,218,209, 44,127,188,183,109,219,134, 7, 30, +120, 0,141,141,141,104,108,108,196,220,185,115, 49,121,242,100,108,223,190, 29,155, 54,109, 2, 69, 81,152, 59,119, 46, 14, 28, + 56,128,184,184, 56, 97, 0,108,254,252,249,216,188,121, 51, 94,122,233,165,168,243, 39, 73, 18, 87, 94,121,165, 32,126,130, 32, +176,118,237, 90, 33,111,129,254,202, 21,126,212, 91, 0,126, 97, 24, 6,239,189,247, 30,172, 86, 43,226,227,227, 81, 89, 89,137, +154,154, 26, 28, 60,120, 80,200, 48,255,151, 32, 8,124,240,193, 7, 80,171,213,168,168,168,128,213,106, 69, 93, 93, 29,154,155, +155,193, 48, 12,238,186,235,174,176, 8, 7,130,220,154, 69,170,160,197, 83, 33, 60,197,207,239,239, 10,248,226,125,236,216, 49, +212,212,212, 96,198,140, 25, 56,113,226, 4, 6, 14, 28, 8,163,209, 8,173, 86,139,199, 31,127, 28,171, 87,175, 6, 65, 16,176, + 90,173,176,219,237,104,107,107, 19, 90,128,219,110,187, 13, 55,223,124, 51,142, 28, 57,130,177, 99,199, 70,157, 59,224,254,210, +171,101,203,150, 5,236,139,117,101,205,207, 67,214,108,208,127,252,227, 31,168,173,173,245, 91,163,139,201, 27,141, 70, 97, 54, + 32,195, 48,112, 56, 28,224, 56, 14, 79, 60,241, 4, 86,172, 88, 17,245, 76,201, 21, 63, 95,208,252,220, 30,241, 84, 8, 62, 29, + 0, 94, 83, 33,162,237, 2,249,226,189,116,233, 82,188,249,230,155, 48,153, 76, 24, 54,108, 24,190,252,242, 75,188,250,234,171, +184,231,158,123, 48,123,246,108,212,214,214, 10, 17,162, 93,187,118, 9, 51, 66,111,187,237, 54,168, 84, 42, 20, 20, 20,224,193, + 7, 31,196, 15, 63,252, 16, 21,238,190,242,192,183, 0,190,230, 2,137,207, 9,246, 58, 81, 27, 9, 22, 47, 59,118,236, 0, 77, +211,146, 53,250,188,121,243,188, 44,247,221,119,223,197,226,197,139, 81, 93, 93,141,184,184, 56, 36, 39, 39, 99,249,242,229,184, +242,202, 43,195, 34, 43, 23,114,197,207,139,152,159,219, 35,119, 42, 68, 87,185, 64,158,188, 7, 14, 28,136, 79, 63,253, 20,115, +230,204,193,125,247,221,135,161, 67,135, 98,227,198,141,216,182,109, 27, 26, 26, 26,112,251,237,183,131, 32, 8,108,217,178, 5, +205,205,205,216,186,117, 43, 54,111,222,140,155,111,190, 25, 5, 5, 5,248,250,235,175,221, 34, 92,209,230, 47,206,199,242,229, +203,123, 84,205,207, 67, 86, 39, 56, 46, 46, 14,191,252,242,139, 87,141,190, 98,197, 10,183,103, 50,121, 12, 29, 58, 20,159,124, +242, 73,151,102,196, 31,127,127,226, 23, 67,238, 84,136,174,200,131, 20,247,215, 94,123, 13,247,223,127, 63, 62,251,236, 51,172, + 95,191, 30,151, 93,118, 25, 8,130,192,194,133, 11,177,126,253,122,193,144,203,203,203,177,106,213, 42,100,101,101, 97,227,198, +141, 56,124,248, 48, 30,124,240, 65,100,102,102, 98,235,214,173, 81,231, 46, 85,254,207, 61,247, 92,192,217,160,161, 92, 43,106, + 45,128,152,252, 91,111,189,133,199, 31,127, 92,232, 80,137,107,244,238,178, 92,127,144, 35,126, 49,111,222,165,145, 59, 21, 34, +218, 46,144, 47,238,106,181, 26,155, 55,111,246,218,159,154,154,138,195,135, 15, 11,227, 25, 63,255,252, 51, 82, 82, 82,132,227, +198,142, 29, 27,117,183, 39, 80, 30, 30,127,252,113,191, 21, 83,119, 65, 86, 20,104,232,208,161,248,240,195, 15,123, 28,121, 95, + 8, 54, 10, 20,172,152,187, 35, 10,228, 79, 60, 73, 73, 73,104,104,104, 64,159, 62,125, 0, 0, 25, 25, 25,194,227,144,221, 1, + 41,142,207, 62,251,172, 91,222,248,245, 96, 16,137, 26,223, 19, 65, 77,134,235, 13,226, 15,135,191,220,169, 16, 61,137, 63,191, + 93, 60,177,173,187, 70,223,253,241, 95,185,114,101,143,212,143,172, 78,176,191, 8, 74, 79, 68,176,252,121,151, 70,238, 84,136, +174,158, 11,228, 47, 15,190,142,235, 78,244, 38,253,120,221,197,222, 68, 94, 10,161,240,231,197,236, 57, 21, 66,124,156,120, 42, + 68, 87,186, 64,188, 97, 42,226,247,198, 83, 79, 61, 5,167,211, 25, 86, 26,126, 91,128,222, 38,126, 30,161,242,151, 59, 21, 34, +154, 8,165,214,239, 41,226,231,209, 85,250, 9,247,121, 96,192,199, 23, 98,122,179,248,129,224,249,243,225, 77,185, 83, 33,162, + 29, 14,237,205,226, 7,122,151,126,188, 90, 0,135,195,129,138,138, 10, 55,194, 93, 69, 94,173, 86,135,157, 70, 40,252,121,151, +198,243,173, 16,124,220,154, 55, 2,126, 42, 4,127,252,201,147, 39, 35,206,191,181,181, 21,167, 79,159,246, 18,141,167,224, 61, +183, 69, 2,221, 85,254,145, 66, 40,252, 9,113, 13, 55,105,210,164, 11, 54,155, 45, 42,223,137,149, 11,141, 70, 83,183,119,239, +222,144,102,204,245,118,254,185,185,185, 23,236,118,123,175,229,223, 27,203,159,240, 28,242, 87,160, 32,150, 16,253,167,212, 21, + 40,232,193, 80, 12, 64, 65, 76, 67, 49, 0, 5, 49, 13,197, 0, 20,196, 52, 20, 3, 80, 16,211,240,249, 90, 20, 5, 10, 34,141, +142,239, 8,239, 6, 48, 58, 90,215,160,105,186,174,176,176, 80,118, 24, 84, 49, 0, 5, 93, 2,254, 35,218, 29,223, 65, 70,113, +113, 49, 50, 50, 50,220, 62,184, 46,158, 99, 37, 30, 56,147, 90,247, 28, 88, 35, 8,215,179,208, 51,103,206, 12,106, 28, 66, 49, + 0, 5, 81,135,248, 11,242, 83,166, 76, 25, 2, 0,197,197,197,104,111,111, 71,124,124,188,240,145,108, 57, 19,255,252,237, 63, +115,230, 76,208,220, 84, 6,131,174,192,102,179,175, 96, 24, 86,150, 49, 16, 4, 97,231, 56,174,128,227,184,213, 65, 95, 45, 10, + 48, 24, 12,227,108, 54,219, 88,134, 97,228,246,103, 88, 0,197, 28,199, 29,142, 38, 47,185,232,237,252, 3,129, 23,255,186,117, +235, 52, 83,167, 78, 29,194,111, 39, 73,210,109, 78, 85, 32,113,203, 53,140, 96, 65,218,108,246, 21,101,199,143,170, 28,118, 43, +228, 44,167, 78,158,112, 0, 8,127, 26, 94,132, 96,179,217,198,158, 56,254, 51,105,183,183, 66,206, 82, 94, 94,206, 2, 24,215, +221,188,121,244,118,254,254,192,139,127,237,218,181,218,105,211,166, 13, 17,239, 19,127,161, 51, 28,241,139, 91,141, 80,160, 98, + 24, 86,149, 57,120, 8,218, 90, 27,193, 50, 76,199,230,206,233, 17,158, 19, 37,250,165, 39, 95, 0, 48, 52,164,171, 69, 1, 12, +195,144,131, 6, 15,134,205,218, 4,198,193, 4, 60, 62, 35, 61,197, 10, 32, 62,250,204,228,161,183,243,247, 5,177,248,167, 79, +159, 62,216,115,191,248,219,192,225,136, 63,220,217,166,130,219,195, 48, 78,176,172,143,135, 11, 68, 86,192,114,108,224,187,212, + 13, 96, 28, 12, 88, 56,164,119,138,102, 47, 51,140,179, 71, 78,126,234,237,252,197, 8, 36,126, 0,194, 23,238, 1,223,143, 81, +134, 98, 24,193,194,197,128, 47, 82, 78,188,112,194,199,154,221,254,113,172, 10, 64, 59, 65, 16, 25, 65, 95, 45,218, 96,221, 23, +134, 95,208,185,128, 98, 9, 0, 12, 65, 16,134,238, 35,234, 3,189,157, 63,220,125,126, 95,226, 7, 0,141, 70, 35, 25,201,241, +116,107,130, 53,140, 96,161, 2, 0, 83,115, 29, 74,246,125,140, 54,107,179,203, 22, 56, 81,165, 47,172,187, 86, 40, 74,213,103, +241,226,135,219, 55,108,120,169, 74,165,162,132, 99, 68,135, 19,158, 27, 57, 14, 94,204, 56,142,115,219, 70,145,164, 83,163, 85, + 61,211,218,106, 43, 8, 54, 19, 45, 77, 23, 81, 82,184,195,229, 70,248, 59,144, 5, 8,138,210, 45, 94,252, 16,179, 97,195,198, +255,199,127,209, 92, 26,157, 41, 49,140, 55,127, 79, 80, 20,197,106, 52,228,161,214, 86,251, 79,242,153,187,208,219,249,243, 16, + 71,123,196, 29, 94, 0,176,217,108,168,172,172, 68,117,117, 53, 26, 27, 27,161,213,106, 37,133, 28,110, 71, 56, 88,168, 92,153, + 39, 96, 48,104, 65,145,122,240, 66,119, 25,130, 32,125,215, 95,215,111,227,194, 63,206,197, 99, 15,223, 15,134,115,181,205, 4, +231, 29,155,237,140,215,138,174,198,111,115,219,228,250, 85, 85, 85,165,186,114,194,140, 21, 0, 10,130,205,132,154, 36, 97, 52, +106,161,166,244,194, 54, 22, 0, 24,119, 57,117,252, 82,255,247, 31,111,192, 99, 15,255, 5, 12,239, 91,116,252,161, 36, 10,208, +109, 11,229,181, 91,216, 88, 93,125,134, 28, 63,225,234,177, 0,130, 22, 80,111,231, 47,112,102,217,221, 27, 54,108,160,243,243, +243,135,176, 44,139,218,218, 90, 28, 63,126, 28, 39, 78,156, 64,125,125, 61,226,227,227,145,156,156,140,132,132, 4, 24,141, 70, +183,126, 64, 36,250, 2,161, 64, 5, 0, 78, 39,139, 22,147, 21,214, 86,139,203,245,225,247,186,173, 11,255,225,208,193, 47,161, +209,197,129, 36, 41,247, 22, 2,238,221,103,183, 71, 13,196,173, 4,231,214, 58, 0,224,208,212,220, 2,150,149, 23,138,245,132, +131,101,209,210, 98,133,213,106, 6, 24,248,169, 69, 93, 74, 41, 41,250, 18, 90,109, 7,127,184,185,216, 34, 48, 96,124, 61,249, + 40,113,129,166,150, 22, 4, 17,202,116, 67,111,231, 47,194,232,236,236,108,108,218,180, 9,229,229,229,160, 40, 10,105,105,105, + 72, 73, 73, 65,255,254,253, 65,211, 52, 84, 42, 21,104,154,134, 86,171,133, 74,165, 18,250, 2,145,234, 8, 7, 11, 21, 0,144, + 20, 1,131, 65, 3,138,208, 74,138, 83,122,221, 9,116,116,218,196, 45, 4, 33, 58,151,112,115,131, 56,209,118,215, 89, 28, 0, +162, 35, 93,130,179, 7, 77,158, 7, 69, 2,250, 56, 13, 72, 82, 15,136, 98,203,110,247,159, 17,254,235,248,223, 33,240, 39, 37, + 78, 96, 1, 80,110,189, 79,183, 63,240, 82, 17,107, 11,145,125,239,231, 47,134,217,108, 70, 92, 92, 28,242,243,243,145,152,152, +232,226,231,241, 14, 80,181, 90, 13,154,166,161,209,104, 64, 81, 20, 24,211,175, 40,127,249,143,176,212,158,130, 46,181, 31,250, + 93,115, 31,250, 95,243,167,174,139, 2, 49, 78, 22, 38, 83, 43,172, 22,139, 80,143,187,215,222,156,100,205, 46, 54, 10,215,111, + 79,227,113,107, 56, 60,210,117,191,134,217,210, 22, 52,121, 30,140,131,129,185,197, 2,171,197,210,113,203, 61,110,174,140, 90, + 21,112,211,158,248, 84,209,201,190, 83, 49,155,219,229,145,149, 64,111,231, 47,134,193, 96, 64, 78, 78, 14,152, 14,247,173,211, + 21,238,124, 11, 31, 69, 81, 80,171,213,194,223,218,239,223, 69, 60,247, 43, 38,255, 97, 38,172, 86, 59, 14,125,253, 50, 90, 43, + 15, 35,235,191, 94, 4,225,225, 38, 69, 58, 10,212,209, 2,144, 48,232, 52, 32, 56,109,199,102,119,113,250,111, 21, 60,143,247, + 45,114, 78,212,187,246,236, 99,216,237, 97,188,223, 69, 77, 65,175,215, 0,208,116,110,115,171, 13,189,107, 66,247, 85,207,218, + 80,114,213,245,203,171, 38,117,193,102,243, 17,194,148,131,222,206, 95, 4,222,197,145,122, 17,174, 88,180, 20, 69, 9,211, 31, +250, 78,188, 25,199,254,253, 22, 26,207,213,162,239, 37,227,144, 55, 39, 13, 71,126, 44,198,145,167,102,227,210,165, 31, 65,147, +144, 42,187, 35, 28, 52, 95, 0, 96,156, 12, 90,204,109,104,181, 88, 0,248, 18,185,184, 54,247, 45,108,241, 73, 82, 29,105,222, +245, 17,210,233, 88,111,181,134,222, 2,176, 14,166,195,135,118,241,247,245,214, 18,198,253, 63, 63, 9,138,255,120, 39, 38,149, + 78,123,123,232, 46, 68,111,231, 47, 6,239,215, 3,238, 31,200, 16, 11,223, 51,220,105, 24, 48, 18,163,150,126,140,146,231,239, +192,104, 7, 48,224,242,201,184,252,154, 25,168,248,169, 8, 63, 45,155,140,203, 86,236, 68,220,160, 75,162,210, 17,118,181, 0, + 36, 9,189,222,213, 2,136,197,233,202,132,235, 64, 95,181, 55,159,209,206, 51,208,233, 50,137,211,233,248,143,115, 75,164, 51, + 93,135, 35,244, 22,128,164, 40,232,245, 90,184,213,160, 0, 14, 20,151, 99, 79,225, 73,152,173, 54, 56,108,237,176,182, 59, 96, +179, 57,208,222,110,131,205,214,142,246,246,200,212,122, 60, 58,110,238, 66,169,125,106,181,154,205,201,201, 42, 43, 46, 62,246, +227,111,141,191, 24, 4, 0, 10, 53, 0, 0, 17,191, 73, 68, 65, 84,226,112,164, 88,160,156,195,134,179,239, 46,131,233,248,143, + 96,108, 54,112, 28,235,210, 9,203,186,214, 1, 16, 36,137,159,127, 58, 9, 34, 33, 3, 3, 46, 25,133,161,227,174, 66,124,114, + 18, 74,158,156,133, 81, 15,252, 19,125,175,156,237, 55,252, 25,122, 11,192, 48, 48,153,172,104,181,180,186,251,254, 98,209,139, + 5,223,241,191,103,132, 72,236,239,187, 27,140,111,215,135, 95, 55,183,134,238,131,178, 12,131, 22,139, 21, 86,179,213,109,251, +158,194, 50,124,248,225,199, 72, 77,237,214, 55,117, 0, 0,206, 84,158, 33,115, 46,155, 48, 18,128,151,128,122, 59,127, 49,196, +174,136, 88,164, 23,190,122, 13,134,246, 26, 92,126,211,181, 80,209, 52, 8, 82, 5,130, 82,117,252,165, 0,130, 2, 8,210,181, +168, 52,224,156, 54,192, 97, 69,159,223,141, 64, 94, 82, 31, 28,120,253, 47,104, 61,187, 8, 67,127,191, 68, 82,252, 97,183, 0, + 6, 61, 13,112, 90, 55,113, 30, 58,114, 26, 63,236, 43,131,181,205, 14,155,205, 1,187,221, 1, 91,199,226, 90,119,194,102,115, + 8, 29,158,112, 65,146, 36, 75, 16,132,228, 80, 63, 65, 16,109, 28,199,173,224, 56,238, 5,175,243, 0, 24,245, 26,128,209,186, +109, 87,171, 73,164,166,166,162,241,226, 47,112, 48,145,173, 45,131,133,181,165, 30, 14,135, 67, 50,204, 24,152,127, 25, 88, 38, + 50,157,212, 80,225,143,191, 39, 60, 13,128, 36, 73,176,246, 54,232,245, 58,208,176,129, 96, 24,128, 83, 1,156, 26, 32, 85,224, +160, 5,152, 86,128, 84,185, 12,193, 97,117,233, 80,173, 5,156, 54, 24, 18, 19, 48,249, 15, 55,163,248,203,119, 96,169, 60,138, +203, 22,191, 3,130,144, 14,157, 6,139,206, 22,192, 98,133,197,212, 10,113,205,190,191,184, 28,239,125,176, 3,169, 41,169, 65, + 39, 28, 34,124, 22,112, 77,109,141, 46,123,212, 21,107, 0,120, 25,128,131,101,209, 98,182,194,220, 98,133,187,127, 76,129, 1, +224,112,216,224,112, 88, 61, 79,235, 82,248,187,190, 63,254,252,185,172,163,123, 13, 32,152,242,147,234,244,166, 77, 91,128,202, + 45, 15,227, 68,201,215,110, 35,161, 36,165,198, 37,179,254,128, 65,253,141, 32,193,130,160, 84,112,201,128, 5,199, 56, 1, 16, + 0, 99,135,154, 0, 38,220,112, 61, 14,253,251, 59, 28,255,231, 99,184,116,209,139, 97,139, 31, 16,181, 0, 58,157, 6,156,211, +229,131,242, 46, 11, 77,107, 92,239,200,175, 43, 5,227,236,222, 27, 96, 51, 91,224,112, 58, 37,223,125, 71,145, 36,244,122, 53, +224,112,241,231, 71, 72, 53, 90,254,240,224, 90,168,214,214,118,234,182,249, 75,238,254,240,221,181, 91, 12, 6,173,159,147,131, + 72,215,207,161,254,248,243,145,127, 70,162, 51,235, 15,255,251,229,143,253,223,125,239,139, 73,167, 42,170,178,109,237,118,131, +205,238,212,165, 36,199,159,203, 28,216,175,226,134, 27,166, 29,188,243, 15,215, 86, 6,149,160,204,172,250,234,164,234,210, 6, + 35,123,249, 78,161, 69,176, 55,212,162,116,253,157, 24, 49, 97, 50, 50, 6,247, 1,103, 51,129,160,104, 16,201, 67, 65, 14,201, + 7, 17,159, 1, 16, 36,184,230, 42,176,167,190, 1,123,254, 48,208,214,136, 49, 83,167, 96,239,206, 93, 56,251,245, 88,100,206, +186, 39, 44,241, 3, 66, 11,192,194,108,178,194, 98,110,117,243,203,217,142,206,137,211,209, 6,167,195, 51, 74, 35,233,169, 68, + 13, 38, 83,179,207,125, 12,203,194,220, 98,133,197, 98,113, 15,110, 48,162,152, 95, 16,110,218, 29, 11,150, 46, 56, 89, 94, 53, +238,142, 5, 75,153,207, 62,220,176, 37, 84,206, 98,176,126, 4, 28, 73,254, 53,181, 23,181,127,186,255,111,127,172, 56, 83,227, +245, 45,212,139,191, 54, 13,190,248,107,211,224,162,146,210,233,255,243,254, 23, 7, 86, 63,185,104,199,232, 81,195, 77,225,242, +247,132,191, 89,158, 36, 73,194,124,234, 39,148,191,122, 31, 46,159,115, 35,146, 18,105,112,173,191, 2, 42, 45,136, 33, 83, 64, +101,205, 1, 33,126, 52, 50,109, 52,200,190,163,192,156,248, 2,206, 35,219, 65,181,215, 99,252,172, 25,216,243,246,227, 24,116, +245, 93, 32,213, 26, 95, 52,228,113,117, 17, 38,160,215,209,208,235, 53, 48,232, 53, 48,232,181,208,235, 53,208,105, 93, 31, 93, +115,205, 10,101,187,117, 1,231,251, 6,184,106, 80, 23,103, 99,199,162,215,107,160,213,187,124,106,214,115,154,165,159,101,233, +170,141,147, 79, 85,156, 29,195,113, 28,121,170,226,236,152,165,171, 54, 78,150,123,174,255,197,183,128, 35,201,255,238, 69, 79, +221, 35, 37,126, 15, 16,199,203,206, 76, 88,176,240,169,197,199,126, 41,143, 15,151,191, 91,194,126, 98,244, 36, 73,226,226,143, + 31,161,226,159,127,193,132,155,111, 69,146,222, 14, 88,235, 93,247, 54,126, 0,136, 97,215,130, 97, 89,148, 86,214,227,227,255, +156,196,182, 47, 75,241,195,207, 53,176,218, 28,192,240, 89,224,172,141,112,254,252, 62,232,243,133,232, 51,112, 16, 46,150,124, + 35,139,147, 63,116,182, 0,150, 54,152, 76, 86,239, 57, 59, 28,231, 34,232, 71,128, 82,224, 34,220, 66,112,254,106, 80, 7,139, + 22,139, 21,150, 22, 15, 63,149,101,248, 89,101, 96,101,220,192,175,191, 61,144,254,213,238,125,179, 29, 14,167, 14, 0, 28, 14, +167,238,171,221,251,102, 79,155, 58,182,252,154,233, 87, 93, 8,135,191, 63, 4,230,223,241, 83, 70, 30, 30,252,243,109, 59, 31, + 91,246, 82, 54,195,176,234, 97, 67, 7,254,116,253,156,188, 31,114, 39,142, 62,103,212,235,156,187,191, 43, 26,180,235,243, 31, +243, 78, 85,156,189, 2, 0, 76,230,214,190,119,223,255,183,135,118,127,254,210,179,241, 70, 67,120, 95,154, 16, 65, 42, 10, 68, + 18, 4, 42,223, 43, 64, 91,121, 33, 38,221,124, 19,104,219,175,224, 28, 78, 16, 36, 5, 16, 12,184,193,249, 96, 88, 14, 21,231, +154,241,213,193,106, 56, 25, 22, 37, 39, 47,226, 84,109, 51,254,235,250, 81, 88,112,205, 72,112, 19, 31, 1,202,191, 2,103,185, +136,126,253, 47,195,217,221, 91,208,239,170,235,194,226,218,209, 7, 32,160,213,209, 96,156,180, 56,242, 9,157,150,239, 19,116, +198,106, 35,135, 32, 13,196,223,245, 41, 64,175,209,128,213,187,119, 17, 52, 26, 45, 4,217, 4,160,223,216,100, 86, 63,249,244, +230, 63, 89, 90,219,220, 62, 18, 96,105,109, 75,121,242,233,205,127,186, 98, 76,246,218,228, 36, 99,200,161, 36,198,223, 55, 5, +252,242, 7, 0, 6,172,204,231,144,174,187, 58,247,220,161,146,147,111, 3,192,202,165,127, 44, 18,239, 27,122,247,128,227,247, +221,125,243,241,213, 27,222,249,105,235, 59,159,255, 23,199,113,100, 83,147, 57,163,224,239,111, 78,222,176,250,193,239,252, 38, + 44,243,155, 8,158, 97, 80, 62, 2, 84,250,210,221, 48,210, 44,174,186,118, 26, 40,214,138, 54, 58, 29, 78, 66,131, 56,107, 57, + 8, 16, 96, 13,253,192, 57,157,216,247,203, 5,156,107,104, 69,113,217, 5, 88,218, 92,197,253,225,119,229,184, 53,111, 48, 52, +125,115, 64, 18, 36,184,182, 38, 36,100,196,227,248,225, 34,127, 84,100,129, 4, 92, 45,128,197,210, 14,147,169, 13, 45,102, 43, + 76, 29, 11,195,176,252, 67, 48, 81, 88, 56, 25,139,251,241,190,192, 50, 12, 44, 86, 43,204,102, 27, 90,204, 86, 97, 17, 68,195, + 6,110,226,231,221,179,234, 79,109,109,237,241, 6,131,174, 65,156,182,193,160,107,104,107,107,143,159,119,207,170, 63,185,218, +145,208, 22,191,179,121,252,242,103, 59,140,199,247, 98,179,181,147, 31,124,188,123, 48,255,123,229,210, 5, 69, 43,151, 46, 40, +242,117,252,242, 71,230,149,204,156,118,197, 78,254,250,223,124,123,112,142,205,214, 78, 30, 63, 81, 97,252,223,175, 10,251, 75, +157, 19, 76, 24, 65,236,242,216,155,206,227,231, 85, 87, 35, 61, 85,143,156,241,217,160,156,173,104,110,105,199,119, 91, 94, 3, +107,109, 2, 8, 10, 28, 99, 7,227,116,130, 97, 24,212,254,106,198,247,135,207, 10,226, 7, 0, 45, 77, 1, 28, 11,135,195,193, + 95, 0,148,154,134,163,205, 18, 4, 43,105, 8, 45,128, 78,171,134,211, 78, 67, 60, 98,165,211,209, 29,235,209,104, 1,130,131, + 63, 3, 32, 41, 10, 26,173, 26, 14,155, 26, 64,103, 45,170,215,119,214,160,129,198, 42, 62,255,120,237,107,252,250, 37,227,230, +189,206,175, 23,239,217,252,184,112, 80, 56,227, 29,126, 78, 13,151,255,226, 21, 47, 79,255,110,207,161,217,159,127, 85,184,247, +173, 77,203,254, 69,146,100,192,230,245,169,199,239,253,246,187, 61, 37,215, 57,157,140,166,221,102,143,159,124,237,253,171,218, +172, 54,227, 93,119,206,122,103,214,204, 43,207,121,243,151,159,119,222, 0,218, 47, 86,225,216, 51, 55, 32, 39, 63, 15,233,125, +227, 0,214,137,186, 11, 45, 56,242,159,239, 17, 55, 96, 4, 28,173, 45, 32, 18, 40,112,237,173, 96, 27, 78,161, 13,122, 12,239, +175,135,231,173,158, 62,166, 31, 24,198, 9,212,254,228,242, 4,212,122,216, 29, 28,116,201,225, 15, 16, 10,125, 0,139,165, 13, + 38, 97, 36,210, 53,215,135, 97, 59,134,171, 59,106,227,238,132,191,235,179, 12, 3,171,217, 6,179,104, 36,149, 5, 58, 69, 35, +199, 7,242,157,122,136,231,201, 79, 71, 30,127,105, 56,156, 78,162,168,228,196, 4,155,221, 17, 87,244,211,241, 25, 87,223,240, +240,224, 87, 95,124,236,141,172,161, 3, 37,171,199,186,186, 70,205,194,191,174,157,223,216,104, 74,227, 56, 78, 8,183, 52, 55, + 91,250,245,237,147,120,250,209, 7,239,240,241,186,149,224, 92, 32,130, 32, 80,254,250,159,145, 51,121, 18,210, 18, 9,112,148, + 26, 85,167, 47,160,226,200, 49, 92,185,250, 59, 92, 60,248, 57, 26,203,191, 66,106,223, 75, 0,243, 5,224,135,213,176, 93,251, + 38, 38,100, 37,225,246,252, 76,124,123,164, 14,118, 39,131,137,151,244,193, 13, 19,250,195,225,112, 64,115,240, 69, 0, 0,153, +152,137,230, 38, 51,146, 70, 78,148,197,201, 31,132, 22, 64,163, 85, 67,111,231,163, 62, 0,192, 65,175,227,127,247,132, 22,192, +247,245, 73, 0,106,173, 26,250,142, 56,186,203, 93,101, 93,177,117,184,220, 8,132,250, 44,127,132,222, 1,224,207,135,247,207, +223,181,238, 75,128, 79, 63,251, 86,110, 83,179,185,159,235, 60, 86,117,238,124,253,136,187,238,253,219,226,249,183, 95,253,241, + 3,247,221,122,212,243,248,180,180, 68,219,204,169,227, 14,190,251,193,238,223, 51, 12, 43, 52, 55, 36, 73, 58,243,115,199,252, +232,235, 58,193, 56, 65,188, 1, 56, 77,191, 34,121,192, 36,112,156, 29, 39,142,156, 64,253,197,102,140, 95,179, 7,234,184, 68, + 12,152, 62, 31,251, 62,127, 5,131, 71,143, 6, 89,251, 19, 84,109, 77,208, 22,254, 29,230, 43,151,226,150,220,254,184, 37,183, +127,103, 95, 2, 44,212, 7, 95,132,186,250, 63, 0,169, 2,219,111, 28, 78,254,239,247,152,180,250, 37,217,156,124,193,245, 68, + 24,223, 7,224,107,160, 14, 3,112, 58, 88,215,143, 16,162, 64,129, 16,108,140,200,159, 1, 56, 88,192,106,110, 71,139, 91, 20, +133, 5,239, 50,178,108,176,195, 72,226, 84, 34,133, 80,249,119, 60, 14,239,195,128,246, 20, 30,201, 19, 63, 73, 71, 81,164,131, + 86,171,108,223,252,231,167,241,183,221, 56,229,100, 90, 90,146,215, 52,207, 7, 22,222,116,244,218, 25, 87,156, 89,244,240, 11, + 11, 47,212, 53, 13,101, 89, 86,149,152, 24,119,126,229,210,187, 10,125, 26,170,204,130, 16,183, 0,241, 35,115,113,224,255,190, +129,195,106,129,113,216, 21,184,252,111, 31,128, 82,187, 30,134, 87, 27, 18, 48,112,246, 66, 84,252,242, 3, 70,102, 92, 1,166, +226, 27,196, 29,123, 11,244,133, 98, 88,114, 22,194,158,154, 3,150,160, 64, 55, 28, 69,220, 47,111, 67,115,126, 31, 0,128, 28, + 48, 30, 53,181, 77,232,115,217, 12,196,101, 12,151, 71,202, 15, 68,125, 0, 26, 14, 59,237,166, 76,157,142, 6,135,158,209, 2, +120, 57,134, 34, 80, 36,160,213,171,225,112,184, 71, 81,244, 90,181,104, 80, 41, 68,254,161,158,231,153,140,223,145, 96, 63,252, +225,106, 17,164, 6,162, 54,188,252,209,101, 45, 45,173,125, 19,227, 13,231,155, 77,173,253, 0,128, 32, 8,246, 95,239, 61,189, +142,143, 88,249, 26,192, 26, 54,180,191,229,203,157,107, 94,184,247,254,231,111, 62,114,180, 98,210,149,151,143,216,175, 86,147, +156,111,165,203, 47, 7,222, 0, 70,222,247, 50,172, 53,101,160,141,201,208,166,244,247, 26, 23, 24, 50,247,207,248,254,254,215, +144,144,156,139,126,163,255, 0,230,196, 23,160,235,127, 70,242,183,127,145, 40, 36, 26,212,176,153,104,114, 38,224,196,193,111, + 49,125,211, 33,217,124,252, 65, 5, 0, 44,195,194, 98,109,135,217,220, 57,218,203,193,213, 55,112,245, 1,196,157,208,174, 29, + 1, 22,248,248, 49, 64,134,101, 97,182,218,208, 98,113,143,163, 59,120,241, 50,242, 7,114, 0,128,166, 85,173,118,187,211, 0, + 0,159,127, 85, 56,224,250,107,175,170,113,187,158,236,148,228,157,229,151, 63,223,127,145,176,160,236,172,204,139,255,179,121, +121,193,144,193,233,173,185, 87, 63,180,166,221,102,143,119, 58, 25,205, 83,207,108,157,254,226,154,251,191, 10,196,136, 2,184, + 45,175, 60,250,201, 71, 59,247,148,220, 48,103, 98,181, 63, 43, 13,102,194,163, 56, 10,100,204, 28,229,123,254,190, 70,135,188, +117, 63,160,248,239, 55,163,185,111, 50, 70, 92,182, 0,196,133, 18,112,230, 11,224,204,231, 1,150, 1, 17,151, 6,194,216, 15, + 68,122, 14, 42, 79,159, 71,229,177,125,200, 91,243,111,104,147, 67,250,142,159, 23, 72, 0, 32, 72, 2, 90,141, 10, 58, 45, 13, +157, 86, 13,173, 86, 13,157, 70, 13, 93, 71, 13, 20, 94,248, 50,130,163,193, 62,115, 65, 66,175, 38,161,215,104,161,215,168, 59, +151, 14,254, 12, 24,183,119,235, 4, 90, 18,226, 13, 23,249,164, 55,109,222,117,227,174,175, 14, 12, 16,239,143, 56, 2,241,103, +164,121, 94, 61, 99,220,185,225, 89, 3,205, 42, 90,205, 78,155, 50,230, 11, 62,185,127,239, 57,124,211,154,141, 31, 93,238, 43, +127,207,108,120,255,202,191,173,251,159,171,248,223,183,220,148, 95,169,162,213,172,191, 50,145, 11, 57, 79,110,137,247,233, 82, + 51, 48,121,195, 62,112, 41, 35,241,227,174,175, 80,209,148,136,166,164, 60, 48, 87, 60, 0,118,194, 35,104, 73,191, 6, 85,214, +126, 40,252,247, 65, 52, 90, 40, 76,127,245,103,196,103, 70,238,131,229,157, 45, 64,107,187,240, 92, 46, 63, 25,206,238,100, 59, +126, 69,218, 5, 10,190, 21,241,123,125, 7, 11,139,213, 6, 75, 71, 13,202,223, 48,135,184,214, 10,226,227,214,151,102,255,238, +208,183,123, 14, 13, 1,128,170,179, 23,115,150, 63,185, 57,103,249,147,155, 37,143,253,185,240,245,255,150,151,106, 56,252, 25, +255,231, 3, 88,185,100,222, 15,251, 15, 30,159,220,212,108,201,224, 56,142,220,182,253,235,255,222,187,239, 88,241,245,215,142, +255,113, 90,126, 78,181,213,106, 87,237, 59, 88,218,255,139,221, 69,147, 43, 78,159, 31, 7,128,163,212, 4,179,244,161,219,139, +195,230,239,129,160,223,240,160, 82, 35,231,254,141, 48,159, 45, 67,195,177, 31, 81,115,120, 55, 26,190,221, 14,142,113, 34, 41, +235, 10,164,140,189, 6, 99,110,204, 67,210,240,200,191, 18, 85, 5,116,180, 0,180, 26,118,173,218,109, 50,156, 94,199,191,227, +170,179, 19,220, 53, 14,144,212, 85,252,143,164,106,212,106,104, 52,158, 62, 52,127, 86,112, 46,208, 51, 79, 44,248,230,250,219, + 43,198, 53, 52,154, 50, 3, 31, 45, 51, 93,127,209, 36, 57,252, 3, 68,163,140,122,218,185,105,195, 3,255, 88,248,224,139,139, +205, 22,107, 95, 0,168, 56,125,238,138, 23, 95,221,121,197,139,175,238,148, 58,133,248,225,199, 99, 19,150, 62,248,123,153, 6, + 16,222, 92,160, 64,207,242, 18, 4,129,132,204,108, 36,100,102,227,119,215, 73, 62,148, 22, 21,144, 4, 65,176,237,237, 54,180, +181,219, 97,182,180,193, 98,105,131,197,226,106, 13, 56,182,195,165, 97,157,238,147,210,162,190,112, 94,139,211,233, 4, 65, 16, + 82, 86,192,217,218,219, 97,181, 57, 96,177,182,187, 22, 75, 59, 44, 22,107,135,102, 92, 35,136,193, 44, 52, 77, 50,255,122,119, +229,154,105,121, 57,159,244, 73, 77, 56, 67,171, 85,173,190, 10, 80,110,154, 86,215, 51,183, 82,150, 29,144,191,220, 80,236,168, +145, 3, 77,111,188,244,192,186,145,195, 7,236,247,113, 45, 1, 67, 50,211, 15,189,254,210,131,210,205,154,143,124, 6, 74,147, + 71, 40,226, 15,103, 74,115, 56, 80, 25,244,154, 95, 79,148,157, 72,235,155,214, 31,214,214, 70, 97, 46, 16,195, 48, 72, 73, 27, + 8,198,233,128,169,165, 81, 56, 33,208,135,181,229,124,119, 59,208, 68, 57,207,107,112, 28,135,242,138, 90,104,181,244, 89,207, + 99, 13, 6,109,123, 89, 89,185, 46,173,111, 63, 88,173,141, 66, 69,197,178, 14,100,244,205, 0,227,112,160,165,165, 62, 48, 41, + 15, 16, 20,152,167,159,152,255, 21, 0,191,157, 73,171,156,135,201, 89, 6,149,213,231,161,211,209, 94,134, 20,144, 63,203,160, +197,220, 36,155,247,144,193,233,166,173,175, 63,186,101,231,231,251,190,251,191,221,197,227,107,106,235,135, 54,183, 88, 50, 84, + 42,170, 77,163, 81, 91,134, 14, 78, 47,253,253, 13,121,123,103, 76,205, 57, 7, 0, 86,171,188, 7, 93, 42, 42,206,195, 32,193, + 95, 10,189, 69,252, 0,160,210,106,212, 37, 31,239,216, 49,251,207,247,223,139,227,165,135, 93,115, 50, 88, 14, 14, 7,131,153, +179,167,163,169,241, 28,204,226,232, 68, 32, 3,144,113,209,192, 70,228,109, 0,133, 7,142,183, 51, 12,187,207,243, 88, 61, 77, +215,239,248,100,199,192, 69,139,238, 69, 89,217, 97, 48, 14, 7, 28, 44,224,112,176,152, 49,107, 38,154,154,106, 96,181,118,239, +195, 60, 96, 89, 20, 30, 56,193,112, 28, 91,231,185,203, 47,255,235,102,162,165,177, 86, 38,127,247,198,241,154,233, 99, 42,175, +153, 62,166,210,215,209,178, 12, 87,148,244,190,226,147, 12, 35,193,223, 19,189, 73,252, 0,160,210,171,201,191,124,188,227,179, +147,191,191,245, 22,234,206,187, 30,193,201,178, 18, 48, 12,131,172,145, 99,209,167, 79, 95, 28, 41,250, 20,182,246,206, 41, 18, +129, 16,168, 5, 8, 36,126,169, 99,206,214,214,227,227, 79,247, 58,236,118,231,147,158,199, 38, 16,170,189, 31,237,248,236,246, + 91,111,185,137,184,253,174, 71, 81, 94, 86, 2,134,113, 32,107,228,229,232,155,154,134, 35,197,187,130,124,229, 71,228,227, 60, +181,181,245,248,104,231, 94,214,225,112,122,249,219,126,249,167,245, 67,217,225,207, 96,179,186,119,142,187, 26,213,213,245,120, +127,199, 30, 73,254, 82,144, 35,252, 80, 94,100, 27, 13, 16, 28,199, 97,208,160,212, 69, 13,245,150,141,119,222,113, 3, 53,247, +250,235,144, 53,252,119,104, 53,215,227,116,121, 17,236,182,206,218, 95,142,120, 3,217,136, 44, 3, 0, 7,134, 97,113,225, 98, + 51,142, 28,171,108,219,249,249, 65,134, 97,157, 15, 57,157,220,155, 82,199,103,102,166,100,215,215, 91, 39,253,191, 59,230, 18, + 55,204,189, 14,195,135, 14,133,213, 90,143,202,242, 98,180,183,119,207,179,192, 44,203,224,124, 93, 11, 74,142,156,113,238,216, +181,143,115, 56, 28,251, 56,142, 43,147, 58,182,147,255, 77,196, 77,115,175, 67, 86,214, 96, 88,173, 77,168,174, 40,129, 35, 66, +252,131, 53, 30,150,101,112,254,124, 19, 14, 29, 57,229,124,239, 95,254,249,243,184,226,138, 43,184, 3, 7, 14,192,102,179,117, +139,248, 79,158, 60,137,121,243,230,161,184,184, 88,118,179, 66,240,130, 76, 72, 72, 24,166,166,216,151,219,237,206,203,172, 86, + 91, 31,241, 68,169,238, 0, 65,128,165,105,245, 89,150,101,247, 57, 28,204,147, 28,199,157,244,119,124, 74, 74, 74, 60,197, 57, +243,172,118,123, 74,107,107,187, 22, 8,252, 74,240, 40,131,211,209,116, 43,199,178,117,237, 78,103, 49,199,113, 45,254, 14,238, +237,252,129, 78, 3,176,219,237,221, 82,243,135, 98, 0,194, 28,146,150,150,150, 83, 0,102, 69,133, 89, 23,160,161,161,193, 4, +224,139,128, 7,246, 80,244,118,254, 60,236,118, 59, 78,157, 58, 37,233,231, 71,219,237, 81,171, 37,223,153,224, 23,202,103, 82, + 21, 68, 12, 26,141,166,110,242,228,201,221,250, 22, 47,141, 70, 19,176,163, 46, 6, 33,203,175, 87,160,224, 55,138,158,209, 21, + 87,160,160,155,160, 24,128,130,152,198,255, 7,109, 43,244, 49, 78,182, 48,112, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index 1315e22133b..d5c45740223 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -366,17 +366,17 @@ typedef enum { ICON_MOD_LATTICE, ICON_BLANK143, ICON_MOD_ARMATURE, - ICON_BLANK147, - ICON_BLANK148, - ICON_BLANK149, - ICON_BLANK150, - ICON_BLANK151, - ICON_BLANK152, - ICON_BLANK152b, + ICON_MOD_SHRINKWRAP, + ICON_MOD_CAST, + ICON_MOD_MESHDEFORM, + ICON_MOD_BEVEL, + ICON_MOD_SMOOTH, + ICON_MOD_SIMPLEDEFORM, + ICON_MOD_MASK, - /* available */ - ICON_BLANK153, - ICON_BLANK154, + /* MODIFIERS */ + ICON_MOD_CLOTH, + ICON_MOD_EXPLODE, ICON_BLANK155, ICON_BLANK156, ICON_BLANK157, @@ -612,7 +612,7 @@ typedef enum { ICON_BOOKMARKS, ICON_FONTPREVIEW, ICON_FILTER, - ICON_BLANK285E, + ICON_NEWFOLDER, ICON_BLANK285F, ICON_FILE_PARENT, ICON_FILE_REFRESH, diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 4ae90dee0bc..239eb042a64 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -215,6 +215,24 @@ int UI_GetIconRNA(PointerRNA *ptr) return ICON_MOD_UVPROJECT; else if(rnatype == &RNA_DisplaceModifier) return ICON_MOD_DISPLACE; + else if(rnatype == &RNA_ShrinkwrapModifier) + return ICON_MOD_SHRINKWRAP; + else if(rnatype == &RNA_CastModifier) + return ICON_MOD_CAST; + else if(rnatype == &RNA_MeshDeformModifier) + return ICON_MOD_MESHDEFORM; + else if(rnatype == &RNA_BevelModifier) + return ICON_MOD_BEVEL; + else if(rnatype == &RNA_SmoothModifier) + return ICON_MOD_SMOOTH; + else if(rnatype == &RNA_SimpleDeformModifier) + return ICON_MOD_SIMPLEDEFORM; + else if(rnatype == &RNA_MaskModifier) + return ICON_MOD_MASK; + else if(rnatype == &RNA_ClothModifier) + return ICON_MOD_CLOTH; + else if(rnatype == &RNA_ExplodeModifier) + return ICON_MOD_EXPLODE; else return ICON_DOT; } diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index 0d632b3e958..9c8586f4541 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -3575,6 +3575,24 @@ static void tselem_draw_icon(float x, float y, TreeStoreElem *tselem, TreeElemen UI_icon_draw(x, y, ICON_MOD_UVPROJECT); break; case eModifierType_Displace: UI_icon_draw(x, y, ICON_MOD_DISPLACE); break; + case eModifierType_Shrinkwrap: + UI_icon_draw(x, y, ICON_MOD_SHRINKWRAP); break; + case eModifierType_Cast: + UI_icon_draw(x, y, ICON_MOD_CAST); break; + case eModifierType_MeshDeform: + UI_icon_draw(x, y, ICON_MOD_MESHDEFORM); break; + case eModifierType_Bevel: + UI_icon_draw(x, y, ICON_MOD_BEVEL); break; + case eModifierType_Smooth: + UI_icon_draw(x, y, ICON_MOD_SMOOTH); break; + case eModifierType_SimpleDeform: + UI_icon_draw(x, y, ICON_MOD_SIMPLEDEFORM); break; + case eModifierType_Mask: + UI_icon_draw(x, y, ICON_MOD_MASK); break; + case eModifierType_Cloth: + UI_icon_draw(x, y, ICON_MOD_CLOTH); break; + case eModifierType_Explode: + UI_icon_draw(x, y, ICON_MOD_EXPLODE); break; default: UI_icon_draw(x, y, ICON_DOT); break; } From d110049d3743930eb9ea66d8fc4e1ffaddfcdf38 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Wed, 29 Apr 2009 04:43:17 +0000 Subject: [PATCH 22/60] * First pass updating the default theme for the new UI controls and darker colours --- .../editors/interface/interface_widgets.c | 20 +-- source/blender/editors/interface/resources.c | 53 +++---- .../editors/space_buttons/space_buttons.c | 10 ++ source/blender/makesrna/intern/rna_userdef.c | 132 ++++++++++++++++++ 4 files changed, 169 insertions(+), 46 deletions(-) diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index 703328345e9..baf5486ac3a 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -942,8 +942,8 @@ static struct uiWidgetColors wcol_text= { static struct uiWidgetColors wcol_option= { {0, 0, 0, 255}, - {63, 63, 63, 255}, - {63, 63, 63, 255}, + {70, 70, 70, 255}, + {70, 70, 70, 255}, {255, 255, 255, 255}, {0, 0, 0, 255}, @@ -956,8 +956,8 @@ static struct uiWidgetColors wcol_option= { /* button that shows popup */ static struct uiWidgetColors wcol_menu= { {0, 0, 0, 255}, - {63, 63, 63, 255}, - {63, 63, 63, 255}, + {70, 70, 70, 255}, + {70, 70, 70, 255}, {255, 255, 255, 255}, {255, 255, 255, 255}, @@ -971,10 +971,10 @@ static struct uiWidgetColors wcol_menu= { static struct uiWidgetColors wcol_pulldown= { {0, 0, 0, 255}, {63, 63, 63, 255}, - {46, 124, 217, 255}, + {86, 128, 194, 255}, {255, 255, 255, 255}, - {255, 255, 255, 255}, + {0, 0, 0, 255}, {0, 0, 0, 255}, 0, @@ -984,8 +984,8 @@ static struct uiWidgetColors wcol_pulldown= { /* button inside menu */ static struct uiWidgetColors wcol_menu_item= { {0, 0, 0, 255}, - {0, 0, 0, 76}, - {59, 135, 230, 255}, + {0, 0, 0, 0}, + {86, 128, 194, 255}, {255, 255, 255, 255}, {255, 255, 255, 255}, @@ -998,7 +998,7 @@ static struct uiWidgetColors wcol_menu_item= { /* backdrop menu + title text color */ static struct uiWidgetColors wcol_menu_back= { {0, 0, 0, 255}, - {0, 0, 0, 153}, + {25, 25, 25, 230}, {46, 124, 217, 204}, {255, 255, 255, 255}, @@ -1012,7 +1012,7 @@ static struct uiWidgetColors wcol_menu_back= { static struct uiWidgetColors wcol_radio= { {0, 0, 0, 255}, - {63, 63, 63, 255}, + {70, 70, 70, 255}, {86, 128, 194, 255}, {255, 255, 255, 255}, diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c index 332705f9066..8fea0a78594 100644 --- a/source/blender/editors/interface/resources.c +++ b/source/blender/editors/interface/resources.c @@ -402,6 +402,7 @@ static void ui_theme_init_new(bTheme *btheme) } #define SETCOL(col, r, g, b, a) col[0]=r; col[1]=g; col[2]= b; col[3]= a; +#define SETCOLF(col, r, g, b, a) col[0]=r*255; col[1]=g*255; col[2]= b*255; col[3]= a*255; /* initialize default theme, can't be edited Note: when you add new colors, created & saved themes need initialized @@ -431,17 +432,17 @@ void ui_theme_init_userdef(void) ui_theme_init_new(btheme); /* space view3d */ - SETCOL(btheme->tv3d.back, 90, 90, 90, 255); + SETCOLF(btheme->tv3d.back, 0.225, 0.225, 0.225, 1.0); SETCOL(btheme->tv3d.text, 0, 0, 0, 255); SETCOL(btheme->tv3d.text_hi, 255, 255, 255, 255); - SETCOL(btheme->tv3d.header, 185, 185, 185, 255); + SETCOLF(btheme->tv3d.header, 0.45, 0.45, 0.45, 1.0); SETCOL(btheme->tv3d.panel, 165, 165, 165, 127); SETCOL(btheme->tv3d.shade1, 160, 160, 160, 100); SETCOL(btheme->tv3d.shade2, 0x7f, 0x70, 0x70, 100); - SETCOL(btheme->tv3d.grid, 74, 74, 74 , 255); + SETCOLF(btheme->tv3d.grid, 0.222, 0.222, 0.222, 1.0); SETCOL(btheme->tv3d.wire, 0x0, 0x0, 0x0, 255); SETCOL(btheme->tv3d.lamp, 0, 0, 0, 40); SETCOL(btheme->tv3d.select, 241, 88, 0, 255); @@ -471,19 +472,16 @@ void ui_theme_init_userdef(void) /* to have something initialized */ btheme->tbuts= btheme->tv3d; - SETCOL(btheme->tbuts.back, 0x82, 0x82, 0x82, 255); - SETCOL(btheme->tbuts.header, 185, 185, 185, 255); + SETCOLF(btheme->tbuts.back, 0.45, 0.45, 0.45, 1.0); SETCOL(btheme->tbuts.panel, 0x82, 0x82, 0x82, 255); - /* space ipo */ - /* to have something initialized */ + /* graph editor */ btheme->tipo= btheme->tv3d; - + SETCOLF(btheme->tipo.back, 0.42, 0.42, 0.42, 1.0); + SETCOLF(btheme->tipo.list, 0.4, 0.4, 0.4, 1.0); SETCOL(btheme->tipo.grid, 94, 94, 94, 255); - SETCOL(btheme->tipo.back, 120, 120, 120, 255); - SETCOL(btheme->tipo.header, 185, 185, 185, 255); SETCOL(btheme->tipo.panel, 255, 255, 255, 150); - SETCOL(btheme->tipo.shade1, 172, 172, 172, 100); + SETCOL(btheme->tipo.shade1, 150, 150, 150, 100); /* scrollbars */ SETCOL(btheme->tipo.shade2, 0x70, 0x70, 0x70, 100); SETCOL(btheme->tipo.vertex, 0, 0, 0, 255); SETCOL(btheme->tipo.vertex_select, 255, 133, 0, 255); @@ -499,13 +497,15 @@ void ui_theme_init_userdef(void) SETCOL(btheme->tipo.group, 79, 101, 73, 255); SETCOL(btheme->tipo.group_active, 135, 177, 125, 255); + /* dopesheet */ + btheme->tact= btheme->tipo; + /* space file */ /* to have something initialized */ btheme->tfile= btheme->tv3d; SETCOL(btheme->tfile.back, 90, 90, 90, 255); SETCOL(btheme->tfile.text, 250, 250, 250, 255); SETCOL(btheme->tfile.text_hi, 15, 15, 15, 255); - SETCOL(btheme->tfile.header, 185, 185, 185, 255); SETCOL(btheme->tfile.panel, 180, 180, 180, 255); // bookmark/ui regions SETCOL(btheme->tfile.active, 130, 130, 130, 255); // selected files SETCOL(btheme->tfile.hilite, 255, 140, 25, 255); // selected files @@ -516,31 +516,13 @@ void ui_theme_init_userdef(void) SETCOL(btheme->tfile.scene, 250, 250, 250, 255); - /* space action */ - btheme->tact= btheme->tv3d; - SETCOL(btheme->tact.back, 116, 116, 116, 255); - SETCOL(btheme->tact.text, 0, 0, 0, 255); - SETCOL(btheme->tact.text_hi, 255, 255, 255, 255); - SETCOL(btheme->tact.header, 185, 185, 185, 255); - SETCOL(btheme->tact.grid, 94, 94, 94, 255); - SETCOL(btheme->tact.face, 166, 166, 166, 255); // RVK - SETCOL(btheme->tact.shade1, 172, 172, 172, 255); // sliders - SETCOL(btheme->tact.shade2, 74, 74, 74, 100); // bar - SETCOL(btheme->tact.hilite, 255, 160, 0, 100); // bar - SETCOL(btheme->tact.strip_select, 255, 160, 0, 255); - SETCOL(btheme->tact.strip, 78, 78, 78, 255); - SETCOL(btheme->tact.group, 79, 101, 73, 255); - SETCOL(btheme->tact.group_active, 135, 177, 125, 255) - SETCOL(btheme->tact.ds_channel, 82, 96, 110, 255); - SETCOL(btheme->tact.ds_subchannel, 124, 137, 150, 255); - + /* space nla */ btheme->tnla= btheme->tv3d; SETCOL(btheme->tnla.back, 116, 116, 116, 255); SETCOL(btheme->tnla.text, 0, 0, 0, 255); SETCOL(btheme->tnla.text_hi, 255, 255, 255, 255); - SETCOL(btheme->tnla.header, 185, 185, 185, 255); SETCOL(btheme->tnla.grid, 94, 94, 94, 255); SETCOL(btheme->tnla.shade1, 172, 172, 172, 255); // sliders SETCOL(btheme->tnla.shade2, 84, 44, 31, 100); // bar @@ -577,7 +559,6 @@ void ui_theme_init_userdef(void) SETCOL(btheme->timasel.active, 195, 195, 195, 255); /* active tile */ SETCOL(btheme->timasel.grid, 94, 94, 94, 255); /* active file text */ SETCOL(btheme->timasel.back, 110, 110, 110, 255); - SETCOL(btheme->timasel.header, 185, 185, 185, 255); SETCOL(btheme->timasel.shade1, 94, 94, 94, 255); /* bar */ SETCOL(btheme->timasel.shade2, 172, 172, 172, 255); /* sliders */ SETCOL(btheme->timasel.hilite, 17, 27, 60, 100); /* selected tile */ @@ -601,17 +582,17 @@ void ui_theme_init_userdef(void) /* space oops */ btheme->toops= btheme->tv3d; - SETCOL(btheme->toops.back, 153, 153, 153, 255); - + SETCOLF(btheme->toops.back, 0.45, 0.45, 0.45, 1.0); + /* space info */ btheme->tinfo= btheme->tv3d; SETCOL(btheme->tinfo.back, 153, 153, 153, 255); /* space sound */ btheme->tsnd= btheme->tv3d; - SETCOL(btheme->tsnd.back, 153, 153, 153, 255); + SETCOLF(btheme->tsnd.back, 0.45, 0.45, 0.45, 1.0); + SETCOLF(btheme->tsnd.grid, 0.36, 0.36, 0.36, 1.0); SETCOL(btheme->tsnd.shade1, 173, 173, 173, 255); // sliders - SETCOL(btheme->tsnd.grid, 140, 140, 140, 255); /* space time */ btheme->ttime= btheme->tsnd; // same as sound space diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c index 34b6859310d..3cbf060905a 100644 --- a/source/blender/editors/space_buttons/space_buttons.c +++ b/source/blender/editors/space_buttons/space_buttons.c @@ -241,6 +241,16 @@ static void buttons_area_listener(ARegion *ar, wmNotifier *wmn) break; } break; + case NC_OBJECT: + switch(wmn->data) { + case ND_TRANSFORM: + case ND_BONE_ACTIVE: + case ND_BONE_SELECT: + case ND_GEOM_SELECT: + ED_region_tag_redraw(ar); + break; + } + break; } } diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c index 37fb11ee039..43e67fdfa57 100644 --- a/source/blender/makesrna/intern/rna_userdef.c +++ b/source/blender/makesrna/intern/rna_userdef.c @@ -33,6 +33,8 @@ #include "DNA_space_types.h" #include "DNA_userdef_types.h" +#include "WM_types.h" + #include "BKE_utildefines.h" #ifdef RNA_RUNTIME @@ -251,61 +253,73 @@ static void rna_def_userdef_theme_ui(BlenderRNA *brna) RNA_def_property_pointer_sdna(prop, NULL, "wcol_regular"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Regular Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_tool", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_tool"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Tool Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_radio", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_radio"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Radio Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_text", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_text"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Text Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_option", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_option"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Option Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_num", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_num"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Number Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_numslider", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_numslider"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Slider Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_menu", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_menu"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Menu Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_pulldown", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_pulldown"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Pulldown Widget Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_menu_back", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_menu_back"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Menu Backdrop Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wcol_menu_item", PROP_POINTER, PROP_NEVER_NULL); RNA_def_property_pointer_sdna(prop, NULL, "wcol_menu_item"); RNA_def_property_struct_type(prop, "ThemeWidgetColors"); RNA_def_property_ui_text(prop, "Menu Item Colors", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "icon_file", PROP_STRING, PROP_FILEPATH); RNA_def_property_string_sdna(prop, NULL, "iconfile"); RNA_def_property_ui_text(prop, "Icon File", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_spaces_main(StructRNA *srna, int spacetype) @@ -316,49 +330,60 @@ static void rna_def_userdef_theme_spaces_main(StructRNA *srna, int spacetype) prop= RNA_def_property(srna, "back", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Back", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "title", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Title", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "text", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "text_hi", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Text Highlight", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); /* header */ prop= RNA_def_property(srna, "header", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Header", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "header_text", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Header Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "header_text_hi", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Header Text Highlight", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); /* buttons */ if(! ELEM(spacetype, SPACE_BUTS, SPACE_OUTLINER)) { prop= RNA_def_property(srna, "button", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Button Back", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "button_title", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Button Title", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "button_text", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Button Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "button_text_hi", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Button Text Highlight", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } /* list/channels */ @@ -366,18 +391,22 @@ static void rna_def_userdef_theme_spaces_main(StructRNA *srna, int spacetype) prop= RNA_def_property(srna, "list", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "List Back", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "list_title", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "List Title", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "list_text", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "List Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "list_text_hi", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "List Text Highlight", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } } @@ -388,14 +417,17 @@ static void rna_def_userdef_theme_spaces_vertex(StructRNA *srna) prop= RNA_def_property(srna, "vertex", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Vertex", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "vertex_select", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Vertex Select", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "vertex_size", PROP_INT, PROP_NONE); RNA_def_property_range(prop, 1, 10); RNA_def_property_ui_text(prop, "Vertex Size", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_spaces_edge(StructRNA *srna) @@ -405,18 +437,22 @@ 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_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "edge_seam", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Edge Seam", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "edge_sharp", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Edge Sharp", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "edge_facesel", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Edge UV Face Select", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_spaces_face(StructRNA *srna) @@ -426,18 +462,22 @@ static void rna_def_userdef_theme_spaces_face(StructRNA *srna) prop= RNA_def_property(srna, "face", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Face", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "face_select", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Face Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "face_dot", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Face Dot Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "facedot_size", PROP_INT, PROP_NONE); RNA_def_property_range(prop, 1, 10); RNA_def_property_ui_text(prop, "Face Dot Size", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) @@ -456,42 +496,51 @@ static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "panel", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Panel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wire", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Wire", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "lamp", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Lamp", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "object_selected", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "select"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Object Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "object_active", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "active"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Active Object", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "object_grouped", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "group"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Object Grouped", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "object_grouped_active", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "group_active"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Object Grouped Active", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "transform", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Transform", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); rna_def_userdef_theme_spaces_vertex(srna); rna_def_userdef_theme_spaces_edge(srna); @@ -500,23 +549,28 @@ static void rna_def_userdef_theme_space_view3d(BlenderRNA *brna) prop= RNA_def_property(srna, "editmesh_active", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Active Vert/Edge/Face", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "normal", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Normal", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "bone_solid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Bone Solid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "bone_pose", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Bone Pose", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "current_frame", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_graph(BlenderRNA *brna) @@ -535,20 +589,24 @@ static void rna_def_userdef_theme_space_graph(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "panel", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Panel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "window_sliders", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Sliders", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "channels_region", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade2"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Channels Region", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); rna_def_userdef_theme_spaces_vertex(srna); @@ -556,38 +614,46 @@ static void rna_def_userdef_theme_space_graph(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "handle_vertex", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Handle Vertex", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "handle_vertex_select", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Handle Vertex Select", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "handle_vertex_size", PROP_INT, PROP_NONE); RNA_def_property_range(prop, 0, 255); RNA_def_property_ui_text(prop, "Handle Vertex Size", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "channel_group", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "group"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Channel Group", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "active_channels_group", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "group_active"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Active Channel Group", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "dopesheet_channel", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "ds_channel"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "DopeSheet Channel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "dopesheet_subchannel", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "ds_subchannel"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "DopeSheet Sub-Channel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_file(BlenderRNA *brna) @@ -607,31 +673,37 @@ static void rna_def_userdef_theme_space_file(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "hilite"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Selected File", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "tiles", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "panel"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Tiles", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "scrollbar", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Scrollbar", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "scroll_handle", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade2"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Scroll Handle", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "active_file", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "active"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Active File", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "active_file_text", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "grid"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Active File Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_outliner(BlenderRNA *brna) @@ -677,46 +749,55 @@ static void rna_def_userdef_theme_space_text(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "grid"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Line Numbers Background", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "scroll_bar", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Scroll Bar", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "selected_text", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade2"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Selected Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "cursor", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "hilite"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Cursor", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "syntax_builtin", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxb"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Syntax Builtin", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "syntax_special", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxv"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Syntax Special", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "syntax_comment", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxc"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Syntax Comment", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "syntax_string", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxl"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Syntax String", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "syntax_numbers", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxn"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Syntax Numbers", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_node(BlenderRNA *brna) @@ -736,41 +817,49 @@ static void rna_def_userdef_theme_space_node(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "wire"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Wires", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "wire_select", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "edge_select"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Wire Select", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "selected_text", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade2"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Selected Text", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "node_backdrop", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxl"); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Node Backdrop", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "in_out_node", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxn"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "In/Out Node", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "converter_node", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxv"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Converter Node", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "operator_node", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxb"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Operator Node", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "group_node", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "syntaxc"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Group Node", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_buts(BlenderRNA *brna) @@ -789,6 +878,7 @@ static void rna_def_userdef_theme_space_buts(BlenderRNA *brna) prop= RNA_def_property(srna, "panel", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Panel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_time(BlenderRNA *brna) @@ -807,11 +897,13 @@ static void rna_def_userdef_theme_space_time(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "current_frame", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_sound(BlenderRNA *brna) @@ -830,16 +922,19 @@ static void rna_def_userdef_theme_space_sound(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "window_sliders", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Sliders", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "current_frame", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_image(BlenderRNA *brna) @@ -860,6 +955,7 @@ static void rna_def_userdef_theme_space_image(BlenderRNA *brna) prop= RNA_def_property(srna, "editmesh_active", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 4); RNA_def_property_ui_text(prop, "Active Vert/Edge/Face", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_seq(BlenderRNA *brna) @@ -876,66 +972,79 @@ static void rna_def_userdef_theme_space_seq(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "window_sliders", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Window Sliders", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "movie_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "movie"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Movie Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "image_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "image"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Image Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "scene_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "scene"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Scene Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "audio_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "audio"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Audio Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "effect_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "effect"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Effect Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "plugin_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "plugin"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Plugin Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "transition_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "transition"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Transition Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "meta_strip", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "meta"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Meta Strip", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "current_frame", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "keyframe", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "vertex_select"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Keyframe", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "draw_action", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "bone_pose"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Draw Action", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_action(BlenderRNA *brna) @@ -954,61 +1063,73 @@ static void rna_def_userdef_theme_space_action(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "value_sliders", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "face"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Value Sliders", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "view_sliders", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "View Sliders", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "channels", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade2"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Channels", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "channels_selected", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "hilite"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Channels Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "channel_group", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "group"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Channel Group", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "active_channels_group", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "group_active"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Active Channel Group", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "long_key", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "strip"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Long Key", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "long_key_selected", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "strip_select"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Long Key Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "current_frame", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "dopesheet_channel", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "ds_channel"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "DopeSheet Channel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "dopesheet_subchannel", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "ds_subchannel"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "DopeSheet Sub-Channel", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_space_nla(BlenderRNA *brna) @@ -1027,36 +1148,43 @@ static void rna_def_userdef_theme_space_nla(BlenderRNA *brna) prop= RNA_def_property(srna, "grid", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Grid", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "view_sliders", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade1"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "View Sliders", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "bars", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "shade2"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Bars", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "bars_selected", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "hilite"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Bars Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "strips", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "strip"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "strips", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "strips_selected", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "strip_select"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Strips Selected", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "current_frame", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "cframe"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Current Frame", ""); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_theme_colorset(BlenderRNA *brna) @@ -1072,19 +1200,23 @@ static void rna_def_userdef_theme_colorset(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "solid"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Normal", "Color used for the surface of bones."); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "selected", PROP_FLOAT, PROP_COLOR); RNA_def_property_float_sdna(prop, NULL, "select"); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Selected", "Color used for selected bones."); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "active", PROP_FLOAT, PROP_COLOR); RNA_def_property_array(prop, 3); RNA_def_property_ui_text(prop, "Active", "Color used for active bones."); + RNA_def_property_update(prop, NC_WINDOW, NULL); prop= RNA_def_property(srna, "colored_constraints", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "flag", TH_WIRECOLOR_CONSTCOLS); RNA_def_property_ui_text(prop, "Colored Constraints", "Allow the use of colors indicating constraints/keyed status."); + RNA_def_property_update(prop, NC_WINDOW, NULL); } static void rna_def_userdef_themes(BlenderRNA *brna) From d8625fb93b0c1a26f700fa0bbb76bc5c04c50bc8 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Thu, 30 Apr 2009 02:14:03 +0000 Subject: [PATCH 23/60] * trying out a little 'gripper' draw style for the screen splitter triangle --- source/blender/editors/screen/area.c | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c index f7d1723b689..9956b8eabcb 100644 --- a/source/blender/editors/screen/area.c +++ b/source/blender/editors/screen/area.c @@ -164,6 +164,27 @@ void ED_area_overdraw_flush(bContext *C, ScrArea *sa, ARegion *ar) } } +static void area_draw_azone(short x1, short y1, short x2, short y2) +{ + float xmin = x1; + float xmax = x2-2; + float ymin = y1-1; + float ymax = y2-3; + + float dx= 0.3f*(xmax-xmin); + float dy= 0.3f*(ymax-ymin); + + glColor4ub(255, 255, 255, 80); + fdrawline(xmin, ymax, xmax, ymin); + fdrawline(xmin, ymax-dy, xmax-dx, ymin); + fdrawline(xmin, ymax-2*dy, xmax-2*dx, ymin); + + glColor4ub(0, 0, 0, 150); + fdrawline(xmin, ymax+1, xmax+1, ymin); + fdrawline(xmin, ymax-dy+1, xmax-dx+1, ymin); + fdrawline(xmin, ymax-2*dy+1, xmax-2*dx+1, ymin); +} + /* only exported for WM */ void ED_area_overdraw(bContext *C) { @@ -182,8 +203,7 @@ void ED_area_overdraw(bContext *C) for(az= sa->actionzones.first; az; az= az->next) { if(az->do_draw) { if(az->type==AZONE_TRI) { - glColor4ub(0, 0, 0, 70); - sdrawtrifill(az->x1, az->y1, az->x2, az->y2); + area_draw_azone(az->x1, az->y1, az->x2, az->y2); } az->do_draw= 0; } From 4ff585569ce4d5e2c2feeba7d7c57ae5ea38c275 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Thu, 30 Apr 2009 10:22:28 +0000 Subject: [PATCH 24/60] 2.5 - Icons Add Object Menu A little experiment in putting icons on this menu as per a mockup from William. However, it appears that there is a minor bug here though with the menu drawing code. I've deliberately left the Mesh entry without an icon for now to illustrate part of the problem (note the placement of the icons for curves and surfaces) --- source/blender/editors/object/object_edit.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 37b50da39b4..2ec9d1aed37 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -637,16 +637,16 @@ static int object_primitive_add_invoke(bContext *C, wmOperator *op, wmEvent *eve uiPopupMenu *pup= uiPupMenuBegin("Add Object", 0); uiLayout *layout= uiPupMenuLayout(pup); - uiItemMenuEnumO(layout, NULL, 0, "OBJECT_OT_mesh_add", "type"); - uiItemMenuEnumO(layout, NULL, 0, "OBJECT_OT_curve_add", "type"); - uiItemMenuEnumO(layout, NULL, 0, "OBJECT_OT_surface_add", "type"); - uiItemO(layout, NULL, 0, "OBJECT_OT_text_add"); - uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_MBALL); - uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_CAMERA); - uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_LAMP); - uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_EMPTY); - uiItemO(layout, NULL, 0, "OBJECT_OT_armature_add"); - uiItemEnumO(layout, NULL, 0, "OBJECT_OT_object_add", "type", OB_LATTICE); + uiItemMenuEnumO(layout, NULL, /*ICON_OUTLINER_OB_MESH*/0, "OBJECT_OT_mesh_add", "type"); + uiItemMenuEnumO(layout, NULL, ICON_OUTLINER_OB_CURVE, "OBJECT_OT_curve_add", "type"); + uiItemMenuEnumO(layout, NULL, ICON_OUTLINER_OB_SURFACE, "OBJECT_OT_surface_add", "type"); + uiItemO(layout, NULL, ICON_OUTLINER_OB_FONT, "OBJECT_OT_text_add"); + uiItemEnumO(layout, NULL, ICON_OUTLINER_OB_META, "OBJECT_OT_object_add", "type", OB_MBALL); + uiItemEnumO(layout, NULL, ICON_OUTLINER_OB_CAMERA, "OBJECT_OT_object_add", "type", OB_CAMERA); + uiItemEnumO(layout, NULL, ICON_OUTLINER_OB_LAMP, "OBJECT_OT_object_add", "type", OB_LAMP); + uiItemEnumO(layout, NULL, ICON_OUTLINER_OB_EMPTY, "OBJECT_OT_object_add", "type", OB_EMPTY); + uiItemO(layout, NULL, ICON_OUTLINER_OB_ARMATURE, "OBJECT_OT_armature_add"); + uiItemEnumO(layout, NULL, ICON_OUTLINER_OB_LATTICE, "OBJECT_OT_object_add", "type", OB_LATTICE); uiPupMenuEnd(C, pup); From a29551751c7c26971e7bade44af954d484b509c1 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 30 Apr 2009 11:33:07 +0000 Subject: [PATCH 25/60] 2.5 Bugfix, thanks to report from M Fox: Saving file in editmode could crash on load, because editobject pointer in scene was not cleared on file reading. --- source/blender/blenloader/intern/readfile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index d48d96ef977..40a03bfdbbe 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -3862,6 +3862,8 @@ static void direct_link_scene(FileData *fd, Scene *sce) sce->theDag = NULL; sce->dagisvalid = 0; + sce->obedit= NULL; + /* set users to one by default, not in lib-link, this will increase it for compo nodes */ sce->id.us= 1; From 3c9e3e69ed778b817975e91c4ea22ea94ffd094e Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Thu, 30 Apr 2009 11:47:35 +0000 Subject: [PATCH 26/60] 2.5 Transform helpline and experimental drawing code to indicate direction of motion for specific transformations. --- source/blender/editors/include/UI_resources.h | 2 + source/blender/editors/interface/resources.c | 22 ++ .../blender/editors/space_view3d/drawobject.c | 2 +- .../editors/space_view3d/view3d_draw.c | 41 +-- .../editors/space_view3d/view3d_intern.h | 1 - source/blender/editors/transform/transform.c | 301 ++++++++++++++---- source/blender/editors/transform/transform.h | 9 + .../editors/transform/transform_generics.c | 5 +- .../editors/transform/transform_input.c | 9 + 9 files changed, 287 insertions(+), 105 deletions(-) diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index d5c45740223..4062ea1851d 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -940,4 +940,6 @@ void UI_SetTheme(int spacetype, int regionid); char *UI_ThemeGetColorPtr(struct bTheme *btheme, int spacetype, int colorid); char *UI_ThemeColorsPup(int spacetype); +void UI_make_axis_color(char *src_col, char *dst_col, char axis); + #endif /* UI_ICONS_H */ diff --git a/source/blender/editors/interface/resources.c b/source/blender/editors/interface/resources.c index 8fea0a78594..661e9af178e 100644 --- a/source/blender/editors/interface/resources.c +++ b/source/blender/editors/interface/resources.c @@ -841,6 +841,28 @@ void UI_GetColorPtrBlendShade3ubv(char *cp1, char *cp2, char *col, float fac, in col[2] = b; } +void UI_make_axis_color(char *src_col, char *dst_col, char axis) +{ + switch(axis) + { + case 'x': + case 'X': + dst_col[0]= src_col[0]>219?255:src_col[0]+36; + dst_col[1]= src_col[1]<26?0:src_col[1]-26; + dst_col[2]= src_col[2]<26?0:src_col[2]-26; + break; + case 'y': + case 'Y': + dst_col[0]= src_col[0]<46?0:src_col[0]-36; + dst_col[1]= src_col[1]>189?255:src_col[1]+66; + dst_col[2]= src_col[2]<46?0:src_col[2]-36; + break; + default: + dst_col[0]= src_col[0]<26?0:src_col[0]-26; + dst_col[1]= src_col[1]<26?0:src_col[1]-26; + dst_col[2]= src_col[2]>209?255:src_col[2]+46; + } +} /* ************************************************************* */ diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 74667f933c2..10edd4eccb5 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -5135,7 +5135,7 @@ void draw_object(Scene *scene, ARegion *ar, View3D *v3d, Base *base, int flag) char col[4], col2[4]; UI_GetThemeColor3ubv(TH_GRID, col); - make_axis_color(col, col2, 'z'); + UI_make_axis_color(col, col2, 'z'); glColor3ubv((GLubyte *)col2); cob= constraints_make_evalob(scene, ob, NULL, CONSTRAINT_OBTYPE_OBJECT); diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c index 0a063182368..cb67a1fc9aa 100644 --- a/source/blender/editors/space_view3d/view3d_draw.c +++ b/source/blender/editors/space_view3d/view3d_draw.c @@ -232,27 +232,6 @@ static void drawgrid_draw(ARegion *ar, float wx, float wy, float x, float y, flo } -// not intern, called in editobject for constraint axis too -void make_axis_color(char *col, char *col2, char axis) -{ - if(axis=='x') { - col2[0]= col[0]>219?255:col[0]+36; - col2[1]= col[1]<26?0:col[1]-26; - col2[2]= col[2]<26?0:col[2]-26; - } - else if(axis=='y') { - col2[0]= col[0]<46?0:col[0]-36; - col2[1]= col[1]>189?255:col[1]+66; - col2[2]= col[2]<46?0:col[2]-36; - } - else { - col2[0]= col[0]<26?0:col[0]-26; - col2[1]= col[1]<26?0:col[1]-26; - col2[2]= col[2]>209?255:col[2]+46; - } - -} - static void drawgrid(ARegion *ar, View3D *v3d) { /* extern short bgpicmode; */ @@ -365,15 +344,15 @@ static void drawgrid(ARegion *ar, View3D *v3d) /* center cross */ if( ELEM(rv3d->view, V3D_VIEW_RIGHT, V3D_VIEW_LEFT)) - make_axis_color(col, col2, 'y'); - else make_axis_color(col, col2, 'x'); + 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)) - make_axis_color(col, col2, 'y'); - else make_axis_color(col, col2, 'z'); + UI_make_axis_color(col, col2, 'y'); + else UI_make_axis_color(col, col2, 'z'); glColor3ubv((GLubyte *)col2); fdrawline(x, 0.0, x, (float)ar->winy); @@ -412,7 +391,7 @@ static void drawfloor(Scene *scene, View3D *v3d) if(a==0) { /* check for the 'show Y axis' preference */ if (v3d->gridflag & V3D_SHOW_Y) { - make_axis_color(col, col2, 'y'); + UI_make_axis_color(col, col2, 'y'); glColor3ubv((GLubyte *)col2); draw_line = 1; @@ -451,7 +430,7 @@ static void drawfloor(Scene *scene, View3D *v3d) if(a==0) { /* check for the 'show X axis' preference */ if (v3d->gridflag & V3D_SHOW_X) { - make_axis_color(col, col2, 'x'); + UI_make_axis_color(col, col2, 'x'); glColor3ubv((GLubyte *)col2); draw_line = 1; @@ -488,7 +467,7 @@ static void drawfloor(Scene *scene, View3D *v3d) /* draw the Z axis line */ /* check for the 'show Z axis' preference */ if (v3d->gridflag & V3D_SHOW_Z) { - make_axis_color(col, col2, 'z'); + UI_make_axis_color(col, col2, 'z'); glColor3ubv((GLubyte *)col2); glBegin(GL_LINE_STRIP); @@ -567,7 +546,7 @@ static void draw_view_axis(RegionView3D *rv3d) vec[1] = vec[2] = 0; QuatMulVecf(rv3d->viewquat, vec); - make_axis_color((char *)gridcol, (char *)col, 'x'); + UI_make_axis_color((char *)gridcol, (char *)col, 'x'); rgb_to_hsv(col[0]/255.0f, col[1]/255.0f, col[2]/255.0f, &h, &s, &v); s = s<0.5 ? s+0.5 : 1.0; v = 0.3; @@ -588,7 +567,7 @@ static void draw_view_axis(RegionView3D *rv3d) vec[0] = vec[2] = 0; QuatMulVecf(rv3d->viewquat, vec); - make_axis_color((char *)gridcol, (char *)col, 'y'); + UI_make_axis_color((char *)gridcol, (char *)col, 'y'); rgb_to_hsv(col[0]/255.0f, col[1]/255.0f, col[2]/255.0f, &h, &s, &v); s = s<0.5 ? s+0.5 : 1.0; v = 0.3; @@ -609,7 +588,7 @@ static void draw_view_axis(RegionView3D *rv3d) vec[1] = vec[0] = 0; QuatMulVecf(rv3d->viewquat, vec); - make_axis_color((char *)gridcol, (char *)col, 'z'); + UI_make_axis_color((char *)gridcol, (char *)col, 'z'); rgb_to_hsv(col[0]/255.0f, col[1]/255.0f, col[2]/255.0f, &h, &s, &v); s = s<0.5 ? s+0.5 : 1.0; v = 0.5; diff --git a/source/blender/editors/space_view3d/view3d_intern.h b/source/blender/editors/space_view3d/view3d_intern.h index 927773bf2ec..58ed8e9ba11 100644 --- a/source/blender/editors/space_view3d/view3d_intern.h +++ b/source/blender/editors/space_view3d/view3d_intern.h @@ -99,7 +99,6 @@ void draw_depth(Scene *scene, struct ARegion *ar, View3D *v3d, int (* func)(void void view3d_clr_clipping(void); void view3d_set_clipping(RegionView3D *rv3d); void add_view3d_after(View3D *v3d, Base *base, int type, int flag); -void make_axis_color(char *col, char *col2, char axis); void calc_viewborder(Scene *scene, struct ARegion *ar, View3D *v3d, rctf *viewborder_r); void circf(float x, float y, float rad); diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 3231c066196..1e1d12ff36c 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -111,54 +111,14 @@ #include "PIL_time.h" /* sleep */ +#include "UI_resources.h" + //#include "blendef.h" // //#include "mydevice.h" #include "transform.h" -/* ************************** Dashed help line **************************** */ - - -/* bad frontbuffer call... because it is used in transform after force_draw() */ -static void helpline(TransInfo *t, float *vec) -{ -#if 0 // TRANSFORM_FIX_ME - float vecrot[3], cent[2]; - short mval[2]; - - VECCOPY(vecrot, vec); - if(t->flag & T_EDIT) { - Object *ob= t->obedit; - if(ob) Mat4MulVecfl(ob->obmat, vecrot); - } - else if(t->flag & T_POSE) { - Object *ob=t->poseobj; - if(ob) Mat4MulVecfl(ob->obmat, vecrot); - } - - getmouseco_areawin(mval); - projectFloatView(t, vecrot, cent); // no overflow in extreme cases - - persp(PERSP_WIN); - - glDrawBuffer(GL_FRONT); - - BIF_ThemeColor(TH_WIRE); - - setlinestyle(3); - glBegin(GL_LINE_STRIP); - glVertex2sv(mval); - glVertex2fv(cent); - glEnd(); - setlinestyle(0); - - persp(PERSP_VIEW); - bglFlush(); // flush display for frontbuffer - glDrawBuffer(GL_BACK); -#endif -} - /* ************************** SPACE DEPENDANT CODE **************************** */ void setTransformViewMatrices(TransInfo *t) @@ -936,6 +896,231 @@ int calculateTransformCenter(bContext *C, wmEvent *event, int centerMode, float return success; } +typedef enum { + UP, + DOWN, + LEFT, + RIGHT +} ArrowDirection; +static void drawArrow(ArrowDirection d, short offset, short length, short size) +{ + switch(d) + { + case LEFT: + offset = -offset; + length = -length; + size = -size; + case RIGHT: + glBegin(GL_LINES); + glVertex2s( offset, 0); + glVertex2s( offset + length, 0); + glVertex2s( offset + length, 0); + glVertex2s( offset + length - size, -size); + glVertex2s( offset + length, 0); + glVertex2s( offset + length - size, size); + glEnd(); + break; + case DOWN: + offset = -offset; + length = -length; + size = -size; + case UP: + glBegin(GL_LINES); + glVertex2s( 0, offset); + glVertex2s( 0, offset + length); + glVertex2s( 0, offset + length); + glVertex2s(-size, offset + length - size); + glVertex2s( 0, offset + length); + glVertex2s( size, offset + length - size); + glEnd(); + break; + } +} + +static void drawArrowHead(ArrowDirection d, short size) +{ + switch(d) + { + case LEFT: + size = -size; + case RIGHT: + glBegin(GL_LINES); + glVertex2s( 0, 0); + glVertex2s( -size, -size); + glVertex2s( 0, 0); + glVertex2s( -size, size); + glEnd(); + break; + case DOWN: + size = -size; + case UP: + glBegin(GL_LINES); + glVertex2s( 0, 0); + glVertex2s(-size, -size); + glVertex2s( 0, 0); + glVertex2s( size, -size); + glEnd(); + break; + } +} + +static void drawArc(float size, float angle_start, float angle_end, int segments) +{ + float delta = (angle_end - angle_start) / segments; + float angle; + + glBegin(GL_LINE_STRIP); + + for( angle = angle_start; angle < angle_end; angle += delta) + { + glVertex2f( cosf(angle) * size, sinf(angle) * size); + } + glVertex2f( cosf(angle_end) * size, sinf(angle_end) * size); + + glEnd(); +} + +void drawHelpline(const struct bContext *C, TransInfo *t) +{ + if (t->helpline != HLP_NONE && !(t->flag & T_USES_MANIPULATOR)) + { + float vecrot[3], cent[2]; + + VECCOPY(vecrot, t->center); + if(t->flag & T_EDIT) { + Object *ob= t->obedit; + if(ob) Mat4MulVecfl(ob->obmat, vecrot); + } + else if(t->flag & T_POSE) { + Object *ob=t->poseobj; + if(ob) Mat4MulVecfl(ob->obmat, vecrot); + } + + 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) + { + case HLP_SPRING: + UI_ThemeColor(TH_WIRE); + + setlinestyle(3); + glBegin(GL_LINE_STRIP); + glVertex2sv(t->mval); + glVertex2fv(cent); + glEnd(); + + glTranslatef(t->mval[0], t->mval[1], 0); + glRotatef(-180 / M_PI * atan2f(cent[0] - t->mval[0], cent[1] - t->mval[1]), 0, 0, 1); + + setlinestyle(0); + glLineWidth(3.0); + drawArrow(UP, 5, 10, 5); + drawArrow(DOWN, 5, 10, 5); + glLineWidth(1.0); + break; + case HLP_HARROW: + UI_ThemeColor(TH_WIRE); + + glTranslatef(t->mval[0], t->mval[1], 0); + + glLineWidth(3.0); + drawArrow(RIGHT, 5, 10, 5); + drawArrow(LEFT, 5, 10, 5); + glLineWidth(1.0); + break; + case HLP_VARROW: + UI_ThemeColor(TH_WIRE); + + glTranslatef(t->mval[0], t->mval[1], 0); + + glLineWidth(3.0); + glBegin(GL_LINES); + drawArrow(UP, 5, 10, 5); + drawArrow(DOWN, 5, 10, 5); + glLineWidth(1.0); + break; + case HLP_ANGLE: + { + float dx = t->mval[0] - cent[0], dy = t->mval[1] - cent[1]; + float angle = atan2f(dy, dx); + float dist = sqrtf(dx*dx + dy*dy); + float delta_angle = MIN2(15 / dist, M_PI/4); + float spacing_angle = MIN2(5 / dist, M_PI/12); + UI_ThemeColor(TH_WIRE); + + setlinestyle(3); + glBegin(GL_LINE_STRIP); + glVertex2sv(t->mval); + glVertex2fv(cent); + glEnd(); + + glTranslatef(cent[0], cent[1], 0); + + setlinestyle(0); + glLineWidth(3.0); + drawArc(dist, angle - delta_angle, angle - spacing_angle, 10); + drawArc(dist, angle + spacing_angle, angle + delta_angle, 10); + + glPushMatrix(); + + glTranslatef(cosf(angle - delta_angle) * dist, sinf(angle - delta_angle) * dist, 0); + glRotatef(180 / M_PI * (angle - delta_angle), 0, 0, 1); + + drawArrowHead(DOWN, 5); + + glPopMatrix(); + + glTranslatef(cosf(angle + delta_angle) * dist, sinf(angle + delta_angle) * dist, 0); + glRotatef(180 / M_PI * (angle + delta_angle), 0, 0, 1); + + drawArrowHead(UP, 5); + + glLineWidth(1.0); + break; + } + case HLP_TRACKBALL: + { + char col[3], col2[3]; + UI_GetThemeColor3ubv(TH_GRID, col); + + glTranslatef(t->mval[0], t->mval[1], 0); + + glLineWidth(3.0); + + UI_make_axis_color(col, col2, 'x'); + glColor3ubv((GLubyte *)col2); + + drawArrow(RIGHT, 5, 10, 5); + drawArrow(LEFT, 5, 10, 5); + + UI_make_axis_color(col, col2, 'y'); + glColor3ubv((GLubyte *)col2); + + drawArrow(UP, 5, 10, 5); + drawArrow(DOWN, 5, 10, 5); + glLineWidth(1.0); + break; + } + } + + glMatrixMode(GL_PROJECTION); + glPopMatrix(); + glMatrixMode(GL_MODELVIEW); + glPopMatrix(); + + glEnable(GL_DEPTH_TEST); + } +} + void drawTransform(const struct bContext *C, struct ARegion *ar, void *arg) { TransInfo *t = arg; @@ -943,6 +1128,7 @@ void drawTransform(const struct bContext *C, struct ARegion *ar, void *arg) drawConstraint(C, t); drawPropCircle(C, t); drawSnapping(C, t); + drawHelpline(C, t); } void saveTransform(bContext *C, TransInfo *t, wmOperator *op) @@ -1813,7 +1999,7 @@ void initWarp(TransInfo *t) t->snap[2] = 1.0f; t->flag |= T_NO_CONSTRAINT; - + /* we need min/max in view space */ for(i = 0; i < t->total; i++) { float center[3]; @@ -1949,8 +2135,6 @@ int Warp(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - helpline(t, gcursor); - return 1; } @@ -2071,8 +2255,6 @@ int Shear(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - helpline (t, t->center); - return 1; } @@ -2349,8 +2531,6 @@ int Resize(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -2374,7 +2554,7 @@ void initToSphere(TransInfo *t) t->num.flag |= NUM_NULL_ONE | NUM_NO_NEGATIVE; t->flag |= T_NO_CONSTRAINT; - + // Calculate average radius for(i = 0 ; i < t->total; i++, td++) { t->val += VecLenf(t->center, td->iloc); @@ -2776,8 +2956,6 @@ int Rotation(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -2883,8 +3061,6 @@ int Trackball(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -3230,8 +3406,6 @@ int Tilt(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - helpline (t, t->center); - return 1; } @@ -3296,8 +3470,6 @@ int CurveShrinkFatten(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -3569,8 +3741,6 @@ int BevelWeight(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - helpline (t, t->center); - return 1; } @@ -3645,8 +3815,6 @@ int Crease(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - helpline (t, t->center); - return 1; } @@ -3762,8 +3930,6 @@ int BoneSize(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -3830,8 +3996,6 @@ int BoneEnvelope(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -3896,8 +4060,6 @@ int BoneRoll(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - if(!(t->flag & T_USES_MANIPULATOR)) helpline (t, t->center); - return 1; } @@ -3974,8 +4136,6 @@ int BakeTime(TransInfo *t, short mval[2]) ED_area_headerprint(t->sa, str); - helpline (t, t->center); - return 1; } @@ -4506,6 +4666,7 @@ void initTimeScale(TransInfo *t) t->transform = TimeScale; initMouseInputMode(t, &t->mouse, INPUT_NONE); + t->helpline = HLP_SPRING; /* set manually because we don't use a predefined input */ t->flag |= T_NULL_ONE; t->num.flag |= NUM_NULL_ONE; diff --git a/source/blender/editors/transform/transform.h b/source/blender/editors/transform/transform.h index 4ac82fcd73f..ee767fada58 100644 --- a/source/blender/editors/transform/transform.h +++ b/source/blender/editors/transform/transform.h @@ -232,6 +232,7 @@ typedef struct TransInfo { short persp; short around; char spacetype; /* spacetype where transforming is */ + char helpline; /* helpline modes (not to be confused with hotline) */ float vec[3]; /* translation, to show for widget */ float mat[3][3]; /* rot/rescale, to show for widget */ @@ -325,6 +326,14 @@ typedef struct TransInfo { /* ******************************************************************************** */ +/* transinfo->helpline */ +#define HLP_NONE 0 +#define HLP_SPRING 1 +#define HLP_ANGLE 2 +#define HLP_HARROW 3 +#define HLP_VARROW 4 +#define HLP_TRACKBALL 5 + /* transinfo->con->mode */ #define CON_APPLY 1 #define CON_AXIS0 2 diff --git a/source/blender/editors/transform/transform_generics.c b/source/blender/editors/transform/transform_generics.c index 27f1a59c14b..171665c9282 100644 --- a/source/blender/editors/transform/transform_generics.c +++ b/source/blender/editors/transform/transform_generics.c @@ -620,7 +620,6 @@ void recalcData(TransInfo *t) void drawLine(TransInfo *t, float *center, float *dir, char axis, short options) { - extern void make_axis_color(char *col, char *col2, char axis); // view3d_draw.c float v1[3], v2[3], v3[3]; char col[3], col2[3]; @@ -645,7 +644,7 @@ void drawLine(TransInfo *t, float *center, float *dir, char axis, short options) else { UI_GetThemeColor3ubv(TH_GRID, col); } - make_axis_color(col, col2, axis); + UI_make_axis_color(col, col2, axis); glColor3ubv((GLubyte *)col2); setlinestyle(0); @@ -684,6 +683,8 @@ int initTransInfo (bContext *C, TransInfo *t, wmOperator *op, wmEvent *event) t->data = NULL; t->ext = NULL; + t->helpline = HLP_NONE; + t->flag = 0; t->redraw = 1; /* redraw first time */ diff --git a/source/blender/editors/transform/transform_input.c b/source/blender/editors/transform/transform_input.c index 3272c35f5fa..4d721a83c78 100644 --- a/source/blender/editors/transform/transform_input.c +++ b/source/blender/editors/transform/transform_input.c @@ -251,35 +251,44 @@ void initMouseInputMode(TransInfo *t, MouseInput *mi, MouseInputMode mode) { case INPUT_VECTOR: mi->apply = InputVector; + t->helpline = HLP_NONE; break; case INPUT_SPRING: calcSpringFactor(mi); mi->apply = InputSpring; + t->helpline = HLP_SPRING; break; case INPUT_SPRING_FLIP: calcSpringFactor(mi); mi->apply = InputSpringFlip; + t->helpline = HLP_SPRING; break; case INPUT_ANGLE: mi->apply = InputAngle; + t->helpline = HLP_ANGLE; break; case INPUT_TRACKBALL: /* factor has to become setting or so */ mi->factor = 0.1f; mi->apply = InputTrackBall; + t->helpline = HLP_TRACKBALL; break; case INPUT_HORIZONTAL_RATIO: mi->factor = (float)(mi->center[0] - mi->imval[0]); mi->apply = InputHorizontalRatio; + t->helpline = HLP_HARROW; break; case INPUT_HORIZONTAL_ABSOLUTE: mi->apply = InputHorizontalAbsolute; + t->helpline = HLP_HARROW; break; case INPUT_VERTICAL_RATIO: mi->apply = InputVerticalRatio; + t->helpline = HLP_VARROW; break; case INPUT_VERTICAL_ABSOLUTE: mi->apply = InputVerticalAbsolute; + t->helpline = HLP_VARROW; break; case INPUT_NONE: default: From 140a60539bb03d4f843e6d6f5aa47e7d726b0971 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 30 Apr 2009 12:51:38 +0000 Subject: [PATCH 27/60] 2.5 Bug reported by Joshua: quitting Blender via window header quit widget didn't free editmode stuff. --- source/blender/editors/util/ed_util.c | 51 +++++++++++++++------------ 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/source/blender/editors/util/ed_util.c b/source/blender/editors/util/ed_util.c index 5623e538eb4..ae1e932bb81 100644 --- a/source/blender/editors/util/ed_util.c +++ b/source/blender/editors/util/ed_util.c @@ -42,6 +42,7 @@ #include "BKE_context.h" #include "BKE_global.h" +#include "BKE_main.h" #include "ED_armature.h" #include "ED_mesh.h" @@ -52,39 +53,45 @@ /* ********* general editor util funcs, not BKE stuff please! ********* */ +/* frees all editmode stuff */ void ED_editors_exit(bContext *C) { - Object *ob= CTX_data_edit_object(C); + Scene *sce; /* frees all editmode undos */ undo_editmode_clear(); undo_imagepaint_clear(); - /* global in meshtools... */ - mesh_octree_table(ob, NULL, NULL, 'e'); - - if(ob) { - if(ob->type==OB_MESH) { - Mesh *me= ob->data; - if(me->edit_mesh) { - free_editMesh(me->edit_mesh); - MEM_freeN(me->edit_mesh); - me->edit_mesh= NULL; + for(sce=G.main->scene.first; sce; sce= sce->id.next) { + if(sce->obedit) { + Object *ob= sce->obedit; + + /* global in meshtools... */ + mesh_octree_table(ob, NULL, NULL, 'e'); + + if(ob) { + if(ob->type==OB_MESH) { + Mesh *me= ob->data; + if(me->edit_mesh) { + free_editMesh(me->edit_mesh); + MEM_freeN(me->edit_mesh); + me->edit_mesh= NULL; + } + } + else if(ob->type==OB_ARMATURE) { + ED_armature_edit_free(ob); + } + else if(ob->type==OB_FONT) { + // free_editText(); + } + // else if(ob->type==OB_MBALL) + // BLI_freelistN(&editelems); + // free_editLatt(); + // free_posebuf(); } } - else if(ob->type==OB_ARMATURE) { - ED_armature_edit_free(ob); - } - else if(ob->type==OB_FONT) { - // free_editText(); - } - // else if(ob->type==OB_MBALL) - // BLI_freelistN(&editelems); } - // free_editLatt(); - // free_posebuf(); - } From 3ee6c11e31dcebc0999e335818cc07520dff5389 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 30 Apr 2009 16:44:00 +0000 Subject: [PATCH 28/60] 2.5 Two fixes: - objects in editmode now update data on saving .blend - uifonts and uistyles were not freed yet on reading files yet. --- source/blender/blenkernel/BKE_blender.h | 3 +++ source/blender/blenkernel/intern/blender.c | 13 +++++++++-- source/blender/editors/interface/interface.c | 1 - .../editors/interface/interface_intern.h | 1 - .../editors/interface/interface_style.c | 8 ------- source/blender/editors/object/object_edit.c | 23 ++++++++----------- .../blender/windowmanager/intern/wm_files.c | 7 +++--- .../windowmanager/intern/wm_init_exit.c | 2 +- 8 files changed, 29 insertions(+), 29 deletions(-) diff --git a/source/blender/blenkernel/BKE_blender.h b/source/blender/blenkernel/BKE_blender.h index 5a374802d36..795c7585b9c 100644 --- a/source/blender/blenkernel/BKE_blender.h +++ b/source/blender/blenkernel/BKE_blender.h @@ -55,6 +55,9 @@ int BKE_read_file_from_memfile(struct bContext *C, struct MemFile *memfile, stru void free_blender(void); void initglobals(void); +/* load new userdef from file, exit blender */ +void BKE_userdef_free(void); + /* set this callback when a UI is running */ void set_blender_test_break_cb(void (*func)(void) ); int blender_test_break(void); diff --git a/source/blender/blenkernel/intern/blender.c b/source/blender/blenkernel/intern/blender.c index 2033250585d..3169905b7f5 100644 --- a/source/blender/blenkernel/intern/blender.c +++ b/source/blender/blenkernel/intern/blender.c @@ -325,8 +325,8 @@ static void setup_app_data(bContext *C, BlendFileData *bfd, char *filename) if (bfd->user) { /* only here free userdef themes... */ - BLI_freelistN(&U.themes); - + BKE_userdef_free(); + U= *bfd->user; MEM_freeN(bfd->user); } @@ -414,6 +414,15 @@ static void handle_subversion_warning(Main *main) } +void BKE_userdef_free(void) +{ + + BLI_freelistN(&U.uistyles); + BLI_freelistN(&U.uifonts); + BLI_freelistN(&U.themes); + +} + /* returns: 0: no load file 1: OK diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c index fa25153a158..8a1086386e1 100644 --- a/source/blender/editors/interface/interface.c +++ b/source/blender/editors/interface/interface.c @@ -3059,7 +3059,6 @@ void UI_init_userdef(void) void UI_exit(void) { - uiStyleExit(); ui_resources_free(); } diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h index 8aaec7f31b0..83cea53e5fa 100644 --- a/source/blender/editors/interface/interface_intern.h +++ b/source/blender/editors/interface/interface_intern.h @@ -382,7 +382,6 @@ void ui_widget_color_init(struct ThemeUI *tui); /* interface_style.c */ void uiStyleInit(void); -void uiStyleExit(void); /* resources.c */ void init_userdef_do_versions(void); diff --git a/source/blender/editors/interface/interface_style.c b/source/blender/editors/interface/interface_style.c index db5dacf5a75..8c07a6ea0ab 100644 --- a/source/blender/editors/interface/interface_style.c +++ b/source/blender/editors/interface/interface_style.c @@ -264,14 +264,6 @@ void uiStyleInit(void) } } - -void uiStyleExit(void) -{ - BLI_freelistN(&U.uifonts); - BLI_freelistN(&U.uistyles); - -} - void uiStyleFontSet(uiFontStyle *fs) { uiFont *font= uifont_to_blfont(fs->uifont_id); diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 2ec9d1aed37..234a1cc0ea4 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -3204,7 +3204,6 @@ void ED_object_exit_editmode(bContext *C, int flag) { Scene *scene= CTX_data_scene(C); Object *obedit= CTX_data_edit_object(C); - Object *ob; int freedata = flag & EM_FREEDATA; if(obedit==NULL) return; @@ -3252,22 +3251,20 @@ void ED_object_exit_editmode(bContext *C, int flag) // if(freedata) BLI_freelistN(&editelems); } - ob= obedit; + /* freedata only 0 now on file saves */ + if(freedata) { + /* for example; displist make is different in editmode */ + scene->obedit= NULL; // XXX for context + + /* also flush ob recalc, doesn't take much overhead, but used for particles */ + DAG_object_flush_update(scene, obedit, OB_RECALC_OB|OB_RECALC_DATA); - /* for example; displist make is different in editmode */ - if(freedata) obedit= NULL; - scene->obedit= obedit; // XXX for context - - /* also flush ob recalc, doesn't take much overhead, but used for particles */ - DAG_object_flush_update(scene, ob, OB_RECALC_OB|OB_RECALC_DATA); - - if(obedit==NULL) // XXX && (flag & EM_FREEUNDO)) ED_undo_push(C, "Editmode"); - if(flag & EM_WAITCURSOR) waitcursor(0); + if(flag & EM_WAITCURSOR) waitcursor(0); - WM_event_add_notifier(C, NC_SCENE|ND_MODE|NS_MODE_OBJECT, scene); - + WM_event_add_notifier(C, NC_SCENE|ND_MODE|NS_MODE_OBJECT, scene); + } } diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index 5e27b0da70d..6bd5b9e0c6c 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -78,6 +78,7 @@ #include "RNA_define.h" #include "ED_datafiles.h" +#include "ED_object.h" #include "ED_screen.h" #include "ED_util.h" @@ -569,16 +570,16 @@ void WM_write_file(bContext *C, char *target, ReportList *reports) strcpy(di, target); } - if (BLI_exists(di)) { +// if (BLI_exists(di)) { // XXX if(!saveover(di)) // XXX return; - } +// } if (G.fileflags & G_AUTOPACK) { packAll(); } -// XXX waitcursor(1); // exit_editmode sets cursor too + ED_object_exit_editmode(C, 0); do_history(di, reports); diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index 64d61210c14..d394a4d6eee 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -264,7 +264,7 @@ void WM_exit(bContext *C) ED_file_exit(); /* for fsmenu */ UI_exit(); - BLI_freelistN(&U.themes); + BKE_userdef_free(); RNA_exit(); From d576ee99ed30c9ccd3768a4c3f35f03e3fa1f1e5 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 30 Apr 2009 17:27:30 +0000 Subject: [PATCH 29/60] 2.5 Cleanup of conventions for icon placement in menus. Old code only allowed 1 icon per menu, forcing to pass on the sublevel menu icon with exception handling. Now sublevel icons are drawn automatically, allowing to add an icon before name too. (Check shift+a menu) --- source/blender/editors/include/UI_interface.h | 2 +- source/blender/editors/interface/interface.c | 16 +++-- .../editors/interface/interface_layout.c | 7 -- .../editors/interface/interface_widgets.c | 72 ++++++++++--------- 4 files changed, 48 insertions(+), 49 deletions(-) diff --git a/source/blender/editors/include/UI_interface.h b/source/blender/editors/include/UI_interface.h index 26042f70b4a..0e34b3702ed 100644 --- a/source/blender/editors/include/UI_interface.h +++ b/source/blender/editors/include/UI_interface.h @@ -110,7 +110,7 @@ typedef struct uiLayout uiLayout; /* but->flag */ #define UI_TEXT_LEFT 64 #define UI_ICON_LEFT 128 -#define UI_ICON_RIGHT 256 +#define UI_ICON_SUBMENU 256 /* control for button type block */ #define UI_MAKE_TOP 512 #define UI_MAKE_DOWN 1024 diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c index 8a1086386e1..fd082c34238 100644 --- a/source/blender/editors/interface/interface.c +++ b/source/blender/editors/interface/interface.c @@ -2741,7 +2741,7 @@ uiBut *uiDefMenuSep(uiBlock *block) uiBut *uiDefMenuSub(uiBlock *block, uiBlockCreateFunc func, char *name) { int y= ui_menu_y(block) - MENU_ITEM_HEIGHT; - return uiDefIconTextBlockBut(block, func, NULL, ICON_RIGHTARROW_THIN, name, 0, y, MENU_WIDTH, MENU_ITEM_HEIGHT-1, ""); + return uiDefIconTextBlockBut(block, func, NULL, ICON_BLANK1, name, 0, y, MENU_WIDTH, MENU_ITEM_HEIGHT-1, ""); } uiBut *uiDefMenuTogR(uiBlock *block, PointerRNA *ptr, char *propname, char *propvalue, char *name) @@ -2991,7 +2991,7 @@ uiBut *uiDefIconTextMenuBut(uiBlock *block, uiMenuCreateFunc func, void *arg, in but->flag|= UI_HAS_ICON; but->flag|= UI_ICON_LEFT; - but->flag|= UI_ICON_RIGHT; + but->flag|= UI_ICON_SUBMENU; but->menu_create_func= func; ui_check_but(but); @@ -3004,11 +3004,13 @@ uiBut *uiDefIconTextBlockBut(uiBlock *block, uiBlockCreateFunc func, void *arg, { uiBut *but= ui_def_but(block, BLOCK, 0, str, x1, y1, x2, y2, arg, 0.0, 0.0, 0.0, 0.0, tip); - but->icon= (BIFIconID) icon; + /* XXX temp, old menu calls pass on icon arrow, which is now UI_ICON_SUBMENU flag */ + if(icon!=ICON_RIGHTARROW_THIN) { + but->icon= (BIFIconID) icon; + but->flag|= UI_ICON_LEFT; + } but->flag|= UI_HAS_ICON; - - but->flag|= UI_ICON_LEFT; - but->flag|= UI_ICON_RIGHT; + but->flag|= UI_ICON_SUBMENU; but->block_create_func= func; ui_check_but(but); @@ -3025,7 +3027,7 @@ uiBut *uiDefIconBlockBut(uiBlock *block, uiBlockCreateFunc func, void *arg, int but->flag|= UI_HAS_ICON; but->flag|= UI_ICON_LEFT; - but->flag|= UI_ICON_RIGHT; + but->flag|= UI_ICON_SUBMENU; but->block_create_func= func; ui_check_but(but); diff --git a/source/blender/editors/interface/interface_layout.c b/source/blender/editors/interface/interface_layout.c index 6ed02a38ca1..6a02e992390 100644 --- a/source/blender/editors/interface/interface_layout.c +++ b/source/blender/editors/interface/interface_layout.c @@ -887,9 +887,6 @@ void uiItemMenuF(uiLayout *layout, char *name, int icon, uiMenuCreateFunc func) menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - if(!icon && layout->type == UI_LAYOUT_MENU) - icon= ICON_RIGHTARROW_THIN, - ui_item_name(&menuitem->item, name); menuitem->item.icon= icon; menuitem->item.type= ITEM_MENU; @@ -931,8 +928,6 @@ void uiItemMenuEnumO(uiLayout *layout, char *name, int icon, char *opname, char menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - if(!icon && layout->type == UI_LAYOUT_MENU) - icon= ICON_RIGHTARROW_THIN; if(!name) name= ot->name; @@ -978,8 +973,6 @@ void uiItemMenuEnumR(uiLayout *layout, char *name, int icon, struct PointerRNA * menuitem= MEM_callocN(sizeof(uiItemMenu), "uiItemMenu"); - if(!icon && layout->type == UI_LAYOUT_MENU) - icon= ICON_RIGHTARROW_THIN; if(!name) name= (char*)RNA_property_ui_name(prop); diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index baf5486ac3a..f557b2e97a4 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -633,7 +633,7 @@ static void widget_draw_icon(uiBut *but, BIFIconID icon, int blend, rcti *rect) float xs=0, ys=0, aspect, height; /* this icon doesn't need draw... */ - if(icon==ICON_BLANK1) return; + if(icon==ICON_BLANK1 && (but->flag & UI_ICON_SUBMENU)==0) return; /* we need aspect from block, for menus... these buttons are scaled in uiPositionBlock() */ aspect= but->block->aspect; @@ -650,45 +650,49 @@ static void widget_draw_icon(uiBut *but, BIFIconID icon, int blend, rcti *rect) else height= ICON_HEIGHT; - if(but->flag & UI_ICON_LEFT) { - if (but->type==BUT_TOGDUAL) { - if (but->drawstr[0]) { - xs= rect->xmin-1.0; - } else { - xs= (rect->xmin+rect->xmax- height)/2.0; - } - } - else if (but->block->flag & UI_BLOCK_LOOP) { - xs= rect->xmin+1.0; - } - else if ((but->type==ICONROW) || (but->type==ICONTEXTROW)) { - xs= rect->xmin+3.0; - } - else { - xs= rect->xmin+4.0; - } - ys= (rect->ymin+rect->ymax- height)/2.0; - } - if(but->flag & UI_ICON_RIGHT) { - xs= rect->xmax-17.0; - ys= (rect->ymin+rect->ymax- height)/2.0; - } - if (!((but->flag & UI_ICON_RIGHT) || (but->flag & UI_ICON_LEFT))) { - xs= (rect->xmin+rect->xmax- height)/2.0; - ys= (rect->ymin+rect->ymax- height)/2.0; - } - - glEnable(GL_BLEND); - /* calculate blend color */ if ELEM3(but->type, TOG, ROW, TOGN) { if(but->flag & UI_SELECT); else if(but->flag & UI_ACTIVE); else blend= -60; } - if (but->flag & UI_BUT_DISABLED) blend = -100; - UI_icon_draw_aspect_blended(xs, ys, icon, aspect, blend); + glEnable(GL_BLEND); + + if(icon && icon!=ICON_BLANK1) { + if(but->flag & UI_ICON_LEFT) { + if (but->type==BUT_TOGDUAL) { + if (but->drawstr[0]) { + xs= rect->xmin-1.0; + } else { + xs= (rect->xmin+rect->xmax- height)/2.0; + } + } + else if (but->block->flag & UI_BLOCK_LOOP) { + xs= rect->xmin+1.0; + } + else if ((but->type==ICONROW) || (but->type==ICONTEXTROW)) { + xs= rect->xmin+3.0; + } + else { + xs= rect->xmin+4.0; + } + ys= (rect->ymin+rect->ymax- height)/2.0; + } + else { + xs= (rect->xmin+rect->xmax- height)/2.0; + ys= (rect->ymin+rect->ymax- height)/2.0; + } + + UI_icon_draw_aspect_blended(xs, ys, icon, aspect, blend); + } + + if(but->flag & UI_ICON_SUBMENU) { + xs= rect->xmax-17.0; + ys= (rect->ymin+rect->ymax- height)/2.0; + + UI_icon_draw_aspect_blended(xs, ys, ICON_RIGHTARROW_THIN, aspect, blend); + } glDisable(GL_BLEND); } @@ -843,7 +847,7 @@ static void widget_draw_text_icon(uiFontStyle *fstyle, uiWidgetColors *wcol, uiB /* If there's an icon too (made with uiDefIconTextBut) then draw the icon and offset the text label to accomodate it */ - if ( (but->flag & UI_HAS_ICON) && (but->flag & UI_ICON_LEFT) ) { + if (but->flag & UI_HAS_ICON) { widget_draw_icon(but, but->icon, 0, rect); rect->xmin += UI_icon_get_width(but->icon); From 6ef603ffcfef1bd335d4e035f5150842627ef170 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Fri, 1 May 2009 06:24:52 +0000 Subject: [PATCH 30/60] * Some tiny tweaks to the padding around buttons window --- source/blender/editors/interface/interface_intern.h | 2 +- source/blender/editors/interface/interface_panel.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/editors/interface/interface_intern.h b/source/blender/editors/interface/interface_intern.h index 83cea53e5fa..0edcc95f7af 100644 --- a/source/blender/editors/interface/interface_intern.h +++ b/source/blender/editors/interface/interface_intern.h @@ -99,7 +99,7 @@ typedef enum { /* internal panel drawing defines */ #define PNL_GRID 4 -#define PNL_DIST 8 +#define PNL_DIST 4 #define PNL_SAFETY 8 #define PNL_HEADER 20 diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c index 9f86917217c..730f22e3390 100644 --- a/source/blender/editors/interface/interface_panel.c +++ b/source/blender/editors/interface/interface_panel.c @@ -728,7 +728,7 @@ void ui_draw_aligned_panel(ARegion *ar, uiStyle *style, uiBlock *block, rcti *re if(prev) { float minx= rect->xmin+10.0f/block->aspect; - float maxx= rect->xmax-10.0f/block->aspect; + float maxx= rect->xmax-5.0f/block->aspect; float y= headrect.ymax; glEnable(GL_BLEND); From 792449f8f0c3fac5ac4cb29db4abaa9c4cf89cd5 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 1 May 2009 11:57:14 +0000 Subject: [PATCH 31/60] 2.5 - Restored access to the Image-Type setting This has been wrapped under Scene.RenderData, and can currently be accessed under the 'Image' panel in the Scene settings. As in the old code, image types are only included if they are enabled when compiling. Also note that image-type specific settings have not been wrapped yet. --- release/ui/buttons_scene.py | 3 ++ source/blender/makesrna/intern/rna_scene.c | 43 ++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/release/ui/buttons_scene.py b/release/ui/buttons_scene.py index fa996987043..b03f288da4c 100644 --- a/release/ui/buttons_scene.py +++ b/release/ui/buttons_scene.py @@ -49,6 +49,9 @@ class RENDER_PT_image(RenderButtonsPanel): layout.itemR(rd, "quality") layout.itemR(rd, "color_mode") + layout.row() + layout.itemR(rd, "image_type") + layout.row() layout.itemR(rd, "placeholders") layout.itemR(rd, "no_overwrite") diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index d61db6cc6e8..330cc5f4ca2 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -210,6 +210,43 @@ void rna_def_scene_render_data(BlenderRNA *brna) {0, "THREADS_AUTO", "Auto-detect", ""}, {R_FIXED_THREADS, "THREADS_FIXED", "Fixed Number", ""}, {0, NULL, NULL, NULL}}; + + static EnumPropertyItem image_type_items[] = { + {R_FRAMESERVER, "FRAMESERVER", "Frame Server", ""}, +#ifdef WITH_FFMPEG + {R_FFMPEG, "FFMPEG", "FFMpeg", ""}, +#endif + {R_AVIRAW, "AVIRAW", "AVI Raw", ""}, + {R_AVIJPEG, "AVIJPEG", "AVI JPEG", ""}, +#ifdef _WIN32 + {R_AVICODEC, "AVICODEC", "AVI Codec", ""}, +#endif +#ifdef WITH_QUICKTIME + {R_QUICKTIME, "QUICKTIME", "QuickTime", ""}, +#endif + {R_TARGA, "TARGA", "Targa", ""}, + {R_RAWTGA, "RAWTARGA", "Targa Raw", ""}, + {R_PNG, "PNG", "PNG", ""}, + //{R_DDS, "DDS", "DDS", ""}, // XXX not yet implemented +#ifdef WITH_OPENJPEG + {R_JP2, "JPEG2000", "JPEG 2000", ""}, +#endif + {R_BMP, "BMP", "BMP", ""}, + {R_JPEG90, "JPEG", "JPEG", ""}, + {R_HAMX, "HAMX", "HamX", ""}, + {R_IRIS, "IRIS", "Iris", ""}, + {R_RADHDR, "RADHDR", "Radiance HDR", ""}, + {R_CINEON, "CINEON", "Cineon", ""}, + {R_DPX, "DPX", "DPX", ""}, +#ifdef __sgi + {R_MOVIE, "MOVIE", "Movie", ""}, +#endif +#ifdef WITH_OPENEXR + {R_OPENEXR, "OPENEXR", "OpenEXR", ""}, + {R_MULTILAYER, "MULTILAYER", "MultiLayer", ""}, +#endif + {R_TIFF, "TIFF", "TIFF", ""}, // XXX only with G.have_libtiff + {0, NULL, NULL, NULL}}; srna= RNA_def_struct(brna, "SceneRenderData", NULL); RNA_def_struct_sdna(srna, "RenderData"); @@ -439,6 +476,12 @@ void rna_def_scene_render_data(BlenderRNA *brna) RNA_def_property_ui_text(prop, "File Extensions", "Add the file format extensions to the rendered file name (eg: filename + .jpg)"); RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); + prop= RNA_def_property(srna, "image_type", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_sdna(prop, NULL, "imtype"); + RNA_def_property_enum_items(prop, image_type_items); + RNA_def_property_ui_text(prop, "Image Type", "File format to save the rendered images as."); + RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); + prop= RNA_def_property(srna, "free_image_textures", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "scemode", R_FREE_IMAGE); RNA_def_property_ui_text(prop, "Free Image Textures", "Free all image texture from memory after render, to save memory before compositing."); From 76cedc4b9abe5a50db03a1ccd1875213effae264 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Sat, 2 May 2009 03:09:40 +0000 Subject: [PATCH 32/60] * Added a list of OS X volumes to the file selector bookmarks pane, consistent with the drive letters on Windows. Currently this list only gets refreshed on Blender startup, hopefully this can be worked on but for now at least it's better than having to manually navigate to /Volumes/... http://mke3.net/blender/devel/2.5/fileselect_volumes.png --- source/blender/editors/space_file/file_draw.c | 9 ++++--- source/blender/editors/space_file/fsmenu.c | 27 +++++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index 6184425885e..b4b1145f429 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -570,10 +570,13 @@ static void file_draw_fsmenu_category(const bContext *C, ARegion *ar, FSMenuCate BLI_strncpy(bookmark, fname, FILE_MAX); sl = strlen(bookmark)-1; - while (bookmark[sl] == '\\' || bookmark[sl] == '/') { - bookmark[sl] = '\0'; - sl--; + if (sl > 1) { + while (bookmark[sl] == '\\' || bookmark[sl] == '/') { + bookmark[sl] = '\0'; + sl--; + } } + if (fsmenu_is_selected(fsmenu, category, i) ) { UI_ThemeColor(TH_HILITE); //uiSetRoundBox(15); diff --git a/source/blender/editors/space_file/fsmenu.c b/source/blender/editors/space_file/fsmenu.c index 6ef946c9697..59e8dcf82e6 100644 --- a/source/blender/editors/space_file/fsmenu.c +++ b/source/blender/editors/space_file/fsmenu.c @@ -47,6 +47,12 @@ #include "BLI_winstuff.h" #endif +#ifdef __APPLE__ +#include + +#include "BKE_utildefines.h" +#endif + #include "fsmenu.h" /* include ourselves */ @@ -303,6 +309,27 @@ void fsmenu_read_file(struct FSMenu* fsmenu, const char *filename) } #endif +#ifdef __APPLE__ + { + OSErr err=noErr; + int i; + + /* loop through all the OS X Volumes, and add them to the SYSTEM section */ + for (i=1; err!=nsvErr; i++) + { + FSRef dir; + unsigned char path[FILE_MAXDIR+FILE_MAXFILE]; + + err = FSGetVolumeInfo(kFSInvalidVolumeRefNum, i, NULL, kFSVolInfoNone, NULL, NULL, &dir); + if (err != noErr) + continue; + + FSRefMakePath(&dir, path, FILE_MAXDIR+FILE_MAXFILE); + fsmenu_insert_entry(fsmenu, FS_CATEGORY_SYSTEM, (char *)path, 1, 0); + } + } +#endif + fp = fopen(filename, "r"); if (!fp) return; From 4b025d68657c197b302516b96f69405aa957accf Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Sat, 2 May 2009 04:20:36 +0000 Subject: [PATCH 33/60] * Added a new F-Curve modifier type: Noise Thanks Aligorith for making such an easy to use system! http://mke3.net/blender/devel/2.5/fcurve_noise_modifier.mov --- source/blender/blenkernel/intern/fcurve.c | 41 +++++++++++++++-- .../editors/space_graph/graph_buttons.c | 36 ++++++++++++++- source/blender/makesdna/DNA_anim_types.h | 20 ++++++++ source/blender/makesrna/intern/rna_fcurve.c | 46 ++++++++++++++++++- 4 files changed, 137 insertions(+), 6 deletions(-) diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index 5bfff141714..cb54d77f08e 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -19,6 +19,7 @@ #include "BLI_blenlib.h" #include "BLI_arithb.h" +#include "BLI_noise.h" #include "BKE_fcurve.h" #include "BKE_curve.h" @@ -1823,7 +1824,42 @@ static FModifierTypeInfo FMI_CYCLES = { /* Noise F-Curve Modifier --------------------------- */ -#if 0 // XXX not yet implemented +static void fcm_noise_new_data (void *mdata) +{ + FMod_Noise *data= (FMod_Noise *)mdata; + + /* defaults */ + data->size= 1.0f; + data->strength= 1.0f; + data->phase= 1.0f; + data->depth = 0; + data->modification = FCM_NOISE_MODIF_REPLACE; +} + +static void fcm_noise_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, float evaltime) +{ + FMod_Noise *data= (FMod_Noise *)fcm->data; + float noise; + + noise = BLI_turbulence(data->size, evaltime, data->phase, 0.f, data->depth); + + switch (data->modification) { + case FCM_NOISE_MODIF_ADD: + *cvalue= *cvalue + noise * data->strength; + break; + case FCM_NOISE_MODIF_SUBTRACT: + *cvalue= *cvalue - noise * data->strength; + break; + case FCM_NOISE_MODIF_MULTIPLY: + *cvalue= *cvalue * noise * data->strength; + break; + case FCM_NOISE_MODIF_REPLACE: + default: + *cvalue= *cvalue + (noise - 0.5f) * data->strength; + break; + } +} + static FModifierTypeInfo FMI_NOISE = { FMODIFIER_TYPE_NOISE, /* type */ sizeof(FMod_Noise), /* size */ @@ -1837,7 +1873,6 @@ static FModifierTypeInfo FMI_NOISE = { NULL /*fcm_noise_verify*/, /* verify */ fcm_noise_evaluate /* evaluate */ }; -#endif // XXX not yet implemented /* Filter F-Curve Modifier --------------------------- */ @@ -1961,7 +1996,7 @@ static void fmods_init_typeinfo () fmodifiersTypeInfo[1]= &FMI_GENERATOR; /* Generator F-Curve Modifier */ fmodifiersTypeInfo[2]= &FMI_ENVELOPE; /* Envelope F-Curve Modifier */ fmodifiersTypeInfo[3]= &FMI_CYCLES; /* Cycles F-Curve Modifier */ - fmodifiersTypeInfo[4]= NULL/*&FMI_NOISE*/; /* Apply-Noise F-Curve Modifier */ // XXX unimplemented + fmodifiersTypeInfo[4]= &FMI_NOISE; /* Apply-Noise F-Curve Modifier */ fmodifiersTypeInfo[5]= NULL/*&FMI_FILTER*/; /* Filter F-Curve Modifier */ // XXX unimplemented fmodifiersTypeInfo[6]= &FMI_PYTHON; /* Custom Python F-Curve Modifier */ fmodifiersTypeInfo[7]= &FMI_LIMITS; /* Limits F-Curve Modifier */ diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index 357079a2c3c..9c7c3c3e812 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -460,7 +460,7 @@ static void draw_modifier__generator(uiBlock *block, FCurve *fcu, FModifier *fcm /* closing bracket and '+' sign */ if ( (i != (data->poly_order - 1)) || ((i==0) && data->poly_order==2) ) - uiDefBut(block, LABEL, 1, ") ×", 280, cy, 30, 20, NULL, 0.0, 0.0, 0, 0, ""); + uiDefBut(block, LABEL, 1, ") â—Š", 280, cy, 30, 20, NULL, 0.0, 0.0, 0, 0, ""); else uiDefBut(block, LABEL, 1, ")", 280, cy, 30, 20, NULL, 0.0, 0.0, 0, 0, ""); @@ -571,6 +571,36 @@ static void draw_modifier__cycles(uiBlock *block, FCurve *fcu, FModifier *fcm, i /* --------------- */ +/* draw settings for noise modifier */ +static void draw_modifier__noise(uiBlock *block, FCurve *fcu, FModifier *fcm, int *yco, short *height, short width, short active, int rb_col) +{ + FMod_Noise *data= (FMod_Noise *)fcm->data; + int cy= (*yco - 30), cy1= (*yco - 50), cy2= (*yco - 70); + char cyc_mode[]="Modification %t|Replace %x0|Add %x1|Subtract %x2|Multiply %x3"; + + /* set the height */ + (*height) = 80; + + /* basic settings (backdrop + some padding) */ + DRAW_BACKDROP((*height)); + + uiDefButS(block, MENU, B_FMODIFIER_REDRAW, cyc_mode, + 3, cy, 150, 20, &data->modification, 0, 0, 0, 0, "Method of modifying the existing F-Curve use before first keyframe"); + + uiDefButF(block, NUM, B_FMODIFIER_REDRAW, "Size:", + 3, cy1, 150, 20, &data->size, 0.000001, 10000.0, 0.01, 3, ""); + uiDefButF(block, NUM, B_FMODIFIER_REDRAW, "Strength:", + 3, cy2, 150, 20, &data->strength, 0.0, 10000.0, 0.01, 3, ""); + + uiDefButF(block, NUM, B_FMODIFIER_REDRAW, "Phase:", + 155, cy1, 150, 20, &data->phase, 0.0, 100000.0, 0.1, 3, ""); + uiDefButS(block, NUM, B_FMODIFIER_REDRAW, "Depth:", + 155, cy2, 150, 20, &data->depth, 0, 128, 1, 3, ""); + +} + +/* --------------- */ + #define BINARYSEARCH_FRAMEEQ_THRESH 0.0001 /* Binary search algorithm for finding where to insert Envelope Data Point. @@ -880,6 +910,10 @@ static void graph_panel_modifier_draw(uiBlock *block, FCurve *fcu, FModifier *fc draw_modifier__limits(block, fcu, fcm, yco, &height, width, active, rb_col); break; + case FMODIFIER_TYPE_NOISE: /* Noise */ + draw_modifier__noise(block, fcu, fcm, yco, &height, width, active, rb_col); + break; + default: /* unknown type */ height= 96; //DRAW_BACKDROP(height); // XXX buggy... diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h index d015d703309..7a2be3ff2a8 100644 --- a/source/blender/makesdna/DNA_anim_types.h +++ b/source/blender/makesdna/DNA_anim_types.h @@ -166,6 +166,26 @@ enum { FCM_LIMIT_YMAX = (1<<3), } eFMod_Limit_Flags; +/* noise modifier data */ +typedef struct FMod_Noise { + float size; + float strength; + float phase; + float pad; + + short depth; + short modification; + +} FMod_Noise; + +/* modification modes */ +enum { + FCM_NOISE_MODIF_REPLACE = 0, /* Modify existing curve, matching it's shape */ + FCM_NOISE_MODIF_ADD, /* Add noise to the curve */ + FCM_NOISE_MODIF_SUBTRACT, /* Subtract noise from the curve */ + FCM_NOISE_MODIF_MULTIPLY, /* Multiply the curve by noise */ +} eFMod_Noise_Modifications; + /* Drivers -------------------------------------- */ /* Driver Target diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index 23557b3aa31..2380d7e29e1 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -118,8 +118,8 @@ StructRNA *rna_FModifierType_refine(struct PointerRNA *ptr) return &RNA_FModifierEnvelope; case FMODIFIER_TYPE_CYCLES: return &RNA_FModifierCycles; - //case FMODIFIER_TYPE_NOISE: - // return &RNA_FModifierNoise; + case FMODIFIER_TYPE_NOISE: + return &RNA_FModifierNoise; //case FMODIFIER_TYPE_FILTER: // return &RNA_FModifierFilter; case FMODIFIER_TYPE_PYTHON: @@ -408,6 +408,47 @@ static void rna_def_fmodifier_limits(BlenderRNA *brna) RNA_def_property_ui_text(prop, "Maximum Y", "Highest Y value to allow."); } +/* --------- */ + +static void rna_def_fmodifier_noise(BlenderRNA *brna) +{ + StructRNA *srna; + PropertyRNA *prop; + + static EnumPropertyItem prop_modification_items[] = { + {FCM_NOISE_MODIF_REPLACE, "REPLACE", "Replace", ""}, + {FCM_NOISE_MODIF_ADD, "ADD", "Add", ""}, + {FCM_NOISE_MODIF_SUBTRACT, "SUBTRACT", "Subtract", ""}, + {FCM_NOISE_MODIF_MULTIPLY, "MULTIPLY", "Multiply", ""}, + {0, NULL, NULL, NULL}}; + + srna= RNA_def_struct(brna, "FModifierNoise", "FModifier"); + RNA_def_struct_ui_text(srna, "Noise F-Curve Modifier", "Gives randomness to the modified F-Curve."); + RNA_def_struct_sdna_from(srna, "FMod_Noise", "data"); + + prop= RNA_def_property(srna, "modification", PROP_ENUM, PROP_NONE); + RNA_def_property_enum_items(prop, prop_modification_items); + RNA_def_property_ui_text(prop, "Modification", "Method of modifying the existing F-Curve."); + + prop= RNA_def_property(srna, "size", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "size"); + RNA_def_property_ui_text(prop, "Size", "Scaling (in time) of the noise"); + + prop= RNA_def_property(srna, "strength", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "strength"); + RNA_def_property_ui_text(prop, "Strength", "Amplitude of the noise - the amount that it modifies the underlying curve"); + + prop= RNA_def_property(srna, "phase", PROP_FLOAT, PROP_NONE); + RNA_def_property_float_sdna(prop, NULL, "phase"); + RNA_def_property_ui_text(prop, "Phase", "A random seed for the noise effect"); + + prop= RNA_def_property(srna, "depth", PROP_INT, PROP_NONE); + RNA_def_property_int_sdna(prop, NULL, "depth"); + RNA_def_property_ui_text(prop, "Depth", "Amount of fine level detail present in the noise"); + +} + + /* --------- */ void rna_def_fmodifier(BlenderRNA *brna) @@ -603,6 +644,7 @@ void RNA_def_fcurve(BlenderRNA *brna) rna_def_fmodifier_cycles(brna); rna_def_fmodifier_python(brna); rna_def_fmodifier_limits(brna); + rna_def_fmodifier_noise(brna); } From 4cf8900c703e236cb67d6220812add28fabca46c Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sat, 2 May 2009 04:51:14 +0000 Subject: [PATCH 34/60] F-Curve Modifiers - Per-Modifier Muting: It is now possible to mute individual modifiers so that they will not contribute to the final result. --- source/blender/blenkernel/intern/fcurve.c | 2 +- .../editors/space_graph/graph_buttons.c | 11 +++-- .../blender/editors/space_graph/graph_draw.c | 41 +++++++++++++++---- source/blender/makesdna/DNA_anim_types.h | 2 + source/blender/makesrna/intern/rna_fcurve.c | 7 +++- 5 files changed, 49 insertions(+), 14 deletions(-) diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index cb54d77f08e..a0e631cfe8f 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -2239,7 +2239,7 @@ float evaluate_fcurve (FCurve *fcu, float evaltime) /* only evaluate if there's a callback for this */ // TODO: implement the 'influence' control feature... if (fmi && fmi->evaluate_modifier) { - if ((fcm->flag & FMODIFIER_FLAG_DISABLED) == 0) + if ((fcm->flag & (FMODIFIER_FLAG_DISABLED|FMODIFIER_FLAG_MUTED)) == 0) fmi->evaluate_modifier(fcu, fcm, &cvalue, evaltime); } } diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index 9c7c3c3e812..ee10e4ef3b3 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -871,17 +871,20 @@ static void graph_panel_modifier_draw(uiBlock *block, FCurve *fcu, FModifier *fc but= uiDefBut(block, ROUNDBOX, B_REDR, "", 0, *yco-2, width, 24, NULL, 5.0, 0.0, 15.0, (float)(rb_col-20), ""); /* expand */ - uiDefIconButBitS(block, ICONTOG, FMODIFIER_FLAG_EXPANDED, B_REDR, ICON_TRIA_RIGHT, 5, *yco-1, 20, 20, &fcm->flag, 0.0, 0.0, 0, 0, "Modifier is expanded"); + uiDefIconButBitS(block, ICONTOG, FMODIFIER_FLAG_EXPANDED, B_REDR, ICON_TRIA_RIGHT, 5, *yco-1, 20, 20, &fcm->flag, 0.0, 0.0, 0, 0, "Modifier is expanded."); /* checkbox for 'active' status (for now) */ - but= uiDefIconButBitS(block, ICONTOG, FMODIFIER_FLAG_ACTIVE, B_REDR, ICON_RADIOBUT_OFF, 25, *yco-1, 20, 20, &fcm->flag, 0.0, 0.0, 0, 0, "Modifier is active one"); + but= uiDefIconButBitS(block, ICONTOG, FMODIFIER_FLAG_ACTIVE, B_REDR, ICON_RADIOBUT_OFF, 25, *yco-1, 20, 20, &fcm->flag, 0.0, 0.0, 0, 0, "Modifier is active one."); uiButSetFunc(but, activate_fmodifier_cb, fcu, fcm); /* name */ if (fmi) - but= uiDefBut(block, LABEL, 1, fmi->name, 10+40, *yco, 240, 20, NULL, 0.0, 0.0, 0, 0, "F-Curve Modifier Type. Click to make modifier active one."); + uiDefBut(block, LABEL, 1, fmi->name, 10+40, *yco, 150, 20, NULL, 0.0, 0.0, 0, 0, "F-Curve Modifier Type. Click to make modifier active one."); else - but= uiDefBut(block, LABEL, 1, "", 10+40, *yco, 240, 20, NULL, 0.0, 0.0, 0, 0, "F-Curve Modifier Type. Click to make modifier active one."); + uiDefBut(block, LABEL, 1, "", 10+40, *yco, 150, 20, NULL, 0.0, 0.0, 0, 0, "F-Curve Modifier Type. Click to make modifier active one."); + + /* 'mute' button */ + uiDefIconButBitS(block, ICONTOG, FMODIFIER_FLAG_MUTED, B_REDR, ICON_MUTE_IPO_OFF, 10+(width-60), *yco-1, 20, 20, &fcm->flag, 0.0, 0.0, 0, 0, "Modifier is temporarily muted (not evaluated)."); /* delete button */ but= uiDefIconBut(block, BUT, B_REDR, ICON_X, 10+(width-30), *yco, 19, 19, NULL, 0.0, 0.0, 0.0, 0.0, "Delete F-Curve Modifier."); diff --git a/source/blender/editors/space_graph/graph_draw.c b/source/blender/editors/space_graph/graph_draw.c index 6f33a5dd682..e3a6d502332 100644 --- a/source/blender/editors/space_graph/graph_draw.c +++ b/source/blender/editors/space_graph/graph_draw.c @@ -775,6 +775,37 @@ void graph_draw_ghost_curves (bAnimContext *ac, SpaceIpo *sipo, ARegion *ar, Vie glDisable(GL_BLEND); } +/* check if any FModifiers to draw controls for - fcm is 'active' modifier */ +static short fcurve_needs_draw_fmodifier_controls (FCurve *fcu, FModifier *fcm) +{ + /* don't draw if there aren't any modifiers at all */ + if (fcu->modifiers.first == NULL) + return 0; + + /* if there's an active modifier - don't draw if it is cycles modifier, since + * that basically still shows the original points + */ + if ((fcm) && (fcm->type == FMODIFIER_TYPE_CYCLES)) + return 0; + + /* if only one modifier - don't draw if it is muted or disabled */ + if (fcu->modifiers.first == fcu->modifiers.last) { + fcm= fcu->modifiers.first; + if (fcm->flag & (FMODIFIER_FLAG_DISABLED|FMODIFIER_FLAG_MUTED)) + return 0; + } + + /* if only active modifier - don't draw if it is muted or disabled */ + if (fcm) { + if (fcm->flag & (FMODIFIER_FLAG_DISABLED|FMODIFIER_FLAG_MUTED)) + return 0; + } + + /* if we're still here, this means that there are modifiers with controls to be drawn */ + // FIXME: what happens if all the modifiers were muted/disabled + return 1; +} + /* This is called twice from space_graph.c -> graph_main_area_draw() * Unselected then selected F-Curves are drawn so that they do not occlude each other. */ @@ -853,14 +884,8 @@ void graph_draw_curves (bAnimContext *ac, SpaceIpo *sipo, ARegion *ar, View2DGri } /* 2) draw handles and vertices as appropriate based on active */ - if ( ((fcm) && (fcm->type != FMODIFIER_TYPE_CYCLES)) || (fcu->modifiers.first && !fcm) ) { - /* draw controls for the 'active' modifier - * - there may not be an 'active' modifier on this curve to draw - * - this curve may not be active, so modifier controls shouldn't get drawn either - * - * NOTE: cycles modifier is currently an exception where the original points can still be edited, so - * this branch is skipped... (TODO: set up the generic system for this so that we don't need special hacks like this) - */ + if (fcurve_needs_draw_fmodifier_controls(fcu, fcm)) { + /* only draw controls if this is the active modifier */ if ((fcu->flag & FCURVE_ACTIVE) && (fcm)) { switch (fcm->type) { case FMODIFIER_TYPE_ENVELOPE: /* envelope */ diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h index 7a2be3ff2a8..eefcf9f9ce5 100644 --- a/source/blender/makesdna/DNA_anim_types.h +++ b/source/blender/makesdna/DNA_anim_types.h @@ -61,6 +61,8 @@ enum { FMODIFIER_FLAG_EXPANDED = (1<<1), /* modifier is active one (in UI) for editing purposes */ FMODIFIER_FLAG_ACTIVE = (1<<2), + /* user wants modifier to be skipped */ + FMODIFIER_FLAG_MUTED = (1<<3), } eFModifier_Flags; /* --- */ diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index 2380d7e29e1..5b8e05f840b 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -491,10 +491,15 @@ void rna_def_fmodifier(BlenderRNA *brna) RNA_def_property_boolean_sdna(prop, NULL, "flag", FMODIFIER_FLAG_EXPANDED); RNA_def_property_ui_text(prop, "Expanded", "F-Curve Modifier's panel is expanded in UI."); + prop= RNA_def_property(srna, "muted", PROP_BOOLEAN, PROP_NONE); + RNA_def_property_clear_flag(prop, PROP_EDITABLE); + RNA_def_property_boolean_sdna(prop, NULL, "flag", FMODIFIER_FLAG_MUTED); + RNA_def_property_ui_text(prop, "Muted", "F-Curve Modifier will not be evaluated."); + // XXX this is really an internal flag, but it may be useful for some tools to be able to access this... prop= RNA_def_property(srna, "disabled", PROP_BOOLEAN, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_boolean_sdna(prop, NULL, "flag", FMODIFIER_FLAG_DISABLED ); + RNA_def_property_boolean_sdna(prop, NULL, "flag", FMODIFIER_FLAG_DISABLED); RNA_def_property_ui_text(prop, "Disabled", "F-Curve Modifier has invalid settings and will not be evaluated."); // TODO: setting this to true must ensure that all others in stack are turned off too... From 99cc61edbcaf339a0ff9aefa932b4520d7dfe1e7 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 3 May 2009 02:27:36 +0000 Subject: [PATCH 35/60] Fix for Bug #18658: | character in buttons allowing text input was being interpreted as the "menu-name | hotkey" delimeter used for menus, giving incorrect results. This commit fixes the issue in 2.5 only. A similar fix will need to be backported/coded for trunk? --- source/blender/editors/interface/interface_widgets.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/blender/editors/interface/interface_widgets.c b/source/blender/editors/interface/interface_widgets.c index f557b2e97a4..8fc1d6aee7f 100644 --- a/source/blender/editors/interface/interface_widgets.c +++ b/source/blender/editors/interface/interface_widgets.c @@ -735,15 +735,17 @@ static void ui_text_leftclip(uiFontStyle *fstyle, uiBut *but, rcti *rect) static void widget_draw_text(uiFontStyle *fstyle, uiBut *but, rcti *rect) { // int transopts; - char *cpoin; + char *cpoin = NULL; // ui_rasterpos_safe(x, y, but->aspect); // if(but->type==IDPOIN) transopts= 0; // no translation, of course! // else transopts= ui_translate_buttons(); - /* cut string in 2 parts */ - cpoin= strchr(but->drawstr, '|'); - if(cpoin) *cpoin= 0; + /* cut string in 2 parts - only for menu entries */ + if(ELEM5(but->type, SLI, NUM, TEX, NUMSLI, NUMABS)==0) { + cpoin= strchr(but->drawstr, '|'); + if(cpoin) *cpoin= 0; + } if(but->editstr || (but->flag & UI_TEXT_LEFT)) fstyle->align= UI_STYLE_TEXT_LEFT; From 2e93dc4037b815a97c9b9d03fe28742e01458e43 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sun, 3 May 2009 13:00:59 +0000 Subject: [PATCH 36/60] F-Curve Modifiers: Time-Modifying F-Modifiers Cleanup Time-Modifying F-Curve Modifiers now get special callbacks to allow them to specify what frame they need to be evaluated on, instead of forcing a re-evaluation of the preceeding curve + modifier-stack. This should be more robust than the old way in general. It still remains to be seen if some tweaks to this are still needed, as the full consequences of the propogation of modified time-spaces have yet to be fully explored. For now though, evaluation works by finding the last modifier on the stack which modifies time, and asks it what time it modifies the given time to. This modified time is used to evaluate the F-Curve data only. The modifier stack gets evaluated using the original time instead. --- source/blender/blenkernel/BKE_fcurve.h | 2 + source/blender/blenkernel/intern/fcurve.c | 151 ++++++++++++-------- source/blender/blenloader/intern/readfile.c | 1 + source/blender/makesdna/DNA_anim_types.h | 1 + 4 files changed, 96 insertions(+), 59 deletions(-) diff --git a/source/blender/blenkernel/BKE_fcurve.h b/source/blender/blenkernel/BKE_fcurve.h index 3dd083476ce..3d33b615809 100644 --- a/source/blender/blenkernel/BKE_fcurve.h +++ b/source/blender/blenkernel/BKE_fcurve.h @@ -68,6 +68,8 @@ typedef struct FModifierTypeInfo { void (*verify_data)(struct FModifier *fcm); /* evaluation */ + /* evaluate time that the modifier requires the F-Curve to be evaluated at */ + float (*evaluate_modifier_time)(struct FCurve *fcu, struct FModifier *fcm, float cvalue, float evaltime); /* evaluate the modifier for the given time and 'accumulated' value */ void (*evaluate_modifier)(struct FCurve *fcu, struct FModifier *fcm, float *cvalue, float evaltime); } FModifierTypeInfo; diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index a0e631cfe8f..3bc80d64329 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -1253,50 +1253,11 @@ static FModifierTypeInfo FMI_MODNAME = { fcm_modname_copy, /* copy data */ fcm_modname_new_data, /* new data */ fcm_modname_verify, /* verify */ + fcm_modname_time, /* evaluate time */ fcm_modname_evaluate /* evaluate */ }; #endif -/* Utilities For F-Curve Modifiers ---------------------- */ - -/* Recalculate the F-Curve at evaltime, as modified by the given F-Curve - * - * While this may sound wrong (and be potentially very slow), it is invalid for F-Curve modifiers to actually - * modify the evaltime in such a way that those after it will end up evaluating in the wrong time space. - */ -static float fcm_reevaluate_fcurve (FCurve *fcu, FModifier *fcm, float cvalue, float evaltime) -{ - ListBase modifiers = {NULL, NULL}; - float new_value = 0.0f; - - /* sanity checking */ - if ELEM(NULL, fcu, fcm) - return cvalue; - - /* unlink given modifier from previous modifiers, keeping the previous ones on the F-Curve, - * but ones after off the F-Curve (so that we avoid the infinitely re-entrant situation). - */ - modifiers.first= fcm; - modifiers.last= fcu->modifiers.last; - - if (fcm->prev) { - fcm->prev->next= NULL; - fcu->modifiers.last= fcm->prev; - } - else - fcu->modifiers.first= fcu->modifiers.last= NULL; - fcm->prev= NULL; - - /* re-enter the evaluation loop (but without the burden of evaluating any modifiers, so 'should' be relatively quick) */ - new_value= evaluate_fcurve(fcu, evaltime); - - /* restore modifiers (don't assume everything is still ok after being re-entrant) */ - addlisttolist(&fcu->modifiers, &modifiers); - - /* return the new value */ - return new_value; -} - /* Generator F-Curve Modifier --------------------------- */ /* Generators available: @@ -1548,7 +1509,7 @@ static void fcm_generator_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, /* execute function callback to set value if appropriate */ if (fn) { - float value= data->coefficients[0]*fn(arg) + data->coefficients[3]; + float value= (float)(data->coefficients[0]*fn(arg) + data->coefficients[3]); if (data->flag & FCM_GENERATOR_ADDITIVE) *cvalue += value; @@ -1577,6 +1538,7 @@ static FModifierTypeInfo FMI_GENERATOR = { fcm_generator_copy, /* copy data */ fcm_generator_new_data, /* new data */ fcm_generator_verify, /* verify */ + NULL, /* evaluate time */ fcm_generator_evaluate /* evaluate */ }; @@ -1683,6 +1645,7 @@ static FModifierTypeInfo FMI_ENVELOPE = { fcm_envelope_copy, /* copy data */ fcm_envelope_new_data, /* new data */ fcm_envelope_verify, /* verify */ + NULL, /* evaluate time */ fcm_envelope_evaluate /* evaluate */ }; @@ -1698,6 +1661,11 @@ static FModifierTypeInfo FMI_ENVELOPE = { * as appropriate */ +/* temp data used during evaluation */ +typedef struct tFCMED_Cycles { + float cycyofs; /* y-offset to apply */ +} tFCMED_Cycles; + static void fcm_cycles_new_data (void *mdata) { FMod_Cycles *data= (FMod_Cycles *)mdata; @@ -1705,8 +1673,8 @@ static void fcm_cycles_new_data (void *mdata) /* turn on cycles by default */ data->before_mode= data->after_mode= FCM_EXTRAPOLATE_CYCLIC; } - -static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, float evaltime) + +static float fcm_cycles_time (FCurve *fcu, FModifier *fcm, float cvalue, float evaltime) { FMod_Cycles *data= (FMod_Cycles *)fcm->data; float prevkey[2], lastkey[2], cycyofs=0.0f; @@ -1717,7 +1685,7 @@ static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, flo // FIXME... if (fcm->prev) { fcm->flag |= FMODIFIER_FLAG_DISABLED; - return; + return evaltime; } /* calculate new evaltime due to cyclic interpolation */ @@ -1742,7 +1710,7 @@ static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, flo lastkey[1]= lastfpt->vec[1]; } else - return; + return evaltime; /* check if modifier will do anything * 1) if in data range, definitely don't do anything @@ -1763,7 +1731,7 @@ static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, flo } } if ELEM(0, side, mode) - return; + return evaltime; /* find relative place within a cycle */ { @@ -1778,7 +1746,7 @@ static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, flo /* check if cycle is infinitely small, to be point of being impossible to use */ if (cycdx == 0) - return; + return evaltime; /* check that cyclic is still enabled for the specified time */ if (cycles == 0) { @@ -1790,7 +1758,7 @@ static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, flo /* we are too far away from range to evaluate * TODO: but we should still hold last value... */ - return; + return evaltime; } /* check if 'cyclic extrapolation', and thus calculate y-offset for this cycle */ @@ -1804,8 +1772,32 @@ static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, flo if (evaltime < ofs) evaltime += cycdx; } - /* reevaluate F-Curve at the new time that we've decided on */ - *cvalue= fcm_reevaluate_fcurve(fcu, fcm, *cvalue, evaltime) + cycyofs; + /* store temp data if needed */ + if (mode == FCM_EXTRAPOLATE_CYCLIC_OFFSET) { + tFCMED_Cycles *edata; + + /* for now, this is just a float, but we could get more stuff... */ + fcm->edata= edata= MEM_callocN(sizeof(tFCMED_Cycles), "tFCMED_Cycles"); + edata->cycyofs= cycyofs; + } + + /* return the new frame to evaluate */ + return evaltime; +} + +static void fcm_cycles_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, float evaltime) +{ + tFCMED_Cycles *edata= (tFCMED_Cycles *)fcm->edata; + + /* use temp data */ + if (edata) { + /* add cyclic offset - no need to check for now, otherwise the data wouldn't exist! */ + *cvalue += edata->cycyofs; + + /* free temp data */ + MEM_freeN(edata); + fcm->edata= NULL; + } } static FModifierTypeInfo FMI_CYCLES = { @@ -1819,6 +1811,7 @@ static FModifierTypeInfo FMI_CYCLES = { NULL, /* copy data */ fcm_cycles_new_data, /* new data */ NULL /*fcm_cycles_verify*/, /* verify */ + fcm_cycles_time, /* evaluate time */ fcm_cycles_evaluate /* evaluate */ }; @@ -1871,6 +1864,7 @@ static FModifierTypeInfo FMI_NOISE = { NULL, /* copy data */ fcm_noise_new_data, /* new data */ NULL /*fcm_noise_verify*/, /* verify */ + NULL, /* evaluate time */ fcm_noise_evaluate /* evaluate */ }; @@ -1888,6 +1882,7 @@ static FModifierTypeInfo FMI_FILTER = { NULL, /* copy data */ NULL, /* new data */ NULL /*fcm_filter_verify*/, /* verify */ + NULL, /* evlauate time */ fcm_filter_evaluate /* evaluate */ }; #endif // XXX not yet implemented @@ -1943,21 +1938,30 @@ static FModifierTypeInfo FMI_PYTHON = { fcm_python_copy, /* copy data */ fcm_python_new_data, /* new data */ NULL /*fcm_python_verify*/, /* verify */ + NULL /*fcm_python_time*/, /* evaluate time */ fcm_python_evaluate /* evaluate */ }; /* Limits F-Curve Modifier --------------------------- */ -static void fcm_limits_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, float evaltime) +static float fcm_limits_time (FCurve *fcu, FModifier *fcm, float cvalue, float evaltime) { FMod_Limits *data= (FMod_Limits *)fcm->data; - /* time limits first */ + /* check for the time limits */ if ((data->flag & FCM_LIMIT_XMIN) && (evaltime < data->rect.xmin)) - *cvalue= fcm_reevaluate_fcurve(fcu, fcm, *cvalue, data->rect.xmin); + return data->rect.xmin; if ((data->flag & FCM_LIMIT_XMAX) && (evaltime > data->rect.xmax)) - *cvalue= fcm_reevaluate_fcurve(fcu, fcm, *cvalue, data->rect.xmax); + return data->rect.xmax; + + /* modifier doesn't change time */ + return evaltime; +} + +static void fcm_limits_evaluate (FCurve *fcu, FModifier *fcm, float *cvalue, float evaltime) +{ + FMod_Limits *data= (FMod_Limits *)fcm->data; /* value limits now */ if ((data->flag & FCM_LIMIT_YMIN) && (*cvalue < data->rect.ymin)) @@ -1976,7 +1980,8 @@ static FModifierTypeInfo FMI_LIMITS = { NULL, /* free data */ NULL, /* copy data */ NULL, /* new data */ - NULL /*fcm_python_verify*/, /* verify */ + NULL, /* verify */ + fcm_limits_time, /* evaluate time */ fcm_limits_evaluate /* evaluate */ }; @@ -2216,9 +2221,11 @@ void fcurve_set_active_modifier (FCurve *fcu, FModifier *fcm) float evaluate_fcurve (FCurve *fcu, float evaltime) { FModifier *fcm; - float cvalue = 0.0f; + float cvalue= 0.0f; + float devaltime; /* if there is a driver (only if this F-Curve is acting as 'driver'), evaluate it to find value to use as "evaltime" + * since drivers essentially act as alternative input (i.e. in place of 'time') for F-Curves * - this value will also be returned as the value of the 'curve', if there are no keyframes */ if (fcu->driver) { @@ -2226,11 +2233,37 @@ float evaluate_fcurve (FCurve *fcu, float evaltime) evaltime= cvalue= evaluate_driver(fcu->driver, evaltime); } - /* evaluate curve-data */ + /* evaluate time modifications imposed by some F-Curve Modifiers + * - this step acts as an optimisation to prevent the F-Curve stack being evaluated + * several times by modifiers requesting the time be modified, as the final result + * would have required using the modified time + * - modifiers only ever recieve the unmodified time, as subsequent modifiers should be + * working on the 'global' result of the modified curve, not some localised segment, + * so nevaltime gets set to whatever the last time-modifying modifier likes... + * - we start from the end of the stack, as only the last one matters for now + */ + devaltime= evaltime; + + for (fcm= fcu->modifiers.last; fcm; fcm= fcm->prev) { + FModifierTypeInfo *fmi= fmodifier_get_typeinfo(fcm); + + /* only evaluate if there's a callback for this */ + // TODO: implement the 'influence' control feature... + if (fmi && fmi->evaluate_modifier_time) { + if ((fcm->flag & (FMODIFIER_FLAG_DISABLED|FMODIFIER_FLAG_MUTED)) == 0) + devaltime= fmi->evaluate_modifier_time(fcu, fcm, cvalue, evaltime); + break; + } + } + + /* evaluate curve-data + * - 'devaltime' instead of 'evaltime', as this is the time that the last time-modifying + * F-Curve modifier on the stack requested the curve to be evaluated at + */ if (fcu->bezt) - cvalue= fcurve_eval_keyframes(fcu, fcu->bezt, evaltime); + cvalue= fcurve_eval_keyframes(fcu, fcu->bezt, devaltime); else if (fcu->fpt) - cvalue= fcurve_eval_samples(fcu, fcu->fpt, evaltime); + cvalue= fcurve_eval_samples(fcu, fcu->fpt, devaltime); /* evaluate modifiers */ for (fcm= fcu->modifiers.first; fcm; fcm= fcm->next) { diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 40a03bfdbbe..450161854ec 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -1723,6 +1723,7 @@ static void direct_link_fcurves(FileData *fd, ListBase *list) for (fcm= fcu->modifiers.first; fcm; fcm= fcm->next) { /* relink general data */ fcm->data = newdataadr(fd, fcm->data); + fcm->edata= NULL; /* do relinking of data for specific types */ switch (fcm->type) { diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h index eefcf9f9ce5..755569fe0cb 100644 --- a/source/blender/makesdna/DNA_anim_types.h +++ b/source/blender/makesdna/DNA_anim_types.h @@ -28,6 +28,7 @@ typedef struct FModifier { struct FModifier *next, *prev; void *data; /* pointer to modifier data */ + void *edata; /* pointer to temporary data used during evaluation */ char name[64]; /* user-defined description for the modifier */ short type; /* type of f-curve modifier */ From 387df32933996850145487ddba07a3bd3c25d627 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Mon, 4 May 2009 07:04:48 +0000 Subject: [PATCH 37/60] * Icon updates and fixes * Made the buttons space listen to and update for new active objects * Cleaned up the Add Object menu --- release/datafiles/blenderbuttons | Bin 143029 -> 143645 bytes .../editors/datafiles/blenderbuttons.c | 8961 +++++++++-------- source/blender/editors/include/UI_resources.h | 14 +- .../editors/interface/interface_utils.c | 8 +- source/blender/editors/object/object_edit.c | 12 +- .../editors/space_buttons/buttons_header.c | 20 +- .../editors/space_buttons/space_buttons.c | 1 + .../blender/editors/space_outliner/outliner.c | 4 +- 8 files changed, 4522 insertions(+), 4498 deletions(-) diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons index e33602d9e8a00c3c892ff8915aa6af7785c3e52a..8b6e6f24b2325484d34d7bd2771e6a9e0623e4b6 100644 GIT binary patch literal 143645 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%0DUvG&#V4hM9vZIY5xQ?I`; zR|f_%j_sszyKZ*pW9DTE`Tudez`T%w+HCp8w)y=PNhIFH%J8&oM}k9tnW`C^HCiU&NgE4{G*mKvQun3M^`=e ziFo!Am#$%(D?Nvu5?U!(C_4{HMHA*cp8MxgUG2H)pZmy9iym50cpL}f6-mA3gf0!; zwHC{ynNit}9kDe$sbY(6<25G_o|I1q4;bPMp@xI?XOV||T3&Gkp04h>Tmr2hW_sqf zOq8-pyieRAx@{M|`2rs%5g}iW4#PtQwdG-8grW4G8=rJA*^mWpP0twD(q_pQT@w(# z#~{>9-`ZHi3)9FF3TVgZ5rg}>BXkt zb4$XG$}2F(Jspkj#Ra9&(YpCnCN9l`lT8mtmNCw>6WJ9WeQ%5BT+nB-D-H7G+Si7{ zSzPyIX*q)W_nlR|x`WWqd2*|He6ArPTg(3F=k9y9ZRcM1mwRmB0DWKnWu@}SRW6e!E?!2XEj?y*M53fBE70G0(b7!l{4)76z;+s zG}maFM=8~VkkQM)+WL8PK+nL&b^otzaCf>RBUPL3fK2_F^j)PQ)>aPUk%)$$&CSKOvXJJ3Pg27j%OIf7Yk8kRP}+ zns~FS97jY`$qfH4kgZW z?N=F1-9|e8Ok>1mMUvh$T;Di)XR*vEvcJD9=yIk&rfdBBl#!0akkDJ`rTq15g_EY5 z(Yg0=zd!LxSrV1(z}UKiFqC4|l*AC7m}L|J^&5WS`L_41E)Hh4Wp2|4mi8VQJ>A3+ za+3J-w7=+_Y!=3Ue&CTZH#DrMSXrsJGjakp(&9Ey8b)qwd-7*_dHD)BQ#yg`a%Cg9 z2Bk|Nqoy++twrNvR6bo=rds;Tof$lR4?# zA8v^tUXDOv7`#iB%YwG;nM-fNj!!R{bnSVYp}Yl`C@x8%UMWD4;1v15mm4q}hfnAi z8-hdU$}b_?d=-vCl#OJfK}uhN4oA-y=IB5oX5?DY{cVl zy_(*514O)_II&X6!T8VsG<4EBiD13=H0>?KFpB=u!hxY!u5dm2u+%Od7EOn@4F_!7 zC9{_%UIz2wNq-qmYyS%KiN7MwOI|Z|(s5~;L7-?hh;!QR3L5Y>dhLMr`V^(W$O=CG zk32!oy3s)bQ;2)|2l9)x%mv%7KAb$hftXoWFSnQdx!Gm^-j3x0S)+|68a%T+bqbIy z4X7w4EVo{W@&o{tir&405j!4gggj*X)6LhXmTZHM&!IIZMXV@wNCA~{DV%6VH=!OC0`j#kg@~ z2=1{^0>)MKY@&&)#X0{qK{z8i{--Qs@y{QRuT>DV zpUv@5{Lz9cab@2_WQajA9V=Ai6UKBUoT1@Hvs^lV-Ti&!Lb&zggY=Ng*VCqy91ecE zPw9Ei`1)41M=K!dWk*EAV`y#i8YTdb=a@|^TPuEESBqP@Jt{EQw6%QrEJ!o4v0N1T4 z{Xm>dHh-pK#p9&26b);GsAfnY>i&#<*DX@Uz%ojCAadS^a(AoNaEb@t zT*qF8+r=D|F~by4WAQno=+4Rs>$3c#U1@UzG9uz%E3lNl>r#HneqVa>ML|fkAilwE zPLA?w`BgI~rU02Qv{jww4+K;K-mX$1w4RGN-Vi(@KTjfbuX8m{vg5qcKOL);1s!e*$w)BT%g14|q$OAQ5ExugpXNn9ZC$%B&Zf33pO$A07u>tnf4uu?iGE){emlWEugMsLRdLGAZyk&K|HCgb7 zSZKPvQoit&yu~FcDed2p?uhqof{DbQEQW)Wn}t596>y{b4pZ~w#87dTd}0pYL{)up zz&_Btn$h?T|E&l7Hx?4)0!V;-roVp|Ed(7Awg)%`XBAv8ctv$^d45-;rd;d!UX$t8 z+q+@Dtk*nTwf?Ll*nkhxf5CKCpPvp4m4+rVf#7k$A?Dg^AY`<{ct5&c{D9Mw`LT(G z5fbR}lgAlet#nB{_3U&ss%|b(SP-8_iA_mDgx9>rGMmSPP#szRcAoR_$;x8xp%VK` z(K|m;L^9K;XDzSAdi!$!7N*zfEy31=ZGk_$ad}&=D72y7yK;1SLa-jhSa`j<>@r4n z3GuM}LZo)Sr>C4#0E6(p{~yd4B! zNzWHk%tNjy5dH8tK%JeMgBXouGcl{dY$3i$y1z&-a};vd(lqq(z0G~tg^sfPpcZ@BE0{idxj6u->g14>pLYoy*?Mz z)%CsnQISz54EJoIn+?SI=xg7zda+Gb|8eO={|V_bB0Sn!5GXUH^rj8Jmk zqwesDh?NWt-<2wVAnVHAfP9OBLmVc-q)1XO-Yci_w~`F4ZD--UEaDw7a_zA}je?B8 z2%~!&aJymq7-yrZYUI&7j6~iCNQ%ZPEzFF>rAKC|yYJ&Payt9O$dR&C^rp>f|KxM8 zUmcIP>IoQA;bH9W?@uS0!V+hOV+ACI;9n2G^HDlR6^zl+4DKMGr!rzM_!_=8x- zsD0mM`zsE*7>ZH-G{CUIs*22l)Tg6e@|HL6)`Ul*uY``}dA^iB^)(ViDH+nHEg_=o z^vx7471KK|xd;=jM-B!C<{UT@6Buy90kq3fsomDNl)mg|odYD{<9+qqnlBgHE;0BMIE55=d25=Oz)@EkTO}~Eq>H;+g$N&Q`3V>fIK9u); zm}?D259wx_E?ayis^0U4 z?DgBnBgH(G<+yJv79rybU*pDuYnt&e8`4I)V@8>=wsR<$)*8le9ox8(Jy`6T^T9wV z-#1rZ16e=~PAr<}VDETst1lsn{L)TAndq$Ug1F9Q3XPB`KcG zP3+F@PMp?AKltR?sSMSmYsT!_9d0SQNll!&Kut>1->1AXp*sbV<%bzEAjl~XExc*S zzoK|kJ>0^!^SdaVNTc;Dy_{5!#K;6Gg&w%?Iatr7P!j@?NEl75c)2N>{?D3z?C@#J9Yj4;M=U?{TpSVQ<&W--dC( zhXm#h9cQI1ty~7hBB}}p;fPv-laQu7vbMJ-BzNA2Hy3B9g{i3NCB~Bf+LplVpepQL!qg=TH;wE3iH=l^o&CL~Kh8MAQ68!N7+B*1G{kmFWn&xtcsp#VP8oq0>&74j8SB*2ahsq$gu3~!fZbEr@^5iX-pf@KM&B<68-dIma;60l~bep8ujyiF-fP;-wHl- zsPiSan3)Bgi&eo2Fes6b!1#3L1RI&u>fVs>H#g-y_?%?{&>psp`t_az1SVoiMoLNv z^e^ZFM9m?;^RYGu~97#$N)qJ^5*LMYz2 zl(ny+e2~s0G0PH+IG+_q{;c1kX+<*;&9yDzM)7TzN%FJS^@q&<2v6l!*<6OpC0ZFE zWNh)B&OwUWM`Z*{H28}g?)br-hRC9UU=zzip_tPLdUW4>u9#dUbthyq?5+}90j z!6dqK*JGy&=_>fVW-m@kEuN2GuMEf&yg81Y?A#6oBSWXmtrhwy1zsSt3mRk`RIjYv z9R(9*)4skOGcl%IY+=)K5EX^bKU)OA8g+7C;m}TL7VGgNWal%AUDWcyq8)1!!sz=} zxK8h?S6dsyL=HnrqIzsAc%StyU{769G3DEGT)Fgei|)BcXbL{w!8x|+Jbo+#MI&PA z1bYnx#+yaolk?xPsJRjtZx?`Fl}InOZ!ZPMv3H_Yj;PXm6bP&|Q|c$yD^8tbF{;)& zkF|d%|9{${o@Fs!NIyQ~bjUmPS}#5=5B6VbFiH)upXHF-%@Bc1uSAHO^f`>hYtdX? zBV|q0lx3PYqO;|1zP<{_!1WD}+~uA5S8o=I82#P?^^gGG(@dewn(+PV?wxtRN9~Up z@0lgzAj-D-LUcW`cWmWm2R9$=*j`~#DRDfW9Y{+5Y(>PsBY88Vzb+eWk3abV*Zy0A=fyE!{dzf1Awxb?!ol)j9)G+_!NsCfIWT#))#4Kw z+yehm$J)Uk;#W$9B+eC`m*$!ogqPUH(0R4PZVYvKY*iaM19~J^ zstVsL68YO>uAnjist6vWR9 z_TZX2|HcEz8^BEE{0lDg5~Eqx5D;-Y{8kzIvEYhk{;a!_%e3Isb@!vKQZ34QuSmMA z2SZ(8AeAj<C>3y z)XW8srut;n0MH8%ASP~;(bU(=az77#HjdUilFV|uI+R#=fsD-r=mj7Fbq;V>M+=GX zKx-5^3yWPw1&AliJ6f_Ryc-Qv|BT;uf6ZEb`rhK{aHWLmr_TPWMjeooydD<3UY+ zqd}O_hRKKmOPBOF4UuZLxEVO%!Kj2sQ?;Hn0U3OeD_%=2CA3d{bViPV()q#~HoDYx z@ID*yVEUqXQa?GFgVh@A?e?3Df*w#uARm`_A1|i#JHW?=_u@c~0zN9)YM%E4;x;mV zF_ZMygKcb&7X9ge_bMAJdE`E>)Z=3SvE#niv1S{TjZRZU(r*N`lg0Y+_O3R3pneF@ zczF$&8ynX!sK~>}Ji1KgjJtpCtKE(~2z}N>Lb~KGG3X5{n;3{DFP5&WCv|?wwYq6L zoGZYlvqENMQz>h^`5H^H{cNPF7U%rS)Qnn&kjKWan(~Ozysz7`FeQDZ2Y&4r$@U1P z^G4X$7gw*(Rr&=TZ%|y(+Z?FjQ zBo1z#RA)v-QgDKF9g^_wRZ+6__ZlvrSuC9v>VI2h2Gk9v`j95Xt`bF~AD47KUrLT=QpZZ|=Q6 z8A#3wTmCVAlOoB^UY1NhWVOIiwujI0@mnqiBUBepi^-65UzY<*seo(`Ldnm}!IAEu z6IEQCgK8btV?x_fNPGJ)tCMJ&6=z5L8J!SDiN8ww^i1X3o_SKXL{CmWx;G9f1wRCe zW~|h}78pm(10z4H!RjUGH4v>5%m{5PKM_d-(~I#p*l>+FliB|_B)Jp zOZEEsLr425V9d}4G+_|??&$1sE#uam)&@#uiyI0< zlMfTUtL4D_d0J?eX3mTUQcHy`zC}|hjAEn}`vUqgw|}k{#j}E^@uOk zhAqnR#_U4Rrcj3sX~DA_5Evc6bxz-+pb&qRo0qe!B(I)~3^X0|7hW93DgLrKPk4MC ze!QXgo*ru`upXo1ggMIO^wl*r9R2!xsPLCZlc+=fgqbr*@erS?g}jbVkr3dc*y!1s z;@PjmbKmcH`g=pN9ECSYB~PF~B8Q=hF)bjChyi6Tg}4VH{i#^UwmXLl#_xu&;5i!> z8%&`{VFfvTw7|sX6XiFpjBEXJ!T<^BoXXpnYnZqGsa$LaOLZh7!WhFp`9mFx5|5aq zUD=z(hK$6V%*zTJXy1<%)6$>I%6>`t<7az}DNVhW|#P`lZW>bc`Y z!Z=+6tkC`m=_)1QU!x`on$xsVj|As2JIukk5(7Y zaW(sdrw{MS?O;CUW~q^@n!K1{n@ipg;%u$YJq`5W%Uzf%dzMV}0qBX|>!C!Pl$jy6 z0nEfS{Z%Ma*X{Qd*cuvhcm~U43(1@O~~>qvszkDbReoGo^MWUtt%=W!R}%Pl|g~Z^d+P9Ds^rR|NNtQ)(?j^Gxo6d+pBViL#Gr^ z${_K9uO*hN5ZnY(Mb;nOF3r~l?L6huQQNSu4)$R9D(z9UK`wq%(N4HLxCcYPdEpii zN6LX+)e>@3Bn7Ah_X&Vx;JMT&gXcBh*ra8=nQg-&m%X;GNn&%wmr1$(!F}xwa^*xV z-jCsPKo%SQmxCP!6p0>CG#X#mp?^EHvLf&sgdgbumq41G`UGPk*cdXa3(9O-jjfM& zAPEhV1^ySfWvlxnGhTn=rjiA|jP_C-Xd;PSTPh@)S&?;>W~iRO7Vj>J8W?{<)&I_7 zqAcd*i<9Z4I(k5d8s|p_i%i!BKrG*>^(ct>od$RDUc{g<5nd57p?)p%2O$gyVzIP| zgsf~w?uys+4kh2SZ?6&V*2Y z87~kV^>z_usf%E>GZN3-;a}^83C+wbgFqPniJl%?X_;E9B28E-VWM~DBV}com7*j^ zK+F$F3e>JB;zv=sSM(&V(4**rFc3A`+zPR+w2o3OE*njYE5>&^O$Q6_*dcMbfSgLr zX|t^E@v@wTEoyO%LZ7-=Te)FzNZT1!8*iaVP|8(taYwd(9;jj1OM2^&HpjMiY|D4_ z#N9E^ht=ndwsuX@6ty&YkT0c9-AcP*_q}4r9p5nYi-$k8b<8RG>yd1dFG?n&G^w)> zU!)`>NH(@{!v<(>q<;_UtElaih`I^{=tbehRG)A)`3c9zjhMw55|0P;C+S7V&_qT| z&NtTW@|a&9W*4JbIrom``7 zsCHlpgn|IJhQrgnr)7yMA#mWj3?zw`##_j#e!25%a28hVm%o7@(m$HUx;`F?(fQp| zlmFQT#}y}<{Q4!Uzg$c4$0a;0>?8&vEFW#I?ze`;NJaYfi@PU8vN6DK9UmDv`C@FG zGiDXk6KJb2^NO&RQWSATIC zPTs$qPd{zR`C7gtjZxfmpvQuMcA~fJgrFn=yj1=d2~M$W2fiK)#a{Ro{-h7423@P8 zWY*j_X3_!Qe)8W^M7B74kz^2<(oGl{u3SEjo3oeUF&Jg3L1GNzah)!eZ%0?;wAJTx zKS>pxwBDl+aJ>x*l}7C+7;V!@LnA&qp6u$8U3XaZSnnB86-dfcw#+Wnx+!(=$}9>% zM}zPok}*O)`jA5cb6>p)rp*=Q=*w3fS$EZBdHvEz;#`*2lPxZXOf1T;DR=7t?4imf zcM_b$9hJ`-^{|5=y=Jum#}-IQe8LhKKh%RPpL zk|$};m(h~h6#o(>c*MzG*LATqa0@pC$9z{+bVE!fjP%V>W@cL<0JF5AQ|s+$g~7_J z+wq%aV+++lmlI~Zl9Tnm@-+-BI`Zw*^jM~+rtnB5t+Iu}?@8dE$16x~aKXd(KS+$) za2=e0ZqfB7#%eQF-+DT~?`~8PQ|~A;vdC<|_-QB+=t0@$QaH08ZpGKa*@Ys(0vZUh$}f#ckPS{WEvjx9-Ua(Ga>9w)-mlw- zYmtYM7r_rxf3)M9d@Z1~DFS$tIIL95L4nEA&yV($p!vrSw~Ymp!omuzq(R z{4sB1qN|NxQRyjXq0ObafKb^PkN;2SO{=% zDjziE8FAD;wyEv~dQl*uEV!*7=4STF>FLh%=H$kU93rZrFx7hDe^@&_ia6kFYrcJ| z+FW;!8($}wp2!b~;f1u&<_cg4i$S@-t_np)Lc)c}$Yh)`gm0Bc-nEgh9=(%wjZ-K5 zq>wIVlZVG)8e!&nBOs2!`MaonHIsr*=fJgfar;Q|3I}}!x-^6UCM+Vi|ztlmrMH5czkI0??0SyyO)x z0E}i;!u7ozJIr$&wrB#<{c8vye_GE!ebNI1{Qm0~?*@{qgWl|iYy9UZ)^C>QLZ!0# zTnz5-K^yKH+Y_#r{QWm(<h@MOpBCBK}t#lE2Iot@yh`=HzWiRv5XcvD+K(J z5O+iKn+$kO7L$HRovK?mGI;ka;R=)Y1v(+x*=r`Ap{c6sCfz>or+fMYtiKA0VJ0Fh zEbOyQF^d{Bv^Ui>K~diEds4yEQAGw08y{63z_Sp+v?=F;lMzxH#bW>O?Qv!Ni^Rj{ z&r-bC1kF5#Km7w6*<2A1v^ALdtb`rZ`?$eOv_Bz7ukwAy%)Q5buaTdaMNE zoEIR#@)erN6_9v)zd%3(g&HDR3H^n4uRil*41g@1<3$ldF@sKQfs@0-w~AnYuwu+= zjZmIR*Hx!NuR`l{#yb*@A9N?0J*NG@5GA+8Uxdhv2|JncM6y*!d;t?ND)$*cD_6Zc z^b3>=KSTJ7i%)R@8SKhC(9ShZ@+kAfOP0je-33`j_LxP3aOwPrY{^*mz(C{*#6 z(uIYC<6Gcob-Q0U8NNDquy@w~I9;r2R-o$roG}bYA9_?&R7Vx8FR<+*73z=8fMr+S zp)X;q;S?-Exeq3$;~^dX2n(R8YCt{V6{tNNC*F;kwG znI=xRED^(xUxtNArOkj9A3szC{(DIB5?GjCySlp4e29AB28@icq9RP;Q_xvc1E@v! z69Hc}OH@H`U5q$CBKY5*oYC_>!o$H4bKoXo#6bc4xMYCiUa-nZrrJ6Y&7@olGdD-#E1wNgPsj)F7SBx5b`!S$o))KQC zhZI*=Pm1MFZ~*k>zyqMoT!VUn$`Y-*SO900m$U}3^<7X5@d`wRQjztojRskJ?P3et zaR(|Z`|ZaT19q|O?Css*+P@{3=m|LPD^o%)kC(KNNvFrgDpKc+$)h(6@p)YkAs*Sv z^xh*wLswL=MyYsnZ_xj}P^V#LA%dX75JH=B>YkHlm&{@WAJ>o2)MIR7LPotknZ3E^ z+wTBAr!3HhyILQPo1THm>jbnz^iJNGNERfZpMN$nhGk9W-5TOri70twGzaXiTF~%5 zg&`aZ0f7hiFcE1;iMrALk312!K~wv$>gsrO3=IB##=@4C^Z+0SPQgOpim};!096fT zLmm%A(d&M~ExFZ`UqtW)JSv> z5(2E5pq7@F6u>^8{vove)!h6RFmEjvK;h#Bps&XtfSw)2y@LKecGpLee7p@R+JN(u5S>4Oe7zS1J z-2ckKb;0-C^*C965)ab`{vGgwFABQ_0AmqA?}QR;#>Q4264k5$%v^>bvL8rfpsx8x zGbnDIH)ZD%6{-G=6PhF_Nrz}KeZiYwB2!h0tU&!^1PYR?n7h>G-DU#ff$9z4azTlm ztCR};6kep*4-GYLhLw?<^Yd>{$4w`iEx@N&VOirw4FN2!V))S@^jKvhP>D1hrz z+mtU9l9DcIkS=KfX;4a$Zji2hxcB>ZcV>5I_6*~_cdndx&-;J!7bG&-!|@<|ZCn3( zT@4=(4+(CV^UJgCFYX5{puI^NXM#sb8LlXDasy5d6B{(U76tXHEC+dvDL5pvp#Ru1 zGD1MnMGI^i6BCotiVDBzXaa6B?8B`YqyAcMJ+^qC2~c)@0hTc8b+xsvX5396a1{Z+ zh(Lgh>|~s>`wDy{@yCyS>(bL{gxT1(!r@>ihx1E{h=@ozIyiX1DIo_D{4q^0tjh~jR<>+M`JTH!mq9kg2cte z6+mIRF)=EtJbg(7Qc52b-C$zmKMIz^Y5jeD+QZ#`A`!UdWC(6D1<(&a6G#>Da-Rhn zNG$wftODE|QG}5cAiwEl-T$`g7dVW5E{;(1`nxtJ7n7PgE1RLzz+pLl|J{^TfMn(q zNlCPjkdPJ*EPQ-?SFvs#)<3=SM4>|iiYBB24L&d+`OLudQYVpjXtRA`JGT?B#XqFk z-QL0BCcG7K85v9=A)!*!elk}#w)&PE5o@&5gzqdlSY<9EtMZSDpA7qGj~r ze-Vaukdp>9Ji&M(Eqx30)hr*xC<7DK;A;@xG1w8+& zC5K5GMa9QYtiw2Kb`Na0>Kl$`JwUHvfzOTtJ$1QtUkC(^K{*AC3ggGP)vzr_#s%xw(wvMVgre!4l+2D@B%S&dWfR zBiaH7`T9q5o&=CKH?Q*BbQ@ebPvEuHnD2x{K1}>J)ZU)y3SvP=loS+ED$2@_ncsmf zU2ktMSR=Ji3%gf#Ll}4^UT0cy;^3~OWmZEq6Vu!^+w^d6infuIvpp-zMCZ`XvFdDL zdJ4Z{%CnX>1#Z4OaV9#<*;Ft(uyb*dGBBWp1NF_cLMC@)>T6e5yBT*I{0t4@fePaH z^7|g;YzlEEjQCnP_Nec3c(43GiAAioRjc`d^NT0&>O? zus=9m9Ua(imnX}31O)pxeKip@@qK##{5LUiAcUEA5HUF7q~u8HQN?R1D=RZso#T`> zS27u)Vak5;+Pb3iC8WBoSug-h21zT0jg^%k$a`lXvgq+1#PzF;d!o3erl!D`I2u0R zEVw`X20`R4P|qYMALb>&ntPyKUV5acUHz^K>y|yg>)%nrM~|eQK7Rb6;Y(ik7n=iF zdpEa}Bka|cgVPzfIB=mz!!Xfy zH1bi+9kKoiwF4KJ@kZSy<7S$in5emn2&3SCIN92Y1UlE8>rQpn5v1)_$#G4C0IkJ-s>hhg@8@lHJ2XLqh{yHh;W6gpHhjna0jW#UKc~?^ndc#OT30 zn#3eva0MyLUnwrL&qui(s}gqY!E~PX<~vG_xOXqv;3u%L@h%u6M8?GhgWD1ev;icD{~zM9lft`>0^|ovz6h)&N=4%kNw z=PFWn8$Vn*aKA%HXaFS|n2+EhAR9C!J+f_zHXyMEH#|%13$!l#yFg=QtJb)$QErSW z0!|5F+N=Z;zl)KGCTrPQIP#25d%dg#5O~9fhm}8qK>*-?+rfh>26W_72q`JCLDn1+ zv!BV70I}632=QsquD&l5t&1XTO(P_8gdqx}=) z*LXB|ehOMP9sd0r6WsCpX`}l=(g+;B=l1rTu1$s*jQ|bcwV5U%0jZDK!9m*x*-lSP zO>+i*P%pW89}S9L3FU#;X*C?=+sKI8mo}#-%W1EL2DfdjB&kyW4oyrv(xS(2eCV|D zeMMc*ix3=O+JKR}$O1Z#2nygY9!G4z;s+a# z4G`tu*N$-DAXFAvyWl4f$3pXRg|`P#%nk?4_~~v&^vvewE4%j#(+UjH9esUr4&b#1 z-+*e^Wtgu#1J}vvY23B*HhBfe0QCH{ZJyEp0g{LG5csGG$jCw*mj`}GJ%bw;+gz;I@m`tjp46~99kHyDgVPRyE_L*FXO`3rL}3z9xYO#-A0 zNNkK}rb8?c<)Ffqi_K_(WdLP6*T=Y^vWXe7QYq+Ci+on~sG7Y_;Lf1*_{p!*VY-)xCEYLWet9OJwJtWE0KA;^N}41-^~RG8DK%B~Z|tc(}Q3x&tk5 z&V1<8(-ycHhh^pDL?KZ#W51kkkj<7Ab^n`p1+5)ztn70Q4GgHdJx^D2N3D3b@7TNn zAxmWB2;)+O=QV+xd2s)DDcKg6oZJ%15Uq4o7InzGySIq$yA}eWoRv{NL7yCYTPT%+ zpi!*HZAl{Q%$*&phFHmNSvB>B$J81prq7z~k$w)<_ac*rea=uM)B~E(yw+`>0R(ji z;rS>LJNasbW7?S~e6AYNCR3E~HF!EgKM@6)24qXG8zg86V0CHyT3}|Y(_)++f}m5V zzR&s2CQCxUq;dWT0^xSjkvI5qET@MSuhu@6)4iFEqFS0^U#?r6-z9ae&G@7jo(B#DvQnxVT1NYXY+}Gb8y*KGg>&&UYU~ zZ9PWiy}(1KdtiVU()5KXZ*tA(Ba0$hstKkxkZtSN0A0>22!>a1{AA(1JqPs~OqMyKPO{QX=wDXN?u)Amon9;HLQfA8sIE9|_s*O+8;?KE>-R7X&$e-psvyhG;0v1^Bv; zR`MeKQZa8TAt9oaxw~1JM1GJsq9VXcQ4#@q3jEiaD1s~sim$H(5t3k9h>U=1k-Q0C z@T)S7k5eDEK-as54Xi+{AY<8rv~+On>NC(QU*{p~pM(sVMrQe09zw1ecR58@aK9-R zPojKWm%V}NKp&5Iw({#$kTry=mg1K)E!0;u`Vaot3mr@_+n8YN{<^)UFk}@Lz>~xh zYr#TG->ro$YaS(;si_{gl<7R48O}UN^g!!7^tIY!GNrT%Am&RBqcCtr&@gW+;Ko4U zWye^{3s6tg-oeG?xF;lZz6hg)%L27Rbgl+r;<0+Qy7+!pS-?pV@k_>e~!B}R5Ns>&!-{N*b@ zc8Obtm_qe)CG^`jc@%^=iisjp>DA~-H29^Pz(j)=3Us0?HrHRI&#s4wyNRq~-Iu-Y zucWhweqQaY7kCvM7S<}pcDDaqKVw6DOMbN72rcVRWIhw?x1_%kFoiJBRWil@$;Y7P z7CzK2nHLv$Ny~FJA!RM_qWSs$1*CitwC{Pb`d|G&1PS1qyJH3mv@9e)A zR|)y)XTmeBlqH|1)c3Ckw(xl4-d#*;T@c1$4LBrL*G6ii5_Eo zCf6uxh?d?KvOvS2&3aA4(EF#_=;KEnv77t*TZ#Rhn>8w>Z+H!uEHpUGac(>EQ{i*^ z4Q^+BuV^!;gCgCwmhsVJ>!Uwi54B#VKVw4)`fT9tfHZwA3-fDlvCq<`9xYvG(Yv;a z`(zkUi&$0fZ#ZPokhNQ>1G zFSR@}NCXARR=;+_W+u0*_#!-r$k;c5Lv&Xt)=p>!i|TCi!SRA80}nSt@us+h-1&vD zpem7&*&>CK=OT}iH476?uZmfD$nVdLL+=#$E#3d_IKS9AKRB4X__Ikp{7z{$=u91_ zk=tnC?W~u;X{E5ejL!EDlJ!J?4(690%z1gVvPfp{RV`~0B*)qdu7$n`b*{F2B2w=h zVN*FS{SJLzp-h5T%fOQO(@5;>^8L6?yw=}HtfHDTO|Q1!95!$!mzC0=Pgpl|YaflB zKJoux5Hs8vp0L2N-#HtcNpFaUNq$~TNt@-9$%Bx%5jB1%VOYP(m)(|OgrWFglI4S^ zl&=y(5Tj#Uo4M_y1~RfD8Pw9bqZY5XyNae{iq-V)$R3p?6$REBFM9h3LO^}c_*%3b zwSlx)+%FDc7Smde7s{*G^!WgdXW{3IXdfO;L>!Nw(Svynxem(#d@&~`jbLpcta z=miH7CB4Cu`1r+yXH>52kxCZ!E;!NNm48(_ z&i3b035g`wIvIz4VkfZXyg(d!pYQfod!1reEz8%^iEEm#bSlhwk&M@6S|3U4nQu|s z;^~+peN(0NsS~G`n&}(VZaUkI&qs{&_Ue^grC5Ib)`sSLBYg9*#%}kc#kCU^+wynu zNV6~9I5_lyk9S5=j6d3hFhiU> zcKM{7&lfJauc20rB;X|Vpuney5qk1Gn_2kbTKoBRY2fJyz-ik+xB1+l)E{0 zXy+AZeP}W0m##!K;pCq+G)aH>1|j4~18`Pvxjeep5{vSYO8+%NeK$Tn8Lf2j@fK}q zOfPu~s~qQt3d%vJ-M|VzY|{qZt;_yY|8Vl7>CIdEVO0-vs|Q-*QqZ|3JnJ8%qQ47m zYygWB+mnkg`>LI5+t|A?xpvMUYA8fEnyxY_ZoFTvJ42Vk=e;1{kf-hK-TM&v7iGHf zlCXvy6zS-~-P36gFFbo7?8tV9?7cVm72F-3?`^<`XWFRFqP^ zkFM@})w21GiOJL*`Q$8=Jn2`Jm37+@!jW|gqvk^FPu%>rft-p$vafGTGY))rlM3Utj?3H;hUK3! zGt-cFf+aKaA8MyLt&OgtAgUhVsL3-^dO$%ww>|-G7)-Mo@;jFwJ_e~KQQ^QI~%7C%s-*jQfTKU;ME7DlWk zZmXY$gG0k;oBQ3Cd^juSlZr9MxTiMN)zAEomk5q8@n^rDStp$oU(VwC%saIr5G0c` zt4duMwmz2`1T#MjayGSC1j0!s+wtO%?G~9i?1f;B5?K`47CfPq-Lr4DzFAx;?BZk- zk}IAus?aKv?VlU=E<`@Z)i1Q5#D96HI>RVSi7#w@$fH!{G zOUnBhnf<4CrPg@@~FscZqXJuj0KkAWTh!&j4mLUzh*bwcDG2}$qx&K(xR|{eB z#5@s?AsUlc`KBQGO;t%u{sH5k)q@Q^2sYlBqvW2yYU__3h+?oaKT_S`^I%O>OHK`X zJSgk=j!4yBB}Y5M7RvC&>?&#Kw$Nro1iqEK^fw)vXRe* zGu?$^y;6@aL4A{FuVm+Z`{1irf0p8$i9%Tfu*xY&h+j>eEROs*AtoZ<`DuQzT@z)N zDV9-#zsiXixGJWRSvf}Ss({ocs9b*yK2VgB00{CMr$lUHFJOc`+w=)~{dVs7(k zYI^QB;@5W5IoLFRd*ZQB;WVD0B1w`!K5XygU}11yfsl}RvAtG-5A8O22#%iRyWwGn zKTBzuwEZ80e)SG&aIj&WxM^}|B67Ye>2r|wt~F`uw||>*)U{e#H&7po58tEs@$^Q9 z-u5#-=SvDUJsE`JNpF)4#Y4xCN;Iw`@l2akA#FU&;tpS)d%dGM*ky~oWu=Z^+ASTs zcpU9M;E~*cmf@D{!bEF-4YrlFm9%k|E>;WOv@ERC`=G(JhPlwU`BuO7v%^ixGZ>a< zKqDvho&v0(ESHv-CpO^k+y#Aqr=MWKG64-Rw!(2@!RcC=^X>Q^V?LN{8HF477(ayG zebrlqPIGZ_QQ6kk7G`X37WhC0^x7?w2|A|1eLxEzZzyqMxwz;r5ck2H@79qgW&ZEiKyM6Z}4FmUJ=^r-Iq-nL?F{as>&^!+5_)Z>wgx!Ah? z-r-h4Wx|nesKkdfqtJPMIyw2QoKsdSs+jVzlpm~*)DBlqwjr$eYCSG)=oFOfo>P)e zc(g(B@#0m}LAl}1{PG>=hau-b(VvTHw;R7gFJKkhYfPTb7%8);P2NjE^P&ly;~{l{ z>UDMfBY8ayW9i@^5*A<1`FS^mV4&UVl;tDM)b`o{Cs{dJ1FF?6~&6Ex&4%Qh)7jE4zHC)-NOVPHeB^x0_$PN7d4wuOCp6TgD}^ zGO^JalWCM3na4=6p4QliB|Oo6oQ?)=i?h%T)|d{aZVDKF4YJ_cf!WaYSoawI#Q>(L zu)duHC$WkJ80{oZ!E$XJ1{qUoNi60jGaaf)tTwQ?{|mn((Qh52?5Hx#9^FF|-Gd9v zKMnaf3A#6`EZ|b#4np==ttf(;`AOJ;OQrPnwr$65&ky{_Abtkt zy(GtTR|ie;IyAgEpX1i^R_&Ve-&slrEsc$SA;xr}(<6*`+{fRX{XM%FSZoOiaB^C_ zSN}eZPl!QcYKC@k$$Q0#f#kts2~}G=p;)|to%eKjLl(Cl-)}hl78_Gk5g#ofnPaet z{!Ad>?DTunCgNFy!3EvU$q{1?Qo@cIS|4)n>XSEH#V9=!cUGueR`yG8qs&Pf(P`kl zG1gD!7|R)q?{|59@R#7th+pZw81^p+`x9Zl)7xmvquAt4rVr}MicC&j)R=@ShXB<4jq+L@WC0yS-Dvg{Y;iJR0U-+u zhNi#}{`Xl33B(F;rAQGglVx{ZR)_CVAs{OheVv_cdJ6cB)f}?>iSlSwS{L06a&(cZ z>oVEOd1GsmiTC47I$%8163ePy%J&eTD@OKumJcQf-~}}>a2s5St{v*!kG821?GC)MSpJuo$AH&E9CH=^txIZ*S#e4 z3b}8$amv;5lZT`>>Fn^QPCzraltIrlw$U1r@5mGNXG(1WG_1k|p`us!+RY4f!y2v4 zV#?&D(@lOoG5#8I=CYN4LRD+%E0k3d;f}|YzFy}*!-L%2+ z+uj$8c)J*cQI_aTij~%%uy2dt9aZ9`heCj-SsdL9pB(9Dmiw`)mFGgJ{=QnG* zxE&p;xH$b;(dpTIzxi>5AcF2(N;gvXH3_@Pds|o>x@_HHeWxAd+v1m%ogEIQTSo)V zYok4VGc%On%Q{(OOFiqh+}wH$83qNhx4*xec6H9EojDX%sJIVX$X(HkzbZ$dh?|t9 zY;F+S19KmO`1p8&=pG5M26cr&J}K;8Pk^%hptrAYgzDbgF|gyiUgCH7e~?OT%jkUx z+ZMM3d4}7M!8*eZX7<3RY}uVNvR^qOXX;aEn_NDffZwD!essT zoSDu(cA-$%0{n*T)P{MHhgO*J;boy|R*Jg+Mi*-P+x8AT>bF6Jla1zjH7C?QlyjYd zVT}eIW+mvKGzcl9eQKQrH?j>BPk#N}tiFXbf8zb-i<2NRvF*~iLt(HZ(O6bEaoIac z?~}ogzZ#QH+>I8hD`@W27hPNi_p>i_>2Q)3J`(0Lv>QqN@^_Gz{5LbxN5ZI5%=S87 zzL4*dZSoX+Rv+JvQ6cG-QsO7xId!77DhuA2+fx-S!<6vj*$CmOFcxl4ZLBVD;lC6U`tT zWlFFwmHI_Q;{~b5aXVBV(aEKGKCjaFGtX{>YNVhE4T|4rnR(NCG-rb`-E=m8!h89t zievYdjamL@JcFXAh2F;tCuwni?k(tgR8*XKf3K`6XfL~|@1Y>gC$c#Qe$uWz zeKe~2b$3+Tbp5vY+LIs?hteX_S}jWDa<|Dm`Y%qx3RfF)cW-m^4Eo~^H#UY_3=J!K z9h@pxXE8+($_<8E6Ygzvu6!KK3P|0|exBYS&GxD8#J1Tm_Zi8WlvQLRiB-Zh{7=GGZPxSm^i$hbW%n`>Eg@=H6I zyY>amlt6+VJ4<$9j3n|4S#hC_Hfs7CYn)-orYlUvo7X^NBilRpXIhqpE=w1 zVXaVN=acYx?2^su)~zG6XZkJt&KtYi#55@KJ)_Z3`+;6AcG@IefN{K~QKQN2UmVM6 z{%YC*+A^jwtvK%z6Vqel^eW9fqDydHTwDfQh%#FBJnKm+V}pcz68ogcLsC(8f1(mXT)d;->4tvm|^s%XJlY-zc^lq7(iIDi1H$skkhThmfBSl!9n(* zb%7<2g==wPfnYdhJ5+-1y#b5bVPxMTnC@bsId8wQ>>9ycS`3^u(rZms$px@V!J)0H zFdb2-{o#gY7}@YGkHd{8N`cPTd!5_VB3NY_8VcJm2u?pgr$YV3%a#rR=*1Uo=1WU zbLR*8$Vl2Dob8{OU$sV|(ed~UJC#>m9c(1-v(5K@NO9=x{K<-&PBdK~@B4ag`TciMqC~zU3s?nQ}2Gapa_1y*;K+5T7reAJKII&EGf5d53izl9MkYW zAb<6HG&y=ymEey!FJlgIBTqw(sL0joVPzebnod$|CThK()?-Z+rtiXZA1bR&|L9vM z8KSWlpYj}BP;%C`FE`A#mubhpdALKQRlucX!#ENp#V;9wn{vICxQb7THC@i_ZSKm? zZx!EvC~Prn$%}5mO$Ii_zsc7A*t}cnNRljk=>Ed?P9c$k0!W*^gt5rYIFoDlZzyjJ zRtgE`fB$|PT4TF#d2x0;?}yV;4s^r1n5hpr5_Ft3mJ`oT0h#jFL=*J)z@D0LBuC*I z#b`6vbiJ|n+-XJUAPa{LJnt3d^6=IBR=W8XZ6!}Pyrx;4io~ar#aKzoMiB?rUOi3g zHNT@5zye0R2OD8F8Z9n{)*oWS%!aDH7Bnp`{X9PIp7Hl01_^cyK1wBuP~kHpnwr{> zKK0+Vj`o<%5AVp?!T$u?1B;Bm!ErX^V;a}=R`C{+FcGSEYw6e&_KvbT^q^0*V*up+SCXy%El{V zILhkdNjuf<>OCEV24$;&%g8VpqOK+~N3d6Zc0m&R%}XnUEi)?TGHqGQ%k$|^^0yII z)$~OK(7ZrC#TM;96sMGl{SLG+d$pZAY!p)VMv&B#_uS=*x`Pp>{jv6aRNZu(!I5 zl%7up7{v@6Lm>pNEOVG-rYn&7@Z(HKBc;DiO-`0V<3Ngizp=R)8546uEGTi|i^MN!p=W-m_qTW*hUk=VaXpVe)FLBZ z4rV2dd;i%S-}GQB;5G>*Pe!10g@?SqIdc;snd(u?oXEtvl4d(s)>k5wZ5WqHPKqXo z-IDV4Pk_|GnDq~)jZC$LSc71~yJ-2SF|U4&ZW7CrjE{*5e4CM9AX&qDVqD*=D1dnieib?MHWP(dxSFJK%-em(iKaUpm%I;bf$ni-?w5AdRe*oyl?**StFXh#5!Ww z_FERaDFL!UA_mf%E82oj8d&X~f4^`Se$qf}J^C$3j8y6N(GB1Tedr(9DHfZF_SBy( z>|gPJo#73-|J+?rQtiPTm6`h*<`0>&af4d!Z*PsYoVPAw@aL4PK|0+wx~HiVU*5alOC19QP>a zSS@Wq;Sj_72X+mA2LY#{&nhvyzQ`LMTg64g5qjsJsJ zB1Vt_l<|Ka`lbKu(XapTyN2ui^C0=}suBsQRUh*|uXt{GEGLEcFYFu2T=q5ug4SQ{ z^59O01gvM_F~7YevrjiBx2PnGN$dZ6XhP**h(0bZ7<)$%8(0WPAsYSLS^s^F9mO4b zw@7q4jkXNJe~|pR$GNUi4M7|sO8-9H<9W`zVRW#c`RC#K4FhyE{(Zc;QbY^I#i#u* zSLR>J%>VUGW1z|X=h+@}!0PQkkGHM=eP_pkGzbey%*V`)=2g-Jk_6mY?El-dE=A`~ zeQ-89?`r;`e-TR%jxR<>jzN1R zsQ~L77f1FM0RaJ>53v@s_fu!STc$2^!DMPC zBf|-v`4X%Bo28j(>asczASm-~(*V8kvaF(F-;g9{pf}r;fTOP*0GH;rGj)VhlSb|3sU+ZSEG#Ubq%KFs#*VExKFwBEK;EH6+|(}v2*F&!b`4<6)mUOrLnP?- zb~y7lg$MUXjUSo-w57(+Zc3DN2`r*Z8sp>DeRWHg5$O<%RO#`BOVg&Tc)Pl~sPD+i zKTh`s!b1QwGQYve`T-7=&~dD6c2X3)Ub1o$Ys`SCRjF9a;e*DRnZv7BQ-%l)r8GQ1 zie9Y_Wp)(;60{6VD{FKfKSpFJGfU9n!4FBm8)^EsonP(6?krv!`!Jnz2FlY|?EUP@ zAI8{Z+<8wF0t`G$Ue^9L2j`g!uheDg1WeMm01k&c-K1<$w;?65-K8T1 zdc{;25(-*r+r6tl359P^(0R3+y&I3g)Z{mioZc*aS%dG9{I$+aIBvsMe>zKC$6t~b zJD}}g!(?F>NFzpoI4TwZ#wc=2p_t5t9~$eV)UO4a8o|0>>+C_|K36xX$ZEP*Qn%o>;I9wnZ^yz7y9-sva73W%lJ5v zLoJ1J{vE)RYbi`lPR;}R1~;^0%!e*AZ~O?5=W6kUgZr#)ZEZgo=;`@D>+KVO7Vr6g zSm&X8W?iD!yk+*<#ORr%=IKQGJ3*x7$a#vc7T*?hmP8hnZu^(ftlY7(9XhoRs4#gW z@&Xhk6(G9EePF)&94IBz$gsQZ{_$UKPZV3Cd;s8geU-JWdr1S3+Bqg&<|r2#&;&LW zzf%B)opFYS7w@Ac^z1Zs#=!s%)%Mk zIRJ-@a}Mi=(J<%H?32g8RFm?+xwzG^OdlvORY}D^^5nPx`xq1vG5A_`Rppwd=b%%p zc2sl6@$uOf%dVYVaH~;+}&b{TCCmW}4#kr;%(!vSK@&Sh=uA0Y~ zx{7}zb-DQ2D~0p(^MFdriGj~B#AZ}Xy+P|Q`SfW90KBW|BF&g+jq!_zh|Cweqy86v z$5UKzB1Zn}>ILugQ&9x9-M$ZYJ`u!AHbQPrV~$cYbQV>eX;CE(WNc z>3SFTt!?>b0?ShHOi=!jC*`T9XSmS9eCTsi{eZ?s;f;+A zfbtiHzZk=w)KZXT{%Xi+Gusdhhm}uIZ~;E#V?Ys8bEpGd>5YhPINvYJaHbcB^#X=f zAHGuBd68xltNQk7Xyg&N_AablcsB4mb0GBh&h#>EbA8tsq%C)kj%pV9Yz&~P*7Z0T zQ>Qe3Ncs;Wg6s3k+P7ds2MUO90CD{it7W*`k-cYjRzx{>1nIFdK_=<-60$h0v3!m9 zE8$E8^%gM&Z-H=yN+y(tLijlCsiPtvp1^JZ2BgEAmw=~LCI78oA^FV*v5~BT zg54V%#dZASqga6MS1SZ5nRjq?!LzpjTP?P>{4hWc0~Tix8Lmf8buQbtMMXug8Eq?o zQ%n1#p>c($ak%>9yar zJUu-HSnhi5_jw@CWZu3IL zz)cN}L4FQ7k>vVKKuGehUnP(*Gh=daaJasT^YaKnLBZ=K9?-#XB+8)NS(Bp2FP^M; zr5FTYY?zy(0etnPM){37xojnbhAr=kN9PGtFh2l+>G85!JP> zuEbk&a^kwWoJ{E@gX*|qd9XiP{unVomxJv@kS3nd5tfcZ4ELs#XS1|YG^X&DSuqb= z46Ybb3yhK>rtMbP3HVC}_xMo#aAnS@n7l{F) zdT@Lt^z~_sA8KYk3m{AR@$>Zf_#=aVWq5e_>kSwJlM%MkDU%FgQFykFTpd=Gm*Tjm zvP7F;12qi=(86C*&lpykr`rW(RxWO#5+Q}|&d>+Lpli}e#c}j;TBrIImA0weWWVo`p z_%136A8`6>)=&ez9{Kb%l!=;}8i*JK0eap~NPTG$hY9@%1iF5;lB`c=>)ydZ$`3$V zOf+8@gkJa%4KOn|IEot&CvS!kg)(!p`dE8C>Hd74i zqO5KnfCzsEWZz$WxAB8-DCfsO7NOzbzy&Dq20()Mpj>JOE}qtu|BBzg)D~@n8!u$D zm6Kv)O>ByY+BwFq3NJBeKgdde1a#iku`X#NK@vt9F5mlh04wf-G3Ej=a-?Ns@-M#u zRv+*Q;t=iLy}h0df`6M1B>G$0U+idkPmWuF3sXV#Kwz-kNkOnJrjlzmZDe_u_S!W#;GGTX3WL)Wt1DO|?U9!wP)asQ~%KaWccfz(8D+ z2{4J-Ubfs~Z$Ol3VCAcZT$e4p4E-+xaxLy;DCcj?<*VdsN#ST^#-^se2PP=6Vj+Fq z6=g+TW$yV-N`Sj!?f3B`1!M=bs)mLJ*D5U?O3YzkMkpvewX@@BbXtwNgsGv-4siznGcOdqAl7dCiqkUoZI0lnZv}-(r1z3AxE@cUk8$^qwL6 zPFX(FZ;cw{JgmJ0LROn7FU~l@PxL}6$Ab{)r$bAcP78j+RtyL`!N*W#F7?H;S5S2I z1C*bfY(EpLoyM*YDX*c?-uCfdl*qynYp+)F@Rj(N(<|Rpc}-rB7qU3Mm{7fW@ciJ$ z`A&nnZQ}t^)5W2-)8-FC7<6CPtfpDacttE^!tOg6xo$o_;6-JR0=M4rZWr~h<#j*% z!5b~c51}9f(0v2T+ZVQCAgwb9j34?`L6?Ch_=GnD41#n^&}sb}_6G#BL8&0QGe;5n zqw=aM9btz*(&lijhlhuOU+K%f=SS-LN7oGxKd>9zfJ_B(2wi$O4 z4|ZY^l)cCZU2OuK=zK$(1>lf@q0U816Ohx|nA#ZczkT6YsUMqx57+YXU8(`g0l%>f z*2~E%d~JgB4BhfS)G6reGPUZDCQZllRTu+dk-!7nVs${X++}CSx#s$SQUPal&uE>9 z<5P^_ykg}$!C+vr<3Bx%G-_P%{-uodW(#>ZMAr28OCRgFF=>55v@|V0Q;ipe1dZ|L z=cT1li(DQXVS&xx8*{QE8Ac^etq;mSs#*3Vn5_#{Sn3xzMX1c}W$6iTLXJtc6cp>z9ZL|R(-_gqXH?m`hh>5k8 zm6c_aJ`6+vIhxgLH9Ow!;`H^#&zeCekhFJ!(bZ4gdgll3t#47IiP?3F`g(evfCj;B z3O*XN((g$PdJV34&{^x>+S1=^P}H|&ZG{th&F!6T@*;;$tpf%rWG_-9-lm@%nU8a; zLm+o=oMmym_YaI+jm$U1t<>(pA;q&Rj$0}LH}oa;&osW2{&Fk53~>@M=Ux$U5}1kl z{#|JbR2n}dBn0{U-vIKPC>NKbbhHj-drMCb=EFoR9h*GbXj$5d!j-$T?6oB6cf#an z&H4kE8{A`_OHg#Z82qklGH*d%JU-bCxpg1db=wJXacHv4&YM3LkEb06`z>YvhA4-e zpL+s`GFaj*kaNhOA!lM`Md`91>yKB?uY8_~0Xny1h}pf}-6;;ZjPKx+Zi@gjLWsH`yai0A>+uYMa=LOpQlVq#-r5QtYDwZR`g;M!3HUdbOm zH8&?$eeddDT)c@Qhl^S9MbvGSTU{)T73oc9boKf{4}yU}OjiS1BKBxTMYO?vfV8y6 zJ1+kge@|W$hdbjW%XlmMfCO6&GFLL}y03t2^kZL$UC`^48(1K)pUPZz^X|%|7=iZo zAx;UgdSFjkwWE&Kb?u$ZFu0${Gr>_PSF_|1XTnu1!vqZ_V6^sftreK1QbaHh~D++23DxfwkonR=Zh}>o;N?GHx?G7Rg<&e+HSxrluAU$bVY@ ztkzLIND0`REzuKo6b}`e*tpTZ@0nxQb9EJnt9-b_qdF)a^n{5M>CI`RT=oJeq`gh^ zKE1XK1QFW%fDWL%EI{^&X;Q1o+P5W@Opc7S$7(6d@dgLYqCmn>e(ic{ z1W=}LftHUHh?jKAWZb!NgNk~>W_kq&0Td{IZ|9Cm_2er-obgj1nTMH3uBuG~D0ak; z@34%Q^B^;!%)HQ_%&Wi|hkHSS)PHv%f9-4pMchVBHQ;1 z<0=LX_5Td}S_qy%Ner&zj4&bj<0VUdd`8TJ2Z;@G{j<^JTO*{i_HkoAY^Zj@Ft9i44T?|A}|d=oNu-6&t; zPrGb%drUJ}0$qOlxojgneh(5jK_!5@sYdE|f_9dL9VWB|ynY$K=%?2*G{CTbPSJ(> zVt_sNze+j?Evck9g17v!C88NI10{?XYTMcb{|{xIW@i*-km{6Ot-ud9ZUD`VE}&!L zj9DBkD+s;nK$t?I(L4{LI~qz#A5@i<%duNt#SEjBjNDW45)kFdTW*`fN!2a4OF3<8 zPhG@vb$EA?HBEW7`S?pEI!F8hA7(p8+A9;2l#7}) zIY7}l8b6$(4={+T)Y>d03uoBpoVk?<6%aqHgkqIt-7qwsg6CMJX~k4UlNZ2P27po4 znA)X zr}wR?y69Vi*`Lj#e`ddx z`J{7lT16{vFx4ovCC|kMnc>`$8c>p~+w*+sEq2$2NsTlxhb%0xnH4{{X`at!X+cO+ zOk8}Ef|7C$h9Qkcfce5eeC_DqS4`$DehOr_I4BOp)suhSz2WGZ`Vi5=Vf+~aTcO7N z%aJk@O|>T&y2~daCio-)-)Q}d%)9TS{r|`gnTw%5_Vn`VlBSQMMQFXSX)-F)IE3}` zrG@oVAZORlkp`I0Cd@7Iv0XqVFq7;M292=f+3~UGT&?4)pAb^SSz>=jD~cpy&pTR% z#X!6!0o9*$fRRWv>Ndkn@j$1-G+YnH9~6~Z5AcE|bRi&-A9WDx{blt3n-Meap+Ly6 zduuVOl1D=9+6QXX{^az$rfpXFQKl1CtoMeAP;+`u(Q zgl~^A%QZx$@3a!R?n`F~Nu+H`m*4V3l>uU*z0n6T!-)W%C%;D&DpT*gxq(4@QOrZk z63Y^UTkfmu&JU9Ej3~W(gd}Rum$IuxOl3^p#k^t{_*fT8ag~H_rIuv``y~L7*I_6 zIK_{ei#%H4;F4j2L`{C(IcwpE`d5)E^-7%VPyK-Le&2GuD6tE=cx97^iEW*o0bx|a zTDt(?2uKrhd$dXKfYHtmeSgPyB%0S#**ILrwBec;4%g0%Nzx6`Mq`yJ9WuNy; zvelue^HQ&`UtmPjI;n`E)4=A;qoM~NgD@Chp^Cp^Hvan#Nw^Iq;P!?rvL8yM9V6|^ z=xQHQS4%3KhlIzc-T2`{{9r6P zJg&O}0(GHkg~A3LB;zmzHxXXz`J}`o>2+~1@g5?EMD7Tb#w~MmX>PzFO@UUEm#ihH zH{_40@ak6pBuoGdq3?X>)jx_;W(!0Zkf3jcg=}$O1S%v85E9=Z;r*=T)4>$Co>X-+ zmhENb=xQd;QuFHavJ2PUyLYFw6tb09=YWo`1AseSiKDHVdmuvg-J%NE>Na1gLHlR} ztVB&&V|ybtH8rtCDdq(a?cBYxrhv{#D_j6m*fv z-1llrN=jI`x&P(@Wlttt^6qEd#t=ww`_R6#l08)S|Bwkwxjmp}*264^itoK67_SZf z>F$=60%qhCXlxX!Vb}p_)xirOTMFP#x?qL4%4c@+s+tR6)Be6B)_zZM0j2F?RIJc@d@OL`6ftVwZr3whV5<+XS^DQ6lK<9 z1%$4t=zZn$e4j056u?#Y3!6k(_fdpSjS!Ge59l^tT*0*+^6^~ma;R8z(^XsS(~PS^ zqCwIx-&+qIOc8u^`aMJ32qN|mY^)xntg4&m>lTbc7IofP~qrnfrt3(+bwOtZ%^oY z!4LE1Y^0qM&txiM;)#tpCG*e?N;?;0+Z!`I=m=wqKU~;6f5Cz`tm3Z|^=!5Bj(X2MCvy;f|pT1Pij92Bh&-T*gh14iC7&r70*btJbb) zu)~DUi9(ciWB-}N+R)h8NmY_V^RlYGN^W&*eDbzOq-$mLhmSKCpJTCPW^H4>hKVNf zZ}K8Et0o`C$z21=CO_|cUX%kK4!{-r0Q_~B-vq3CV3Bf&QB8h(xnfzMnFe{{28EnD z&iw9MTRKkG;Y!^lA{aQ$9F?9KB*UR7pKKaCze>y2z1kd8yp4d}!^XtUZUk{;V3CkZ ze!8)Rw3%bz;3%C0SBvoSaxTOk78aHyY`Yq8*m%IhLx_WeBLK|;n|_Ty+;T#)*+c7_ zT-wUm8?`EIw>AgMe>^I6S6`Yo@@=1;p!OtX-M=%RvT;}*(rvVFZ6eD4NrJul!`P2O z;f?(I=<_EYi?N@GOv!(&NoCj^K*a}MZ;ybCE#L`Tt{>qD#)sgP`{TzCG(ccsECbj; zgf6purpkRV>RRjWA_6oJR0GGK7sE&hECy*eKP$>*mwSPK3o)Ds&B@d7vqIo_{|x#Q zcow@zn*{IW2!2rXgG6OAf}Hxv%uRYU--lIF=1pHQ$$FeCjb4Rb#qw&!{3 zP<&_F&b?m7{_^!JEe*}$P!>;8_v(RjB$OucL53wA{wQd6fMHkSzkk@2n`>nUtUe9g zmw|X?YI#TTvJW@mI2XwUuM!v-bu9h}=CqsO0Jp6>(14RRKyu+EV#AYkq6}u5NYj}O zx@f3%_NQ!1OrWp<%K+nXn0>sq1ckM*8C7QX63qpaTlu~5*Ui~O@$SDvKM9@5+N^5c zZ7Jc=)!1DmU=m32t7zf+<7&YvvHT=0_z)kwN19_jwBl z`C|@j>KEs|I};ll;W+R<=wd)S_Vm#K6kZdK?lZu4-b>Q9z>yvh8%qdoG3fpM{lDS( zJ%Y=AA2~!ZLN6`hQ{?ijlx2#!{^tCLREt(lOx*MC8y}(8zAoI28LqZjk&wVPG|ZFZ zj<$q1X`rjd?Ls%fQ`SG9*0w~ocKUrWZP#z=C1JQM z_pcASuBNHw6TO!-;>1c)z$g1 z3fNP)VeLaI?V|H=j33wUHrXD73&zj<(T$`y#d`%Pl{A45M%UBLqbe(E7wm~YNkSr5}Izn4UfTwYjQ3|Lut0S-Btm6e2D`|fxPn_>3| zjI`LUUX8Me%LXUMX}|olLd~2}hox>XUGzj+cpwKHwE%wo4ARGw1a>14I9x}ut*0g? zgy+E)CD_RK?53)!s-v@WDiGl27qHw)wON2y zFP$~m1mxNn6#YWQ=MVAwl6kDvs)3z@0ikMy78M@m@N@IAbfFdzdM>vMP+sE@9@{rK zsvAc~T)M!P!y8UvHn;<2;9E?1$T&R?UUVQ4;(efCQ-Nv19M&fXpJe#t@QXBs+`(3* z0_yQiK<6-O^&!G!Q zY6wdNNtXeBgQ+VW0%kU;VeD_?c|YWp_K_= zN*~fL6KO703Ns5hRsnjXg%J}>-e6So{m?rtns2~s=Fu{PGboBP6C{@K%tbL(vr|yh);dzJCFu8y?Af?(p@?7na;wWiheu<$yOrtwQ4p z%3n*MP{;Eew5Cd6>fA&Cnq~z)9m+5=-bfn|Iqx-}s>7)&2D(8+i3+X2ZXo3;p}pzgGs+(wZ{G-!N)59QiH0|UX})2Niw!`QZ0E zSl|Ns^={Z$Kfc3+%gxPg^iGOa(xbA8e+VCq7}L1g?!G=LQ(aWI^ck!>wodaSU7SL) z%#AyS3UfX6&q{b4DeYe`29f*(FFt{h8Kje0!_knufcGhfshJtrF+u^IO$eov4n@bM zN`i%_r)P9Y$*ww;Yj1ylq(isI%Jw!TAGm1E z17t66S)>^TGEUf{6136&<~pF*!;4%-C9}bKLAq8A=;w*U;OCq9RK3s!;3}jFaLz-; zbv80G;v6SeWehVgG;o*<2D;Vj^_3L?1Y_|s3Mv4<)ET=?=f(fH-)5S2Jp&~W=+n{I zjGAT=TUcGC@`r32l&`DRr>sSN!bbjn&74dM)w9=sEtODUk+ZA5#bK|Xb)?Q5N1lBY z0oI%S6kstGtd9~8^zTH9?b8Yq-meqw?lf_@4-o71KQbV&J`=-K~B82AZ@t#z3%dj~dKoI7>!CqYh^DW| zK^9TkLN(t}n~q*!D4trQ;*K$H&|3-DLzxHmkv}LYDc9rU{;NsAa+74Q{nxo5%DpZ%Kg(0x1?c zh{yy41!(~t@i(7DPf1OCn?xrqe<42ZD8wr>>lwds)(RzZJmS<2*`d;3y>f2tYh>$6 zP$sh4`SYgf$p>{^<;QB`n97)$;A|=h*CEVSfl_1a;1E?>$^n*!Jd?)Yf7&syD`Tib z++=We$GhQ@6hXDI74BQoPc_R_THkZ9QW4~OVhf`PEfj&VnKi(GrrX7E`Y(kVamq5bLR&%qEN;vAqP3|9xuRfnh)G`dGjP9 z)$;5fzusG@0IMzJbqsN$Vqk&>#<>CZvvn;n&jgVZtBH=AfzMi~TAe$b1D9{#yaBOq z6mZLspV{poRJgQU&%xm}=Us4c$w%3T^61!PHzJq8qbvo$eoftZ&io2PPEs&WZ8z2F z1d`IoX|$f(y#zyFUtW1Y4jw+)T{a+Q` z&L5^+Z`PR@9Sn4k8+xB9^yB<3_^W`iQD)kH8>*l%$XgoqZx16e;w8mmWM>aHEP=0* zapPw%!(S$QREgy^J+L$9T1g;P)wYo|j7F(HX~N7h#29;lYH4Az%Zo}=+=wz0ReB(% zMV}m`u$k$jjzN)y(s9!Wn9~;shN&f<;3?Qh+GTw*%I!G%lce$5yPehC8fK=T5nPx7;n+LfxVro zYV;*6|0hsxmFSkg=t|n!va_42dD~^NFb$LYvQW`-T z@iUa3!r-2QloSUE2`c)N7Zey~>BJ~cQNH`hkn$b9&@5=l|5xJZ9N62BL;HSWLquCH zn~Rx?%Xu0}hD(DSkQ{iiB|ZK9N{7eC+ZE2M-SW^_$05D;{E&VJ2^Lse#OnDE-mR@ttOm*lq-51#4Ll=Iy>7~_e=%& zc~YWKr|UZqm>9&lL!|+OcPDl_s@iNFfp5pc0+9ugk+}`tPTrez!G>9%=Ur^&l~#>% z5{jNE-+PyI2J^`lJ3h11y~Wej1S1Pnt0RIs-J&KjOl#yvCKJ}qWe4@JC};Qpv_V%`c z8nzsVN;px9sfzW{BR#N>ZptdQcpBDTzFs}=OO8iK7zn7rvgq|0?whx7%b@Q;&iH}* z>FDa3rmChkvQ1v`%ehkzI_xKSD*0ob2*=62>$C;GB-Y#>6b`f&2k>7M6!PI=Ck$UJ(xqddAn}|`+Lf|)MWt8Hg#nG7KC8oy^^{ul)|E1TW?#Yo(md|+cRJ!#-$Ua8@ z$3=#3oOa)aJ`F?eriz@?*?~FI!Q8Sx^{I`G&9Mly1Ojebq+k&+o4AQDmyHi?>jdQ? z1U3DWca{0e3`nA}t!1ER3e8OG|Y?HT*4Gk(_#)*rI3*JV!#|Hr3gmae}^V3ETKd(2A~qOTXXTTv6XeODTcu&cxe?HO>jD$Mj_QnP}0_( zm+OfkuDJx4$eiKln)%abDfL(PMR6S7g z5FQfw6t4hlbz>OIz_K}*k}Txl3(v9z3zTZG1-XL{e2Ga9-%R% zT@g2%Lwt4VnX9gTAptOAek3F>*D|`^s zbR@Aj0wnU(-$78b);N%dg5dInk?bJYq^3d}8u+0Nz27As@1Pe}swDvW_LXwk zv;dd<09+Ip-I?Q?;5HiqGzn!Tz>SE zbBs!lIzOWu-+sT%Ik!Z7zwQ34J5iZfatmkAW%iZ*z&>sr?$+hi(w|~^;v&{ki{y73 z-SH-gx>@Q#y~Q${)jgpYFvoeFEr0BF$JXud{)t&Wtrh|fxi?2gufY2StUX#xIjdhv z9xfkon*9XV5r25qW}pT^!a21-!Fq+@PQe@0e(Z6uGD$$MAf~E%7s=8A(abWeumb`3 z^$s9427!nLdM#tVl+A5&rkJj;fF&!XM@ORoClH5H5cqfm@Z>tXx>{tYePRvt^=IUZ zG#PZA^bcgb!w-)C3JMYnop--bz`w zH^^&TQ-}BODa**ngu%24GKD{l+C+c+h#Dl0;;JMlh@L=`lIXZ;gDNBWu>ku?0Gu;$ z6zIcn-}JXv*y@5ulORjp_$KU2JOTmSue5eJ zOLurbBY&bwe!};MySU>0{&%|ut9&?=;AmT5S^F`jV~s;Q{%zrQ@i>Pzt_VooP8KG9 zM%?~yrrr5=P287I`f3aY{FKhiw{&0#!~-mb3Wg3PPrysw1a3{*j~_pln)k%N($kxM zi)~%TvWbii05Ua{cpwIV^K7Qki^SgE9@0hJkd|jfU(+3NBS`flM5Ac+XJf76#k*x1 zMJ-K3T0Y^jv$C4Eo0e&_Eq)}=0yCtO4DidHgs0v^P;3-bTSFTEkyiFGak1)lOCr{N z`a9mbs=vdw_B!GohP9hcIux~-N`A&TH+U>4W?^JfYGcoUU13 zqQe0j3}kiHY_+6E!^UTzDsBV&in>a^MmI`{`Ndp4<)j83{}>rP*r#ZS-~1~YH{P9Q z3jFo_)Ro95E_qFS^D4iH!~>S}7dN5me}L)g_C7~um8GdKC;BDAq!c^vW$?9UUVvuYg_r;>SX*I-z> z8V7t);DNT<@ik{8C)>C=J5L=zEy;EpIdk5~%RyqTDso7_edGucgYb5H=XA9LKM%s9 z?IYZsHTCtP*F*B`oY0wqjNxX7({HGct7-+kPxl7E1)u7sm<>?chgFX94?M|lf7-}Y zl3|+t>rjx3jgAHZEDJ#2{}5@w@z>&Zf2t4!)7Q<*J=M{93?NouO^pE1>2KWRof(Fg zhm?o|OxX@^h0|?I8#&qGNa@oqHAaD#inQKZfNy|l8aR(%_Z;eEka)m78W+d*Ivs?_ zEr4bq_bZT_e(R)PFSYWf)8O;UIK`I}RfLSMx3Lo6xeKn)?mH9^sMjQ(+e5P9R1FUoZ6(Y#RR6}t z%QRRMB;Oq7=iE9!&>$xyzz{99n=B^;gA61N`8MlMo2irP)29JB3iJ}7)viMJIwc#D zI`BRZOLU`#z++QxqwnwSy>NwrcExm+ zJ>|WX^MJf^1pdwvX$A#*8VSx!2w{Dt107$P753jiJDmAn2{%# z!4Zv5zMQ!IuH*hXrJh~=t48u~>BhyaTeseWpft*UvYZau?r@lrsK`af#F)Wz z)>vO(&%qaWgLUjsl*XF6?lAy7EEIo2gi@*iN}SwHn7ISp#TZJ%1E4jdB0%y)3y&!8 z`R3SYeFjndFY&L!_AjWss``d6xd$COZ%|A(-(rZO2(Eufm-IZAvRkqLQ6ICzzU%AY zajE3;2jpL|-0z+!>|c% z!Ka>{f6Uj6{#!f&8p@e09 zgzxV_K5Y8J!GXO>n+5h1HCUo}Sy)=m12fyG`FKpvs0uhB7Gk}!dWUn!L7FO1xBj|*tpr~ihR=bs_UMHTX z&Q=9G0(#BNVi-640P!mrs071|PSM-@0`}%E?^y2w@FNni7TV!AeNW*&Y#!j~?Eyft zD1EcATOS1A;Xsx>pOB{VoX%&$z@*_lU%%4(XQ2a~Adm+?q@;v_0O0ieJPS|;zyT-f zuMv>AfhNZU2^EWQrvMa&BIc77%xY0_4=^J}X69B0YaGTKd7**Z5lY^Wv%=?Y}hQ>L~@Qyh$FPNmD$oZ2n-0JusM} z$9kMifN*y894O)6)va}1-{Gf^^c(!DRkHsfb`Ft1jiC`{f1g%QzrpS1_^u`CEA+u? zI*ZGCZ0j+|SUWA(Org{^8#@uJomq26vtVAz^ayCcY?)!kjt;q%0a%P8Xhr3L#}1=7 za+tU+hAYsYb3A#{I6?+-M(&0BwFiAjHWAP}kYs;|C4wrDLiqIuu;0O!o*?V?B6wir zY6Ckl-Tv-Y6m^rq&5Fqo7FVe+H0;f!$4LdEY4WjZU=x3EI9kB2Kz3d39+h(r{D0oW z+s-YHEDzPO3?fl=U)~cDc`YpCz!C0UqpWA}r_i4G)hqv*IjZvRT#ZpnE-wt(tu305 za<-dT)T%wH&I5|60{i~}STr#7-j_mh_T}JC*nRWn&Cu6)h94Y{fp>Jklca!DEw#bT zo=awGq^lbWbzi1=PpF0^tm+`(o(S?9Ww=OS8+R2BHf0#r#6O|@9{L^6C{@^*!cr+c zW&H6QBcapmNa{)9%ZvI&)e>Oz#7#8V=KOY>`Dy;{Amu4yuIN!(;D^w-4co*=plC@` zvW%LJ(IJyJ8EV(((0n8P zMWBB3$${IlSS`<$utf;+^XjP41bf5lTQP8$PM%MZE+C8nVOpV zE_qxPK}Ljx&*jt2?(=NUT{3EYV@l~W3 zCC!T#@LOy4J?!Iu2_m!*NH?(=_S;){3M77hetx9$A6$$RAX?9>sd-(c&TOEXu?Aug z$gtpY03Uvt(fj!DeV~ZN1p*Zp0JJ4sNeUSkaURzh+}hw3$h|g@F@Ih)Zs-Erjuz~S zU|fF!W1pLl(x8E~`9%3#Y{GtqrtQ3`x&jfsSzU|L# z+um!KO1EZOz) zil3iVJ0uYDeOtgrf4jQ)?mmc#JHzymjspP60TO<33jyg{8|M*cSHJ$?#qVzd?Myiy1zTxeWN(RXykNZF5N-x|$Pq7q#1c(i@sG zE`eT<7hNDat872?D8L{!{x8++eq(lpXodSm2`!-vQRyZ@t4FlK)u~d4M>CTa20xgv$yBs!b6iXt0JCOb5mU_B$Or z?gyn_Ytk&&Zz}fcG)8+YcW;0EBI8k>S1aJMTF!Auu9wc6g4u4`<;Krn4YrK0Y|mYV zzdZBb@F*P%X5xvQ3Sk*by%{hDxPb(uK7UJMQ!WR_R~ta5>)UA3`0)Ffq;+GIz_05wFrh)1TJh+?gXQgxyLTZc#Ngh$$DM}_ON*FVakmanPVDIu zdZ>S|7-p<7+@U3Q+nh9Oqs|%FO0U>jLnHXDM7j8HL;ksi_rYO;?ONfq!Jd!AA3M15 zvHXcO1`Gc!2q?J#%7>%)Ua+Q$Zm{2NM_$3gMd+Qs+?OF+DJhRTw%l5-)-ca028g?1`h>qSbuIgaq;P_RBL^8ri*e&35350T_7WNCVNaXTd zp$@kL%+>mY2QZu{{+a_+Z>cy4g7O4nBBDOv3#S0Mv6?+WE*U#Vxx-W?tNGOgVQF{QsC zNM#%AM?(gPEsxw+Fa3tV!G*ynZjg&CLK%e-f`sdSG@sG_8SVMOMo(XT;bc9w^=VGM z@28cvSt-?OUU~7WeD(aiK)iyi=dnW%;RzI%txkTHy5kA+jsn4FBDeTwuGy1~*li1J z#yOAD^t5(;H7C8b`v6J8nN8n0zM^I@ix&|N-Fwz4L=%|Tr_IB|U|^6810N$9Y3U{> zK!|qXy)sTLf-CZo)*GOA~Ig=A)}{|v7+U?JNJZEf9zUh zPS?=@ZDBjo=juWyJ1_b0sFZGngoIv^PhIVQX?DOF zXYD%PLSjl;Zg^RA4nzL`l%}Hi^zhl+yP;wWC2L{)Ap;~1cp1$$e*f|H3GgFdVqld3 z$5YIl*d|HLdp98*i!u;=u+7Yhk^?j|RbG%|p(`UmIN!xdiY2EWSxnArLkQE~2QU=A zfdHZ4A4pDOLNqnu6aem^3)6+OJvTUx-JG15ATg2!h!jEaNk786eY;zOIgSKYmm8=z z;&fAX0eNaPx3sKQDH->3Ug?bH^>ckpATD^8*TAo%&7G0%#f9|4K zQqoIX!1*25P~7_R0Ra^q3i$Oz;SGhUO@*2yk_!(|k6Q7ZMGS_7h902pq56{mzCyui zJ@gQmDBr<$8~}#HZ+4Sh?99v?^!`Q&y9f}^=F0aNbG+8{pc4;S2k)EO|l(fnL0|hqS{U8G1fgTbt3bAW>$0hiVLptn9-Z@H(Jn<{3A`U4(YC=ViT-;(c3s2b&qjXX2eJS`b>iU2fhZ85gsM zjT~yw1qMEs3+iwAkK+;ukU~Qooi#aL#fwWDk^XuhZ2bFs@k0&)yj$-0ZURmA}K9R%g6WaFLF9{dUj?2 z`GFX#&K?R9F1eCYQbiC9lEm$GVmAaJHE69j24J;;tb!UWJ23!VzYCttcabTP2Y~S? zLlL;9^IQxXr=pjKcf~tR-kIP8LyTe&i)OsWmd= zA^$WSysH$wMrR;(QJY0dwQA*CS42G{_DXVa8G!Ey#a_6$_T5`{5Y)d zd3_1`=#4{FHC@9jc;a6`ncD+I(q<9+83B-iErLiLaGVYRnn%1rXW4_&i^t}L+@k@0 zBgV)7e~IzC+6n1FL9b72V~P=Cy|u^D06d`FZuesd1M6!B&y%e#2>)vshCWm9(!qRb#Cn# zk&%dL?mD(dQy2Wpg{0Uhpcj^S6`)+&jPGxBNjWiufiD!!&Ta?c*tU>;=^50M1= z_n%N7A0Lg(%x$fAuN>YV+cw=;^|)=ET{ZYfJS6As+aGh_P2m>El?&5qv$yeqNFZ<*<(hs!*GB# zpLvHFAi_PcIzWznz{ugd1b6)S$jIjL90<+X{npdm3E{Ki1UT#Ic6IE*DL?KZv5f1oAwW_Ix|AwpxC57Y4Mi31N=H96M1ZB}t{ z-wMq`2pUhnPaH;qaGWYNd0PPin-!27cnCB;7-GpO27ZW2`Pl#OLx`lj$mO1ajNZHU zxVNG-+^m%2y9KPx>9u`HEHedFaqBC)zb_^qtfZJ$yg9+v;mK|vGBJe0etvCjZ7G6( z4tN$oIQQb0%ku<4cH*4LAH|m(&M)rW#-T!s=#}&yDc^8Hom_ehGNk-_gX_{CjX4WmauR z4n#`I`%7wHdw~AC4Gn>@fbZYhk!I{lOJ_gU7og zpuUELg}s%_w)u4f6~U`fNt>)d4}*{wxEq-D{mPkpt4spE7XlDi4|$F7)l!bFOstG) z!mNBBPBdLhlapgQKAcq3Ymx#Hw^x3L&5xiL=B zu?Tlq%Vbz}jx7(JChJ#uOjSU|D4JjIe-4I~igc6%TCPI6aIK)ThPwJuD@Z6a$F|v1!}}B=qA2z7x$F$4xdF zFlMbb1jbZ{LEWoKPhfGZH1`^#gycDF^O-FXlg9W3sZWxZf9L#A z``;W;G+eZjU6lQKlqZ?3)(%qyeegE}M~Bj~v*$hdNbD2=>9OU^1m(Z&_v+(=!rkN$ z{_|BVi0>VT>k{-aPl2ej+vAkVi;<*$uMjXM-Eq7-C(aX1R&yg3C{Jnf!!W+lJl4T3 z`gXFsys)6sedv8m7AB$^?TF)m7F|CMgTqR00fE1w%Q~>6fGE#85**P_HQYBr^w1esf_A71Y5rig0#O;=zlMP{85WEY$yT? zyZX*)j&@M{*+G_H`3|)8eJC8U zYAyOm1^LB!h_w~vB=d8PVU8zumHCER+trZHOT*hof++l-a&lKcDT{n8O?Gk2o4>-; zJpW~K7@K3h`@fOR#5$8ZRbB$qQTByBbRw3rDE?V)YoeEK5_b!w72<8o1q-m_4NEMq zDH;zh3+1boW+kRxRW|+~)=gq2xr)6%emuBd`5l16rG#6;_i~}xkrz;3wu;FHu%fn- zdCmi*trI1H|A}`d$|MK~2_Hgy8$Ru$SE{ zzjECA&6VX5z`K_JuB#5`K4=@)oZ~M=Pl|;^LYJbNCL0Zh&gqWuFllal6#H!u`}q@U z=qo%FlxSM156n+LFsrG5x%0*!Q!P7C>2~G~Sy@J=gt?yM*~`mleJsvZe3f7GO#|y9 z?q2nO?Ex`c+fLc-O{{AK?LhNis7Ih+Xa}lf0~Wf3bJsN+`hvLXNGP+Wa}J=nbMV}F zAea;>xdPFbTv`Dneu^yXgAX5F42hO7kka<$vea1B#(eT+U+A2w*b^Hi!$f<4E|7xN zsfGtJ;urRv`SD#fXVcNhCDQ}y%T=NHBA@!z(Zdx3u;>HOxMSfPisK{x(eHzQN$M%3R0o{P1fW>8lOy`%IWDTQmG5mQb^b=6;0lO67$0L|{H$kcIQ8_DxPh1+^@m8nZlFC+El&_2 zs`MGSO7)90CBXGCPkjmMI>x(NRX}&`Xa$-NJJK5q$$DJty$AX|=qBxQk-i$dFs{W= z97ZmYaA`9Iy7BdG@Tll}4N<`GUu+;^nZXD357cdOKlNYE)a=g!G4rsW2;4khU&yP( z5iomcsFoF!5gb{jm3M0vT3LBFYaFCgxsmxlH|e)!E+ z^GgNO3k&8OBu!aj?- z!G{Fs&113s+<<(?WIX54uYU+AI-KD8xSX@%!2!yn8(c)0G!Gu2fkR&_XvcYOqCeGk z`|6~fT6e#Us~jjwFKQzx?=%`-r)U<;W@IG%?E%UzAKdCCW2r=o9>dneTEM)@UXlaf z$UJpgCZ=1c0SmSCe+rG7n;ydXFa}}Ij(`XBrauwVDbl3A05UNH6po6&vgJvT7TW-< z`~=A-i~O@^IyxqqM3_I>bjkyt7mPk+W81m64#PkP6-UR?qrohh2A6g)ZlStn!zjq7 zstm{9kJWAAGmzGfn^$^Njg9!{eE#5?FF@m7I96P}wyJNL{x}rxl@o{VB<~9CMsFeGCn}U3j9#k0bTe6q`~%Gj6mYIhf-B8AijQ zBOwipd5FG1k7v=Lg{4wS!^1Pu#?gE9<;$18QFCV?Fhg%S%L#YE9e*Q>-o*WuLubwV z#pyz6%yIb;Ng!BjKP%_~gBD<%6c!dDso5~mCIk~}{`885XN0$d+N^j?K{O=`Osxc% zaP4kv)OlQ-?r)~R@ca^ZWr;A|h&K2o<&hB}RYjqOg_u(*q4G3>YddzL$)o4Ll zc3*BNH!ZEHDp(s70A8AUD$I#H8P+T{H*#0@&mbz0#6a@H$igBiD~k!(sxqkkG$B_e zEPshb2bF=1k+GARpWl5JR@Dp0f$8k*6tl3PFNUT^w`82ZM6NP+_2}dTXMFRx8R+*H z5dW^SAGW{}MiQqKB+hvV2&i-DXW%dzo0%a6N-TyAH7Z$y4Vjt+tjV7$@;Cd-Szu%+ z5cyV{r60{7#<%A%l713N@p$P3#`?uX?+eOPLDaPlRs}$<34jwK45IM9xy;tNPQihv z3P%%vsxUyM(pi7>(`xdIy~ogn83wvs4pM~~qHHJ&a~b;)3k1~En^KSXwkIoHuGt;@ zPOpUC_!H0W39M=b2BvYFue$^v93KVd<~G=LT-~|JQ8ZQ8MU9XYPmE{Zac_cql2UXl zo!-;Z*lFgt1uY{4jFOs-Xrt{sz)&uojscmOJB{!}vNjLFEuv{-_dD+?~k^&HnN*-KvJ$iN{4{; z%L_;(tKZ#J^Zn05d4pE*AOx%&hx6c}rlw{MM2sVmUhpnuCDs~+&^Ta;lSNzr0gA|n5B&@!|44~eFf zeaO2XhAh_UZzEeZa!!pW5nh-bShQB%E}7U|2~+=RQoZ!VB5o_=wJ;C2@y~y zNQWWz2ry7*tT{+^%UB*YIWD4t;Ri4ga!hni#1w}$;Eou9o2gl)zxhEL)Sj8J-xz3C zdZDR#2+*u==2ADn_KYB?fP+X7G{_s<+uOFhe=$3paBtDDB8@lO;i61D12yjZ)5J$` zszXswLZEFC8-H;<9JRmlj9nT4_g*^;;$3<;Vq2buFksS9(6U;Ag^9HEad{sf1Vw(OY0|< zIrdcakM;b7U!KF*ySjeBfPjN2@RG6t@gX(U`}X%dlJ*WKeMXuuD4{a%_m)E8kHc-{ zb(0vEssz7g$)C+oe;>{ij3_Pi8~zS-5%KMh%*QQwp1NNA*Aj=7e)U(NV7d7H)$8n= zV=j?v`Fw|lucY^3`Twt7FmN`%d{GjxRN?=hpN~9z+CTr~)P4!G0xSe%#lJpvrwhg7 z>gwy;mJk(fwxEp;fq93)D@bjTBBGoIq^s1h(UTV{_SB}8YR2<^4h2(fZSDJhc}6&J zhAYWs4|%o|ggbMTVUfn8{V3(&qQLUper{m0vstxdf2?Hi&gAW5#}rH%ddI+NNdd0( ztWNq?XX>ZM|H$ZDuuvXd=u=jSE;fJ20La6$IQa9;JH+ZWSFz2_*T8?+(3#wYqVOY_ za@1cY^yGs*k!9%TCX`^A3Wf;maeddqQXgwd@r-C-D`h8SXuDaYz?Iv*YyA_lYb)$x^PU5tPCP}I8o92Kl4ikM}zV6*Tj+{b$zOB8D^X%m!j z@7*(`kD`Ktv*L?nB#B*nbrW^i;P{92FufUw#_x6Q%H-@Hs z^CZFPSuCzy(}hJ8)%S_1i;hI%ALi{%4WrJEO)C?zFaI?7W~W2&w#Ct5#VbI* zfm|p@b!(q%pmKl%3s@RmFTkOv1N1`Y;^=KR z(9t8;1a^9sOrOQS3krJqIue63TkQU+It#HoXOco6LX44cZurkD5(WBUvdHDzHmx$M zBU4b7oNDXnv>0>5vSBF?SGt3yee~$C2_10Dcsj`20D3Xt=H4 zTzngGKj9H!raP4o22aUAwY~7`hI~};^IvdB7=SL&90FFzkb3YE!zVyuM2Kl>#>=a# zk1W7A3#SPPCV<)UAlQO}gSCE3A9+{wyadf(S_18~8lVxR zirr82+dut`wml7*f81GSpI;LDmKiS$FdWpjIB0`moS9A>ZJ4=^T+T2JJ^j~KofD=| zQyZ7GI=5|RCb(m=)R`}D-?<~>Lh-j9AQ1z`P;n>%nlZ7kyjh}U`E07DQb6C+3BTn^ z99qy1H>D6RwTRvN?yj==ix;0DViDNCHUt18a=?Yc8Tet5q9bVJeyt*qaQRK!Fk3nN z(sy9?e0L#f|k?V{*Lop1GYc;+Mm<|5T5CD=YT)0Cd9jFV4$eRN3 zXdNgEnA-2!^B>QT|MUIuh|pO}t6DutpKblrEdq}4xt0wWbs>ZFV2uZS{d2H`4kv0j ze40mFlLT<`e*h7jR@~IxEX$@aPs1IHyNhmD)tfEkBs*?5RNRVM27zw=07i$TJXR_p zN;#VYPWo{@t1u&I`n4k}-uVfN0b}@?S`gjweMTL6s&hwl zox0h;V*(baAB@4l6s^he*P9+(aho@=ug<+<&}t{dVn* zzdik}|8LMIu44%{VmNy^SzpF?XKubd1xB8tSrs6 z+c+ScT+hHZxSEY>PAkwGUkf`uok^85V5z%lF_8F@I2X9B12tP~10V}1(yhwpdkI+2 zw8C)Z^T&(w0~!3|ug-VSf(CB{X*#qGwHqZ`g?T@!58YzeedTTZ#xR;N2s%5b`|X| zG0dm+5rB#gkmoWSQEXq&tOPXBAW7zH>!0iLh4xYm zOTQ<{0k>`T{d*Jf>AI#}R!&Lg9N`dt@%wo}RZGV83jC9lezm?*Vg5LRo)|+(U&`46 z%6XsZ~L|i6s~w~a!IyX(h;9~)}Xo|DjKzsfU3PiGhQicaKfv91h?$u z9L;L3^QMflk%aBM=jr7Z@YM$q3~Yg!K0VR`?#DPH_e2S~MQ{Bv$g-`pt9t2cNEXRD z9Z-o)zW3_jMI{>(K_=nN=z1Yz10P?_Kv;AVIp+nc4j0q?B@hp(i-te?1IkvX z(>)U%aJ+~L{9r-Rv8v}7A&{oj0kM#95z9Wrhc6%oSsn3+=KOfgk;>jrUify3z_2ZT2P9^U=%hVsq7bV3$?t;QdPG`R_S-}lc( zct!yM@Gb(x;L#`xHSKJX{`nQYv&D7KMebP;6H)Ikvb><=}S~TZ6K9 zh!6^lPI4?#8vR6y!!;wh+P99LtzY36Xi$llz4FX(e>asPP^Yd>lp#@8gLmiVhi8!D zD=&uj7jg93%zrj%-Y*H~Q|nVq>332Y#V8Xse<==bS9bPviA%To%+$N0nU;|v+27@5 zWmPs4r6{ED+Ous=@raq+X04$~{A|+}2N# zyH#P)*A2D)yMuEeO#FtX=$nRO8ZG|&GCc1PYwxGDG5b{9~7 zC`m8g9e+2N_Fa}#qQuOk`-+ettzgF4)JVP`}vPz{X4Z`>95uiM3y zuRGlJUZC7pvGjkdo7Uzd=qjfMnv(UUrB*#m;VX??=`ex2;*s%_^8*ba3E8RzFDUn0 zG%`KD4kE>Y=T=hFbj_}b+?J8MV7HP02%7yasD-H-IRfCV(F8h{UfB-b$NJkaBqONiVbb=I))ff|w#EBaf z61@L|vbT<^dhOnR7f32n(gFfXNQ*Q|Nh#f30#YK~Eg>N-ASDgb-CZJ}gmg-`prCY| zx%T^>-#PCX=btl%^Ij`$;d7n9rfN&KjUO+3}9!4~5C(w>mR*yc1 zSwKIpRIb=w{6rWlWG6^f6&t>(sO&E9Btwz(63ll4x3txGxvR)>GK zIl+`@q~zf%-to*cl!qm(M_>Y zC(CU8tF$~zEw0JCy$+mY5lqZue#YA6teBBzD3Jl@iH4n*0~`b|i18K=;ZC|Iytl1s zVxK#?1AVRAp#S%^L^kS^3MY4pIviEj%FR|_S&F;XIJ37rRzwB(zUSK0NN zH`~jVZE@$G?0b)%pbMcVpfx7i_fa43PLF0OQAbF{sZ6)Fx3`Z3MsuWaTheVUv887DjDJ)-avo?X206BkC2d<7#-3kpv17j!@<#0QD1D*V%?j8h+eoz#|wW@A_{^d z#RR$=WL&0L$$*yfu!TXIJm8$pN)xbH!?J{tc~+B5)RJ1Yu}zpp42UP*$uV53^GB|p zPJi(JzFyqZAU4e7Bzbei6%t7I{$!Vp@~H>WJq}8pWm94yE%8h&x=gZ{`7>-1N-9zK z*4B3se&DZah`f*B56e1cb7X zPn*kg9o~N_ocsm+%X3o}mLg|*Vvd*WPsP9GN?S}+Yhzv~TnRi2#_j#L4)JgRslWY;U-CW?CgUf zBK9pO5B1o4`lw_xqDe*ij;SBjX_-Ek;3WHN=Td-o$Ks;^m#HN0uE@@N#e%Fr@B;*UUzCwyTxB2R%uiVmf=#>uZn! z@Q`4$mP(+JT4s!HXYdgj-pb3wm)*D>G-46Be(3^>(MZ_+E*QD69Z<#}DVd>Vawm%4 zDPbeliqCzwQh&1vm*tMOj}O~^gc}Fv$wB<^-vLeWYX`k927mjN#Jx1tJND>LX7x`} z*RH~WJK6*~S1@G<h4;A&i19?rCUsZm=ouJ-Q8!KfKR?`iWj4)xE1|L+ zw>qlF2!z0w|1`l0fb+5qCt0AXnRa4f|J2k;gK2C|`}wonc|*FX>l{(2Tk zEu;aXL1EzF@cowOjk?YlaIS9t>OozK8~~!Xe+LR{sk;zAzt#=W%YLllZOUQ*=VeQV zlc@6wLzUVKrWs8~N>a_Z>njVt-;H_<4lF;&V(Tb*F={}zhSY4{hD$!Pb2)R$-JSi9 zdC*7Qye&mUY?(2>^T=kRjzr%xK-h5jIAXAJJ5@sVWqIKag_j0viqQlDT~f#CF4x^m z=?N6kg8JC!U@-{Fz!Fsws8fzRo-mK=HJGb*&hPaby!R5Se*BQNa!0$jp-W1dYwxGJ zUtd%jYdoJKe>ZrKwR_wB-pjSl?euNS6}fll70izQb$V$8-(fa5e1ge$PY9QCq#SZ&7=eC572LR?V@mx`Y8pCpc8W>h(iL zoOVzOg}qQvxcanGPcamJpG1YdsBK~W5ga0{N>6llW^LPQczTWEBf1LNF$Sim-A7=S zn)i2aJ_W`BJGp5#Og1bt52uJt`v{P3gb;UooS66TgGSBRx7Hb0zlpQq) zstB;qppoHp0d!^ulnk&!X{-yr0u@<3$c_YQO`pdfH)?tP{PKkX3AF=HoTQi6lMgTG zy);TXe}&!|aX5UX1VZ~;a-nGOF$$KTYcM2FZ))n*uAmBR;6V<(oMn#$jK{Y?9z}x=Zf5H`~IWNSU1)L0^Nh^@9}qbBK_YJ@Jqvp9(5IyESvHVv$2US|ax&;xU-~ji(^s&A|84*$R%p0A^AxzY!yG;}{a1l091%x1k+9 z6hv?G;9M*DLZPIn(9%jEkxWmgIa-1q-CH%4i?pIRsyBKKMx06S%?k-g6qP$3L=dv{ zZcYkTmlqBHNqvmUc2rU;V+3MBb=4$KGfQea$`?&o;oKZY6b&Fb5)cxyg;S^`NNu)aquo$c!RDvNh0Pc*QNh_#D9xzHHd*W6uS!)Eaizv`$R{(k=9~`zE zpk<&jWoA0Hd{z~Py?*yHoQ)`&x^&S-J-@$+k*%(?0=#t8Td0UY%a5juu zh71ae;r8j%l?v}$~<3KB=F@GuR7Cx<)rdBQ#lzb;Z})|F8;1~03M%)SI3S9tH+Dm4g-=09xj`{_FX zqb6PLS;r}#O;kk2DCSTkft&5N&cMxbQ9qcjYi=8*3480PPJ|ZkQ4o_@Dd&tdms{tk z6zITY;pi^_e<&%bsNhDKP5^B7LNn-wZ^7u3pI<TGquqj=4m8>v0r*h1z`2ct9N3~Nl`#v0 zJnI#RPE0@-wF@*R7){~C$N(luw9)xlzI2q45!qK$E||9=ph)%3>@d<&B}mNA&;OXk z#1SJC2&O3EDqE1)SxmAD{mypnM#o|NL7XvdAC~ns2k)GFYpOJ8fBtiC#ddY^fO^=q z9wylsq3DCN#|woI*274`Wu=K6UOv*QFpEP^B$f}v2RX~;M5*>eWhNpVgw{jiZ$m<@ zK>;l-kwp>2{m`!pA5Q!`OUh9WbGdscn_K()*J3gR*W1oVt*L@J&C<>Z4~d#aW6nUAH)dGYu3XM4+DoE+|RQoN6TfmU9nk!63wb+blt>g4YIDPhI{qJvp~6ij6ZS!wM3IcU4+-+Cn@zPdTZb**BuNByCaoC#Hu@ z$E_wQKw3ZcJz2uUjF1X|LICNVrwN>6X=^Jl$A??OqwrMEgmq+-Nl}rpudgq9U~LS# zJ=FkwJys&jR-bR!acX1)@!scej~o(Z9t^Qgn|^Yt_R=(#+>(=#sR!XiVsNQ@p#3^l>=4x#4ef|z^Y6q1Ak zeFf<)fb|Af(rn-BE0~i@uJjN3t0#<_auH-IeXU>(hr8j^#}%KUSt|Fx!_mDe%?32eHm*eiun{Cx8W55cLi!5r*Z@WhWDP3l@Y~Z z2!JKznos32yIE0N`vsn312j%;URJoR!-i$eV~EykKl?0FFO}14MwH8B`~=r{!*;=X zJd<3<*&=wySK{UORGTI_sZmmR%zxDXXb}dO`9K%LYNG?H`QZ=3-e*cMls%FCrasMI z4CsU|BTl5Z=C%5vQAK;1b?ep3?g^^iZlXtvR$n>3epe{qvX!8tb-DgqBu0~QPc3F5 ze`#q67m#|y^3c7wJeoC6Ejp<8KIgRtfJBRiRn1v-QPIwM$|UQ;!modIuUlGDZl$K} zh>I$J?Rz1;StFZwrx$l)^WRwveCgjqqV`3$cPtlI^AC%P9F^syvXwKGn2flRn29uD zIYjHXdTE<*l8KHw#fKG~P_U6zIB$fvNa1vG18hzTZU*p<*CX#{PZ=4_-%MY^VgR74 zG+6LJy7e=6V{Pqw4fpl8!CbIM0;W9UCV6qvDE7b}=zO#dr)C;RYXa5nh1BtYBU3I}E9D!}! z^912J0&&p_q7Z+-R~Exk6cRK{E_JNBdtr~0z+?}#NUKETy5(*th&tps-cFvx$a{F05uBDDU(;)nDv z)cGe1-bGzIM6{`;Vf=T++mr6Ip`o621X*MI#8aij#{Mt?T(2*jdS%~K(F-kh;{Yh` zsqJ6`7RyLaH#hDEyXCK`vgVPlW@G`3C=hlX#>16&DAgj&|LD=52F8~uha-q5>gJ*} z8Q~kBm>cHWiqkQCujk{h6zF0ouOZ>?9Fh)GvC!WBc*A#is!9|D*ECB2#=*(=rO&jI znX&Y;sT3d;9h>kr+hWq7{N@A|QnOBp0&9~muqkIzWUy#`rwysTsq#)uPtUX1m*&)9 zJC$X5jmA6Q)A^yURav_zwEhb^Cq1COVrrUl#PXA>apM<~$FdZLC7}qxrF@_mzYUnI z3m;|W5dpBcM6T4Q7V-nZ_aEpE-ve#96)CmL#_L&r$+tD*eO?aojfomBH@V_|<p*Md zPqzFswmKI56rOY6Z;;(h@95}wo&jf3zHW_G{03YA9~yqJiYyJpT3}pVAqeb_qIq!T zEiSzGB4n}6<&!K!LtTs8%gsOZadRxGel{aG@m*_i0h8a;R^ME|{lr=V_n}rtXJ>D4 zPaTW_C01HI{VaK36o!QhcWwqL|#%3w_& zr>pC+7|iWO;M1V7P^iuVV-irIzZCT2AxZa~EJfX*JYT97{mp<7iM%1Ysarf^$NHV! zQONbGS#mU_siEOJec*eEKjjDaK*QAEmK_b)dcnZxH zaow$d)BSg=n&AQ3j?aZX+ra^1aW*+2HzPyiMoIB-6yl18hNwP8TVQNIGn3$)HA%LF z3%Wd%H-_^~508P)(8{y+HPU25HgF-W(q!m6=5W)6Pn?F}Tat+_X-5KVgvQhS`dA?W zfqCHnluN^MMj+rs2u3OhJVSHSkGYtWA#HFPL~m5wv^EeVgN_Kxav+OrV!+3e8gr?9 zNex%elgXQ`x#4w+a2n*L^H*mpC}>0;&Bo8(=SH**+rg!G3#489YJ34g2&V3=;PY0U zb>`Zd8@(TmW}E2|ekR%v(nW4hSfKTC{dQX^S>6}G1<@42I71b@ooaB~ndSleT@1*( zVSBd!x2?|0#%9ydlaS6=Giv_X?l#wIL+_=?RtMM>!y#$>Dm0<#v%#2p?4zRN0SO>OYsy^F& z(c(DZIwPd@&?Cou~E^+)_lY2fK;A9(hX*t$3HHyE6FY`r^by?s~AmYePo8#ZOPowJ6~re8u9u7B2- zqSnim=5X8V!2(yG7Ttn!H6|BmZ<2rm^f6))h7e%#QBg|_hTW8#Lcn3w01?45WBZb9 zW6OjA0aBlNQ!wAni!z)$vaNxA4mpQXv$L}s1}olM2tl>Bb9FUL0WfD9uX`ajw*SGp zJk5igFKrMPr9Qv@J*~9#?Ce(l&&Y+INyF=qsVOalC``+LcSMVIK5gRTOMmLQ1OdE$ zk#IL1AAB=dxw{UX!8+(&y&C#NHD7N0OiNeS1P-tAs;Ynyi}%R4T(m^P1U|sJ1NFMT zVjIHx>&Q(e86z_A$IR`Y*VTAGa!ODK*y;6j?Pv8shzyfsbD zBaX$qZCL!8oLp8~yqxu13k(?SiP_L$>>nN;4uAgYRzaiVJ?;>fJF=0*dS{=WW@Zym zrQcAD;`|sy)`+IIPrPHZCAJDv3`+{sAX>=#0r1*|^Rel90a6>>9KnV>o;$iLx zIC#L+W(;b+-~av*L#e3;S-mjW&na{YzVI=A?lRYK`tWZbU+cByJz>fNYCU;-(qB&s z=v&TfuaT!(e)&Po;lVGw7_HFf>1oWsf|mQnJ%l06}#WS@0<;0$g4$K;0Sv zsd2;&`RfLi57Q0({e1(igdWEo)lnEOw;Nm-J8IYbPEx;iH4v|vBa;ogxi9A%%SZ_r z_V8qqor6TT(7${{vvEP;j#4q2szizSqS(_wA@DEh}KTl-dVZkMhHZ z4;kSGhSY;=%s$*aKX#;dA$93+!=4&b2FLuhPP~O3G#fm{T9o( z5C~NUcN)%N6n6p4#my(AqxrXgvob9P-<#$ zU#Pu6qE_L1?W6jf^kpv77RK(=lEm3Rn8ve04XROem~z(F{L3Du9n&K09FHt>u?0f& z&3Rr^ZJqr2COK8^fI_X;7QLpzcdZ+|S?l`Q=+k+rJ}EZC;N6$0{Ac5z3pD>F` zSxx*ZBXE6o|Bsb$@$+X{BA!RZ#qcwOtgz=8Ro(=q6~N6F)KnIP>WLI~^Ec33bJ@c=#IGqkx%))mU%2g1+T3}()z4cVtWu0!*?wxsW`E!TW*>Nx#GWWu(QPUL-88_1~PaDi`(r5 ztBz97h1L=6yOlyHNcGOC{OPaC-h`j*=K?o+D!wZq$Pj#pF@A*)%$92PT(@yF2Wx;S z=$W-OLqGg$F5+Vd--1tx{KlS`jq2mWWxcdwV$D*+xN=r&0M@UA)t zAX$DNKA;73AmrcRItfeIM*Nc{Ux3%8cGy!wo~@aUjZF(|;%BkjZpFJv{$gwtqa%v8_lI}% zx$Sn|Pvz+4Yyd=7J%mC2Rp;}6w6FDgSB?VE>Kk}7EHXDE3i-iU^lAFaa)=t4rUjo6 zH^{#HGi{!})N;H4CTsEhFR1USdGVp1Q_nk$E0bq0I&PAbGwhPArncKw_|Ir^JyUfA zMno_W)>Wg_qOr5HJ3_Pc4H!=5ouPJms-D|u`+DqaE`W`@&3_vSie=J7?Tjhwbeh>j zwEFu~^$1LhpfZufWJ?Py{RmpG_j-hgW8^`V%%S;!B^l(~p5IXRwLh$=k~JQ!x|hdx zL66h86Ah$ZkT!J#xLKVrYapPaiU6{1$M^5I;oGAk?CIMI2x~u$5vKjQk`&^Qq|8j6 z-I4p@O6pZIsCQs9SJ;ck9kFNF7ESKGp?Rdd*?{9LCzehB^Gk_NE$zc1y3$*uB%JSj z+l-i4nF#;x&p&(YGj=Y&yC(12)uLH+<~$e7rd4Yo;?k+sg{SMgdT@9clbHAp#1Bb6 z=fCP61RLjR#7ZLVmifF-T-k$!DHByn#(1$i`mCm7^mmG#vd%M68O&Cy zrH+;BJL;AM2n9&^gkPZd+`?%0$9JffKof}fB1wrVFr6)6Rc!c~aJkD5)UG}FBG5+O z)1X_mdT%w3Q8JD>lvL+esS#GL4K&?JgfS&FNBL#<-$1){0lxX3k?K)CVFJ2KGT^i5IeX6QjkJo*{zuFj&jQ( zhSxJy*f>PNmF~9o#@U}^`fgxU%hcBV`vVE=PoXlG0wsIy`O~LQcW$D+B?4R(l0KkL zPd;!uJIxnh;M%rIaZ5A=ZQiiy9d25uF=v<<6E+iFP~Qh^YZg*Fy_&~_#{%}tXuP%y z?}2w2?-F&iGiiGeP5TU&3nu`n{Rdx~#Z)=1PK_0MK*w-?~r z5F&<2(A93hF0CJbYrCmlV?eqJM>+k9it$~`rCc42_3(|=E_odkGS*$ zR1zF?1m{qKN~_s{U*1>$Ux}vrT^j zI>jaC+oE^_Fi;RsV5xb$2MRIfJuey`h^qYvGnpuRM@QYX)YK;}T!SXPr7tf|m~!$- zg__QN4gipR5`$vn9BOei^O=fnY@A8L}E1~_f$l;6P!tVMO?4`33;9Te`a z(zcwc9aYG$V6^fo_ao?+RlFgnHH69kF+$f>H4yS3AhJd+HCWQchbE7jdKqOJ2o?2i;fdU6&nj^4zxAKShv!-o?8q2?XF<1E z5npAa!W=(uBoVeryI-I`n9vx4^$f|jzkmo3 zo&s@Z6UEv$0ED>@8Y2?ttsj!>0ImgxHVr2yK6L4C&_1XY6pk~X^x=psh|{#YGuh?Z z@p&@af0A-jE>ej<%KwWUT5#$i0#V_tnFE+g8rMR{y?)!Djn21b@$|*#U+KrhI-|Po z1$Ol85jA@ycWE)Cv)ZGx5kDYVAi4)rL(B#)^5HrT3441^G8~8oWYej8a~pyDjYYB) z$UluC_X-xY49vzeyGfIcQo-JvUy(K0r4eJ7u zr|3s#UiTg7vX`b>sQ)scriDsrND1TM807^1CgZ1Mpc6IlxXC1ba#{{2gmMW!Qh<2u zYJWrYe@m1$&N!;tw{`N`s;tq8=`GhZC%vcVT-Btq7r^f1M}XD+R**OOL-Iw^h{Y3+ zKg&HRkkJ_1Jr^0s&PUofM;W4ZXE)bB?`gdTzf!Y^hBzj)ue>LKy5fQluW35|| zDD6J|e4%ko07JH1i&=!6-K1Ue4LBqY%1%%|A4J{+;&4hao?NUSv&c_d7w zbMC>RUv-!xP8ZX>z*DZR_H9%m^1dST+FHH!qvO4Q&JM-ltB0Byn^SiMsr)C}#fK0K zI%p{gHZ;~_IINg+O;p%-diB>+U~jv!Rn8@OB%}pGu36m)GcI3@j2lYoa!wxF1ZI1@ z#k;=!e?vJQ)Zeo@IypJLnW%Qp-mkkt1hA9ZE6*x@Ob7`9TzqYR}1F|)N$8WGQ*hTGpqhVrouk zlr`EGRz-ony~wUsjO3tNgL`>kZEY>6+`QLafl~m3T4>WC!6f_x6q4DH5eJ%3$Y}Ww z6#_LgH0r>3y+HuFkB|^7d~xV68oA6e*UY_{3z;iZixtS0lK%}PM<$r@YOC=D#>sI@@h|t_DZ)vftcb|g#+JUHN z{%wL*O!#D(;Wat}I`7`#?lLj|_HhX)39!fi;Hn&~-4{yg`_?ypUB6!C&s8At#P&35 zBZ9kBU8eyH?f&|kxilZ6Yu=gX%$>Q~xA2d91;|3M%F-KgTl~cgbQlIBld**OJTE?x zcdf2(L@dsdA(!fWL1DFw2f5e>^u_1U|CJ(leMlwxz%PNmH#hNIU(inpQ8Ms5Cy_wM zOk`((>dxsCT#b0RgvvA#xL_tK+P>}k{Opa!pSkpHHMZiCk}{2vMUkribT=s}vqIJr zr7cGzA;zU?o`2g%XX`Qs`VrqbGeYsv$yIXlR%uVZ{^5?$I9E7j+z-?E&5POK7$|CG zaywKUB{bq+dL%I|K1&IW8k1Of_jukN1o*-is6Z=G0?MTMHvrjp1K}GT`2HHf=&wy= zdz9$-vn}2J^&gFETRv}JGwAsp+5WpGAy9UWQPp~4+1Rh_pON=CCZV9KZ$-LFJMKt- zZ_vQREESk7K*boUci@&^fuM(z)i}jP3uo$6#pU5FRnlf&Co~|9+)jo!YtgSV;*B#) z*2emJ78LeVb^W87svqc!Wp8AOTdz!4dGA9tNrX6A7#Ohjbv}KLb?ODTixg0L(5N!U zLrcCB%ooV8Exl$f%6l7&iwI9oPZ$c*(9()M!#ZsatL&}?DM0(y=)2Ok({-Up+vXA6 z($Z7TBrZ`Vf(I(*Ue}inIk~Tv`p1j3(b3hpVOYzf4sRh3`9nwL zC)Kemo_c0m@594qQ8S!8a3F}*8fpYu01!KJ34O41^=-MiSZG`K=y0~~&BEUS=O)E3 zj5&LQq0FCd6lFOfNdrQhoOW~Hv~T%pRlA}5`6PIEB=K41D4Efs1(_Irs}oOgYO#Ij zz_JtfKjYU8G}qhx<~HrfiSkBKpZ0BWmV;-k{On_>pW4ttNe{Es!LolA;kae;eqxCM z^-UsKG$O=%rG(u*8#OoVI(~@ADJVp`IyzdPug(0!G_)OUOiFA@>8|y8%9N@f9rG!2 zXKCb11mn=ch(!$vTYOg~Yp*>e2=@7tgNIhNGnfkJEW}WE+9Na2#L3v+ldBYshr;Z3 zA5vUSqo96Q1%?2Owg8UDzOyp1D;QDB)= zZ%6-v^bT=SJH_9CA6d-lJyZxVe>H=hSsN@tz)AVfXD<#eAMk?X57$yP_r8~eC^1+e zH-Van&2Dm>Z3i)>hK$=}g%%aggG=vA>6<}_@gPSliP-S!E{ud+8*RRN4*+Un= zBi>clV$%eg*DeJQQ*af?AWhx^he&tU3AHyVIxY>-InPBYcp?2-0rwJO+qB-(PljZD z{sWG|yWeEjfXfZ05K!H-c5GjU>L5hCFD;u28n)_^`ETA6vDz6ZHEa=4J|CBMk&XK? zBwch%;mx%DZ&Hu$*?q1z{U4_zoy*&1b;pH&*@GgoSXNp4_7ARmfe}}~vpaa{zVG|& zkw?h03;zJ{DI@(md!C2+F!6?r9cKfuo%S6}xamkuOuJk%*n_T=Z#2uNMW0F&skZg^ z_a_s6{nzzgB)K$fLO7utR|q+&2Zqgv2I7Eha>b8y$rKP={$*%+5ZaN~I3c;tW#;#z z;vy*OkFCZ;(Gek@#Zq%CIjR-*p=Fa&O9}eBNgw2T+O^B49NiVb7mF2^rN$#*8Ei}l zlft_e&jo?Q84V*_R?VVuOz@-&dlPIgG*3O23_r7{+`#n14=Z%3*r-f}6~$)CHBAD( zw8_^6$yMKsIESHSr_y4ec!P#6=4*}`a}8KFx;f>VM=UOwAOWv7R}oaA!ePo!_lZ9c zXnkxAzMqhK-t`VI1@tm4(pcnQ?e#_>&}p93(98a?Gw7B(G{n5Kfe*V1lU}!jRcuWq zB|E>Y&qH_a+*z^GO89*AOSi=~SHdvinXKRa!01_Y^i@~BI*cZ82@j1OVY32rK?`~> z=@6;dKS)e@Y;K^|bNX+CP1traccm$jL+{Do=|tCr5A%FmHs>Svye|5}p8hO7f8CW? ze2?w9IdF-eA@&_9CsXm4dn%&|JIx5hv$PT-Otp{dAVaXgFotjTasD9#^8ys%NC%Q(sk)1G1LfJ?!}^&k#>Dn(FEwj>=A zus+|DHK-8}6}@@Jc=NfMn%Yt$`CAopS87

oxDE3?qW1d(X%>if`-N>Lhqsb(*Q!Tf9pj)dmz#a3OR}W zSgbhv_hhFvwt!rC=St%{KYZxP@n}AAWFr5jKUV)I|K%;>vt8Iu^4}6daWCt$-tj+& z|0ge|IP$!Wa8}Zazy0&8RWAh1|BaGCa+R*%EjD5OkGRLp|3609|9ZKsNU_F$sviTR z|Hw5+pv~_^B+%x6{Xs8FK$|lW?f?AW>-%n);s2xW*~ixk#4p_y`ky}*3B67xS)%&? z{A(|S&@?6qWlLGo>HqgPjY{;p{y_4ON>T=Ei9hoG#Xr#0{r7h_6Dc3u`$2cXef$4@ zdDI+azScM-wB3pSZ^6;0I8v?u`HCn1KYub=R1~Ep8ARmDo|c?S_z2qn$1`nWI9rJ) z(emAR0zc7l|9rCl4#cp?6|e-vuo|9W2|ULlzoOLR692l(<<*N# zn@%A9z)PX+hne5HqknG^TKtRg?%rNTy<8QZB}dqu67j^$gdk(NOo?bbI*Z9MK&95c z;CI?ey);-OezB~8Z_D^0qogtn; z^75{^nHh29UA{eMaT!qW29HM%B;r?A!JdK1D4$&Yv$wamu)JKU5>mk?K@4N~An^S< zKYJKQUKtV*bb(EK7jRdo>dfj)eo^CA&JWTbUvEC;*I*@STUuKim&zYC6Y==FiP6Pr zXh)fN@b<(8;YAxG^A=wJ4p6Zkkl_UHAV?f36VD67iZU`XWI-w52hd<}U zxshN7Gi&}x7H>X4SO8N1x+Ua=7mxij6x`hEtDqdd9EASg&`?xFNQhm+i`*f~vdJ9+ zeEi@2tO+t$=wPI&4}S{>X4o1s_Jp z^g4&lyvBAk?=~P(;EuBm-VqxxTM5Dj``upe%<;D>Y+I@bClhTA)I|@-kW-0V!5NBs zBP7%`j|5H!NYHhF1dS2{kJ<}j@|>3?NumlDH#hltMMSQ38}!(r6&VD0%m0u_rPdIi z15Ujoa+n47LaOm7p4Xdk%6Jz76(V#Psz6j1GUgNs&Ok<^g1Us3l@$kEN=Oei!QH#z z&`cfXwt2pWihx`?EO2<(?M$%Yi;H6U!^;4>u-#H8x*m{gAwTJl4ud!4}>;pUq zOS4=xF?W&7vrxJ;<*#-UiLo}{bea!l2gofgNqw$PH=ZD#S^ZW_2L;i32=>dwrTfwm zGv!u)q*K3*I6b7}{odQ_8wDhfEocISVsPd%^g%3)vzMqSf)pRWy#^AUTR@)rRx`&~ zjX>OoE^wD7&@FLxQi7G_S_*4g3aj9-aDf$0=mq2z_nVwz?>3M1H$%+U_j{d4WfYZ= z%abwC7N4}Yi!yL>MsI-@#|uc#6QHB}`e{XQoHp<;{3=-;H-{ejZ9@!3+MHIP=vM-& zW@)OzIZdiHQkisBii=o;$(2{sRz)t6&|z4?SG? zOC6jX9h=%+Nj0FpxgCfh|OXUu*e_LH090Iupfa81+>-3DU(4N zDbUb;MJ#{hV0&2>1O-T9ZFSnu1#!iTkw&ht~4&D6Kdd{gEe^Rj5aPBAm`#fElVgWvgA6C(Wk$^7|v0I#b76ksa zQKC(T2#TBYC3k0qS{9@(90KrrZgj*0_gkGY-qTT3Zd8vEbUtvx}nbao>9x;E#>x5X;ayN)SzF6aY|ao@AnvcO z3s+=-;QlS#+CSRY(;DBKs;=gKb{#4IAnR@Mw`b*q+4HptnHj=P5tb@#PB!tS;~I{^T^N zY%wU`VAS~f*W#jGBtBObcwQ3mDEW=z!LbX%14OdsZ(;41=H~hLIE@fTR~J z=!jT>$dtc|j8e?;gIbMF1vODoco2Kzr&A&Y)gjo%9yzYdS;B|_h(>?rW+oitv1t+D z>A|rQ=FbyXi0hMp2Pu5`@87&7He;_nutXxExz}vWO_A?NX^x8T4w|V5Q5sQ5XnXsK z&lbo7KNOgVmVsd|h*;%1*6VN=Ix5q3s?`!~z_O&ngEk@zQtFkvRpw3k(Flv1T zM2vdp9TISpu6*N^^OWsT186lN1}^2tQ&_35S`P<>lHgcqsj!*leHZ(r2bypAq@6e5-j1T%=CMCFjre|hm0OyJ3N9LzRgC9aq7z&QKFyudgRd~G3 z1PvD#A>`Fs*n%s`R=DLw&DXYx4rW(}A*=@pW&nkVA5_=IENa|)f^-J@7ZtI9Mg)Ep z62ht-ZwxPoJHzjYl8#7-h`iikQl`nQRRjBKI>Unpe~UEB7Ho(9R1bl}MQ6x9^?jb@(k+Yj&Db*; zUAo0~`_zXtG@`mc>L+uA-1@=%Q3BUTQ;G--z`_EkUDU@%7~pTpz`_aW@B;*{Zm{uR zl7yalkir2a@HddO14k?*z;*{l%rzGeeI+p|fv8s&gxUld*HSU+Ds8I>= z%^*TdOw5>5p@0q=P?tS}^hn`DxKb!jjmQaZ?@%- zlN(NCO#V(2FzOQ*55P|~_e$;)6Wj?0IPUAn-Kh`NX7LOS zNfNz~_*CQMl4H13@18w)ZiDjU}M=t~1nt1c|tK@MFPSElR`m ztCQ~*H2GXp!Ac8;<_BNDefxmCzBy=VeY|T$a{r{W0tVwAfZaB37NuESa9fEmhQ~*> zxW0bW3)*H4l+X6X(Pd?}Wb&ib2nmp9@^azaw;IWkWbU=+YonaF|dSLgLS0 z+j>$e(C_=Ao zY>=;mPFyB|ej_zLp2ul>tbp|R*X)MODEB8}?=T2@gvb06p4Df=Hetw0jqBn3HidlI zpQN(M&nj=sKMZ3g7B@qSfh&1!Js?v)C5O;OuKZnp(^07p3=K4H`N{f$0An%&+MM_X zv9dSk#G<4@;`RB$Hgn0w-m1e|5eI2Q5B1OB z{mByUc_=V}PBGhrIMAaS=A*yU#UDAVA0RG)GUW=1uPN~1YCJpnW73q5ch8`5f|Q79 zhnq7rRsYNyN2&uN0re5Zb$)n&(}at1d1d9>ni?K>)W#&5HOM9ID@W^z3K&Z1Fl(F~@R z5+Rpeeqm5ar2_-#F__@jkH7|-_~HR!twwyJ=pquaR!L|0mGgb7F&S_np$JFn`rvXv zatP1m87>0M{G_PSRjlEaUa-)nvZe9xZpD3uP3O*+-rg=#u8yBS?;%BX@S}`0yF0?V zybstuuw)=Vm-{-Vo<-v$U>zR?pS!CWbR1pakv@C*l5Wh32P*3d7+8o$t_XezDKs=Z zdMcr;R)AHwsXl;-V_l$@toefnD^%hwsKY6mG|jeiQ+TF*k~k+jq*ki(fk6i`-DZ!X z#4~Buc_DHG4Ejm%VZvS6-^WA1lQID$)EAgN&-C}-L>O6HpVx(bE3E$7Hq*hp5*zrz zwfx)L{6ZR6e^H}?c2vOngWw9R0N|qq=8MhX+)e$8nVYN-)e0p+DuAu-l9Qii=C-ly z7$xe-(k*}&sK#!#A>;CQyIuExMbeRrnj7EYHDlriv`_bF(9 z@%(uQd}FL&V@~)c;J+pXw=Im-HT`q-yE!Oe3LE|umeU^?DJ_7%SDjQGO9*s?YjE%V zcKG|%#`;P}S3bnf6St;P{<8i?dWRG*F7)A=(MOR}%3bU3#1HZDYm%eYn;;BCn&g51 z900G67QlYsREH~dF-+w_89 zFZW$(p@FOIMJmh9c3XtigK~k$(Md?m8tW)5@%-ls_@EmDmEs6!DmabXOa{&l4D7(i z)42_lP9iHWZ)^uGs8I-)%6{l9L39&cE5SQY zsIs}8StP8Sf$s>`X0>kZYiN4UJ(u;>oak_Hb`XSJqVE5y>O0`6-sATV*&~}0l~Cd& zL`H;@Q3}~3I}(+wa&3yNwh-4yB?%ct_MTa#5Ry&ys$`V^bMEi;U-#v@z3%I}&N<)D zc)y?Lc|VVMQp4Y-w?dS^Mqlyeyc!yPzUXnyO|jBv+N+~xlNG&hbR6GcLNX_rB6XYnBAJP;m~%d>w60u{IU~dZ-GzONk_)j z5!6>pIB~ID<>Y(2Lgs5=;5Pje<^oQJhMd4D`plgL?Q|WGAUZ3YQt9nTY z#`^OWYAL?!3*WNIVO(`Eci)fYc~V=uUW{An2ahcmH+P|~5W5?}dHiVngZuaQI(>W^ zimBl69E;-o^uqbB!Q~$-iGm!NB$Ns1P(1wjvAU{>vh(D=2R48#Z(%-u2Nh*-{Wh29 z`cq1<2y0hJ+76B$lG)($@;{D{i*5+X%kOk9Foz$omgO>9R{=4xnQwzhUjNe!8l~C2WKuOimh z7yfY-W7^oKAI)%k{Vt3CTU{}avR5Py$IzV8sM@tIvAA=N-%2CH-qkK{{H$~3Z>%T$ zURJj<^cY+hGybTftA7u)fK_ix`JG1QMg^g#$YjJPagGz;`J9~Oj- z@AB13Ky|SD&R0x@l{p(%=d6EG17{GFJ{rC^E==ccivnw_&a3be={86D#`Sfnhx*}IpT z&2VyveCTcxF(ZfB2IHsOo%`Nq_+wNbE_^n);mdu!P6|CthmqhuQ&yU@`bWp%uHDyM z?z>uI1!T^rJeir1(N__^FEeNbYj?0YZ-L!Jw^G9&8P(>H%^g`ner^UKF3S2 zfud6$RsK|~+gD3cQ@Je4&YB301G8Gm6-TTuCJ2jhbhmPhTX<>&2EW+6<(puK8EIdy$M289psnH0m|!i`Bt`O zk3K{zx>@>FzRT0)M1Xvmn7tf!LrANTu&^x@C%TaOY|v3rHlw%qr~pGHzCZfZs^}x# zBN#4bBh(}?h@I~A#$HW1T@?5(WFtjkb&@~c)KWq74sT4jyT^+z=_G)iKFfbM77j1{ z{Au|TcEkMqmI{X+u2Ceh-T=sHi{u_TEc=JS+h~ukm9DI8Y1l|IMK6vubG!q1`XPjs zd{K^XyVSNoK5}I^8r|}Y{_L!kptrTP6~{mv$9sDzj2IvZBbV6n;>8Pn*j;+>H(kZ7 z!Ty`otXsMlPMT>>7b;Y~NiS_3FwfTZt#WIazMI3uAT~2jey*6y@@G3JZ_fW|&dTRw zHc!%Dm`(KftGD#sz+sw8;G<|AjZ8ZBC_JkW&+HRL6M^`T8NE=5E3qY3Aw9?azQaHN z{1zlAIhW)pF!9MrY*+ajb!KL;+DXG$XSdy+12M$$`XKKF{rv&&!?Vg-d5@Xq-Q%dv zw~*WuZOA)@dgT5CgEvlnfbRE&yhW5uHz$Fg;xjety%C9^pRo-?bfGmE4t+g$LXYzr zK7av81vyZnZ@}1&g@6KY1~Rz>wSqOvE{fnOx!fLMYdo=ol1C~ zz-OIW#r{mMrr`WP{~Y7Pp_#w(^Gwh8A2nNIT6Cr-(Nk#6n*ia^*t9$(Q(PZ!bdq-(V-(dxH*h<(%_ z%+DdT3@7k*m%=Nb796Gv>}L#GsJwf`TR=9KwkV;@q_MY7{bQQ8<;)_tXy%6(?F=bf znVbLF6RZ@=Q+$RSRV5}2?)n8RCkFCNq8FLM`t3X{mef^d4jTL2*uZA7WBkJ6t8%Kc zIwEZk_47^Mkgjr*FxrFEJipUVgA!G2yy>bK^w&>k@%J(EVAlkfPBMqUm`J1BA41h; z@vK)4uSmto|HGt~nX(cpViYCK_ypDHma^+Pdij(8$135!e{5BfgFwbs{WINi@0Pn$ z&MYK8o=@4$-unN#EmTIo;oY2};@)%ffAhBgbfw0Vb=RaOJ;G!B;j4*Kby*d8O#YtK z*$l(0l%^pgtdTYdT0fE^rug@?tGl~CT$(mj^$eAUdJo2lns3E9^p2q}w8FsN&MhHF zc?-}5;?US0rG1b-8y}yqg0)-s9ChpM-Y`4q% ztrSZ77(H5~A+0^w(blGPUYd8+ozJ9dkW$g=C}u6XNJQ>H4LYYwQt^r*q*UIjYe_oq zq@aVj(UH1ELnrVEO{4<+k)L2PC6zFtp{co{$4QL@$70bK(eC%}r^8^iAO_2wl+X5a za=UZH(E!zoL@tYzTAcG%J^T0n5~J|qyJ(L=EjE>zNHuk{Mmgijr2PJMl1)F}=VyCxTn=-3c!%>C7hY?m>WbT`d=!=xVt>8(#)8Hs2knV798qX z;S126{cozMPKM$79AF~f1QWS~g3m=m;I`Kb?D#5$pQ;@Q74>XW?}*jg7}ay zd|_J2Dn}FG1fn+d*OmYOpbWS9pTM?HT{}H=$O6XIJmPg|z#>%k=4S6#ww9Z$P{hE`O#;?`YK7XOv>DgrFV~3SjM5;+{G7gCAYT-F-Mf6`BqCna* z1Mgv+Mse-+uav`kiab+A#9Qsjnu{pz`zXdGwZ1J+#ntkv6u&pu5oHmP?~fp|5#6_M z!lH&cJb`SY-VFMQJnc3%W-pDQ6J}oNy%;}^3qUsz z4PW+ygd>+m9u<|8+$HA+mSVvi1zJ*!%ImL;y!_g+yQ9uAaUrblKYnzx2fOmE0Oh`} zj!ygf=so2CI2~;adna;}!gmpr3EPFOg~>|MdHlvtR(sP+&`{_V40~d)!eu9gUf`7| zA7ugjkP?%VtxUP%(1@MGXoE#%06(7Vn}zP|T_~qi^f-};p$gP01X~$Slyx9p`&K%i zYxMXj6V4G%$lYxbSt%C`swH&F-SwSxNYmXPJxmTm0l9Nhh=jRGOg##)M__rLMnV=H zZuN}Vdk(!vrL~_uc|u^SeI)({JC*V7C}MR_SIRD&H!IZUT9bW=h4rP#O;DOwTit;N zH`k$o7f!s8V@V6xpEaV4Vy&U5Ld^H?)@9Fe>xqJ!@^{57NwX{im&5OkE(SpAjtZpE-QskprCMr=}Kgt$rdz(FsHX;9%l zAHj*I1#T|U;xGMow>IC$M?X+ znf8YhSNE8nrjrM;XP~aWS))lZt#Oiyw}QvZ9OM#%Z`JI}vpi$DOh~DVn83S_v=9nW zvySYNb3=)}*nA+x22DPB6b>(Aziu+|57HA4kOiQD z2;VZjHYF5t7TDdI6Ml#p6+AUTxebJ4 z3O0;LbRfGhzt;G-=l$kj zs~N4zE`lSyz<@l~8k@-^;WwdZGr#kc9w*KiF1>W!lm;OBxiCbkKQ>u#d3l-G-tj8r zY_Ey->yIn0f34|>vL=lkv=ti(Oti8YTYQIC;2DdL__k?EeI1fQ$d zSAG2BQv7|MMjohNL)(#840APvLF8R%<0V>^75!))&VKi;24j+Fl_l|(H(;}%O>)b1 zYWpfiTm2%%>-D>LaSk?~TW7OL-@f-9Wt#i z8Ti+4g4*pU4;|IUZH>_%Ao8PgYP_|C9v(y>+I^TVkvmHEh_U$h+WQ`WNe{2LW7>1v z0#s4A6X9D<;Taq+1H~SW+iq5?p!p^tc2kHw75j}GL_7nB=WB{V%rd7kladC)(a(EF z*4v4qeTGoJ3J(TuG-@4*@^9whMb=31#n2$`lz5yh3qAd*vl)M-!+51HR{fkGI3}i` zP~xPfruL$;GLXb92O6w+6=oXIIA_0}$CCa-@dWsdCOD5@ninp-=l};L)&JHh+VJLc z1)P5gNd3KN6wpW>KEj;A<-rOijvx;sA<>v=?Z~Ix7$g2#f|eHxry8&0n#MCp8UjMv zd+pKOLE1nEzLp+6RG?voq2EyH_;;2e#h?k{eU~JHwh5H;0PNbjP039376R)GzIz6~mY<)T zq$Q9MedtrnO0HagNgUoxJ;8YKJ>P)ma1Vh1*{<}JK288z+-`plP{n!&_b)RJymLu&-AQbU#Y-uJy_F>F>2sKE4Wv&yryMknhsQdR>$=40gWAcauC`x?;13gnyG8B%M5kW}j%*?K3W>oD9`F)R{@3V%@ z+@0-L-_~Z_vE=N(_iB=r6hJJMo6fuehq}EoGDa0>J`i|`nTdO0;r+P# zG!8tnKov9-?ksY$Bp@dSRQDTQhBg$7mKiczKWercTfM{9SGU4i)(K|FgLbPs_77n-8rnj~1!2dmRLG26&QZVOVLl$&4A zG^|AEjuzdNxrY4!)!u__CYA^?^N;YR{mO9`k!9Ny9n+6_w zc1knjXzj7uc(aC-VEw5{(8McB6n4YS;60gXneP8xvrL)#bXwWb-rn%NSv>ceu7c^v zU0qql3Q_^z=bV9)zL$1>@sm+g;vTsk%XdkZ=Uu1)?RxEMLE48uUl<2wX6ltSnl4a2 zwq{FthQFHaDb@85O+yxpqgI6q0R`L*^q(+X z=mPI=E51W}d=JmXcdqBZP!dwgBYCPD8);MgmLoPH$I6IlLR8IZDoWKbJoFZt?VB^( zYym?y+}o3LP*ik1|L6#SqZIOq&k5Eo{NBAl+Yx7=T-_*JQItG#=`Wm%VKsxUSqlm7v{qJ&0@{<@sYc4_sS9vROJ6^)+KHQV% z#=RiO8a=dY*S|;LH>!Q@fR=_3A5wOHyJI35&X2JN#UY_dm;;_+zBQHqOeuez?{#A6N0Wp_)X zU7T;>G(q+quG#VqSUV#x?sPq;02RDC(kw$_kFJCE08MifNk+WB-ov(Mm07uH_OcrC-$f{svo{rQcdUv$bsvwG7#UskwZ?T$o83^M7VMs4}5T-TO+v(`O z7r=1B0Nr0cIvdptLlUrhaq;ayr@N;;O9Beq8mTC&3(<^-0FY;c2*uZTV^X09^1TTZ zaGmHfvT?pZ>*bGfzpAUth!=_4o$9eCg|yD->aJ$NmYO_-5&0BsFWFgH5JvRS!h?|{ z;euUU96oU}t<(PWKjiFrf?SH68|BngpiZwoQVHRTqzd_Kw{$jY|9FB0rYo0#e3dOV z?2_~QEkU_$TeSoe#y~JNAC&5pkolBdm@w=7>RjfC8X~-8#;Fh?>OkHF&l0wXU2Sk4 ziQ>hfHVdT#4+9mYCyY0manq*&BMSrl*diu%lj1iZrZYq>kpT$rWo2=OU zdUxiN4fl!II#P_=zeM&c9kpxL?m1f2#@^>%8(NgJNp$v~xb-ia*U*eJ)d5apJ@eap z_fcPVpu8t4u2Ki!dm7>%xK&^q)b{l7K&cW68Ul?Vv|@;&!-KSy*gzLX2cBG{DOsd2?wE1h`ZyWZQ*+~=_&9-FGMf%>=8Ti+pYFV54l}d= zv$@id4p!I!PXq&=)p6DV8C_GJ{+D(QIw04{A3C4|*yuGx@#LQ31Sy9|Bfy!Eq>?k+ zkWv6KAr1CQv`)O#cv>Ve)*%Pf$x(Q~;p&nOh7h6DH}BLq?)j@%uYv$1sK95%X1I)q zJ91M-LBZ!T68Pq(r`KD*KgUF3Ex`CoWv#V%6f7vFCu>2mG2kvlM)J_i3?q6nzqRqW zTSzbOxiA&}8-sNjadA8br_2f{&l*e$NGd8?e1-x*5dXndtLvIzfA1o}V;7;hpxDBp zl&0l67YaB$EN6Zq5SxGD^eYHYsTQ(UgPxJG7Sn9%3NULco=JN+bOF@1mUZy-c~MC9 z#t0Y6Z;ZUBuBVvO*86%$u1M{2{P}#VS50%zPXL@Bh8A=J zFPuvn9{upU-<}dWu~wPdE}zr172n*SzbmDBz~<%lLu2{o?c0308D3Q{1{*&I z|Gj8DxVvq-|NOK{V6Kx_wL@cYbe}->{g;`!$4roXF4W)Nz8zDZ$h1N(F|6MX4v2d% z*Wq&l@cl{loX$ljPOG&fUwCffd$fsu&6i<`rQH1D0O*pJU7Ahp#>TlW5%+Pgox z*#|KD?4_LY20!Giv_g~d*z22j*i`SE14jZj|A99C)R_BPWZbnwo(coE@En{DM&8iR z2*JvWjyA|(Jt{kfG#D5cf4(T4P!PL#;lc%%Bt(6Wf-l_J_RJ4tf5qnV=~}#yXv{`d zWICCzEH4)V8Fkdf;=Ax%gaO`_m zoc}WFLw~<-2kbbnplkyQ8wM>A0KBJf#d^Lzj`62Z(bIb{>(Ijw@!X_b`@K;)3>sL~ zt4h(n56^rpEZ9*Jds&utai+yHm#o(R;*EVvp8b_}`C4RX7{jk_%JBe4C0x2wKh31D zeFwn;xnKC5JBOIha*}9Kpr@Fojemd!kx&c+&C{{es#e)`m@CD@#_6y)W7ocZYkheh*<`Vj)bgyL%^y(2)5X)Mze zy#D=|>GcmMrT)IjN>bbRAc>Uvoo0wKD6D|Z)PdT_j0ZPVFst2zDvUmqm%&}18;wRC ze)i2Ht+X!05Q|}MT-Zq76uKFP-Cf7eJt`{u(BRf$;Hb0!6|zK<)wedlVvV98d-?iU-fVa! z>H-t7TUwoVOClsh2$;LY_UzlD5B|y1ub6ppiY3gYU2igeyH=m_AJ1WutB22L4&Jre@d^=h|K&ObSkwx@j7ps67Ur1V;#l|hQCw>DsKz&?z+nG z?4#TPD2ec>6C^HwkuXCGPfkz<=Z}bEUR*kz`NUEgIJ#>vi+Rvg#Xjtba^7o7P>wCL zqHDOz?>h-X$_yhBs?yr;RF>2pGz)JnF+c=dsc$8YWp3HPf)3( zzh!$(2T5MdOuBQ+WRO;cF7<~cqm!c#g-_=?v~U~BZd=2K2y!l=YjddQvqnT48-mhE zC#SCWp3>NPE5rSTSFFR%a;tk_NX>-u1J+W$gAtQBL(|nLPdsgCJ%fd-t9kN zdr4jSt-*(*q`b%H&kzX=Ped?z|NY_W$dx+{d+ki!C1jM&&$hI0;y6hW1!dgRHYOh3 z%ndDWL!f{BV|<{r@9p!8i7kcQ&IPZf;)yY=?6D~+m7CZjJ-;Vb#)sA0$EEAgO5m5jPx+F=jb*xoC}*XI(ZfInC8 z?%dg1EY%LYEkywh^(6;>(Kq)+x8iMgK*VNSeSlwkd1=Ck+SoOwIZYR>>BD1VVb9{+|Zw$_$zDyQ}^mk1UhNz*~lZlg1L2Y9}WH z!`^@g1nckj-Hci{qiSSjWw3E-Z0twnuX&iF?q$N{rFfmdPtO{f!U7rJAeEC3+Ru$C z7N59#e;-e7J~P!BhERcU?eO!d(Fk17;$9vWcl)zd^-FcIfmUzueA?$ER=eUW#U7Ow z=PvCj=yo)p>A4bLv5=$KQCirY9N^gdhIQZ328*9@N~=d2*CSp3NmgZ5taB@SsP9r{ zB3Cw{>y)6N$EhTI%00iO^~B0E%aE&kI7+9s+Z_Fy-^23B(8ws`k&k2pak|7xTKkRL z&1n7ON7AOIlP|w+Y@LnlTr>49U1u>ii;c70@vY>wuQXBFIwrO73X&gqHrf-7swsnt zoANKWak_>tD^_~(Ij#*JN!O8}BoGJ;-1tUL>khg>jc?Yzv;yPB7xS7kCGqbGr_^=S JUXyHY{4Y#`5sd%< literal 143029 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 z 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

c61 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 diff --git a/source/blender/editors/datafiles/blenderbuttons.c b/source/blender/editors/datafiles/blenderbuttons.c index c57a0f0feca..42d1454a7ca 100644 --- a/source/blender/editors/datafiles/blenderbuttons.c +++ b/source/blender/editors/datafiles/blenderbuttons.c @@ -1,4476 +1,4495 @@ /* DataToC output of file */ -int datatoc_blenderbuttons_size= 143029; +int datatoc_blenderbuttons_size= 143645; 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, 0, 8, 6, 0, 0, 0, 94,187, 18, 70, 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, 85,254,198,223,115,203,244,201, 36, 36,164,145, 72, 9, 24, 90, 40, 66, 96, 37, 1, 65,170, 32,138,240, 67, - 5, 22, 11,174,187, 88, 80,177, 18, 11, 2, 10,137,186, 10,138, 34,202,170,176, 32,178,162,130,196, 69, 1, 21,144, 34, 82, 68, - 18,138, 44, 37,212, 80, 18, 73, 72,153, 62,247,252,254,152,185,151,153,201,180,192, 68, 1,207,231,121,230,153,153, 91,222,123, -206,173,239,253,158,239,185,151, 80, 74,209, 80, 16, 66, 58, 80, 74,139,152, 38,211,100,154, 76,147,105, 50, 77,166,201, 52,255, - 76,112,245,157,129, 16, 18,117, 71, 70, 8,161,158, 79,239,203, 93, 51, 90, 90,222,154,242, 39,138,154,189, 61,154, 83,162,168, -217,144,229,236,125,185,106,202,245,141,166,174,247, 58,140,214,250,244, 42,103,212,246,251,134,214,188, 84,173, 64,154,209,218, - 71, 3,108,247, 41, 81,212,108,200,114,246,190,220, 52,253,247,159,104,232, 6,218, 39, 47,117,125, 6, 40,231, 37,239,247,191, -151,230,197,106, 69, 80,206,104,175,211,168, 95,155, 46,103,132,250, 76,220, 16, 6, 3, 0, 40,165,196, 75,159, 92,174,154, 50, -132, 16, 42,235, 71,131,104,106,121, 88, 27,109, 77,191,245, 25, 45,166, 80, 74, 9, 33,100, 29,128,222, 81,210, 92,235,209,188, -228,237,238, 87,215,168,232, 54,164,185, 2,162,183,223, 55,180,166,247,176, 75,217, 87,253, 53,163,177,223, 7,218,238,209,212, -140,214,177,228, 55,127, 84,142,165,134,216,231, 3,236, 63,151,172,235,175, 25,141, 99,201, 95, 51, 26,251,253,239,161, 41, 15, -191,148, 99, 41,144,102, 52,246,251, 96,219,254, 82,117,175, 20,234, 21,193,106,200, 21,227,217, 0,125,162,173, 25,237, 50, 55, -132,201,140,118, 20,167, 33, 53, 17,221,109, 52,197,163, 57, 37,138,154,125,162,181,141,252,247,157,104,220,117,121,107, 70,107, -223, 12, 80,206, 75,222, 78,129, 52, 47,181,188, 65,202,121, 73, 4,210,188,212,253,254,247,210, 68,116,183, 81, 84,142, 37, 63, -205,168, 29, 75,254,245,141, 98, 68,176, 15, 16,189, 99, 41, 64, 57, 47,121, 59, 5,210,188,212,242, 6, 41,231, 37, 17, 72, 51, -138, 17,209,168,235, 94, 9,212, 43,130,213, 80, 52,132, 17, 2,220, 7, 93, 52,181, 27, 34,138,211, 80,145,182,104, 69,113, 2, -232,174,139,162, 92,212,162, 77, 50,158,242, 69,229,142, 54,128,246, 20, 66,200,139,209,214,141, 38,236, 88, 98,199, 18, 46,179, - 99, 41,208,126,115,169,199, 82, 67,221, 60,123,107, 70,203, 8, 5,168,251, 37, 29, 75,254,243, 70,227, 88, 10,163,121, 73, 17, -230, 96,245,191, 20,221, 43,133,122,231, 96, 53, 20,209,104,239, 13,162, 23,213,168, 88,180,105,160,114,246,185, 18,234,142, 6, - 40, 39, 33,100, 74, 3,213,253, 74, 89,167,236, 88, 98,199, 82, 84,136,230,177,228,183, 79, 70,165,172,209,222,207, 3,105, 70, - 99, 25,222, 26,209,218, 71, 27,186,238,209, 60,150, 26, 98,219, 95, 41,212, 59,130,213, 80,119,199, 87,130,102, 67,104, 55, 80, -221,215,161, 1,238, 14, 26, 32,175,107, 29,162, 31, 21,152,130, 40, 54, 57,202,117,142,102, 89, 27,178,153,176, 33,246,205,134, -220,223,163,153,231,209, 64,117, 95,135, 43, 99,187,175, 67,148,203, 25,173, 99, 41,192, 54, 95,135, 75, 44,107,160,245, 23,237, - 38,236,104,238,155, 13,169, 25, 13,237,134, 40,103, 16,221,117,248, 19, 68,174,100, 8,109,192,199, 52, 48, 24, 12, 6,131,193, - 96,252, 25, 9, 26,193,234,210,165, 75,161, 86,171,109, 21,108,124,109,109,109,233,206,157, 59,111,108,152, 98, 49, 24,140,171, - 9, 66, 8,135, 11, 41, 9, 18, 0, 74,217,221, 29,131,193,184,138, 9,106,176, 84, 42, 85,198,250,245,235, 51, 37, 73,130,211, -233,132,203,229,130,203,229,130,211,233,132,205,102,195,255,253,223,255,213,187,121,177,115,231,206,235, 57,142,107, 94,159,121, - 92, 46,215,209, 95,126,249,165,103,176,241,201,201,201,155, 0,100, 16,114, 33,234, 72, 8,129,252,223,123, 56,199, 41, 41,103, - 39,143, 29, 59,214, 37,148, 38, 33, 36,195, 91,207, 95, 43,128,110, 72,205, 54,109,218,108, 19, 4, 33, 61,208,252,193,180, 37, - 73, 58, 84, 84, 84,148, 19, 76,147, 17, 93, 58,119,238,188,158,231,249,122,239,159, 59,119,238, 12,186,127,118,232,208,225,103, -142,227,154, 0,117,183,113,144,253,137,119,185, 92,191,254,242,203, 47, 61,131, 25,144,212,212,212, 77,148,210,140, 8,247, 75, -153,227,199,142, 29,203, 14, 86, 78,249, 56, 10, 85,206, 0,218, 33, 53,189, 52,184,180,180,180,130,196,196,196, 7,106,107,107, - 45, 0, 40,199,113,180, 93,187,118, 62,250, 46,151,235,236,222,189,123, 59,132,211, 99, 48, 24,140, 43,129,160, 38, 73,146, 36, -206,106,181, 98,255,254,253, 8,116,158,231, 56,206, 85,223,133, 81, 74, 51,191, 93,188, 48, 73,151,152, 12,151,221, 6, 77,227, - 36, 69,187, 98, 79, 17, 92,118, 59, 36,135, 29,141,179,175,151,203,128, 62,125,250,240, 97,100,211, 39, 78,156,152, 20, 19, 19, - 3,139,197, 2,139,197, 2,171,213, 10,171,213, 10,155,205, 6,155,205, 6,187,221, 14,187,221, 14,135,195, 1,171,213,138,162, -162,162,144,101, 39,132,164, 63,242,200, 35,138,166,213,106,133,197, 98, 81,180,172, 86,171,162,105,179,217, 96,181, 90,177,123, -247,238,144,154,130, 32,164,239,216,177, 35, 73,165, 82,129, 82, 10, 73,146, 64, 41,245,249,248,173, 43,228,230,230,218,195,173, - 83, 70, 84,201, 92,246,202,244, 36, 77, 66, 99, 72, 14, 7, 18, 58,119, 5,224,222, 22, 39,190,253, 26,146,195, 1,201,225, 64, -179, 91, 70, 40,195,123,247,238, 29,110,255,108,246,217,228,188, 56, 85, 76, 12,156, 22, 11, 90, 12, 29,174,140, 40,126,119, 38, -168,195, 1,234,180,163,227,227,207, 3, 0,202,202,202,204,109,219,182, 61, 9,119,158, 66,176, 8, 79,250,225,195,135,147,228, - 50,120, 67, 8, 1,199,113, 62,159, 13, 27, 54, 96,236,216,177,225,234,158,254,220,115,207, 37,201,199,136,247,190,238,112, 56, -148,227,199,233,116,194,225,112,192,102,179,225,231,159,127, 14,167, 9, 66, 8,151,154,154,250, 74,175, 94,189,198, 45, 90,180, -200,240,197, 23, 95, 24, 90,180,104, 1,149, 74, 5,158,231,193,243, 60, 56,142, 3,207,243, 24, 54,108,216,159, 38, 55,131,193, - 96, 92,253, 4, 53, 88,118,187,253,240,192,129, 3, 41, 0,216,108,182, 52,181, 90,173,242, 30, 47, 73, 82,147,220,220,220, 95, -253,231, 11,215,116,168, 75, 76,198,135, 45,226, 1, 0,183, 31, 44, 7,224,190, 40, 44,189,225, 58,101,154,209, 71, 42,221,211, -234,116,224, 56, 46,228, 73,151, 16, 2,163,209,136,129, 3, 7, 66,173, 86,163,107,215,174, 80,169, 84, 16, 69, 49,232, 39, 18, - 12, 6, 3,166, 78,157, 10, 0, 16, 4, 1, 6,173, 6, 15,246,186, 30, 90, 66,241,225, 47,251, 96,117, 73, 16, 4, 1,130, 32, - 64, 20,197, 58, 17,169, 64,168, 84, 42, 20, 21, 21,129,231,121, 8,130,224,243,205,243, 60, 86,172, 88,129,145, 35, 71,130,231, -121,232,245,122,224, 79,148, 12,120,185,160, 73,104,140,207,122,187, 3,145,127, 61, 86,165, 12,255,122,212, 45,202,239,187, 78, -212,128, 16, 2,149, 74, 21,217,118,143,137,193,127, 71, 14, 6, 0,140,216,127, 70,217,103,118,205,156, 14, 81,173,134, 32,170, -208, 97,226,115, 40, 43, 43, 51,143, 24, 49, 98,131, 86,171,253, 38,156, 38,165, 20, 71,143, 30, 85,180, 68, 81,172,179,223,115, - 28,135,143, 62,250, 8, 71,142, 28,137,168,238,102,179, 25, 51,102,204, 80,234, 22, 72,215,251,119,184,186, 19, 66,184,148,148, -148,151,123,245,234, 53,118,209,162, 69,141, 8, 33,152, 51,103, 14, 4, 65,192,205, 55,223,140,132,132, 4,172, 90,181, 10, 42, -149, 10, 79, 61,245, 84, 68,101,100, 48, 24,140, 43,133,160, 6,107,231,206,157,131,229,223,215, 95,127,253,222, 13, 27, 54,180, -241, 10,229,195,233,116,170,156, 78,103,166,220,108,232,116, 58, 97,181, 90, 49,122,244,232,144,119,244, 46,187,205,231,127,176, -147,116, 36, 23, 46, 25,155,205,134,219,111,191, 29, 0,194,154,171, 8, 47, 12,176, 90,173, 16, 4, 1, 45,155, 38,226,249,219, -179,145,203, 83,152,203, 1,148,213,224,158, 84, 1, 59,211, 51, 49,251,104, 57,142,156,175,134, 32, 68,214, 90, 42, 73,146,143, -161,242,255, 61,119,238, 92,140, 26, 53, 10, 60,207,215,105, 66, 98,252, 62, 72, 14,135,207,255, 64,219,160,190,219,198,105,177, - 0, 0,120, 47, 67, 46,138, 34,212, 90, 45,120, 81,132,160, 86,161,172,172,204, 60, 96,192,128, 31,117, 58,221,130,148,148,148, - 19,199,143, 31, 15,170, 71, 8, 1,165, 20,162, 40, 66, 16,132,160,251,252, 71, 31,125,132,133, 11, 23,162,123,247,238, 17,237, -243, 54,155, 13, 42,149, 10, 31,125,244, 81,157,241, 47,188,240, 66, 29,131, 21, 70,143, 0,224,146,147,147, 31, 92,188,120,177, - 73, 94,126, 66, 66, 2, 68, 81, 68, 86, 86, 22, 98, 98, 98,176, 97,195, 6,184, 92,174,136,205, 42,131,193,248,211, 34, 2,232, - 12, 32, 17,128, 11, 64, 21,128, 56,175,241,103, 61,223,137, 94,255,183, 6,208,233,230,153, 70, 30, 47,255,183, 1, 80, 7, 24, - 94, 14, 64,231,249, 88, 1,108, 2,144,229,181, 28,121, 62,239,114,108, 5, 60, 6,139,184,159,170,186, 22, 64,159, 64, 15,191, -147,155, 11,247,237,219, 23,176,185,208,155,112,221, 59, 53,141,147,148,200,213,167, 45, 19,148,225,163, 74, 42,148, 19,236,127, -187, 95, 11,141,209,128,236, 41,175,133, 92,150,167,236,176,217,108, 56,115,230, 76,157, 59,239,139, 53, 88, 0,224,112, 56,160, -211,105,240,253,123, 55,160,244,144, 19,211, 11,143, 97,249, 79,135, 33, 8, 2,134,182,185, 22,255,231, 4, 10,226,181,248,135, -211, 5,187, 68, 35,186,128, 81, 74,235,152, 43,111,147, 69, 8, 81,134,177,139,205, 31, 67, 66,231,174, 74,228,106,209, 53, 49, -202,112, 57,106, 5, 0,203,175,107, 14,109,140, 17, 89,143, 78, 10,171, 71, 8, 65,139,161,195,149,200,213, 87, 93, 51, 32,168, - 84, 16, 53,106,252,223, 47,199, 0,184,155, 5,251,118,108,183,174,130, 87,207,191,251,238,187, 15,125,251,237,183,250, 72,202, -170, 82,169,124, 12, 91, 32,115, 37, 8, 2, 28,126,166, 49, 88, 57,173, 86,107, 80,227, 36, 31, 87,245,137, 96, 1, 64,109,109, -173,109,249,242,229,152, 61,123, 54, 18, 18, 18, 48,112,224, 64,164,164,164, 96,233,210,165,160,148,226,225,135, 31,134, 78,167, -131, 78,167, 99,251, 60,131,241, 39, 39,140, 23,185, 33, 47, 47, 47,187,160,160, 96, 70,143, 30, 61, 62,217,180,105,211, 98, 66, - 72,161, 60,146, 82, 58,212,163, 81,232,245,191, 27,124, 77,150, 8, 32,145, 16, 82, 40, 79,239,253,223,107,120,127, 0,106,249, -127, 94, 94, 94, 86, 65, 65,193,140, 73,147, 38, 61,155,159,159,175,202,203,203,235, 88, 80, 80, 48, 67, 94, 78,160,114, 0, 23, - 34, 88, 33,159, 2,108,183,219, 15,247,239,223, 63,162, 30, 63,102,179,249, 84,168,241,178, 65, 11,148,228, 45, 15,211,196, 24, -161,139,137, 1, 9,221, 58,168,224,112, 56, 32, 8, 2, 56,142,195,234,213,171,161,211,233, 48,100,200,144,139,110, 34,148, 77, -155, 90,173,130, 16,199,225,238, 55,182,225,236,185, 90,165, 73,112, 77,201, 49,252,164,211,225,249,118, 29, 97,172, 46,193,121, -171, 45,172, 38, 16, 60,130, 53,106,212, 40, 88, 44, 22,112, 28,167, 12,227, 56,174, 65,159,229,197, 8, 77,176, 78, 8,132, 16, -104, 77, 49,208, 26,141,224,133,112,233, 87,110, 40,165, 23,140,144, 90, 13, 81,163,134,160,114,183,184,203,145,171, 10, 94, 61, -255,196,137, 19, 63, 2,208, 70,106,176,228, 8, 86, 40,115, 37, 8, 2,236,118,123, 68,230,197,106,181, 66,165, 82, 5, 28, 23, -200, 96,133,169, 51, 37,132, 72,132, 16, 41, 35, 35, 67,153, 39, 57, 57, 25,113,113,113,144, 36, 9,146, 36, 65,171,213, 66,167, -211, 5, 93, 46,131,193,248, 83, 17,202,139,104, 10, 10, 10,102,120, 27, 24,192,215,208,120, 27, 39, 63, 19, 37,115, 67, 94, 94, - 94, 86,168, 2,120,155, 45,121,152,188, 92, 66, 72, 97,126,126,254,208, 48,229,144, 35,105, 23,154, 8, 67, 61, 21,214,187,185, - 48, 26, 4,106, 98,241,190,128,233, 98, 77, 80, 27, 12,240,164, 95,133, 52,118,132, 16,216,237,118, 37,231,228,129, 7, 30, 8, -122, 87,239,157,155, 18, 14,155,205, 6,158,227, 1, 77, 11, 72,216,162, 92,172,148,143, 74,133,146,166,157, 64, 78,157,128, 32, - 68,150,239, 47, 71,176,100, 19,245,240,195, 15, 99,222,188,121, 74, 98, 50, 0,240, 60,143,214,173, 91,227,224,193,131, 17,105, - 50,162, 11,165,193,163,145,242,112,173, 41, 6, 26,163, 17,124, 4,145, 70,121,188,146,195,164,213,128, 87,169, 32,168,220,205, -130,183,222,122,235,186,138,138,138,249,237,219,183,255, 31,220,143, 49, 8,235,132,228,227, 39,208,126, 62,127,254,124, 31,115, - 85,159, 8,150,124, 28,121,115,243,205, 55,251,124, 3,192,136, 17, 35, 34,141, 96, 81, 66, 8, 21, 69, 17,253,251,247, 71,199, -142, 29,177,124,249,114, 72,146,132,135, 30,122, 8, 58,157, 14,179,102,205,130,211,233, 68, 65, 65, 1,139, 96, 49, 24,140, 80, - 94,196, 60,105,210,164,103, 9, 33,133,158, 72, 82,177,103,250, 64, 70, 42, 16,221,224,107,210,206, 6,154,200, 59,146,229,109, -178,188,127,203,228,229,229,101, 5, 40,135, 18, 49, 83, 12,150,151,107,108, 80, 42,246, 20, 41, 9,237,114,179, 32, 33, 4, 95, -231,180,129,218,104,128,214,104, 68,207,101, 63, 0,112,223, 53,227,229,215,195,106, 58, 28, 14,197, 56,149,151,151,135,109, 34, -140, 4,135,195, 1, 94, 37,226, 71,163, 8, 42,242, 62, 23, 44, 81, 20,193, 9, 34, 74, 18, 51, 65,132, 85, 16, 92,206,136, 46, - 14,114, 36,195,187,247,212,221,119,223, 13,142,227, 20,147,117,221,117,215,121,207,194,174, 56,191, 51, 39,191,251, 6, 43,239, -116, 31,171,222,205,130,133,221, 91, 65, 19, 99,132,198, 96, 64,239, 21,155,148,230, 92,204,122, 63,172,230,190, 15,222, 65,241, -155,249, 16, 68, 17,195,119,148, 0,112, 71,174,114,219, 92,251,163,205, 96,154,127,244,232,209, 31, 1,112,119,222,121,103, 92, -151, 46, 93, 34, 10,139, 17, 66,124, 18,207, 5, 65, 8,104,174, 4, 65,128,211,233,140,168,238,118,187, 61,162, 72,146, 28,197, - 10, 7,165,148,182,109,219, 22, 60,207, 35, 54, 54, 22, 49, 49, 49, 74, 15, 90, 57,114, 37,231,111, 70,122, 92, 50, 24,140,171, -155, 16, 94,196,154,159,159, 95,156,159,159,175, 68,146, 60,211,135, 51, 87, 55,195,109,166, 18,101,115, 6,119, 46, 85,160,252, - 44,185, 12,117, 52,253, 13, 23,224,142,108, 5, 40,135,210, 44, 25, 48, 59,187,115,231,206, 43,245,122,125,139, 48,133, 86,168, -207, 67, 71, 93,246, 11, 79, 30,144,205, 21, 33, 4, 90,163, 17,234, 24, 35, 52, 70,163,207,184,112, 16, 66,148, 38, 66,158,231, -149,139,206,130, 5, 11, 96, 52, 26,113,239,189,247, 94, 84,146,187,219, 96,241,248, 82,181, 31, 80, 9,117, 46, 90,188, 40,226, -104,236, 53,224, 68, 17,130, 43,178, 8, 65,101,101, 37,120,158,199,139, 47,190,136,130,130, 2,165, 27,189,119,215,122,121, 90, -198, 31,131,119,146,187, 79, 84, 53, 38, 70,217, 63,189,135,135,203, 73, 36,132, 0, 46,167,187,183,160,198,157, 7, 41, 71,174, -108, 6,211,252, 54,109,218,200,145, 43, 78,175,215,135,237, 53, 43,107,122,231, 27,250,155, 43, 57, 74, 42,255,118, 56, 28, 17, -237,243,178,193,154, 58,117,170,114,172,120, 71,174,100,228,229, 70,186,159,114, 28,135,245,235,215, 99,199,142, 29,120,224,129, - 7,160,211,233,240,214, 91,111,193,233,116, 98,218,180,105,208,233,116, 80,171,213,225,133, 24, 12,198,159,153, 70,178,193,241, -152, 36, 0,190, 57, 87,222, 38, 40, 88, 83,161, 39,226,180, 62,204,178,190,130,219,152, 5, 68,142,164,121, 15,243, 95, 46,224, - 49, 88,254,239,242, 82,171,213, 45, 54,110,220,152, 41, 73, 18, 92, 46, 23, 66,125,219,108, 54,220,113,199, 29, 17, 63,116, 84, -114,184, 13, 22,231,215, 83, 78, 99,138,129,218,120,225, 2,230,117, 17, 11,123, 22,151, 35, 88,222, 6,235,197, 23, 95,132, 32, - 8,152, 55,111, 30, 0,224,201, 39,159,172,119, 4,139, 74,192, 38,215, 90, 52,153,211, 9,116,190, 22,167,215,239,133, 40,138, - 72,233, 62, 0, 82,246,255,161, 92,109,130,193,147, 87, 21, 73,179, 99,121,121, 57,142, 28, 57, 2, 66, 8, 30,127,252,241,144, -230,106,245,234,213, 44, 7,235, 15, 64, 54, 88, 28,239, 14, 36, 5,218, 63,189,135, 71,178,127, 82,167, 19,162, 70,227,211, 91, -176,162,162, 98,254,209,163, 71,183, 0, 32, 99,199,142,141,211,235,245,248,224,131, 15,106, 1,168,150, 45, 91,166, 11,167,233, -157,199,231, 31,185,242, 55, 88, 46, 87,248, 38,108,249,166, 34,146,104,111,125, 12,150,188,127, 19, 66,224,114,185,148,200,149, -195,225, 80,254,107, 52,154,176, 58, 12, 6,227,234, 39,204,123, 69,207,250,229, 57, 17,191, 72,211, 89,207,188, 62,198,202,187, - 57,208,235,183,119, 84, 68,214,181,249, 53, 29,250, 15,151,191,203,243,243,243,191,151, 35, 87, 94,195,125,202, 1, 4,137, 96, -113, 28, 7,171,213,138, 61,123,246,132, 94, 27, 23,166,143,248,161,163, 9, 93,255,130,209, 71, 42, 65, 8,193,170, 94,237,161, - 53, 26,161, 50, 26,144,243,217, 90,229,132, 93, 82,240, 20, 84, 6, 35, 18,122, 14, 8,171, 39,159,184,253, 13, 86, 69, 69, 5, - 68, 81,196,203, 47,191, 12,142,227,240,202, 43,175, 32, 45, 45, 13,165,165,165,232,221,187,119, 88, 77,135,195, 1, 78,226,160, -189, 39, 30,218,127,196,128,123,160, 21,178,110,249, 7, 42,171,154, 99,151,205,128,182, 53,251,209,232,187, 41,176, 75,206,136, - 30,211, 64, 8,129,211,233,196,247,223,127, 15, 81, 20,225,116, 58,149,139, 15,165, 84,121, 74,190,252, 80,199, 87, 94,121, 37, -162,245,201,136, 46,215,220,124, 27,238, 62, 89, 11, 0, 88,153,211, 6, 26,131, 1,234, 24, 35,122,126,177, 94,217, 63, 15,205, -120, 2, 42,131, 17,113,221,122, 69,164,217,238,161, 39,209,246,193, 39, 80, 86, 86,102,238,127, 93,214,250, 74, 94,243, 81,135, - 14, 29,148,156, 43,189, 94, 15,173, 86, 75, 60,255,195, 58,117,111, 83, 30,206, 92,201,191, 35,193,225,112,212,233,133, 27,136, - 72,155, 8,101, 56,142,195,189,247,222,139,212,212, 84,204,158, 61,219, 39,114,245,236,179,207,194,225,112, 96,214,172, 89, 17, -235, 49, 24,140, 63, 37, 65,155,244, 2,208,205,203, 44,133,155, 47,216,248,250, 44, 47, 32, 1,207,188, 86,171,181,164, 95,191, -126, 1,103,176, 90,173,105, 26,141,198,231,236, 42, 63,116,212,191,169,144, 16,210,129, 82, 90,228, 61,173,156, 68, 44,247,198, -210, 24,141, 80,251, 53,187,168,141, 49, 16, 13, 70,112, 1, 78,226,129, 52, 3, 69,176,228,166,147,202,202, 74,136,162,136,217, -179,103,195,100, 50,193,106,181, 6, 74,176, 15,168,201,243, 60,106,143,212,226,240, 11,187,160, 49, 28, 64,235, 1, 49,136, 17, - 15,226,218, 31,150,193,233,180, 1, 94, 77,134,145,104,182,110,221, 26, 47,190,248, 98,157,199, 51, 4,163,107,215,174, 97, 53, - 47, 21,166, 25, 88,147, 16, 2, 77,140, 17,218,152,152,160,251,167, 16,224,217, 77,254,154,242,120, 57,114, 85,173,210,127,116, -244,240,225, 45, 0,184,177, 99,199,198,234,245,122,204,157, 59,183, 22, 0,247,210, 75, 47,233,155, 53,107, 86,103,135, 8, 84, - 78,142,227,176, 96,193,130, 58, 57, 87,193, 12, 86, 36,229,116, 58,157,117, 12,214,237,183,223, 94,231, 65,163,193, 34, 88,129, -202, 41,231,170, 53,110,220, 24,122,189, 94,121,237,150, 86,171,133, 86,171, 85,158, 14, 31,172,169,245,106,216,151,152, 38,211, -100,154,191, 59,151,108,142,162, 65, 64,131,245,243,207, 63,223, 20,108,134,220,220,220,253, 27, 55,110,188,214,251,221,132, 78, -167, 83,101,181, 90, 51,135, 13, 27, 22,246, 86, 89,146, 36,104, 52, 26, 80, 74,209,249,249, 2,247, 45, 60,119,161, 73,144, 82, -138,184,220,254, 32, 60, 15,151, 75,130,195,225, 8,219,139,208, 98,177,248, 36,160, 7,234,190, 94, 93, 93, 29,242, 57, 63,254, -154,102,179,217, 39,175,139,184, 40, 14,173, 89, 90,183, 55,161,103, 57,145,162,213,106,125,154, 77,194, 21, 37, 98, 97, 70, 84, -144, 31,224, 73, 41, 69,214, 35,147,220,145, 34,158,243, 25, 31,219,173, 23,136, 32, 66,114,231, 45,133,235, 24, 66,206,158, 61, -107,190,245,214, 91,215, 81, 74, 63, 28, 54,108,216,175,112, 39, 88, 82,163,209,168, 17, 69, 81, 2,240, 27, 0,122,238,220,185, -216, 19, 39, 78, 72, 22,139,165,105,184,114,174, 95,191, 30, 7, 14, 28, 64,151, 46, 93,148,200,167,252,145,155,239, 47, 38,130, -229,255, 40, 6,255,255,145, 62,166,193, 27,142,227, 16, 27, 27, 11,181, 90,141,151, 95,126, 25, 42,149, 10, 58,157,187, 21,116, -214,172, 89,202, 58,103, 48, 24,140,171,137,122,191,176, 89,146, 36, 62, 88,243, 97,184,166, 66,151,203,117,252, 47,127,249, 75, -125,151,119, 58,212,120, 74,233,241, 31,126,248, 65,229, 29, 97,240,254, 14, 50, 44,172,230,214,173, 91,149,238, 84,161, 52,189, -126,135,212,244,175,123, 36,249, 43, 78,167,243, 68,216,137, 24, 81,195,233,116, 30,239,222,189,123,224,145, 47, 6,110,178,117, -185, 92, 33,183,187,195,225,248, 95,102,102,230, 73,163,209,248, 85,114,114,114,249,198,141, 27, 19,186,117,235,150,224, 61, 77, -183,110,221, 82,253,102,179, 33,196,227, 73, 8, 33,199,239,190,251,110, 85,152,253,209,255,119,240, 71,195,123, 52,139,139,139, - 85,222,243,132,251,166,148,134,212,244,112,100,240,224,193, 92,160, 99,200, 31,151,203, 21,176,219, 52,131,193, 96, 92,137,212, -219, 96, 89, 44,150, 99,253,250,245, 11,216,239,187,182,182,246,104,168,121,139,139,139,179,235,187,188,112, 28, 63,126, 60,231, - 74,208,108,136,186, 51,162, 75, 67,108,163,226,226,226, 32,142,237,226, 57,122,244,104,212,247,207,134,208, 4,128,221,187,119, -247,104, 8, 93, 6,131,193,184,220,169,183,193,138,244,113, 12, 12, 6,131,193, 96, 48, 24,127, 86,194, 63, 91,128,193, 96, 48, - 24, 12, 6,131, 81, 47, 8,128, 14,129, 70,212,167,119, 0, 33, 36,160, 70, 40,194,233, 51, 77,166,201, 52,153, 38,211,100,154, - 76,243,234,211, 12,167,125, 25,247, 78,172, 23, 36,220,147,168, 47, 73,252, 10,233, 26,202, 52,153, 38,211,100,154, 76,147,105, - 50,205, 63, 86,243,106,131, 53, 17, 50, 24, 12, 6,131,193, 96, 68,153,122, 39,185, 51,162, 3, 33,132,167,148, 70,252, 4,252, - 8,136, 3, 16,236,133,110, 54, 0, 21, 23,169,171, 6, 32,122, 62,128,251, 21, 3, 14,143, 38,131,193,184,138,200,206,206, 30, - 71, 41,157, 14,247, 91,160, 94,222,182,109,219,219,127,116,153, 24,140, 43,149,160, 6,171, 85,171, 86,219, 56,142, 75, 15,244, - 2,226, 96,207,197,113,185, 92,199,247,238,221, 27, 81, 87,119, 66,136,144,154,154,122,187,193, 96,184,145,231,249, 92,207,252, - 27,107,106,106,190, 47, 45, 45,253,148, 82, 26,240, 81, 16,225,200,200,200, 48, 89, 44,150, 59, 8, 33, 99, 0,128, 82,250,177, - 86,171,253,207,161, 67,135,206, 95,140, 30, 33,164, 85, 74, 74,202,199,162, 40,242,199,142, 29,187, 17, 0,174,185,230,154,239, -109, 54,155,235,204,153, 51, 99, 40,165, 7,234,169,199,169, 84,170,130, 94,189,122,245, 36,132,252,155, 82,250,238,197,148, 43, - 0, 26,142,227,142, 4, 26, 33, 73, 82,179,139,208, 83, 1,136,157, 53,107, 86,252,194,133, 11,175, 43, 45, 45,237, 8, 0,169, -169,169,187,198,142, 29,251,243, 99,143, 61,246, 27,128, 74, 0,246,144, 42,140,203,158,204,204,204,109, 28,199,165,215,231, 89, -114,196,253,138,170,227,187,119,239, 14,120,188,103,102,102,110,227,121, 62, 61,148, 70,160,223,146, 36, 29, 42, 46, 46, 14,248, -200,136,214,173, 91,111,230,121,190, 69,184,178, 5, 42,103,176, 71,112,180,110,221,122, 27,207,243,233,245,213,148, 36,233, 80, - 81, 81, 81,176,114, 94,148,230,239, 93, 78, 0,232,211,167,143,166,166,166,230, 99,163,209,216,169,166,166,102, 28,165,116,242, -218,181,107,147, 57,142, 67,255,254,253, 39,103,103,103, 31,214,104, 52,115, 44, 22,203,207, 70,163,113,244,218,181,107,173,193, -180, 24, 12,134, 47, 65, 13, 22,199,113,233, 59,118,236, 72, 50, 24, 12, 0,160,188, 47, 79,126, 74,180,252,161,148,130, 82, 10, -167,211,137, 62,125,250, 68,180,208,244,244,244, 14,173, 91,183, 94,250,240,195, 15, 55,189,229,150, 91,212,201,201,201, 32,132, -224,212,169, 83,153,133,133,133,127,157, 61,123,246,139,233,233,233, 35,143, 31, 63, 30,105,162, 28,151,154,154,218, 15,192, 61, - 29, 58,116, 24,241,228,147, 79,170,114,115,115,225,114,185,240,221,119,223,245,154, 57,115,230,236, 38, 77,154,124, 14, 96,126, -105,105,233,183,148, 82, 41, 66,221,235, 90,180,104,241,159,245,235,215,183, 40, 41, 41,113, 13, 31, 62,252,223, 0,176,113,227, -198, 78,148, 82,146,155,155,187,146, 16,114, 7,165,244,231,136, 42,238,102,216,132, 9, 19, 70, 62,244,208, 67,137,227,198,141, - 27, 11,224, 93,207,178,228,151, 92,214, 55, 41, 78,137, 92, 81, 74, 85, 33,166, 75, 70,228,145, 44,195,161, 67,135,226,114,115, -115, 31, 58,115,230,204, 68,111,221,211,167, 79, 99,231,206,157,246, 87, 94,121,101,230,198,141, 27,223,201,200,200,168, 0, 80, - 83,207, 50, 51, 46, 35,120,158, 79,219,182,109, 91,146, 94,175, 87, 94,228,238,125,156,203,199,184,247,174, 73, 41,197, 13, 55, -220, 16, 74, 51,125,251,246,237, 73, 58,157, 78, 57,119,132,210,243,210, 12,106,216, 57,142,107,182,117,235,214, 36,189, 94, 15, - 74,105, 88, 61, 66, 8, 40,165, 33,223, 61, 42,151, 83,171,213, 70,164, 41,147,155,155, 27, 52,250, 92, 95, 77,185,156, 61,122, -244, 8,122,236,243, 60,159,190, 99,199,142, 36,249, 45, 24,245, 40,103,200, 27,160,154,154,154,143, 63,253,244,211,225,201,201, -201, 24, 54,108,216,170,246,237,219,171,245,122, 61, 86,174, 92,137,244,244,244,198, 38,147,233,191,249,249,249,120,253,245,215, -155,174, 94,189,122, 49,128,225,161,244, 24, 12,198, 5, 66, 25, 44, 24, 12, 6,124,242,201, 39, 1, 95, 63,227,255,187, 89,179, -102, 17, 45, 48, 37, 37, 37,187,121,243,230,235,150, 45, 91,166, 75, 74, 74, 82,134,219,237,118,152, 76, 38,220,123,239,189,234, -254,253,251, 95,251,215,191,254,245,199,148,148,148,222,167, 78,157,218, 22, 74, 47, 53, 53,117, 68, 86, 86,214,219, 19, 39, 78, - 76,190,245,214, 91,209,168, 81, 35,159,241, 67,135, 14,197,144, 33, 67, 84,135, 14, 29, 26,245,233,167,159,142,250,247,191,255, -125, 42, 53, 53,117, 66,105,105,233,231,161,116, 13, 6, 67,255,206,157, 59,127,240,237,183,223,166,199,197,197,161, 73,147, 38, -220, 11, 47,188,208,161,101,203,150,186,212,212, 84,238,228,201,147,248,252,243,207, 91,142, 29, 59,118,185, 86,171, 29,103,177, - 88,190, 13, 87,119, 66,136, 58, 62, 62,254,169,127,252,227, 31, 9, 85, 85, 85,206, 29, 59,118, 28,144,135,107, 52,154,201,215, - 95,127,125, 23, 66,200, 18, 74,233,252,112, 90, 94, 40,145, 43, 74,233,121, 92,104,202,147,113,200,227, 35,140,100,169,119,236, -216,209, 40, 55, 55,247, 11,171,213,218,229,111,127,251,219,137,215, 94,123, 77,109, 50,153, 76, 0, 72, 69, 69,197,185,169, 83, -167,186,222,122,235,173,103,218,183,111,223,111,227,198,141,195,187,116,233,194,154, 12,175,112,244,122, 61, 86,172, 88, 17,240, - 53, 83,129,142,249,184,184,184,176,111, 35,208,233,116, 88,189,122,181, 50,159,247,171,165, 2,253,142,139,139, 3,165, 52,164, -168, 86,171,197,134, 13, 27,148,215, 0, 5, 59, 47,201,223,122,189, 30,132,144,144,185,166, 90,173, 22,235,214,173, 11,171, 37, -127, 27,141, 70, 0, 8,254, 18, 81,175,114,134,171,179,252,219, 96, 48,132, 93,159, 26,141, 70,209,244,214, 8,246,223,115,115, - 28, 82, 84,167,211,117, 74, 78, 78,198,150, 45, 91, 48,101,202, 20,117, 86, 86, 22,246,239,223, 15,142,227, 48,110,220, 56,180, -111,223, 30,167, 78,157, 66,251,246,237,177, 97,195,134,235, 66, 22,144,193, 96,248, 16, 54, 7, 43,216, 9,214,255, 55, 80,247, - 53, 24,254, 61, 12,154, 55,111,174, 49, 26,141,159,173, 88,177, 66,151,144,112,225,109, 33, 54,155, 13, 85, 85, 85,168,174,174, - 70, 85, 85, 21, 12, 6, 3,230,204,153,163, 27, 51,102,204,103,205,155, 55,207, 44, 41, 41,177, 6,211, 36,132,204,220,185,115, -103,178,211,233,132, 90, 29, 56, 5,137,227, 56,180,106,213, 10, 19, 38, 76, 64,207,158, 61, 83, 70,141, 26, 53, 19,128, 98,176, - 2,245,132, 72, 77, 77,125,103,227,198,141,233,106,181, 26,251,247,239,199,241,227,199, 49,126,252,248,102,146, 36,225,216,177, - 99,216,191,127, 63, 78,158, 60,137,247,223,127, 63,125,204,152, 49,115, 0, 92, 27,170,238, 30,238,127,252,241,199,175,109,212, -168, 17,247,218,107,175, 85, 86, 87, 87,191,239, 25,158, 55,107,214,172,209,189,123,247, 78,252,219,223,254, 70, 9, 33,159, 80, - 74,235, 24, 22, 63,205, 64,145, 43, 23,165,116,175,223,108,109,253, 34, 91,201,112,191, 11,175, 50,128, 38, 1, 96,186,233,166, -155,158,176, 90,173, 93,126,248,225,135, 3, 61,123,246,108, 6,160,148, 82,122, 22, 0, 26, 53,106,100,120,243,205, 55,147,135, - 14, 29,250,107,255,254,253,187,220,116,211, 77, 79,156, 61,123,118, 58,128, 50,120, 94,239,210, 16, 61, 75,152,102,195,105,122, -154,146, 32, 8, 2, 6, 15, 30, 12, 66, 72,192,247,109,110,222,188, 25,253,250,245,131, 40,138,184,239,190,251, 34,214, 28, 52, -104, 16,156, 78,103, 29, 61,127, 3, 66, 60,239,232, 12, 85,119, 74,169,207, 59, 66, 3,153, 11,239,143,191, 94, 32, 77, 73,146, - 2,106, 5, 51, 89,132,144,144,231, 58,239,186, 71,106, 46,195,149,211, 91, 83, 20, 69,228,228,228, 96,199,142, 29, 33,205, 86, -184,114, 2, 64, 77, 77,205, 61,195,134, 13, 91, 53,126,252,120, 45, 0,148,149,149,249,188,136,126,223,190,125,176, 90,173, 88, -180,104, 17,172, 86,235, 3,117, 10, 25, 64, 51, 26, 48,205, 63,167,102, 24, 68, 0,157, 1, 36, 2,112, 1,168,130,251, 58,104, -131,251, 90, 88, 14, 64,231,249, 88, 1, 84, 3,104,236,153,183, 12,238,235,155,247,107,202,206,194,247,165,208,221, 60,218,242, - 43,187, 18,189,198,201,203,240,255,239,255,237,163,205, 1, 0, 33,132,122, 62,189,229,177,114,216, 58, 18,115, 37,159, 28,195, - 65, 41,125, 56, 47, 47, 47,217,219, 92, 89,173, 86,156, 63,127, 30, 85, 85, 85,202,247,254,253,251,161, 86,171,113,251,237,183, - 39, 83, 74, 31, 14, 35,171,226,121, 30, 59,118,236,192,178,101,203,112,248,240,225, 58, 19, 28, 60,120, 16,111,190,249, 38, 94, -127,253,117,156, 63,127, 30,112,231, 23, 5,164,115,231,206, 83,198,140, 25,243, 99,159, 62,125, 52,130, 32, 96,231,206,157,200, -204,204,196,166, 77,155,112,244,232, 81,156, 59,119, 14,251,246,237, 67,135, 14, 29,112,224,192, 1,156, 63,127, 30, 89, 89, 89, -154,174, 93,187,254,208,188,121,243, 41,193,116, 9, 33,170,180,180,180,103,255,241,143,127,104, 74, 75, 75,165, 5, 11, 22,108, -164,148,110, 34,132,140,127,238,185,231,238, 26, 52,104, 80,226,222,189,123,207,111,221,186,117, 91, 32,115, 21, 0, 13,199,113, - 71, 57,142, 59, 66, 41, 61, 79, 41, 53,195,157,124,174,224,105,186,181,154,205,230,202,242,242,242, 50,142,227,142,112, 28,183, - 31,128, 38,152,230,216,177, 99, 91,150,149,149, 61,244,216, 99,143, 29,238,217,179,103, 51, 74,233, 62, 74,105, 57,220, 59,172, -213,233,116,150, 87, 84, 84,252,154,155,155,155, 58,122,244,232, 3,101,101,101, 15,141, 29, 59,182,101, 8, 77,198,229, 15,117, -185, 92, 16, 69, 17,107,215,174,197,134, 13, 27,176, 97,195, 6,108,220,184, 17,155, 54,109,194,230,205,155,177,121,243,102, 8, -130,128, 77,155, 54, 97,211,166, 77,152, 48, 97, 66,216, 99,222,229,114, 65, 16, 4,172, 91,183, 14, 63,253,244,147,242,217,186, -117, 43,126,250,233, 39,232,116,186,176,102,200, 27, 79,158, 82, 80, 51,245,206, 59,239, 40,230, 80, 62, 55,113, 28, 23, 50, 42, -230,111, 92,252, 13, 75,179,230,205,235,140, 11, 87, 78, 0,138,230,191,254,245, 47,156, 56,113, 2,179,103,207,198,193,131, 7, -241,234,171,175,162,184,184, 24,211,166, 77,195,214,173, 91,145,151,151,135, 31,126,248, 65,126,249,123,200,244, 0,217, 8,230, -228,228,192,110,183, 43,229,217,183,111, 31,102,204,152,129,157, 59,119, 98,242,228,201,216,188,121, 51,158,122,234, 41,240,124, -200, 32, 27,178,179,179,199, 17, 66, 62,109,221,186,181,166,111,223,190, 16, 4, 1, 51,102,204,144, 38, 79,158,124,230,185,231, -158, 59, 83, 88, 88, 72, 91,182,108, 9,155,205,134,152,152, 24, 80, 74,231,103,103,103,135, 59, 31, 51, 24, 23, 77, 32, 47,226, -197, 13,121,121,121,125, 9, 33,133, 57, 57, 57, 99, 1,196, 17, 66, 10, 1,168, 61,223, 9,121,121,121,221, 9, 33,133,121,121, -121,217, 0, 26, 19, 66, 10, 61,255,111, 4,144, 32,255,247, 76,239,109,160, 68, 0,137, 94,195, 19,253,166, 85, 7,250,239,255, -237,175,173, 68,176, 40,165,196,115,128, 43, 39, 35,249,164, 27,169,193, 10,119,194, 53, 26,141, 67,110,186,233, 38,197,220, 88, -173, 86,159,200,149,252, 93, 85, 85,133, 95,127,253, 21, 29, 58,116, 80, 25,141,198, 33, 0,254, 25,110,195, 8,130,128, 38, 77, -154,160,172,172, 12, 69, 69, 69,104,214,172, 25, 28, 14, 7,190,249,230, 27, 84, 84, 84, 64,165, 82, 65,165, 82,193,102, 11,237, - 93,218,182,109, 59,120,225,194,133,217,255,254,247,191,207, 9,130,128,125,251,246,225,227,143, 63, 6,165, 20,141, 27, 55, 70, -109,109, 45,206,156, 57,131,153, 51,103,194,110,183,195,104, 52, 34, 45, 45, 77,251,240,195, 15,247,156, 58,117,170, 8, 96, 74, - 16,233,191,140, 24, 49,194, 20, 19, 19,131, 71, 31,125, 84,178,219,237,175, 19, 66,174, 31, 49, 98,196,179, 19, 38, 76,136, 47, - 41, 41,177,221,127,255,253,219,236,118,251, 76, 0, 32,132,136,148, 82, 71, 16, 45, 0,161, 35, 87, 78,167, 83, 94,167,135,171, -170,170,144,148,148,212,148, 82,170, 10,179,141, 84,155, 54,109,202, 1,192,191,244,210, 75, 90, 74,233,105,120,153, 54,187,221, - 46,107, 58, 43, 43, 43,207, 60,245,212, 83,206,197,139, 23,243,158,121,246, 0,176,132, 18,103, 92,158,200,198, 69, 20, 69, 12, - 30, 60,216,199, 80,172, 95,191, 30, 55,221,116,147,114,188,171, 84, 42,101,186,112,154,222, 81, 49, 57,242, 36,235,126,255,253, -247,117, 34, 47, 17,222,164, 41, 17,150, 64,198,199,223,116,201, 55,138,161, 8, 20,109,242,142,204, 7,138, 12, 69, 82, 78, 81, - 20, 49, 97,194, 4, 8,130,128,167,158,122, 10,162, 40,162,115,231,206, 16, 4, 1, 61,122,244,128, 32, 8,184,241,198, 27, 35, -190, 65,149,203,185,121,243,102,116,237,218, 85, 41, 79,231,206,157,209,173, 91, 55, 8,130,128, 94,189,122, 65, 16, 4, 12, 28, - 56, 48,172,166,156,208,110, 52, 26,241,235,175,191,130,231,121, 16, 66,202,183,111,223,158, 12, 0, 83,166, 76, 41,179, 88, 44, - 9, 22,139, 5,253,250,245, 67, 78, 78, 78,226,226,197,139, 95, 0,192,122, 22, 50, 26,140, 64, 94,196,131,166,160,160, 96, 6, -165,116,104,176,121,229,241,132,144,194,252,252,252,161, 30,189, 58,255, 61,147,123,191, 92,254,134,188,188,188, 44,175,255,103, -229,249,188,151, 23,106,217,126,211,159, 5,188, 12,150,167, 66,125,188,254, 7, 52, 88,193,140, 86, 36, 39, 8,139,197,210, 89, -142, 94, 89, 44, 22, 31, 67, 85, 93, 93,237, 99,180,108, 54, 27, 50, 50, 50, 96,177, 88, 58,135, 21,246,130, 16,130,212,212, 84, -216,237,118,204,155, 55, 79, 49, 86, 50,118,123,232, 78,111,187,119,239, 62,252,227,143, 63,118,233,218,181,107,163, 47,190,248, -226,108,255,254,253, 19, 7, 13, 26, 4,173, 86, 11,139,197, 2,167,211,137,191,252,229, 47,104,219,182, 45,206,156, 57,131,149, - 43, 87,150,101,102,102, 54,222,178,101,139,116,234,212,169, 35, 33,164,251,245,235,215, 15,132, 16,172, 92,185,242, 55, 74,233, -118,157, 78,247,249,140, 25, 51,226,172, 86,171,116,215, 93,119, 29,251,237,183,223,158, 2,224,208,104, 52,255, 28, 48, 96,192, - 95,120,158, 95,226,114,185,234,125, 50,179, 90,173, 62,235,182,170,170, 10,122,189, 62,146, 71, 66,136, 21, 21, 21, 29, 34, 45, -179, 63, 0, 0, 32, 0, 73, 68, 65, 84, 1, 64,175,215,199, 3, 80,122, 72,154,205,102,101, 27,121,182,143, 37, 62, 62,222, 0, - 0,158,121,252,115,191, 24, 87, 16,242,197,123,237,218,181, 62,199,183, 28,129,242, 63,230,213,106, 53, 86,172, 88, 17,145,166, -183,153,138,160, 57, 47,100,180, 73, 54, 88,130, 32,224,253,247,221, 45,236,143, 62,250,168, 50,191,255, 50,194,225, 29,169, 23, - 4, 1,109, 95,148, 0,216,113,252, 13, 45, 68,209,189, 75,251,151, 25, 64,196, 81,177,217,179,103, 99,232,208,161, 40, 44, 44, - 12,249, 61,100,200,144,136,202, 41, 8, 2, 52, 26,119,176, 88, 46,207,206,157, 59, 3,234,206,157, 59, 55,108, 78,155, 36, 73, -248,234,171,175,192,113,156, 79,196,235,133, 23, 94,248,135,201,100, 50,174, 91,183, 14,167, 79,159, 70, 77, 77, 13,170,171,171, -209,168, 81,163,184,254,253,251,239, 60,117,234, 84,201,238,221,187, 89,194, 59, 35,234,248,123, 17, 47,204,147, 38, 77,122,150, - 16, 82, 56,105,210,164,103,243,243,243,139, 61,211, 23,250,205, 95, 24, 96, 94,159,241, 30, 19, 36, 55, 15,118,131,175,121,147, -155, 14,111, 14, 49,175,205,207, 80,249, 55, 17,110, 5,194, 68,176,252,115, 19, 66,253,246,132,184, 67,213, 11,146, 36, 9,132, -144, 58, 6, 32, 80, 4,203,225,112,160,188,188, 28,146, 36, 69,245, 89, 93,225, 12, 86, 81, 81,209,189,227,198,141, 59, 25, 27, - 27,219,169,188,188,188, 84,163,209,244, 90,191,126,253, 53, 14,135, 3, 38,147, 9, 38,147, 9,255,253,239,127, 17, 27, 27,139, -199, 30,123,236,168,217,108,222,100, 48, 24,146,205,102,243, 47,167, 78,157,122, 62,152,174, 40,138,253,122,245,234,133,237,219, -183,163,162,162,226, 59, 66, 72,167,191,253,237,111, 3,175,185,230, 26, 50,125,250,116,203,129, 3, 7,222, 6,112,214, 96, 48, -252,107,225,194,133,189,187,116,233, 98,188,235,174,187, 64, 8,249,128, 82, 26,113,100,168,182,182,214,199, 88,201,235, 52, 38, - 38, 38,162,103,110,121,214, 55, 37,132, 40, 29, 26,189,141,149,151, 1,166, 60,207, 75, 0,104,180,183, 17,227,247, 69, 54, 4, -162, 40,226,150, 91,110,169,147,220,174, 82,169,176,106,213, 42,220,118,219,109,202, 13, 75,215,174, 93,195,234,202,134,224,214, - 91,111, 5,224, 54, 4,171, 86,173, 10,106,176,194, 53,105, 1,190,209,166, 71, 30,121, 4,162, 40,226,237,183,223,198,196,137, - 19,193,243, 60,222,120,227, 13,112, 28,135, 23, 94,120, 33,226,250,123, 55, 17, 30,126,197,253,157,254,248,121,148,191,155, 12, - 0,136, 49,153,220,245,145, 34,234,124,236, 83,247,112,145, 43,111, 99, 21,174,137,208, 59, 10,184,127,255,126,229,119,143, 30, - 61,124, 34, 87,130, 32,132, 53,108,158,229, 77,235,219,183,239,244,244,244,244,164,241,227,199, 19, 65, 16,144,157,157,221,120, -242,228,201,149,162, 40,106,159,124,242,201, 64,169, 20, 34,128, 78,237,218,181, 51, 68,188, 50, 24,140,122, 16, 34,130,101,205, -207,207, 47,206,207,207, 15, 24,161,242,154,127,104, 40,147,229, 21,133,234, 6,183, 17, 74,148, 77, 27,220,169, 48, 91, 35,152, - 87, 45,155, 43,255, 40,151, 55,254, 17,172,169,222, 35, 35, 53, 88,145,228, 79, 0,128, 94,175,223, 85, 86, 86,214, 67,163,209, -224,252,249,243,117, 46,218,222,166,128,231,121,156, 57,115, 6,122,189,126, 87, 88,225,122, 16,174,137,208, 99,102,158,144,255, - 19, 66,186,221,126,251,237,139,151, 44, 89,146,177,102,205, 26,108,217,178, 5,141, 27, 55,198,140, 25, 51, 14,149,148,148,140, -166,148, 6,221, 24,222,180,108,217,178,189,209,104,196,198,141, 27, 1,224, 7, 0,247, 60,248,224,131,196,110,183, 99,206,156, - 57,181, 0,214,196,198,198,126,190,116,233,210, 78,157, 58,117,210,172, 89,179,166,106,203,150, 45,107, 35, 52, 87, 46, 74,105, - 64, 99, 85, 85, 85,133,154,154, 26, 24,141,198, 72, 12,150,211,100, 50, 21, 85, 85, 85,221, 97, 54,155,207,107, 52,154,152,243, -231,207, 91,189, 35,140,213,213,213,168,169,169,129, 32, 8,226,254,253,251, 79, 2,104,105, 50,153,138, 0, 92,212,115,203, 24, -127, 60, 28,199, 81,217,100,172, 89,179, 38,224,177, 46,138, 34,190,249,230, 27,159,227,125,229,202,149, 65, 53,189,163, 56,114, - 79,194,112, 17, 44,121,214,112,229, 21, 69, 17, 60,207,227,221,119,223, 5,165, 84,137, 92,113, 28,135, 73,147, 38, 65,163,209, -224,229,151, 95,198,164, 73,147, 34,138, 98,121, 71,197, 90, 60, 99, 86,134,203,243,218,109, 54,119,148,158,227,188, 77, 86, 68, -145,182,112, 9,238,145,226, 31,105,211,104, 52, 65,147,219,253,103, 13,166,185,109,219,182, 15,187,116,233,114, 32, 49, 49,113, -117, 78, 78,142,102,219,182,109,152, 48, 97, 2,177, 90,173,166, 53,107,214, 40,203,245,135, 82,138,154,154, 26,109,196,133,103, - 48,234, 65, 32, 47,226,161,145,108,156, 60,102, 40, 82,189, 66,239,233,101, 13,127, 83,228,137,136,173, 15,167, 21,104,222, 96, - 8,158,137,235, 28, 69,254, 39,137,112, 70, 43,146,187, 79,179,217,252,237,218,181,107,187,221,118,219,109, 66,168,230,193,234, -234,106, 36, 39, 39,227,224,193,131, 78,179,217, 28,246,241, 7, 46, 87,228, 15, 68, 15, 23,193,242,135, 82,186, 53, 43, 43,203, -105,183,219,113,237,181,215, 34, 45, 45, 13,102,179, 25,111,190,249,166, 51, 82,115, 69, 8, 81,101,103,103,243, 0, 80, 89, 89, - 9,184,123, 59,100,102,102,102, 98,251,246,237, 56,119,238,220,114, 0,253,166, 78,157,122,221,245,215, 95,175, 90,178,100, 73, -237, 3, 15, 60,176,220,225,112, 76,143, 68, 95,146, 36,155,211,233,108,193,113,156,189,162,162,226,132,183,177, 74, 78, 78,110, -100, 52, 26,185, 51,103,206,132,204,231,242, 96,239,216,177,227, 79,199,143, 31,199, 75, 47,189,116,118,198,140, 25,153, 85, 85, - 85,231, 42, 43, 43,157,178,177, 58,127,254, 60,204,102, 51,151,152,152,168,153, 59,119,174, 30, 0, 58,118,236,248, 19,216, 3, - 71,175,104,252, 59,180,248,155,171,112, 61,222,130,105, 10,130,128, 97,195,134,213,137,136,201,159,165, 75,151,250,228, 53,133, -107,122,147, 53,223,121,231, 29, 60,250,232,163,208,104, 52,152, 53,107,150, 79, 14, 86,160, 89, 67,105, 2,110,211,214,226, 25, - 51, 78,189, 21, 15, 81, 20,145,240,192,105,159, 38,194, 0,117,139,200, 8,206,152, 49, 35, 42, 77,132, 50,130,112,225,145, 56, -243,230,205,195,237,183,223,142, 31,126,248,225,162,155, 8, 91,180,104,177,240,205, 55,223,212,236,217,179, 7,231,207,159,199, -217,179,103, 97,177, 88,112,236,216, 49,185,158, 1,231,171,173,173,213, 69, 84, 96, 6,163, 30,132,217, 95,207,250,229, 79, 17, -239,230,186, 16,223,254,211,195,107,152,183,238, 89,248,118, 20,243, 30,238,111,170,252,151,225, 61,141,146,219, 21,242, 22, 74, -142, 96, 69,106,176, 34,104, 34,156,249,226,139, 47, 62,212,179,103,207,120,147,201,132,147, 39, 79, 6,140, 96,153, 76, 38,216, -237,118,172, 93,187,246,188, 36, 73, 51, 67,138, 2, 14,135,195,129,164,164, 36,148,149,149, 65, 10, 18,198,231, 56, 14, 58,157, - 14,213,213,213,128, 95,111,187,112, 80, 74,225,112, 56, 96,183,219, 97,183,219,225,112,212,107,118, 0,208,201, 15,108,173,169, -169, 1,128,154, 38, 77,154,180,212,106,181,114,175,199,253, 0,250, 14, 26, 52, 72, 44, 47, 47,167,247,223,127,255,102, 74,233, - 4, 26,250,105,246,182,181,107,215, 54, 7, 0,157, 78,183, 31, 0,142, 29, 59,230,168,168,168, 64,117,117,181, 18, 33,212,233, -116, 24, 62,124,120, 10,165, 20,107,215,174,109,174, 82,169, 40,130,155, 33,107, 97, 97,225,238,216,216,216,197, 5, 5, 5,163, -111,190,249,230,226,142, 29, 59,182,168,174,174, 62, 83, 91, 91,107, 54,155,205, 84, 16, 4, 85, 66, 66,130,102,245,234,213, 7, - 54,111,222, 60,192,100, 50, 45, 46, 44, 44,220, 13,119,104,149,113, 5,226,159,219, 20,200, 84,121, 39,146, 71,170, 9,184, 13, -193, 55,223,124, 19, 50,138, 19,169,166,140, 32, 8,120,226,137, 39,240,214, 91,111,213,137, 96, 77,159,238,190, 39,121,238,185, -231,234, 21, 33, 18, 4, 1,167,222,138, 71,202, 35,191,249, 12, 3, 0,226, 41, 95,125,154, 8,229,249,167, 77,155, 6, 81, 20, -149, 38,188, 1, 3, 6,248, 52, 13, 70,106,172,188, 53,207,156, 57, 3, 65, 16, 16, 31, 31,143,209,163, 71, 99,224,192,129,117, -244, 34,213, 61,118,236,216,207,175,191,254,122,211,180,180, 52, 44, 89,178,196,102, 48, 24,212,125,251,246,165,149,149,149, 4, - 8, 30,193, 50,155,205, 44,130,197,248,189,137, 40,160, 17, 69,221, 75, 94, 94,208, 51, 80, 52, 30,211, 64,252,222,182, 93, 82, - 82, 82,153,154,154, 58,102,212,168, 81, 95,188,251,238,187,186,150, 45, 91, 98,223,190,125, 56,119,238, 28,236,118, 59, 84, 42, - 21,154, 52,105,130,234,234,106,124,246,217,103,181,181,181,181, 99, 74, 75, 75, 43, 67,105, 18, 66,158, 27, 60,120,240,220,231, -159,127, 94,219,190,125,123,156, 59,119, 14,213,213,213,202,157, 23, 33, 4, 38,147, 9,122,189, 30, 69, 69, 69,216,188,121,179, -153, 16,242, 92, 40, 77,127, 36, 73, 82,140,149,108,180,194,245, 76,242,211, 52,232,245,122, 0,238, 28, 41, 0,206,166, 77,155, - 38, 3,144, 13,214,145,140,140,140,231, 91,181,106, 69, 22, 46, 92, 72, 41,165,107, 2,153, 43, 63,205,115,189,123,247,174, 0, -144,108,179,217, 84, 0,112,254,252,121,123, 66, 66, 66,146, 70,163,145, 52, 26,141,164,213,106,165,210,210, 82,167,211,233, 84, - 1, 64,239,222,189,109, 0, 78,195,243,188,170, 0,154, 18,128,170, 57,115,230, 76,185,231,158,123,122,228,230,230,102,221,127, -255,253,123, 30,120,224, 1,164,165,165, 53,170,174,174,182,236,223,191,191,226,221,119,223,181,252,244,211, 79, 3, 68, 81, 60, - 50,103,206,156, 41,112, 63,143, 68, 10,162, 25, 21,152,102,195,105,202,185, 63,129,140,149,247,255, 8, 30,163,224, 83, 78,217, -180,221,113,199, 29, 74,239, 67,255,200, 85,125, 53, 1, 40, 61, 8,159,126,250,105,159,242, 61,255,124,208, 20, 72,159,147,147, - 95,221, 33,215, 93, 16, 4, 84,206, 75,243, 49,127,145,154,170, 64,154,130, 32, 96,242,228,201, 17, 71,176,252,115,176, 66,149, -179,119,239,222,168,169,169,129, 40,138, 88,181,106, 85,208, 8, 86,184,245,169,211,233, 70, 47, 95,190,252, 99,141, 70,211,209, -102,179,221, 87, 86, 86,182,160,182,182,182,105, 69,133,251,133, 15,193,206,115, 22,139, 69,121, 44,203,149,184,207, 51,205,203, - 83,243,106, 35,228, 45,158,211,233,196, 53,215, 92,227,243,110, 43, 57,153,157,231,121,165,231, 73, 36, 61, 8,101, 74, 75, 75, - 87,165,166,166,142, 24, 62,124,248,162,123,238,185, 39,166,109,219,182, 98,179,102,205, 96, 54,155, 81, 82, 82,130,146,146, 18, -231,119,223,125,119,190,182,182,246,175,165,165,165,171,194,233,157, 56,113,226,223,201,201,201,223,140, 29, 59,118,242,117,215, - 93, 55,126,226,196,137,124, 70, 70, 6, 42, 43, 43,209,168, 81, 35, 36, 38, 38,162,164,164, 4,159,125,246,153,171,162,162, 98, -174,203,229,154,118,250,244,233,179,225,116,253,214, 3,239,112, 56, 48,106,212, 40, 72,146,132, 89,179,102,193,233,116,134,111, - 19,189,128,221,110,183, 83, 0,164,172,172, 12, 0,106,101,195,245,191,255,253, 15, 0,142, 54,111,222,220, 8, 0,223,126,251, - 45, 1,176, 41, 66, 93, 10,175, 72, 86,219,182,109, 75, 0,223,147,162, 28,185,242,252,181,193,203, 92, 5,193, 50,122,244,232, -179, 86,171,117,208,227,143, 63, 62,121,222,188,121,163,231,205,155, 87,103, 34,147,201,180,248,141, 55,222,152, 54,122,244,232, -179, 96,143,103,184, 42,240,143, 86,213, 55, 5, 32,152,230,151, 95,126, 25, 48,130, 85,223,200,149,252, 40,152, 64, 61, 18, 67, -157,131,194,221, 12,201,229,244,215,173,207,121, 45, 80, 89, 5, 65,192,107,175,189,166, 68,174,188,147,207, 47, 38,130, 37,107, -198,199,199, 3, 0, 12, 6, 3, 36, 73,194,144, 33, 67, 46, 90,215,243,110,193, 17,242,255,236,236,236,105,159,124,242,201,116, - 74,105, 2, 0,193,123, 29, 68,178, 30, 25, 12,198, 5,130, 26, 44,151,203,117, 92,126,183,160,183,193,242,254,246,255,237,116, - 58,143, 71,178,208,210,210,210,111, 50, 50, 50, 50,230,205,155,247,168,193, 96,232,111,177, 88, 58, 2,128, 86,171,221, 85, 83, - 83,179,134,227,184, 55, 75, 75, 75, 35,126, 57,179,199, 48, 61,156,158,158, 62,107,236,216,177,211,115,114,114, 70,222,127,255, -253, 68, 16, 4,124,250,233,167,244,196,137, 19, 75, 57,142,123,238,228,201,147, 7, 35,213,244, 70,175,215,255,186,116,233,210, -150, 95,126,249, 37, 28, 14, 7,230,206,157, 11,141, 70,243,107,164,243, 83, 74,207, 10,130,176, 40, 55, 55,119,244,230,205,155, - 23, 83, 74,139, 52, 26,205,199, 55,220,112,195,152, 77,155, 54,253,135, 82,186, 71, 16,132,143,115,114,114,198,252,244,211, 79, -159, 83, 74,127,169, 71,241,148, 72,150,211, 25,184, 69, 49, 80,228, 42, 12,231,199,141, 27,103, 31, 55,110,220,227, 35, 71,142, -156,183,125,251,246,191,200,143,111,136,139,139,219,213,181,107,215, 45, 75,151, 46,221, 7,119,228,138,153,171, 43, 28, 57, 33, -189, 81,163, 70,224, 56, 78,249,200, 79,243,174,175, 17,146, 53, 41,165,104,212,168, 81,192, 27,179, 16,154, 33, 93, 13,165, 20, - 70,163, 81,209,140,176,247,114,216, 48,148,209,104,244, 41, 99, 4, 4, 61,150,228,186,251,151, 51, 28,161,234, 33,107, 26, 12, - 6,216,237,246,136, 53, 17, 65,167, 1,111,182,109,219,246, 33,128, 15,175,189,246,218,255, 1,104,197, 76, 21,131,113,241, 4, - 53, 88,123,247,238, 13,248, 86,247,104,113,232,208,161,243, 0,166,121, 62, 81,225,248,241,227, 7, 1,220,145,146,146,242,207, - 77,155, 54,189, 0, 0,146, 36,189, 20,238,125,134,225,248,229,151, 95,110, 19, 69,113,206,252,249,243,115, 40,165,136,141,141, -221,116,224,192,129, 7,235,163,225,116, 58,199, 19, 66, 38,202,189, 2,173, 86,235,120, 66,200,147,148,210, 26,175,241,202,255, -122, 66,225, 78,182, 75, 13, 50, 62,146,200,149, 63, 22, 0,182,165, 75,151, 86, 3,216,137, 11,207,185,114,120, 62, 86,120, 53, - 11, 50,174, 92,156, 78,231,137, 62,125,250, 8,225,110,160, 2,204, 23,244,134,202,229,114, 29,239,213,171, 87,216,155,178, 64, -101, 9, 81,212, 35, 57, 57, 57, 92,164, 90, 50, 14,135,227, 76,176,113,146, 36, 29,239,209,163, 71,192,114,134, 34, 92,221,123, -244,232, 81,175, 50,122,202, 18,180,238, 23,171, 25,102,125, 6,197,108, 54,159, 75, 76, 76,172,182, 88, 44,162,213,106, 21,253, - 35,246, 58,157,174, 94,173, 0, 12,198,159,145,171,242,249, 69, 30, 67,117, 75,180,244, 60,249, 80,127,143,130,142,197,239,127, - 77,168,255,245,228,220, 37,204, 27, 12, 9,128, 57,236, 84,140, 43,154,162,162,162,191, 68, 91,115,247,238,221, 81,191, 65, 43, - 42, 42,234, 17,126,170,250, 81, 92, 92, 28,245,114, 94, 41,154,161, 56,113,226, 68,212,247, 9, 6,227,207, 70,253, 99,255, 12, - 6,131,193, 96, 48, 24,140,144, 16, 0, 29, 2,141,168, 79,239, 0, 66, 72, 64,141, 80,132,211,103,154, 76,147,105, 50, 77,166, -201, 52,153,230,213,167, 25, 78,251,106,233,157, 72, 26, 50,137,241, 74,233, 26,202, 52,153, 38,211,100,154, 76,147,105, 50,205, - 63, 86,243,106,131, 53, 17, 50, 24, 12, 6,131,193, 96, 68, 25,102,176, 24, 12, 6,131,193, 96, 48,162, 12, 51, 88, 12, 6,131, -193, 96, 48, 24, 81,134, 25, 44, 6,131,193, 96, 48, 24,140, 40,195, 12, 22,131,193, 96, 48, 24, 12, 70,148,105,208, 94,132, 12, - 6,131,193, 96, 48, 24,127, 70,148, 8, 22, 33,100, 29, 33,100,221, 31, 88, 22, 6,131,193, 96, 48, 24,127, 98,174, 38, 47, 34, - 0, 0, 33,132, 2,232,243, 7,151,133,193, 96, 48, 24, 12,198,159,148,171,205,139, 16, 74, 41, 8, 33,148, 82, 90,175,183,174, - 51, 24, 12, 6,131,193, 96, 68,139,171,205,139,176, 36,119, 6,131,193, 96, 48, 24,140, 40, 35, 27,172,169, 87, 83,187, 39,131, -193, 96, 48, 24,140, 43,142,171,202,139, 40,189, 8, 9, 33,189, 1,128, 82,186,238, 15, 44, 15,131,193, 96, 48, 24,140, 63, 41, - 87,147, 23, 97,143,105, 96, 48, 24, 12, 6,131,193,136, 50, 13,154,131, 69, 8,233,192, 52,153, 38,211,100,154, 76,147,105, 50, - 77,166,249,103,131, 37,185, 51, 24, 12, 6,131,193, 96, 68, 25,102,176, 24, 12, 6,131,193, 96, 48,162, 12, 51, 88, 12, 6,131, -193, 96, 48, 24, 81,134, 25, 44, 6,131,193, 96, 48, 24,140, 40,195, 12, 22,131,193, 96, 48, 24, 12, 70,148, 33, 0, 2,246, 4, -160,148, 22, 69, 44,114, 17,189, 9,194,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,234,211, 12,167, 93, 31,255,113, 57, - 19,209,115,176,136,231, 5, 65,245, 22, 39,164, 67,180, 87, 20,211,100,154, 76,147,105, 50,205,134,209,188,152,115,125, 32, 77, - 66,136,252, 62, 57,249,155, 2, 64,164,218,191, 87, 57, 27, 66,179, 33,234,254,103,209,188,218, 16, 66,141, 36,132,112,112, 55, - 35, 18, 66,136, 4, 64,138,198,138,242,108, 4, 46, 90,122,140,232,227,217, 70,202, 65,194,182, 19,131,113,245, 18,205,115,189, -215,185,131,151, 53, 1,184, 0,184, 8, 33,151,116,177,109,136,107,210,229, 94,247, 63,179,230,149, 78, 64,131, 37,175,168,196, -196,196, 85, 73, 73, 73, 55,150,149,149, 73,158,225, 72, 75, 75, 3,199,113, 16, 4,193,124,248,240, 97, 83,125, 23,152,156,156, -252, 65, 86, 86,214, 61,229,229,229, 18,199,113,184,230,154,107, 64, 8, 1,207,243,224,121,222,124,224,192,129,122,107, 70,155, -174, 93,187,158,179,217,108, 70,255,225,106,181,218,178,125,251,246,152, 63,162, 76,191, 39,132, 16, 33, 51, 51,243, 78,189, 94, -175,147,135,117,233,210,197,123, 18,186, 99,199,142,121,145,234,181,104,209,226, 39,157, 78, 23, 39, 8, 2,120,158,135, 32, 8, -168,169,169,169,216,179,103, 79,119,207,248,141, 58,157, 46,129,231,121,121,223,130,197, 98, 41,223,189,123,119,110,244,106,117, -245,208,167, 79, 31, 1, 97,110,142, 2,224, 92,187,118,173,179, 33,202, 19, 4,206,182, 61,166, 21,113,154, 59, 17,142,198, 82, -137, 84, 82, 65,247,139,186,107,213,129, 8,231,151, 26,180,116, 97, 32,132, 52, 5,224,164,148,158,188,152,153,253, 7, 9,192, - 77, 46, 96,148,231,175,133, 3,202, 9,176, 63, 1,248,236, 52, 96,246,153,248,119,188, 16,201,231,250,244,244,244, 55,147,147, -147,239,173,170,170,170,229,121, 30,132, 16,154,149,149, 37, 79,227, 61, 61, 36, 73, 58, 94, 92, 92,156, 29, 74, 15,128,216,180, -105,211, 55, 18, 19, 19,239,174,173,173,173, 37,132,128, 16, 66, 9, 33,232,216,177,163,162, 41,127,187, 92,174,227, 69, 69, 69, - 1, 53, 27,162,156,127, 84,221, 59,116,232,160,104,201,218,146, 36, 5,173,187,183,102,122,122,250, 27,201,201,201,119, 87, 87, - 87,215,114, 28,167,104,102,101,101, 93,116, 57, 47,103,205,171,129, 96, 39,105, 46, 41, 41,105,121,247,238,221,251,124,249,229, -151,220,222,189,123,185,182,109,219,194,229,114, 65,146, 36, 80, 74,209,181,107, 87,125,125, 23,150,146,146,178,160, 91,183,110, -163, 86,172, 88,193, 45, 95,190,156,235,214,173, 27, 8, 33,112,185, 92,112,185, 92,232,215,175,159, 46,188, 74,112, 8, 33, 70, - 65, 16, 38,170,213,234,222, 78,167,179, 29, 0,136,162,184,199,106,181,174,115, 58,157, 51, 41,165,213,145,232, 56, 28, 14,125, -113,113,113,157,117,211,189,123,119,245,197,150, 45, 51, 51,115, 19,199,113, 25,158,114, 34,146,111, 74,233,161,226,226,226,156, - 96,154,109,218,180, 9,171,233, 63, 76,146,164, 67, 69, 69, 69, 65, 53, 9, 33,194,181,215, 94, 59,170,125,251,246,218, 79, 63, -253, 20,199,142, 29,131,193, 96,128, 36, 73,112,185, 92,112, 56, 28,184,237,182,219,234, 92, 64, 66,161,211,233, 76,223,125,247, - 93,171,164,164, 36,156, 57,115, 6,101,101,101, 24, 63,126,252,126,175,241, 9,223,127,255,125,102,124,124, 60,106,107,107, 81, - 89, 89,137, 49, 99,198,212,103, 17,151, 37, 3,111,104,249, 50, 1,226,229,255, 46, 9,191,173,217,112,240,249, 75,213,181, 90, -173,165, 46,151,171,145,247,176, 0,215,116, 31,120,158, 63, 7, 32, 49,212, 52,132,144,230, 0,110,225,121,254, 90, 81, 20,219, - 80, 74,155, 59,157,206,100, 0, 80,169, 84,167,121,158, 47,113, 56, 28,251,108, 54,219,255, 0,172,160,148,150, 4,211,178,109, -143,105,229,178,214,142,172,177, 74, 67, 36,138, 20,142,224,148, 65, 83,251, 95,219,246,152,165,245, 48, 89,127, 8,132,144, 22, - 77,154, 52,121,205,243,251, 41, 74,233,225, 75,213,116, 1,163, 40,165,177, 0, 80, 89, 89, 25,123,236,216,177,148, 21, 43, 86, -100,205,152, 49,163,175,218, 98,121,213, 6,236, 9, 53,255,128,222,173,182, 9,132,164,203,255,157, 84, 58,190,122,221,193,104, - 92,152,184,180,180,180, 55, 7, 15, 30, 60,118,238,220,185,250, 45, 91,182,232, 59,118,236, 8,247,133, 17,202,249,158, 82,170, -236, 99,215, 95,223, 35,148, 30, 1, 32, 52,105,210,100,214,224,193,131, 71,207,153, 51, 71,191,111,223, 62,125,139, 22, 45, 20, - 77,101, 66, 66, 60,195, 8, 58,119,190,238,247, 46,103,131,214,125,208,160, 65,163,231,206,157,171,223,181,107,151, 62, 51, 51, - 83,209,244,247,206, 28,199, 33, 59,187, 91, 68,154, 55,221,116,211,232,247,222,123, 79,191,125,251,118,125,187,118,237, 60, 38, - 13, 74, 25, 47,166,156,151,185,230, 21, 79, 29, 19, 65, 8,225, 18, 19, 19, 23,102,103,103, 15,250,242,203, 47,121, 0,216,190, -125, 59,202,203,203,145,150,150, 6,163,209, 8,173, 86, 11,139,197, 82,175,187,172,228,228,228, 15,186,119,239, 62,234,203, 47, -191, 20, 1,224,243,191,222,134, 67, 34, 48,225,140, 13, 42,149, 10, 7, 14, 28, 0,207,243,151, 18, 58,190, 33, 38, 38,230,223, -203,150, 45,107,212,165, 75, 23,174,172,172, 12, 45, 90,180,192,111,191,253,214,125,253,250,245, 93,239,187,239,190,251, 8, 33, -119, 81, 74,215, 71,170,249,213, 87, 95,193, 96, 48, 40, 31,187,221, 94, 47, 99,225, 13,207,243,233, 91,182,108, 73, 50, 26,141, -112,185, 92,160,148,250, 28,192,254, 7,158, 36, 73,232,213,171,151, 61,148,166, 32, 8,233, 91,182,108, 73,210,233,116,117,180, - 92, 46, 23,212,106, 53, 56,206,221, 81,212,229,114,193,233,116, 34, 39, 39, 39,168, 38, 33,132,100,102,102,222, 41,155, 43,142, -227,176,100,201, 18,164,164,164, 32, 41, 41, 9, 6,131, 1, 58, 93,253, 61,176, 32, 8, 72, 72, 72,192, 67, 15, 61,132, 59,239, -188, 19,139, 22, 45,130, 40,138, 62,227,227,227,227,241,245,215, 95,195,100, 50,161, 89,179,102, 62,227,175, 84, 8, 16,255,205, -250,131, 74, 68,118,228,208,206, 66,255, 94, 25,115,228,255,156,123, 34, 42,185,167,165,146,203,117,238,219,141, 71, 38,135,211, -117, 56, 28,141, 55,110,220, 8,141, 70, 19, 81, 57, 92, 46, 23,186,119,239,222, 56,100, 89, 9, 25,210,161, 67,135,207, 31,122, -232, 33, 85,171, 86,173,136, 40,138, 16, 4, 1,130,224, 62, 69, 72,146,212,140, 82,218, 76,146,164, 62,167, 79,159,166,179,103, -207,126,149, 16, 50,156, 82,250,223,128,122, 78,115,167, 26,171, 52,132, 82,164, 36,247,167, 77,207,172, 33,168,177, 74, 67, 98, - 5,243, 1, 0,151,173,193, 34,132,152,116, 58,221, 11,159,126,250,169, 10, 0,250,247,239,255, 2, 33,228, 49, 74,233,249,104, - 45, 35, 54, 54, 22,177,177,177,232,208,161, 3, 70,140, 24, 17,119,221,117,215, 61,217,220,106, 29, 95, 2,216,130,205, 35,112, - 92,250,202,239,247, 39,201,255, 71,223,214, 69, 53,168, 79,171,211,238, 4, 23,255,169, 41, 36, 23, 61,190,102,195,161,144, 6, -140, 16,194,165,164,164,252,243,166,155,110,186, 99,238,220,185, 49, 0,240,193, 7, 31, 96,200,144, 33, 72, 73, 73,129, 78,167, -131, 74,165,130, 74,165,130, 40,138,202,119, 8, 61, 2,128, 79, 73, 73,121,245,230,155,111, 30, 57,103,206,156, 24, 0, 88,176, - 96, 1,134, 14, 29,138,132,132, 4,152, 76, 38,104, 52, 26,168,213,106,143, 22, 65,184,120, 93,160,114,222, 63,176, 47, 50,116, - 26,220, 50,253, 53,196,197,197,225,187, 39, 30,132,200,113,120,240,235,117, 48,153, 76, 97,207, 31,129, 52,183,111,223,142,211, -167, 79, 7,172, 59,207,243, 33,143, 55,239,186, 15, 25, 50,100,164,172,185, 96,193, 2, 12, 26, 52, 8, 9, 9, 9, 48, 26,141, - 74,221, 47,104, 7,239,200,239,173, 57,104,208,160,145,239,189,247,158,162,217,175, 95, 63,196,199,199, 35, 38, 38, 6, 42,149, - 74, 89,159,245,217, 70,151,179,230,213,130,143,193,242,172, 40, 46, 41, 41,233,142,194,194, 66,101,203,139,162, 8,141, 70,163, -236, 28,222, 23,238, 72, 32,132,144,172,172,172,123,190,252,242, 75,101, 38,155,223, 65,165,213,106,235,165,233,167,223,255,198, - 27,111,252,164,176,176, 80,171, 82,169, 96, 54,155, 81, 92, 92,140,216,216, 88,168,213,106, 12, 27, 54,140,207,201,201, 73,184, -241,198, 27, 63, 35,132,140,166,148,174, 9,167, 73, 41,133,209,104,244, 49, 88,151, 18,185, 39,132, 64,167,211, 97,249,242,229, - 16, 4,193,103, 39, 11,116, 18, 75, 78, 78, 14, 27,149, 0, 0,141, 70,131, 77,155, 54,129,227, 56,136,162,168,124,190,250,234, - 43, 60,241,196, 19, 56,125,250,180, 50, 46, 38, 38,108,235, 38,209,235,245, 58,217, 92, 1,238,109,175,211,233, 32,138, 34, 17, - 4,129,240, 60, 15, 0,148,144,200, 19, 66, 5, 65, 64, 73, 73, 9,254,250,215,191, 98,254,252,249,120,233,165,151, 48,122,244, -104,159,241,231,207,159, 71,163, 70,141, 16, 23, 23, 7,141, 70,115,209,251,194,229,132,228,183,118,166,189,244,170,222,157,224, - 33, 1, 18, 64, 65,149,223,165,165, 7,240,250, 63,223,226, 35,213,214,104, 52,216,184,113, 35,188,155, 93, 57,142,131, 74,165, -242, 25, 38, 8, 2, 82, 83, 83, 35,209,155,186,108,217, 50,245,146, 37, 75,240,197, 23, 95,192,229,114, 65, 20, 69,104,181, 90, -152, 76, 38,196,199,199, 43,159,102,205,154,145, 15, 63,252, 80,213,169, 83,167,169, 0, 2, 27, 44,142,198, 74, 30,115, 5, 0, - 73,253,105,211,131, 95,242,141,226, 98,220, 81,156,203, 17, 66,136, 0, 32,239,237,183,223, 78,232,218,181, 43, 0,224,237,183, -223, 78, 24, 55,110, 92, 30, 33,228,121, 74,233, 69, 55,177,242,192, 39,132,144, 81, 0,160,211,233,180, 3, 6, 12, 80,191,243, -206, 59,104,211,166, 13, 30,121,228,145,248,215, 95,125,245, 22, 0, 75,131,205, 47,249, 29,106,249,175,189, 21,231,125, 67,117, -225, 3,252,118,182, 4, 47,188,240,114,184,186, 18, 0, 92,147, 38, 77,238,123,255,253,247,149,116,136,248,248,120,229, 28,228, -127,142,146,191, 67,156,151, 8,220, 81,161,113,115,231,206, 85, 52, 19, 19, 19,125, 52, 68, 81, 68,201,158,159,177,242,131, 2, - 24, 18, 82, 49,230,137,252,122,151, 51, 77,163, 70,186, 78,141, 78,157, 58, 65,167,211, 97,187,232,190,148,201,230, 42, 84, 57, -131,105,242, 60,175,148,145, 82, 10,139,197,130,170,170, 42,184, 92, 46,216,108, 54,116,237,218, 53,162,186,191,247,222,123,138, -102,227,198,141,149,243,187,247,121, 94,254,200, 55, 48,161, 52,155, 52,105, 50,238, 95,255,250,151,162,153,144,144,160,104, 9, -130, 0,149, 74,133, 5, 11, 22,248,215,241,146, 53,235,187,221,253, 53, 15, 31, 62,140, 25, 51,102, 64,165, 82,201, 41, 64, 74, -196, 50, 45, 45, 13,179,103,207,142,232, 26,119, 37, 19,104,235,146,178,178, 50,105,239,222,189,220,182,109,219,160, 82,169,144, -152,152,136,238,221,187, 3, 0,236,118, 59, 4, 65,128, 78,167, 35,153,153,153,167,229,149, 38,127,123,183,165,123,245, 48,224, -126,251,237, 55,105,213,170, 85,220,162, 17,131, 96,163,192,117, 47,228, 99,208,208,161,248, 38, 77, 13, 30, 64,247,189,101, 80, -171,213, 66,106,106,170, 67,222, 8,178,174,119,110, 86,128, 94, 11, 49, 6,131,225,195, 21, 43, 86,104, 57,142, 67, 85, 85, 21, - 36, 73, 66,110,110, 46, 8, 33,216,181,107, 23,158,127,254,121,124,254,249,231, 88,182,108,153,174, 75,151, 46, 31, 18, 66,218, - 81, 74,171,100,141, 0,154, 0,220, 7,171, 78,167, 83, 12,150, 78,167, 35,109,218,180, 57, 45,183,159,251, 53,199,157, 40, 46, - 46,238, 26, 76, 19,112, 71, 18,134, 15, 31,174,228,156,201, 23, 64,239,131, 77,254, 93, 92, 92, 92,103,195, 4,210,148, 36, 9, - 61,123,246, 4, 0, 24, 12, 6, 24,141, 70,124,255,253,247,202,248, 46, 93,186,192,102,179,161,113,227,198,216,179,167,110, 43, - 68, 32,205, 83,167, 78, 97,225,194,133, 16, 69, 17, 9, 9, 9, 16, 69, 81,181,102,205,154,151, 12, 6, 67, 44,207,243,136,139, -139,195,208,161, 67,231,222,114,203, 45,114, 25, 92, 95,125,245,149, 16, 76,147,231,121,104,181, 90, 44, 88,176, 0, 51,102,204, -192,179,207, 62, 11,255,241, 22,139, 5, 9, 9, 9,104,212,168, 17, 26, 53,242,105,253, 10, 90,206, 75,165,161, 53, 41, 40,138, -119,124,131,221, 59,215,192, 69, 93,144, 92, 18,168, 68,225,146, 36,236, 88,253, 83,102,233,161,147,105, 20, 84,201, 54,114, 85, -215, 56,251, 52,214,180, 1,176,124,109,153,117, 86,184,114,242, 60, 15,187,221,142,111,190,249, 6, 7, 14, 28,192,170, 85,171, - 96, 54,155,209,184,113, 99,196,197,197, 33, 39, 39, 7,227,198,141, 11,104,176,252, 53, 93, 46,215,130, 19, 39, 78, 92,151,147, -147, 67, 42, 43, 43, 81, 86, 86,134,170,170, 42,216,237,118,216,237,118,101, 27, 26, 12, 6,164,164,164,192,108, 54, 83,171,213, -186, 32,152, 38,149, 72, 37, 71,112,234,224,114,161,113,203, 97, 78,221,233,239, 19,172,102,155,202,249,238,114,253,184,175,158, -105, 57,144,163, 28, 5,220, 85, 39, 4, 84,114,185,202,214,252,112,232,161,112,229,140, 6, 33, 52,199, 79,156, 56,177,157,119, -243,244,152, 49, 99, 80, 92, 92,220,110,230,204,153,227, 1,188, 93, 95, 77, 29,144, 6, 0, 78,224,107,184, 63,152,106, 54,147, -151,150, 47, 31, 14,224,238,101,203,150, 97,244,232,209,248,231,171,175,118,128,159,193,242, 89,159,148,162,100,255,122, 28,222, -191, 17,146, 36,121, 62, 52,232,239, 96,119, 62,126,229, 36,213,213,213,150, 45, 91,182, 24, 63,250,232, 35,196,199,199,163,121, -243,230,136,137,137,129, 70,163,169, 99, 6,228, 79,184,186,215,214,214, 90,246,238,221,107,252,228,147, 79,144,144,144,128,102, -205,154,193, 96, 48, 64,171,213, 42, 55,232, 91, 86, 45,195,248,187,134,161,252,232, 62,188,245,216,157, 17,151,243,254, 1,125, -145,174, 83, 99,216,180,124,180,107,215, 14, 75,239,188, 21, 28, 1, 30,248,238, 71,136,162,136,143,134,220, 0,141, 70,141, 7, -190,219, 26,177,230,214,173, 91, 65, 41, 69,179,102,205, 96, 54,155,149, 40,155, 74,165,194,154, 53,107,112,235,173,183, 98,209, -162, 69,184,254,250,235,195,214,189,186,186,218,178,107,215, 46,227,199, 31,127,140,248,248,120, 92,115,205, 53,208,235,245,138, -158,183,137,201,200,200, 64, 69, 69, 5, 90,182,108, 25, 82,179,166,166,198,178,125,251,118,227,162, 69,139, 16, 31, 31,143,244, -244,116,232,245,122,159, 72,216,212,169, 83,125, 52, 58,117,234,116,201,154,245,221,238,254,154, 35, 70,140, 64,203,150, 45, 97, - 50,153,148,117,224,111,180,235, 73, 55,248,166, 57,216, 0,168,189,190,207, 2,216, 26, 96, 58,121,184, 8,160,179,103,156, 11, - 64, 21,128,184, 0,122,193,116,202,224,142, 23, 39,250, 77,239,191, 28, 5, 1, 0, 8, 33,242,241,216, 7,192, 6, 0,104,219, -182, 45,202,203,203,161,209,104,208,189,123,119,156, 61,123, 86, 9,243, 73,146,132,219,111,191,157,127,230,153,103,146, 56,142, -131,195,225, 0,165, 20, 60,207, 67,190,243,243, 67,226, 56, 14, 57, 57, 57,216,237, 89,167,131,134, 14, 69,122,122, 58,228, 36, - 14,141, 70,131,209,163, 71,147, 39,158,120, 66,144,163, 23,148, 82,152,205,102,116,234,212, 41,104,187,148, 32, 8,143,125,246, -217,103,177,106,181, 90, 49, 87,114, 89,246,238,221,139,215, 95,127, 29,119,223,125, 55,142, 30, 61,138,212,212, 84, 60,249,228, -147,198,130,130,130,199, 0, 76, 11,166, 41, 99, 52, 26,125, 12,214, 93,119,221, 37,228,228,228, 36,233,245,122, 37,186,229, 49, -149,200,201,201, 9,105,197, 61,249, 79,248,250,235,175, 3,222, 29,250,223, 49, 16,119,175,139,136, 52,183,108,217,162,152, 51, - 57,122, 33,143, 47, 46, 46, 86, 34, 88, 30, 35, 24, 74,147, 2, 80, 46,162,158,200,149,106,203,150, 45,211, 83, 83, 83,141,119, -221,117, 23,170,170,170,208,164, 73, 19, 12, 28, 56, 16,146, 36,193,110,183, 99,194,132, 9, 33, 35, 47,162, 40,226,167,159,126, - 66, 65, 65, 1,158,121,230, 25,204,157, 59, 23,253,251,247, 87,198,203,119,113,137,137,137, 48,153,254,240, 62, 14,209, 67, 2, -236, 78, 7,106,107,205,160,212, 5,151, 68, 33,185, 36,236, 90,187, 35,243,208,206, 3, 89,133,139, 23,138, 0, 96, 89,183,204, -123,174,212, 17,115,254,211,186, 79,188,106,203,218,223,236, 91, 66,201,243, 60,143, 7, 31,124, 16,147, 39, 79,198, 29,119,220, -129,213,171, 87,227,185,231,158,195,125,247,221,167,152,119,121, 95, 8,135,195,225,120,127,204,152, 49,255, 88,186,116,105,155, -199, 31,127,156, 3,220,199,164, 94,175, 7, 33, 4, 22,139, 69,249,236,221,187, 87,250,251,223,255,254,171,205,102,123, 63,152, - 30, 21,116,191, 24, 52,181,255, 45, 45,231,174, 61,245, 93, 60, 71, 4,147, 61,177, 89,159,202,155, 51,251,211,254,119, 54,111, - 68, 37,119,132,143,130,194,106,169,193,179,207, 60, 21,113,244,174, 33, 32,132, 12, 25, 48, 96,192,192,233,211,167,215, 25, 55, -125,250,116,236,217,179,103, 32, 33,164, 36, 88,147,104, 32,116, 64,122,108, 74,202, 76, 0,208,157, 58, 53,209, 12, 28, 7,128, -151,128, 65, 46,224,214,213,171, 87, 3, 0,154, 54,109, 10, 9,104, 79,128,127,243,192, 39, 78, 96,165,191, 22,165, 20,118,135, - 19,102,179, 5, 18,117,239, 71, 18,149, 32,185,220, 81, 80,127,147, 21,174,221,141, 82, 74, 9, 33, 18,207,243,232,208,161, 3, - 6, 13, 26, 4,181, 90, 13,163,209,168,156,231,253,207, 73, 17, 92, 20, 41, 0,137, 16,130,140,140, 12, 12, 28, 56, 16, 42,149, - 10, 6,131, 1, 38,147, 73, 49, 88, 60,207,163, 67, 78, 95,124,178,232, 53,140, 29,148,133,187,110, 72,198,103,187,202, 34, 42, -103, 51,189, 26,205,116, 26,180,109,219, 22, 49, 49, 49, 32, 4,224,121, 78, 41,167, 65,175,133, 74,105,126,140,172,238,167, 78, -157, 66, 73, 73, 9, 74, 74, 74,192,113, 28,114,115,115,161, 86,171, 33, 8, 2,246,239,223,143,105,211,166,193,102,179, 69, 84, -119,142,227,112,237,181,215,162,111,223,190, 80,171,213,144,175, 21,222, 77,131,162, 40,162,170,170, 10,173, 90,181,194,242,229, -203,209,171, 87,175,176,154,237,218,181, 67,159, 62,125,160, 82,169,160,211,233,148, 84, 29,181, 87, 93,171,171,171,149,245,112, -221,117, 65,115,218, 2,106,174,250,233, 40,230,173,250, 30, 86,155,132,243,181, 14,159, 25, 82, 27,155,176,225,227,103, 34,170, -187,172,249,254,251,239,163,162,162, 66, 57, 15,113, 28,167,124, 8, 33, 72, 79, 79,199,123,239,189, 87, 71,200,219,139, 80, 74, -215,249,141, 78, 36,132, 20, 42, 11,165,116, 40, 33,164,208,251, 59,216,116,158,159, 55,228,229,229,101, 23, 20, 20,204,232,209, -163,199, 39,155, 54,109, 90, 28, 76, 47,152, 78, 94, 94, 94, 86, 65, 65,193, 12,239,233, 3, 44, 71,193, 59,234, 64, 60,149,227, -228,200, 76, 90, 90,154,210,238,108, 52, 26,161, 82,169,148, 25,157, 78, 39, 62,252,240, 67, 36, 37, 37, 33, 57, 57, 89,249, 14, - 4,165,148, 54,109,218, 20,148, 82, 60,114,214,157, 2,244,117, 19, 21, 74, 0,220,124,150, 42,122, 46,151, 11, 75,151, 46, 69, - 76, 76,140,114,160, 27,141,198,144,205, 69,106,181,186, 79,183,110,221, 56,171,213,170,132,201, 57,142,195,222,189,123, 81, 80, - 80,128,209,163, 71,163,117,235,214,112,185, 92,168,169,169,193,141, 55,222, 40,190,245,214, 91,125, 16,161,193,210,235,245, 74, -222,145,213,106,197,183,223,126,139,184,184, 56, 52,106,212, 8, 9, 9, 9,136,143,143,135, 70,163,241,222, 49,130, 66, 41,197, -240,225,195,125, 34, 87,222, 81, 43,239, 19,154,220,236, 23,137,230,245,215, 95,175, 68,175,140, 70, 35, 86,174,188,112,126,238, -222,189, 59, 40,165, 72, 76, 76,196,230, 50,112, 75, 22, 0, 0, 32, 0, 73, 68, 65, 84,205,155,195,105,209, 46, 93,186, 64,146, - 36, 36, 37, 37, 65, 20, 69,178,102,205,154,151, 60,230,138,136,162,136,159,127,254, 25,197,197,197, 72, 76, 76, 84,238, 74,195, - 81, 83, 83, 83,250,214, 91,111,185,222,121,231, 29, 0, 64,191,126,253, 80, 89, 89,121,198,107,124,249,216,177, 99,125,234,123, -238,220,185,242,176,194,151, 57, 18, 0,167,221,137, 90,179, 5,213, 85, 53,112, 72, 46, 56,156, 46,156, 57,113, 54,238,153, 39, - 38,138,255,156, 48, 14, 0,240,196,172,183, 81,245,222,133, 19,216, 23, 79,140, 74, 26,254,250,146, 73, 0,134,133,210,175,173, -173,133,197, 98, 65,211,166, 77,177,117,235, 86, 84, 85, 85,161,127,255,254, 62,209,223, 48, 77, 16, 10,148, 82, 27, 33, 36,119, -232,208,161, 91,223,120,227,141,150,237,219,183, 39, 53, 53, 53,168,169,169, 65,109,109, 45,228,223, 69, 69, 69,116,241,226,197, -135,106,107,107,115, 40,165, 65,115,134,212, 93,171, 14,216,182,199, 44,253,225, 23,213,208,255, 27,113,107,236,241, 19,199,156, -229,102,109,117,165,249, 87,171,139,238, 1,117, 81,184, 40, 5,117, 73,112, 81, 41,104,196,229,247,128, 16,146,158,153,153,249, -247, 69,139, 22, 5, 52,164, 60,207, 99,209,162, 69,232,217,179,231,223, 9, 33,123, 67, 37,247,203, 52, 7,212, 78, 81,124,230, - 63,255,249,143, 10, 0,250,246,237,251, 76,115,135,227,137, 18,192,214,190, 99,199,145,155, 54,109,138,213,235,221,253,132, 98, - 99, 99, 65, 41,229,107,107,107, 99,115,114,114, 70, 34,144,193,146, 40, 28, 14, 39,204, 22, 43, 42, 42,171,225,176, 57,224,148, -156,112, 57, 37, 56, 37,119,116,212,233,114, 65,114,186,224,148, 92,224, 5, 62,166,207,245, 77,171,221,177, 44, 82,177,238,199, -163,215, 4, 40,166,228,238,225, 5,164,164,164, 40, 77,194,222,185, 50,225,162, 24, 1,112,185,207,133, 84, 57, 55,254,178,182, - 16,103,246,108,128,138, 80, 72, 46, 7, 36,167, 29, 46,135, 29, 60, 36,236, 57,120, 2,237,155,132, 61,135, 40,229,188,233,133, -151,209,189,123,119,124, 54,106, 24, 8, 1, 30,248,118, 51, 84, 42, 21, 22,223,214, 31,106,173, 26,127, 91,245, 99,164,229,244, -169,251,246,237,219,241,200, 35,143,224,149, 87, 94,129, 78,167, 83,110, 78,246,237,219,135, 37, 75,150, 96,192,128, 1, 17,215, -157, 16,119, 83,171,188, 14,243,242,242,112,242,228, 73,204,156, 57, 19,217,217,217, 16, 69, 17, 21, 21, 21,200,201,201,193,233, -211,167, 35,210,164, 84, 66,124,124,188,146,174,227,159, 35, 6,160,222,219,200, 91,243,222,219, 82,241,229,198,197, 32, 32,248, -241,227,137, 62,215,163,119,151,252, 80,111,205,201,147, 39,251,148,179, 62,209, 43, 47, 47, 18, 48, 24, 16,200,200,132,153, 78, - 94,201,154,130,130,130, 25,254,243,135,211,243, 30,239, 55,191,205,207,148,213,217,152,117,206,190,148, 82,154,150,150, 6, 73, -146, 96, 52, 26,161, 86,187, 35, 96,254, 23, 82,131,193,224,227,200,195,181, 39,243, 60, 15, 74,169,178, 98,253, 79, 99, 60,207, - 99,243,230,205,117, 76,192,191,254,245,175,144,237,180, 78,167,179, 93, 76, 76, 12,170,170,170,148, 28, 41,181, 90,141, 73,147, - 38, 97,236,216,177,138,185, 82,171,213,152, 63,127, 62,186,118,237, 10,155,205,214, 46,168, 32, 0,149, 74, 85,219,177, 99, 71, -119, 14,178, 59,119,138,140, 30, 61,154,183,219,237,208,106,181, 62, 81, 39, 57, 55, 45,156, 25,146,163, 77,223,124,243, 77, 68, - 17,172, 72,115,144, 40,165,216,177, 99,135,143, 81,243,116, 53, 6, 0,236,220,185, 83,185,208, 70,218,222,237,114,185,160,211, -233,136, 74,165, 34, 6,131, 33,246,174,187,238, 82,116,229,109, 46,215, 59,146, 68,235, 95,126,249,229,198, 80,227,119,237,218, -117, 85, 62,142, 65,146, 36,216, 29, 14,152,205, 22, 84,213,212, 98,106,190,167, 69,109, 42,182, 0,216,146, 59,254, 17, 60, 56, -104, 64, 95,132,233,221, 23,140,248,248,120,124,254,249,231, 16, 69, 17,203,151, 47,135,201,100,194,173,183,222, 10,147,201,132, -103,158,121, 6,119,222,121,103,196, 6, 11, 0, 40,165,149,132,144,220,137, 19, 39,110,125,245,213, 87,155, 54,109,218, 20,118, -187, 29, 54,155, 13,118,187, 29, 7, 15, 30,196,226,197,139,143,213,214,214,230, 82, 74, 43,195,233,169,187, 86, 29, 40,124,188, -101,105,207, 17,183, 89,246,156, 90,133,211,167,206,194,233, 58, 14,167,203, 5,167,195,233, 54, 4,146, 4,167,221, 9,158,231, - 76, 55,246,104,182,198,157,240, 79,108,107, 55,151, 12,190,152,117,114,145,208,253,251,247,151, 39, 38, 38,202,119,144, 38,155, -205, 70, 0, 64,173, 86, 83, 0,114,130,123, 13,128,144, 29, 79,100,142, 1,227,255,249,202, 43,215,200,205,247,175,188,242,202, - 53, 79, 62,254,248,120, 0,111,238,217,181,107,225,189,247,222, 59,241,211, 79, 63,245,153,231,222,123,239,197,158, 93,187, 22, - 6, 44, 32, 0,135,195, 1,179,217,138,178,178,223,112,255, 3, 47, 40,195, 1,170, 36,186,123,158,234, 8, 0, 90, 0, 40, 59, -253, 63, 76,120,228,201,128, 7, 41,165,148,182,111,223, 94, 62,222, 33,138, 98,157, 36,100,239,243,123,184,243,135, 39, 50,228, -147, 98,161, 82,169,112, 96, 83, 33, 38,142, 31, 9,184,156,128,189, 6,176,215,130,218,107, 65,109, 53, 32,106, 29,168,195, 18, - 86, 87, 46,167,156,182, 33,240, 28, 52,234, 11,231, 77,189, 94, 7,181, 86, 29, 81, 57, 3,213,253,200,145, 35,120,232,161,135, - 96,179,217, 48, 98,196, 8, 88, 44, 22, 88,173, 86, 88, 44, 22,100,100,100,192,108, 54,135,213,147,235, 46, 73,146, 18, 5,156, - 56,113, 34,178,179,179, 49,109,218, 52, 60,253,244,211,200,200,200,192,248,241,227,241,201, 39,159, 32, 43, 43, 11,181,181,181, - 97, 53, 1, 40,215, 99, 65, 16,148,115,176,247,182, 2, 80,175,109, 20, 72,211,253, 56, 48,212,217,238,143,222,213,175,222,154, - 51,102,204, 64, 89, 89, 89,157,200,149,119, 4,107,206,156, 57, 33,117,131,225, 23,101,138,100,186,237,158, 65,230, 73,147, 38, - 61, 75, 8, 41,156, 52,105,210,179,249,249,249,197,145,232, 5, 25,255,149,231,251,102,175, 97,219,253,166, 9,252,152, 6,142, -227, 64, 41, 85,194,154,128,123,197,201,227, 0, 64,175,215,163,176,176, 16, 75,151, 94, 72, 27,144,167, 9,166, 41, 73, 18,254, -155,232,222, 16, 67, 60,145, 43,249,255,224, 51, 18,134, 14, 29,138,140,140, 12,159,232,149, 78,167, 11,105, 54, 36, 73,194,145, - 35, 71, 80, 84, 84,132, 30, 61,122,160,178,178, 18, 2,128, 39,118,237, 66,251,187,238,130,213, 99,252,212,106, 53,254,254,247, -191, 7,213,241,102,235,214,173, 62, 73, 64,237,219,183, 63,158,147,147,147,182,121,243,102, 37,162,165,209,104,160,213,106, 21, -147, 17,225, 65,141,145, 35, 71,250,152, 33,127,131, 37, 31, 60, 95,127,253,117, 68, 77,132,148, 82,244,238,221, 91,137, 94,197, -196,196,224,139, 47,190, 80,166,185,225,134, 27, 64, 8, 65, 82, 82, 18, 86,174, 92, 25, 86, 19,112,175, 83,121,219,243, 60,143, -154,154, 26,108,223,190, 29,106,181, 90,201,207,208,233,116, 74,253, 25, 65,160, 18,108, 14, 7,106,205, 22, 84, 85,185, 79,164, - 7,138, 62,243,153,196,110,189,248,206,105,114, 36,244,252,249,243,248,246,219,111,241,249,231,159, 35, 59, 59,219,167,121, 48, -210, 38, 66,165,200,148,158, 37,132,244,124,250,233,167,127,124,233,165,151,154, 36, 36, 36,192,110,183,227,200,145, 35,248,240, -195, 15, 79,214,214,214,246,164,148,158,173,135, 32,156, 14, 39, 44,181,102, 84, 86,213, 96,202,244,249,193,166,228, 0,192,110, -171,194,208,193,189, 47,250,113, 40, 23, 3,165,244, 4,128,251,228,255,132,144,133, 0,228,100,252,243,148,210,177,245,209, 19, -129, 62, 35, 70,142,236, 59,113,226, 68,101,216,196,137, 19,241,227,143, 63,246, 21,151, 46, 45,114, 0,107,249,165, 75, 59,204, -156, 57, 83,153,102,230,204,153,248,124,233,210,239, 92,192,218, 32,133,116, 71,176,204, 22, 84,215,152, 97,138, 75,197,137,195, -235,194,150, 69,197, 91, 65, 67,156,151,229,115, 72,176,188,155, 72,205,213,133, 98, 82,218,177, 99, 71, 0, 80,242,142, 58,244, - 29,137, 55,222,252, 23, 52, 28,197,240,190,237,145,168,147, 64,244,241, 80,245,158, 4, 18,215,204, 61,227,148,206, 33,117,229, -114,174,123,238, 9, 28, 52,104,241,247,213, 27, 33,138, 34, 62, 31, 53, 4, 42,181, 10,119,127,181,222,221,185,103,220,112,168, - 52,106, 12,124,119, 73,216,178,122,215,253,192,129, 3,216,184,113, 35,218,182,109,139,255,253,239,127, 74,142,173,124,221,138, -176, 53,129,202,207,185,146,207,227,167, 78,157,194,208,161, 67,161, 82,169, 48,127,254,124,172, 91,183, 14, 79, 63,253, 52,238, -189,247, 94,220,120,227,141, 1,243, 98,253, 53,179,178,178,124,182, 81,176,252,168,250,108,163, 64,154, 50, 23,187,221,189, 53, -229,228,246, 64,102,253, 82, 19,219,189,162, 69,129,154,204,110,246,155, 14,112,231, 82,109, 5, 96,205,207,207, 47,206,207,207, - 31, 74, 8, 41,204,207,207, 31,234, 55, 93, 56, 29,255,241, 97,207,131,138,193,242,132,228,250, 0, 23, 76,148, 58, 68, 91,182, -193, 96,192,125,247,221,135,103,158,121, 70, 73,100, 12,133,236, 92, 67, 81, 88, 88, 88,103,216,242,229,203,195, 53, 17,238,141, -141,141,205,238,219,183, 47, 42, 43, 43,113,244,232, 81, 24,141, 70,180,127,253,117,236,122,240, 65,116,158,251,255,236,157,119, -120, 20, 85,219,198,239, 51,219, 55,217, 52, 72,129, 20, 18, 32,148, 64, 40, 73, 64, 68,233, 32, 2,210,139, 5,245,179, 80, 45, -168,175, 84, 11, 77, 5, 4, 65, 65, 4, 4, 84, 20, 95, 64, 69,170, 20, 1,233, 6,144,208, 4, 12, 69, 32,164, 17,146,144,190, -101,118,202,249,254, 72, 54,110,202,102,119, 67,144,242,158,223,117,205,181, 59, 51,103,238, 57,103,219,220,251,156,115,158, 89, - 6,174, 91, 55, 0,197, 95,248, 51,103,206, 64,171,213,254, 85,101, 69, 42,193, 96, 48,192,207,207, 15, 58,157, 14, 94, 94, 94, -240,242,242,130,167,167,103,169,209,114,214, 69,104,251, 50,255,242,203, 47, 85, 70,174,236, 67,190,174,152, 33, 74, 41,226,227, -227, 43, 68,176,108,231,180,237,179, 69, 50, 92,209, 4, 0,157, 78, 71,181, 90, 45, 20, 10, 5, 60, 60, 60, 74,195,253, 58,157, -174,116,113, 53,130,229, 44,145,104, 68, 68, 68,153, 68,164, 42,149,170, 76, 34,210,251,149,127,186, 8, 45, 40, 42, 44,170,113, -125,158,231,161, 84, 42,241,243,207, 63,163, 93,187,118,165,230,202,102,172,236,223,119,119,160,148,166, 16, 66,186, 44, 90,180, -232,232,130, 5, 11,252, 10, 11, 11,177,106,213,170,188,194,194,194, 46,148,210, 20,183,180, 0, 8, 86, 17, 70,139, 5,133, 5, -197,175,193,223,103,215, 59, 57,232,254, 78,248,220,172,101,203,231,190,249,230,155, 10,219,191,249,230, 27, 92,186,116,233, 57, -156, 57,179, 47, 12, 88, 54,105,210,164,200,184,184,184, 48, 0,152, 52,105, 82,114, 24,176,204,145, 38,165,255,116, 17, 22,150, -152,117,115, 81,229,227,150,220, 69,150,229, 10,127,248,110,247,130, 72, 8, 41, 53, 25,143, 61,249, 50,210,174, 36, 34,202, 35, - 11,129,190,158,144, 11,210,160,238, 62, 29,103,110,121,224,179,101, 59,221,170,167,135, 70, 13,157,254,159,238, 38,157, 94, 7, -109, 73,175, 2, 33, 4, 58, 15, 61, 84, 26,215,253,185,173,237,137,137,137,240,240,240,128, 36, 73, 21,174, 55,238,206,104,166, -148,150, 94, 59, 23, 44, 88,128, 9, 19, 38, 96,213,170, 85, 56,115,230, 12, 90,183,110,141, 30, 61,122,224,230,205,155, 56,125, -250, 52, 44, 22,139,203,245,180,191, 94,156, 63,127, 30,187,119,239,198,133, 11, 23,144,156,156,236, 86,253, 28,105,218,176,173, -255,188,251, 36,134, 60, 22, 91,133,130, 99,205,233,211,167,227,230,205,155, 21, 34, 87,246,195,143, 28, 69,176,236,189, 72, 21, - 36,160,108,244, 8,182,241, 80, 54, 67, 84,126, 29,128,159,109,219,228,201,147,223,113,245, 56,251,117, 91, 4,172,156,174, 67, -148, 37, 5,203,124,131,108, 93, 76,182, 23,221, 62, 50,101,123,238,225,225, 81, 26,101, 10, 15, 15,175, 50,122, 85, 82, 73, 40, - 20, 10,116,188, 82, 0,141, 70, 83,218,157,215,251,230, 63,199,189,248,226,139,104,208,160, 65,153, 49, 88,246,111, 74,101, 88, - 44,150,125,251,246,237,139,233,223,191,191,226,252,249,243, 80, 42,149,144,101, 25,150,135, 31, 70,235,101,203,240,231, 91,111, -161,211,213,171,176, 8, 2,116, 58, 29,118,236,216, 97, 53, 26,141,149,255, 75,116, 0,199,113,196,102,176,180, 90, 45,188,188, -188,224,237,237, 93, 26,205,113,231, 71,200,209, 63, 68,251,197,157, 47,180,109, 64,191,253,133,213,246,254,153, 76,166, 50,134, -203, 85,236,187, 12,108,166,200,199,199,167, 76,183,168, 45,138,231,138,193,114,150, 72, 84,171,213,122, 31, 56,112, 32,210,219, -219, 27,148, 82,100,101,101,225,233,167,159,190, 88,133,228,125, 1, 5, 45, 30,228,110, 50,163,208, 84,117, 55, 72,117,248,239, -127,255,139,203,151, 47,195,106,181, 98,246,236,217, 21,140, 85,117, 34, 88, 54, 40,165,151, 99, 99, 99,229, 94,189,122, 33, 62, - 62, 30, 90,173, 86,160,148,186,157,191,138,202, 50,172,130, 8,179,201,130,194,162,154, 55,153,247, 34,231,206,156,249,201,211, -211,243,105, 0,134,220,220, 92,133,143,143, 15, 60, 60, 60, 96, 50,153,242, 20, 37, 51, 5,175, 1,188, 94, 16, 62,126,242,201, - 39, 63, 5, 0,165, 32,124, 92, 85, 30,172, 82,131, 85,195,175,163,237,119,203, 81,244,170,186,230,138, 16, 82, 60, 61,159,227, -176,106,246, 4, 68,121,100, 34,182,190, 39,204, 55, 47, 67,235,237, 15,226, 27,129,207,150,237,196,249,107,183,220,170,231, 51, -171,215, 35, 44, 44, 12, 91,255,111, 0,180, 90, 45,158, 94,191,187,120,144,246,152,167,160,214,105,209,125,241,127,171,213,118, -163,209,232, 48, 82,229,106, 4,203, 94,211,102, 0, 99, 99, 99,209,168, 81, 35,236,219,183, 15,177,177,177,184,116,233, 18, 46, - 93,186,132,107,215,174,225,204,153, 51,200,201,201,113,171,158, 42,149, 10,235,214,173, 67,102,102, 38,212,106, 53,242,243,243, -113,245,234, 85,135,227,159, 93,213,180, 55, 88, 77,159,152, 14, 0, 8, 14,240,113,203, 96,217,107,206,155, 55,175,130, 89,119, -177,151,167,170, 66, 89,229,198, 58,217,214,249,114,102,167,252,122,249,242, 0,112, 19,128,194,201,113,229,215,179,102,207,158, -189,207, 22,249, 42,209, 85, 80, 7,227,175, 0, 7, 93,132, 42,149,202,212,180,105, 83,189,125,255, 41,199,113,240,242,242, 34, -227,199,143, 87, 16, 66, 96, 48, 24,224,227,227,131,198,141, 27,195,106,117, 62, 44, 65,173, 86,155, 30,122,232, 33,189,125,232, -149, 16, 2, 79, 79, 79,197,196,137, 19,201,202,149, 43, 43, 61,110,243,230,205, 85,126,184, 69, 81,252,244,249,231,159, 31,145, -146,146,226, 23, 20, 20,132,244,244,116,168,213,106, 80, 74, 65,186,118, 69,199, 43, 87, 96, 45, 49, 12,137,137,137, 88,177, 98, - 69,145,213,106,253,212,105,133,203, 97, 48, 24, 80,187,118,109,104,181,218, 50,179, 98,236, 66,171, 46, 69,176,106,210, 92,217, - 52,237, 47,172,182,231, 99,198,140, 41, 93,119,231, 71, 82,173, 86,211, 39,158,120,194,118, 0,245,245,245,133,191,191, 63, 50, - 50, 50, 74,191, 40,182,200,157,171, 6,203, 89, 34, 81,149, 74, 5,171,213, 90,218,157,185,120,241,226,106, 27,131,123, 9, 42, -202,196, 96, 8, 64,112,112, 19, 4, 4,154, 33,203, 82,141,105,139,162,136,177, 99,199,150,201,121, 5,252,147, 45,217,118, 81, - 16, 4,161, 76,248,223,173,250,215, 64, 36, 73,166,128, 32,150, 68,241,140, 14,253,195, 61, 75,120,120,184,119, 73,151, 97,121, -214, 82, 74, 43, 12, 70, 7,254, 73,201,160, 0, 62,188,126,253,122, 11, 31, 31, 31,244,236,217, 19, 91, 54,110,220,252, 62, 80, - 26,178, 49, 1, 41,250, 27, 55,222, 44,121,158, 90, 85, 61, 40, 69,105, 23, 97,145,177,166,205, 58,169, 16,189,186,221,174, 28, -142, 43,254, 99,182,225,203,143, 17,165,207, 64,235,122, 90, 28, 62,114, 26,237,194, 40,168,165,122,159, 71,160,248,186,163, 82, -169,160,243,240,128, 86,251,207,152, 43,173,135, 30,106, 77,117,134, 43,252, 19, 72,176,253,246,222,110, 4,139, 16,174,204,235, - 56, 98,196, 8, 76,154, 52, 9, 61,123,246,196,165, 75,151,112,224,192, 1, 92,188,120, 17,227,198,141, 67,116,116, 52, 30,127, -252,113,151,235,169, 82,169,176, 97,195, 6,228,229,229,129, 82,138,204,204, 76,152,205,102, 76,157,234, 52, 63,113,149,154,246, -191, 17, 87,118,205, 2, 0,172,223,117,162,218,154, 83,166, 76, 41,205,193,104,187,230, 87, 21,181,114,145, 99, 78,214,221, 61, -254,142, 83,169,193,186,112,225, 66,165,115,229,155, 53,107,150,209,189,123,247,192, 11, 23, 46,192, 96, 48,160,113,227,198,176, - 88, 44, 14,187, 33,136,221,221,182,207,158, 61, 91,169,102,195,134, 13,173,143, 61,246,152,170, 78,157, 58,101, 34, 87,182, 25, - 54, 37, 58,149,106, 2, 0,165,180,128, 16, 50,234,209, 71, 31,253,110,251,246,237,250,198,141, 27, 35, 47,175,120,252,237,170, - 85,171,240,218,107,175, 65,175,215,227,194,133, 11, 24, 48, 96,128,209,104, 52,142,162,118, 57,176, 42,211,172,164, 29, 80,171, -213,165,221,100,182,174, 50, 77, 21,161,232,202, 52, 9, 33, 88,180,104, 81,165,185,160,202,179,108,217, 50,160,220, 44, 10, 71, -245,252,228,147, 79,106, 76,243,200,145, 35,101,238, 49,216,175, 95,191, 47, 31,127,252,113, 36, 39, 39,151,233, 22,172,202, 96, -149,215,116,150, 72, 84,161, 80, 32, 40, 40, 8, 31,124,240, 1,252,253,253, 81,167, 78,157, 10, 6,203,217,123, 84, 29,238,180, - 38,229,104,194,194, 5,211, 59,124,249,213,122,149, 86,195, 33,254,192,122,228,231,220, 40, 83,222, 98,253,103, 74,180, 38,182, - 59,248, 19,123, 92,170,167,197, 98,193,220,185,115, 49,125,250,116, 76,159, 62,189,202, 58, 57,152, 14,237,180,237,246, 6,203, - 21,179, 85,153,166, 44, 75, 68,231,225, 7, 15,207, 96, 68, 71,251, 65,118, 33, 87,167,125, 44,252, 46,189,239,198,228,228,100, -159,176,176, 48, 92,188,120,145,224,159,241, 88,165,104, 52,154,167, 97, 55,219,175,210,239, 59,112,102,205,154, 53, 45, 90,182, -108,137,197,139, 23, 3,192,255,205,253,245,215,167,166,155,138,195,153, 37, 41, 25,118,184, 82, 79,137, 74, 68,231,225, 11,189, -161,228,117,148, 93,207,121,106,255,206,149,175,167,237,226,119,155,127,244, 42,104,218,142,255, 59,254, 23, 60,209, 59, 20,191, - 31, 61,131, 61, 41,158, 8,211,166,161,174, 49, 19,114,230, 95,120,115,104, 44, 62,251,169,248, 34,126,230,184,115, 77, 66, 8, - 14,141, 31, 5,131, 78,139, 33,107,182, 65,165, 82, 97,223, 91, 47, 64,173, 86,163,243,130,226, 46,217, 63,231, 78,129, 82,171, - 65,212,184,233, 46,213,179,124, 79,141,109,204,149, 13,103, 99,176,170,106,123, 97, 97, 33,114,114,114,240,221,119,223,225,165, -151, 94,194,205,155, 55,113,245,234, 85, 92,184,112, 1,107,215,174, 45,115,141,115,181,158, 42,149, 10,147, 39, 79,198,219,111, -191, 13,142,227,208,162, 69, 11, 76,159, 62, 29,237,219, 87,125,203, 25, 87,222,247,242, 56,139, 94, 85,165,185,112,225, 66,183, - 39,108, 61,136,184, 53, 64,195, 22,201,242,247,247,135,167,167, 39, 0,148,185,192, 58,235, 38,116,164, 41,138, 34,244,122, 61, -244,122,125,153,180, 8,253,251,247,119, 26,193, 2, 0, 74,233, 14, 66,200,240,230,205,155,127, 61,125,250,116,207, 46, 93,186, -168,130,131,131, 17, 23, 23,135, 11, 23, 46,224,151, 95,126,177, 46, 89,178,196,104, 52, 26, 95,162,148,238,114,187,146, 0,177, - 13,252,182,207,104,239, 14,146, 36, 37, 95,189,122,181,238, 39,159,124,162, 32,132,224,211, 79, 63, 45,147,160,181,124, 27,143, - 28, 57, 34, 58,235,146, 17, 69, 49,249,234,213,171,117,231,207,159, 95, 70,211,182,148, 55, 41,174,104, 58,194,214,230,242,175, -129, 43, 95, 30,103,137, 68,149, 74, 37, 18, 19, 19, 49,109,218, 52, 16, 66,202, 76,156,184,159, 57,124, 44,109,229, 35,109,130, -253,158, 30,218,173, 37, 1, 7,190,146, 72,175, 34, 59, 23, 64,177,185, 26, 52,127, 29, 54,188, 93, 49,233, 98,121,180, 90,237, -213,253,251,247,215,155, 53,107,150, 66,161, 80, 96,222,188,121,101, 62, 75,229,223,247,223,126,251, 77,210,235,245,215,171,219, - 14,171,213,234,116, 22,149, 67, 56,238,240,162,121,211,122,126,249,205, 22, 21, 33, 60,226,247,175, 71, 94,110,229, 83,211, 53, - 42, 37, 86,175,217, 44, 42, 21, 92,245, 6,149,212, 28, 95,246,232,209, 99,234,238,221,187,149, 97, 97,149,101, 55,112,141, 80, - 96,203,162, 69,139,122, 63,255,252,243,181,154, 53,107,102,155,124,162, 41, 89, 64,138, 51,187, 59, 52, 88,246, 80, 96,211,103, -159, 76,251,191,229,223,108,209,112,196,138,248, 3,235,145, 87,206,172,151, 71,173, 86,225,251, 53,155,172, 74,165, 34,177,170, -114,182, 60,121,119,226,130, 24,243,196, 75,248, 98,219, 10, 4,182,236,141, 97,253, 58,224,208,226,255,195,147,205, 76,176,254, -240, 12, 90, 12, 91,141, 85, 83,138,163, 55,173,127,156,226, 84,139,227, 56,120, 27,254, 73, 88,201,113, 28,180, 58, 61, 84,154, -127,162, 47, 26, 15, 15, 40,220,136,216,218,218,110,123,238,168,140, 59, 40, 20, 10, 52,104,208, 0, 13, 27, 54,196,163,143, 62, -138,152,152, 24,116,237,218, 21,167, 79,159,198,233,211,167, 49,110,220, 56,135,230,202, 89, 61,213,106, 53,122,246,236,137, 94, -189,122,185,117,188, 51, 77, 71, 99,173,111, 87,179,178,215,238,149, 87, 94, 1,128,219,141,102,221, 23, 84,203, 96, 5, 4, 4, - 64,163,209, 84,203, 80, 85,166,201,243,124,169,177,210,235,245,165, 17,171,205,155, 55,151,150,113, 6,165,116, 23, 33, 36,250, -189,247,222,123, 67,175,215,119, 53,153, 76, 81, 0,224,225,225,241,151,209,104,220,107,181, 90, 23, 82, 74,115,111,167,174,246, - 6,163, 60,206, 6,185,103,102,102, 62,254,220,115,207,237,226, 56,174,190,173,125,229, 31,237,145,101,249, 90, 70, 70, 70,149, - 83,213, 51, 51, 51, 31,127,246,217,103, 43,213,172, 76,215, 21,205,202,144, 36,169,140,169,178,159, 97,232, 10,206, 18,137,170, - 84, 42, 24, 12, 6,108,220,184, 17,181,107,215,118,183,122,247, 52,191, 31, 79,155, 91,213,254, 46,254,218,253, 0, 2, 6,205, - 95,119,125, 95, 22, 31,222,197, 95,147,180,225,237,167,234, 85,117,140,213,106,125,100,206,156, 57,135, 4, 65, 8,119,165, 14, - 26,141, 38,201, 98,177,116,112,185,210, 37, 80, 74,145,152,152, 40,143, 24, 49, 34, 43, 51, 51,115,152,187,199, 3,192,129,248, -164, 5, 29, 30, 10,246, 31, 58,160, 67, 91, 16, 2,158,119, 48,168,151,128, 82, 74,169, 82,193, 37,239, 63,146, 60,162, 58,231, -170, 41, 40,165,167, 8, 33, 51, 35, 35, 35, 71, 3,112,116, 37, 92,235, 76,231, 26,192,107, 44,150, 79,218,180,105, 51,241,157, -119,222,241,237,215,175, 31,194,194,194,224,227,227,254,221,130, 14, 29, 77, 25,221,190, 77,221,208, 33,253, 59, 60,206, 17, 66, - 45,142, 94,199, 18,136,237,245, 84, 42, 18,247, 31, 73,110,229,184,220, 63, 57,211,238, 68,180,161,251,208, 23,209,125,232,139, - 0,138, 63, 79,123,126,234,130,132,212, 95, 17,199,165,194,178,188, 3,136,183,237,163,238, 60,205, 13,199,113,232,247,205, 70, -168,213,234,210,122, 62, 50,167,236,188,128,198,175,186,126, 47,117,251,182, 3,142,199, 90,185, 59, 6, 75,161, 80, 32, 43, 43, - 11, 23, 46, 92, 64, 70, 70, 6,140, 70, 35,206,159, 63, 15,158,231,145,147,147, 3,219, 76,195,234,212,179,166,222,163,187,169, -249,191, 96,172,108,184,101,176, 40,165, 41,237,218,181,171,178,140, 36, 73,110,205, 50, 82, 42,149,230, 14, 29, 58,144,202,102, - 27,216,158,235,245,122,151,254, 62,151, 24,168,233, 0,166,147, 18,119,193,243,229,239,122,232, 62,146, 36,165, 61,244,208, 67, -138,170,198, 36,200,178, 92,101,198,184,204,204,204, 34, 0, 53,122,235,240, 59,161, 89, 30, 66,136, 52,122,244,232, 42,157,148, -167,167,103,149,131,139,156, 37, 18, 53, 26,141,233,207, 61,247,156,100,223,213,108,159,136,244,129,134,208,164, 62, 79,191, 28, -190, 47,139, 15, 7, 0,155,201, 2,165, 73,142, 14,249,227,143, 63, 50, 0, 68,222,233,170, 93,185,114,133,111,215,174,221,247, - 5, 5, 5,175, 80, 74, 29, 39,236,113,194,161, 99,105,206,195, 19,247, 24,148,210, 83, 0,198,220,174, 14, 15,156, 15, 50,155, -199, 78,127,255,253, 33,211,222,127,191,177, 12,212, 70, 73,142, 42,133, 11, 38,205,158,248,227,233, 53,158, 27, 76,146,164,148, - 71, 30,121,196,237, 99,156,237,175, 34,147, 56,254,139, 48,160, 92,151,160, 43,154,119,162,158, 54,205,150, 45, 91,162,117,235, -214,165,143, 54,236,183,199,196,196,184,164, 25, 27, 27,139,102,205,154, 57,204,208, 94,126,204,213,221,110,187, 13,219, 95,223, -152,152,202,103,118,222,141,122,222,239,144,154, 24,200,234, 80,252, 62, 28, 55,195, 52,153, 38,211, 44, 45,163,160,148,186, 60, - 50,255, 65,106, 59,211,100,154, 76,243,223,215,124,208,248,223, 29,125,198, 96, 48,170,196, 29,115,197, 96, 48, 24,140,178, 16, - 0,149,118, 8,187,227, 76, 9, 33,238,117, 42,187,160,207, 52,153, 38,211,100,154, 76,147,105, 50,205, 7, 79,211,153,246,131, - 18, 25, 99, 93,132, 76,147,105, 50, 77,166,201, 52,153, 38,211,188,235,154, 15, 26,172,139,144,193, 96, 48, 24, 12, 6,163,134, -113,255, 70,101, 12, 6,227,129, 98, 6, 33,183,245, 71,107, 26,165,183,159,175,197, 5,238,151,122, 50, 24, 12, 6,192, 34, 88, - 12, 6,131,193, 96, 48, 24, 53, 14, 51, 88, 12, 6,131,193, 96, 48, 24, 53, 12, 51, 88, 12, 6,131,193, 96, 48, 24, 53,204, 29, -157, 69,200, 96, 48,238,125,238,151,177, 77,247, 75, 61, 25, 12, 6, 3, 96, 17, 44, 6,131,193, 96, 48, 24,140, 26, 71, 9,148, -189, 81, 49,165,212,241, 13,247, 24, 12, 6,131,193, 96, 48,238, 0, 15,154, 23, 41, 77,211,240, 32, 52,134,193, 96, 48, 24, 12, -198,253,203,131,228, 69, 74,187, 8,237,157, 35,131,193, 96, 48, 24, 12,198,191,205,131,228, 69, 74, 13,214,131,228, 26, 25, 12, - 6,131,193, 96,220,127, 60, 72, 94,164, 76, 4,235, 65,114,142, 12, 6,131,193, 96, 48,238, 47, 30, 36, 47,162, 4, 30, 44,199, -200, 96, 48, 24, 12, 6,227,254,227, 65,243, 34,119, 52, 77, 3, 33,164, 5,211,100,154, 76,147,105, 50, 77,166,201, 52,153,230, -255, 26, 44, 15, 22,131,193, 96, 48, 24, 12, 70, 13,195, 12, 22,131,193, 96, 48, 24, 12, 70, 13,195, 12, 22,131,193, 96, 48, 24, - 12, 70, 13,163,116, 94,132,193, 96, 60,200,220, 47,247,232,187, 95,234,201, 96, 48, 24, 0,139, 96, 49, 24, 12, 6,131,193, 96, -212, 56, 4, 64,165, 51, 1, 40,165,127,186, 44, 82,141,217, 4,206,244,153, 38,211,100,154, 76,147,105, 50, 77,166,249,224,105, - 58,211,118,199,127,220,203, 16, 74,239, 92, 62, 47, 66, 72,139,154,126,161,152, 38,211,100,154, 76,147,105, 50, 77,166,249,224, -105, 62,104,176, 46, 66, 70, 25, 8, 33, 74, 66,136,195,177,121,206,246,255, 91,154, 12, 6,131,193, 96,220,203,176,139, 26,163, - 20, 66, 72,123, 0,125, 75,158,111,165,148,198,187,179,255,223,210,188, 91,196,197,197,233,117, 58, 93,207,223,126,251, 77,157, -152,152,136, 35, 71,142,208,255,254,247,191,130,217,108,254, 53, 33, 33,193,116,183,235,199,168, 25, 98, 99, 99, 31, 39,132, 76, - 2, 0, 74,233,199, 39, 78,156,216, 89, 93, 45, 66, 8,137,140,140, 28,167,209,104,250,168, 84,170, 96, 73,146,136,197, 98, 73, - 51,153, 76,187, 82, 83, 83,231,211,106, 12,220, 39,132,180,245,247,247, 31, 19, 29, 29,221,248,202,149, 43,201,215,175, 95, 95, - 13, 96, 39,128,199,235,213,171,247, 92,131, 6, 13,194,206,158, 61,123, 49, 43, 43,107, 25,165,244,143,187, 85, 79, 6,227,127, - 29,151, 12, 22, 33,132,243,243,243,123, 76,175,215,191, 81, 88, 88, 24,235,237,237,125, 86, 20,197, 69,233,233,233, 91,217, 23, -239,193,160, 36,130,212,151, 82,170, 2, 0,133, 66, 49,160,125,251,246,225,132, 16,153, 16, 66, 41,165,132,227,184, 24, 73,146, -184,146,242,125, 9, 33,127, 80, 74,197,234,106,138,162,232,182,230,157, 34, 58, 58,122, 22,165, 52,184,170, 50,158,158,158,109, -246,236,217,211,116,211,166, 77,226,234,213,171,115,159,122,234, 41,195, 11, 47,188,160, 92,181,106,213, 23, 0,222, 44, 95,190, -121,243,230, 11, 56,142,243,119,229,252,178, 44,103,157, 59,119,238, 63,213,172, 62,163, 6, 33,132, 76,122,121,206,190, 78, 50, - 5,190,158,220,153, 67,177,121,169, 22, 49, 49, 49,223, 14, 28, 56,240,233, 38, 77,154, 40,101, 89,134, 32, 8,176, 88, 44, 77, - 79,156, 56,209,101,231,206,157,109, 0, 12,115,179,110,125, 39, 79,158,188, 98,230,204,153, 1, 42,149,138, 8,130,240,240, 15, - 63,252,208,107,204,152, 49,167,150, 45, 91,214,250,201, 39,159,244,178,109,159, 54,109, 90,111, 66,200, 91,148,210,181,255,118, - 61, 25, 12,134, 19,131,229,229,229,213, 40, 32, 32,224,237,218,181,107,247,110,211,166, 77,222,168, 81,163,254, 62,125,250,244, -249,232,232,232,194,111,190,249,230, 35, 65, 16,150, 52,105,210,228,215,252,252,252,249, 55,110,220, 56,239,206,137, 9, 33,141, - 0,140, 2,208, 27, 64, 40,128, 52, 0,219, 1,172,160,148, 38, 86,167, 49, 33, 33, 33, 45, 61, 61, 61, 39, 18, 66, 30, 46, 42, - 42, 10,245,244,244, 76,163,148, 30, 45, 40, 40,152,151,158,158,126,162, 58,154,161,161,161, 13, 1,188,174, 84, 42, 59, 74,146, - 84, 95,161, 80, 36, 73,146,116, 80,146,164,197,105,105,105, 23,171,163,249,104,152, 87, 63,217,224, 61, 95, 80,232,195, 10,205, -162,218,160, 85, 10, 42,217,156, 44, 23,229, 78, 62,122,189,112,125,117, 52,107, 26,141, 70,195,173, 94,189,186,181, 70,163, 1, - 0,240, 60,143,232,232,232,219,186, 79,148, 74,165,226,230,205,155,215, 90,173, 86, 3, 0,172, 86, 43,186,117,235,118, 79,220, -123,138, 16, 18,154,144,144,224, 99,171, 91,121, 36, 73,194,128, 1, 3, 34, 52, 26, 13,150, 45, 91, 38,102,101,101,197,126,253, -245,215, 9, 95,124,241,133,255,183,223,126, 59, 20,149, 24, 44,142,227,252, 29,105, 74,146, 4,171,213, 10, 81, 20,193,243, 60, -186,118,237, 90,227,109, 98, 84, 15, 74,105, 56, 5,176,253,180, 25, 0,106,223,142,150, 94,175,143, 26, 52,104,144, 50, 51, 51, - 19, 42,149, 10, 86,171, 21, 55,110,220, 64,195,134, 13, 21, 60,207, 55,113, 87,175,105,211,166, 99,102,207,158, 29,184,109,219, - 54,235,247,223,127,111,233,209,163,135,250,165,151, 94,242,238,212,169, 83,199,208,208, 80,238,235,175,191,182,236,222,189,219, -250,236,179,207,106,103,205,154, 21,184,125,251,246,167, 1, 56, 53, 88, 53, 93, 79, 6,131, 81,133,193,242,242,242,218,111, 48, - 24, 34, 71,142, 28,153,248,202, 43,175,252,106, 48, 24, 36, 0,184,113,227,134,118,192,128, 1,153,131, 7, 15,190,105, 52, 26, - 21, 75,150, 44,169,247,249,231,159,239,242,242,242, 74, 45, 40, 40,120,200,217, 9, 9, 33, 4,192, 27, 28,199,189,222,179,103, -207,253,130, 32,100,110,220,184,241,199,161, 67,135,118,144,101,217,243,183,223,126,251,133, 16,242, 37,128, 79, 92,141,142, 17, - 66, 20, 13, 26, 52,152, 30, 26, 26, 58,126,233,210,165,218,250,245,235,195,195,195, 3, 5, 5, 5,245, 46, 94,188, 24,246,198, - 27,111,244,111,216,176,225, 34, 31, 31,159,247, 18, 18, 18, 4, 23, 53, 73,112,112,240,155,222,222,222, 31,126,244,209, 71,186, -230,205,155, 19, 15, 15, 15, 92,187,118,173, 69,124,124,124,244, 87, 95,125,245, 82,104,104,232,140,212,212, 84,151,235,217,133, - 16,165, 37, 50, 96,167,111,211,135,186, 46, 91,241, 21,241,247,244,128,146, 16, 8, 86,171, 42,195,104,106,240,218,216,209, 63, -182,111, 92,231,112,129, 42,163,251,185,115,212,234,138,102, 77, 65, 41, 21, 9, 33, 91, 21, 10,197, 0,141, 70,195, 13, 24, 48, - 0,187,119,239, 38,102,179, 89, 9, 0, 58,157, 78, 28, 48, 96, 0,244,122, 61,120,158,151, 1,108, 45, 57, 70, 91,114,188,165, - 42, 77,149, 74,197,117,237,218,213,120,252,248,241,108,163,209,168,178,105,118,237,218,181,150, 86,171,245, 16, 4,193, 37,205, - 59,137, 70,163,193,229,203,151,203,108,147, 36, 9, 55,111,222, 68,118,118, 54, 44, 22, 11,201,201,201,129, 36, 73,176, 88, 44, -153,146, 36,129,227,138,131,111,142, 52,213,106, 53, 46, 92,184, 80, 97,187,213,106,133,201,100,130, 32, 8,200,207,207,215,235, -116,186,200,142, 29, 59,166, 0,216, 84, 88, 88, 56,255,212,169, 83, 73, 53,219, 58,134, 27, 92,255,229,164,185, 30, 0, 43,128, - 43,183, 35, 68, 8,145, 1,224,224,193,131,200,200,200, 64,102,102, 38, 50, 51, 51, 17, 22, 22,134,234, 68,255, 19, 19, 19, 23, -198,196,196,144, 83,167, 78,109, 1,176, 98,221,186,117,131,110,221,186,181,116,194,132, 9,181,230,205,155,119,107,226,196,137, - 99, 1,108, 88,183,110,221,139, 45, 91,182,236,119,230,204,153,207,238, 70, 61, 25, 12, 70, 21,131,220, 41,165,193,141, 26, 53, -186,245,233,167,159, 54,157, 60,121,114,237,194,194, 66, 5, 0, 4, 7, 7,155, 1,192,104, 52, 42, 38, 77,154, 20, 48,103,206, -156,166, 90,173, 54, 71, 20,197,128, 74, 52, 42,155, 97,240,186,183,183,119,255,191,255,254,123, 93,211,166, 77,107,205,158, 61, -251,164,167,167, 39,253,236,179,207, 78, 52,108,216,176,110, 82, 82,210,119,222,222,222,221, 0,140,119, 80,175, 10,154, 17, 17, - 17,211,134, 14, 29, 58,254,240,225,195,218, 86,173, 90,193,203,203, 11, 10,133, 2,190,190,190,104,215,174, 29, 57,112,224,128, -182, 79,159, 62,227,242,242,242,230,185,170, 25, 18, 18, 50,190, 87,175, 94, 31, 29, 63,126, 92,223,189,123,119,162,209,104,144, -155,155, 11,141, 70,131,246,237,219,147,165, 95, 44,214,183,104,222,108, 90,104,104,232, 76, 87, 53, 45,141,252,119, 61,245,202, -164,110, 91,183,239, 36, 65, 65, 65,248,251,147,153, 56,216, 41, 26,151, 62,152,140,186,117,235, 98,203,182, 29,164,239,243,175, -116,240, 22,130,126,115, 85,243,118,177,215,164,148,198, 71, 71, 71, 39,156, 63,127, 30, 29, 59,118,196,143, 63,254,216,106,194, -132, 9,175, 76,152, 48,225,149, 31,127,252,177, 85,199,142, 29,113,254,252,121, 68, 71, 71, 39, 80, 74,227, 9, 33,175, 0,184, - 5,224, 86,201,115,135,154,251,247,239, 71,183,110,221,114,214,173, 91,215,112,234,212,169,179,166, 78,157, 58,235,199, 31,127, -108,208,173, 91,183,156,253,251,247,187,165,121, 39,218,110, 67,146,164, 10, 11,165, 20,178, 44, 35, 48, 48,240,230,182,109,219, -104,223,190,125, 21,117,234,212, 73, 27, 48, 96,128,246,232,209,163,148, 16,178,213,157,122, 82, 74, 97, 50,153, 96, 50,153,112, -229,202, 21,253,162, 69,139, 58,140, 31, 63,190,209, 15, 63,252, 16, 50,110,220,184,177,222,222,222, 39, 90,183,110, 29,238,142, -166,187, 48, 77,199,112, 28,119, 3,197,230,170,136,227,184,235,213,213, 28, 50,100, 72,139,240,240,240,160, 31,206,250, 33, 71, -221, 20,146,202, 7,178,218, 23, 82,237,182,184,164,238,133,224,224,224,160,240,240,240,246,238,104, 82, 74,119,157, 60,121,178, - 55,165,116, 25,165, 84,162,148,254, 52,113,226,196, 17,132,144,245, 19, 39, 78, 28, 77, 41,253,169,100,251,202,211,167, 79,247, -163,148,238,189, 27,245,188, 93,152,230,255,166,166, 19,218, 2,120,162,100,121, 8, 64,187,114,235,154,114,229,122, 56,120,124, -162,220,122,219,114,199,217,214,111, 27,219,216, 23,106, 91,108, 59, 8, 33,194,220,185,115,143,124,245,213, 87,187,211,211,211, -235, 54,104,208,224,137, 65,131, 6,133,231,231,231,115,131, 7, 15,142,168, 91,183,110,223,189,123,247,214, 25, 60,120,240,111, - 67,135, 14,141, 39,132, 56, 29, 55, 67, 8,105,168, 80, 40,222, 58,117,234,212,161,136,136, 8,107, 90, 90,154, 87, 76, 76, 76, - 1, 0, 52,110,220,216,152,157,157,173,247,242,242,194,182,109,219,142, 17, 66, 70, 17, 66,154, 58,211, 12, 14, 14,142,241,247, -247, 31,255,225,135, 31,106, 21, 10, 69,165,101,180, 90, 45, 62,252,240, 67,173,183,183,247,200,144,144,144,135,157,105,214,169, - 83, 39,202,203,203,107,250,162, 69,139,116, 60,207,195,106,181, 34, 40, 40, 8, 6,131,158,116, 3,122, 0, 0, 32, 0, 73, 68, - 65, 84, 1,233,233,233, 72,189,122, 21, 55,175, 93,195,184,151, 95,214,123,234,245,111, 5, 7, 7,183,118,166,217, 49,194,107, -128, 33,164, 89,151,215, 94,127, 3,231,222,120, 25,187, 67, 52,168,243,250, 36,180,218,247, 39, 66,103,204,199,222, 6,222, 72, - 24,246, 24,222,122,235,109,168, 3, 27, 60,242, 72,152,225, 41,103,154,119, 2,165, 82, 73,181, 90, 45,204,102,179,242,224,193, -131, 29, 69, 81, 84,137,162,168, 58,112,224, 64,151, 95,127,253,181,247,236,217,179, 31,215,235,245, 99,219,183,111,255, 45, 33, -100, 33,165, 84, 79, 41,213, 3,152,103,139, 60, 85,166,169, 82,169, 96, 50,153, 84,199,143, 31, 31, 45, 73,146, 70,146, 36,205, -241,227,199, 95,221,187,119,239,115,203,150, 45,115, 91,243,223, 66,161, 80, 64,169, 84, 66,165, 82,161,117,235,214,127,175, 89, -179, 70, 8, 14, 14, 86, 46, 95,190,220, 47, 48, 48,208,243,219,111,191,205,205,201,201,153,235,142, 38,207,243,176, 88, 44, 48, -153, 76, 56,120,240, 96,253,145, 35, 71, 42,121,158,151,158,127,254,249, 91,130, 32, 88, 94,125,245, 85,111,131,193,240,246,157, -106, 19,163,106, 40,165, 18,128, 34, 0,133,182, 40,106, 68, 68,132, 54, 36, 36,164,101, 68, 68,132,203,159,199,194,194,194, 47, - 23, 44, 88, 16,202,105,125,113,136,239,131,117,116, 38,118,249,126,129,204,136, 9, 8, 10,107,132, 94,189,122, 5, 18, 66, 22, -215, 64,125, 55, 81, 74,135, 82, 74,127,174,206,241,119,186,158,109,219,182,237,216,166, 77,155,227,113,113,113,233,109,218,180, - 57,222,182,109,219,142,213,213,178, 49,115, 12,233,241,241,235,138,148, 15,198, 18,250,241,235,138,148,153, 99, 72,143,219,213, -100,220,125, 42,243, 34,118, 4, 16, 66,182, 18, 66,182, 78,153, 50,165, 43,128,218,229,214, 31,177, 47, 7, 64, 83,217,163,109, -177,219, 30,128, 98, 99, 21, 96,183, 94, 35,148,118, 17, 82, 74, 43,237,230, 8, 8, 8,224,223,121,231,157, 83,102,179,249,207, -111,191,253, 54,242,149, 87, 94,137, 9, 15, 15,191, 48,120,240,224, 95, 60, 60, 60, 68,219, 24, 29, 23,121,185, 79,159, 62,219, -106,213,170, 69,178,178,178,212, 60,207, 43,111,220,184,161,150, 36,137, 40, 20, 10,106, 52, 26,149,151, 46, 93, 82, 89,173, 86, -249,225,135, 31,222, 28, 31, 31, 63, 10,192, 91, 85, 9,122,120,120,188,186,124,249,114,157, 35,115, 37, 73, 18, 10, 11, 11, 33, -138, 34,102,204,152,161, 27, 63,126,252, 27, 0,142, 84,165,169, 82,169,198,125,250,233,167, 58, 91, 23,144, 44,203, 56,113,226, - 4,178,110,222,132,165, 32, 31,124, 65, 62,248,188, 28,112,133,121,120,174,247,227,186,101, 63,111,252, 15,128,231,170,210,228, -181,134, 57,223,174,248, 10,146, 36, 33,109, 99,229, 67, 34,110, 29,222, 7, 73, 20, 48,235,227,121,228,173,151,159,156, 13, 96, - 93, 85,154,255, 38, 26,141,134,251,228,147, 79,154,106, 52, 26, 16, 66, 40,207,243,104,222,188,249,109,141,159,210,104, 52,138, -133, 11, 23,198,168,213,106, 98,211,108,209,162,197, 61, 49, 38,203, 30,181, 90, 13,189, 94,143,136,136, 8, 83,191,126,253,226, - 23, 46, 92, 88, 79,161, 80,120, 40,149,202, 29,121,121,121,179,207,158, 61,235, 86, 55,146,197, 98,129,217,108,134,217,108,198, -245,235,215,235, 68, 70, 70,146, 55,223,124, 83, 42, 42, 42,106,176,114,229,202,203,235,214,173,243, 88,188,120,241, 96, 0,175, -223,161, 38, 49, 28, 16, 25, 25,169,241,246,246,246,169, 87, 91, 89,164, 82,160, 40, 93, 20,131, 66, 67, 67, 39, 1,104,211,184, -113, 99,191, 75,151, 46,229,132,132,132, 28,225, 56,110,109,114,114,114,122, 85, 90,148, 82, 34,138, 34, 70, 63,148,139,177, 15, -115, 16, 69, 17,185,185,185,184,126,253, 58,206,158, 61,139,163, 71,207, 86,171,142,245,235,215,127, 89,167,211,245,212,104, 52, - 17,146, 36,113, 70,163, 49,201, 98,177,236, 78, 75, 75,251,146, 86, 35,177,225,157,170,167,157,254,252, 65,131, 6, 5,251,248, -248,224,228,201,147,193,167, 79,159,158, 15,160,205,237,104,106, 84,220,215,207,143, 88, 28, 82,203,215, 23,215,206,111, 9,217, -180,253,135,175, 81, 60,150,151,113,159,227,200,139, 0,200,164,148,150,206, 56,159, 61,123,118,223,146,242,125,237,215, 93,208, -175, 80,174,100, 6,187, 75,199,187, 67,169,193,178,205, 20,115, 84, 80,167,211, 73, 99,198,140,185,176,121,243,230,136, 54,109, -218,252,229,104, 48,176, 19, 30,109,218,180,105,210,177, 99,199,104, 64, 64, 0, 47,203, 50,241,240,240,144,244,122,189,156,151, -151, 7, 65, 16,104, 82, 82,146,242,250,245,235,106,127,127,127, 53, 92, 8,213,169, 84,170,246,245,235,215,175,116, 31,207,243, - 40, 44, 44, 68, 65, 65, 1, 44, 22, 11,130,130,130, 8,199,113,237,156,105,114, 28,215,161,105,211,166, 36, 39, 39, 7,193,193, -193, 56,116,232, 16, 10,243,114, 97, 41, 40,128, 37, 47, 23,214,252, 60, 72,249,185,200,189,153,142,136,186,161,164, 36,213, 64, -149,136, 10,125,120,160,193, 19,151,102, 78, 66,219, 19, 73, 32, 42, 53,142,181,168, 11, 42, 20, 15,181,122,232, 76, 26,136, 90, -131,191,198,189,128, 58,195, 71, 66,224,180, 33,206, 52,239, 4,162, 40, 18,139,197, 2,157, 78, 39,118,236,216,241,160, 66,161, -232,162,209,104,184,177, 99,199,226,198,141, 27,182, 98, 4, 0,198,142, 29, 11,189, 94, 15,139,197, 34, 2,152,224,104,204,148, - 40,138, 68, 16, 4,232,245,122,161, 77,155, 54, 95, 42, 20,138, 87, 53, 26,141,162, 73,147, 38, 25,115,230,204, 73,243,244,244, -244,188,126,253,250, 45,141, 70,147, 18, 17, 17,241,144, 94,175, 15,119,166,249,111,162,213,106,161, 84, 42,193,113, 28,106,215, -174, 93,148,157,157,125,244,239,191,255,126,166, 58, 90,146, 36,129,231,121, 8,130, 0,179,217, 12, 89,150,113,250,244,105,104, -181, 90,149, 36, 73,103, 37, 73,242, 80,169, 84, 80, 40, 20, 44, 71,221,191, 76, 92, 92, 92,151, 86,117,188,231,143,173,107,241, -107,216,215,179,208, 67,171, 40,122,122,163,208,182, 71,143, 97,143, 79,152, 48,201,224,239,239,175,185,122,245,170,249,179,207, - 62,171,191, 97,195, 6, 2,224,147,170,244,210,210,210,214,207,153, 51,167, 86,151, 46, 93, 26,168, 84, 42,146,155,155,139,204, -204, 76,220,188,121, 19,215,175, 95,167,215,174, 93,251, 91, 20,197, 31,221,169, 99,171, 86,173, 86, 14, 31, 62,252,249,230,205, -155,171, 40,165, 16, 4, 1, 70,163, 49,230,232,209,163,253, 15, 29, 58,212, 17,128,219,159,203,244,244,244, 31, 63,254,248, 99, -207,206,157, 59, 55, 85,169, 84, 92, 77,212,211, 30, 74,105,176,193, 96,192,238,221,187,225,237,237, 13,103,179,117, 93,193, 42, -202, 33,181,124,107,195,124,113, 1,130,189,195, 97, 21,229,187,242,123,201,168,121,170,240, 34,127, 0,120,226,118,205,208,157, - 50, 83,149,225, 52,130,101,227,198,141, 27,218,194,194, 66,165, 44,203,156,197, 98, 81,201,178, 12,149, 74,229,210,128,113, 59, -154, 15, 26, 52,232, 72,219,182,109,141, 0,160,209,104, 68, 31, 31, 31, 49, 47, 47, 15, 37, 6, 75, 86, 42,149,102,131,193, 96, -110,208,160, 1, 0, 56,237, 34, 52,153, 76,245,244,122,125,133,237, 70,163, 17,133,133,133,165, 6,203,104, 52,194,219,219, 27, - 69, 69, 69, 78,191,220,146, 36, 69,120,120,120, 32, 45, 45, 13, 0, 80,152,155, 3,115,126, 62,172, 5,121,176,230,230, 64,200, -203,133,144,151, 3,206,100,130,111,104, 24, 68, 81, 12,115,166, 89,100,145, 52, 10, 80,220,220,186, 30, 65,175, 78,112, 88,238, -214,193,189, 48, 68, 54,129,201,100,253,215,115,148, 17, 66,218,115, 28, 23,215,172, 89, 51, 12, 24, 48, 0,195,134, 13, 59,173, -215,235, 3, 23, 47, 94,220, 60, 53, 53,181, 66,249,129, 3, 7,226,245,215, 95,199,160, 65,131,190, 59,121,242,228,146,170, 52, - 59,119,238,140,174, 93,187,214, 26, 54,108,216, 53,131,193,144,176, 98,197,138,135,102,204,152,145, 97, 52, 26, 83, 19, 18, 18, - 90,166,164,164,120, 52,110,220,120, 95,116,116, 52,183,109,219,182,240,170, 52,255,109, 68, 81,132, 32, 8,176, 90,173,176, 88, - 44, 78,191, 43,246,148, 15, 40, 8,130, 80, 58,131,208,108, 54, 67, 16, 4,178,105,211, 70,108,217,178,133, 59,127,254, 92,232, -228,201, 83,144,155,155, 11, 73,146,106,188, 29,140,202,105,211,166, 77,111, 37,149,151, 63, 91, 71,212, 61, 27, 36, 22, 42, 57, - 90,120,241,171,247,138, 78,251, 42, 45,150, 34,226,245,238,123,239,249, 93,190,124,217,250,241,199, 31,167, 15, 24, 48, 64, 55, - 98,196,136,102,219,182,109,235, 88,175, 94,189,175,174, 95,191,158, 91,153, 38, 33, 68,253,242,203, 47, 31,241,243,243,107,248, -253,247,223,103,164,165,165,213, 18, 4,193,131,231,121, 43,207,243,151,173, 86,235, 33,158,231,119,167,167,167, 39,184, 83, 87, -131,193,208,234,169,167,158, 82,229,228,228, 64,169, 84,194,106,181, 34, 51, 51, 19,177,177,177,138, 61,123,246, 52,175, 78,251, -207,157, 59,183, 32, 56, 56,120,223,150, 45, 91,122,122,122,122,198,105, 52,154, 58,146, 36, 73,102,179, 57,195,108, 54,159,170, - 78, 61,237, 33,132,164,157, 56,113, 34,216,203,203, 11,169,169,169, 32,132,164, 85, 87,203,134, 90,197, 37, 95,251,107,115, 88, -176,119,125, 36, 38, 30,129, 90,197, 37,223,174, 38,227,222,160,138,223,215,182, 37,251,251, 58, 49, 73,166,201,147, 39,191, 67, - 8,217, 58,121,242,228,119, 42,209,183, 29, 39,217,151,179, 43, 95, 99,127,234,171,188,136, 23, 20, 20, 40,255,248,227,143,218, -215,175, 95, 55,212,169, 83,199, 24, 29, 29,157, 75, 8,161,146, 36,113,183,110,221,242, 76, 73, 73,209,249,249,249, 89,194,194, -194,242, 92, 60,223,197,215, 94,123,173,243,212,169, 83, 19, 30,123,236,177, 44, 0,200,201,201, 65,102,102,166,109,150, 22,210, -210,210,184,227,199,143,215,218,177, 99, 71, 12, 92,152,193,163,215,235,175, 23, 20, 20, 52,241,245,245, 5, 80,124, 65,179,153, - 42,251, 71,171,213,138,130,130, 2,120,122,122, 58,253,114,115, 28,151,154,154,154, 26,105, 50, 25,145,116,233, 18, 44, 5,121, -176,230,231, 65,200,207,133,144,155, 11, 41,247, 22,184,194, 2, 24,244,122, 20,220,202,134, 66,161,184,225, 76,211, 83,171,224, - 5, 81,210, 4,244,234, 15, 16,199,215,103,223,118, 29, 64,163, 90, 65,175,255,217, 93,243,122, 91,216,114, 86,217,114, 82,233, -245,122,124,244,209, 71, 72, 72, 72,144,171,234, 6,214,104, 52,224, 56,174, 82, 55, 80, 94, 83,171,213,234,167, 78,157,170, 63, -117,234,148, 78,163,209,192, 96, 48,120,156, 58,117,170,229,239,191,255,206, 25,141, 70, 69,100,100,228,160,144,144,144,194,170, - 52,239, 36,162, 88,113, 24,161, 40,138, 40, 44, 44, 44, 29, 55,117,235,214, 45,165, 78,167,107,220,169, 83,167,120,158,231,127, - 20, 69,241,155,132,132,132,124, 71,154, 86,107,197,201,160,178, 44, 67, 20, 69,136,162, 8,165, 82, 41,111,218,180, 25,159, 47, - 89,136,159,214,253, 76, 59,119,238, 76,182,109,219, 6, 89,150, 83,106,182,117, 12, 71,200,178, 60,127,239,164, 33, 58, 72, 82, -161,101,223,154,162,157,217,202,162,175,254,220,123, 60, 91,176,104, 27, 53,106, 16,229,237,229,195,125,187,250,171, 91,233, 25, -127, 95,252,252,243,148,176, 89,179,102,249, 54,104,208,192,231,194,133, 11, 33, 0, 42, 53, 88, 6,131, 33,226,133, 23, 94,120, -233,214,173, 91,170, 21, 43, 86,172, 74, 77, 77, 61, 64, 41,253,219,190, 12, 33, 36,150, 16, 50, 15,128, 10, 64, 16, 0, 17,192, - 46, 74,233,119,142,234, 90,146, 67, 14,251,246,237,171, 48,219, 79,150,229,106,207,246, 75, 79, 79,207,105,215,174, 93,171,139, - 23, 47,110,202,201,201,249,190,252,126, 15, 15,143,254,209,209,209, 79, 31, 59,118,236,125, 74,233,229,202, 52, 28, 65, 41,125, -235,252,249,243,115,101, 89, 14,231, 56, 46,137, 82, 58,177,186,245,180,193, 91,229, 17,155,183,175, 91,193, 11, 82, 61,141, 74, -113,157,183,202, 35,111, 87,147,113,207, 99, 27, 35, 5,123,227, 84,137, 49,250,125,246,236,217,250, 57,115,230, 96,246,236,217, - 21,250,183,109, 26,148,210,190,179,103,207, 62,107, 43,103, 87,254, 64, 77, 85, 88, 89,114,162, 10, 87,124, 81, 20, 13, 83,166, - 76,121, 52, 38, 38, 38,173, 75,151, 46,233,245,235,215, 55,218,246,121,120,120,240,190,190,190,188,197, 98,209,166,165,165, 5, -252,245,215, 95,245,101, 89,174, 24, 70,170,200,111,190,190,190,181,142, 31, 63, 94,123,237,218,181,141, 78,156, 56, 17, 62,124, -248,240,206, 22,139, 5, 60,207,227,202,149, 43,225,203,151, 47,151,213,106,117, 46, 33,228, 15, 0, 78, 47,178,130, 32,196, 95, -188,120,177,113,187,118,237,136, 32, 8,101, 76,149,253,115,141, 70,131,212,212, 84, 42,203,242, 81, 23,234,121,228,248,177, 99, -145, 45,154, 53,131, 37, 47, 7,124,126, 46,172,121,185, 16,243,114, 33,231,231,130, 43, 44, 64,237, 90, 42,232,245,158,184,152, -150,142,146,186, 86,137, 74, 52, 93, 75,205,203,111, 18, 57,253, 19,236,109,224, 13, 42, 88, 75,187, 5, 1,148,118, 23, 62,242, - 87, 38, 14,254, 30, 15,165,100,169, 24, 50,250, 23,225,121, 94, 30, 60,120,240, 49,142,227,220,190,209,167, 35, 4, 65,144, 95, -121,229,149, 82,205,228,228,228, 91,201,201,201, 58,147,201,196, 25, 12,134,194,154, 58,207,109,212,175,194, 54,171,213, 10,158, -231, 97, 50,153,144,158,158,174,217,181,107, 87,199,248,248,120,245,185,115,231, 16, 31, 31,223,122,211,166, 77, 83,162,162,162, - 90,253,245,215, 95,149,154,236,242,166, 77,150,101,216,174,131,148, 82, 80, 74, 21, 0,176,121,195, 86,244,234,213,139, 20, 20, - 20, 96,203,150, 45, 53,210,141,194,112,153, 34,136,146,158,223,191,166,232,237, 75,154,252,179, 70,229,135, 9, 9, 9, 59,251, -244,233,115, 48, 56,168,129, 55, 0,104,213,134, 0, 5,245, 50, 4, 4, 4,104, 1, 32, 56, 56, 56, 78, 16,132, 37, 0, 58, 84, - 38, 56,112,224,192, 71, 2, 3, 3, 99,182,111,223,126, 42, 53, 53,245, 96,121,115, 5, 0, 77,154, 52,153,241,231,159,127,246, - 86,169, 84,165,191,191, 37,131,123, 43, 53, 88, 67,134, 12,105, 18, 26, 26, 90,123,219, 69, 31,228,171, 35, 33,115,185,160, 10, - 45, 36,223, 86, 72, 82, 55, 71, 80,208, 95,181, 35, 35, 35, 91, 95,190,124,249,148, 59,141, 39,132,212,123,242,201, 39,127, 89, -185,114,101, 84,175, 94,189, 52, 0, 42, 24,172,168,168,168,193,123,246,236, 25, 58,118,236,216, 86,132,144,126,148,210, 75,174, -234, 39, 36, 36, 28, 6,224,116, 24,133, 59, 76, 93, 70,119, 3, 8,175, 73, 77,198,221,199, 73,239, 64,166, 93,244, 41, 19,197, -247, 82,182, 95,183,125,238,121,187,178,153, 37,186,125, 1,240,229,162, 94,149,237,203, 4, 80, 99,193, 13,135, 17, 44,171,213, -186,235,202,149, 43,109,159,124,242,201, 76,123,115,101,255, 2, 24, 12, 6,139,183,183,119,225,177, 99,199,130, 37, 73,218,231, -194,249, 86,236,217,179,103,239,162, 69,139,214,212,170, 85, 75,120,238,185,231,184, 73,147, 38, 29,204,206,206,166,217,217,217, - 88,188,120,113,167,142, 29, 59, 30, 76, 74, 74,146, 18, 18, 18, 94, 4,208,203,153,160,209,104,252,226,213, 87, 95,125,250,224, -193,131, 58,158,231,145,155,155, 91, 33,122, 37, 8, 2, 20, 10, 5,150, 44, 89, 98, 41, 42, 42, 90,232, 76, 83, 20,197, 47,191, -248,226,139,161,203, 63, 95,164, 83, 10, 86, 24,115,115, 32,149, 44, 10,115, 17, 12, 58, 14,145, 49, 1,200, 77,211, 98,245,246, -195, 38, 81, 20,191,112,166,169, 50, 23, 78, 24, 59,122,212,214, 93,191,237, 69,237, 14,221,144,181,119, 71,133, 50,154,128, 32, -240, 86, 43, 62,156, 57,157, 18, 83,238, 36,103,154, 53,137, 45,103, 21, 33,196,246, 1,220,122,242,228,201,248,152,152,152,222, - 60,207, 59, 60,142,231,121,200,178, 92,233, 12, 3,103,154, 90,173, 54,165, 73,147, 38,191, 53,108,216,112, 16, 0, 52,107,214, -108, 3,199,113,221,170,210,188,147, 8,130,128,169, 83,167, 98,206,156, 57,152, 60,121, 50,128, 98,131,100,251, 3, 96,177, 88, -234,239,216,177, 67,115,248,240, 97,186,122,245,234,172, 33, 67,134,248, 14, 31, 62,220,247,251,239,191,127, 19, 64,165,239,151, - 32, 8,152, 56,113, 34,150, 45, 91,134, 49, 99,198, 84,216,175, 80, 40,228,212,212, 20, 88,120, 11,221,188,121,115,154, 82,169, -244,251,236,179,207,244,227,199,143,191,231, 6,251, 63,168, 72,146,244,110,135, 5,155,222, 0,244,130, 40,138, 11, 79,159, 62, -190, 15, 0,134, 13, 27, 22,184, 96,193, 2, 13, 0,124, 50,239, 19, 21,165, 84,101, 75, 12,251,193, 7, 31,232, 70,143, 30, 29, -232, 72,115,253,250,245, 57, 31,124,240, 65,237, 17, 35, 70,244,218,187,119,175,142, 16,178, 3,197, 99, 72,178, 80,252,199,209, - 31,192,225,128,128,128,186,235,214,173,139,236,217,179,167,167,179,122, 22, 21, 21,125,181,116,233,210,136,249, 7,188,176,173, -104, 16,146,233, 48,208, 90, 20,181,212, 5,104,102,184,142,206,117,147,131,191,255,254,251, 21, 0,226, 92,109, 59, 33,164,249, -144, 33, 67, 54,174, 92,185,178,254,168, 81,163, 82, 14, 31, 62,156, 76, 8,153, 81, 73,209,236, 23, 94,120, 33,105,213,170, 85, -145,178, 44,239, 36,132,244,162,148, 86, 43,209, 50,131, 81, 77, 92,186,237, 83, 53,202,222, 49, 28, 26, 44, 81, 20, 95, 38,132, - 68, 79,158, 60,121,110,112,112,112,189,233,211,167, 95,109,214,172, 89,145,109,127,118,118,182, 97,255,254,253, 13,242,243,243, - 11, 68, 81,124,158, 82,122,186,188, 6, 41,119,183,109, 74,105, 18, 33,100,110,235,214,173,159,254,225,135, 31,246,123,121,121, -229, 31, 57,114,196,219,219,219, 59,239,220,185,115,158, 10,133,194,248,247,223,127, 99,247,238,221,157, 0,124, 94,217,191,164, -242,154,105,105,105, 39,235,215,175,255,201,248,241,227,199,191,255,254,251, 58, 89,150, 97, 50,153, 80, 80, 80, 0,179,217, 92, - 58, 56,121,237,218,181, 22,139,197,178, 60, 53, 53,181,194, 12,194, 74, 52,227,195,194,194,150, 45,252,108,225, 43, 35,159,126, - 82, 67,115,179,145,151,110, 2, 49, 23,193,160,211,160,121,183, 16, 20,101, 19,172,220,127,156,191,197, 91,215,165,166,166, 86, - 48,151,229, 53, 15, 93, 47,248,229,225, 70,129,187, 63,152, 57,189,199,148,111,126,134, 44,203,248,235,213,231,144,115, 96, 55, - 60,154,181,196, 35,127,101,130,231,121, 76,158, 56, 30, 10, 99,198,193, 35,215, 11,127,114,166, 89, 19,216,107,150,228,161,250, -163,228,185, 72, 8,121,133, 16,242,124, 84, 84, 20,198,142, 29,139,129, 3, 7,150, 57,118,227,198,141, 88,186,116, 41, 44, 22, -203,243,132,144, 19,148,210, 37,238,104,214,175, 95,255,161,230,205,155, 43,130,131,131,141, 0,160, 80, 40,186,157, 61,123,182, -109, 84, 84, 84,149,154,119,168,237, 57,151, 46, 93,242,158, 55,111, 30,177, 90,173,152, 49, 99, 6,108,198,210, 22,113,122,247, -221,119,131,189,188,188, 48,127,254,124, 62, 43, 43,171,123,118,118,246,158, 69,139, 22,249,175, 93,187,246, 25,148, 24,172,114, -154, 55,207,159, 63,239,181,108,217, 50, 78, 20, 69, 44, 88,176,160, 66, 68,235,173,183,222,130,213, 42, 64,165, 84,241, 22,179, -165,185, 94,175,191,236,231,231,167,151,101,153, 86, 86,207, 59,209,246,255,117,205,211,167, 79,239, 2,176,203, 81,121,219, 56, - 58,147,201,132,172,172, 44,100,101,101,193,199,199, 7,176, 75, 48, 91, 94,211,100, 50,157,154, 56,113, 98,194,151, 95,126,217, -235,247,223,127,127,242,192,129, 3,125,118,239,222,109, 78, 74, 74, 18, 5, 65,160,117,235,214, 85,118,232,208, 65,215,167, 79, - 31, 79,173, 86,203,189,251,238,187, 89, 31,125,244,145, 63,128,108, 71,154,148, 82,133, 44,203,248, 79,199,124, 76,236,170,132, -197, 82,252,135, 50, 45, 45, 21,103,207,158, 69,124,124, 34, 8, 33, 85, 78,142,168,228,245, 92,248,253,247,223, 55,208,104, 52, -100,205,154, 53,245,214,172, 89, 51,206,217,235,247,221,119,223, 69,172, 89,179,102, 9, 33,164, 7,165, 84,190, 95,223,119,166, -121,239,105, 62,104, 84, 57, 6,139, 82,122, 22, 64, 47, 66, 72,135, 81,163, 70,125, 28, 21, 21,101, 17, 69, 81,181,115,231,206, -166, 89, 89, 89, 26, 81, 20, 39, 82, 74,221,234,175,164,148, 46, 35,132, 96,192,128, 1, 19, 27, 54,108,184,231,196,137, 19,173, -158,120,226,137,157, 27, 55,110,236, 32,138,226,223,127,254,249,231,243, 0, 22, 2,248,220, 85,205,107,215,174,205,216,189,123, - 55, 57,114,228,200,219,147, 39, 79,214, 6, 4, 4, 16, 95, 95, 95,152, 76, 38, 36, 39, 39,211, 85,171, 86, 89, 44, 22,203,231, - 62, 62, 62,239,185,170, 25, 16, 16, 48,233,192,241,227,154, 11,151, 47,189,248, 98,239,199,116,245, 26, 55,129,129, 0,133,183, -178,177,127,127, 58,190, 57,122,202,156,197, 91,255,171, 80, 40, 92,158, 74, 31,122, 57,179,215,174,117, 43,183,239,251,237,183, - 30,179,230,204, 37,193,207,142,132,103,120,125,200, 17,141,176,127,223, 62,124,244,193, 12,170, 40,204, 56, 32, 92,206,120,204, - 85,205,154,134,150,220, 7,176, 36,255,212, 60, 89,150,149, 64,241,152,172,215, 95,127, 29,246,183,206, 89,186,116, 41, 76, 38, - 19, 0, 40, 9, 33,243, 8, 33, 95, 87, 54,235,175, 10,205,176, 95,126,249, 37,204, 94, 51, 42, 42,202, 37,205,154, 38, 35, 35, -227,189,151, 95,126,121,142, 74,165,242,145,101,185,194,224,116, 0,240,244,244, 68,126,126, 62, 36, 73, 18,107,213,170,149, 40, - 8, 2,148, 74, 37,224,224,123, 84, 84, 84,244,222,152, 49, 99, 62, 36,132, 56,140,116,232,245,250,164, 67,135, 14, 53, 26, 62, -124, 56,183,110,221,186, 43,207, 60,243,140,246,247,223,127,151, 0, 84, 43,167, 17,227,206, 67, 41, 69, 81, 81, 17, 0, 56, 76, -137, 64, 41,189, 78, 8,153,152,144,144,160, 27, 51,102, 76,220,179,207, 62,235,221,181,107, 87,131,125, 25,147,201, 36,111,217, -178,165,104,217,178,101,217, 7, 14, 28,248,227,165,151, 94, 26,132,226,238,141, 74, 73, 75, 75,251,101,241,226,197, 62,157, 59, -119,110, 44, 73, 18,178,178,178, 74,199, 96,165,164,164, 32, 41, 41, 41, 73,150,229,205,110, 54,231,213,225,195,135,111, 91,181, -106, 85,248,168, 81,163, 82,214,174, 93,187, 25, 64,101, 99,106, 13,131, 7, 15,238,191,106,213,170,240,209,163, 71, 95, 7, 48, -142,178, 12,239, 12, 70,149,184, 52, 83,141, 82,122, 8, 64,123, 66,200, 0,133, 66, 49,161,176,176,112, 1,165,116, 83,117, 79, - 90, 98,178,118, 94,186,116,105, 4,128, 54, 11, 23, 46,156, 2, 32, 25,197, 97,189,158,149,141, 87,112,162, 39, 1,120, 63, 36, - 36,100,253,244,233,211,107,228, 94,132, 37,183,212,121, 53, 56, 56,120,237,199,107,215,191, 71, 41,141,229,168, 92, 91, 38, 92, - 14,199,113, 39, 37, 73,250, 40, 37, 37,101,191, 59,154, 63, 22,215,179,231,195,245,188,250, 78, 28, 61,124,174,168,210, 71, 20, -154, 69,141,167, 86,201,171, 37, 75, 18,103,202,121,247, 72, 82,225, 61,121, 97,181, 88, 44,226,160, 65,131,190,226, 56, 78, 6, - 0, 73,146,148, 22,139,229, 69,184,248, 25,250,183, 52,171, 75, 86, 86, 86, 33,128, 87,171, 42,211,177, 99,199,239,182,111,223, - 62,188,103,207,158,210,214,173, 91, 51,250,246,237,171, 76, 72, 72,160, 0,118, 87, 86,254,218,181,107, 22, 56,184, 35,129,141, -214,173, 91,135,127,253,245,215, 39, 70,140, 24,225,189,100,201,146, 90,199,142, 29,147, 86,174, 92,153, 95, 88, 88, 56,191,218, -141, 97,212, 40,164,100, 82,138, 74,165,130,135,135, 7,188,189,189,145,153,153,233,116,166, 39,165,244, 50, 33,228,137, 9, 19, - 38,116,156, 48, 97,194, 19,161,161,161,205,235,213,171, 87,143,227, 56, 46, 61, 61, 61, 51, 57, 57,249,154,213,106,221, 3,224, - 23, 0,234,134, 13, 27,158, 4,176,218,145,222,185,115,231, 62, 12, 14, 14,222,187, 97,195,134, 39,180, 90,109, 51,141, 70, 83, - 75, 16, 4,174,168,168,232,150,213,106, 61,111,177, 88,182,166,165,165,253,238, 78,219, 40,165, 23, 8, 33, 93,149, 74,229, 47, - 43, 87,174,140, 74, 79, 79,143,216,191,127,127,191,242,229,226,226,226, 86,173, 90,181, 42,124,236,216,177,151,215,172, 89,227, -214, 24, 44, 6,227,127, 21,183, 46,100, 37,166,170,218,198,170,156, 86, 18,128,247, 74,150, 26, 33, 53, 53,245, 12,128,225, 53, -165, 7, 0,105,105,105,135, 1, 60, 14, 20,103,115, 78, 46,190,104,222, 22, 71,174, 23,108, 5,176,213,105,193,187, 8,165,212, - 66, 8,153, 80, 50,203, 9, 0, 38,148, 79,155, 64, 8, 57,109,191,223, 89,164,233, 78,104,254,155,228,228,228,188,249,205, 55, -223, 28,123,237,181,215,180,195,134, 13,195,249,243,231,177,100,201, 18, 75, 78, 78,142,211,155,233, 58,226,212,169, 83, 73,173, - 91,183,142, 93,177, 98,197,219,203,151, 47, 31, 64, 8, 97,247, 34,188, 71,224,121,254,239,167,158,122,202,118,255, 84,106,187, -117,146, 45,109,135, 40,138, 78,255, 8,150, 68,111,247,150, 44,206,168,244, 86, 94,246,164,165,165,197, 3,136,119, 65,203,101, - 74,162,109, 79, 92,187,118,109,214,133, 11, 23, 42, 14, 14, 5,112,246,236,217,141, 61,123,246,244,136,143,143,127,199,221, 89, -132, 12,198,255, 42,164, 26,137,127, 93, 23,191, 79,250,125,153,166, 99, 77,226,228,198,203,149,237,191, 27,154,213,129,105, 50, - 77,166,201, 52,153,230,189,163,249,160,241,175,119,197, 48,238, 47, 92,137, 74,221, 11,154, 12, 6,131,193, 96,220, 75, 16, 0, -149,230, 57,114,199,153, 18, 66,220,206,149,228, 76,159,105, 50, 77,166,201, 52,153, 38,211,100,154, 15,158,102, 37,218, 67,202, -237, 42,147, 7,146, 82,186,220,221, 58,220, 11,176, 46, 66,166,201, 52,153, 38,211,100,154, 76,147,105,222,117, 77, 7,231, 25, -117,191, 26, 44,118, 67, 89, 6,131,193, 96, 48, 24,140, 26,134, 25, 44, 6,131,193, 96, 48, 24,140, 26,198,165, 65,238, 26,141, - 38,154, 82,250, 18, 33,164, 14, 33,228, 6,165,244,107,158,231, 43,220, 68,241, 65, 71,163,209, 68, 19, 66, 94,162,148,214,161, -148,222, 32,132,220,221,215,129, 16, 50, 99,122,113, 54,233,105,211, 65, 43,205,142,201, 96, 48, 24, 12, 6,227, 95,199,161,193, -138, 8, 11,123,146, 83,144, 69, 86, 65,242,243,245,245,229, 22, 47, 94,204,245,235,215, 15, 91,182,108,193,184,215, 95, 31, 23, - 18, 18, 44,171,149,202, 28, 42,139,227,174, 37,167,253,224,202,201, 6, 15, 30,156, 33, 8,130,195,172,214, 10,133,226,230,198, -141, 27,131,170,211, 16,123, 66,226,158,204, 16,172, 86,135,231, 81, 42, 85, 55,211, 78,254,232,210,121,194,194,130,159, 84, 16, -110,145, 32,201,126,126,126,126,220,231,159,127, 94,250, 58,188,246,218,107,227, 66, 67, 66,100,181, 74,145, 35, 75,116,220,181, -228,100,151, 94,135, 26,193,206, 92, 1,192,140,233, 32,211, 8, 1, 51, 89, 12, 6,131,193, 96,220,125, 28, 26, 44,194, 97,201, -154, 47,231,249,101,223,202,193,218,141, 59, 17, 21, 21,133,115,231,206, 33, 42, 42, 10, 29, 30,106,197, 61,222,190, 53,167,224, - 16, 48,245,243,213, 75, 0,184,100, 44, 4, 65, 8,220,176, 97, 3, 8, 33,165, 9,251,108, 73,251, 10, 10, 10,240,198, 27,111, - 56, 52, 69,238, 32, 88,173,129,127,255,241, 51, 84, 10, 2, 65,162, 16, 68, 10, 65,148, 97,149, 40,242,141, 34,186, 61, 49,220, -229,243,112,224,150,124,189,104,158, 95,110, 94, 30,126,222,182,171,204,235,208,237,209,182,220,176, 62, 93, 56, 15,189, 58, 96, -212,164,143, 93,126, 29,106, 2,123,115,101,191,109, 90, 21,183,239, 96, 48, 24, 12, 6,131,241,239,224,208, 96,241,130,228, 23, - 84,203, 7,223,124,253, 53, 38, 78,254, 0, 77,155, 54, 5,165, 20,132, 16,188,243,254, 76,124,250,193,100, 60,213,187, 19, 4, - 81,246,115,164, 81,217, 12, 3, 66, 8,174, 94,189, 10,147,201, 84,102,137,142,142,118,169,194,174,206, 90, 80, 41, 8,126, 57, - 81, 0,171, 32,195, 42,150, 44,130,140,174, 45,188,220,210, 20, 36,217,207,215,219,128, 21, 95, 46,197,196,153,243,202,188, 14, -147,222,121, 31, 95,204,121, 15,111,141,253, 63,240,130,228,231,170,102,117, 97,154, 76,147,105, 50, 77,166,201, 52, 31, 84,205, - 7, 13, 37, 0, 16, 66, 58, 3,216, 7, 0,148,210,210,200,136,192,155,209, 60,172, 54,150,206,255, 16, 20, 28,100, 74, 1, 10, - 80, 89, 64,125,127, 15,152,140, 70,183, 79, 40,203, 50,172, 86, 43, 4, 65,192,242,229,203, 81, 88, 88, 8, 89,150, 17, 21, 21, - 5, 0,136,139,139,179,143,192, 92, 79, 72, 72, 8,119,166, 25,216,114, 96, 18, 40,234,217,111,155, 54,239, 43, 28, 62,241, 55, - 40, 5,180,122, 15, 12,125,118, 52, 36,153,194, 42,184,127,127, 82,179,209,136,186, 6, 21, 62,253,232,125,112, 42, 53, 56, 16, -112, 28, 1, 71,100, 52, 13,245,131,165,248,230,196,255, 42,211,166,131,150,143, 98, 77,155, 14,138,105,255,122, 85, 24, 12, 6, -131,193,184,109, 28,121,145,251, 21, 91, 4,107, 95,101,141,225,205, 38,132,250,169, 81,199,224, 3, 81,148,112,214, 90, 23, 5, - 70, 51,172, 86, 1, 73, 86, 43, 46,159, 76,199, 35,143, 60,130,129, 3, 7, 74, 86,171, 21,106,181, 58,111,227,198,141,181,170, - 58,161, 44,203, 16, 4, 1, 86,171, 21, 69, 69, 69,248,254,251,239,161, 84, 42, 33,203,197,198,199, 54,132,136, 82,138, 71, 31, -125,180, 94, 85, 90,165, 80,212,187,124,108, 61,188,116, 10,136, 50,133, 40, 82, 8, 18, 32,201, 20, 70, 94,198,224,151,223,131, - 40,203, 16,101, 25,188, 11, 6,171,140, 97,171,213, 22, 3,166,172, 5, 96, 40,221,239,173,165,152,248, 40, 7,181, 70, 11,141, - 90, 1,139,201,125,163,121,219, 80, 74,167, 17, 2, 54,200,157,193, 96, 48, 24, 15, 8,149,122,145,251,149, 50, 93,132,132,144, -206,148,210,253,182,117,222,108,132, 40, 72, 16, 68, 9,162, 32, 34,175,208,132,185,115,231, 66,171,213,130, 16, 82,106,150,100, - 89,230, 4, 65, 64,159, 62,125, 28,118, 23,218,144, 36, 9, 86,171, 21, 86,171, 21,148, 82, 40, 20, 10,180,107,215,174, 66,185, - 35, 71,142,184,213, 16, 47,157, 2,245,123, 76,169,176,253,232,250, 15, 65, 41,133, 36, 21, 47,174, 24, 44,103,134, 45,166,243, - 48, 88,120, 1,148, 2,160,197, 17,174,187, 2,165,180,116,204, 21,139, 92, 49, 24, 12, 6,227, 1,160,188, 23,185, 95, 41, 63, - 6,107, 31,240, 79,183,147,197,100,130, 32,136, 16, 69, 9,130, 80,108,140,244,122, 61, 58,117,234, 4,160,108,180,105,231,206, -157,176, 90,173, 78, 79,104, 27,212, 94, 98,204, 64, 41,197,218,181,107,161, 82,169, 74, 23,181, 90,237,118, 67, 68,137, 98,202, -164,255, 64,173,228,160, 82,114,165,143, 18,165,160,180,216, 28, 73, 50,133, 69,112, 45,200, 83,149, 97, 3, 0,222, 98, 5, 40, - 5, 5,133,169,168,200,237,250, 50, 24, 12, 6,131,193,168,148, 50, 94,228,126,197,102,176,186, 16, 66, 42, 56, 15,222, 84, 84, - 18,189,146, 32,136, 98,169,129,154, 63,127, 62,148, 74, 37, 52, 26, 13,148, 74,101,169, 33,114,197, 96,153,205,102, 52,104,208, - 0, 60,207, 35, 42, 42, 10,148, 82, 60,253,244,211, 21,202, 29, 59,118,204,173,134, 8, 18,197,236,143, 23, 84,216,126,232,199, - 15,208,178, 89,125, 60,212,200, 19,102,171,140,124,163,232,146, 94, 85,134, 13, 64,113, 4, 11, 0,165,128,169,232, 46, 69,176, - 24, 12, 6,131,193,120,112,168,212,139,220,175, 40, 1,160, 36, 20, 87,193, 45,154,141, 70,136,130, 88,106,178,120,158,135, 44, -203,120,253,245,215, 43, 8,237,217,179, 7, 60,207, 87,125, 50,165,242,230,200,145, 35,203,164, 72,160,148, 98,253,250,245,208, -106,181,101,162, 88,132,184,103, 94, 5,137, 98,250,187,227,161, 81, 41,202, 24, 34, 89, 6,182,252,242, 43,182,252,242,107,105, - 89,133, 66,117,211, 21, 61, 71,134, 13, 0,120,190, 36,130, 69, 41,138, 10, 11,220,170, 43,131,193, 96, 48, 24,140,178, 56,242, - 34,247, 43, 85,102,114, 55,155,138, 32,216,141,193,178, 90,173, 16, 69, 17,203,151, 47, 47,211,157,167, 82,169,192,113,156,211, - 8,214,134, 13, 27,202, 36,247,140,139,139,163,148, 82, 12, 29, 58,180,180,187,241,197, 23, 95,196,168, 81,163,220, 54, 88,162, - 68, 49, 99,214,252, 82,157, 62, 61, 58, 98, 64,239,206,144, 75,188,240,205, 63, 55,186, 37, 88,149, 97, 3, 0,222, 82, 60, 6, -139, 2, 48, 22,176, 46, 66, 6,131,193, 96, 48, 24,255,224,208, 96,169,148, 92,222,229,164, 27, 62,254,158, 58,136,178, 5,162, - 92, 60,243, 79,146, 36,140, 26, 53,170,180,220, 51,207, 60,131,231,159,127,190, 82,131,229,202,221,182,101, 89,198,161, 67,135, - 64, 8, 1,199,113,165,139, 35, 28,105, 22, 89,100, 28,254, 97, 38,100, 74, 33, 83, 64, 46,153,136,192,139,206,163,141,149,105, - 58, 51,108, 90,131, 47, 20, 28, 5, 33,192,229,148, 12, 40, 21, 92,158,187,109,119, 23,166,201, 52,153, 38,211,100,154, 76,243, - 65,213,124,208,112,104,176,168, 68,199, 45,219,122,100,145, 32,201, 62,182,109,205,155, 55,135,213,106,197,142, 29, 59, 74,141, -135, 66,161, 40,237,210,115,101, 12, 86, 57,174,119,234,212,169,170, 84, 12,215, 93, 82, 33,184,222,166,235,147,142,117,136,139, - 58,118, 56, 51,108, 43, 15,252,115, 11, 66, 37,199,229,129,210,113,238,158,131,193, 96, 48, 24, 12,198,131,137, 67,131,117, 61, - 53,117, 53,128,213,246,219,158,120,226,137,194,254,253,251,235, 69, 81, 4,207,243,176, 90,173,224,121,190,116,209,106,181,110, -101,220,116, 37,137,168, 43,220, 60,179,177, 70,116, 74,113,193,176,165,165,165,213,236, 57, 25, 12, 6,131,193, 96, 60, 48, 84, - 57, 6,171, 60, 70,163,209,151, 16,162, 76, 75, 75,171,176,239,198,141, 27, 0,224,218, 20,189,123,156, 26, 55,108, 12, 6,131, -193, 96, 48,254,167,112,203, 96,237,219,183, 79,196, 3, 98,162, 24, 12, 6,131,193, 96, 48,238, 20,142, 71,147, 51, 24, 12, 6, -131,193, 96, 48,170, 5, 1,208,162,178, 29,238,204, 14, 32,132, 84,170, 81, 21,206,244,153, 38,211,100,154, 76,147,105, 50, 77, -166,249,224,105, 58,211,182, 63,158, 16, 50,138, 82,186,220,221, 58,220, 11,144, 59,121,127,224,251,101,106, 40,211,100,154, 76, -147,105, 50, 77,166,201, 52,239,174,166,131,243,220,183, 6,139,117, 17,186, 1,137, 27,173,186,219,117, 96, 48, 24, 12, 6,131, -113,239,227,214, 32,247,219, 97,198,140, 25,183,101,230,166, 77,155, 38,215, 84, 93,220,133,132, 14,137, 84, 40, 49, 55, 54,166, -101,111, 46,124,240, 54, 42,145, 73, 52,101,253,229,187, 85,159,251,157,222,117, 12,254,144,196,190,158,158,186, 1,161, 94,202, -135,175,102, 25,127,231, 5,121,139,172, 81,111,218,153,146,159,115,183,235,199, 96, 48, 24, 12,198,237,114,219, 6,171,109,219, -182,245,101, 89,254, 63, 0,207, 82, 74, 79,157, 56,113, 98, 72,117,116,246,236,217, 19, 34, 8, 66, 91, 81, 20, 99, 1,196,234, - 61, 12,173, 45, 22,243, 77, 2,250, 66,239,222,189, 79,186,171, 23, 23, 23,247, 11,128, 62,149,237, 35,132,204, 56,126,252,248, -116, 87,181, 20, 74,204,253,117,211,202, 1,233, 70, 61,246, 39, 36, 13,252,250,147,201, 0, 48,200,221, 58,253, 27, 4, 7, 7, -235, 1,188,192,113, 92,119,173, 86,219,216,108, 54, 95, 3,112,134, 16,178, 36, 37, 37,165, 98,126, 13, 23,152, 65, 8,119, 44, - 80,251,178, 86,231,209,203,223,160,137,205,204,201, 75,181,136,242, 65,170, 82,207,115,215, 16,245,142, 36,154, 0,175, 90,251, - 95,238,215, 45,170,105, 84, 36,228,164, 83,176,228,102,246, 63,119,195,212,127, 77,194,205,255,244,142, 36,177,219, 47,211,170, -111,106, 89, 66, 88, 88, 88, 93, 73,146,148,105,105,105,201, 0,208,160, 65, 3,111,139,197,210, 6, 64, 20,128,191,180, 90,237, -241, 43, 87,174,228,187,223,226,127,184, 95, 52, 67, 67, 67,131,101, 89, 30, 17, 20, 20,244, 68, 70, 70,198, 47, 28,199,173,172, -238,251,205,248,223, 33,226,225,231, 23, 16,142,248,187,115, 12,149,105,214,181, 35,223,253,231, 78,213,137,193,120, 80,168,150, -193,106,222,188,185,167, 70,163, 25,202,113,220, 11,173,226,218,119,232, 63,236, 5, 34, 16, 15,124, 52,254, 25,183, 83, 56,156, - 56,113, 66,155,158,158,254, 65,253,166,113,111,118,233, 57,128,107, 22,213, 20,254,181,253, 32,115, 26,172,218,113,177,246,190, - 47, 95, 92, 12,160,125, 53,170,217,231,135,109, 71,145,158, 43,129, 16,128, 16,128, 35, 64,161, 89,198, 59, 47,117,152, 6, 96, -186, 43, 61, 73,177, 51, 0, 0, 32, 0, 73, 68, 65, 84, 34, 36,110,180, 42,186,121, 84,239,139,183,116,216,241,167, 0, 32, 24, - 30,126, 65,189, 73,220,104, 21, 77,248, 82,168, 70,189,238, 24,117,235,214,141,173, 93,187,246, 23, 47,190,248,162, 95,227,198, -141,235,106, 52, 26, 15,179,217,220, 40, 41, 41,169,254,167,159,126,250, 88,221,186,117,231,164,167,167,255,236,142,102,159,186, -186,122,129,173,234,255, 48,117,196,115, 15,213,143, 8,131,130, 47, 2,181, 20,134,165, 95,187,210,126,201,119, 27, 70,246, 12, -212, 62,253,235, 77,203,110,151, 5, 11,180,239,142,121,235,201,168,112, 79, 10,254,220, 33, 40, 21, 20, 90, 47, 63,180, 80, 40, - 0, 74,155, 45, 58, 36,190, 3, 96,154, 51,153,224,224,224,153, 0,222, 1, 64,234,214,173,251,131, 74,165, 58,246,240,195, 15, - 55,125,234,169,167, 72,203,150, 45,113,242,228,201,102, 91,182,108, 25, 82,175, 94,189, 68,158,231,143,214,174, 93,251,212,185, -115,231, 92,186,213, 64,243,230,205,213,217,217,217,173, 53, 26, 77,187,123, 89, 51, 56, 56, 88,207,243,252,255,133,134,134,142, -234,223,191,127,203,126,253,250,145, 38, 77,154, 32, 49, 49, 49,110,251,246,237,211, 90,183,110,125, 38, 37, 37,101,185, 70,163, -249, 54, 45, 45,205,165, 36,192,195,122,144,196, 31,119,211,166,213,221,111, 15, 33,196, 23,128,142, 82,154,238, 66,217, 32, 0, - 30,148,210, 43,255,182,230,157, 32, 52, 52,244, 60, 33,164, 86, 73, 61,108,245, 41,243,220,254, 81,146,164,162,164,164,164,134, - 85,105,214,171, 87,175,153, 44,203, 10,251,109, 42,149,227, 81, 11,162, 40,202,201,201,201,231,170,210, 36, 28,241,223,246,195, - 18, 31,173,146,131, 36, 83,200, 50,133, 4, 64,146, 0, 73,150, 33, 73, 20, 18, 5, 36, 42, 67,150, 0, 19, 47, 97,212,171,204, - 91, 49, 24,174,224,178,193, 34,132,144,184,184,184, 78,148,210, 23, 34, 26, 68, 14, 29, 60,124,180, 62,162, 81, 11, 20,202,222, -184,154, 37,227,196,222, 53, 0,176,206,157,147,239,220,185,179, 13,165,248,102,236,228, 5, 77, 91,197,180,197,159,169, 34, 14, - 39, 75, 40,186, 44, 65,169, 48, 65,150, 1, 74,169,197,221, 70,217, 72,201, 17,113, 48,145,135,130, 3, 56, 14, 80,112, 4, 10, - 55,239,211, 77, 19,190, 20,184,240,193,219,126, 61,150, 58, 16,186, 32, 24,115, 82, 97,204,201,216, 78,147, 55,220, 83,230, 42, - 36, 36,164, 91,131, 6, 13, 62,123,227,141, 55,234,164,167,167,215, 58,122,244, 40,180, 90, 45,252,252,252,148,254,254,254, 77, - 39, 79,158,156, 55,107,214,172, 9, 65, 65, 65, 39, 51, 50, 50,174,185,162,217,187,142, 38,170,117,116,244,239,227,222,159,230, - 99, 62,190, 29, 57, 63,253, 4, 5, 39, 67,237,105, 64,109,189, 7,222,123,172, 94,173,121,123, 83,126,238, 93, 75, 31,181,253, -150, 41,213, 21,205, 58, 1,181,123,134, 71, 54, 65,238,214, 37,184, 94,192,227, 84, 38,143, 30, 29,227, 80,207, 79,143, 40, 81, - 66, 45,157,170, 27,156, 24,172,208,208, 80, 63, 0,147,174, 93,187,198,169,213,106, 82,191,126,253,167,151, 47, 95, 78,155, 53, -107, 86,122,215,237,246,237,219,163,125,251,246,164,176,176, 48,234,240,225,195, 81, 27, 55,110, 20, 66, 66, 66, 18, 82, 83, 83, - 87, 57,210,109,208,160,225,117,139,197, 28,166,213,233,205,159,126,250,233,127, 31,126,248, 97, 89,163,209,224,118, 52, 1,160, -110,221,186,223,135,134,134,122, 76,157, 58, 53,171,109,219,182,180, 38, 52,235,215,175,255,107,199,142, 29,187,246,236,217, 83, -249,232,163,143, 34, 56, 56,184,116,159,191,191, 63, 58,118,236, 72,146,147,147, 91, 29, 60,120,112,201,175,191,254,186,168,126, -253,250,123,175, 94,189,218,179, 42,205, 18,154,220,230,126,123, 20, 0,102, 19, 66, 86, 80, 74, 15, 59, 42, 68, 8,137, 5,240, - 12,128,185,119, 73,179, 74,244,122,125,134,217,108, 14, 4, 0,157, 78,119,211,100, 50, 5, 57, 59,134, 16, 98,248,244,211, 79, - 3,213,106, 53, 56,142,131, 36, 73,144, 36, 9,178, 44,131, 82, 90,250,104,155,100, 52,115,230, 76,201,153,166, 44,203,220,130, - 5, 11, 84,122,189, 30, 0, 32, 8, 66,153, 71, 27,182,245,153, 51,103,186,244, 27,165, 85,114, 24,241,242,255, 61,196, 73,188, - 14, 0,100,133,198,220,227,133,143,143, 1,192,238, 85,147,202,108,127,127,246,210, 99,174,104, 50, 24, 12, 55, 12, 86, 76, 76, -204,182,222,131,158,239,245,112,167,158, 16,213,129, 72,188, 73,144,124,149, 66,169, 16,193, 65,198,149, 63, 54, 81,142,227,190, -181, 63,166,170, 25, 6,219,182,109,251, 79,189,200,214,115,222,153, 62, 91,241,103,134, 6,223, 28, 52, 65,178,228,193,148,117, - 25, 69, 55, 47,162,224,198,121,228,166,254,121,134,227,184,233,174,106,150,135, 82, 64,166, 20,132, 18, 64, 6, 0, 90, 28,198, -170, 80,174,106, 77, 42,145, 73, 9,191,126, 51, 48,102,192, 20, 92, 60,184, 26,160,220, 36,231,231,174,249,217, 21,142, 52,131, -131,131, 31,139,136,136,152, 55,122,244,232,208,211,167, 79,123, 27,141,198,162, 99,199,142,237, 79, 79, 79, 15,242,247,247, 79, -126,234,169,167, 30, 9, 12, 12, 12,236,212,169,147,199,206,157, 59,223, 5, 48,194,153,102,159, 32, 77,116,235,150,173,227,223, -158, 61,215, 51,235,231, 69,224,175,158,198,233, 44, 11, 46,220, 50,211, 32, 67, 62,233, 29,229, 11, 15,141, 18, 67, 99, 2, 12, -179,118, 37,127, 12, 96,184, 43,109, 15, 9, 14,106, 40,152, 76, 48,155,172,216,255,119,190,233, 88, 70, 78, 32,231,147,154, 57, -178,119,172, 78,145,149,134,218, 6,101, 35,119,218, 14, 20, 71, 1, 60, 60, 60, 42,221,231,227,227,131,246,237,219,163, 97,195, -134,170,103,158,121,230, 97, 0,171, 28,105, 90,173,214,186,169,169,105,104,220,164,177,182,123,247,238, 68,161, 80,128,231, 43, -246, 86,186,163, 9, 0,158,158,158,253, 98, 99, 99,149,223,125,247, 93,238,181,107,215,206, 14, 30, 60, 56,213,195,195,163,204, - 5,213,195,195, 3,245,234,213,195, 43,175,188,162, 26, 57,114,164, 83,205,160,160,160,199, 86,175, 94, 13, 66, 72,233,197,187, - 60,225,225,225,168, 83,167, 14,250,244,233,163, 28, 50,100,200, 99,246,251,202,107, 14,235, 65, 18, 81, 98,158,134,245, 32, 85, - 78, 45, 46,217,127,161,124, 36,171,188, 38,165, 52,155, 16,178, 12,192, 6, 66,200,208,202, 12, 17, 33,228, 81, 0, 63, 1,232, - 77, 41,189, 89,126,127, 85,154, 26,141, 70,109,181, 90,253,128,178,198,199, 93, 77,187,186,208,132,132, 4,196,197,197,193,254, -209,108, 54,151, 26, 33, 66, 72, 96,101,199, 86,166,169, 80, 40,176,116,233, 82,112, 28, 7,181, 90, 13,149, 74, 5,181, 90, 93, - 97,137,137,137,169, 76,178, 82, 77,149, 74,133,165, 75,151, 66,146, 36,238,218,181,107, 47, 72,146, 52,192,108, 54, 7,234,245, -250, 76,181, 90,189,181,115,231,206, 95,107,181, 90,209, 29, 77, 81,166,224, 36, 94,183,123,231,102, 79,139,197,130,190, 3,158, - 44,221, 87,126,187, 84,201, 39,227,223,252,173, 99,154, 15,182,166, 19,218, 2, 8,176, 91,231, 1,216,254,173,102,161, 56,237, - 84,237,114,219,237,203,217, 30, 51, 75,182, 7,148, 28, 71,237,116, 51, 1,252, 81, 83, 21, 86, 2,197, 63, 44,148, 82, 98,123, -116, 80,214, 59,197,228,139,194,171,254, 80,114, 50,148, 10, 2,165, 2, 0, 8,178, 83,206,131, 47,202, 62,116,252,248,241,171, -174,156,116,199,142, 29,237, 35,154, 61,244,241,244, 15, 63,225,190, 62, 96, 66,158,209,140,172,115,155,145,126,236,171,116, 89, -180,110,230, 56,238, 56,199,113, 39, 98, 91,181, 76,172, 91,183,174,211,127,118,142,144, 41, 32,217, 27, 43, 25, 32,112, 63, 45, - 5, 77, 89,127, 57,184,243,123,101,214,171, 91,167,154, 38, 52, 52,180,119,100,100,228,236,209,163, 71,135,159, 56,113,194,171, -160,160, 32,115,247,238,221,137, 86,171,245, 36,199,113, 11,211,210,210, 58,175, 94,189,218, 99,226,196,137, 61,155, 52,105,210, -228,215, 95,127, 53, 58,211,236, 19,224,217,170,207,176,167,227,187,191,252,154,238,236,250,197,208, 93, 56,129,159, 46,229, 73, -231,111,242,239,194,219,252, 25,189,161,125,180,128,151,118,189,212, 46,136, 11, 52,168, 80,199, 75,213,197,213,250,170,148,106, - 37, 85,234,192, 91, 68, 24,173, 18,191, 47,147, 22,125,240, 88, 75, 43,245,244,215, 1,128,146, 16,167,166, 63, 37, 37, 37, 39, - 56, 56,248,227,136,136,136,247, 8, 33,180, 83,167, 78,231,226,226,226,138,100, 89,134,201,100,130,213,106,133, 74,165,130,201, -100, 66, 82, 82, 18,142, 30, 61, 10, 31, 31, 31,103,178,101,200,205,205, 69, 68, 68, 4, 60, 60, 60,110, 91, 83,150,101,178,100, -201, 18,221,217,179,103,117, 27, 54,108,168,245,159,255,252, 39, 47, 38, 38,230,252,192,129, 3,147,107,213,170,101, 61,117,234, - 20,226,227,227,145,147,147,131,135, 30,122,200, 37, 77,171,213, 10,165, 82, 9,147,201, 4,173, 86, 11,165, 82, 9, 81, 20, 33, -203,114,169,233, 42, 44, 44,196,173, 91,183,160, 82,169,156,222,136,221,102,150,134,245, 32,244,199,159,126,191, 9, 73, 6,164, -124, 1,214, 60, 1, 98,158, 0, 33, 79,128,144, 43, 12,123, 99,126,171, 31,119, 59,252,141,168, 0,165,244, 8, 33,100, 40,128, -159,202,155, 44, 59, 35, 52,148, 82,122,202, 93, 77,171,213,122,200,102,124,116, 58, 93, 32, 33,197,198, 80,171,213, 10, 22,139, -165,171, 59,154, 0,144,144,144,128,216,216, 88, 69,137, 38,181, 61,150, 44,110, 65, 8,129, 66,161,128, 74,165,130, 66,161, 64, -108,108, 44,250,245,235,135, 38, 77,154, 32, 37, 37, 5,251,246,237,195,197,139, 23,161, 86,171,203,116, 29, 58, 67,165, 82,129, -227, 56,238,194,133, 11, 95,119,239,222, 61,114,220,184,113,154,122,245,234, 33, 49, 49,177,206,146, 37, 75,158,223,179,103, 79, -231, 65,131, 6, 61, 15, 64,172,170,251,208, 30, 73,254,167,121,231,207,159,175,180,140,109,123,101, 6,139,193,168, 41,156,120, -145, 0, 66,200, 86,219, 10,165,180,175,109,125,242,228,201,239,204,158, 61,251, 44, 33,100,171,253,118,251,114,246,143, 37,231, -218, 74, 41,237, 59,101,202,148,232, 57,115,230,204,178,149,173,201,246,184, 28,193, 82, 40, 20,131,255,220,241,217,145, 70, 86, - 26, 30, 20,253, 4,138,127,115, 8, 0,138,164, 83, 59, 32,203,242, 42, 87,116,226,227,227,117,162,140,175, 39,190, 51,147,251, -114,175, 9, 25, 55,210,144,182,127, 46, 76, 55,207,127,163,215,235,223,238,222,171,239,109, 13,246, 5,128,184,184,184,104,223, -218,117, 96,177,210, 18,131, 5,216,155,172, 7,133,224,224,224,126,145,145,145, 51, 55,111,222, 28,110, 50,153,188, 14, 31, 62, -156,187,107,215,174, 75, 86,171,117,101,122,122,250,247, 0, 64, 8,217,172, 84, 42, 63,160,148,194, 96, 48, 40, 21, 10,133,222, -246,233,173, 76,179,167,191, 71,236,224,103,159, 57, 52,242,147,101,186, 75,127,158,194,162,117,219, 16,168, 20,164,164,124,203, -192,237,153, 22,219,135,246,183, 23, 27,122,167, 82,138, 48, 21, 71,224,173, 87,213, 25, 22, 74,116, 63,166, 80,179,179, 58,215, - 14, 13,231,196,144, 6, 56,104,180, 64,229,161,214, 0, 64, 80,163,230,138, 83,249, 34, 14, 31,251, 11, 68, 91, 75,237, 74,219, -211,210,210,166,134,132,132, 68,236,218,181,139, 51, 26,141, 69,167, 79,159, 70,237,218,181, 17, 24, 24, 8,111,111,111, 36, 38, - 38, 98,247,238,221,184,112,225, 2, 40,165, 14,163, 4,142,200,200,200, 64,126,126,126,141,104,138,162, 72, 0, 32, 58, 58, 26, -209,209,209,154,212,212,212,192,173, 91,183,250,205,154, 53,235, 70,221,186,117,119,154, 76,255, 12,143, 42,223,221,227, 8,139, -165,184,231,220,108, 54,195, 98,177, 64,173, 86, 67,167,211, 65,173, 86, 35, 63, 63, 31, 25, 25, 25, 40, 40, 40, 0, 0,248,250, -250,150,150,119, 9, 73, 6,142,116, 56, 94, 97,123,200, 11,149, 70,111,156, 65, 41, 61, 92, 98,178,126, 35,132,216,222,223,140, -146,199, 74, 35, 91, 46,106,150,174, 91, 44, 22,251, 40,147,170, 58,154,113,113,113, 54,141, 50,191, 18, 58,157,238,166, 45,114, -165,211,233, 42, 68,196, 42,195,214, 45,168,209,104, 16, 29, 29,141,183,223,126, 27,137,137,137, 56,116,232, 16, 2, 3, 3,241, -248,227,143, 67,169, 84, 34, 57, 57, 25, 28,199,185,100,176,212,106, 53, 4, 65,192,165, 75,151, 94,232,214,173, 91,131, 69,139, - 22,105,174, 93,187,134,196,196, 68,120,123,123,227,131, 15, 62,208, 78,154, 52, 41,116,231,206,157, 35, 91,183,110,189,212,213, -118, 83, 55,126, 19, 37,129, 57, 44,198,221,165,188, 9,178, 25,167,217,179,103,247, 45,191,173, 50,195, 84,126,251,156, 57,115, -102,217,173,215,232, 44,246,210,212, 9,182,127,127,142,144,101,185,174,111, 64, 72,173,209,195, 31,135, 44, 3,162, 12,136, 18, -133,201, 88,132, 27,137,123,141, 60,207,255,228,202, 9,179,179,179, 63,120,241,205, 57,145,199,175, 43,145,158,195, 35,101,207, - 76,106,201, 74, 28,210,175, 95,191, 17,221,187,119,175, 17,115,229,231, 31,188,239,253,185, 95,225,143, 43, 60,100,250, 79, 36, - 75,146,139,159, 63, 8,132,132,132, 52,242,243,243,251,100,211,166, 77, 17, 26,141,198,235,242,229,203,210,254,253,251,211, 4, - 65, 88, 98, 51, 87, 0, 16, 28, 28,252,108,139, 22, 45, 4, 79, 79, 79,152, 76, 38,179, 32, 8,133, 14,205, 85,176, 62,180, 69, -235,102, 7, 70,126,178, 76,103,230,121,228,153, 44,136,168, 23, 34, 93,201,183, 12,220,158, 81,106,174,208, 59, 80,255, 72,139, - 6,117, 67, 56,189, 23, 0, 32,163,208,154,230,138,185, 2, 0,157,183, 15, 23,218,166, 11,218,188,241, 57, 44, 74, 31, 10, 0, - 62,129,117,185,174,175,124,132, 94,159,237,135,160, 52,184, 99,129, 77,141, 27, 55, 46, 29,119,149,157,157,141,243,231,207, 35, - 47, 47, 15,139, 22, 45, 66, 98, 98, 98,233, 69,215,108,118,169,122, 21,168, 9, 77, 89,150,203, 92, 61, 67, 66, 66, 48,118,236, - 88,149,201,100,242,180, 55, 87,238,104,242, 60, 95, 90, 15, 74, 41,120,158, 71, 94, 94, 30,120,158,199,165, 75,151, 74,205, 21, - 0, 72,146, 84,105, 87,167,227, 10,231, 85, 30,238, 18,178,171, 61,238,176,196,240,168,237,198, 29, 5,161,154,230,202, 70,137, -241,113, 57,250,227,140,132,132, 4,160,146,104,149,201,100, 10,162,148,146,132,132, 4,184, 50,254,202, 6,165, 20, 26,141, 6, -253,251,247,199, 95,127,253,133,212,212, 84, 40, 20, 10, 88, 44, 22, 88, 44, 22,196,198,198,150, 70,176,220,129, 82,218,251,245, -215, 95,215, 93,189,122, 21,217,217,217,224, 56, 14,162, 40, 66,146, 36,140, 28, 57, 82,199,243,124, 47,119,244,220,241, 76,210, - 29, 76, 76,205, 96, 0,149,123, 17, 66,200, 40,187,231, 91,203,239,119,135,242, 17, 46, 27, 83,166, 76,137, 6,160,189, 29,237, -242,148, 26,172, 42,186, 6, 17, 23, 23, 23,227,235, 31,178,119,202,172, 21,134, 13,167, 21,184,149,126, 1,201, 39, 54, 65,148, -255,159,189,243, 14,107,234,236,255,240,231, 57,217, 9,132, 29, 70, 2, 34, 10, 34,136, 40,178, 20, 68,177,213,186, 71,219,215, -109,181,182, 86,237, 91,173, 85, 91,103,221,226,168,214,213,241,218,214, 58,234,104,213,159,181,238,189,113, 2,138, 11, 17, 21, -196,176,145, 77, 32, 36, 57,207,239, 15,192, 34,101,132, 97,173,246,220,215,149, 11, 60, 57,185,207,115, 0,147,207,249, 62,227, - 0,201,247, 46,128, 26,116,255,119,251,246,237,130,234, 94, 95,206,145, 35, 71, 90, 56,185,251,125,218,214, 55, 16, 71,110, 22, -227,105,244, 14,104,179, 30,125,223,187,119,239,223, 27,227,100,124,125,125,189, 44,173, 29, 78,207, 92,250,163,213,190, 91, 2, - 60,126,116, 15,167,215,246,195,209,229,111,226,240,178, 55,113, 96,201, 27,248, 99,241, 27, 0,112,176, 46,222, 80, 66,248, 46, -150, 37,232,230, 73,160,180, 41, 4, 9,173,189, 27,235, 69,163, 86,171,239, 3,216,252,227,143, 63,230,157, 63,127,222, 48,110, -220,184,216,156,156,156, 69, 73, 73, 73, 59,202,247, 41, 27,248, 62,117,193,130, 5,238, 6,131, 1,103,207,158,189,207,227,241, -170,237, 95, 62,154,164,121,114,247,214,237,239,174,236,216,128,168,107, 87,241,199,130, 41,250, 59,183, 99,250, 30,173, 24,174, -236, 69, 30,222, 45,155,237, 31,241,241,120,134,136, 77, 16,151, 89,140,244, 2,221, 9, 99,219,157,158,175,209, 9,196, 82,152, -218, 55, 69,146,134, 21,170, 84,170,203, 73,185, 26, 33,195,227,131,225, 11,145,152,163,173,211,135, 56,203,254, 53,143, 85, 14, - 45, 0,106,237, 34,171,141,134, 56,203, 43, 88,149,209,233,116,127,217,110,172,179, 98,192,170, 72, 85, 99,177, 88,150,173, 91, -192, 42,201,173,250,119,160,173,127,192,170,104, 41,123,160, 33,225, 10, 40, 13, 62,229, 21, 37,177, 88,252,172,171,205,216, 42, - 83,101,124,125,125, 27,244,124, 69, 8, 33, 96, 89, 22, 2,129, 0,110,110,110,200,201,201,129,153,153, 25,228,114, 57, 76, 77, - 77, 33, 22,139, 97,103,103, 7,145, 72, 4,134, 97,192, 48,198, 45, 19,168,211,233,160,213,106,237, 29, 29, 29,145,159,159, 15, -137, 68,242,236, 33, 18,137,224,238,238,142,252,252,252, 58, 85, 26, 89,131,241,215, 52, 85,252,119,227,224,104, 84,170,202, 34, - 21, 87,114,111,140,110,188,170, 28,101,221,132,210,134,186, 43, 82,107, 80, 40, 15, 87,211, 22,255, 96,182, 51,146, 65,118,114, - 12, 18, 14,207,204, 51,148, 20,102,177,172,206, 57,235,193,121,160,194,128,220,154, 96, 89,214, 63,232,141,254,204,233,187, 90, -148,228, 37, 33,247,214,175,241, 98,177,120,122, 3,207,161,188,157, 94,150,214, 14,167,167, 47,249,209,106,207, 13, 62,158, 38, -221,195,131,131, 51,114, 12, 37,133,111, 68, 68, 68,212,121, 29,173,177,132, 8,214, 83,170,235,111,107, 59,192,201,201,110,249, -232,119,228,232,212, 85, 10, 51,161, 25, 22,124,197,220,181, 11, 38, 83, 83, 47,208,125,196,151, 8,104, 4,125, 41, 51, 10,111, -221,186,181,216,205,205,141,209,235,245,163, 75, 74, 74,230, 37, 37, 37, 61,171, 34, 42,149,202,110,206,206,206,203, 23, 46, 92, -232, 24, 31, 31, 47,186,116,233,210,211,168,168, 40,214, 96, 48, 44,173,201,121, 48, 69,243, 69, 15, 91, 49,207, 81,169,156,160, - 86, 39,245, 59,156, 94,124,184,252,185, 94,118, 34,175, 54,173, 90, 93,152, 50,107,154, 92,123,105, 55, 10, 83,159, 96,235,181, -180, 92, 62,203,204, 48,166,189, 42,149,202, 42, 64,206, 96,249,127, 71,179,121,121,121, 48,147,136,216, 39, 55,227,120,147,123, -135, 26,254, 55,251,115, 38, 37, 37, 5, 69,133,133, 60,149, 74,101,165, 86,171,159, 26,227,172, 42, 80, 84, 85, 5,170, 83,192, -168,130,134, 56, 43, 87,176,202,169, 42, 96, 25,235,172,216, 37, 86,145,170,126, 30, 6,131,161,110, 93,132,250,106, 2, 86, 73, -122,195, 82, 42,240,152, 16,210,164,252,251, 6,186, 0, 0, 69, 69, 69,182, 21,186, 6,107,188, 80,172,141,178, 10, 86,189,159, -175, 76,121, 5, 43, 46, 46, 14, 10,133, 2,122,189, 30, 38, 38, 38,144, 74,165,144, 74,165,208,104, 52, 16,137, 68,224,241,120, -181,203, 42, 32, 22,139, 83, 98, 98, 98,156, 45, 45, 45, 97, 48, 24,158, 11, 89,143, 30, 61,130,185,185,121,154,177,227,175,128, -231,199, 96, 1,128,133,185,137,224,228,134, 73,157,203,191,127,126,223, 58, 53,149,131,163,209, 41,175, 62, 85, 28, 75, 53,125, -250,244,153,245,245, 77,159, 62,125,102, 67,171, 98,213,193, 7,254, 76,140,149,223,156,124,125,125,125, 44,172,149,167,166, 46, - 92,111,182,237, 26,131,156,228,187, 72, 58, 62, 59,135, 45, 41,124,131, 97,152,228,196,240, 31,118, 1, 40,140,140,140, 60, 99, -204,193, 12, 6, 67,187,150, 45, 90, 96,231, 45, 61,138, 82,110,128, 33,116, 83,215,174, 93,107, 29,116, 93, 27,229,225,234,139, -176, 31,172,118, 70,241,145, 85, 26, 2,115,216,122,132,171, 97, 98,177,171,128, 97,150,187,118,104,215,123,136,157, 77,126, 47, - 87,153, 69, 47, 87, 49,120,151,126,199, 62,101, 26,158,218,156,196,248, 85, 42,215,240,189,185,127, 52,121,147,255,180, 95,167, -182,102,202,206,252, 3, 58,106,248, 34,253, 44,253,219, 7,191,223,191,127,127,161,189,189,253,158,148,148,148,103,163, 83, 29, - 29, 29,123, 54,109,218, 52,108,193,130, 5, 77, 19, 19, 19,229,215,175, 95,207,221,181,107,215, 35,134, 97, 22, 36, 39, 39,215, -122,117,127, 56,173,120, 74,111, 7,209, 79,135,210,181, 49,229,219,122, 41, 76,218,244, 30, 52,228, 98,135,129,163, 36, 15, 78, -111,134,213,147,219,216,124, 61,195,144,158,167, 29,122, 36,163, 56,165, 54,167, 74,165,178, 18,137, 68, 59,103,111,219,125,191, -117,235,214,164,176,176, 16, 58,157, 14,233,233,233,152,182,225,215, 91, 44,203,194,210,210, 18, 39, 78,156, 96, 63,253,244,211, -157, 42,149,106,160, 49, 33,139,101,217,103, 31, 86,229, 84,174, 2, 73,165,210,186, 5,140,178,215, 84, 12, 48, 13,113, 86, 23, -176, 42, 87,182,234,232, 4,128,103,131,219, 43,111, 47,135,199,227,129,101,217, 42, 43,125,213,162,203,174, 38, 96,165, 53,232, - 66,130, 82,234, 92,203, 68,154,151, 70,217, 82, 12, 0,192, 86,183, 20, 67,133, 49, 90,181, 82,222,237, 39, 18,137, 16, 30, 30, -142, 30, 61,122,128,101, 89,136,197, 98, 72,165, 82, 72, 36, 18, 92,185,114, 5, 66,161, 16, 60, 30,175, 78,221,132, 2,129,224, -208, 55,223,124, 51,106,233,210,165, 82,150,101, 33, 18,137, 32,149, 74, 33, 22,139,241,245,215, 95,107, 68, 34,209,225,186, 5, -172,231,255, 54,182,108,218, 32, 18,139,197, 34, 99,246,229,224,104, 76,170,203, 34,101,164, 87,170, 60,105, 43,252, 59, 29,165, -247, 86,238, 83,246, 61,170,248, 94, 91,197,182,204, 37, 75,150,156,170, 48,126, 43, 29,141, 72,181, 21, 44, 31, 31, 31, 15, 43, -133,227,169,201, 11,215,155,109,190,204, 67, 78,242, 29,100,156,250, 50,135,234, 53, 21, 67, 75,199, 58, 30,207,199,214,214, 26, - 25,225, 69,208,101,221, 7, 33, 36,178,254, 77, 47, 37, 32, 32,192,205,194,202,254,244,212, 69, 63, 88,109,143,224, 35, 59,233, -207, 16, 88,159,202, 21,159, 97,190, 90,121,228,215,126,226,148,187,208,220, 56,109, 33,120,250, 4,183,210, 74,176, 51, 60, 37, -239,244,133, 31,207, 51,158, 52,228,141,161, 22,166,111, 12,181,194,234,241,135,173, 82,139,110,227,114,236,254,254, 97, 51,246, - 83,188,164,213,221, 43,134, 43,165, 82,217,215,209,209,113,254,129, 3, 7,156,245,122,189,252,236,217,179,121,187,118,237,122, -160,215,235,215, 38, 39, 39, 31, 48,214,121, 32,249,207,112,245,150,141,172,221,160,145,195,206,191,191,252,123,201,237,136,171, - 88,190,249, 0,156,100, 6,195,189,180,226,129,135,211,139, 15, 25,227,227,243,249, 11,182,111,223,110,226,233,233, 73, 50, 51, - 51,159,125,224,151,148,148, 32, 55, 55,247,217,248,161,214,173, 91, 51,115,231,206, 53,153, 51,103,206, 2, 0,255,173,201, 73, - 41, 77,155, 63,127,190,237, 71, 31,125, 4, 51, 51, 51,100,102,102, 66,167,211, 61,171, 54,137,197, 98, 88, 88, 88, 32, 59, 59, - 27,199,143, 31, 71, 85, 83,246, 43, 34, 20, 10,147, 85, 42,165,147, 84,102,162,149,201,100,212,212,212,180,193, 78, 0, 32,132, -164,244,234,213,203,126,254,252,249,162,138,221, 76, 37, 37, 37,164,190, 78, 74,105,225, 91,111,189, 37, 91,187,118, 45,156,157, -157,161,213,106,193,178,236,179, 10, 86,249,210, 0,143, 31, 63,198,226,197,139, 65, 41, 53,254, 66, 70,151,165,131,227, 72, 5, - 74, 50,117, 40,201,212, 65,155,161, 67, 73,154, 14,250,194,127,220,167,107,125, 6,160, 87, 69,165, 74, 88,149, 93,108,117,169, - 96,149, 85,211, 32, 20, 10,145,152,152,136, 19, 39, 78, 32, 32, 32, 0,114,185, 28, 5, 5, 5,184,120,241, 34, 82, 82, 82,234, - 85,193,122,227,141, 55, 54, 29, 61,122, 52,228,147, 79, 62,113, 25, 55,110,156,212,195,195, 3,241,241,241, 88,181,106, 85,209, -157, 59,119,212, 19, 39, 78,252,177, 46,190,242,170, 84,121,184,175,110, 38, 33, 80, 58,238,150,131,227, 37,209,104,203, 39,252, - 93, 84, 27,176, 24,134,249, 44,240,221, 89,102,155, 46,241,145,165,190,133,156,115,115, 43,135,171, 90,169,124,183,109,129, 68, -222, 90, 79,133, 0,138,160,207,126, 0,145, 72, 84,231, 0, 84,217,201,178,236,148,246,239,206,178,218,114,149,143,156,164, 59, - 72, 63, 61,167,206,225,170,220, 57,150, 16,129, 91,144, 95,111,113,234, 61, 20,157,222, 1, 2,224,167,168, 2, 92,124,162,253, -186, 68,171, 93,116, 59,167, 56,219,177, 3,177,220, 17,150, 54,167,231,219,222,159,186, 15, 62,142,203,233,223, 3, 50,192, 82, -193,239, 89,177,187,240,101,220,189, 92,165, 82,185,201,229,242,175, 14, 29, 58,164, 16,137, 68,102,183,111,223, 54,236,222,189, - 59,209, 96, 48,172, 76, 78, 78,222, 81,213,107,106,115,190,165,148, 58,186,185, 57,159,121,127,233,183,146,188,252, 2, 20,104, - 75,224,214,204,201, 16, 21,125,251,221,163,105,218,189,198, 56,237,236,236,186, 12, 27, 54,172,141,175,175, 47, 83, 93,184,202, -205,205, 69,126,126, 62,158, 60,121,130,144,144, 16,198,195,195,163,181,157,157, 93,151,212,212,212, 83,213,181, 51, 57, 57,121, -222,142, 29, 59,130,127,251,237,183, 62, 99,198,140,145,191,243,206, 59,144, 74,165, 40, 40, 40,128,147,147, 19, 88,150,197,185, -115,231, 16, 27, 27,155, 7, 96,127,114,114,242,133,154,218,249,240,225,131, 38,132, 16,198,209,209, 49,184, 71,143, 30,141,226, - 4,128,244,244,116,215, 51,103,206, 76,235,223,191,255,164,238,221,187,203,103,206,156, 41,116,113,113,129,193, 96, 32,245,117, -102,101,101,153, 71, 70, 70,174,232,216,177,227,127,123,244,232,193, 15, 11, 11,131,185,185, 57, 12, 6, 3,164, 82, 41,114,115, -115,177, 96,193, 2,156, 63,127, 94, 79, 41,253, 54, 39, 39,103,106, 77,206,231,214,193,154,248,117,219,170,126,175, 21,246,173, -114, 29,172,151,241, 55,175,209,104,236,234, 90, 21, 51,166,157,145,145,145,180,242,122, 88, 53, 85,176, 42, 59,203,199,131,137, - 68, 34,240,249,124,164,167,167,227,232,209,163,207,173,127, 37, 18,137,158, 45,227, 80, 85, 5,171,186,118,202,229,114,246, 63, -255,249,207,232, 67,135, 14,141,154, 50,101, 74,255,188,188, 60, 91, 51, 51,179,116, 19, 19,147,253, 19, 39, 78,252,217,194,194, -162,218, 37, 26,170,114, 26,104,233, 34,162, 21,215,191,170, 10,150, 39, 42, 98,171,152,114,248, 50,126,239,156,243,245,116,190, -110,212, 52, 6, 75,114, 33, 34, 22,140, 56, 13,121,151,191,170,115,184,170, 10,125,113, 65,220,194, 95, 31,250, 24,180, 26,232, -115, 19,238,245,232,221,171,222, 87,156,229, 80, 74, 77,206, 71,198,129, 47,201, 68,246,165,101,217,196, 80,252, 70, 68, 68, 68, -157,214,191, 41,103, 61,165,186,225, 38, 38,167, 31,156, 63,241,166, 18, 64,194, 83, 45,174,199, 60, 61,186,167,176,112, 74,249, - 62, 79, 46,210, 44, 0,147, 28, 58, 49, 45,173, 90,228,116, 51, 87, 2,105,143,117,200, 74,215, 31,122, 89, 99,177,202, 81,171, -213,247,189,188,188, 54,111,216,176, 97,124,187,118,237, 76, 39, 76,152, 80, 62,240,253,183,250, 58,143, 38,105,158,244,176, 21, -127,127,225,231,213,159,243,220,253,113,116,249, 76, 67,244,205, 59, 3,142,166,105,141,238,179, 22,139,197,161,227,199,143, 23, - 22, 22, 22, 86, 27,174,114,115,115,145,151,151,135,220,220, 92, 92,191,126, 29,239,188,243,142,248,238,221,187,161, 0, 78, 85, -231,165,148,178, 0,206,185,186,186, 94,249,254,251,239,187,110,217,178,165,219, 7, 31,124, 32, 10, 13, 13,197,237,219,183,113, -229,202, 21,109, 73, 73,201, 49,137, 68,114, 60, 46, 46,206,168,193, 77, 47,200,169, 7,176,216,198,198,102,237,174, 93,187, 22, -157, 60,121,114,196,168, 81,163, 76,244,122, 61,105,160,115,146, 66,161,152,125,240,224,193, 77, 71,143, 30, 29, 48, 98,196, 8, -102,226,196,137, 88,183,110, 29,118,239,222,205, 26, 12,134,189, 2,129, 96,100,122,122,122,173, 19, 80,158, 91, 7,171,134,117, -174,106,123,222, 8, 94,196, 85,104,131,157,149, 43, 97,237,218,181,179,171, 56, 75,179,226,215,186,208,166, 77,155,231,214,185, - 42, 31,208, 94,254,224,241,120,224,243,249,117,234, 34,244,242,242,130, 64, 32, 96,125,124,124,126, 6,240, 51,240,252, 45,115, - 4, 2,193,179, 69, 77,141, 65, 83,100,192,172, 37,223, 95, 97,217,210,241, 88, 6, 67,233,108,193,210,153,215, 44, 88, 22, 48, - 24, 40, 88,202, 66,167,231, 42, 88, 28, 28,198, 82, 83,192,154,153, 31,177, 70, 7,192,154, 16, 50, 35, 34, 34,162,198,123, 90, - 25, 3,143,199,204, 72,219,247,254, 90, 10,100,241, 8,140, 26, 24, 93, 27, 6,131, 97, 86, 65,228, 90,150, 82,106, 65, 8,153, -126,237,218,181, 6,181,147,234,245, 31,127,245,227,185,175, 21,230,162,110, 25,217,197, 7, 65, 72,149,171,182,235, 65, 63,249, -101,217,227,101,150, 10,126,207,172,116,253, 33,150, 65,173,171,187,255, 29,220,186,117, 43,204,205,205,141,247,191,255,253,111, -180, 86,171,125,110,224,123,125, 57,156, 86,252, 69, 15, 91, 49,207,185,137,227,132,132,132, 39,253,141,237, 22,172,128, 72,165, - 82,221, 42, 44, 44, 4, 33, 4,197,197,197,207, 5,170,138, 1,171,164,164, 4,105,105,105,112,113,113, 65,133, 53,147,106,164, - 44,148, 28,176,177,177, 57,187,102,205,154,222,235,214,173, 11, 98, 89, 54,188,164,164,228, 64, 70, 70, 70,126,221,207,248,197, - 56,203, 94,247,169, 76, 38, 91,186,110,221,186, 21, 18,137,196, 47, 45, 45,237, 76, 67,156,101,225,233, 93,107,107,107,229,230, -205,155,119,110,216,176,161, 61,159,207,191, 68, 8, 25,152,157,157, 93,159,155, 61,223,107,224,243,181,177,187,129,175,127, 33, -206,186, 44,191, 96, 12,122,189, 62,127,198,140, 25,105,149,239, 57, 88,113,205,171,138, 95,181, 90,109,173,235,115,232,245,122, -246,203, 47,191,172,241, 34,174, 98,208, 42, 42, 42,170,181, 75,151,178, 52, 99,220,132,186,221, 91,144,178, 52,163, 78, 47,224, -224,248,151, 82,109,192,138,136,136, 72, 4,240,126, 99, 30,172, 71,143, 30, 39, 0,120, 52,166,243,250,245,235, 9, 0, 70, 52, -150,111, 91,113,113, 28,128, 62, 99, 9, 17,252, 66,171,175, 72,149, 13,104,127,251,101,206, 34,172,142,170, 6,190, 55,148,242, -129,239,135, 43, 12,124, 55, 22,189, 94,127, 68, 44, 22,147,220,220, 92,148,148,148, 32, 47, 47,239, 89,184,170, 24,178,244,122, - 61, 8, 33,200,203,203,131,169,169, 41,116,186,186,173,106, 88, 22, 82,118,132,134,134,238, 58,125,250,116,157,111, 60,254,119, - 57, 11, 11, 11, 83, 0, 12, 11, 13, 13,229, 55,150, 51, 51, 51, 51, 9, 64,144,171,171,171,200,216, 42, 88, 85,212,118, 35,103, - 99,111,244, 92, 3,255,107,224,235,171, 98,107,237,187,252,189,196,199,199,123, 54,182,243,241,227,199,141,246,255,185,156,248, - 75, 91,184, 59, 55,115,112,188, 32,254,182,245,156,230,206,157,251,143, 27, 32, 91, 19,235,107, 8, 87, 21,249,167,133,171,114, - 26, 51, 92,149, 83,113,224,123, 93, 80,171,213,167, 0,192,214,182,116,236,176,147,147,147,177,175,171,207,225,208, 88,161,229, - 85,116, 54, 36, 92,253, 29, 80, 74,235, 85,169,171,197, 89,235, 44, 86, 14, 14, 14,142,191, 27,227, 86,183,227,224,224,224,224, -224,224,224,224, 48, 26, 2,160,117, 85, 79,212,101,118, 0, 33,164, 74, 71, 77,212,230,231,156,156,147,115,114, 78,206,201, 57, - 57,231,235,231,172,205, 93,105, 70,238, 71, 21, 87,114,127,149, 32,245,153, 25, 99,180,252, 21,153, 26,202, 57, 57, 39,231,228, -156,156,147,115,114,206,151,235,172,230, 56,175,108,192,226,186, 8, 57, 56, 56, 56, 56, 56, 56, 56, 26,153,151,126,211, 98,142, - 87, 3, 71, 71,199, 37,129,129,129, 31, 95,189,122,117,229,227,199,143, 23,212,211,161,180,182,182, 94, 12, 32,136, 82, 42,230, -241,120,119, 50, 50, 50,194, 18, 19, 19,207,213,183, 93, 74,165,210, 73,161, 80, 44, 6,208,158,101, 89,161, 64, 32,184,149,154, -154,186, 72,173, 86, 95,170,175, 83,161, 80,152, 56, 56, 56,248, 81, 74,109, 41,165,140, 64, 32,200, 82,171,213,215,211,210,210, - 26,188,110, 27, 7, 7, 7, 7,199,191,131, 26, 3,214,252, 9,196, 1, 37,224,207, 93, 79, 19, 1,128, 16, 98, 6,192, 15,165, - 75, 45,220, 5,112,141, 82,154,219,144, 6,188, 42,206,127, 58,132, 16,198,194,194,226, 45,153, 76,246,105,126,126,190,143,153, -153,217,173,178,219,227,236, 47, 91, 60,179,222,216,218,218,218, 14, 26, 52,104,250,154, 53,107, 48,122,244,232,217, 54, 54, 54, -171,234,186,110,147,167,167,103, 63,149, 74,181,126,225,194, 69,138,128,128, 0, 34,145, 72, 16, 23, 23,167,154, 53,107,102,187, -118,237,218,237,140,140,140,172,241,182, 56, 85,225,229,229, 53,208,217,217,121,109, 88, 88,152,194,207,207,143,240,249,124, 68, - 71, 71, 59,206,159, 63, 63,192,199,199,103,115, 84, 84,212,148,218, 45,207,211,186,117,107, 23, 87, 87,215,160, 69,139, 22, 73, - 2, 2, 2, 32, 22,139,113,231,206, 29,147,153, 51,103, 42,218,181,107,119, 63, 50, 50,242,114, 93,124,190, 99, 35, 5, 66, 89, - 9, 31, 0, 74, 10,133,250,136,245,237,116,198,110,171,107,219, 57, 56, 56, 56, 56,254, 57, 84, 27,176, 22,140, 39, 11, 24, 96, - 38, 24,144, 73, 67,201,111,235,126, 99,174,116,237,218,181,229, 7, 31,124, 64,202,110, 29,225,185, 99,199,142,119,121, 60, 94, - 12,203,178,151, 1, 92,167,148,150, 84,231,171, 72,217, 2,146,109, 25,134, 9,252, 39, 59, 95, 5,228,114,185,155, 66,161,152, - 98,109,109,221,211,207,207, 47,119,220,184,113,241,151, 46, 93,122,232,239,239, 95,180, 97,195,134, 48,157, 78,247, 93,139, 22, - 45,142,229,229,229,173,168,239,210, 13, 2,129,192,131, 16, 2,181, 90, 13,129, 64, 32, 16,137, 68,158, 0,140, 14, 26, 78, 78, - 78, 14, 74,165,242,127,191,253,126,196, 54,183,152,193,253,116, 22, 64, 33, 12,140, 13, 22, 46, 95,103,189, 98,241,236,161, 45, - 90,180, 56, 31, 27, 27,251,171,177, 78,165, 82,233,228,236,236,188,246,228,201,147,182, 98,177, 24, 44,203, 34, 47, 47, 15,182, -182,182, 88,178,100,137,213,194,133, 11, 63,112,113,113, 57,251,232,209,163,125,198, 58, 21, 10,133,137,171,171,107,208,169, 83, -167, 36, 34,145,136,232,116, 58, 82, 92, 92, 12,123,123,123,250,245,215, 95,139,103,205,154,229,238,226,226,146,242,232,209,163, -199,198,248,124,127,136, 20,228,102,156,234, 64, 19, 53,179, 1,128, 72,164,139, 66,231, 91, 93,201,205, 56, 21, 80,219, 54,223, - 31,112, 49,226, 35, 46,100,113,252,189, 40,149,202, 96, 23, 23,151,223, 31, 63,126, 28,206,227,241, 6,199,199,199,215,237, 46, -233, 85, 64, 8,113, 4,224, 2,192, 18,165, 19,171,158, 2,136,167,180,244,194,189, 62,216,184,118,233, 11,177,236,125, 80,218, -150, 1, 0,134,185,206,150, 20,108,204,184,119,202,232,255,239, 85, 58, 37, 38,163,193,178,109, 25, 80, 22, 12,239, 6,213, 23, -252,152,126,247, 84, 93, 23, 86,230,224, 0, 80, 77,192,154,255, 33,177,100, 4,152, 54, 99,220, 71, 12,159,199, 35, 97,235,127, - 24,114, 53,124, 31,117,104,210,246,217, 45, 55, 66, 66, 66, 16, 18, 18, 66,150, 47, 95,238,113,242,228, 73,143,109,219,182,233, - 8, 33, 17,148,210, 77,213, 29,108,201, 68,217, 99,189, 78,227,180,224, 99,105, 81,211,246,223,109, 11, 10, 10, 97,197, 98, 49, - 26,226, 4,128,255, 14, 20, 28, 27, 61,208,133,132,246,153,147,208, 88,206, 87, 1,185, 92,126, 70, 46,151,187,142, 29, 59,246, -254,248,241,227,207,154,152,152, 80, 0, 72, 75, 75, 51,233,221,187,119,214,128, 1, 3, 50, 11, 11, 11,241,253,247,223, 59,173, - 93,187,246,152,153,153,153, 58, 55, 55, 55,192, 88, 63, 33,132,239,224,224,176,180, 91,183,110,147,135, 13, 27, 6,185, 92,142, - 81,163, 70,161,184,184, 56, 92,169, 84, 46, 79, 78, 78,158, 77, 41, 53,212,230,177,180,180,156, 59,127,254,124,219,124, 45, 15, -179,183,196,225,105,126,105,110,144,137, 24,252,247, 77, 49,222,123,111,164,121, 84, 84,212,114, 0, 70, 7, 44,133, 66,177, 56, - 44, 44, 76, 81,254,187,206,207,207, 71,126,126, 62,242,242,242,144,159,159,143, 97,195,134,153,221,191,127,127, 53, 0,163,223, -112, 29, 28, 28,252, 22, 45, 90, 36, 17,137, 68,216,183,111, 95,155,162,162, 34,190, 78,167, 3,165, 84,223,178,101,203,235, 35, - 71,142, 20,198,198,198,118, 0, 96, 84,192,114, 72,129,132,176,161,121, 0, 0, 32, 0, 73, 68, 65, 84, 32, 71,163,249,246,155, -101,159, 43, 0,224,147,105, 95,125, 11,104, 2,169, 17,219, 28, 82,224, 15,128, 11, 88, 53, 64, 8,225, 1,120, 91, 32, 16,188, -227,234,234,234,119,255,254,253, 40,189, 94,255,127, 0,254,143, 26,185,142, 93, 13,238, 55,149, 74,229,226,164,164,164,111, 40, -165,191, 52, 78,139,255,249, 52,111,222,124,207,182,109,219,172, 15, 30, 60,216,111,225,194,133,131, 0,108,174,175,139, 16, 34, - 0,208, 1,165,161,234, 46, 74,131, 21, 80, 26,180, 90, 18, 66,154, 3,184, 80,151, 11, 94, 27,247, 96, 83,240,205,118,116,120, -163, 71,199,129,239, 14,144, 43,172,204, 81, 80,108, 64,108,124, 74,147,163, 7,247,116,182,111,221, 59, 92, 95,146, 51, 36,227, -222, 5,163, 43,236,229,206, 46, 61,251,117,124,227,205,174,114,115,115, 11,100,230,233,240, 32,254,137,243,153, 99,123, 67,236, - 90,247, 62, 11,162, 27,145, 26,125,212,248, 27,166,115,112,192,200, 65,238,132, 16,152,152,154, 84,249,156,185,185, 57, 66, 67, - 67, 17, 22, 22, 38, 0,208,190,226,115,127,185,169,168, 65,235, 48,251,191, 19, 32,226, 83,113,239,158,221,137,153,153, 89,131, -157, 0, 96,103,165,239, 26,232,174,233,156,122,125,226,240,235,103, 22,183,214, 22,101,255,229, 78,167, 50,153, 12,110,110,110, -152, 53,107,150, 81,206,134,242,119, 56, 41,165, 74, 79, 79,207,188, 85,171, 86,185,207,153, 51,199,178,168,168,200, 4,128,163, -167, 79,176,146, 97, 24, 39,173, 86, 43,159, 55,111,158,205,178,101,203,220, 21, 10, 69, 54,165, 84, 81,151,118, 58, 56, 56,172, - 10, 11, 11,155,178,113,227, 70,226,239,239, 15,185, 92,142, 14, 29, 58, 96,203,150, 45,204,220,185,115,167, 59, 56, 56, 44, 53, -166,157, 0, 66, 2, 2, 2, 8, 11, 32, 43, 95,143, 83, 75,124,113,225, 43,127, 20,106, 89,228,228,229, 67,163,209, 64, 34,145, - 72,109,108,108, 76,141, 61,119, 0,237,253,252,252, 8,128,103,161, 42, 47,175,244,145,159, 95, 0,173,182, 4, 12,195,152, 53, -109,218, 84, 92,133,174, 74, 39,165,212, 54, 32,160, 52,127, 22, 21, 21,241,251,245,235,135, 62,125,250, 32, 47, 47,143,159,155, -155, 11,173, 86, 11,134, 97,132,101, 31,236,181, 58,181, 50, 1, 97, 41,107,103, 34,147,218,152,200,164, 54, 44,101,237, 0,192, -152,109, 90,153,128, 84,229,108, 44,140,152,154,173,224,241,120, 63,187,186,186,222,225,241,120,155, 9, 33,246, 13,113, 18, 66, -252, 9, 33, 97, 50,153,236,184,167,167,103,162,137,137,201, 73, 66,200, 82, 66, 72,135,250, 56, 9, 33, 34,153, 76,118, 50, 44, - 44,108,103, 84, 84,212,160, 19, 39, 78,184, 68, 71, 71,191,187,124,249,242, 29,166,166,166,103, 9, 33,210,250,180,179, 28, 23, - 23,151, 13,151, 47, 95,246, 15, 10, 10,250,137, 16, 82,237,223, 80, 93,156,132, 16, 30, 33,196,135, 24,121,227,193,191,251,247, -238,232,232,232,234,227,227, 99,195,227,241, 16, 18, 18, 2, 74,105, 72, 3,157, 65, 0, 82, 40,165,103, 40,165,233,148, 82, 67, -217, 35,131, 82,122, 14,165, 23, 42, 85, 30,163, 90, 39,223,108,199,167,159,125,209, 99,234,132, 15,229,145, 9, 6,252,120, 52, - 25,191,157, 79,135, 58, 79,140,110,253, 71,155,119,238, 53,172, 59, 95,104, 94,229,141,237,107,114, 78,159, 62,179,199,135,163, -134,203,111, 38, 49,216,121, 33, 3,231,239,230,162,144, 88, 34,180,255, 71,150,158, 1, 61,123, 19, 8, 55,213,241,220,235,205, -191,217,249,186, 81,101, 5,107,238, 79, 52,107,193,120,178, 44,236,251, 31,102, 51,132, 80,199, 22,221,111,187,184,181, 47, 96, - 89, 22, 26,141, 6, 37, 37, 37, 16, 8, 4,208,104, 52, 72, 72, 72,192,229,203,151, 97,110,110, 94,167, 3,103,231,228, 64,229, -232, 2,153, 76,214, 40,206, 49,255, 25,192,127,156,156,204, 15,143, 60,229,251,235,154,109,190, 78,205,187,221,109, 27,250,197, - 77, 83,243, 38,154,235,215,175,227,226,197,139,200,202,202, 66,249, 7,232,235, 0, 33, 68,183, 98,197,138,200,164,164, 36,156, - 59,119,206,103,254,234,173, 77,111,230, 54,231,167,231, 83,129,194, 52,213,217, 67,122,207,144,245,244,233,195, 41, 83,166,156, -116,112,112,208, 78,152, 48,161,179, 49, 94, 71, 71, 71, 9, 33,196,183, 87,175, 94,255, 29, 57,114, 36,226,227,227, 49,117,234, - 84,237,245,235,215,179,125,125,125, 45, 87,172, 88, 33,252,232,163,143, 16, 30, 30, 62,197,209,209,113, 23,128, 91, 79,158, 60, -169,233, 94,106, 34,137, 68, 2,228,148, 94,168,150,232, 41,128,210, 97, 97,249,249,249, 96,104, 54,132, 66, 33,195, 48,140, 2, -128, 81, 87,158, 44,203, 10, 69, 34, 17, 10, 10, 10,144,159,159, 15,117,122, 62, 18, 82, 11,144, 87, 80, 12,141, 70,135,226, 34, - 10,177,220,142,209,165,167, 91, 3, 48,106, 73,120, 74, 41, 83,222,221,168,213,106,161,209,104,160,213,106,161,213,106,159,221, -206,135,199,227,201, 85, 42,149, 25,128,172,218,124, 60,145, 84,207, 99,132, 97, 51, 23,125, 59, 15, 0,120,140, 48,204, 20, 69, -172, 49,219,120, 34,105,163,175,242,110, 44,132, 16,177, 66,161, 56,181,115,231, 78, 79, 55, 55, 55, 60,122,244,200, 99,224,192, -129,129,132, 16, 31, 74,105,157,174,226, 9, 33, 50,134, 97,150,189,255,254,251, 31, 15, 29, 58,148,180,104,209, 2,124, 62, 31, -122,189,222, 49, 46, 46,174,203,111,191,253, 54,141,207,231,255,104, 48, 24,166, 24,187,202, 59, 33,132, 17,137, 68,191,174, 95, -191,190, 83, 96, 96, 32, 54,111,222,140, 43, 87,174,176,254,254,254,204,123,239,189, 7,103,103,231,246,239,189,247,222,110, 66, - 72, 31, 99, 42,172, 85,248,157,135, 15, 31,238,196,227,241, 16, 20, 20, 36, 12, 15, 15,111, 7, 32,188,174,158, 74, 78, 83, 71, - 71,199, 51,161,161,161, 62,199,143, 31,143, 36,132,132,214,101, 85,123,165, 82,217,223,206,206,110,185, 92, 46,183, 52,246, 53, -249,249,249,133,169,169,169, 83,213,106,181, 81,247, 35,165,148, 6,121,123,123, 67,175,215,195,220,220, 28,246,246,246, 29, 85, - 42,213, 20,115,115,243,183,115,115,115, 39, 63,121,242,228,138,177,199, 38,132,168, 0, 48,148,210,251,101,255,110, 10,160,252, - 54, 75,247, 40,165,143, 40,165, 15, 9, 33, 74, 66,136,147, 49,221,133, 54,174, 93,250, 6,117,237,213, 49, 36,176, 53,179,100, - 87, 60, 12, 44, 11, 62, 12,224,243, 88,100, 24, 4, 32,132,192,217,221,159,103,119,243, 90,123, 27,247,110,125, 51,238, 29,171, -181,122,109,227,218,165,111,143,126, 3, 66, 90,186,183, 96, 86,254,254, 24,217,234,155,134,212,187, 39, 51, 8,195,160, 89,219, -110, 54,206,238, 62, 60, 87,159, 55, 5,169,241, 55,187, 88,185,117,238,250,244,254,153,227,198,254, 12, 56, 56,158, 5, 44, 66, - 8,165,148, 62,187,178,154,243, 61,157, 99, 99, 73,154,222,190,121,131, 73, 76,209, 22,220,184,113, 3,214,214,214,176,181,181, -133,153,153, 25, 98, 98, 98,112,252,248,113,220,187,119, 15,148, 82,248,248,248,212,233,192,169, 41, 41,200,124,154,215,168,206, - 38, 14, 14,104,226,224,192,207,200,202,198,197, 27,209,158,251,126,236,218, 50,149, 25,187, 81,163,209, 60,219, 71,167,123,253, -122, 93,108,109,109, 13,159,124, 50, 33,115,204,183, 15,155, 15,121, 67,197,235,223,193, 30,191,135, 39,243,118,156,230,209,217, - 31,180,201,136,139,139, 53,250,164,157,157,157, 23,119,233,210,229,115, 62,159, 47,248,232,163,143, 0, 0, 19, 39, 78, 44,142, -142,142,110,149,152,152,248,208,193,193,161,229,228,201,147,163,119,239,222, 45,248,240,195, 15, 73, 81, 81,209, 21,129, 64, 64, -149, 74,229,130,164,164,164,121, 85, 57,121, 60, 94,212,237,219,183,155,234, 37, 74,216,200, 25,116,159, 29, 9, 0, 48, 21, 83, -100,164,170,113, 43,238, 42, 20, 10,133,185,141,141,205,221,224,224,224,226,212,212,212, 79, 31, 60,120,176,169,166,118, 10, 4, -130, 91,209,209,209,142,118,118,118,200,207,207, 71, 98, 90, 1,126,190, 72, 80, 88, 44, 5, 32, 5, 15,114,200,109,156,228,205, -104,225,245,214,173, 91,151,104,181,218,233,177,177,177, 53,118,245, 8, 4,130,172, 59,119,238,152,168, 84, 42,240,120,188,146, -223,126,251, 77,168,213,106, 65, 41,213, 31, 60,120,112,112,118,118,118, 80,243,230,205, 25,103,103,231, 21,193,193,193,154,228, -228,228, 49,143, 30, 61,170,246, 70,195,135, 39,186,150,116,158,119,250,187,236, 71,137,191, 1,128, 42,208,243,233,254,121,237, -180,157,231,229,215,186,237,240, 68,215, 18, 76,120,113,107,212,213,194,251, 51,103,206,244,180,178,178,194,184,113,227, 48,127, -254,124,204,153, 51,199,109,220,184,113, 31, 1, 88,101,172,132, 16, 34,181,183,183,191,186,102,205, 26,143,224,224, 96, 28, 60, -120, 16,219,183,111,199,195,135, 15,245, 46, 46, 46,252,192,192, 64,204,157, 59, 23,221,187,119, 31, 51, 97,194,132,206,132,144, -118, 70,134,142,209,115,231,206,237,223,177, 99, 71,140, 26, 53,170,248,244,233,211,131, 0, 28, 61,118,236,216, 27,103,206,156, -217,181,117,235, 86,105, 88, 88, 88,143,201,147, 39,143, 7,240, 77, 61,206,127, 64,167, 78,157, 0, 0, 29, 59,118,196,242,229, -203,187,163, 1, 1,139, 16, 34,178,182,182, 62,176,121,243,102, 31,119,119,119,140, 24, 49,162,221,160, 65,131, 14, 16, 66,186, - 81, 74,141,186,181,145,131,131,195,178,245,235,215,187, 74,165,213, 22,230,254,130, 86,171,181, 26, 59,118,236, 82, 0, 70, 7, -172,214,173, 91,227,244,233,211,232,218,181, 43,188,188,188, 92,199,142, 29,187,162,123,247,238,248,236,179,207,206,219,219,219, - 43, 83, 82, 82,140,189,209,179, 51,128, 24, 0, 32,132, 52, 1,224, 6,224, 66,217,115,129,132, 16, 80, 74, 31,161,244,230,225, - 45, 1,212, 62, 30, 75, 98,242,126,191, 62,125,228,255, 23,158, 6, 3,203,194, 67, 37,129,103, 19, 51,196,167, 21, 33, 94,157, - 9, 1, 41,129, 92, 42,134,119, 80,111,203,167,169,241,239,195,152,225, 1, 98,217,251, 3,250,245, 49,221,115, 49, 13,217,234, - 91, 52,225,234,111, 39,117, 69, 5, 99, 0,224,246,217, 95,254,103,103, 41,233,214,162,173, 47,175, 48,164,191,229,153,223,191, -127, 31, 0, 23,176, 94, 48,149,179,200,171, 76,141,179, 8, 51,179,161,177,182,247, 68, 98, 74, 84,233,191, 51, 51,145,153,153, -137,102,205,154, 97,237,218,181,207,237, 91, 84, 84,235,205,224,171, 62,198, 11,112,218, 88, 90,160, 95,151,206,188,155, 49,223, -243, 52,172,230,185,231,234,235,252,167, 66, 41,165,132, 16,146,144,161,179,200,200,213, 9, 7,119,113,162, 2, 30,131, 33, 93, -154,144,111,246, 37, 8, 51, 52, 50, 11, 30,143,199, 24,115, 37,239,235,235, 43,232,210,165,203,231, 27, 54,108, 16, 36, 39, 39, -195,194,194, 2, 58,157, 14, 81, 81, 81, 73, 73, 73, 73, 15, 1, 32, 57, 57, 57,198,209,209, 49,213, 96, 48, 56,122,120,120, 96, -236,216,177,104,217,178, 37,153, 50,101,202, 52, 66,200,130,170,102, 44,166,166,166,134,205,154, 53,171,211,226,229,107,173,135, - 7, 18, 20, 20,106,145,159,159,143,248,216, 91,160,249, 90,172, 92,249, 53,164, 82, 41, 1, 32, 76, 79, 79, 23,206,155, 55,247, - 39, 63, 63,191, 62,215,174, 93,123,167,186,182,166,166,166, 46,154, 59,119,110,192,202,149, 43,173,242,243,243,161, 41, 42, 66, -158, 70,132,203, 95,151, 86, 40, 3, 39, 95,193, 55, 95,173, 96, 90, 59,155, 88,231,231,231,227,243,207, 63, 95,227,227,227,211, - 62, 42, 42,234,227,234,156,106,181,250,250,204,153, 51, 21,235,214,173, 19,183,108,217, 50, 58, 55, 55, 23, 89, 89, 89,204,238, -221,187, 23, 58, 59, 59, 91,173, 89,179,150,200,100, 50, 0, 64, 98, 98,162,112,246,236, 89,191,122,123,123,111,141,142,142, 30, - 85,221,239, 6, 64, 49, 33, 72, 86, 42,155,185, 22, 94,100,230, 41,149, 69,231, 79,207, 85,111, 33, 4,201,165,251,128, 58,172, -119, 24,254,120,179,184, 99,113, 49,187, 58, 37, 37,225, 30,165,160,152,251,210,194, 21,108,108,108, 38,244,239,223, 31, 75,151, - 46,197,190,125,251, 38, 91, 89, 89,125, 61,127,254,124, 40,149,202, 79, 8, 33,171,169,241,171, 19,127,181,106,213, 42, 15, 15, - 15, 15,140, 28, 57, 82,123,252,248,241,153, 0,126, 7,144,112,238,220,185, 38,155, 54,109,234,251,235,175,191, 46, 93,179,102, -141,100,221,186,117,174,239,190,251,238,106, 0, 31,212, 38,181,179,179,251,108,232,208,161, 88,177, 98, 5, 78,159, 62,253, 46, -165,244, 96,217, 83,135, 8, 33,125,195,194,194, 78,204,158, 61, 27,171, 86,173,154,132, 58, 6, 44, 66,136,169,167,167,231,151, - 61,122,244,192,185,115,231, 16, 18, 18,130, 14, 29, 58, 76, 38,132,172,165,148, 26, 27, 46, 42,250, 24, 83, 83,211, 95, 55,110, -220, 24,210,180,105, 83, 44, 90,180, 8,159,127,254, 57, 54,108,216, 16, 50, 98,196,136, 95, 9, 33,239, 24, 51,203,215,212,212, -212, 84, 42,149, 98,233,210,165,244,241,227,199,181, 86, 79, 29, 28, 28, 44,191,252,242, 75, 98,110, 68, 55, 0, 33,132,167, 84, - 42,205,237,237,237, 59,217,219,219, 99,205,154, 53,176,181,181,197,228,201,147, 97,109,109,141,130,130, 2,188,243,206, 59,130, - 75,151, 46, 13, 1,176,182, 54, 95, 25,214, 0,202, 43, 94,158, 40, 29,107,149, 87,118,188, 75, 0, 58, 2,120,132,210,113, 89, - 86,198, 8, 25, 74, 91, 91, 90,152, 33, 41, 58, 21,124,232,225,209, 68,142,107,113, 5, 40, 49, 80,200, 76, 76, 81,144,151,141, -182,174, 10,228, 22, 58, 2, 96,141, 90,125, 92,200, 99,124, 69, 98, 41,210,114,115,144,114,231, 68,102,137,161,120,108,246,195, -243,137, 0, 96,213,188,211,216, 91,151, 15, 95,123,167,103,136,109,122, 86, 19, 80,202,190, 62,221, 31, 28,127, 11,181,142,193, - 98,217,191,254,223,175, 88, 17, 42,167,164,164, 97, 19,243, 94,132,179, 42, 94,132,243, 31, 0, 85, 89,242,115, 76, 36,140,254, -216,181, 52,131, 78,111,192,145,107, 41, 6,153,152,232, 45,197,218, 92,150,101,141,250, 64,140,136,136,208,157, 59,119,110,243, -140, 25, 51,176,106,213, 42, 60,120,240, 0, 2,129, 0,238,238,238,118, 78, 78, 78, 14, 64,233,236, 61, 47, 47, 47, 27, 30,143, -135,184,184, 56,108,223,190, 29,243,230,205,163, 17, 17, 17, 27,170,251,160, 72, 74, 74,138, 74, 77, 77, 93,191,100,193,204,108, - 65,113, 18,100,134,116, 24,178, 31, 64, 96,200,193,132,201, 51,240, 40,195,128,168, 71,121,136,122,148,135, 20,141, 4, 95, 46, - 90,201,115,115,115,235,235,232,232,216,189,186,182,170,213,234, 75,201,201,201, 91,230,204,153,147,147,145,145,241,236,239,167, - 68,207,162, 68,255,124, 51, 76, 77, 77,177,100,201, 18, 11, 7, 7,135,193, 42,149, 42,180, 58,103, 90, 90, 90, 90, 82, 82, 82, -220,140, 25, 51, 74,210,211,211,145,155,155,139,195,135, 15,191,219,172, 89, 51,171, 41, 51, 22,144, 71, 25,244, 89, 59,115, 88, - 11,172, 88,251, 35,175,121,243,230,195,148, 74,101,141,227,136,148, 74,149,171,167,103,243,157,151, 46, 93, 26,229,234,234,250, - 49, 80, 26,172, 40, 5, 5, 0, 23, 23,151,113, 17, 17, 17,163,125,124, 90,237,180,179,179,111, 89,147,235, 69, 67, 8,233, 50, -120,240,224,150, 44,203, 98,231,206,157,209,148,210, 85,123,246,236,185, 90, 92, 92,140, 33, 67,134,184, 0,232, 97,164,199,127, -216,176, 97, 31,135,132,132, 96,210,164, 73, 37,199,143, 31,247,165,148,126, 77, 41,141,167,165, 36, 80, 74,215,158, 57,115,166, -237,132, 9, 19,138, 3, 2, 2, 48,106,212,168,209,132,144, 26,199,253, 16, 66,130,134, 14, 29,234,193,178, 44,118,236,216,113, -163, 66,184, 2, 0, 80, 74, 79,238,218,181,235,146, 86,171,197,240,225,195,155, 17, 66,222,168,195,185, 11,197, 98,241,206,133, - 11, 23, 90,168,213,106,188,247,222,123,197, 49, 49, 49,152, 55,111,158,212,220,220,252, 32, 33,164,218, 49,130,213, 33, 22,139, -127,248,254,251,239,251,123,123,123, 99,252,248,241,218,239,190,251,110,226,199, 31,127,172,245,245,245,197,183,223,126,219, 95, - 36, 18,213,105,133,234,212,212,212,236,211,167, 79, 91,215,246, 72, 73, 73, 73, 53,198,215,164, 73, 19, 11, 47, 47,175,104,127, -127,255,140, 54,109,218, 52, 7,128, 91,183,110,165,239,220,185,147, 90, 91, 91,227,240,225,195,248,225,135, 31, 16, 28, 28, 12, -185, 92, 62,164, 14, 77,165,101, 15, 84,248, 90,249,249,202,251,213, 12, 33, 52,167, 80, 15, 62,195, 64,192,163, 72, 72, 45, 66, -137,129, 66, 40, 96, 32,224, 1,124,134,194, 90, 46,128, 64,192, 3, 64,140,114, 50,132, 32,171, 64, 7, 62,143, 64, 32, 18, 18, - 70,111,120, 86, 34,100,248, 6,169, 88, 34, 38,182,230, 66, 8,249, 4,198,141,156,227,224,248,147, 90, 23, 26, 53, 24,254, 90, -248,168,170, 10,164,213, 26, 85,233,174,150, 23,225,172,138, 23,225,124,153,228,230,230,242,207,156, 57, 99, 46, 16, 8, 76,250, -120, 7,103, 46,251, 45,214,102,254,182,123, 16,241, 64,250,182, 97,146, 79,159, 58, 78,178,178,178, 44,221,220,220,106,189,234, - 5,128, 7, 15, 30,140,113,112,112, 88,196, 48, 76,128,193, 96,248,109,213,170, 85,248,230,155,111,100,227,198,141,139, 81, 42, -149,234, 22, 45, 90, 56,173, 94,189, 90, 12, 0, 91,182,108,193,145, 35, 71, 6, 8, 4,130, 43, 9, 9, 9, 41, 53,121,175, 95, -191, 62,219,217,217, 57,252,225,195,135,107, 9, 33, 22,114,185,220,114,207,158, 61, 36, 57, 91,139,217, 91, 30, 60,155, 89,104, - 34,230, 97,198,219, 10,252,231, 63, 3,249,247,239,223,255, 10,192,145,234,156,145,145,145,147, 93, 92, 92,206,196,198,198,174, - 18, 90,187, 91, 75, 90,127, 36,127, 99, 70,105,247,163,131,149, 24, 76,217, 27, 98, 78, 78, 14, 50, 50, 50, 48,122,244,104,139, -197,139, 23, 79, 3,112,186, 58,103, 84, 84,212, 37, 23, 23,151,228,216,216,216,246,148, 82,145,185,185,121,240,170, 85,171, 72, -194, 83, 45,166,111,138, 67, 94, 81,105, 59,229, 18, 1, 22, 12,117,196,168, 81,163,248,143, 30, 61, 90,134,210, 43,242,191,160, - 82,169,220, 60, 61, 61,119,110,219,182,205,115,245,234,213, 79,239,223,191, 95,160, 84, 42,231, 87,218,173,120,201,146, 37,153, - 91,182,108,113,127,239,189,247,118,218,219,219, 15,170,239,146, 26, 13,197,204,204,108,233,216,177, 99,241,235,175,191, 34, 43, - 43,107, 53, 0,228,230,230,174,218,182,109,219,142, 49, 99,198, 96,203,150, 45, 75, 9, 33,135,141,168, 98,245, 28, 50,100, 8, - 14, 29, 58,132, 19, 39, 78,124, 73, 41,189, 93,213, 78,148,210, 88, 66,200,180,189,123,247,174, 25, 58,116, 40,126,254,249,231, - 30, 0,106, 90,120,182, 91,247,238,221,113,240,224, 65,100,102,102,126, 91,213, 14,217,217,217,223,253,241,199, 31,237,187,119, -239,142, 37, 75,150,116, 3,112,178,182,243, 38,132,120,152,155,155,111, 92,179,102,141,191,183,183, 55,134, 13, 27, 86, 84, 82, - 82,210,227,243,207, 63,223,183,125,251,118,249,230,205,155,253, 62,250,232,163,203,132,144, 15, 41,165, 70, 45, 98,203,227,241, -194,214,173, 91,247, 65,104,104, 40, 38, 79,158,172, 63,114,228, 72, 63, 74,233, 81, 66, 72,220, 23, 95,124,113, 96,229,202,149, -188, 21, 43, 86,124,192,227,241,210, 13, 6,195, 76, 99,156,141, 13, 33,100,197,202,149, 43, 61, 91,181,106,133,162,162, 34, 60, -120,240, 0,169,169,169,219, 14, 31, 62,124,244,230,205,155,203, 83, 82, 82,118,219,217,217,141,153, 60,121,178,163,191,191,191, -191,163,163,163,229,147, 39, 79,140,121, 47, 41,175, 76,165, 1,184, 3,160,125, 89,229, 10, 0, 2, 81,218, 53, 8,148,206, 40, - 52,234,189, 9,132, 68,199, 62, 82, 55,179, 52, 53, 67, 22, 43,194, 35,117, 6,164, 38, 38, 96, 40, 3,189, 38, 11,110,206,182, - 96, 41,144,155,161, 6,195,144,104, 99,148, 58, 3, 27, 17,159,152,170,178, 48,145,192,205,183,151,245,141,147, 63,255, 98,222, -188,227, 71,124, 30,225, 9,197,102,235,135, 13, 29,105,163, 51, 80,228,103, 37,131,240, 24,163,199,160,113,112, 0, 70, 4, 44, -150,101, 33,149, 74,159,171, 48, 85,174, 2, 73,165, 82, 20, 23,215,109,185, 20,169, 84,138,146, 10,195,120, 27,195,105,204, 49, - 27,219,249, 50,209,233,116,242,143, 63,254,184, 99,251,246,237, 19,123,246,236, 25,231,225,161,136,239, 29, 36,177, 89,183, 97, -175, 79,207,206, 94, 81,185, 79, 83,211, 19,196,226,162,172,172, 44,235, 45, 91,182,180,211,233,116, 50, 99,188,201,201,201,143, - 1, 60, 86,169, 84,189,187,116,233, 50,162, 79,159, 62, 56,123,246,172,188,160,160,192,195,196,164,116, 54,233,238,221,187,241, -199, 31,127,252,152,148,148,180,215,216,246, 38, 36, 36, 28, 6,224,218,164, 73, 19,139, 38, 77,154,164, 90, 88, 88, 8,213,121, - 5,207,102, 22, 10,249, 12,130, 63,191,138,236,220, 60, 88, 88, 88, 64, 38,147,185,212,230, 44, 91,231,106, 95,192,224,133,222, -188,135,219,206,172, 91,179,218, 28, 40,189, 50,181,179, 16, 34, 59, 59, 27, 25, 25, 25, 72, 79, 79, 7,165, 20, 6,131,193,211, - 8,231, 99, 0,143,109,108,108, 28,220,220,220,136,169,169, 41,232,211, 2,100,229,151, 60,215, 5,153,151, 95, 0,149, 74, 5, -185, 92, 94,101,119,132,149,149,149, 92, 44, 22,111,250,233,167,159, 60,228,114, 57,111,204,152, 49, 22, 99,198,140,233,136,106, -194,152, 76, 38,227,253,252,243,207, 45,124,124,124, 54, 54,109,218,180, 91,124,124,124, 78,109,109,109, 44,202,102, 70,142,155, - 58,117,170,159, 68, 34,193, 55,223,124,243, 16,192,214,178,167,119,126,247,221,119,115,134, 14, 29,218,114,226,196,137, 94,179, -103,207,158, 92,214, 85, 88,109,183,179, 80, 40,244,245,244,244,196,158, 61,123, 0, 96, 79, 45,135,223, 21, 30, 30,190,166, 79, -159, 62,144, 72, 36,254,181,236,235,226,228,228,132,189,123,247, 2, 64, 84, 53,251, 68,197,196,196,224,157,119,222, 1, 33,164, -214,191, 33, 66, 72,255,183,222,122,107,215,146, 37, 75,248,114,185, 28, 31,124,240,129,246,242,229,203,189, 40,165,103, 9, 33, - 93,134, 15, 31,126,102,235,214,173, 38,103,206,156,241, 88,188,120,113, 56,143,199, 11, 51, 24, 12,179,107,113,142, 94,180,104, -209,140, 1, 3, 6, 96,254,252,249,244,183,223,126, 27, 70, 41, 61, 10, 0,148,210, 35,132,144,247, 44, 45, 45,183,206,154, 53, -139,228,228,228,204, 32,132, 60,161,148,126, 95,157,175,176,176, 48,199, 96, 48,216, 23, 22, 22, 26,117,133,104,236,254,205,154, - 53,235,217,170, 85, 43,236,221,187, 23,125,251,246,197,177, 99,199,192, 48,204, 1,181, 90,125, 10,192, 81, 0,112,112,112, 48, -143,139,139,155, 28, 18, 18,194, 28, 63,126,252, 29, 0, 63, 26,209,132, 71, 0,188, 1, 28,163,148, 38,150, 77,156, 12, 66,233, -146, 13,119, 40,165,229, 75,157,180, 6, 16,103,204, 57,177,218,252,205, 39, 14,238,234,210,237,221,143,205,121, 60, 6,124, 8, - 81,152,151, 11, 24, 12,112,117,182, 67,128,167, 29,110,196,107, 16,126,124,103,118, 97,126,161, 81,203, 75, 24, 74, 10, 54,158, - 56,188,183,179,255, 91, 35,205,197,174,173,224,100, 55,201,231,214,149,163,199,196, 34, 33,121,247,221,129, 22, 93, 2,220,112, - 34, 58, 23,151, 78,252,158, 85,152,151,187,209, 24, 39, 7, 71, 57,207, 2, 86, 53,131,202,210, 38, 79,158,108, 59,101,202, 20, -152,153,153, 33, 51, 51, 19, 58,157,238, 89,181, 73, 44, 22,195,194,194, 2,153,153,153,216,177, 99, 7, 80,122,181, 82, 45, 60, -158, 40,121,209,183,235,156, 8,207, 68, 43,150,202,168,149,172,225, 78, 0,208,234,248,105,223,239,216,109,213,179, 83, 7,126, - 19, 7,135,191, 60, 95, 31,231,171,128, 78,167, 59,150,146,146,226,215,178,101,203, 20,103,103,103, 77, 81, 81, 17,168, 70,147, -119,112,199,234,230, 78,230,227, 31, 48, 12, 67,165, 82, 41,107, 97, 97, 81,240,224,193, 3,162,215,235, 79,213,197, 79, 41, 29, - 55,110,220, 56,230,220,185,115,195, 70,140, 24,129,166, 77,155, 34, 42, 42, 10, 91,182,108,193,174, 93,187, 54, 9,133,194,137, -245,105,119, 98, 98, 98,190,167,167,231,115, 21,144,202, 51, 11,117,197,233, 96, 89,214,232,193,249, 89,145, 91,238,241,108,108, -116, 94, 77,254, 92, 78, 36, 43, 43, 11,233,101,225,170, 66,200, 50,186,132, 73, 8,201,211,106,181,149,218,249,103,247, 99, 65, - 65, 1, 74,138,211, 96, 48, 24,170,116, 62,125,250, 52, 79,169, 84,174, 91,187,118,237,202,133, 11, 23,218,174, 90,181,234,233, -221,187,119,115, 25,134,121,174, 92,203,178,172,196,213,213, 85,190, 98,197, 10,187,181,107,215, 62,101, 89,118,221,223, 28,174, - 6,120,123,123,111,234,217,179,167,252,227,143, 63,198,218,181,107,145,156,156, 60,157, 82,170, 7, 0, 74, 41, 75, 8,249,226, -219,111,191,221, 63,109,218, 52,148,148,148,172, 56,120,240,224,124, 66,200, 56, 74,233,214,170,156, 10,133,194,145,207,231, 35, - 50, 50, 50,151, 82,250,160,166,227, 83, 74, 83,220,221,221, 83, 9, 33,118, 14, 14, 14,205,107,218,215,202,202,202, 85, 46,151, - 67,173, 86, 3,165, 31,226, 85, 17,159,148,148, 68, 69, 34, 17, 81, 42,149,110,181,157,191,165,165,229, 23, 63,253,244, 19,255, -212,169, 83,152, 59,119,238,147,132,132,132,225,101,203, 8,128, 82, 26, 73, 8, 9,233,210,165,203,246,105,211,166,185, 47, 91, -182,140,196,196,196,140, 7, 80, 99,192,114,118,118, 30, 55,122,244,104,172, 91,183, 14,235,215,175, 31, 79, 41,221, 89,233,156, -183, 19, 66, 44,173,173,173,215,141, 29, 59, 22, 27, 55,110, 28, 14,160,218,128,165, 86,171,167, 13, 30, 60,120,206,211,167, 79, -195,106, 59, 31, 99,247, 87, 42,149,253, 70,140, 24, 97, 71, 41,197,218,181,107, 83,214,173, 91, 87,152,155,155,187, 53, 41, 41, -233,185,247, 9,134, 97,118, 31, 62,124,120,242,199, 31,127,140, 83,167, 78,125,163, 84, 42,105, 82, 82,210, 79, 53, 29,159, 82, -154, 76, 8,105, 78, 8,241,164,148,222, 41,155, 37,248,220, 64,118, 66,136,123,217,190, 79,140, 57,167,140,123,167,246,217,121, -245,186,112,253,202,233,183, 92,188, 66, 4,182,150,114,168,220,108, 96,101, 42, 4, 5,112, 51, 65,131, 75,103,143,234,210,146, - 31,135, 27, 51,131,176,220,105,223,186,119,184,204,198,249,173,102,173, 58,242, 93,220, 90,160, 91,112, 27, 75,107, 51, 1,180, - 58,138, 99,215,115,112,241,204, 33, 93, 90,106,226, 41,110, 6,225,223,195,235, 50,192, 29,168,189,130, 53,111,253,250,245,193, - 27, 54,108,232, 51,121,242,100,249,200,145, 35, 33,149, 74, 81, 80, 80, 0, 39, 39, 39,232,245,122, 28, 60,120, 16,145,145,145, -121, 44,203,238,199,159,179, 68, 0,252,245,110,219, 51,214, 22, 54, 33,132, 48, 64, 65,240,252,245,109, 26,197, 9, 0,225, 15, -245, 42,101,114,198,188,204,172,131,159, 57,171, 28,132,221, 59,182,231,219, 88,150,206,102,174,175,179,161,252, 29, 78,189, 94, - 63,154, 16,226,245,197, 23, 95, 44, 87,169, 84,202,249,243,231, 63,110,213,170,149, 38, 55, 55,151,106,181, 90, 54, 61, 61, 93, -182,107,215, 46,151,204,204,204, 60,157, 78,247, 30,165,244, 70, 93,218,153,148,148,164, 1, 48,220,222,222,126,111, 90, 90,218, -174, 33, 67,134, 96,227,198,141,184,120,241, 98,239,164,164,164,131, 85,189,166, 54, 39, 0, 80, 74,245, 29, 58,116,200,190,117, -235,150, 29,207,220, 5,118, 22, 2,244,248,178,180, 24, 33, 23, 3,154,130, 60, 60,140,189,131,220,220,220,107,198, 58,227,226, -226,180, 62, 62, 62,217,233,233,233, 54, 10,133,162, 52, 92, 85, 8, 86, 79,159, 62, 69, 78, 78, 14,101, 24,230,130,177,206,244, -244,244,130,160,160,160,194,184,184, 56, 17, 79,228, 0, 7, 75, 49, 74,187, 32, 41, 20,114, 62, 52,133, 5,136,142,186,134,220, -220,220,211,213, 57,147,146,146,118, 40,149, 74, 0, 88, 57,103,206, 28,155, 30, 61,122,220,191,114,229, 74,231,138,199,241,245, -245,253,125,254,252,249,189, 23, 47, 94,156,177,105,211,166,105,201,201,201,207,205,118,124,209,127, 75,214,214,214, 83, 14, 28, - 56, 32, 47, 41, 41,193,218,181,107,241,245,215, 95,111,160,148, 62, 55, 59,146, 82,122,128,199,227,125,203, 48,204,127, 63,249, -228, 19,140, 29, 59, 86,230,231,231, 55, 25,127, 86,185,158,115,170,213,234,217,190,190,190,115,210,210,210,140, 10, 4,177,177, -177, 31,249,250,250,206, 78, 75, 75, 91, 94, 93, 59, 1,192,196,196,196,196, 96, 48,224,209,163, 71, 89,148,210, 42, 67, 40,165, -180,168, 69,139, 22,106,131,193,224, 40,147,201,254, 50,128,186,178, 51, 43, 43, 43,204,207,207,111, 94,106,106,234, 81, 0,139, - 40,165, 69,149,124,215, 9, 33, 94,159,126,250,233,132,165, 75,151,190,147,146,146,242,151,117,150, 42, 59, 19, 18, 18,194,186, -116,233,242,229,189,123,247, 54, 81, 74,215, 87,211,206,111, 8, 33, 37,191,252,242,203,248, 71,143, 30, 45,169,201,153,148,148, -180, 31,192,254,170, 60, 85, 81,221,254, 21,157, 86, 86, 86,211, 38, 76,152,128, 67,135, 14, 33, 47, 47,111, 77, 82, 82,210,178, -170, 92,106,181,250,146,139,139,203, 31, 29, 58,116,232,183, 98,197, 10, 97,239,222,189,199, 3,248,169, 42,103, 37, 46, 2, 8, - 46, 27, 7,119, 23, 64,102,217,118, 43,148,206, 28, 36,168,244, 94, 92,155,211,160,203, 29, 26,117,110,207,246,196,184,232, 14, -190,157, 7, 88,230, 20, 58, 66,200,103,144,159,149,140,139,199,255, 47, 43,233,201,131,139,218,162,236,161,117,113,234, 75,114, -134, 68,159,255,125, 71, 74,252,157,246,133,193,189, 44,179,243,156, 33, 20, 16,100,167, 63,193,229,211,123,159, 38, 63,126,116, - 78,199, 22,143,170,139,179, 33,252,155,157,175, 27,196,152, 9, 65,132, 16, 17,128,174,114,185,188,219,103,159,125, 38,234,209, -163, 7, 22, 47, 94,140, 99,199,142,105,181, 90,237, 49, 0,199,171,170, 12,212,244, 11,120, 17,206,158,129, 68,110,111,199,172, -110,234,192, 12,111,229,230, 74,110,197,198,240,175, 37,245,249,161, 33,206,250,242,119, 59, 9, 33, 29, 5, 2,193, 50, 15, 15, -143,226,248,248,248, 86, 86, 86, 86,247,212,106,181, 72,167,211,125, 65, 41, 61,219,144,118,218,219,219,219,244,234,213, 43,109, -214,172, 89,100,254,252,249, 56,123,246,172, 69, 77, 21, 22, 99,156, 77,154, 52,121,195,207,207,239,200,170,111,126,226, 39,164, -230, 35, 55, 47, 15,121,121,121, 40,200,207, 71, 81,110, 10, 14,253,190, 93,123,243,230, 77,247,148,148,148, 4, 99,157,206,206, -206, 61,218,180,105,179,253,167,159,126, 50,207,204,204,124, 22,176,158, 62,125, 10,150,101,177,126,253,250,167,153,153,153,222, - 79,158, 60, 73, 50,214,217,180,105,211,254,193,193,193,187,150,175,254, 31, 63, 49, 53, 31,121, 5, 5, 40, 44, 44, 68,145, 70, -131,146,252, 84,108,250, 97,109,241,157, 59,119,154,166,167,167,167,214,228, 84, 42,149,131, 59,118,236,184, 32, 58, 58,250, 84, - 76, 76,204,184,138,207,181,104,209,226,219,182,109,219,246,186,112,225,194, 28,181, 90,189,165, 62, 63,207,186, 82,209, 73, 8, -233,161, 82,169,190, 78, 79, 79,127, 88, 82, 82,178,147, 82,250,151, 54, 84,120,221, 16, 62,159, 63,196,198,198,198, 46, 37, 37, -101, 41,165,116, 79, 85,206, 23,209,206,178,127,247,177,181,181,157,153,150,150,182,148, 82,250, 71, 13,175, 43,223,111, 57,165, -244,247,154,156, 47,162,157,175,130, 83,169, 84,246,177,181,181, 93,144,154,154,122, 42, 37, 37,229,139,154,186,124, 29, 29, 29, - 37, 44,203, 46,176,179,179, 11, 74, 73, 73, 89,153,156,156,252,127,198,182,147,148,222, 42,167, 41, 74,199, 91, 1,165, 99,174, - 18,104, 13,107, 95,213,230,180,113,239,214, 87, 44,147,190, 79, 89, 67, 91,128,128,225,241,174, 23, 21, 20,110,172,169,114,101, -140, 83, 98, 34, 27,205,178,134,182, 12, 8,203, 48,204, 13,141,166,240,199,244,187,199,170,189, 85,206,171,248,123,255, 39, 59, -171, 57,206, 71,148,210, 58, 77, 6,249,167, 96, 84,192,122,182,115,233, 44,154,222, 12,195, 4,177, 44, 27, 14,224, 0,173, 97, -221, 26, 99,126, 1, 47,194,217, 51,148,168,154,218,240,214,203,101,140,223,210, 77,186, 79, 27,195, 89, 87, 94,150,147, 16,210, -159,207,231,127,174,215,235,191,162,148,214, 58, 62,202,216,118,182,104,209,226,167,208,208,208,247,143, 28, 57,242, 93, 66, 66, -194,132,198,112,182,106,213,106,101,179,102,205, 38,244,238,221, 91, 96,107,107,139,140,140, 12,196,198,198, 34, 34, 34, 66,155, -146,146, 50, 46, 38, 38,102, 83, 93,157,109,218,180, 89,104,109,109, 61,238,195, 15, 63,180, 38,132, 32, 51, 51, 19,121,121,121, -116,247,238,221, 25, 26,141,230,195,152,152,152,103, 87,245,198, 58,189,189,189,127,112,113,113, 25, 53, 96,192, 0,129, 74,165, - 66, 70, 70, 6,110,223,190,141, 11, 23, 46, 20,167,164,164,140,184,119,239,222,179,106, 79, 77, 78, 87, 87, 87, 81, 92, 92, 92, -149,221,137,190,190,190,130,136,136,136, 42,187, 68, 95,167,191, 79,206,201, 57, 57, 39,231,172,227,113, 94,217,128, 85,235, 32, -247,138,148,133,148, 29,132,144, 93,229,227, 51, 26,202,139,112, 30, 58, 77,213, 0,122, 17, 66,248,141,229,124, 85, 40, 11, 85, - 70, 15, 60, 55,150,216,216,216, 15,149, 74,229,196,178,110,195, 70,225,246,237,219, 83, 84, 42,213, 47,241,241,241, 43,100, 50, -153, 15,203,178,186,226,226,226,243,153,153,153,147,147,146,146,234,117, 35,216, 27, 55,110,124,169, 84, 42,127, 95,177, 98,197, -116, 74,105, 27, 66,136, 86,175,215,135,103,101,101, 45, 72, 76, 76, 76,174,143, 51, 58, 58,250, 35,149, 74,245,115,124,124,252, - 18,177, 88,220,134, 82,170,213,104, 52,167,211,210,210, 62, 43,175, 92, 25, 67,117,225, 10, 40, 93, 34,163, 62,109,227,224,224, -224,224,248,103, 82,167,128, 85,206,139, 8, 45,175,138,243,223, 76, 99,134,171,114,212,106,245, 13, 0,111, 54,166, 51, 41, 41, - 41, 10,192,192,198,116,170,213,234,203, 0,170, 93, 67,139,131,131,131,131,131,163, 34, 70,221,236,153,131,131,131,131,131,131, -131,131,195,120, 8, 74,215, 33,249, 11,117,233, 91, 37,132, 24,117, 91,130,186,248, 57, 39,231,228,156,156,147,115,114, 78,206, -249,250, 57,171,112,191, 91,233, 41,117, 37,223, 43, 57, 6,171, 78,131,220,235, 44,127, 69, 6,214,113, 78,206,201, 57, 57, 39, -231,228,156,156,243,229, 58, 95, 55,184, 46, 66, 14, 14, 14, 14, 14, 14, 14,142, 70,134, 11, 88, 28, 28, 28, 28, 28, 28, 28, 28, -141, 12, 23,176, 56, 56, 56, 56, 56, 56, 56, 56, 26, 25, 46, 96,113,112,112,112,112,112,112,112, 52, 50, 92,192,226,224,224,224, -224,224,224,224,104,100, 94,232, 44, 66, 14, 14, 14, 14, 14, 14, 14,142,127, 35,207, 85,176, 8, 33, 92,218,226,224,224,224,224, -224,224,120,105,188, 46, 89,132,235, 34,228,224,224,224,224,224,224,224,104,100,184,128,197,193,193,193,193,193,193,193,209,200, - 48,192,235, 83,142,227,224,224,224,224,224,224,120, 53,121,221,178, 72,121, 5, 43,180,236,196, 66, 95,102, 99, 56, 56, 56, 56, - 56, 56, 56,254,181,188, 86, 89,132,155, 69,200,193,193,193,193,193,193,193,209,200,112, 99,176, 56, 56, 56, 56, 56, 56, 56, 56, - 26,153, 23, 26,176, 8, 33,173, 57, 39,231,228,156,156,147,115,114, 78,206,201, 57,255,109,112, 21, 44, 14, 14, 14, 14, 14, 14, - 14,142, 70,134, 11, 88, 28, 28, 28, 28, 28, 28, 28, 28,141, 12, 23,176, 56, 56, 56, 56, 56, 56, 56, 56, 26, 25, 46, 96,113,112, -112,112,112,112,112,112, 52, 50, 92,192,226,224,224,224,224,224,224,224,104,100, 8,128, 42,103, 2, 80, 74,111, 26, 45,169,199, -108,130,218,252,156,147,115,114, 78,206,201, 57, 57, 39,231,124,253,156,181,185,235,146, 63,254,201,188,208,133, 70, 9, 33,173, - 27,251, 7,197, 57, 57, 39,231,228,156,156,147,115,114,206,215,207,249,186,193,127,217, 13,224,224,224,104, 32,187, 8, 15,182, - 45, 93,192, 82, 37,248,162,100,156,140,126,128,185,148,109,176, 83,217,202, 25, 90,157, 29,164,146,116, 28,185,241,176,193, 78, - 14, 14, 14,142,127, 17, 92,192,226,224,120,213,113,240,112,135, 1, 75,192,131, 3,104, 73, 28,130, 91, 45, 1,208,176, 43, 75, -107, 15,119,232,216, 69,224, 51,142,208,150,220, 67,167,150, 75, 1,220,110,148,246,114,112,112,112,252, 11,120, 41,131,220,253, -253,253, 35,252,253,253, 23,134,134,134,138, 95,198,241, 57, 56, 94, 27,110,122,203,160, 55,244,212,234, 88,213,225,240,108,219, -194, 34,131, 59,132,250, 94, 8,119, 55,109,144, 83, 64,222, 42,210,177, 77,126, 57, 86,104, 87, 80,164,104, 49,218,236, 0, 0, - 32, 0, 73, 68, 65, 84,247, 4,131,134, 57,203,104,221,186,181, 69, 64, 64,192, 97, 31, 31, 31,155,134,186, 56, 56, 56, 56,254, -201,188,148,128,197,178,108, 59, 91, 91,219,201, 26,141, 38,193,207,207,175,223,203,104,195,203,162,125,251,246,225, 29, 58,116, - 72, 13, 10, 10, 74, 13, 10, 10,138,172,109,251,235,136, 82,169,116,247,246,246, 78,240,242,242,186, 87,113,187,109,219,119,130, - 60, 59,141,156,107,227, 53,160,243, 75,106,218,171, 71, 1,107, 7,134,215,229,118,124,161, 44, 37, 91,103, 23, 17, 83, 40, 7, -229,133,162, 4, 14, 13,114,178,244,141,235,113, 26,147,139, 15, 20,118,231,110, 22,155,129, 50, 93, 64,137,125, 67,155, 43, 18, -137,198, 83, 74,187, 9, 4,130, 73, 13,117,113,188,218, 16, 66, 90, 19, 66,250, 17, 66,252, 27,209,185,204,195,195, 67, 77, 8, -249,180,177,156, 28, 28,245,197,232,128, 53,176, 25, 9, 30,214,156,156, 25,220,140,228, 13,105, 78,242, 71, 52, 39,231,255,227, - 74, 58,215,247,192,187,119,239,150,110,217,178,197,182, 85,171, 86, 59, 2, 3, 3,207,251,249,249,181,168,143,199,223,223,255, -176,191,191,255,192,202,219,252,252,252, 6, 87,220, 22, 16, 16,112, 43, 32, 32, 32,199,223,223,255,129, 49, 94, 95, 95,223,251, -190,190,190, 5,254,254,254,247, 43,110,247,243,243, 27, 28, 16, 16,112,184,210,241, 6, 86,222, 86, 29, 12,195, 56,238,219,183, -207,246,192,129, 3,182,124, 62,223,174,242,246,253,251,247, 63,183,189,174,248,251,251,143,241,247,247, 15,175,116, 46, 31, 86, -222, 86, 19,126,126,126,225,190,190,190, 31, 86,242,134,251,251,251,143,169,111,187,202, 81, 42,149,238,157, 58,117, 58, 31, 21, - 21,213, 68, 46,151, 91, 84,124,206,222,218,162,123,248,254,111, 39,143, 26,248,214,120,219, 86,111,123, 55,244, 88,175, 61,119, - 91, 9,161,103, 59,177, 44, 85,220,126, 80,164,232,213,251, 63,252,235,247, 53, 10,157,222, 96, 5,194, 11,197,153,166,117,175, - 16,223,109, 37,132, 78, 23,194, 82,106,119,226,186, 80, 17,218,247, 19,222,169,104,190, 66,103, 48, 88, 67,135,206,245,114,150, -225,235,235, 43,224,241,120,147,199,142, 29,203, 16, 66, 62,113,117,117, 21,213,215,245, 42, 18,232, 77, 84,111,250,241,175,248, -182, 34,193,141,229, 36,132,120,153,152,152, 92, 35,132,184, 55,150,243,239,128, 16,210, 14,128,140, 82,250, 7, 0, 59, 66, 72, -131,135,171, 16, 66, 86, 45, 88,176,224,139,155, 55,111, 42,155, 53,107, 54,159, 16,194,107,120, 75, 57, 56,234,143, 81, 1,107, - 72, 51, 50,207,206, 94,117,116,214,170,109,157,126, 58,243,208,244,187,125,145, 38,147,167,133, 5,219, 91, 42, 14,142,112, 37, - 75,171,123, 93, 77, 51, 12, 68, 34, 17, 30, 60,120,128,181,107,215, 74,230,205,155, 23,100,110,110,126, 35, 48, 48,112,117,171, - 86,173, 76,106,106, 75,101, 39,165, 52, 88, 32, 16,252, 20, 24, 24,184,177,252, 13,155, 16, 18, 44, 22,139,127, 8, 12, 12,252, -165,188, 27,210,215,215,183,217,149, 43, 87,204, 8, 33,127, 9, 47, 85,181, 51, 32, 32,192, 33, 34, 34, 66, 6,148, 86, 2, 66, - 67, 67,197, 1, 1, 1, 91, 84, 42,213,122, 0,193, 0,224,234,234, 42, 10, 12, 12,220,232,228,228,244, 35, 33,207,191,105, 86, -119,238, 12,195,192,194,194, 2,219,182,109, 3,143,247,231,255,127, 66, 8, 44, 44, 44,176,117,235, 86, 16, 66,140, 58,247,138, -180,106,213,202,196,223,223,127,183,131,131,195,106,150,101, 59, 0,128,183,183,183, 44, 32, 32, 96,151, 74,165, 90, 83,190,205, - 24, 39,165,180,131, 80, 40, 92, 29, 16, 16,176,203,219,219, 91, 6, 0, 44,203,118,224,243,249,171,252,253,253,119,215,229,119, -212,174, 93,187,177,109,218,180, 73,106,211,166, 77, 82,203,150, 45, 23,219,217,217,157, 94,183,110,157,117,197,115, 47,175, 92, -165,166,101,102,133, 95,189, 21, 51,121,236,127, 66,155, 56,217, 13,183,104, 59,192,220,152,115,175, 47,175,188, 51,147,216,130, -208,174, 49, 9, 26, 73, 83, 55, 63, 19, 91,143,255, 64, 97,193, 23, 95,188, 83, 32, 7, 15,111, 66, 32, 83,212,207,201,127,243, -214, 67,141,212,178, 89, 79,153,127,251, 78, 32, 38, 45,196,167,163, 10,204,192,103,234,231,252,147,255,116,232,208, 65,212,181, -107, 87, 40,149, 74,158,185,185,249,240, 90,246,127,245,127, 71,101, 4,122, 19,149, 92, 34,186,188,114,193,103,126, 74,107,217, - 94, 99, 66,150, 17,211,231,189,108,109,109, 79,125,251,237,183,190,114,185,252,172, 49, 33,235,159,240,243, 44, 11, 87, 66, 74, -233,165,178, 77,183, 1,132, 52,208,185,106,222,188,121,147,102,204,152,129,188,188, 60,140, 26, 53,202, 12,192, 74, 99,157,114, -185,220,173, 77,155, 54,191,120,121,121, 61,246,241,241,209,122,122,122, 22,181,108,217, 50,190,117,235,214,155, 36, 18,137, 75, -117,175,251, 39,252, 60, 95, 39,103, 45,136, 0,116, 1,208, 27,192,155, 0, 2,202,190,247, 47,123,244, 6,208,181,210,215,242, -234,104,249,243,129,213, 56,122, 87,241, 58,255, 10,219, 43,254,187,242,247,213,194, 0, 0, 33,132, 86,252, 90,145, 65,205, 73, -144,181,189,234,139,101,191, 95,149,178,177,215, 17,241,193, 27,136,249,116, 0,164,247,175, 99,250,132,233, 82,185,220,114,194, -192,230,164, 75,221,126, 78,165,220,187,119, 15, 59,118,236,128,141,141, 13,217,176, 97,131,120,224,192,129,227,205,204,204, 18, -253,253,253,107,125,227, 45,135,199,227, 25, 54,110,220,104,218,191,127,255, 33, 86, 86, 86,183,124,125,125,155, 49, 12, 99,216, -188,121,179,233,224,193,131, 7,106,181,218, 59,126,126,126, 45, 34, 35, 35, 13, 87,175, 94, 5,195, 24, 87,180,139,136,136,208, - 31, 58,116, 8, 0,224,231,231,215,130, 82,122,103,233,210,165, 67,246,236,217, 35, 55, 55, 55,103,125,125,125,155, 57, 57, 57, -221, 90,182,108,217,240, 93,187,118,201,205,204,204,140,154, 97, 69, 8, 65, 81, 81, 17, 36, 18,201,115, 65,138, 16, 2,141, 70, - 3,177, 88,108,116, 27,203,241,245,245,245,178,182,182,190,187,100,201,146,254,191,255,254,187, 84, 46,151,195,223,223,223,211, -194,194, 34,102,249,242,229, 3,246,238,221, 43,149,203,229, 70,251,132, 66, 33,182,110,221, 42, 27, 54,108, 88, 63,177, 88,124, -215,223,223,223, 83, 40, 20, 98,251,246,237,178,225,195,135,247,145,201,100,119,124,125,125,189,140,113,233,116,186, 57, 87,175, - 94,117, 56,125,250,180,131,179,179,243,196,239,190,251,206, 78, 32, 16, 0, 0, 12, 6, 3,128, 63, 43, 87,195,223,233, 22, 56, -105,206,183,167, 52, 69,197,218, 69,211, 71,135, 10, 12,104, 95,167, 31,196,191,137, 93,132, 7,214,208, 14,128,107,228, 61,141, - 77,219, 78,195,249, 72,251, 3, 1,158,166,252, 51,145,249,182,148, 82,103,232,105, 0,206,132, 26, 95, 25,216, 69,120,224,209, -182, 32,108,139,163, 81,196, 38,168,235,112,126, 66, 66, 2, 92, 60, 67,121,251,175,194,142, 82,234, 2, 22,126,117,114, 86, 64, - 32, 16,204, 29, 52,104,144, 73,124,124, 60,130,130,130,100, 34,145,104, 78,125, 60,207,113,183,149, 16,151, 91, 58,227,172,123, - 40,194,221, 29,234,219,182, 23, 73,160, 55, 81,153, 73, 68,151,182,255,242,171,210, 59,100, 12, 89,255,153,179,149, 66, 46, 48, - 42,100, 85, 71, 89,184, 58,121,249,242,101,235,183,222,122, 11,243,230,205, 83,152,153,153, 25, 21,178, 94, 38, 21,195, 21, 33, - 68, 90,214, 61,168, 6,224,216, 0,231,154,121,243,230, 77,154, 57,115, 38, 46, 93,186,132,229,203,151,163,103,207,158,176,180, -180,172,245,253,227,189,247,222,147, 5, 7, 7, 71,244,235,215,239,250,164, 73,147,134,239,223,191,223,105,227,198,141,194,247, -223,127, 95, 60,104,208, 32,231,207, 62,251,108,100,175, 94,189,110, 6, 6, 6, 94, 30, 56,112,160,164,190, 77, 44,123,112,212, - 66, 77, 89, 4, 64,155, 25, 51,102, 4, 16, 66,246,207,152, 49,195, 15,128, 13, 33,100, 63, 0, 5, 0, 69,217,247,162, 74, 95, - 21, 40, 13, 77,229,207, 91, 87,229, 40,127, 84,122,157,162,194,246,138,199,168,252,125,181, 60,251, 36, 39,132,116, 6,112,182, -242, 14,124,138, 5, 99, 39, 47,148, 60,218,244, 53,146,127, 89, 5, 38, 67, 13, 94,118, 10,138,207,254, 1,221,185,125,120,175, - 67, 7,169,148,144, 69,117,250, 41,150, 33,151,203, 33, 20, 10, 17, 27, 27,139, 59,119,238,160, 87,175, 94,194,181,107,215, 90, -120,121,121,253, 16, 28, 28,124,221,223,223,191, 77,109, 14, 66, 8,220,220,220, 48,100,200, 16,209,167,159,126,218, 92, 34,145, - 68, 82, 74, 5, 46, 46, 46, 24, 60,120,176,112,218,180,105, 77, 37, 18,201, 85,150,101,133, 50,153,172,218,234, 80, 85, 94,169, - 84, 10, 0,130, 22, 45, 90, 92,219,177, 99,135, 75,112,112, 48,255,232,209,163,200,205,205,229,187,187,187, 95,223,190,125,187, -107, 80, 80, 16,255,252,249,243, 40, 40, 40, 48,106, 65, 49, 66, 8, 10, 10, 10, 32,149, 74,255, 18,176, 10, 10, 10,254, 18,188, -106,195,223,223,127,140,171,171,235,213, 29, 59,118, 56,134,132,132,240, 78,157, 58,133,188,188, 60, 56, 59, 59, 95,219,177, 99, -135, 99,112,112, 48, 47, 60, 60, 28,121,121,121, 70, 59, 69, 34, 17, 92, 92, 92, 48,104,208, 32,193,212,169, 83, 29, 5, 2,193, - 85,145, 72, 4,103,103,103, 12, 26, 52, 72, 56,101,202, 20, 71,145, 72,116,217,200, 46, 67, 30, 0,232,245,122, 12, 28, 56,208, - 68, 42,149, 34, 49, 49, 17, 44,203,130,101, 75, 51,105,114,122,102,244,133,171, 55,239, 78, 30, 55,176,115, 65,113,113,241,145, -211,215,238,180,106,225,236, 72, 8,109,106,116,163,255,109, 88,182,178, 6, 15,221, 18,146,180, 98,145,137,163,220,212,166, 37, -240,244, 44,154, 41,197, 0, 37,146,171,119, 11, 77,192,208,110, 64,134,117,157,156, 6,182,219, 67,181, 86, 92, 34,109,109,170, - 84, 53, 65,102,102, 38,156, 92, 60, 80, 12,133, 40,252,102,129, 41,104, 29,157,101,248,248,248,132, 56, 57, 57,217, 55,109,218, - 20, 25, 25, 25,112,115,115,131,169,169,169,165,175,175,111,183,186,186,158,113,166,169, 24, 57, 8, 70, 9, 89, 9,194,204, 7, -229, 47, 1, 63,189, 29, 34,125, 5,245,118, 54, 50,207,194,213,214, 95, 85,214, 14, 30,192,205, 15, 96,103, 37,194,134, 25,109, -173, 20,114,113,189, 66, 22, 33,196,203,206,206,238,228,229,203,151,109, 36, 18, 9, 34, 34, 34,208,170, 85, 43,124,253,245,215, - 10, 75, 75,203,127,108,200,170, 20,174,172, 40,165, 26, 0, 44,128,161,168,199,172, 87, 82,202, 55, 11, 23, 46,156, 56,115,230, - 76, 92,188,120, 17, 42,149, 10,105,105,105, 8, 9, 9, 73,200,202,202,170,241,115,201,203,203,203, 49, 54, 54, 86,253,217,103, -159,181,219,178,101,139,212,196,196, 4,217,217,217,248,241,199, 31, 49, 99,198, 12, 16, 66, 64, 41,197,207, 63,255, 44, 27, 61, -122,116, 64, 92, 92,156,186,105,211,166,198, 14,223, 32, 40,173,184,200, 0,152,148,125,149, 76,156, 56, 81, 68, 8, 17,151,133, - 75, 9, 33,228, 31,243,183,250, 79,161,186, 44, 2,192,102,233,210,165, 97,148,210, 62, 75,151, 46, 13,171,176,255,254, 26, 92, - 21, 67, 19, 0,160,178,131, 82,218,167,226,215,138,175,165,148,246,161,148,246,169,248,250,154,142, 87,153,138,165,146,211,148, -210,206,149,119,160, 64, 27,251,102, 45,145,125,108, 39,164, 60,242,220,131,121, 24, 13, 39, 9, 31, 58, 74,141,170,102, 84,198, -212,212,244,217,131, 97, 24, 36, 39, 39,131,199,227, 97,206,156, 57,146, 9, 19, 38,120, 11,133,194,139,157, 58,117, 90, 82,147, -163, 60,140, 92,185,114, 5,110,110,110,100,230,204,153,102,157, 59,119,230, 3,192,141, 27, 55,224,234,234, 74, 22, 47, 94, 44, -239,219,183, 47,145,201,100, 70, 87,135, 24,134,129, 84, 42, 69,104,104, 40,217,184,113,163,169, 88, 44,198,129, 3, 7,144,145, -145,129,183,222,122,139,191,113,227, 70, 83,137, 68,130, 51,103,206, 32, 39, 39,199,104, 47, 33, 4,197,197,197, 85, 6,172,170, - 42, 91, 53, 17, 20, 20,180,193,222,222,126,245,150, 45, 91,196, 82,169, 20,167, 78,157, 66, 78, 78, 14,134, 12, 25,162,223,186, -117,171,196,204,204, 12,225,225,225,200,201,201, 49,202, 87,153, 43, 87,174,192,213,213,149,204,154, 53, 75,218,161, 67, 7, 29, - 0, 68, 69, 69,161, 69,139, 22,100,214,172, 89, 82, 51, 51,179, 85, 29, 59,118,220, 80,147,131,101, 89, 36, 39, 39,227,230,205, -155,120,248,240, 33, 50, 50, 50,144,158,158,142,188,188, 60,232,245,122, 0,128, 44, 47,247,192, 55, 27,247, 93, 55,145, 74,101, -129,222, 45,154, 92,142,188,157,102, 34,149,202, 90,184, 52,113, 39,100, 62,119, 59,167,202, 16, 66, 32,208,182, 0, 37,237, 46, -221,206,183, 10,233, 62, 84,136,244, 67, 0,213, 1,132,143, 46,129,142,252,189,231, 11,236,192,162, 13,132,240, 0,140,248,131, - 34,132,128, 95,226, 6, 16,191,163, 17,122,235,142,221,199, 11,159, 60,121, 2,161, 80, 8,177, 88, 12,159,224,119,249,219, 79, -233,236, 1,180,133, 0, 45,141,114, 86, 64, 44, 22,127, 57,122,244,104, 19,181, 90,253,204,217,179,103, 79, 19,153, 76, 54,183, - 94, 63,131, 51, 77,197, 96,100, 29,160,167,147,110, 61,212, 56, 47,222,148,236,241, 32, 81,227, 1,138, 41,208,233,124, 26, 26, -178,156,157,157, 67,221,221,221, 31,186,184,184,116,172,175,163, 44, 92, 93,220,177,245, 87,149,149,125,105,184,130,161, 16,224, - 73, 97,111,107,137, 13,115, 67,173, 20,102,210, 58,133,172,178,112,117,226,210,165, 75, 54, 18,137, 4,215,174, 93,131, 72, 36, -130, 68, 34,129,183,183, 55,214,175, 95,175,176,178,178,250, 71,132, 44, 66,136, 37, 33,164, 59, 33,228, 63,132,144,119,241,103, -184,114, 1,240, 6, 33,164, 27, 0,123, 0,103, 40,165,215,141,116,118,228,243,249, 7,218,182,109,155,196,231,243,111,135,133, -133,253,119,218,180,105, 88,179,102, 13, 66, 67, 67, 31, 76,159, 62, 29, 49, 49, 49,250,194,194,194,126,148,210, 26, 63, 8,243, -243,243,255,152, 53,107,150,249,219,111,191, 93,254,111,156, 63,127, 30,155, 55,111,134,137,201,159,163, 32, 40,165,232,219,183, - 47,198,140, 25, 99,169,213,106,119,215,228,180,179,179,123,243,244,233,211, 45, 80, 26,174, 36,248, 51, 96,153, 28, 63,126,220, - 66, 34,145, 88, 5, 4, 4,152,149,109,151,189,253,246,219,214, 2,129,160,222,127, 99,175, 41, 85,102,145,114, 42, 7,156,202, - 1,168,170,231,170, 10, 79,245,109, 92, 77,199,171, 76,197, 15,175, 80, 66,200,153,170,118, 42,121,154, 10, 49, 12,144,241, 8, -164,124, 82,250,149, 71, 32, 37, 44,248, 89,169,117,124,171,253, 19, 83, 83, 83,200,229,242,191, 4, 45,141, 70,131,252,252,124, -163,130, 70,249, 88, 30, 75, 75,203,103, 31,218,166,166,165,179,201,173,172,172, 80, 92, 92, 12, 66, 8, 76, 76, 76, 96, 98, 98, - 82,167, 10,150, 68, 82, 90, 17, 14, 15, 15,199,133, 11, 23,192,231,243, 97,101,101, 5, 0,184,118,237, 26,162,163,163, 33, 18, -137, 96,109,109, 93, 39,111, 73, 73, 73,149, 93,132, 90,173,182, 78, 93,132, 12,195,160,168,168,136, 94,187,118, 13, 55,111,222, -132, 88, 44,134, 66,161,128, 72, 36, 66, 98, 98, 34,238,222,189, 11,145, 72, 4,133,162,198, 42,102,181,152,153,153, 33, 59, 59, - 27, 44,203,150, 87,243, 96,102,102,134,252,252,124, 48, 12, 99, 84, 59, 89,150,133, 90,173, 70, 70, 70, 6, 30, 63,126,140,244, -244,244,103, 33,171,188,139,144,163,142,156,247, 50, 7, 17,188,149,158,173, 19,167,231,139,204,237, 92,187, 2, 25,135, 0,194, - 3, 4,150,104,223,174, 25, 18, 82, 12, 38, 49,143,181, 18,232,208, 29, 39,221, 45,141,114,242, 4,221,210,114,116,226,248,108, -133,153,103,107, 95,164,165,165, 65, 44, 22, 67, 44, 22,195,175,253,155,120,152,196,202,110, 63,210,200, 64,241,150, 81,206, 50, -218,181,107,215, 92, 42,149,118,104,215,174, 29, 73, 77, 77,133, 88, 44,134, 68, 34, 65,135, 14, 29,192, 48,140,183,143,143,143, - 71,157,206,255,129,171, 8, 2, 89,123,128, 78,186,251,168, 80,185, 55, 92,227,222,119,192,187, 86,171,126, 75,243,184,251,168, -200, 5, 90,253, 84, 20,148,248,214, 55,100, 53,109,218,180,179,169,169,233,254, 47,191,252,210, 69, 44, 22, 31,114,113,113, 9, -169,253, 85,127,197, 84,204,251,223,151,147,134,170, 44,203,195,149,190, 0,224, 73, 1,158,172, 52,100,217,217, 96,209,167, 93, -173,100, 66,193,255, 25,235,148, 74,165,219,191,249,230, 27, 69,121,184, 18, 10,133,144, 72, 36,207, 30,237,218,181,195,156, 57, -115, 20, 86, 86, 86,219,234,211,230,198,130, 16, 98,133,210,113, 85, 55, 0,236, 6,112,162, 66,184,114, 3,240,127, 40,173, 90, - 69, 82, 74, 19,140,116, 6,245,232,209,227,212,131, 7, 15,122, 93,191,126,221, 33, 37, 37,197, 99,202,148, 41, 88,189,122, 53, -166, 77,155,182,141, 82,234,190,115,231, 78,159, 43, 87,174,120, 27, 51, 62, 40, 37, 37,101,216,244,233,211, 51, 50, 50, 50, 0, - 0,173, 91,183, 70,118,118, 54,166, 78,157,138, 73,147, 74, 39,185,250,248,248, 0, 0,210,210,210,176, 98,197,138,212,148,148, -148, 81, 53, 57, 13, 6, 67,226,158, 61,123, 58,104,181,218, 38, 0,132, 0,196, 0,100, 9, 9, 9,230, 5, 5, 5,102, 60, 30, - 79,110, 98, 98, 98, 38, 22,139, 77, 70,143, 30, 45,188,125,251,182,167, 94,175, 87, 27,115,254,255, 34,170,205, 34,192, 95, 43, - 77,213,109,171,239,254,198, 96,236,235,159,125, 66, 82, 74,207, 0,232, 84,121, 7, 30,193,141,199, 87,207,192,170, 85,187,231, - 43, 88,124, 2,153,220, 12, 15,213,137, 16,130,220,170, 71, 3,159,133,170,138, 33, 43, 57, 57, 25,211,167, 79, 47,252,229,151, - 95,162,181, 90,109,135,179,103,207,206,168,201, 83, 30, 82,108,109,109,241,248,241, 99,250,213, 87, 95,229, 30, 58,116, 72, 95, -190, 45, 49, 49,145,206,158, 61, 59,239,215, 95,127,165,117,233, 34, 44,175, 96,157, 57,115,134,206,157, 59, 55, 39, 41, 41,137, - 90, 89, 89,193,218,218, 26,199,143, 31,215,207,152, 49, 35, 39, 46, 46,142, 90, 89, 89,193,202,202,170, 78, 1, 75,175,215, 67, - 42,149, 62, 23, 80, 8, 33,208,233,116,127,169,108,213,196,249,243,231, 63,200,201,201,249,108,234,212,169,154, 59,119,238, 80, -133, 66, 1,133, 66,129, 77,155, 54,241, 71,142, 28,169,185,113,227,198,179,109,245,193,198,198, 6,247,238,221,163, 97, 97, 97, -154, 19, 39, 78, 8, 0, 64,161, 80, 32, 38, 38,134, 46, 88,176, 64,147,157,157,253,217,249,243,231, 63,168,201, 97, 48, 24,240, -240,225, 67,228,230,230,194, 96, 48,160,184,184, 24,233,233,233,120,242,228,201,179,128,165, 49, 49,235,241,201,251,125,219, 22, -104, 52,133,151,163, 99, 31, 7,182,107,101, 91,160,209, 20,198, 62,122,124,143,210,185,220,234,225,149,161,172, 61, 40,237,120, - 62, 58,223,162, 91,239,193, 34,146,123, 5,208,229, 3, 2, 75, 64, 96, 1,190,196, 26, 61,223,244,225,109, 60,146,107, 15,194, - 6, 65, 34,174,125,124, 11, 75,237,192,178, 33,199,175, 21, 89,118,236, 53, 65,244,244,233, 83, 48, 12,243, 44, 96,201, 76, 76, -240,102,159, 17,204,207, 71,138,237,193,210, 96,240,120, 70,143,153, 17, 10,133, 95,188,255,254,251,194,172,172,172,231,156, 82, -169, 20, 3, 6, 12, 16,203,229,242,217, 70,159,251,221, 86, 66,164,138,219,131,165,147, 98,226, 53,202, 61, 23, 52,238, 83,230, -252, 44,245,106, 19,136,113,253,109,165,139,183,164,181,186, 30, 87,232, 2,198, 48, 25,133, 90, 63,252, 80,183,144,229,226,226, - 18, 98, 98, 98,114,224,247,223,255,159,189,243,142,111,170,122,255,248,231,220,155,164,153,221,187,180,180, 20,232,164,172, 82, -161,236, 37,123, 43, 2,138,130,108, 20, 65, 65, 4, 1, 7, 67, 20,145, 33,202, 80, 54, 2, 2, 50, 69,150, 96, 25,178,202,166, -165,180,180,165,165,123, 55, 29, 73,179,238, 61,191, 63,210, 98, 45, 29, 41,224,207,241,189,239,215,235,190,154,220,228,126,238, -115,110,210,228,147,231, 60,231,156,131,138,110,221,186, 97,230,204,153, 74,169, 84,122,204,199,199,231,137,207,198,186, 40, 45, -230,222, 94,184,114,123,214,237, 61,189, 1, 83,113,185,185,250, 99,203, 86,243,248,232,155,223,212, 70,142,142,178, 84, 83,171, -213,190, 49,126,252,248,188,159,126,250,233, 9,115, 37,147,201,240,240,225, 67, 44, 89,178, 36, 63, 63, 63,127, 76,125,227,125, -206,180, 2,112, 19, 64, 25,128, 46, 0, 20,229, 35, 5,195, 1,252, 74, 41,229, 40,165, 89,148,210, 12, 75, 5, 89,150,253, 96, -237,218,181, 34,173, 86,139, 9, 19, 38, 32, 37, 37, 5,233,233,233,152, 55,111,222, 67,158,231,223, 40,215,188, 69, 41,141,177, - 68, 79,175,215,223, 47, 40, 40, 24,208,167, 79,159,194,130,130, 2,180,104,209, 2, 3, 6, 12,128,155,155, 27, 60, 60, 60, 48, -104,208, 32,248,249,249, 33, 47, 47, 15,163, 70,141,202,207,201,201,233, 77, 41,173,117, 20,122, 94, 94, 94,252,158, 61,123,226, -223,122,235,173,176,148,148,148, 16, 0,238, 70,163,209, 65,171,213, 90,155, 76, 38,149,141,141,141, 99,104,104,168,243,228,201, -147,237, 34, 35, 35,131, 83, 83, 83, 75, 0, 36, 91,122, 13,254, 23,168,201,139, 60, 3, 71,159, 50,142, 1, 21, 53, 88, 79,107, -200,152,114, 33, 82,249,111,101, 12,192, 71,219,246,109, 43,179,242,246,131,109, 96, 75, 40,100, 50,200,165, 86,144,219, 57,160, -140,231,177,241, 97,166,166,148, 82,203, 63, 32,255, 8,254, 79,153, 43,158,231,177, 97,195,134,178,197,139, 23, 23,102,102,102, - 78, 62,119,238, 92,203,200,200,200,219,117, 54,128, 97, 80, 84, 84,132,189,123,247,106,183,108,217,146,160,213,106, 91, 75, 36, - 18,163, 94,175,199,206,157, 59,203, 86,173, 90,149,164,209,104,194,196, 98,177,161, 62,221,111, 21, 53, 88, 98,177,216, 88, 86, - 86,214,122,247,238,221,241, 71,143, 30,213,218,216,216, 64, 44, 22, 27, 53, 26, 77,243,237,219,183,223,223,189,123,183,214,198, -198,166, 94,198,141,231,249,106, 51, 88, 28,199, 65, 42,149,214,171, 6, 43, 50, 50,242,123,131,193,208,118,231,206,157,169,155, - 55,111, 46,179,177,177, 1, 0, 24,141,198,176,109,219,182,165,174, 95,191, 94, 87,159, 2,119, 0,208,235,245,224, 56, 14,219, -183,111,215,237,218,181, 43,213,100, 50,133, 85,236,219,188,121,115,217,246,237,219, 83, 13, 6, 67,219,200,200,200,239,235,210, -226, 56,142, 43, 44, 44,132, 72, 36, 66, 66, 66,130, 78, 42,149,130,101, 89,196,197,197, 61, 54, 88, 46, 78, 14,193, 29,194, 66, - 2, 87,172,223,123, 86, 41,149, 74,123,119,109, 19, 20, 29,151,156, 74, 41, 73,170, 87,224,255, 43, 24,160, 0,129, 60, 46, 69, -103, 45, 19, 27, 9, 50,247, 3, 18,251,114,131,101,222, 60, 26,120, 34, 50, 70, 99, 13, 2, 43,232,141, 46,117,106, 26,169, 18, - 4,138,187,201,176, 22, 73,228, 36, 51, 51,243,113,166,169,194, 16, 53,106, 18,132, 27,113, 37, 42, 16, 42, 5, 96,241, 84, 34, -148,210, 1, 42,149, 74,148,145,145,241, 88,235,177,102,163, 70,172,209,104,236,109,113,219,115, 56,119,240,252,219,177,143,202, - 60, 14,254,174,245,123,239,163,205,114, 57, 91, 0, 36,173, 70, 51, 63, 55,204, 28,211,210,106,222,198,156,102,145,209,154,198, - 32,116, 50,154,149, 88,252,235,162, 81,163, 70, 29, 21, 10,197,177,131, 7, 15, 42,148, 74, 37, 18, 18, 18,208,162, 69, 11, 44, - 90,180, 72,161, 80, 40,126,241,246,246,238,106,113,156, 0, 46,223,167,201, 37,197, 92,248,236, 13, 41,153,183, 31,114,102, 99, -197,152,205, 85,142,154, 98,252,130, 35,133, 5, 69,101, 47, 93,186, 99, 60, 99,169, 38,165,244,166, 90,173,238,181, 96,193,130, -188,220,220,220, 63,153,171,228,228,228, 10, 35,208,149, 82, 90,239, 31,189,207, 25, 37,204,197,235, 1, 0,154, 0,104, 73, 41, - 53, 1, 40,166,148, 62, 85,234, 58, 56, 56,184,181,183,183, 55,214,173, 91,135,141, 27, 55, 22,172, 88,177, 2,148, 82,248,249, -249,217, 60,173,102, 86, 86,214,213,251,247,239,247,110,217,178,229,189, 53,107,214,164,186,187,187,243, 19, 38, 76,192,184,113, -227,224,236,236,204,173, 94,189,250, 81,167, 78,157,238,198,199,199,247, 44, 45, 45,189, 83,151, 30,165,148,230,230,230, 94,220, -180,105,211,213, 30, 61,122, 88,143, 29, 59,214,117,227,198,141,110, 49, 49, 49, 13, 53, 26, 77,131,236,236,108,229,185,115,231, -164,219,182,109,115,139,142,142,126,168,213,106,175,210,191,114, 65,224,127, 25,181,121, 17, 0, 57,229, 70, 71, 95,229,111, 78, - 29,143, 89,122,108,181,183, 45,120, 94,141,212, 57,226,102, 79, 2,189, 56,186, 9, 89,182,104,243,134,247, 71, 55, 15,148,251, - 52, 10, 2, 87, 82,136, 59,153,153,216,150,161,214, 24, 41,253,102,111, 2,253,173, 46,157,170, 84, 24, 44,150,101,113,226,196, - 9,110,231,206,157, 6, 74,233,119, 69, 69, 69,243,163,163,163, 75, 45,213,225,121,158,125,243,205, 55, 75, 10, 10, 10,246,103, -100,100, 76,142,143,143,215,119,234,212,137,125,245,213, 87, 75,242,243,243, 15, 19, 66, 38, 92,187,118, 77,215,177, 99, 71,212, -231,125, 76, 8,129, 68, 34, 1, 33, 4,145,145,145, 15,131,131,131,155, 93,190,124,249,219,216,216,216, 87, 40,165,236,245,235, -215, 83, 66, 67, 67, 91, 92,188,120,113, 77, 76, 76,204, 40,158,231, 45,154,115,133, 16,242, 56, 59, 86,217, 72, 49, 12,243,216, -212,213,199, 96, 1,192,245,235,215,163,130,131,131,131,174, 94,189,186,117,226,196,137,189, 1, 40, 34, 35, 35,239, 53,111,222, - 60,240,242,229,203, 91,223,120,227,141, 62, 48,247,249, 91,132,193, 96,192,144, 33, 67, 52,106,181,250,120,113,113,241,152, 59, -119,238,104, 66, 67, 67, 43,246,157, 40, 44, 44, 28, 83,143,215,104,225,215, 95,127,253, 17, 0,240, 60,191,117,229,202,149,227, -103,205,154,229,156,150,150,246,216, 96,101,231,230,159,105,223,127, 26,151, 87,168,214,111, 94, 57,251,101,185, 76,106, 53,255, -243,205, 17, 70, 22,151,107, 85,254, 95,197,138, 43, 2,101,210, 95,238,110, 47, 93,253,205, 38,201,216, 65,141,101, 33,129,222, -102,115, 37,177, 71,100,116, 33, 62,250,114, 47,255,197, 20,231, 68,240, 72, 1,135,251,117,106,170, 68, 69, 40, 51,102,143,239, - 45,145, 46,253,110,134,111,135, 1,239, 75,131, 66, 94,120,108,132, 98,162,174, 97,229,146,105,252, 23,147, 29, 18,193,147,116, -152, 96, 81,150, 0, 0, 76, 38,211,203,159,127,254,249,241,177, 99,199, 42,155, 53,107,246, 88,243,225,195,135,248,226,139, 47, -180, 58,157,238, 37,203,148, 8, 1, 19,220,138,227, 56,151, 31, 78,230, 53,125,247,157,201, 10, 57,147, 15, 36, 46, 55,155, 23, -177, 45, 90,133, 56,225,163,119,220,196, 51,151, 30, 9,190,240,173,111, 9,140,146, 32, 0,233,150,168,139, 68,162,163,159,125, -246,153, 66, 46,151, 35, 46, 46, 14,114,185, 28, 50,153, 12,161,161,161, 88,181,106,149,226,173,183,222, 58,214,181,107, 87, 85, - 68, 68,132,201,210,182, 95,190, 79,147,219, 5,144,240,217,107,227, 47, 45,155,110,231,214, 34,192, 9,185,197,192,248,143,127, - 46,200, 47,210, 14,175,143,185,170,128, 82,122,147, 16,210,107,198,140, 25, 39,183,108,217,226, 24, 20, 20,132,148,148, 20,140, - 28, 57, 50, 47, 39, 39,167,219, 63,192, 92, 1, 64, 41,128, 6, 0, 98, 97,174, 69,122, 64, 8,177,194, 51, 44,207, 22, 29, 29, -125, 35, 57, 57,217,125,220,184,113, 40, 42, 42,178, 31, 49, 98, 4, 18, 18, 18, 16, 27, 27,123,243, 89, 2,213,106,181,145,132, -144,230,239,190,251,238,232,217,179,103,119,176,182,182,110, 68, 41,165, 69, 69, 69,137, 28,199, 93, 0,176,147, 82,203,215,225, - 44, 55, 76, 15, 8, 33,137,241,241,241,174, 91,183,110,181,131,249, 26, 0,128, 22,128, 26, 64,214,211,154,194,255, 97, 34,255, -166, 99,159, 30, 74,169, 69,219,203,141,208, 97,108, 99,114,246, 85, 95, 20,143,242, 69,201,216, 38,228,194, 75,141,209,165,182, - 99, 0,132, 84,183,191,117,235,214,212,100, 50,209,147, 39, 79,210,190,125,251,150,118,236,216,241, 66,104,104,168,159, 37,113, - 84,213,236,218,181,235,241, 54,109,218, 12,175,186,239,133, 23, 94, 24, 81,121, 95,151, 46, 93,162,186,116,233,162,238,220,185, -115,130, 37,113,118,238,220, 57,166, 67,135, 14,165,157, 59,119,142,169,188, 63, 44, 44,108,112,247,238,221,143, 86,222,247,194, - 11, 47, 12,170,186,175,166,182,247,236,217, 51, 37, 54, 54,150, 62,122,244,136,246,235,215, 47,189, 98,127,143, 30, 61, 82,110, -221,186, 69, 99, 99, 99,105,159, 62,125,210,171, 59,182, 38,205,202, 91,155, 54,109, 38,116,234,212,233, 98,149,152,199, 87,221, - 87,155,102,167, 78,157, 46,134,133,133,141,175,186,175, 77,155, 54, 19,158,230, 53,170,188,185,187,187,251,183,106,213, 42,123, -229,202,149,212,215,215, 55,187,242, 99,205,186,190,185,160,176,168,164,104,214,194,117,123,156,131,134, 52,175,111,219,235,187, -253,107, 53,239, 5, 73,232,239, 65, 29,232,185,160,163, 49,219,189,239,141,233,165,212, 93,223,217,135,210,152,247,233,229,189, -227,104,120,144, 21,247,251,183, 94,177,244, 92,224, 49,122,222,191, 51, 61,214,216,202, 34,205,115, 77, 58,209,115,129,199,162, -183,122,223, 27,210,217, 89,191,115,251, 6,250,224,193, 3,122,248,192, 78,218, 46, 72, 81,174, 25,116,146,158, 11,234,102,145, -102,165,173,117,235,214, 29,194,195,195, 75,246,236,217, 67,227,226,226,232,169, 83,167,104,251,246,237, 53,173, 90,181,234,102, -121,219, 65,232,217,224, 33,166,223, 2, 46,204, 29,169, 42, 28,223, 91,166, 27,217,205, 74, 63, 56, 92, 98,232,213, 90, 98,234, - 16, 36,226, 90,248, 50,124,144, 23,104,175, 80,185,142,158, 11, 56, 79, 47, 4,245,182, 52, 78, 63, 63,191, 71, 62, 62, 62,180, -166,205,223,223, 63,167, 75,151, 46,162,167,121,221,219,250,195,187,103,152, 52,227,244,119,221,232,192,206,214,121,237, 66, 68, -221,159,245,189, 4,160,149,147,147, 83,238,150, 45, 91,168,171,171,107, 14,128,102,255,136,247,167,121,159, 3,128,193, 0,156, -203,239,171, 96,158,127,200,247, 25, 52,219,247,234,213,203,120,227,198, 13,154,144,144, 64,143, 31, 63, 78, 59,116,232, 96, 2, -208,245,105, 53,255,138,182, 11,154,194, 86,177,145,242, 11,245,151, 64, 8, 9,161,213, 20, 27,134,134,134,210,222,189,123,107, -207,158, 61, 91,162,215,235, 39, 93,187,118,237,240,179,106,254, 21,113,254, 21,154,221,187,119,191,200, 48,140,111,249, 16,224, -244, 95,127,253,181, 53, 0,116,235,214,237, 34,203,178,190, 0, 64, 41, 77, 63,125,250,116,235,191, 51,206,191, 82,211,195,195, -195,159, 97,152, 19, 0,116,169,169,169,143, 71, 59,185, 52, 27, 28,238, 96,111,219,173,176, 80,125, 51,243,238,161, 99,127,119, -156,255,104,205,227, 77,172, 96,109,213, 6, 28,230,220, 77,208, 52,154,191, 41,183,241,128, 94,237,197, 91,247,158,227,151, 77, -117,137,111, 31,172,124, 8,194,127, 1, 78,119, 21, 93,146,116, 22,107, 42,200, 11,128,120,206,173,120,141,247,172,181, 5, 77, -123, 14, 28,207, 30,217,183,129,255,114,170, 99,124,251, 96,213, 35, 0, 95,128,215, 92,178, 88,179, 18,161,161,161, 29,164, 82, -233,177, 81,163, 70,169,118,237,218,165, 45, 43, 43, 27,112,227,198,141, 90,179,223, 79,104, 94, 10,108, 8, 19, 89, 2, 80,175, -218,142, 51,195, 60,128,137, 95,132,110, 49,143,234, 19,231,211, 96,137,102,187, 0,226,173,180,150,254,172,209,153,102, 88,146, -185,178, 68,147, 16,210,202,222,222,126, 71, 65, 65,193, 8,106, 65,230,234,255,179,237,132, 16,103,152, 39, 98, 20,193, 60,109, - 65, 20,173,163,134,201, 2,205,142, 44,203,126,208,184,113,227, 22, 9, 9, 9,119, 57,142,251,146, 82, 26,241, 44,154,207,130, -160,249,255, 62,217,232,191,138,191,197, 96,117,234,212,233, 58,199,113,199, 37, 18,201,146,136,136,136, 39, 62,168,159, 70,243, - 89, 16, 52, 5,205,127,165,102, 37,147,117, 61,182,212,119,233, 15,249,222,239,141,176,127, 84,151,185,170, 83,179,220,100, 93, -189,175,241,249, 98,103,177,247,204, 17,170, 71,117,153,171, 90, 53, 43, 17, 26, 26,218, 65, 38,147,109,211,106,181, 19,234, 50, - 87,213,106,198, 4, 75, 80, 96,108, 0, 19, 27, 2, 6, 53, 47,181,195, 83, 13,196,236, 93,100, 32, 11, 47, 71, 27,234, 27,103, -125, 17, 52, 5, 77, 65, 83,160, 42,127,203,172,199,231,207,159, 15,253, 59,206, 43, 32,240,159,162, 79,188, 30,199,155, 92,131, -181,213,231,161,254,242,105,251,151,200, 53,224, 73, 42, 8,191,170, 54,115,101,129,230, 85, 40,140,159,191,224, 47,159,113, 96, -137, 92, 3, 32, 19, 20, 43,107, 51, 87,150,114,253,250,245,223, 1,248, 62,181, 64, 96,180, 1,192, 67,128, 36,225,211, 90,102, -199,254, 24, 20,248, 11,127, 61, 10, 8, 8, 8,212,193, 63,110, 89, 9, 1, 1,129,122,208, 39, 94,143,152,224, 72,228,177,179, -192,193, 23, 82, 83, 50, 10, 77,153,232,147,164,127, 70,205, 43,200, 35,211,193,195, 31, 86,166,120, 20,234,159, 77,243,185, 67, -169,217, 68, 9, 8, 8, 8,252, 51, 17, 12,150,128,192,191, 29,115, 86, 39,181,124,251,231,106, 10, 8, 8, 8,252, 15, 65, 0, -132, 84,247, 64,125,250, 86, 9, 33,213,106,212,134, 5,197,155,130,166,160, 41,104, 10,154,130,166,160, 41,104,254,199, 52,235, -210,254,175,212,118,253, 45, 69,238,130,166,160, 41,104, 10,154,130,166,160, 41,104, 10,154,255,101,132,133,116, 5, 4, 4, 4, - 4, 4, 4, 4,158, 51,127,107, 13,150,194,201,223, 29, 34,166, 5,225,105, 32, 0, 80,134,196,192,196,223,214,228,198, 90,188, - 62,149,128,128,128,128,128,128,128,192, 63,141, 26, 13,150,127,251,161,231,149,114,101, 83, 0,224, 41, 5,199, 3, 69, 5,217, -151,146,111,159, 26, 10, 0, 30,205,122, 28,176, 82, 58,133,243, 60, 5, 79, 41, 76, 60,133, 73,167,125,144, 19,125,212,162,149, -231, 85, 46, 1, 67,123,246,234, 57,108,192,128,254, 1,205, 67,154, 55, 1,128, 59,119,239,196,255,252,243,209,251, 42,151,128, -253, 37,217,247, 15, 60,143, 6, 10, 8, 8, 8, 8, 8, 8, 8,252,127, 83,163,193, 82,202,149, 77,207, 28,218,228,114,224,124, - 10, 0,160,103,168, 27, 62,253,106,203, 16, 66,200,125, 0,120,233,173,175,252,231,191, 59, 6, 23,163,114, 64, 41, 69,171,166, - 14, 24,242,218, 91, 22,157, 84,238, 22, 28, 54,226,149, 87, 94,157, 53,107,230,160, 7, 15, 30, 36,237,218,181,235, 60, 0,116, -234,220,185,233,103,159,125,246,202,114,123, 7,169,220, 45, 56, 77,155, 25,253,247,172, 31, 36, 32, 32, 32, 32, 32, 32, 32,240, - 12,212,218, 69,168,146,137,112,255,161,185,183,206, 78, 1, 76,124,227, 37,100,101,101,250, 27, 76, 60, 70,143, 24,138, 27,247, - 51, 16,251, 48, 7,148, 2,254,158, 22,175, 37, 12, 22,124,155, 55,199,189,217,229,196,201,147, 87, 23,204, 95,176,157, 16, 92, - 2,128, 13,223,125, 31,254,209,199, 31, 77, 24,253,198,232, 23,247,237,219, 23,133,191,107,129, 70, 1, 1, 1, 1, 1, 1, 1, -129,103,160, 86,131,197,241, 20, 49,137,153, 0, 0,134, 21,161,127, 7, 91, 44, 95,252, 1,180, 58, 14,183, 18,213, 56,248,123, - 10,116,165,133,160, 20,232, 16,226,130,170,211,254, 85, 29, 97,240,213,116, 69,107,214, 74, 60,162, 79,155,166, 62, 14,246,246, -246,113, 87,183,151,126,244, 90, 86,144,200,100,184,190,248, 72, 88,162,210,218,170,253,222,125,251,130, 7, 14, 24, 96,101, 99, - 99, 59,219, 33,176,151, 39, 95,102,152, 89,152, 20,161,174, 73,243,121, 32,104, 10,154,130,166,160, 41,104, 10,154,130,230,223, -171,249, 95,131, 1, 0, 66, 72,181,115, 53,196,167,228,225,126, 98, 6, 90, 7, 54, 64, 19, 31, 55, 92,141, 43,192,206, 51, 41, -216,124, 50, 9,103,110,231,128, 23, 91, 35,179,152,224, 65,114, 22, 98,147,114,235,156, 86,153,181, 18,143,152,177, 76, 61, 43, -216,183,168, 93,196,158,105,240, 80,197, 5,127,240, 85,225, 52,214, 74, 60,194,197,205,110,215,172,233,147, 95,179, 86,200,173, -244, 58, 61, 26,249,120,201,166, 76,120,115,172, 68,165,220,245,220, 91, 45, 32, 32, 32, 32, 32, 32,240,143,162, 38, 47,242,111, -165,198,105, 26, 74,181,165, 15, 94,159, 52, 43,187,169,117,134,126,104,183, 32,128, 2, 57, 25, 73,136,190,122, 2,113,215, 79, -162, 56,231, 17, 40, 5,124,124, 26, 66,162, 77,212,111, 88,191, 54,155, 55,149, 61,168, 73,111,112, 47, 15,207, 7,105, 74,102, -217,172,134,151,226, 98, 88, 96, 79,111, 0, 0, 32, 0, 73, 68, 65, 84, 51,156,166,206,218,130,184,216, 12,167,101,179, 26, 94, -122,144,166,100, 20, 18,174,253, 27, 35, 7,147,193, 3,250,224,131, 15,102, 97,240,128, 62,152, 53,249, 21, 34,179, 18,183,251, -107,154, 46, 32, 32, 32, 32, 32, 32, 32,240,215, 80,163,193,138,189,120,160,211,245, 95,183,187,230,102,101,169,149, 82, 17, 68, - 12,131,236,212, 4,108,251,106, 58,246,125, 51, 19,133, 25, 15, 64, 41, 32,151,176,208,149,228,169, 51,110,238,117,205,173,101, - 4, 33,129,241,197,111,119, 60,108,148,148, 65,109,119, 30, 47, 17, 3,192,206,227, 37,226,164, 12,106,251,237,142,135,141,172, -104, 14,120,142,195,128,193, 47, 97,251,214,141, 8,239, 62, 24,251,206, 61,130, 70,107,248, 7,173,127, 38, 32, 32, 32, 32, 32, - 32, 32, 80, 55, 22, 77, 52,154,158,157, 15, 7,107, 22,206, 30,141,240,234,244,229, 0, 0,142, 55,129,194, 60, 61,131, 37, 57, - 61, 10,241,169,183, 71, 55, 74,244,113, 39,234,215,250, 42,180, 0,240, 90, 95,133,214,199,157,168,223, 30,221, 40, 81,195,217, - 27, 56,142,195,133,168,108, 44,251,241, 30, 22,108,185,141, 19,215,132,233,176, 4, 4, 4, 4, 4, 4, 4,254,125, 60, 54, 88, -132, 16, 90, 93,255, 39, 15, 32, 46, 41, 7, 82, 17, 15,207,134, 77,254, 40,100,167, 0,165,128,209,196, 91,116,162, 67, 39,211, - 83,125, 27,148,210,217,203, 31,133,135, 4, 58,222,158, 50,202, 43, 38, 36,208,241,246,236,229,143,194,125, 27,148, 82, 35,111, -197, 81, 74, 65,121, 10, 74, 41, 40, 5,120,254, 63,213, 29, 43, 32, 32, 32, 32, 32, 32, 80, 11, 53,121,145,127, 35, 12, 0, 80, - 74, 73,197, 86,221,147,188,189, 92,113,229,110, 50, 26,186, 74, 97, 99,107,141,152,248, 84, 48,172, 8, 44, 67, 96,226, 44,191, - 14, 84,111,252,113,197,108,219,229,143, 50,184,203,107,119, 36, 60,120,148,193, 93, 94, 49,219,118, 57,213, 27,127, 52,199, 97, -158,212,148,175,244, 87, 64, 64, 64, 64, 64, 64,224,191, 79, 93, 94,228,223, 70,221, 75,229, 80, 10,165, 66, 14,158,145,225,194, -181,120, 4, 6,181,192,150,195, 87,209, 36,164, 45, 50,138, 77,160,245, 88,206,112,230,106,205, 13, 0, 55, 6,247,242,240, 28, -218,183,193,139, 20,226, 83,223,238, 82,167, 2,192,166,240,161,229,198,202,156,185,226,169,121,154, 8, 1, 1, 1, 1, 1, 1, - 1,129,127, 27, 22,185, 35,158,167,112,118,178,135, 84,101,139,196, 28, 61, 74,224, 12,181,150,128,231, 0,206, 84,179, 9, 34, -132,132, 84,183,255,208,201,244,212,131, 39,115, 54, 29, 58,153,158, 90,121,191,185,107,208,220, 61, 72, 41,173,182,139,176, 38, -205,103, 65,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,191, 87,243,191,134, 69,139, 61, 55,118, 87,162,105, 3, 37,202,244, -174,208,234, 57,148,234, 76, 40,214, 24,161,214, 24,145,148,169, 65,108,196,179, 7, 66, 97, 54, 85,160, 4, 60,165, 0, 49,119, - 19,254, 55, 18,133, 2, 2, 2, 2, 2, 2, 2,255, 75,212,105,176, 52, 90,205,131, 23,135,141, 47, 95,240,153,130,227,204,153, - 37,174,162, 43,143,167,224, 12,218, 26,231,191,178, 20,142,231,175,174,219,242, 99,191,150,173,218,178,193,222,214, 40, 42,204, -197,181, 43,151, 76,148,231, 47, 61,171,182,128,128,128,128,128,128,128,192,255, 39,117, 26,172,184, 75, 7,106,156,219,234,121, -146,159,159, 53,122,199,238,253,139,127,216,115,184,131,206, 96,104,192,131, 77,225,140,198,179,210,226,188,143,254, 63,206, 47, - 32, 32, 32, 32, 32, 32, 32,240,188,176,168,139,240,255,131,252,248, 43,197, 0,222,249,187,227, 16, 16, 16, 16, 16, 16, 16, 16, -120, 86, 44, 31, 2, 40, 32, 32, 32, 32, 32, 32, 32, 32, 96, 17, 4, 64,181, 35, 1,234,179, 82,246,211,140, 38,168, 75, 95,208, - 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,255,158,102, 93,218,245,241, 31,255,100, 8,165,127,221, 92, 83,132,144,144,231,125, -161, 4, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,239,105,254,215, 16,186, 8, 5, 4, 4, 4, 4,254,231,112,242, 31,164, -114,242, 31,164,178,244,249,206,193,195, 93,157,131,135,187,254,149, 49, 9,252,183,248,199, 20,185,255,155, 33,132, 72, 1,240, -148, 82,195,223, 21,131,189,189,175,141,201,218,233, 0,195,235,190, 80,167,220, 62,245, 60,181, 9, 33,210,224,224,224, 86, 0, - 16, 29, 29,125,147, 82,170,123, 86, 77,165,107,192, 40,123, 27,187, 73, 6, 94,207,105, 74, 53,235, 74, 50, 99,247, 61,123,164, -127,224,236, 28,172,212, 75,229,203, 64,104, 95, 80, 48,148, 33,167,217, 34,227,123,133,133,183,212,181, 29,215,112,240,210,192, -113, 47,247,159,191,105,223,209,197,143, 14,205,141,169,250,184, 67,223, 53,214,239,140,238, 49,251,155, 31,127,254, 34,247,240, -236,146,231, 25,243,255, 10, 13, 59,190,106,103, 18,185,177,233, 17,203,243,234,115,156,103, 64,120,148, 88, 44,118, 54, 24, 12, -217,105,177,151, 45,234,182,240, 10,108,127,131,101, 25, 15,206,196,167,166,220,191,216,230,233, 34,254,223, 66,225, 17,216,138, -112,220, 7,148,231,196, 60,216,149,101, 57,113, 23,158, 69,207,195,195, 67,110,107,107,219,217,198,198,198, 75,161, 80,200, 10, - 10, 10,180, 5, 5, 5,143,146,147,147,207, 80, 74, 77,207, 43,238,250,224,220,108,200, 92,145, 21,243,113,249,237, 79,115,162, - 14, 46,173,253,249,131, 23, 19,134,204, 45,191,189, 52, 39,234,208,252,255,143, 56,235,194,181,249,176,182,160,252,187, 12,195, -182,231,168,233,179,236, 59,135,214,214,231,248,240,240,240, 33, 70,163, 81, 90,113, 95, 44, 22,235, 46, 93,186,116,240,249, 71, -250,191, 73,189, 13,150,103,240,112,123,163,136,126, 34, 98,153,151,120, 74,173, 51,110,238, 85,254, 21,129, 61, 47,188,219,190, -126,141, 97, 24,207,202,251,120,158, 79, 77,190,178,253,185,124,216, 18, 66, 60,191,154, 17,250, 65, 86,158,182,136, 16,178,168, - 38,243,225,218,106,212, 69,194, 16, 95, 66, 8, 24, 2,176, 12, 1,128,244, 71, 87,118,180,174, 70,211,221, 70, 41,242, 47, 42, - 53,221,165,148,214,249, 37, 36,119,244,243, 80, 58, 54, 56,219,117,232,180, 70,215, 78,108, 9, 82,185, 6,246, 40,201,138,137, -126, 14,109,115,110,210,164, 73,152,191,191,191,227,180,105,211, 36, 0,176,114,229,202,166, 77,155, 54,205,139,143,143,143,164, -148,230, 60,141,174,210, 37,112,244,234,229, 11,183,247,237,219, 23,233, 57,165, 88,182,114,109, 87,149,155,255,240,231,101,178, -136, 71,168,220, 78,169,184,251,214,187, 31,121,246,235, 22, 38, 42, 44, 49,226,151, 51,151, 71,239,219,188,172,187,157, 93,203, -230,181,153, 44, 94, 83, 56,223,213,154,246,225, 53,133, 0, 48,170,234,227, 13, 84,198,158, 14, 10,244,117,151,138,110, 1,216, - 95, 87, 44, 30, 97,111,156, 16, 75, 36,222,132, 48,230,215,157, 37, 96,202,223, 3, 38,163, 62,249,193,249,205,189,159,169,177, -207, 9,215,208,209,153, 4,196,145, 41,143,143, 16,128, 97, 24,136, 8, 0, 74,139, 18, 46,110,113,124,214,115, 16, 66,108, 67, -154,218, 53,235,223,161,227,166,179,137,249,170,134, 93,222, 61, 74, 40,179, 54,249,220, 87,183, 44, 57, 94, 38,147,217, 31, 57, -114,196,185, 79,159, 62,182,174, 33, 67,206, 90,114,140,202, 74, 22,252,243,207,135, 37,125,250, 88,126,153,149, 46, 1, 47,130, - 97,118, 16, 64,204,243,116, 37,203,211, 61, 37,121,177,241,180,158,245, 20, 46, 33, 67, 22,130, 32,200,226, 3, 40,238,101,223, - 61,248, 84,211,210, 16, 66, 88,185, 75,192, 24,185, 76, 54,171,169,127,160,127,210,195,132,216,162, 34,245, 10,109,118,236, 38, - 74, 41, 95, 47, 45, 19, 55,227,228,153,139, 47,139,196, 98,210,187, 91,152,146, 16,210,187,190, 26,149,113,117,117, 29,178,102, -205,154,198,225,225,225, 0, 0,147,201,100,179,119,239, 94,183, 69,139, 22, 41, 97,193,255, 80,117, 52,104,208,160,129,173,173, -109, 67,185, 92,222, 0, 0,180, 90,109,154, 90,173,126,148,150,150,150, 86,215,177,110,173,134, 59, 49, 12, 22, 30,223,255,157, - 8, 0,122, 15,155,180,184, 81,215,247,237, 9, 43,214, 86,247,124,206,164, 87, 50,132,188,123,250,200, 22, 2, 0, 61, 6,141, -157,227, 28, 60,252,155,156,232,189, 89, 79, 19,251,179, 66,134, 15,103,157,226, 12, 67, 8, 37,239,133,182, 9,107, 55,108,112, - 95, 4, 55,241,192,144,145, 83,102, 1,168,151,193, 50, 26,141,210,125,251,246,121, 50, 12,195, 26, 12,134,178,145, 35, 71,102, - 63, 75,108,126, 29,223,184, 8, 66,188, 12, 38,211,247,201,151,155, 44,166,244,227, 63,189,111,200,240,225,172,251, 67,209, 60, - 16,102, 2,229,249,148,140, 27,187,218, 63,203,249,254,233,212,203, 96, 57,249, 15, 82,177, 82,201,221,174,157,218, 57,206,157, - 50,212,106,253,158,243,240,104,245, 74, 90,250,205, 61, 13,254,170, 0,159, 21,134, 97, 60, 15,237, 92,227, 34,151,178, 0,128, - 18, 45,135, 97,163,167,213,121, 92,131,176,215, 34, 64, 16, 80,209,135,202,113, 38,153, 72, 36, 46, 35, 0, 64,204,163, 3,228, -114,171,203,155,230,133,171,199, 14,244,125,253,131,111,110,108, 5, 96, 7, 32,179, 58, 61,194, 48,158,187, 55,175,116,105,224, - 40,131,136, 37, 40,209,154, 48,244,245,247,184, 39,158, 71,136,231,166,121,225, 11, 71,247,245, 25,225,210,231,167, 97, 0,142, -213, 22,167,202, 45, 56,208,218,201,227,212,176,137, 11, 61,180,176,193,252,197, 43, 92, 46,158,220,119,190,231,144,241,134, 71, -169,169, 26,147,193,120, 63, 47, 63, 99,102,113,122,108, 92,157,141, 54,159,159, 85,169, 84,141, 85, 42, 85,203,190,125,251,202, -102,205,154, 37,238,218,181,235,227,199, 39, 78,156, 40,137,136,136,112, 95,190,124,121, 63, 15, 15,143,178,146,146,146, 91, 37, - 37, 37, 9,148,210, 39,218, 82, 19,110,110,206,111,191, 52,100, 32,186,191,244, 22, 56,158, 96,194,212, 25, 56,113,108,255,100, - 0,207,197, 96,169, 88,230,211, 9,211, 62,244,236, 18, 30, 42,250,124,239, 3,216, 42, 36,232,221,182,141, 72,202,206,118,223, -189,121,249, 10, 0,111, 86, 61,166,225,224,165,129,188,166,112,126,136,147, 97,228,160,246,190, 56,188,219, 48,210,179,231,108, - 48, 10,187,199,153,172, 38,125,223,177,182,151,203,214, 52,176, 99, 93,164, 92,246,154, 38,125,223,249, 53,254,216,215,197,181, -197, 34,150, 72,188, 55,125,179,196,207, 65, 37, 1,203, 18,136, 24, 6, 44, 75,160,211,115, 24, 61,101,238,243,104,110,249,151, -171, 95, 63, 6, 24, 11, 0, 60,176, 69,155, 29,247, 75,125, 94, 19,194,176,142,123, 55, 47, 23,185,216, 90,129,101, 9, 88,198, -188, 61,204,212,226,157,247, 63,177,125,198,248,156,251,118,112, 9,139,248,166, 75,239,118, 33, 14, 45,126,188, 68,236,218,245, - 29,225,152, 91, 38, 31,179,251, 80,196,200,134,157,223,187, 66, 41,255,101,202,249, 85, 39,107,211,209,233,116, 89,189,251,244, -181, 33, 34,165,226,215, 3, 91, 59, 87, 44, 54,111,228,248, 63, 22,135,167, 64,197,143, 24,158, 2, 19,199,143, 67,239, 62,125, - 53,188,137, 79,173, 77,251, 79, 48,204,142,227,191, 94,112, 46, 51, 82,124,181,102,227,194, 82,117,238,194,196, 24,199, 36,133, -171,255,187,154,172,216,195,150, 55, 28, 65,177, 23,247, 14,221,249,243, 37,132, 4, 7,129,227,205,235,171,250,123, 42,177,235, -232,101, 4, 6, 4,154, 39,111,230, 41, 2,188, 84,232,210,255,117,139,165,255,116, 26,210, 85,164,116, 13,220, 53,100,196,216, -151,135,190, 52, 18,118, 54, 42,232, 13, 58,255, 51, 39,143,125,183,110,205,178, 14,132,144, 49,245, 49,135, 60,207, 89,253,113, -219, 40, 3, 32, 6,160,127,170,224, 0,120,120,120, 56,135,133,133, 61,190,111, 50,153,208,168, 81, 35,164,165,165, 5,212, 87, -203,213,213, 85,225,225,225,209,127,217,178,101, 46,221,186,117, 19, 59, 59, 59, 3, 0,114,114,114, 26,252,246,219,111,173, 91, -183,110,157,157,158,158,126, 52, 43, 43, 75, 83,147,134,145, 47,147,176, 84,196, 74,165,114, 0, 0, 5,152, 89,211, 94,109,225, -236,236, 92,237,143,227,188,188,124,171,143, 63,254,136,136, 68, 98,243,243, 41,101, 40,207,213,184,198, 72,251,246,237, 7, 25, - 12, 6, 89,117,143,229,154,156,251,149,241, 86, 35, 96,254, 10,129,136,101, 11,210,111,238,115,182,172,245,128, 75,139,193,189, -220, 25,241,186,129,131, 7,251, 12,233,215, 21,238,206,182, 56,115,249, 62,166,207,251, 10, 70, 19,183,202, 82,157,202,176, 44, - 43,202,206,206, 78,178,183,183,119,123,154,227, 43,195, 48,140,239,161,157, 95,187,252,118,254,218,156,111,164,187,167, 52,238, - 56,214, 88,177,252, 29,199, 83, 4,200,108,196,157, 7,191,104,237,216,192, 95,190,241,155,207,197,207,122,190,127, 58,245, 50, - 88,172, 21,187,168, 99,251, 48,199,185, 51,198, 89, 45,218,120, 22,151, 78, 30,213,166,223,220,251, 92,204,149,210,197,175, 57, - 43,177, 26, 71, 88,177,146, 1,145,242, 38, 83, 6,199,105,190, 40,201,140,207,125, 86,109,142, 7,126,250,189,158,198,156,210, -166,223,125,251,149,139,171,157, 20, 90,189, 9,111,190,189, 0, 27, 86, 45,180,118,182,181,130,206,192, 97,203,161,200,220, 22, -165, 43,232,216,126,190,175, 47,217, 20,181,255,203, 29, 49,251, 97, 94,241,167, 90, 24,194,192,197, 86,138,197,187,238,195, 70, - 33,134,131,202, 10, 76,149, 10,184, 10,115, 53,118,160, 89,179,176, 88,111, 34,132, 88, 81, 74,171,253,112, 83,185,135,116,178, -118,246,220, 55,116,252, 66,231,184, 28, 2, 74,245, 72,176,149, 98,216,232, 41,118, 77,220,228, 80,202, 88, 36,165,100, 52,122, -127,246,236, 54, 50,247,192,176,178,140,152, 71,117, 53,219,199,199,103,216,128, 1, 3, 20, 51,103,206, 20,123,121,121, 97,199, -222, 19,222, 47,190,252,206,192,180,204, 60, 47,158, 2,174, 46, 14, 41,227, 70,244, 59,242,203, 47,191, 36,167,164,164,136,151, - 45, 91,214,118,223,190,125,193,168,199, 47, 81,142, 82,104,245, 28, 56,142, 7,199, 19,228, 20,214,191,199,145, 16,194,212,252, -171,154, 14,238,213,245, 5,209,202,131, 9, 40,214, 24, 33,151,176,120,144, 81,138,240,240, 48,209,158, 45,164, 91,117, 71,140, -123,185,255,124, 87,107,218,103, 80,123, 95,184,216, 43,176,249,155, 37, 56,124, 49,177, 79, 86, 49,129,211,160,101,147,220,165, -162, 23,157, 21,146, 53, 93,219, 52,117,235, 17,234,141,107,109,154,186,157,187, 30, 19,219,252,149, 21,211,210, 74,196,191,230, - 31,155, 86,173,209, 98, 8, 3, 7,149, 4, 27, 79, 36, 65, 41, 21, 67, 41, 19,153, 55,169, 8, 12,243,108,235, 64,201, 61,130, -189, 88,158, 27,103,227, 17, 60,110,228, 43,195, 61, 70,141,124,153, 18,134,197,222,253, 71, 6,255,240,195,142, 12,149, 91,192, - 70,142, 97, 55,105,211,163, 83,234,210, 34, 4,112,177,181,194,251,223,223,133,181, 66, 12, 27,133, 24,214,114, 49,122,180,116, -126,234, 56, 9, 33,246,147, 7, 55,238,119,123,123,207,110, 1, 13, 85,126,183,226,213,209,227, 22, 95, 91, 21, 81,216,109,198, -154,149,193,142, 86, 5, 58,209,130, 89,227, 69,105,233, 25,221,246, 30, 57,219,221,227,133,113,247, 77,134,210, 15,179,111,237, - 57, 84,157, 94, 74,204,197,214,158,225,195,101,134, 18,227,157, 91,177,169, 77,242,203,172, 16,157, 92, 84,126, 77,197, 80, 85, - 92,219,242,235,155,145,154,132,124, 13,123, 33,205,145,233, 70, 35, 46,214,171, 43, 74,107,224,113, 43,177, 4, 62,254,173,225, -230,238, 1,125,191, 87,125,174,158,249,233,144,210, 61,104,105,105,198,189, 15, 45,213,217,249,243, 37, 44, 90,186, 42, 14, 4, -247, 0, 0, 20, 65, 51,223,155,230,247,213,138, 53,127,218, 55,229,173,169,126,245,137,175, 2, 66, 8,171,112, 13,248,161,231, -160, 49, 47,183,104,251, 34,226,226, 19, 16, 23,117, 13, 61,122,246, 70,223, 1, 67,161,215,149,189,190,233,187, 53,145, 0,190, -173,122,172,181,123, 80,199,230, 33, 65, 63,120,184,123,120, 81, 90,190, 52, 25,165,232,214,173, 27,102,191, 59, 1,154,146, 98, - 4, 4,132,116,176,235,212, 75,215,103,196,219,224,121,138,188,188,220,210,251, 49,209, 61,181, 89, 49, 87, 44,141, 81,163,209, - 24,115,114,114,112,243,230, 77,196,198,198, 34, 42, 42, 10,121,121,121,176,181,181,173, 87, 23,187,189,189,189, 77,155, 54,109, - 94,221,179,103,143,204,214,246, 15,207,175,215,235,161, 80, 40, 48,100,200, 16,113,199,142, 29, 27,140, 29, 59,246, 13,123,123, -251,157, 5, 5, 5, 69,213,233,228,221,254, 57,221,173,249,144,245,253, 94,158, 56, 5, 0, 36, 82, 85,226,234,239,247, 71,213, -118,110,137,204,198,187,231,144, 55,155,128, 82, 16, 66, 86,231,198,236,175,246,135, 52, 0, 24, 12, 6,249,143, 63,254,216,128, - 16,242,167,239,215,133, 95,255,216,254, 78, 92, 70,207,117,159,124, 32,178, 86, 74,145,171,214, 99,210,148,105, 78,150,182,223, -165,249,224,169, 97,173, 91,127,187, 96,214, 4, 40, 21,114,156,188,156,128,119,231, 46, 53,229,231,102,111, 7, 33, 43,115,162, - 14, 60,107,175,197,115, 25,241,230,215, 64, 5,235,222,225,178, 9,175,116,149,233,141, 28, 10, 74,140,208, 25, 56,240,148, 66, - 93,106, 68,116,114, 49,156,108, 37,216,248, 60, 78,246, 15,167, 94, 6, 75, 36,182, 26,240,206,152,126, 86,203,119, 94,193,165, -147, 59,181,233, 55,246, 42, 42, 30,243,106, 51, 50, 49,229,218,110,223,202,207,183,100,132,129,117,131, 0, 7, 48,178, 47, 58, -119,233, 50,228,181, 55, 38, 16,239, 6,206, 98, 19, 71,249,168,152,120,227,222,157,155,199,219,120,182, 88, 81,148,122,123, 97, -125, 52, 43,195,243,124,106,213,140, 21,207,243, 85, 23,153,126, 66,147, 16,192, 78, 41,198,250,163,137,230, 95,198,160,176, 85, -136,177,235,183, 84, 20,229,167,229,182,208,174,248,125, 92, 63,151, 65,139, 55, 69, 31, 90,123, 36,235, 58,128, 40, 74,105, 86, - 77,154,132, 1, 68, 44,129,173, 82, 2, 91,133, 24,182, 42, 49, 24, 66, 42,157,239,207,230,106,193,119,183,183, 2,184, 95,217, - 92, 85,214, 84,186, 6, 52,179,113,246, 57,248,210,228,207,236,239, 60, 50,128, 97, 0, 95, 55, 37,236, 85, 86,208, 27,129,164, - 28, 67,121, 91,109, 48,117,230, 39,206,115,222,155,252, 11, 33, 93, 91, 80, 26,241,167, 47,154,170,113,106, 52, 26,171,209,163, - 71,139,141, 70,163, 97,236,244,197,189, 50,178,114, 7,175,250,236,125,169,147,147, 35, 74,203, 76,184,121, 47, 41,104,233,151, -223,248,254,114,230,202,129, 87,251,183, 62,236,226,226, 98,171,211,233,248,218, 52,171,146,147,149,251,205,150, 29,251,182,175, - 92,190, 20, 49, 73,249,216,252,221, 90, 80,206,180,190,182, 99,170,106,110,216,176,193, 37, 60, 60,156,185,124,249,114, 94, 85, - 3, 74, 8,148,249,106, 29,236,148, 18, 40,164, 34,184,217, 73,225,104, 45,129, 84,194,128, 97,254,248, 16,169,172,185,105,223, -209,197,188,166, 16,135,119, 27, 70,110,254,102, 9,222,124,123, 30,238,230, 74,142, 51, 10,187,197,111,143, 24,252,129,131, 2, -125, 27,216, 49, 46, 61, 66,125,160,148, 73, 48,247,157,209, 8,187,158,228,146, 90,200,207,203,215,160, 37,128,249,213,197,201, -176, 4, 34,150,129,181, 92,140,136,163,187,178, 53,197,106, 53, 97,205, 25, 22,163,222,144, 92, 91,155,107,106, 59, 0, 40, 93, - 3,230,132,182,106,177,100,202,196,113, 76,135,240, 23, 40,195,136,144, 91,100, 32, 20, 20, 51,222,158,140,169,147, 39,184,165, -166,101,125,244,237,218, 13,243, 85, 46, 65,139, 74,178,239,125, 82,155, 38, 75, 24, 48, 12,129, 82, 46,134, 74,246,199, 86,166, -231, 65, 8, 88,207,208,145,106, 16,128, 16,146,158, 18,185,171,218,110,175,170,154, 30,205,251,158, 62,155, 45, 9,212,252, 82, -118,233, 65,220,141,197, 87,111, 63,186, 74, 41,205,111,216,229,189, 55,140, 70,138,146, 50, 19, 30,102,105, 96,210, 83,242,102, - 31,111, 52,122,153, 4,124,182,249,198,118, 66,136, 77, 69,198,165,170,102,234,165,189,101, 78,205,135,141, 88,249,245,134,200, -229, 75,230,177,121, 69,122,112, 20,144, 91,177,144,149,111,114, 9,139,178, 82, 53,190, 93,255,125,166, 9,100, 24,141,168,253, - 61,255, 4, 60,125,109, 88,191,206,187, 9, 96, 69, 24, 73,170,135,183,143,119,247, 1, 99,100, 61, 6,190, 14,206,100,152,163, -116, 13,252,173, 52, 43,230,180, 37,154, 33,193, 65, 0,193,189,236, 59, 7,135, 1,128, 75,243, 33,251, 3, 3, 2,253,170,238, -107,218,212,255, 9,131, 85,147, 38, 33,132,145, 59,251, 77,108, 26,216,124,246,148, 5, 27,124,210,243,116,176,111,208, 20, 55, -111, 92,199,137,189,223,222,208, 22, 23, 44, 63,241,243,129,217,139, 62, 95,213,114,192,144, 87,112,232,224,158,153,132,144,181, -212,204, 99, 77,202,243,175,109,221,184,193, 75, 44,145,194,200, 81, 24, 77, 60,140, 28, 15,163,137, 34, 35, 35, 29,197, 37, 37, -144,201,173,161,180,113,128,209,100,206, 20,234,116, 70,229,228,215, 7, 76, 5,112,165,186, 56, 27,181, 29,125, 13, 12,241, 52, -239, 55,239,147, 48,246, 26,119,119,247,237, 0, 32,149, 74, 33,149, 74, 97, 50,153,112, 39, 29, 51, 60,194, 94,155, 11, 90,254, -205,206,243,169, 25, 55,118,181,169,169,237, 94, 94, 94, 3,171, 51, 87, 37, 37, 37,248, 61,242,182,237,150, 31, 79,246, 73, 74, -201,108,204,115, 46, 58,185, 91,203,222, 0, 6,214,116, 61, 51,239, 28,156,218,176,235, 12,102,230,148,209, 77, 87,127,191,239, -106,220,241, 69,181,166,147,125,123,206,209,207,158, 58,170,205, 23,171, 55,199,165,158, 93,245,110, 93,175,145, 68, 34, 17,231, -228,228, 36, 87,220, 95,184,230,167,190,143,178,138,122,126,185,100,158,228,102, 66, 9,110, 63,204,192,152, 23,189,171, 61, 87, -117,154,238,205,134, 6,120,251,120,173, 90,181,104, 58, 98,211,181, 88,243,211, 85,156, 61,186,253,186,161,172,184,127,118,212, -225, 58,179, 7, 22,126,111,214,203, 96, 85,167, 89,241, 69,240,219,237, 92, 20,107,205,198,202,200,241, 40,214,154,144, 93,168, -131,186,212,136,146, 50, 35,198,244,244,174,207,169, 42, 8, 3,224, 12, 32, 7, 64,100,149,251, 40,191,141,106,238,231,194,156, - 49,116,132, 57, 19,251, 56, 67, 91,233,126, 77,251, 43,142,143, 6, 16, 84,174,201, 1,184, 10,160,160,174,128, 69,132, 16, 74, -233, 31, 75, 42, 87,189, 95, 25,206,100,244,244,112,119, 7, 79, 83,203,227, 53,227,211,118,164,230,221,137,195,229, 30,173, 94, - 46, 77,191,185,207,226,154, 44,165,115,112, 11,153, 82,121,236,235, 53,107,172, 6,116,107,163,122,144,165, 43,142, 77,211,231, -106,244,156,201,185, 81, 43,201,252, 37,205,101,171, 87,124,246,142,181, 71,179,244,226,244,168, 77,213,105,120,132,141,186, 70, - 8,227,249, 56, 25, 68, 0,202,211,212,212,200,157,109, 0,224, 89,106,173, 74,203, 76, 96, 89, 2,113,121, 77,138, 70,207, 65, - 83,152,153,215, 66,179,234,247,113,125,204,230,234, 74,154, 91, 2,203,230, 24, 40,165,181,118, 65, 48,132,160, 72, 99,132,141, - 92, 12, 91,165, 4,118, 10,201,227, 12, 86, 13,230, 42,170, 54, 77,137,193,144,194, 25,117,101,148,227,208, 47,204, 25, 46,182, - 86,112,183,151, 66,102, 37,130,145, 3,180,122, 30, 90, 61,135,228,108, 13,138, 53, 82, 52,239, 50,178,169,147,251, 21,141,147, - 79,216,214,220,164,200, 73,181,197,202,113, 28,126,216,119,162,105, 90, 70,246,224, 67, 59, 86, 72,179,213, 70,220, 78, 42, 65, -118,129, 30,148,216, 98,238,252,249,210,249,243, 63, 26, 74,202,242, 30,250,251, 58, 89,222,245, 82,113, 93,179, 99,118,180,232, -208,255,155,254, 3,135, 88, 71, 95, 61,134,184,155,167, 23,148,100,213,175,254,202,219,219,155,251,246,219,111,237,214,175, 95, -223,212,197,197, 37, 37, 59, 59, 59, 17, 48,119, 71, 53, 10, 14, 79, 63,117,230,156, 99,151, 14,157, 69, 41,185,101,112,178,150, -192,219, 85,129,235, 23,127,211, 51,132, 28,175, 78,175,188, 27,112,148,103,207,217, 56,124, 49,177, 79, 84,158, 52, 98,252,132, - 55,147, 78, 29,189,154,247,245,142,211,203, 26,168,140,183,100,124,246,154,235,109,154,186,205,153, 54, 26, 75,191,222,129,179, -215, 99,178, 75, 25,143, 37, 25, 58,211,169,143, 71, 86,223,219,193, 50,128, 88, 68, 96, 45, 23, 67, 83,170, 86,223,253,117,173, -127,125,175, 87, 13,188,113,226,224, 14, 38,191,216,136,212, 92, 45, 73,207, 43,134,137,231, 97,167,180,130,137, 7, 10,243,115, -201, 15, 63,236, 64,100,228, 37, 6, 44, 51, 30,192, 39,181,137,145,242,186, 64,149, 76, 4,149,220,156, 5, 82,201, 69, 48,152, -120,248,249,122, 97,213,194,119,108,156, 93, 92,209,107, 88,173,111,157, 63, 33, 87,218,183,220,182,110, 17, 34, 46,221,234,250, -219,131, 93, 97, 46, 33, 45,191,246, 12, 30,190,156,113,240,208,234,140, 28,138,212, 5, 40,211,165,224,133, 6,185,112, 80,114, - 72, 42,114,199,221,204, 56, 85, 93,221, 89,185,119,246,223,116, 14, 25, 58,127,239,145, 51, 75,123,191,216, 21, 81, 15,139,204, -230, 74, 98, 54, 87, 34,194, 99,197,250, 13,198, 2,117,241,128,220,187, 7,235,157, 1, 47,205,142,249, 21,230, 15, 99, 0,128, -202,181,177,243, 15,107,230,111,155, 48,123, 89,239,222, 67,223, 32,119, 35,127,251, 16,192,233,154, 21,254,128,171, 38,199,202, -241, 79, 54,175,186,125,213, 65, 8, 97, 92,154,180,217,185,101,235,174, 17,193,126, 94,200, 42, 52, 34,189,192,128,243,215, 31, -224,192,134, 15, 11, 11,179, 18, 94,131,161,164,132, 39, 38,245,201, 19, 71,142,191,245,206,108, 52,107,214,210,167, 40,181,200, - 6,192,159,106, 15,121,150,108,120,125,220,228, 17,174, 46,174,214,124,121, 6,139,167, 20, 1, 1,193,232, 55,112, 24, 34,206, - 93, 68,116,212,109,243,126, 30,160,148,162,176, 32, 47,211,100,212,111,173, 49, 62,150,120,110, 89,191,194,133, 33,128,193,196, - 67,111,228, 49,103,238, 2,253,244,143,214,116,236,221,161, 69, 20, 11,190,232, 81, 70,161, 93,228,253,140,230, 68,108,227,254, -234,196, 15, 36, 90, 3,135, 34,141, 17,167,247,174,174,177,221, 30,141, 91,134, 55, 10,234, 56,110,226,188,245, 82, 41,203, 24, -154,249,123, 37,118,105,215, 44,165,161,135, 83,241,103,171,127,120,225,226,245,251,253,134,189, 52, 84, 54,162,113, 48,241,112, -148, 89, 79,158, 58,173,133,155, 95,199,215, 51,227, 46,108,175, 73, 83, 36,146, 22,122,121,122, 61,238, 74,116, 9, 25,114, 27, -128,119,149,167, 37,103,223, 61,216, 2, 0, 92, 92,221,202,136, 88, 90,107, 73, 64,101, 42,222,199,159,126,189,175, 95,106, 78, -201,203, 95, 46,153, 39,185,153, 88,138,155, 9,106, 88, 73, 88,232, 12,150,151,181,113,132,206,248, 96,218,155,226,252, 82, 19, -126,187,157,131,187,215,206, 80,147,161,104, 12, 37,162,177,206, 33, 67, 94, 39, 64, 35, 10, 60,100, 8,190,211, 51,216, 90,120, -235, 96,173,131,121,106, 10, 25, 0, 92,130,135,181, 39, 44,250,177, 34, 73, 24,192, 7,154,140, 70, 23,134,101,115, 51,111,237, -179,120, 4, 37,165, 20,154,236, 56, 44,251,236, 35,172,218,120, 0, 87, 99,243, 97,107, 74,193,161,205, 75, 48,115,233, 15,208, -232,171,175, 94,168,195,143, 56, 19, 66,126,166,148, 14, 0,208, 19,128, 85,165,251, 32,132,252, 92,126,238, 63,221,159, 51,103, -206,135, 75,151, 46,141,170,120,110,197,254,138,231,214,182,191,210,241,142,115,231,206, 13,249,252,243,207, 63, 11, 15, 15,223, -125,241,226,197, 68, 88, 98,176, 42, 55,130, 16, 82,227,127,185,107,243,193, 47, 0, 12,235,230,168, 66, 83, 95, 47, 40,135,143, -149,123,134,142, 40,101, 89,134,217,186,234, 67, 89,158, 86, 4, 17,203,150,214,117,194, 10,148, 46,254, 33,214,118, 14, 39,143, - 28, 62, 40,245,107,232, 32,219,127,165, 48, 37, 50, 65,243,248, 77, 81, 90,144, 33,113,181,202, 19,247, 31, 48, 84, 20,121,249, -202, 28, 0,213, 26, 44, 66, 24,207,175, 87,124,225, 98, 45, 23,131, 33, 64,145,214,132, 25,239,125, 96,105, 24, 53, 66, 65,217, -169,239,125, 12,134,152,191,124, 74,212,249, 88,178,114, 75,201, 48,207, 51, 23,198,245,113, 26,180,120, 83,244,161,147,247,228, - 15,134, 14,237,174, 78, 74, 74,170,243, 66, 19,202,165,190,252,198,116, 9,195,152,187,141, 8, 33, 0,184,172,167, 49, 87, 0, - 80, 80,144, 88, 36,119,107, 49,116,199,138,105, 27, 27,122, 54,112,176, 86,200,160, 82, 74, 73, 96, 64, 19, 89,187,182,225,114, -239, 38,205, 36,231,238,149,224, 81,142, 22, 9,105, 69,144, 58,135,136, 71,116,125, 17, 59, 86,127,208,207,146,246,159,185,116, -119,224,218,229,243,164, 89, 5, 6,220, 75, 41, 70,102,190, 14,153, 5,101,200, 44,208, 65, 37, 19, 33,188,231, 75,210,115, 71, -127, 24,226,239,235,244,181, 69, 23,180, 10, 9,241,137, 7,146,211, 50,198,180,104,245, 2,126,216,182,165, 29,241,244,148,209, -212,212, 50, 75,143,223,184,113, 99,126,235,214,173,157,190,252,242,203,210,128,128,128,150, 1, 1, 1,190,177,177,177, 17,141, - 27, 55, 30,184,110,245,162,136,233,243,150,123,139, 96,178,109,215,161, 3,171,176, 34,184,124,238,164,110,235,198,245,233,134, -194,146,217,181,233, 50, 10,187,197, 89,197, 4,206, 30, 94,119,149, 98, 99, 47,177,194, 16,155,191,125,218, 14, 0,251,155,244, -125,231,215,223,174,221,143, 13,189,158,228,114,230,122,108,118,190,198,232, 31,127,236,189, 90, 63,112, 89, 82,158,193, 82,252, -145,177,116,109, 57,252, 1, 37,196, 25, 48,191,183, 8,204, 25, 45, 2,128, 0,233,169,215,127,180,160, 48,154, 80,158, 7, 98, - 83, 75, 80,172, 53,161,204,104,130,151,147, 18, 57, 89,169, 88,247,245, 86,220,184, 22,137, 94,125, 7,225,219,239,127,192,132, -215,135,215,121, 93, 25,134,128, 97, 72,121,230,202,108,174, 84, 50, 17, 64,128,194, 82, 35,246, 95, 72, 65, 19, 95, 6,164, 30, -189,133,214, 42, 57,212,197,101, 96,196, 42,196,156,223,174, 56,118,230,234,220, 79,150,111,122,191,168, 36,235, 81,124,244, 37, - 4,216,231,193,215, 67,143,168, 44, 91, 92,203,247, 65, 64,147,198, 96, 36,145, 22,105,231, 70, 53, 95,118,152,249,105, 64, 88, -171,224,240,134, 46,182,208,234,185,242, 44,150, 8, 91,183,108, 65,210,195,212,113,185, 81, 7,111, 88, 30,109,205,148,100, 37, -228,200, 92,253,222,186,115,249,116,226,144,215,166,194,173, 65,195,150,150, 30,107,169,153,226, 45, 48, 88,132, 16,198,193,167, -213,182,109, 59,246,142,240,109,232,134, 83, 87, 31,226, 70,124, 1,108,172,237,192, 42,221,225,223,101,172,221,157,227,171, 95, -210,230,150,108, 19, 75, 20,227, 95,104,215, 1,148, 82,220,143,137,202, 87,171,109,159,248,108,214,164,199,220, 4, 96, 83,121, -159,194, 57,168,165,181,173,195,205, 50, 3,135,180,180, 84,252,126, 49,162,117,249,243, 44, 70, 42, 97,112,242,122, 54, 12, 38, - 30, 6, 35,143,214,205, 3,203,196, 18,121,167, 47, 54, 30,109,151,153,149,205, 40, 84,182,188,173, 83, 99,137,157, 49, 83,119, - 43, 81, 45, 49,152,120, 52,118,175,253,119,185,194,161,241,103,239,190, 55, 61, 72,100, 37, 71, 81,169, 78,159,145,154,230,246, -221,174,223, 74,238,221,143,110,208,200,167,161,205,162, 69,159, 72,138,202, 40,178, 11,117,200, 45, 54,144, 87, 70,141,243,216, -190,249,219,215, 0,212,104,176,170,161,249,238,237,235,141, 14, 42, 9, 41,214, 24,105, 78, 81, 25, 55,245,173, 25,205,235,211, -246,170,252,201, 92, 37,148,226,102, 98, 33,164, 18, 22, 82, 9, 11,163,201,178, 18, 73,231,224,225, 74,103,103,187,215,218,182, -106,138, 19,215,115, 32, 98, 9,180,165, 69,122,153, 84,117, 55, 48,208,143,105,213, 50, 4, 93, 59,182, 71,124, 98, 82,192,137, - 83,103, 86, 94,141,188,177,196, 57,100,232,236,156,187, 7,158,232, 22,174,141,228,180, 28,101,150,201,107,164,139,155, 83,200, -160, 65, 3,165, 13, 27,184, 18, 39, 71, 59,112,144, 96,202,212,183, 93, 44,213,225, 41, 5, 5,240,249,194,185,208,233,245,112, -177,179, 2,165,192,230, 53,159, 66,175,215,195,195, 81, 6,117,169,177,198,227,235,242, 35,213, 25,162,170, 70,171,226,118,197, -243,150, 46, 93, 58,160,178, 70,197,227, 85,169,186,191,242,241,159,127,254,249,103,149, 30,175,177,198,175, 50,162,114, 17, 82, - 91,163,156, 91, 12,237, 32,151, 42, 79,126,187,116, 6, 83, 88,106,128, 84,194,160,177,111, 35, 76,123,103,186,162, 71, 43, 23, -104, 97,131,159,118,109, 45, 50,113,198,159,159, 60,197,147,168,220,130,130, 84, 54, 14,191,238,218,253,163,216,209,193,150,172, - 60,154, 19,155,173, 54, 60,158,226, 32,241,246,105,195,229,195,171,220, 9,197, 49,169, 66,233,109, 48,232,106,124,113, 25,152, - 95,208,205, 39,147,192, 50, 12,216,231, 52,179, 23,195, 48,220,247, 95, 47,130,147,141,185,230,234,211, 85, 59,138, 7, 58, 31, - 63, 83,217, 92,181,106,213, 74,221,178,101,203, 66,166,106, 49, 85, 53, 60,186,250,195, 19,163, 37,158,214, 92, 85,160,205,188, - 29,137, 42, 51,241, 19, 18, 42,118,106,180,119,230,200, 87, 95,155,235,218,108,160,245,195, 12, 53,172, 24, 35,194,130,220, 17, -113, 98, 63,159,146,120,111,178, 37,218,217,121,106, 47, 39, 71, 71,220, 72, 40, 65,122, 94, 25, 50,242,205,230, 42, 51,191, 12, - 69, 90, 19, 90, 53,114, 65,169, 86,231,101,137, 86,117, 80, 66, 15,158, 56,126, 98, 76,223,193, 35, 48,237,253, 79,250,110, 92, -251,213,109,185,107,208,235,218,172,123, 87, 45, 57,126,239,222,189,156,143,143, 79, 98,110,110,110,216,236,217,179,139, 27, 53, -106,228,182,104,209,162,137,141, 27, 55,246,232,209,173,155, 58,242,183,118,219,166,191,255, 73,183, 15,167,111,244,101, 24, 38, -139,242,244,112,122,169,241, 99,154, 19, 93,237, 72,161, 10, 30, 29,154, 27, 67,130, 63, 29,211,163,147,227, 97, 71, 57, 19, 44, - 38,186, 81, 36,248,211, 61, 52,250, 99, 67,252,177,175,139,155,191,178, 98, 90, 90, 33, 63,175,140,113, 91, 82,151,185, 2,204, - 89, 33,189,129,135,141, 92, 92, 49,114, 20,160,112, 95,187,230, 43,133,179,173, 20, 34,150, 64,204, 50, 80,107,140,200, 43,210, -227,253,217,181,250,191, 74, 80,158,227,121,104,116, 28,180,122, 19, 8, 8,138,139,114, 49,247,253,119,209,119,224, 48,140,155, -252, 30, 10,181,192,181,196, 98, 24,140,198, 58,109, 17, 75, 0,141,206,132,113,189,189,145, 87,108, 64,105,153, 9,122, 3, 15, -133, 76, 4,145,136,129, 82, 42,130,181, 92, 12, 66,168,196,221,221,125, 34, 0,136,197,226,178, 71,143, 30,237,168, 73,147,231, - 41,124,188, 92,161, 53, 48,120, 97,196,114,244, 12,247,199,205, 83,155, 68,231,174,220,241,125,255,147,149,152, 58, 42, 28,251, -238, 55,129,131,139, 15, 84, 10, 25,140,148, 1, 96,217, 20, 32,148,126,204,187, 7, 14, 27,181,254,251,205,247, 23, 46,248, 64, - 86, 80, 74, 32,149,136,112,230,204,175,184,116,229,218,234,156,168,131, 53,198,245, 52,136, 41,227,106, 99,107, 3,153, 21, 11, -131, 65,103,113,193, 55,199, 83,128, 34,200,165,249, 16,115,141, 34, 69, 16, 95,205,190,186, 50, 88,132, 16, 98,235, 17,178,101, -253,198, 31, 94,115,119,115,193,129,211,183,177,109,227, 55,104, 16,210, 23, 15,174,175,135, 87,232, 16,168,124,187,195,202,122, -239, 68,134, 21, 53,159, 58,125,238,176,208, 54,225,184,120,254, 55,100,103,102,172,167, 52,198,162, 26, 52, 86, 76,222,233,214, -115, 0,116, 6, 14,157,186, 15,192,241, 35, 7,166,161,124,240,196,211,194,178, 12,255,246,132,145,226,236, 66,189, 56, 91,173, - 67, 90,174, 22,137,153,165, 56,244,227, 38,139,187,164, 8,203,132,117,105,233, 41,158,184,236, 76,138,151,167,187, 78,172,211, -202, 99,227,227, 3,199,143,121, 77,220,168,105, 0,147, 83,168, 67,142, 90,143, 28,181, 30,165,101, 70, 52,241,104,200,232, 76, -162,240,250,198,234, 98, 43, 19,127,251,115, 34,108, 20, 34,180, 15,114,124,234, 34,108,158,231,255, 48, 87,139,205,153,171, 91, -137,106,200, 36, 44,172,196, 44,164, 18, 6, 70,206,178,230, 51,140,105,228,164, 49,175,200,245, 70,138,220, 34, 61, 88,134,192, -205,201, 81,234,229,238,143,205,203,223, 6, 0, 76,248, 96, 45,198,191, 57, 26, 1,254, 77,161, 86, 23,203,199, 79,153,190, 2, -213,212,221, 85, 7,165,148,254,112,232, 92,240,181,187,201, 51,223, 24,243,186,120,196,160,206,204,141,132, 34,100,228,235,144, -240, 64, 3,189,177,126,179,209,152, 56,115,159,239,150, 61, 63, 67, 33,196,225,200,213, 0, 0, 32, 0, 73, 68, 65, 84, 97,145, -163, 54,255,187, 44, 94,179, 7, 42,185, 8,153, 5,122,240,124,205,217,187,186,252, 72, 77, 89,167,250, 80,217,132,213,182,159, - 16,242,243,156, 57,115, 62, 4, 64,231,204,153,243, 97,197,253,165, 75,151,106, 1,164,215,117,158,199, 53, 88, 53,117, 11, 58, -183, 24,218, 65,110, 37, 59,185,125,205,135,242,211,177, 20,171, 79, 94, 71,191,118,238,144,136, 8,100, 42, 55,220, 76, 44,196, -233,211,135,138,207, 95,186, 82, 70, 24, 99,157,195,162, 84,238, 77, 3,228, 74,135,136,117,223,111, 33, 14, 14, 14,116,203,233, -156,228,188, 82,238, 79,243, 71, 93, 62,242,181, 7, 12, 92,103,117, 78, 76,124, 93,122, 60,165,146,165,235, 14,131, 82, 10,240, - 28,120,240, 96, 37, 82,165,119,219,209, 89, 32, 0,199,241, 50, 17,203,152,127,193,151,255,252,166, 60,151,154,124,101,103,173, - 93,135, 4,128,141, 66,140, 31,207,166, 66,157,159,158, 59,208,249,248,239, 21,230,234,120,148,244, 65,104,104, 43,117,219,182, -109, 11,165, 82, 41, 88,150,173, 43,204, 39,245,159,209, 92,213, 4,165,215,141, 0, 62,247, 8,236, 60,168,175, 50,164,173, 21, - 17, 35, 52,208, 29, 17, 39, 15,240,151,142,109, 26,170,201,138, 61,106,153,142,185, 70, 38, 61, 95,139,180, 92, 45, 50, 10,202, - 51, 88,249, 58, 16, 2,148,233,159,109,250, 26, 77, 86,236, 17, 85,131,102,235,117, 70, 76,238,212,107, 8,102,126,242, 77,211, - 29,235,151,157, 87,186,248,133,149,102,199,221,177, 68, 35, 41, 41, 73,231,234,234,122,163,184,184,248,197, 21, 43, 86,148, 4, - 5, 5, 89,201,229,242, 60, 0,178,184,251,247, 37,103,126,217,251, 48, 39, 61,125,146,193, 96,176, 44, 45, 2,192,167,235, 88, -105,160, 77,254, 68,111, 69,251,222,141,221, 20,240, 86,148,246, 14, 84,221,250,210,165,199,140,207,178, 79,175,202,206,208,153, - 78,229,107,208, 50,173, 68,252,171, 37,122, 38,131, 62,249,213, 73,115,192, 50, 4, 6,157, 62,185, 98,191,179,173, 20,159,236, -184, 7,107,185, 24, 42,185, 24,214,114, 17, 58, 4, 57,162, 30, 9, 34,106, 52, 81,104,245, 38,104,117, 28,180, 58, 19,156, 26, -218,225,251,237,251,240, 40, 71,139,195,145,185,136, 73, 42,130,191,151, 18,148,214,157,119,226, 41, 87,250,202,196,121,214, 44, -195,128, 37, 96, 2,155,250, 32,191, 68, 15,137,136,129,149,149, 21, 20, 50, 17,108, 20, 98,136, 69, 98, 92,189,125, 27, 58,157, - 14,109,219,182,173,118,164,212, 31, 17,154,179, 88,126,190, 30, 48, 24, 77,248,229, 92, 52, 22,207, 24,138, 23, 59,183,193,251, -172, 21, 98,116,173, 96,237, 96, 13,158,176, 48,152,120,232,140, 28, 0, 82,163, 1, 38,132,180,135,185, 46,162,140, 82,122, 57, - 35,102,255, 35,151,102, 67, 38, 30, 59,121,102,199,192,126,189,112,227, 86, 20,126, 58,112,248,124,174,163,122, 86,165, 99,154, -163,124, 20, 28,165,180,214, 66,230, 90,206, 75,148,174,129, 51,194, 59,116, 69, 73, 65, 54,178, 82, 30, 90,252,161, 30,220,208, - 26,239,206,152,230, 23, 16, 16,224,199,241, 20, 60, 79, 17,236,109,141, 73, 83,166,248, 53,105,234,239,199,151,143, 34, 12,244, -178,174, 85, 71,233, 26, 48,117,201,138,117,175,123,121,121,225,248,133,123, 88, 58,111,242, 13,133, 66,213,168,141,131,181, 29, - 31,208, 18,137,119, 79,193,193,167, 16, 54,174,126,158,131, 94, 28,227,217,183,255, 16,220,185,117, 29,171,190, 92,116,169,148, -149,127,102, 73,172, 42,215,198,206,173,194, 58,191,106,227,224,138, 2,117, 9, 84,246, 46, 8,106,209,230, 85,149,107,227, 15, - 74,178, 18,158,106, 74, 22,192,252, 3, 88,103,224,145, 95, 98, 64,106,142, 22, 15,179, 52,120,152,169, 1,207,255,209, 21, 92, -215, 59,148,128, 16,165, 84, 36,114, 48, 62,104,120,251,215, 51,212,219,203,149, 44, 91, 52,155, 53, 80, 41,178,213,122,228, 20, -233,145,163,214, 33,167,200,108,176,236, 85, 34,240,148,175,247,232,140,252, 18, 3,172,229, 34,216, 42, 37,224, 44, 52, 64,213, -241,201,202, 93,237, 83,115, 74,122,124,185,120,158,228,230,195, 82,220, 78, 84, 67, 42, 97,204,217,171,114,131,101,105,183, 48, - 43, 98,166,245,239,217, 22, 41, 57,101, 16,177, 12, 68, 44,131,166,205, 90,195, 73,193,163,199,136, 57, 0,128,129,253,204,211, -144, 36,102,148,226,200,229, 12, 0,144, 88, 26,107,118,110,145,236,192,169, 27,211,119,125,191,204,170,140, 19, 99,221,209, 36, -148,233, 57, 72, 37,229,221,238, 86,245,251,126, 51,113,230, 12, 86, 74,142, 1,165, 58, 14, 69, 26, 3, 40, 5,174, 62, 40,134, - 70,199, 65,173, 49,160, 93,128, 67,173, 26, 53,249,145, 74,143, 87,155,129,178,148,242,227,115,240, 71,157, 86,181,186,149, 51, - 88, 75,151, 46,141, 90,186,116,105,181, 25,177,154,168,181,200,221,185,197,208, 14,114,137,236,228,182,175, 63,148,255,122,159, - 34,226,118, 30, 94,238,228,137,188,236, 84,108, 92,187,154,167, 20,144,202,172, 50, 57, 19,127,172,140, 55,205, 46,188,117,164, -214,126, 95,107, 15,127, 63,153,220,225,236,210, 21,235,121, 71, 39, 55,236,185, 88,144, 81,168,225,254,148, 43,164,148,130,154, -120, 73,177, 5,230, 10, 0, 24,134, 24, 62,153, 54, 20, 60,165,248,120,245, 30, 44,157, 57, 18, 42,153, 72, 65, 8, 81,148,150, -153, 48, 99,209, 38,172,152,255,166,181, 66, 42, 42, 55, 6, 28, 38, 79,123,223, 18,105,104,117, 28, 74, 11, 50,243,154,151,172, -172, 98,174, 66,213, 97, 97, 97,133,246,246,246, 80, 42,149,245, 54, 88,213,153, 43, 55, 55, 55, 15,133, 66,225,224,231,103,174, -117,101, 89, 22, 28,199,149,198,197,197, 61,213,164,111, 69,133,185, 7,211, 31,222,109,219,161,107,127,156, 61,121,144,191,244, -203,198,161,245, 25, 98,110,103,107,147,114, 61, 58, 57, 8, 80, 33, 45,175, 12,153, 5,101,200,200,215,193, 96,226,225,237,170, - 64,106,202, 35, 40,229,210, 58, 71,167, 85,160,112,243,235,195, 80,118, 18, 79,240,189, 38, 51,230, 23, 0, 40, 73,139,154,162, -112,241,191, 19, 21,117,107,213,128,145,211,172, 94,124,105,138,100,195,231,111,205, 1, 48,210, 82,221,172,172, 44,141,139,139, -203, 37, 15, 15,143, 1, 31,127,252,177, 14,128,149, 78,167, 83,188,249,230,155,138,228,228,228,119, 41,165, 22,197,216,233,205, - 45, 78, 68, 70,251, 52, 14, 8, 29,229,173, 40,237,213,189,115, 56,218,135,120, 33,181,115, 56, 0,188,147,172, 81,249,119,156, -188,241, 71, 95,103,251, 99,235,182,254,178,116,194,136,238,239,122, 12,252,116, 69,250,145,143,107,205,136,221, 63,183,233,201, - 9,152, 8, 32, 46, 47,124,175,108,176, 76, 28,173, 79, 23, 28, 53,114, 60, 52, 58, 19, 52, 58, 19, 74,202,140, 56,125, 51, 27, - 89,133,122, 20,148, 26, 80,166,227, 64, 1, 24,140,180, 98, 86,145, 90, 73,186,184,213,174,226,182,103,232, 72,245,234,133,211, -108,126,186,144, 10,165,212, 92,143,101,171,180,130,141, 66, 12,128, 34, 34, 34, 2, 21,195,227,107,131,231,121,252,116,252, 42, - 86,108, 61,131,227,155,102, 67,102,197,162,229,144,133, 24, 51,164, 45,120,158, 34,254,254,221, 44,191,160, 86,174,140, 74, 1, -134, 65, 69, 77, 74,109,215,211,145, 82,122,152, 16, 50,128, 16,210, 31,230,154,145,130,131, 92, 94,233,153,163,187,148,165, 90, -157,169, 32,249,222, 55, 40,205,237, 98,238,130, 7, 15,243, 15,244, 8, 66, 72,231, 58, 3,174, 6, 66, 8, 35,119,241, 95, 61, -126,202,140,151,155, 52,105,140, 61, 59, 55,131, 82,242,147,165,199,239, 56,114, 9, 43, 87,253,121,196,224,164, 41, 83,252, 54, -172, 91,247,167,125,175,191, 57,177,198, 81,132,132, 16,226, 25,210,125,118, 64, 96, 48, 46, 71,165, 98,217,130,169, 55,202,178, - 19, 71,233, 85,142,147, 12,165, 25,239, 5,135,180,130,155,171, 35, 50, 51,178,208,109,240,139,232,219,187, 55,238,220,186,142, -197, 31,189,127, 9, 26,125,175,186,178,182, 21,240, 84, 60,185,107,239, 33, 98,141,206,128, 53,203, 62,194,164, 89, 75,208,174, -219, 64,241,221,155, 87, 38, 3, 88, 88,167, 64, 57,122, 35,143,110, 45,156,161, 55,114, 48, 24,121, 28, 78,100,159,248,158, 33, - 4, 16,177, 12,211,170,177,185,123,183, 72, 91,115,151, 17, 0, 48, 34,146, 89, 80, 84,236,243,205,146,233,108,169,142, 67,142, - 90,135,236, 66, 61,114,138,116,200, 85,235,204,230, 74,173, 71,174, 90, 7, 17, 75, 16,151,152, 6,150, 37,245,174,191, 43, 44, - 53,224, 5,127,123, 0, 4,204, 83,118,135,228,154,156,251,222,138, 77,237,177,108,209, 60,201,205,196, 18,220,126, 88, 84,110, -172, 24, 88, 85, 50, 88,181, 36,113, 30,227, 18, 60,168,253,235, 35, 7, 55,179, 81,202,144,118,191, 24, 34,134, 64,196, 18,216, - 56,123,193, 86, 86,134,105, 83, 39,193,209,193, 22,143,114,203,176,250, 64, 44,110, 71, 63, 0,175,173, 95,179,215,254,112,124, -232,235,175,141,144, 50, 98, 25,118,156, 76,132,149,132,133, 8,122, 68, 95, 57,167,203, 74,125,104, 40, 46, 42, 84,138, 68, 98, -139, 68, 9, 64, 77, 28, 15, 74, 41, 62,251,116, 46,118,111, 93,139,227,215,178, 64, 97,158,170,225,247,253, 95, 97,198,156,197, -200, 41,210, 3,168,185, 36,201, 2,142, 2,232, 95,113,167,114, 54,171,134, 12, 84,117, 68, 86,214,168,120,126, 85,141,170,143, -149,235, 89,148,105, 23, 85,117,138, 21,247,157, 91, 12,237, 32,179,178, 58,185,117,245, 92,249,233, 88, 60, 54, 87,218,146, 92, -108,223,180,161,132,130,239,153,117,247,144, 69,221, 57, 0, 96,227, 28,216, 68,106,109,115, 97,246,167, 43,140, 78,110, 13,185, - 95,110, 22, 21, 20,151,113, 79,164, 65, 8, 33,176,113,241, 52, 57, 54,122,225,195,252, 36,249,178,170,163,222,158,132,128,167, - 20, 71,174,100, 2,188,249, 69,220,115, 46,205, 60,143, 15, 75,192,241,230,126,238, 83, 55,178, 31,239,179, 4, 66,128, 31, 79, -222,200,173,201, 92,217,217,217,193,206,206, 14, 42,149,197, 43, 45, 84,180,175,218,204,149, 66,161,112, 56,113,226,132,204,198, -198, 6, 44,203, 66,167,211,225,197, 23, 95,172,151,118, 5, 74,215,128,145,237,122, 12, 91,218,177, 91,127,252,118, 98, 63,127, -233,151, 45,195, 52,217,245,152,191, 7, 64,223,206, 45,142, 44,251,106,141,239,172, 57,243,164, 74,153, 8, 5, 37, 6,176, 12, -129,183,139, 28,142, 42, 22, 23, 79, 31, 41, 11,247,119,180,216,252,121,121,250,108,255,106,245,122,199, 21, 95,124,218,203,222, -222,215,181,160, 32,177, 8, 0, 52,217,177,235, 85,110, 1,247, 61, 27,158, 60,219,178,243, 80,184, 52,104,106, 81,141, 88,101, -178,179,179,179, 67, 66, 66,238, 5, 7, 7,183, 25, 54,108, 24,253,236,179,207,236, 83, 83, 83,247, 90,106,174, 0,160,123,239, -246, 51,148, 98, 99,184,163,156, 9,110,236,166, 64,251, 16,115,239,231,136,254, 29,225,233,213, 16, 9,153,154, 86,121, 90, 94, - 82,106, 20, 55, 94,183,126,115,164,183,131,104,130,169, 68, 27, 13,160,218, 41, 5,106,131,160,252, 67, 82, 81,110,174,100, 34, -168,228, 98,240,212,252,152,133, 80,163,137,135,222,192, 67,163, 55, 65,163,227,204,102, 75,207,129,231,205,197,202,132, 16, 24, -140,156,249,148,245, 11, 16, 54,246, 78,240,245, 49,199,248,120,147,139, 65, 8,224,236,236, 12, 71,199,186,231, 29,229,121, 30, -122,131,249,223, 87,111,228, 30, 15,234,208, 27, 76,160,148, 34, 54, 54,110,118, 82, 98,210,224,166,126, 77, 58, 7,183,104,229, - 32,183, 98, 0,160,182,122, 49, 66, 8, 25, 5,192, 72, 41,125, 60, 40,194,167, 89,199,178, 3,251,127, 82, 14, 24, 56,176, 64, - 95,146,179,175,210,147, 89, 0,125,202,205,152, 69, 38,163,242,137,148,206,254, 67,188, 2,219, 47, 25, 61,118,146,127,183,158, -189, 17,113,250, 20, 14,239,223,181,173, 52,251,126,173,243,117, 85, 38, 32, 32,224,137, 81,132, 77,154,250, 63, 49,138,208,199, -215,175, 70,131,101,107,219,194,166, 69, 88, 87,175,228, 92, 3,142, 29,251, 5,165,234,204, 5,122,125,137, 6, 98,186,241,215, -253,223,141, 27, 53,249, 99,155,118, 97,109, 96,103,173,128,147,189, 10,215,175, 93,194, 23, 11,231, 93,130, 70,223, 43, 39, 39, -218,162,186, 88, 18, 28, 44,105,218,208,103,186,119,227,102,184,126,229, 2,226, 99,239, 70,221,140,188,212,172,105, 72, 91, 56, -123,120, 79, 39,193,193,159,211,232,232, 58, 87,170,160, 28, 77,125, 99,226,123,230,219,229, 95,159,237, 90,250, 90, 1, 85,223, -132, 4, 38,163,129,219,177,225,139,236,202,163, 8,107,210, 45, 43, 46,220,119,254,202,157,247, 7,245,238, 68, 42,186, 2, 43, - 76, 85,213,251, 77, 27, 40, 17,127, 39,134, 55,150,170, 45, 54,194,229,209,103, 77,153,250,142,220, 28, 59, 15,106,158, 88,173, - 94,239, 27, 0, 40,227, 36,175,174,251,244, 67,114, 43,169, 20,119, 30, 22,153,187, 5,203, 13,150, 84,194,194,170,252,175, 69, - 83,147, 49,204,178,215,135,247, 70,174, 90, 15,158,210,242,185,244, 8, 68, 34, 49,146,139,128,148,162, 18,228, 20,102, 33,241, - 97, 18,212,153,137, 96, 24, 22,142, 13,154, 66, 83,231,132, 60,102,138, 57,149,191,145, 71,147,225, 3, 58,177, 7, 47,102, 64, - 46, 21,161, 56, 55, 5, 23, 78,236,209, 82,142, 91,175, 55,234,119,187, 80,171,187,209,119,246, 90,180, 74, 9, 1,114,138, 74, -245,174, 82, 9,139, 61, 91,190,193, 43, 99,166,152, 31, 40,111,234,251,243, 22,129, 16,130, 2,117, 9, 0,242, 68, 86,180, 38, - 63, 82, 78, 78,165,204,211, 19,247, 43,153,162,234,238,147,242,251,250, 26, 52,244, 85, 76,149,190,202,126,125, 21, 61,139, 38, - 71,174, 49,131, 37,102,216, 83, 91, 86,125, 40,139,202,150,226,106, 76, 38, 94,238,228, 9, 77, 81, 46, 54,124,187,178,164,204, -104,232,155,115,199,114,115, 5, 0, 28,131,126, 67,222,152,121,199,187, 81, 19,227,217,232,226, 20,181,198, 88,227, 11,214,110, -232, 28,249,245,163,223,140, 52, 25, 31,124, 96,211, 32,132, 55,153, 12,203, 53, 89,177, 75,170,123, 46,207, 83,171,143, 87,239, - 49,155, 43,158,199, 7, 95,108, 7,229,185,242, 9,252, 56, 80,142,199,219, 11,214,194, 84,126,155,227, 57, 16, 35,167,168, 78, -171, 50, 42,153,228,100,243,146,149,182, 85,205, 85,235,214,173, 11,237,236,236,224,232,232, 8,123,123,123, 84, 24, 34, 75,168, -173, 91,208,207,207, 15, 42,149, 10, 17, 17, 17, 80,169, 84, 80, 42,159,110,130,124,149,107,224, 43,109,187, 15,253,161,219,192, - 55,153, 95, 15,108,224,174, 68,252,252,178, 54, 59,198, 98, 19,192,113, 28, 49, 26,141,232,221, 53, 52,249,230,253, 71,199, 23, -125,250,105,159,176,238, 47, 73,219, 7,184, 64,171, 55, 33, 53, 37, 5, 23,207, 28, 42,115,177, 21, 31,247,247,117, 74,229, 56, - 14, 28, 87,243,164,123, 21,232,116,250, 60, 70, 44,115, 28, 49,242, 85,105,228,213,171, 63, 40, 93, 3,118, 49, 44,127,139,114, -108, 11,128,190,210,162,121, 16, 12, 38, 30, 90, 77, 81,254,211,180, 59, 42, 42, 42,242,171,175,190, 10, 16,139,197,158,251,246, -237,203, 45, 40, 40,168,215,114, 65,167,142, 94, 93, 45, 82, 25,227, 36,180,108,148,183,162,180, 87, 74,167,112,140, 28,208, 17, -187,143, 94,192,111,231, 46, 33, 89,163,186, 89,170,103, 15,166,166,166,235,130,237,213,251,135,116,104,196,254,180,189,232, 39, -151,110, 31, 12,167, 84,126, 42, 39,226, 99,139, 7,120, 16, 2, 20,105,141,149, 50, 88,230,250, 38,134, 33, 22,103,176, 8,144, -120,238,226,245,144, 80,255, 32,220, 76, 40, 66, 78,129, 14, 26,189,249,125, 79, 65,225,104, 35,129, 84,194, 34,249, 97, 34,120, -106,120, 88,159,107, 1,138,156,190, 47, 79, 50, 15,128, 1, 47, 18,139, 69,160, 40,159, 92, 87,102, 85,226,226,226, 98,145,193, - 50,114, 28,134,245,110,139,118, 97, 45, 48,120,242, 87, 0,128,211,219, 62,128,189, 74,130,125,251,246,225,209,133,149, 59, 26, -183,159,114,242,238,157,232,151,162,110, 92,124,181,111,168,188,149,155, 40,163,198,174, 13, 74,233, 33, 66,136, 21,128,110,132, -144, 23, 1, 68, 80, 74,141,156,137,127,212,167, 79,111,158,227,248,199, 53, 17,132, 16,123, 0,225, 0,242, 1, 92,167,148,214, -154, 34, 81,186, 4,246, 4,131, 93, 32, 68,166,146, 43,146,195,123,142,244, 8,107,215,214,118,200,176,225,176,146, 88,225,215, - 83, 39,240,245,202,207,247,148,100,220,123, 98,146,218,218,168,174,120,189,186,125,181,117, 23,169,213,182,165,177,209, 55, 11, - 18,179,244,246, 34, 59, 63,136,165,214,147,136,173,199,106, 86,170,250,184, 65,187, 49, 54,167, 47, 92, 69,212,205,139,240,112, -146, 35, 49,254,129,230,238,173, 27,107, 53, 68,252, 41,205,137,182,168, 16, 23, 0, 20,121,220, 75,237, 70,247,177, 47, 51,112, - 56,127,230,104, 25,111,226,251, 92, 62,251, 75,188,151,127,152, 44, 36,172,135,125,238,161,141,195, 0,236,174, 75,231,225,149, - 29, 79,148, 94, 52,110,251, 74,250, 47,167,206,169, 60, 26, 54,101, 65, 24,232,180,165,200, 73,190,107, 42, 43,202,210,100,221, - 57,232, 97, 73,124,201,166,180, 5, 31,125,190,126,106,104,203,102, 74, 74,173,254,148,177,170,184,157, 87,172, 55,215,204,150, - 22, 34,225,206,133,178,156, 7,234, 90, 75, 86, 56,206,168,200,203,203,127, 60, 52, 95, 94, 98,231,163,182, 85,155,151,141, 33, - 0, 88,192, 86,109,247, 56, 83,145,151,151,111,197,113,198, 58,191, 59, 0, 16, 59,107, 25,238, 60, 76,127, 92,208, 46,149, 48, -229,181, 87,127,100,178, 44,129, 0,161, 34, 43, 37,210,242,202,192, 80, 10,158, 55,193,100,212,163,164,168, 8,233,105,153,200, -202,202, 70, 73,177, 26,114,149, 29, 66, 90,181,129,181,181, 53,238, 93,251, 13, 0, 57, 98,137,126, 25, 47,241, 11,107,211, 70, - 28,149, 84, 12,131,145,135, 24, 6,156, 63,254, 99,153,201,168, 31,152,117,231,224, 25,139,130,172,132,137,167,191,222,189,159, -220,204,203,201,157,220, 72, 40,196,246,239,214,152, 71,147,154,204,217,204,168, 71,165, 72,207, 43, 69, 90, 74, 50, 5,207, 89, - 84,102, 81,137,170,165, 30, 22,151,126,212, 67,243,185, 82,163,193, 50,153, 76,178,134,222, 62, 24, 57,105, 52,214,174, 93,135, -216,132,100,124,247,237, 42,179,185,186,125,224,119, 75,196, 43,175,182, 93,154, 21,179,106,236,250,196,172, 19, 81, 26, 70,103, -168,125,248,132,196,222, 3,225,175, 47,125,124,241,127,120,219,119, 79,117,154, 0,192, 50, 68, 95,222, 45, 8, 66, 8, 42,186, - 5,215, 46,156, 0,133,148, 5, 33, 4, 26,157, 9,175,191,187, 2,219, 86,152,127, 89,141,159, 58,243, 79, 31, 60, 85, 53,203, -141, 16, 25,219,199,119,208,226, 77,209,135, 46, 36, 57, 38,244,239,223, 69,221,170, 85,171, 66,185, 92, 14,165, 82, 9, 27, 27, - 27,216,216,216,192,206,206, 14,213, 81,141,166,107, 93, 53, 87, 12,195,192,198,198, 6,114,185,188, 90,227, 86,215,234,229, 42, - 55,255,225, 47,116, 27,186,171,251,160,113,204,175, 7,190,227,175, 69, 28, 25,174,205,190, 95,107,150,169,170, 38,207,243,183, -134, 13, 27,214,124,210,164, 73,146, 15,167, 14, 59,113, 34,226,122,236,254, 83, 63, 13,204, 47, 44,246,226, 56, 14, 74,185, 52, - 37,172,169,253,145,224, 38, 46,201,119,239,222,229, 35, 34, 34,116, 0,238,212,166, 9, 0,185,185,217, 91, 78,159, 62,243, 69, -231, 46, 93,241,221,214, 93,253,163,163,239,245,143,127, 16, 7, 47,239,198,104,212,216, 15, 26, 98,135,211,103,207,163, 56, 63, -107,139, 37,113, 86,166,121,243,230, 13, 90,182,108,233, 89, 88, 88, 88,182, 96,193,130, 0,142,227, 14,135,132,132,180,105,214, -172, 89, 70, 84, 84, 84,141,191,138, 43,107, 94,220, 62, 58, 7,192,118,159,174, 99,247,166, 27, 10,167, 3,248,220,171, 97, 67, -252,118,238, 18, 46,255,126,101, 93,174,162,225,167, 99, 95,125, 99,130,143,163,120,194,224,246, 62,172,139,189, 2, 59,191,251, -138, 61,116, 49,105,101, 82,158,241,123, 0,139,235,138,179, 50,249,197, 6,116, 8,118,132,201, 68,193, 81, 10,134, 16, 88,203, - 69,213, 26,172,234, 52, 69,122,233,155, 83, 38, 79,138, 15,105,209,106,198,171, 99, 38, 73, 90, 53,105,136,171,113, 5, 0, 8, - 28,109, 20, 72, 79,207,192,249,195,223,155, 10,210, 98,214,177, 44,255, 68,247, 78,109,113,166, 94,223,221,180,226,182,187,187, -251,196,155,119,239, 34, 34, 34, 2,142,142,142,168, 48, 87,213,117, 17, 86,213, 44, 40, 40,254,125,209, 87,223,119,152,240,218, - 96, 12,232,218, 12,103, 35,227,161, 55,242, 48,152,248,199, 69,174,137,151,214, 91, 77, 31,209, 88, 63,117,152,127,145,198,104, -149,244,113, 82,209,217,202,147,200, 86,213,164,148,234, 9, 33, 39, 0,180, 5, 48,152, 16,114,146, 82,218,166, 82, 12, 4, 64, -115, 0,205, 0, 92,162,148, 38, 90,212,118, 6, 59,175, 71, 94,115, 52,152,120,156,191,114, 43,168,123,135, 86,160, 60, 69,100, -228, 53,108,220,188,177,236,206,237,155,203, 75,179,220, 22,210, 26, 38,183,173,233,122, 90, 58,138,176,186,125, 21,154,148, 70, -152, 84,174,129,235, 46, 94, 56, 59, 79,234,209, 6,129,253, 62, 28,148,118,235,240, 32,183,224,222,112,106,210, 1,233,183, 14, -226,198,239, 59,127,185,102, 50,205,145,241, 76,114,105, 78, 76,141,102,191,166, 56,165, 50,197,180,102,173,187, 32,229, 81, 18, - 30,198,221,221,166,205,139, 75, 87,185, 5,110, 75, 75, 77,158,220, 40,184, 3, 46,156,216,253, 14,106, 48, 88,117,189,231,157, -172,212,235, 34, 46, 92, 28,153,182,247,176,107,113,137, 86, 46, 18, 49, 26, 41,139, 44,137, 38,254, 71, 75,227,164,209,209, 6, -151, 38,237,135,189, 58,105,254,209,149, 95, 44, 16,187,216, 73,145, 89, 80,134, 34,141, 17, 69, 90, 35, 88, 2, 52,245, 80, 65, - 91, 90,132,203,191,108, 55, 82, 67,254,176,242,122,212,106, 53,157,155, 13, 94, 76, 8,222,158, 63,127, 46, 88, 43, 27, 15,223, - 30, 31, 26, 24, 95, 55,216,163,202,100,230, 14,128,111,143, 15,161, 43,206, 26, 56,127,254,220, 0, 74,105, 15,231,102,131,139, - 43,214, 34,172,169,237,121,197, 6,188,214,205, 11,122,163,121,254, 48,142, 51,215,218,241,229,179,154,155, 3,170,187,237, 20, -144,236, 57,122, 9,255,199,222,121,199, 55, 85,189,127,252,115,114,179,218,116,111,154, 14,104,129,150, 82,202, 46,136, 12, 65, - 64,150,168,160,192, 79, 81, 81,145,225, 87,150, 34,130, 3, 68, 84,112, 49, 68,197,129, 32, 67, 64, 81, 64, 16,100, 84, 64,144, -202, 40,171, 45,165,116, 67,155, 54,221, 43,105,154,228,222,123,126,127,180,169,165,180, 77, 82,234,194,243,126,189,242,106,114, -123,238,231,158,155,180,185,159,251,156,243, 60, 39, 71, 91,130,170,106, 51,140, 38, 30, 70, 94,128, 68,194,193,195,195, 3, 29, - 67,123,194,221,205, 21,249,133, 69, 56, 27,123, 18,191, 39, 95, 72,167,192, 91,133,158,101, 91,109,249,140,136,212,169,163,159, -175, 55,209, 86, 24,225,160,228,240,251,177,227,102, 0, 27,109, 49, 87,141,105,150,233, 75, 87, 46, 92,182,230,209, 79, 63, 92, -210,166, 91,136, 43,110, 20, 26,144, 93, 80,133, 10, 3, 15,128,130, 23, 40,140,134, 50, 92, 61,251,115, 30, 15,253, 74,107,199, -248,183,211,116, 4, 75, 38,171, 62,123, 41, 89,185,240,141,247,113, 37, 37, 29,235,215,173,213, 85,219, 97,174, 26, 99,227,140, -208, 38,255,161,110,135,198,134, 5, 69, 74,177,247,247,188,186,101, 63, 44, 67,133,113, 41,165,205,106, 17, 66,100,239,207,234, -177,192, 98,132, 62,218,149,243,187, 82, 89, 40, 94,191,126,189,100,235,214,173,117,166,135,227, 56, 88,178, 7,141, 70,163,213, -172, 34, 15, 87, 69,151,199, 71,181,155,212,148,185,226, 56, 14,162, 40,214, 69,175,236, 29,122,116,242,237, 52,188,207,189,227, -182,223,251,224, 84, 73,204,238, 47,197,115,199,126,124,164, 50,255,234, 46,187, 68, 0,148,148,148, 36, 16, 66,174,125,240,193, - 7, 61,214,175, 95, 31, 58,127,254,252,180, 47,151,207,248, 8, 0, 14, 30, 60, 8, 0, 72, 77, 77,165,107,215,126, 87,109, 50, -153,210, 43, 43, 43,227,168, 13,139, 92,235,181, 87, 63,216,248,233,123,157,110,228,228, 78,233,208,165, 47,188, 67,250,160, 77, -135,190, 40,174, 52,225,116, 74, 14,210, 18, 99,112,229,212,206, 29, 85, 5,126, 54, 77,200,181,208,163, 71,143, 96,153, 76, 54, -150, 82, 26,238,228,228, 20, 66, 41, 85, 72,165,210, 9,132,144,107, 60,207, 39, 70, 70, 70,198, 36, 38, 38,218,188,102, 88,230, -177,141,213,237, 6, 63,181, 38, 75,239, 52, 56, 45, 79,223, 51, 75,239,116, 94,175,116,123, 33, 63,102,117,181,223,125, 31,172, -130,185, 40, 97,231,166,178, 31,190,249,226, 67,110,242,180, 23,133,248, 98,215, 57, 82,103,199,195, 43,158,178, 57,115, 31, 18, - 66,114,231,207,127,233,143, 50, 13,164,102, 96,176,182,100,131,213,204, 20, 0,168, 93, 79,241,101, 71,117,151,143,227,231,206, - 88,214, 53,186,255,227,247,140,156, 36,113,150, 59,225,240,174,207,104,250,165,163,223, 73,169,240,170, 62, 63,245, 22,131, 97, - 47, 70,163,241, 38, 99,101, 75,244, 10, 0, 10,188,202, 6,255,116,232,216,148,125, 63, 31, 95, 62,106,248, 0,175, 79, 94,159, -136,247, 62,223, 3,103,149, 18, 84, 20, 48,233,222,224, 71,174,108, 27, 49, 54,200,207, 33,224,251,163,217,191, 62,191, 42,254, -101,189,222,148,220,148,137,177, 80, 91, 95,232,119, 66, 72, 71, 0, 99, 9, 33, 34, 0, 39, 0, 58, 0,149,168, 25,144,216, 77, - 41,181, 57,170, 8,212,212,109,202,208, 26,176,231,135,157,184,120, 58, 6, 87,174, 92,173,184,146,120,101, 45,145,210, 85,149, -121,201, 45,138,172, 54,150, 69, 40,136,104, 60,179,176, 25,116,156,227, 59,231,247,189, 63, 56,236,222,217,253,188, 58,244,135, - 71,219, 26, 79, 89,150, 29,143, 27,103,119,238,169,208,200, 39, 80, 26,223,252, 68,166,102, 80, 7,133,134,137,156, 2,167,142, -237, 7, 21,197,117, 0, 64, 69,113,221,133,147,251,103,244, 29,245, 12, 60,125,219,118,183,164,118,217,171,237, 40,229,203,126, -250,250,157,239, 50, 50, 50,144,148,148,132,148,148, 20, 20, 23, 23,227,155,111, 78,216, 85,171, 41, 63,245,212, 97,191,240, 65, - 35, 30,125,106,238,222,113, 15,143,115, 8, 14,233, 32,233, 20,232, 10, 47, 23, 41,174,166,230, 32, 53,254,154,152,114,233, 87, - 3,173,202,127, 40, 63,229,183, 38,163, 35, 62,145, 19,252, 36, 28, 89, 24,243, 99,205,218,130,195, 30,124,186,211,130,231,231, -223,229,233,229,209,232,247,120,113, 81,137,226,141, 55, 22,119,178,180,183,182, 22,161,132,227, 42,166,205,152,229, 36, 33,146, -186, 97, 64,106, 25, 35,179,252,160, 20, 32,128, 92, 38,181,250, 55, 58,101,220, 0,240,162,136,202, 42, 19, 42,245, 38,148, 86, - 26,144, 87, 88,138,132,196, 84,156, 57,113, 0, 25,169, 41, 21, 60,207, 31, 5,197, 15, 5, 94,101, 59, 26, 22,214,109, 14, 17, - 92,176,167,135, 11, 50, 74, 12,112,148, 75,161,185,158,194,155,120, 67,139,139,172, 23, 94,248, 49,215, 47,234,193,251,158,122, -238,149,159, 7, 13, 26,232,218,173,103,111, 39,111, 87, 23,200,165, 4,169,215,181,184,124,254,172, 46, 43,249, 66,185, 96,174, - 26, 89, 24,255, 99,110, 75,143,243,111,161, 73,131,101, 18,248, 97, 47,190,178,226,144, 32, 8,142, 82,142,171, 50, 83,113,228, -237,152,171, 63, 11, 74,197,236,231,230,212, 76, 90,183,220, 16,152, 5,209,113,234,115,243,171,234,223, 32, 16,179,160,178, 68, -174,172,100,234,113, 5,165,213, 21,139, 62,189,184,233,221, 77,137, 59, 1, 36,222,110,102, 31, 0,148,148, 27, 47,122, 13,255, -246,193, 10, 61, 79, 0, 92,105, 68, 83,119,239,189,247,214,116,160,214,196, 9,130, 96,243, 5, 66,225,160,154, 49,100,236,211, -146,152, 61,235,197,179, 71,247, 76,104,137,185,178, 80,107,152, 78, 19, 66,226, 95,125,245,213,104, 63, 63, 63,191,197,139, 23, - 59,228,228,228,200,126,254,249,103, 67, 89, 89, 89,158, 94,175,143,165,212,246,249, 9,181, 23,205,167, 28,253, 58,127, 70,118, -126,117,159,135,111,192, 8,119,239,160,240,146,130,236,212,242,162,236,159,137,136,195, 21,249, 87, 99,237,237,235,133, 11, 23, -174,119,237,218,117, 55,199,113,129,130, 32,120, 19, 66,156, 41,165, 37, 60,207,151,136,162,152,107,143,185,178,144,121,108, 99, -245,160,255,109,216, 86, 84, 37, 42, 76,196, 97, 91,230,177,141,213, 0,160, 61, 52, 95, 15,224, 71,191, 33, 47,143,219,115, 42, - 99,109, 66,137,235,172,252, 99,239,218, 20,138,175, 79,206,249, 29, 29,173,183,178,141, 42, 77, 66, 54,128, 41, 78,126,157, 62, -140, 63, 31,187,132, 80,200, 4,240,111,233,181,215,206,181,134,190, 76, 38, 51,244,238,221,187,209,108, 65,165, 82,217,108,125, -173,218, 47,250,245,100,240,224,175,127,142, 57, 49,229,192,225,147,203,239,234, 55,192,203, 65,169, 70, 91, 15, 19,190,126,169, -215,236,152,243, 5,103, 30,120,233,215, 79,211, 52,134, 75,148, 82,155,235,160, 1, 0,165, 52,133, 16, 82, 6,224, 65, 74,233, - 23,132,144,105, 0,174, 0,136,183,219, 8,136,120,172, 95,191, 62,223, 16, 66,164,148, 23,223,139,149,113,219, 12,185, 87,178, - 91, 98, 40,234,211, 45,196, 21,211,102,204, 8,107,223,225,143, 44,194, 46,237, 92, 48,121,202,179, 97,109, 67,195,234,182,117, - 10,106,254,134,138,106,226,170,136, 95,215,225, 87, 15,125,240,186, 87,234,111,207, 57,122, 6, 58,235, 10, 51,139, 75, 50,207, -125,160,207,247,251,192,250, 92,213,230,201, 72, 73, 88,245,213,135, 47,207,207,205, 73, 93,175,203, 79,174, 25,117,200, 79,142, - 87,249,133,191, 94,152,151, 61,191, 40, 63,237,131,150,190, 23, 58,157, 78,179,117,235, 86,247,254,253,251, 75,252,252,252, 80, - 80, 80,128,163, 71,143,138,162, 40, 90, 93,152,185, 33,218,228, 95,143,146, 14, 29, 60,183,125, 93,246,158,212,209,101, 52, 47, - 64, 77, 41,133, 84, 66,114, 77,213,101, 63, 23,184, 87,189, 68, 47,197, 54,255,119, 41, 10,132, 74,168,196,178,182,160, 40,138, -228,253,143, 55,103,114, 50, 69,163, 67,170,130,217,168, 18, 69,209,230,181, 8,181, 92,150, 87,148, 57,194,122, 22, 31, 5,226, - 73,146,149,155, 83,122,240,238, 81, 79,140,224,121,193,140,154,249,137,150, 71, 62,165,228, 23, 16,225, 80,161,103, 69,172, 61, -166,170, 62, 38,147,201, 29, 18, 57, 92, 84,102, 72, 64, 80, 94, 86,166,244, 17, 20, 87, 90,162,101, 65, 27,191, 39,129, 12, 30, -220,214,120,228,151, 39,143,159,248,109, 2, 21,197, 16,129, 2,160, 36,195,104, 50,124,151,239, 90,184,169,165,253,253,183, 65, -110,243,251,163,121,113, 27,135, 75,254,105,154,132, 16, 57, 0,111, 0, 2,173,183,252,205,237,104,214,219,222,228,218,130, 45, -213, 4,106,214, 21, 83, 58,168, 94,210,235, 43,214,235,181,201, 54, 95,244,109,121, 63, 9, 33,110, 74,165,178,167, 92, 46,151, - 85, 84, 84,156,166,148, 54,123,231,249,111,253,220,235, 51,240,233,141,222,247,142,184,123,238,225,159,206,172,169, 29, 62,172, - 35,112,194, 42,135,201,163, 7,189,176,249,135,125,171, 26,102, 17,222, 9,231,254,103,105,146,193,131,165,190, 37,174, 83, 4, - 65,124,235,222,176, 10,125, 94,250,213,153, 39, 46, 23,156,166,148, 54, 89, 79,204,198,191,207, 71, 81, 27,193,162,148,110,187, -221,126,182,132,198, 52,125,163, 30,122, 19, 4, 54, 20,141,173,133,226, 74,126,252,238,197,205,105, 2, 53, 19,210, 85, 5,240, -208, 23,122, 23,217,107,172,254,150,207,157, 16,174,107,215,174, 3,229,114,121,176, 32, 8, 42,163,209,168,175,170,170,202,200, -204,204, 60, 69,155, 88,144,252,207,238,167, 95,215,135, 86,201,100,178, 57, 0, 96, 54,155,215,104, 47,239,158,215,220,190, 77, -181,255, 75,174, 71, 19, 38,112,244,187,239,108, 94,184,221, 22, 77, 11, 1, 61, 31, 41, 53,155,249,186,181,135,228, 50,105, 89, -246,249,157,141,207,123,177, 81,147,241, 7,204, 96, 49, 77,166,201, 52,255,114, 77,210,236, 98,221, 45,211,180, 21,166,201, 52, - 1, 64, 29, 57, 54, 8, 0, 52,137,123,109,202, 54,110,172,253,191,245,220,255,169,154,119, 26,118, 45,246,204, 96, 48, 24,173, -129, 45,230,138,193,248, 51,177,213, 88,181,180, 61,131, 65,208, 96,169, 21, 11,246, 56, 83, 66, 72,163, 26,205, 97, 67,216,159, -105, 50, 77,166,201, 52,153, 38,211,100,154,119,152,166, 53,237, 59, 37, 50,198,134, 8,153, 38,211,100,154, 76,147,105, 50, 77, -166,249,183,107,222,105,180,210,210,200,119, 30,132, 16, 63, 66,136, 95,107,183,101,180, 14,132,144, 0, 66, 72,128,157,237,253, - 91,120, 44,246,249, 50, 24, 12, 6,195, 46,254,242, 57, 88,150, 11,149,181,236, 60, 91,219,181,246,190,181,251, 47, 39, 4, 11, -106,159,191, 71, 41,109,178, 34,176,141,109,173,214,231, 14, 15, 15,119,114,116,116,124, 68, 16,132,246,162, 40,130, 16,146, 74, - 8,249,238,242,229,203, 85,168,171,158,210, 60,193,193,193, 33, 14, 14, 14, 83, 8, 33,157, 1,128, 82,122,197, 96, 48,124,125, -253,250,117,251, 42,121, 55, 2, 33,132, 0,152,166, 84, 42, 39,186,187,187,119, 44, 41, 41, 73, 49, 26,141,223, 1,248,188, 37, -233,219,106,181, 58, 28,192,147,162, 40, 74, 37, 18,201, 54,141, 70, 99,211,210, 3,181,125,177,249,243,169,109,179,146, 0,115, - 65, 64,109,105,127, 59,199,106,192,237,222,192,176,121, 74, 12, 6,131,241, 47,165, 73,131, 21, 22, 22,118, 78, 46,151, 7,114, -181,139,247,145, 6, 37,166, 27,190, 22, 69,145, 26,141,198,236,171, 87,175,222,178, 84, 66,189,125,108,186, 88,221,206, 69,173, -193,190,171, 40,165,243,109,221,183,118, 31, 63, 66,176, 64, 20,169, 4, 0, 36, 18,242,178,159,159,159,167, 84, 42,189,165,230, - 19,207,243,142,132, 96,170, 40,214,172,151, 36,145,144, 5,132,144, 53,246, 26,187,240,240,112, 39, 87, 87,215,215,214,173, 91, -231,218,185,115,103, 2, 0,113,113,113,238,179,102,205, 10,235,218,181,235,178,203,151, 47, 91, 93,242,162,125,251,246, 15,245, -232, 25, 61,123,222, 75, 47,251,249,122,121,187,240, 2,111,202,201,201, 85,175, 94,245,238, 93,237,219,183,255, 52, 45, 45,205, -166,117, 3, 45, 70, 74, 42,149, 78,116,112,112,232, 96, 48, 24, 82,121,158,223,201,113,220,136,183,222,122, 43,106,204,152, 49, - 14,101,101,101, 10,158,231, 59,110,221,186,245,133, 13, 27, 54,140, 34,132, 60,216,220,164,101, 75,164,137, 82, 90,191,238,205, -163,167, 79,159, 30, 42,149, 74, 73,159, 62,125, 28, 9, 33,179,232, 31,213,187, 27,107,111,209,186,229,243, 33,132,124, 68, 41, -205, 11, 10, 10,234, 45, 8,194, 19, 0,192,113,220,230, 27, 55,110,156, 35,132,180,113, 80, 42,231, 86, 25, 12, 4, 0,177,231, - 51,106,236, 88,206,206,206,155, 43, 43, 43,175, 90,126, 95,219,207, 22, 25,121, 6,131,193, 96,220,185, 52,105,176, 56,142, 11, - 60,124,248,176,175, 66,161,168, 51, 83, 77,253, 20, 4, 1, 38,147, 9, 35, 71,142,108,178, 38, 75, 99, 23,171,161, 67,135,246, -116,116,116,188,169, 38, 84, 85, 85,149,130, 16, 12,109,137,105,177, 28,195,104,172,150,200,100, 10,112,156,228,197,238,221,187, -247, 46, 44, 44,140, 17, 4,225,179,188,188, 60,187, 87, 87, 39,132,224,171,175,190,234,236,231,231,119, 75, 65, 56,173, 86, 43, - 31, 59,246,150, 69,183,237,198,209,209,241,145,207, 62,251,204, 53, 34, 34,130,232,245,122,152,205,102, 4, 7, 7, 75, 94,123, -237, 53,183,183,223,126,123, 2,128, 70,151,143,177, 16, 20, 20, 20,218, 43,186,239,236,175, 55,110,236, 91, 86, 92,108, 88,191, -114,221,249,106,169, 82,223,182,115,184,252,245, 37,111,185,189,185,120,209,244,160,160,160,248, 27, 55,110, 52, 91,213,155, 16, - 34, 1,176,107,238,220,185, 93,238,191,255,126, 69, 69, 69,133,131, 94,175,111,183,117,235,214,215,162,163,163,157,123,246,236, -169,216,190,125, 59, 41, 45, 45, 5,165, 84, 21, 17, 17, 65, 39, 76,152, 96,248,246,219,111,159, 7,240, 81, 19,154,141,154,101, - 65, 16,100,150,192, 23,207,243, 10,212,252, 45,154, 90, 16,157, 34, 94, 94, 94, 83, 0, 44,231,121,126,234,209,163, 71,123, 2, -192,144, 33, 67,228, 0,206,185,186,186,246, 55, 25,141,246, 45,118,220, 4, 99,198,220, 15, 0, 95,248,251,251,255, 90, 80, 80, - 16, 72, 8, 38,219,218, 79, 6,131,193, 96,252,183,104,118,136, 80,161, 80,224,247,223,127, 7,165, 20, 18,137,164,110,121, 24, -137, 68,130,189, 41,222,208, 25, 37,208,107,227, 49,123,108, 91,132,132,132,220, 18,213,106,132,186, 6,132, 16,204,153, 24,174, - 86, 99, 0, 0, 32, 0, 73, 68, 65, 84, 51, 7,254,254, 55, 79,139,201,205,205,197,177, 99, 71, 91,124, 66,245,143, 1, 0,111, -191,253,182, 91, 81, 81,209, 3, 95,125,245,213,136, 54,109,218,188,150,151,151,119,172,185,157, 41,165, 90, 66,200,123,181,145, - 17, 40, 20,202,140,233,211,167,159,171,253, 93,251,189,123,247,170,198,142, 29,171, 39,132,164, 1,128, 66,161,244,229, 56, 73, - 8,173, 89, 99,234,189,150, 68, 51, 76, 38, 83,135,136,136, 8, 82, 89, 89, 9,163,209,136,204,204, 76, 20, 20, 20,192,199,199, -135,240, 60,223,193,218,254, 42,149,234,153,185,243,230,251,148, 21,151, 84,153, 43, 42, 76,206,162,192,187, 58,200, 72,121, 65, - 81,105,198, 13, 87,253, 51, 51,103, 75, 23, 47,124,225, 25, 0,175, 88,145,122,126,222,188,121,157,251,244,233, 19,176, 99,199, - 14, 82, 86, 86, 6,169, 84,234,220,163, 71, 15,244,238,221, 91,136,137,137, 33,161,161,161,136,138,138,194,201,147, 39,241,219, -111,191,145,158, 61,123,170,118,237,218,245, 56, 26, 49, 88, 13, 77, 53,199, 73, 22, 78,154, 52,105,148, 74,165, 50, 15, 30, 60, - 24,207, 62,251, 44,116, 58, 29, 58,119,238,220,109,240,224,193,177,227,199,143,151, 73, 36, 36, 74, 16,106,130, 97,141,153,235, - 6,159, 15,153, 50,229, 41,173,179,179,243,120,181, 90,125,149, 16, 34,149,203,229,150, 99,115,126,126,126, 62,221,186,117,155, -233,233,233,153,207, 73, 36,190,180,102,145, 21,155, 63, 35,203,177,198,142,189,255,101,128,224,222,123,239, 45,154, 61,123,182, -112,229,202,149,193,227,199,143,187,235,218,181,148,219,138, 92, 50, 24, 12, 6,227,206,165, 89,131, 69, 8,193,230,205,155, 97, - 48,220,186,242,128,199, 61,239, 96,254,248,182,120,106,214, 38,188,151,252, 29, 62,249,228,147,186,117,151, 44,212,207, 48,160, -148,106, 57,142,251, 84, 34, 33,207, 17, 66, 16, 21,213, 53,125,245,234,213,141, 85, 52, 55, 70, 69,117, 77,231, 56, 73, 40,165, - 20,132, 72,214,137,162,160,109, 76,179, 33,150, 11,162, 66,161, 92, 0, 0,254,254,106,237,190,125,251,204,143, 60,242, 8,222, -127,255,125,197,194,133, 11,223, 82,171,213,147, 52, 26, 77,118,131,253,226, 27,188, 94,228,231,231,231,249,213, 87, 95,117,158, - 62,125,250,185,156,156,156,185, 0, 16, 16, 16,176, 26, 64, 87, 66, 72, 90,189,109,248,252,243,207,123, 63,243,204, 51, 87,180, - 90,237,162,166, 52,155,162, 67,135, 14, 33, 99,199,142, 85, 2,128,217,108,198,141, 27, 55,112,227,198, 13, 20, 21, 21,193,108, -190,121,105,177,166, 52, 9, 33, 17, 30,238, 30, 78,235, 63, 92,119,206, 71,201, 17,239, 32, 53,145,187,186, 75, 37,206, 46, 74, -202,113, 85,109,131,212, 46,132,144,136, 38,222,179, 58, 77,185, 92,254,248,136, 17, 35, 84,219,183,111, 39, 81, 81, 81,112,119, -119,199,175,191,254,138, 11, 23, 46,160,164,164, 68,194,243, 60,162,163,163,241,222,123,239, 33, 40, 40, 8,101,101,101,200,204, -204,244,150,203,229, 62, 77,105,162,129,225, 93,176, 96, 1,124,125,125, 33, 8, 2,114,115,115, 81, 89, 89, 9, 39, 39, 39,184, -185,185, 65,163,209, 96,207,158,198, 71, 50, 27,252, 45, 45, 82, 42,149, 95,181,109,219,118,229,236,217,179,253,189,188,188, 80, - 93, 93,253, 90, 81, 81, 17, 22, 44, 88, 0, 0,232,211,167, 79, 55, 74,233,129,103,158,121, 6, 33, 33, 33, 57,197,197,197,215, -227,226,226,158,213,233,116,241,141,105, 54, 69, 64, 64,192,161,252,252,130,129, 67,134, 12, 65,105,105,169,105,201,146, 37,232, -209,163, 7,194,194,194,173,246,179,181, 96,154, 76,147,105, 50,205,255,130,230,157,134, 20, 0, 72,205, 26,158,164,145,231,248, -246,219,111, 27,221,113,202,202, 68, 72,107,166,103, 97,221,186,117,224,121, 30,150,253,154, 66, 16,132,231,189,189,189,243, 23, - 45, 90, 52, 32, 60, 60,220,248,252,243,207,199,103,100,100,188, 90,191, 77, 72, 72,200,219, 31,127,252, 49,146,147,147, 51,151, - 47, 95,126,178,176,176,112,153, 61, 39, 68, 41, 93, 72, 8, 89, 13, 0, 26,141,166,112,239,222,189,125,142, 31, 63,190,112,245, -234,213,254,207, 63,255,188, 98,246,236,217, 51, 97, 61,146, 3,169, 84, 90,213,216,176, 96, 99,248,249,249,153, 26,155,163,213, - 28,131, 7, 15,230,174, 95,191,222,217,209,209,241,255, 94,120,225, 5, 71,147,201, 4,141, 70,131, 27, 55,110,160,180,180, 20, - 18,137, 4,201,201,201, 34, 33,228,170, 13,114,149, 70,179,185,218, 41, 72,109, 30,251,224,136,174,151,207, 92, 72,118,244,244, -148,116,141,238, 17,153,148,146, 25, 71, 0, 35,106, 30,205,226,230,230, 22, 94, 88, 88,136,242,242,114,248,248,248, 96,205,154, - 53,240,243,243,131, 94,175, 71, 66, 66, 2, 13, 12, 12, 36, 39, 78,156,128, 90,173, 70, 65, 65, 1,140, 70, 35,244,122,125,190, -209,104,108,244,220, 41,165, 90,169, 84,186, 94, 34, 33,207, 18, 66,208,177, 99,152,246,163,143, 62, 50, 83, 74, 17, 17, 17,129, -113,227,198,225,215, 95,127, 69, 66, 66, 2, 40,165, 16, 69,209, 28, 18, 18,170,149, 72,136,111,205,238, 77, 71,155,170,171,171, -211,252,252,252,166,190,248,226,139, 91, 63,251,236, 51,143, 87, 94,121, 5,148, 82, 8,130, 0, 65, 16, 32,138, 34, 68, 81, 4, -165, 20,187,118,237, 66,106,106,234,219,245,205,149, 53, 2, 3, 3, 29, 4, 65,152,209,169, 83,167,251, 31,125,244, 81,147, 92, - 46,135, 94,175,183,188, 23,166,145, 35, 71, 22,141, 29,123,191,215, 79, 63,253,100, 87, 84,140,193, 96, 48, 24,141,211,148, 23, -249,183, 82, 23,193,106,120, 50,150,225,190, 67,135, 14,129, 16, 2,142,227, 64, 8,169, 27, 42,212,229,222,192, 83,179,183, 66, - 33, 5, 46, 93,186,132,136,136, 70, 3, 36,183,192,113,220,231,135, 14, 29,234, 49,104,208, 32,233,208,161, 67,163, 2, 3, 3, -163,178,179,179,227, 1, 32, 48, 48, 48,106,228,200,145, 81,190,190,190, 88,179,102,141,158,227,184,207, 91,114, 82, 13, 46,118, -177, 1, 1, 1,175,255,240,195, 15, 95, 77,159, 62, 29,126,126,126, 61, 90,162,217, 26, 44, 93,186,148,172, 93,187,118,165,163, -163,227,120,133, 66,225,234,227,227, 83, 54,106,212,168, 20, 23, 23,151,244,140,140, 12, 80, 74,225,233,233,137,202,202, 74, 36, - 39, 39,139,135, 14, 29, 42,117,118,118,254,222,154,174,201,100, 58,123, 61, 43, 43,188,255,192,254,254,191,158, 75, 60, 63,254, -161,251,135, 72,164, 18, 73, 70, 86,238, 89, 31, 47, 79,167,223, 78,157, 44, 55,153, 76,103,173,233,232,116,186, 12,158,231, 61, - 41,165, 62,199,142, 29,131,183,183, 55, 74, 74, 74, 96, 54,155, 97, 50,153,140,122,189,222, 33, 41, 41, 9,213,213,213,168,174, -174,134,171,171, 43, 46, 95,190,172,229,121,254,151,166, 52,121,158,159, 70, 8,121,147, 82,138,171, 87,175,230, 0,128, 90,173, - 14,115,119,119,255,134,231,121,104, 52, 26, 28, 59,118,108,178, 70,163, 73,182,236,211,220, 36,247,250,104,181,218,130,128,128, -128,231,167, 77,155,246,102,167, 78,157,218, 83, 74,209,177, 99, 71,140, 24, 49, 2,251,247,239,199,181,107,215,160,211,233,132, -223,127,255,125,155, 70,163,217,107,237,252, 45,248,250,250, 70, 57, 57, 57, 45,154, 53,107,150, 95,151, 46, 93,234, 34,184,206, -206,206,208,235,245,112,117,117,197,221,119,223,125,101,217,178,101, 38, 74, 49,133, 82,154,103,171, 54,131,193, 96, 48,154,230, - 78, 48, 86, 22,234, 12, 22,165,148, 16, 66,110, 26,227,179, 24, 42, 66, 72,221,115,203, 99,246, 3,193, 40, 41,113, 1,199,213, -188, 22, 69,219, 50,202,181, 90,109, 65, 96, 96,224,207,113,113,113,247, 79,156, 56, 17,199,142, 29,155, 2,224, 5, 0, 80, 42, -149, 83, 38, 78,156,136,184,184, 56, 36, 37, 37,253,172,213,106, 11,154, 87,179, 13, 66,136,222,104,172, 9,224, 56, 56, 56, 56, -218,179, 47,165,180,125,237,208, 32, 40,165,237,155,218,102,141,165, 75,151,146,143, 63,254,248,218,220,185,115,219,206,154, 53, - 75,234,234,234,138,210,210, 82,231, 77,155, 54,249, 62,249,228,147,234,101,203,150,157,200,203,203,195,198,141, 27,171,146,146, -146, 12, 28,199, 37, 41, 20,138, 93,177,177,177,213,214,180, 13, 6,195, 87,111, 47,123,125,200,150,173,223, 70,116,138,232,232, -177,255,208,209,243, 94, 94,174,142, 33, 33,237,149,101,165,165,213, 31,175,126, 95,170,211,233, 54, 88,211,169,170,170,218, 21, - 19, 19,243, 80, 80, 80,144, 79,124,124, 60,140, 70, 35, 4, 65,192,176, 97,195, 64, 41, 85, 2, 16,165, 82, 41,174, 92,185, 2, -147,201,148,127,237,218,181,156,212,212, 84, 37,128, 21, 86,222,195,155,140,146, 68, 34,153,116,255,253,247,131,231,121,140, 24, - 49, 2,187,119,239,158, 8, 96,105, 83,237,155, 35, 39, 39, 39, 5,192,164,200,200, 72,121,105,105,105,239,225,195,135,175, 25, - 62,124, 56,206,159, 63,143,147, 39, 79,254,159, 82,169,204, 55,153, 76,188,191,191,255, 52, 66,136,171,201,100,250,166,176,176, - 48,183, 41, 61,127,127,255, 1,225,225,225, 75, 63,248,224, 61,226,231,231, 15, 65,224, 97, 54,155, 80, 80, 80,132,138,138, 10, - 68, 70, 70, 34, 56, 56, 24, 43, 86,172, 0,128,221,204, 92, 49, 24, 12, 70,235,209,152, 23,249,183,114,211, 28,172,198, 78, 76, - 34,145,212,253,180, 60, 8, 33,144,203, 56,180,241,243,169,155,248, 46, 8, 2, 96, 67,189, 39, 0,208,235,245,223,110,221,186, -245,190,149, 43, 87,202, 71,143, 30,221, 33, 48, 48,176, 15, 0,140, 31, 63,190,131,139,139, 11,182,110,221,106,210,235,245,141, -143, 77,182, 0, 81, 20, 71, 68, 71, 71,163,184,184, 24,153,153,153,231,236,217,119,239,222,189, 42, 0, 93,173,109,179,198,218, -181,107,215,204,157, 59,183,237,162, 69,139,164, 6,131, 1,229,229,229,144,201,100,120,234,169,167,228, 21, 21, 21, 33,171, 87, -175,214,252,254,251,239,231,140, 70,227,250,212,212, 84,187,234, 86,105, 52,154, 42,181, 90, 61,251,173,183,223,250,230,131,247, -223,247, 45, 46, 42, 73,150, 43, 28, 13, 42, 71,165,231,203,243,151, 81,173, 86,251,162, 86,171,181, 90,234, 1,192,138,111,190, -249,102,228,125,247,221,119, 41, 40, 40,200,183,176,176,176, 77,121,121, 57, 45, 46, 46, 38,168,249,108, 9, 80, 19,177,204,202, -202,226, 5, 65, 56, 1,224, 77, 74,169,213,225, 71, 11,129,129,129, 30,125,250,244, 25,233,229,229, 85, 55, 20,217,179,103,207, -145,129,129,129,107,179,179,179, 75,236, 57,239,250,148,149,149, 61,120,247,221,119,191, 56,115,230, 76,152,205,102, 60,244,208, - 67,200,206,206,254, 48, 35, 35, 99,135, 90,173,158,252,212, 83, 79,249,120,121,121, 97,254,252,249,142,168,103,230, 26, 66, 8, -121, 98,210,164, 73,196,209,209, 9, 60,207, 67,169,148, 67,169, 84,194,217,217, 21,158,158,158,200,202,202,194,189,247,222, 43, -166,167,167,239, 81,169, 84,205,102,119, 50, 24, 12, 6,195,126,238, 20,147,101,117,146,187,209,104, 4,199,113,216,157,236, 3, -157,145,160, 60, 59, 14,115, 30,104, 91,103,182, 68, 81,132, 84, 42, 69, 77, 22,157,109,239, 71, 73, 73, 73,185,191,191,255,158, -216,216,216, 9,227,199,143,199,225,195,135,159, 4,128,241,227,199, 35, 54, 54, 22,233,233,233,123, 74, 74, 74,202, 91,225,252, - 16, 16, 16,240,240,144, 33, 67,158,236,211,167, 15,246,238,221, 11, 65, 16,154, 28,206,106,140,250, 25,131,141,101, 17, 90,182, - 89,211,145, 74,165,143,204,154, 53, 75,106, 48, 24, 64, 41,133, 92, 46, 71,121,121, 57,242,242,242, 48,112,224, 64,249,220,185, -115, 59,234,116,186,151,178,178,178, 90, 84, 20, 84,163,209,100,135,135,135,167, 86, 25, 12, 50, 15, 47, 79,189,139,147,130,150, - 87, 84, 72, 46, 93, 58,159,171,213,106, 51,109,209,160,148, 26, 9, 33,247, 28, 60,120,112, 49,199,113, 19, 3, 2, 2, 48, 97, -194, 4, 50,116,232, 80, 40, 20, 10, 84, 85, 85,161,180,180, 20,123,247,238, 5,207,243,161, 0,224,227,227,227,215,174, 93,187, -239, 37, 18,137, 54, 61, 61,253, 25,107,199, 16, 4, 97,252,131, 15, 62, 40, 53,155,205, 88,182,108, 25,222,120,227, 13,140, 26, - 53, 74,122,246,236,217,241, 0,190,108,201,185, 7, 6, 6, 78,155, 50,101,202,180, 9, 19, 38,160,162,162, 2,177,177,177,232, -223,191, 63, 86,172, 88,225,127,242,228,201, 23,162,163,163, 33,149, 74,113,252,248,113,240, 60,223,228,130,173,131, 7, 15,150, -114, 28,215, 62, 32, 32, 0,153,153,153, 80,169, 84,240,243,243,131,187,187, 59,188,189,189,177,114,229, 74,172, 90,181,234, 34, -199,113,235, 52, 26, 77,106, 75,250,202, 96, 48, 24,140,255, 6, 82, 0, 55, 77, 78,175, 63,193, 29, 0, 54,110,172,185, 73, 87, -221,181, 4, 11, 39,180,195,227,207,109,194,135, 31,254, 0,165, 82, 89, 39,194,113, 28,150, 46,109, 50, 40,208, 40,162, 40,238, -250,230,155,111, 70,247,235,215, 79, 53,100,200,144,246, 0,160, 84, 42,141,223,124,243,141, 94, 20,197, 93,246,158, 72,195,162, -143,129,129,129,209, 28,199, 77, 25, 59,118,108,244,211, 79, 63,141,132,132, 4,108,221,186,245, 74,120,120,248, 97, 59,117,211, -172,100, 17,174,134, 13,209, 44,158,231,221, 93, 93, 93, 81, 94, 94, 14,185, 92, 14,158,231, 81, 84, 84,132,171, 87,175,194,203, -203, 11,101,101,101,174,237,218,181, 75,176,247,188,235,227, 40, 23,123,189,182, 96, 90, 71,131,161, 42,178,172,172,140,151, 74, -165, 82,165, 76,104,182,246, 85, 67, 40,165,213,193,193,193, 15, 10,130,224,109, 52, 26,205,126,126,126,178, 35, 71,142,192, 82, - 15, 45, 42, 42, 10, 10,133,194, 24, 24, 24, 88, 1, 0, 94, 94, 94,146,229,203,151,203,230,205,155,103,181,239,189,122,245,146, -181,107,215,110, 82,120,120, 56, 78,157, 58,133,196,196,196,180, 83,167, 78,181,239,213,171, 23,130,130,130, 38,245,234,213,235, -235,184,184, 56,179, 53,157,250, 68, 70, 70,202,123,244,232,241,228,132, 9, 19,144,150,150,134,229,203,151, 23,230,230,230, 30, - 61,120,240,224,195, 51,103,206,228,250,247,239,143,194,194, 66,124,253,245,215,252,185,115,231, 54,228,229,229,109,110, 74,235, -248,241,227,162, 90,173,174,155,115,168,215,235,145,158,158,142,187,239,190, 27, 27, 54,108,192,234,213,171, 55,231,230,230,178, -168, 21,131,193, 96,252, 9, 52,230, 69,254,205, 88,141, 96,109,223,190, 29, 0,240,204,154, 36, 24,141, 53,215,190,117,235,214, -161, 77,155, 54, 55,181, 77, 77, 77,181,235, 13,209,106,181,122,127,127,255,157,207, 61,247,220,138, 11, 23,206,135, 2,192,153, - 51,103,210, 53, 26,205, 66, 27,135,179,234,247,211, 82,156,146,168, 84,170, 75, 29, 59,118, 44, 26, 57,114,164,199,184,113,227, -224,237,237,141,243,231,207, 99,249,242,229, 9, 6,131,225,249, 99,199,142, 53, 89, 12,245,207, 68, 42,149,150, 22, 23, 23,251, - 42, 20, 10,148,149,149,213,153, 43,157, 78,135,226,226, 98, 80, 74,203,143, 29, 59, 38,180, 84, 63, 48, 48,240,158,209, 35,239, -137,250, 96,229, 71,168,210, 87,226, 76,236, 62,148, 20, 23,226,243, 47,127,232, 26, 24, 24,120, 79,118,118,246,113, 91,181,120, -158,111,191,115,231, 78, 0, 53,181,208,222,124,243, 77,168,213,106,184,186,186,162,178,178, 18,211,166, 77, 83,204,153, 51, 7, - 0,144,152,152, 8,103,103,103,155,116,115,115,115,135, 76,159, 62,221,213,108, 54,227,192,129, 3,213,130, 32,204, 62,124,248, -240,174,238,221,187, 43, 7, 13, 26,228,186,101,203,150,123, 1, 28,180,231,188,121,158, 87,168, 84, 42,133, 32, 8,216,185,115, - 39,178,178,178,158, 46, 44, 44,204,243,243,243,251,225,165,151, 94,154, 31, 22, 22, 22,114,237,218,181,172,138,138,138,247,180, - 90,109,179,209, 65, 74,169,168, 86,171,175, 31, 58,116, 40,120,194,132, 9,144,203,229, 40, 41, 41,129,139,139, 11, 62,248,224, - 3,106, 50,153,172, 38, 28, 48, 24, 12, 6,131, 1,216,176, 22,225,233,211,167,193,113, 28,248,226, 44, 60,183,112, 7,156, 85, - 50, 92,189,122, 21, 69, 69, 69,117,119,250,150,225,194,134, 16, 43,171,109,151,149,149,157,213,106,243, 66,235, 85,109, 15, 85, - 42, 29,154,205,118,107,168,217, 72, 49,203,238,111,191,253,118,188,175,175,175, 57, 62, 62, 30,235,214,173, 19,227,226,226,126, - 2,240,129, 86,171,109,180,156,128,181,126,182,132,134,154, 60,207,239,124,255,253,247,167, 47, 92,184, 80,150,155,155,139,228, -228,100,232,116, 58,152,205,102,236,223,191,159,215,235,245, 86,163,118,205,245, 51, 59, 59,251,120, 88,135, 96,124,253,229, 74, -152, 76,213,200,205,201, 2, 0, 20, 22,149,161, 57,115,213,152,166, 68, 34, 41,157, 50,101,138,202,104, 52,146, 73,147, 38,201, -242,243,243,209,161, 67, 77,189,211,242,242,114,252,244,211, 79,117, 89,163,151, 47, 95,190, 37,131,180,169,126,170, 84,170,137, - 3, 6, 12, 64,102,102, 38, 18, 18, 18,246,107,181,218, 2,127,127,255,253, 89, 89, 89,227,123,247,238,141, 93,187,118, 77, 64, - 19, 6,171,185,115,183,148,103, 16, 69, 17,158,158,158, 58, 0,168, 53, 83,207, 53,117,222, 77,105,242, 60,255,242,174, 93,187, -166,199,198,198,222,243,194, 11, 47,144,161, 67,135, 2, 0,116, 58,157, 80, 88, 88, 88,217,156,158,181,126,182, 20,166,201, 52, -153, 38,211,252, 47,104,222,105, 52,107,176,244,122, 61, 58,118,236, 8, 65, 16,240,238,115,129,168,168,232, 10, 65, 16,192,243, - 60, 84, 42, 85,221,188,171,218,197,137,237, 62,184,193, 96, 48, 55,220,205, 96, 48,216, 53, 68,212, 24, 27, 54,108, 64, 94, 94, -158, 49, 43, 43,235, 71,147,201,180,181,185,172, 49,107,180, 86, 22,225,172, 89,179,230,124,252,241,199, 35, 42, 42, 42,130,199, -143, 31, 47,243,244,244, 68,113,113, 49, 14, 28, 56,192,159, 63,127, 62,107,214,172, 89, 47,180,180,143, 64, 93, 4, 11, 83,166, -206, 67, 85, 85, 37,126, 63,181, 15,165,197,133,136, 61,155, 12,123, 35, 88, 82,169, 52,216,108, 54, 43,121,158,207,161,148,226, -137, 39,158,128, 32, 8, 48, 24, 12,168,168,168, 64,113,113,177, 97,214,172, 89, 18, 0, 80,169, 84,184,239,190,251, 20,182,232, -182,111,223, 62, 88, 42,149,226,224,193,131,224, 56,238,123, 0,224, 56,238,251,152,152,152,241,147, 38, 77, 66, 64, 64, 64, 56, -169,205,209,181,231,220, 69, 81,180,212, 97,179,103,183, 70,201,207,207,207, 7,240,166, 90,173,254,110,193,130, 5, 51,251,244, -233, 19, 85, 59,252,205,221,182, 56,131,193, 96, 48,254, 51, 52,105,176, 68, 81, 76, 31, 62,124,184,169,161,113,106,248,186,126, -228, 74, 20,197,155, 42,164, 91,163,182,242,250,187, 18, 9, 89, 80,243,218,254,130,141,244,143,165, 83, 22, 0, 32, 82,169,108, -235,233,211,167, 95,209,104, 52,121,148,210, 22, 15,185, 89,104,173, 44,194, 37, 75,150, 80, 0, 97,107,215,174, 93,179,107,215, -174, 71,170,170,170,220, 29, 29, 29, 75,121,158,223, 57,107,214,172, 57,181,191,111, 49,217,217,217,199, 59,180, 15, 60,244,200, -248,209,247,181, 15, 81, 3, 0,210, 50, 52, 40, 44, 46, 59,100,143,185, 2,128,204,204,204,106, 0,213,254,254,254,227,191,253, -246,219,157,181,166,167,126, 41,142,106,169, 84, 26, 6, 0, 21, 21, 21,109,119,237,218,245,141, 84, 42,181,250,217, 39, 38, 38, -110, 95,178,100,201,228,244,244,244, 31,179,179,179, 83,107,251,157,170, 86,171,215,105, 52,154,201, 89, 89, 89, 91,236, 53, 87, - 70,163,209, 92, 93, 93,205, 11,130, 32, 53,153, 76,212,104, 25,199,190, 77,106,235,114,205, 81,171,213,253, 70,140, 24, 49,133, - 82,154,223, 26,186, 12, 6,131,193,248,111, 64, 90,227,174,191, 73,113, 27, 67,136, 13, 39,168,183, 68,211, 30, 13, 91, 52,213, -106,245,243,132, 16,155,162, 83,181,199, 77,211,104, 52, 31, 55,161,121,187,147,245,104, 83,253,108,140,176,176, 48,154,146,146, - 98,211,156, 56,107,154,129,129,129, 14, 82,169,180, 97,132,170,186,214,132, 89, 52, 8, 0,142, 82,202,219,211, 79,123,104, 78, - 51, 36, 36,228,127,145,145,145,143, 95,184,112, 97, 71, 78, 78,206,234,214,208,108, 41, 13, 52,111, 29, 55,183, 15,177, 17,205, - 86,129,105, 50, 77,166,201, 52,255,105,154, 54, 16, 13,192,178, 52,155,165, 78,166, 79,131,231, 70, 0,245,175, 89,150,215, 5, - 0,206,214,211,168,191,221,218,190, 0, 80, 8,224, 18,108, 88, 21,197,130,213, 57, 88,127, 5,173,177,204, 72,107, 47, 85, 82, -223, 44,181, 2,127,105, 61,143,107,215,174,181, 90,246, 69,118,118,182, 1,192,173,139, 81,214,163, 54,234,244,183, 36, 15, 0, - 64, 70, 70,198, 39,131, 7, 15,254, 60, 39, 39,231,111,235, 67, 19,216, 86,125,151,193, 96, 48, 24,214,136, 6,224, 67, 8,217, - 7, 0,148,210,251, 1,128, 16,178,175,225,115, 75, 27, 75,187,250,109, 44, 26, 13,183, 55,183, 47, 0, 44, 92,184,240,149,229, -203,151,171, 0, 28,181,181,195,183,123,135,205, 96,252, 35,248,187,178, 67, 25, 12, 6,131,241,151, 80,103,140, 26, 26,161,134, - 88, 76, 83, 61, 83,213, 36,141,233, 88,142, 81,255,245,138, 21, 43,222, 1, 96,215, 74, 48, 82, 66, 72, 84, 19, 29,180, 57,244, -215,148, 70,115,191,179,166,207, 52,153, 38,211,100,154, 76,147,105, 50,205, 59, 79,179,181,246,111, 13, 26, 51,107, 13, 34, 94, - 32,132,236, 91,184,112,225, 43,176, 99,120,208, 34,254,167, 61, 0, 68, 49, 77,166,201, 52,153, 38,211,100,154, 76,147,105,222, -230, 99, 76,141,101,161, 99,234, 63,111,108, 91,115,207,173,237,107, 67, 91,155,251,252,143,152,131,197, 96, 48, 24, 12, 6,131, -209, 12, 5,180, 94,180,137,214, 68,152,132,133, 11, 23,190, 82,127,158, 20,128,106, 0,202,134, 59, 55,156,187,213, 28,246,180, -109, 14,102,176,254, 26,172,206,117, 27, 56,176,141, 39, 87, 85,185, 74, 16,133,254, 0, 64, 32,249, 85, 38,115,127, 33,230, 76, - 78, 41,108,156, 44,221,185, 3,233,236, 32,197, 75,162,136,110,132, 0,132,224,146,129,199,251, 87, 82,233,149,219,236, 63, 8, - 33,164, 75, 40,166, 41,148,170, 73,110,238, 30, 29, 75,138, 10,175,153, 76,213,223, 37,102,224,115, 90,123, 59, 99, 15, 17, 29, - 72, 15, 8,120, 89, 16, 33,147, 74,176,234, 74, 6, 61,121,187,125,100, 48, 24, 12, 27,105,149, 12,223, 6,180, 74,182, 56,163, - 73,206, 2,136,174,103,122, 10, 0, 92, 94,190,124,121,201,242,229,203,235,111,187, 8,160,123,109,187, 2,224, 22,163,100,172, -125,109,108,164,141,209,150,182,182, 98,151,193,234, 18, 68,102,130,226, 13, 16, 80, 0, 75, 19,110,208,117,118,237,223,145, 12, -115,144,114,235, 65,193, 25,204,194,139, 84,192,175,141,181, 35, 28, 6, 57,200,184, 15, 65, 32, 26,120,225,153,132, 20,122,196, -214, 99, 68,133,145,145, 82, 34,217, 34,138, 84, 38,136,116, 19, 68,236,115, 54,227,183,216,108,218,108, 38, 92, 67,122,116,228, -150, 5, 7,251,246, 6,106,135, 81,107,107, 64,137,181,255, 3,117,166,130,138,160, 34,133, 38,183, 52,238, 82, 26,125,221,158, - 99, 88, 24, 56,176,141,167,163, 40, 94, 90,247,213,150, 54,193, 29,251, 17, 42, 86, 35,229,194,129,199,230, 44,120,117,200,208, - 62, 1,221, 98,206,228, 20, 91,211,232, 30, 70,166,118,104,215,233,165,121,175,174,148,168,213,129,206, 34,111,228,115,111, 36, -246, 90,187,114,201,247,221,195,200,135, 23,175,209,245,182,244,133, 16, 66, 34, 67, 48, 93, 42, 83, 76,112, 84, 57,117,212,235, - 43, 82, 4,179,249,187,168, 14,210,145,239,191,183,186,199, 61, 67, 70, 57,139,213,121, 18, 51, 79, 34,119,124,187,173,237,199, -159,174, 27, 77, 8,121,128, 82,106, 95,198,156,128,185,151,247, 76,123, 68, 38,229, 72,196,152, 47,157, 8, 33, 35,236,214, 0, - 16, 21, 74,186, 80,224,127, 86,207, 11,248, 36, 62,157,182,104,173,199,206,161,228, 43, 2,132, 3,216, 73, 40,182, 39,100,176, -154, 88, 12,198,157, 70, 64, 64,192,209,156,156,156, 33,173,172,217, 55, 39, 39,231,116,107,106,254,199,105,108,165,151, 51, 54, -182,251,203,177, 55,130,245, 86, 66,202, 13, 15,136, 38,116, 9,111,191, 12,128, 93, 6,203, 65,202,109, 58,123, 73,219, 6,212, -132, 47, 87, 62,183,195,104, 6,120,222, 4,129, 55, 67,224,205, 53,207, 5, 51, 68,222,128, 37,171,142, 1,124, 5,122,247, 8, -219, 4,192,223,214, 99,200, 32,217, 18,247,219, 33, 79,194,151, 97,199,215,203,103,101,105, 42,103, 29, 57,163, 41,236, 18, 66, - 22, 37,102, 98,163,173, 23,241,224, 96,223,222,187,143,228,222,119,116,251,108,244,237,209, 17, 84, 52, 3,148,135, 42,226, 37, -196,108,126, 2,125,187, 6,215,108, 19,205,112,238,249, 33, 70, 13,112,107,241,221, 7, 87, 85,185,234,211, 47, 55,182, 9,110, -219,150,152, 51,222, 2,204,213, 8, 10, 30,205,189, 58,111,170,255,210,247, 62, 89, 9,224,201,230,246,143,104, 79, 34,195,195, - 58,191,184,105,199,169, 96, 93,101,190,241,151,159, 94, 73, 37,148,154,189,189, 35,228,111,190,245,129,227,107,139,230,189, 16, -209,158,156, 78, 74,163,137,205,233, 16, 66, 36,157, 67,176,231,157,119,222,239, 54,116,248, 88,103,193, 88,192, 25, 42, 43,194, -215,111,252,234,141,136, 46,125, 84, 3,122, 6,202, 11,126,155, 65,244, 21,197, 48, 81, 71,229,189,189,135,186,234, 31,159,104, -254,106,243,182,231, 1,124,100,207, 57, 11,252, 31,181, 70, 76, 60, 28, 0,200, 96,239, 4, 66, 0, 20,248,223,133,216,163,211, -249,146,179,128,104,170,253, 76, 76,128,104, 6,173,247,243,174, 71, 55, 2,192, 12,123,245, 1, 64, 66,112,223,145, 35,103,253, -181,218,220,232, 85,171,222, 89, 20, 25, 74, 14,128, 96,203,149,116, 28,111,137, 41,100, 48, 24,255, 76,212,106,181,160,209,104, - 90,117,213,134,128,128,128,209, 57, 57, 57,251,111, 71, 67,173, 86,191, 4, 96,106,237,203,245, 26,141,230,253,219,237, 87,116, -116,116, 32,165,180, 13, 0, 16, 66,242,206,158, 61,107, 87,161,112,134,117,236, 53, 88, 14,160, 34,240,219, 67, 0,177, 47, 93, - 17, 0, 40,224, 0,194, 1,230, 74, 60,120,255, 48,120,123,249, 3,130, 14, 16,170, 0, 94, 15, 8, 53,143,194,130, 44,128,215, - 1, 5, 7,192, 83,122,203, 88,170, 85,204,101, 64,254,119,184,175, 95, 48,220, 93, 28, 48,231,255, 34,189,191,216,157,188,126, -253,238,171,195, 0, 76,178, 85,230,232,246, 57,216,250,253,254,236, 53, 95,126,155, 36,130,194,195, 89,217,233,241,241, 9, 65, -155,191, 63,122, 99,245, 6, 67, 18, 21, 41,220, 93,148,157,158,124, 32, 37,216,238, 62,214, 67, 16,133, 1,193, 29,122, 18,254, -250,123,144, 72, 74, 80, 89, 89,136, 27,105, 95,195,219,111,132,132, 23,197, 65,214,246,119,148, 98,225,156,151, 86, 72,117,149, - 90, 35,229,243, 69, 63,231, 66,185, 12,132, 19,117, 39,140, 85,121,165,149,115,255,247, 56,255,226,194,119, 22, 2,152,220,156, - 78,100, 40,158,255,240,189,213, 93,251,247,233,228,155,119,114, 14,169, 44,211,194, 76, 29,149, 15,220,211, 31, 30,109, 35, 69, -237,133, 15,137,210,127, 24, 60, 66,218, 35,251,242, 86,100, 93,250,129, 12,236, 51, 94,185,233, 27,249,227,104,194, 96,133,249, -147, 1, 35,238,235,179,163,125, 91,181, 63,165, 34, 68, 81, 4,165, 34,158,156, 52, 18,139, 62, 78,133,174,138,199,253,195,238, -234,239,229,198, 85, 47,127,113, 48, 40, 21,113, 67, 83,164,255,229, 84,210,208,212, 28,106,245,206,143, 0,159,116,239, 55,100, -192,165, 51,177, 17, 38,205, 62, 68,143, 91,158, 68,128,186,225, 70, 10, 12, 56, 31,179, 49, 2,216,104, 77,170,113,125, 66, 72, -231, 16, 8,215,127, 95,129,192,158,211,184,207, 55,254,236, 83, 86,148,243,228, 15,223,126,250,200,167, 95,124,190, 21, 45, 52, -109, 12, 6,227,159,135, 70,163,105,117,147,117,234,212, 41,205,237,152,172,232,232,232, 65, 0,222,211,104, 52, 0, 0,181, 90, -253, 94,223,190,125, 23, 3, 64, 35,179, 51,202, 40,165,147,207,158, 61,219,232,232,144,133, 23, 94,120, 65, 13, 32,228,220,185, -115,150, 99,132, 68, 71, 71,135, 52,214, 86,165, 82, 9,221,187,119,207, 92,185,114,165,166, 37,253,255, 47, 99,175,193, 74,202, - 59, 49,183,167,177, 88, 15, 0, 73,214, 26,211, 6,169,150, 6,179,176,226,235,213, 79,174,232, 18,238,129,242, 10, 35, 14,159, -200,172,141, 96,241, 16, 4,115,221,207, 17,253,188,113, 55, 63, 3, 31,109,191, 10, 94, 16,151, 55,167,217, 16,147, 40, 62,218, - 99,208,196,111, 69, 74, 21, 42,149,164,172, 67,144,151,239,139,143,119,151,204,249,191, 46,168, 50,240, 19, 35, 67,200, 47,137, - 25,244, 75,107,154,148, 82,244,237,217, 17,107,190,212, 37,253,120, 52,127, 4, 0,140, 25,236,253,115,223,174,109,131, 86,111, - 48, 36,253,116,188,120, 36, 0,140, 26,224,118,160, 79, 84,155, 96,177,193, 31,186,181,126, 90,232,222,201,177,239,184, 81, 3, - 93, 97, 46,134,160,203,128, 81, 16,145,155,171, 67,186, 70, 14, 55,241,230,218,169, 77,105,138, 34,186,181,105,227,175, 58,117, -232,229, 12, 95,151, 18,185,151,163, 32,151, 19,145, 74,204,148, 51, 26,147, 12, 30,234, 97, 50, 81, 68,183,198,246,173,175,233, -232,232,242,196,192, 33, 99,220,174,199, 76, 37,142, 65,163,224, 27, 26,136,140,184,175,145, 31,191, 15, 69,249, 89,196,141,150, - 64, 21,214, 30,163,198,255, 31,222,123,190, 55,202,203, 43, 65, 10,210,220, 20, 10,165,123, 83,154, 84,130,201, 31,190,251,182, -191, 84, 42, 1, 68, 30,160, 60, 64,205, 0, 53,163,162,178, 26, 70,163, 17, 14,114, 10, 39, 7, 10,212, 70, 9, 5,193,168,234, - 54,116,225,115, 0, 78, 55,166, 89,159,248,116,154,208, 37,148,156, 4,229, 35,168, 80, 5, 2,156, 76, 72,167,117,166, 39, 42, -148,116,233, 53,244,169,255, 17,224,147,230,206,189, 41,162,218,225,254,222, 17,206, 78,142,124, 18,178,143,205, 66,170,224, 64, -253,186, 78,197,255, 77,126, 94,245,249,250, 47,198, 18, 66,102,214,159,131,102,235,231,110, 15, 76,147,105,254, 91, 53,221,220, -220, 66,219,181,107,183,216,108, 54, 15,146,203,229,126, 38,147, 9,162, 40,230, 41, 20,138, 19,153,153,153,111,150,149,149,165, -255, 19,250, 89,159, 3, 7, 14,216,108,178,108,209,148,201,100,216,191,127,127,138,173, 38,171,161,166, 68, 34,217,178,115,231, - 78,124,251,237,183, 0,128,163, 71,143, 34, 44, 44,204,169,177,125,111,220,184,225,244,240,195, 15,111, 1, 16,212,156,230,181, -107,215, 66,223,126,251,109,236,220,185, 19, 0,176,121,243,102,132,135,135, 55,218,159,139, 23, 47,114,175,189,246, 90, 40,128, -155, 12,214,159,241, 25,221,105,212, 25,172,218, 53,118,173, 77,210, 75,107,227, 34,235, 9,179, 25, 0,210,236, 61, 88, 98, 42, -125,183,123,184,108,100,204, 15,159, 12,114, 80, 72,240,198,170, 23,111, 20, 20, 84,220, 37,229,106, 38, 12,242, 2, 36, 30,238, -138,216,229,179,186, 7,151,148, 25,240,227,241,156, 95, 19,210,168, 93,161,208,132, 84,122, 24, 64,221, 5, 63,170, 29, 9,127, -242,213,195,219,183,191, 59,178,219,188,201,221,176,231, 88,230, 60, 0, 95, 54,173, 80, 15,241,214,218,149,181,171,193,220,188, - 77,180,127,201,195,165, 75, 39, 72,247,108,223, 53,210, 73, 41, 93, 59,227,217,233,174,230,162, 68,148,149, 10,200, 43,212, 33, -171,192, 29,130, 99, 7, 36, 39,156, 22, 56,137,196,234,252, 51, 34, 65, 57, 53,235, 92, 60, 28, 29, 37,145,125,158,243, 47,139, -127,165, 92,201,153, 57,247, 30,111,187,104, 47,127,120,157,175,206,175, 36, 18,152,172,233,184,186,185,133, 85, 87,100,114,101, -165, 69,112,239, 26,137, 81, 15,140,197, 27,207,116, 70, 69,133, 14, 5, 69,167,104,199,182,110,196,112,254, 27,188,250, 68, 4, -138, 10,115, 97, 52, 3,146,114, 67,177,193,104,168,108, 74,147, 82,124, 62,247,197, 5,143,182, 13,244,113,178,204,101,163,162, -128,238, 81,237, 49,124, 72, 95, 28,142, 61,133,179,231,147, 33, 82,177,118,174,155,128,236,252, 82,173,193, 36,124,109,207,251, - 73, 69,190, 38, 18,218,128,218,121, 87,118, 71,153,186,118, 37, 42, 65,135,215,239,138,116,121,230,229, 39,218,186,184, 40, 8, - 12,142, 2, 12, 6, 51, 42,146, 62,134, 87, 96, 87,168, 28, 28, 72,207,158, 85, 82, 0,173,178,254, 33,131,113,167, 48, 97,194, - 4, 7,173, 86,123,108,204,152, 49,145,195,134, 13, 83, 13, 26, 52, 8, 58,157, 14, 7, 15, 30,132, 94,175,111, 27, 20, 20,212, -246,208,161, 67,227,251,246,237,155, 24, 20, 20, 52,248,187,239,190,179,107,142,108, 45,150,235, 85,171, 78, 14, 87, 40, 20,136, -141,141,109,213, 72,150, 66,161,192,153, 51,103,108, 54, 89,245,209,233,116,242, 54,109,218,192,203,203, 11,130, 32, 64,167,211, - 97,247,238,221, 40, 47, 47,135, 40,138,112,116,116,196,135, 7,202, 96,184,186, 19,235,215,190,141,178,178, 50,185, 53,205,194, -194, 66,210,169, 83, 39, 84, 87, 87,131,231,121, 24, 12, 6, 28, 57,114,164,238,181, 84, 42,197,178,157, 90, 84, 39,111,199,166, -207, 63, 68, 97, 97, 97,171,173, 14, 98, 13, 27,189,200,191, 2, 41,240,199, 9,253, 21, 39, 38, 8,252,162, 47,190,222, 30,187, -104,214, 36, 60,255,196,208,160, 55, 63,218, 53, 44, 49,141,110, 2,128,200,246,228,201,199, 71,119, 12,118,119,146, 97,233,103, -231, 0,208, 69,183,123,188,248, 76,154,220,165, 3,153,183,235, 88,214,177, 87,158,233,137,246, 65,174, 97, 29, 58, 16, 69,106, - 42,109,118,190, 15, 21, 69, 80,202,215, 77,106,175,221, 88, 59,167,231,143,109, 34,165, 0, 53,131,218,248, 63,222, 39, 74,249, -172,163, 76,242,172,147,139,123,240,220, 25,143, 59,142, 25,243,176,163,147,130,162, 40,113, 63,202,105, 23, 24,157,156, 64,245, -165, 72,191, 22, 47, 28, 56,126, 46, 71,233,229, 63,223,154,166, 40,224, 87,205,141, 43,227,218,117, 28,230, 94,112,238,213,252, -208,161,223,132, 72, 32, 72,116,177,227,243,157, 92, 34,229, 39, 47,198,243,162,128, 83,214,116, 42,202,203, 51,205, 38,248, 27, -204, 50,151,212, 51, 27,177,240,241, 46, 40, 45, 41,128,161,154, 71,169,142, 55,249,123,155,148,134,146,203,168, 54,242,168, 54, - 81,200, 84,106, 28,138,141, 47, 20,121,243,129,166, 52, 83, 53,244, 2, 0,231,250,219, 58,168, 73,247,151, 61, 28, 47, 64,168, - 66,214,117, 13, 54,125, 31,219,179,182, 93,203,161, 60, 40,255,199,119,180,101,242,123, 75, 38,183,119,110, 71,250, 56, 58,202, -214, 46, 93, 56, 38,114,112, 23, 65, 73, 12,185, 32, 0, 84, 14, 82, 84, 59, 8,112,115,104, 15,106,170,160,122,131,161, 52, 33, -254,239, 91, 34,136,193,248, 39, 18, 17, 17,209,198,205,205, 45,225,197, 23, 95,244, 28, 55,110, 92,157, 25,248,250,235,175,177, -122,245,106,188,241,198, 27, 48,155,205,248,226,139, 47, 84,223,127,255,125,159, 79, 62,249, 36,187,109,219,182, 93,178,178,178, -242,108,144, 39, 0,228,168,185,118, 73, 80, 99,174,132,165, 75,151,210, 55,222,120, 3,245,183, 81, 74,173,222, 84, 54,134, 66, -161,128, 66,161, 64, 82, 82, 82,171,152, 44,153, 76, 6,185, 92, 14,133, 66,129,171, 87,175,218,109,178,120,158,231,178,179,179, - 81, 94, 94,142,225, 99,199, 98,245,138, 21, 24, 52,104, 16,134, 13, 27, 6, 74, 41, 98, 98, 98,112,183, 71, 50, 60,199,222,131, - 43, 87,174,192,108, 54,219, 52, 50,149,157,157,141,162,162, 34,140, 28, 59, 22, 95,126,250, 41,122,245,234,133, 78,157, 58, 1, - 0,142, 29, 59,134,161, 1,153,112,238, 52, 12,201,201,201, 45, 60,115,251,249, 43,189,200, 95,193, 95, 94,166, 33, 62,149,254, - 30, 25, 74,246,253,223,152,232,251,199,222, 27,137, 47,183,255,242,118,100, 36,217, 14, 0, 94,110,202,183,158, 24,211, 30,137, -105, 37,136, 57,163,217,151,152, 78,127,111,141, 99,138, 2,188,189,220, 85,128, 68, 1,189, 81,224, 93, 93,109, 92, 35, 78, 52, -195,195, 89,217,105,204, 96,239,159, 65, 69,184, 59, 43, 35, 64, 5,184,187, 40, 59,141, 26,224,118, 64,164, 20,238, 78,242, 8, -218, 72,164,171, 49, 6,246,112, 56, 52,127,246,172,126, 99,198,254,159,163, 92,229, 5,177,234, 6,204,197,151, 80,148,126, 20, -213,142, 61, 80,144,157,129,237,123,126, 44, 75, 74,215,150,115,156,228,176,212,205,111,193,145, 35,233, 77, 70,135, 44, 24, 56, - 44,127, 99,241,162, 49,219,183,110,115,115, 84, 15,196,181, 61,163, 75, 21,156, 89,233, 27, 16,142, 42,222, 69,248, 96,195, 62, -119, 29,176,194,154,142, 94, 87,254,195,145,152,159, 39,117,244, 31,224,146, 17,191, 15,122,189, 17,213,102, 32,170,215, 16, 8, - 34, 85, 16, 9, 17, 93, 57,142,104,181,193, 24,101,114, 0, 0, 32, 0, 73, 68, 65, 84,197, 32,102, 81,123,226,124, 70,238,201, -179,105, 92,181,196,186,118,125,164,114,110,246,216, 97,221, 1,161, 10, 15, 12,143,194,170, 13, 49,179, 0, 60,101,143,198, 45, - 80, 51,168, 80, 5, 10, 12,232, 18, 74, 62,163,192,128,184, 3,171, 34,122,143,154, 7,216, 17,193,138, 10, 37,163,186, 70,168, - 55,174,122,123,145,167,167,111, 16, 7,161, 10,132, 47,167, 98,241,239,144,234,174,193, 53,112, 12, 4,183,254,248,252,211, 15, - 42, 69,145,110,111, 73,137, 10, 6,227, 78,198, 96, 48,252,176, 98,197, 10,207,251,239,175,201,118,175,172,172,196,169, 83,167, -176,126,253,122, 56, 57,253, 49,178, 69, 41,197,232,209,163, 65, 41,245, 92,178,100,201, 15, 0,250, 53,165,217,191,127,255,177, - 43, 87,174,188, 30, 29, 29,125, 13, 53, 53,142,228, 0, 56, 0,244,200,145, 35, 18, 0,232,211,167,143,112,230,204, 25, 17, 0, -157, 60,121,178,204,217,217, 57,172,178,178,242,184,189,253,183, 24, 44,133, 66,129,156,156,156,219, 54, 89, 50,153,172, 78, 79, - 46,151, 35, 39, 39,199, 46,147,197,243,188,244,167,159,126,194,249,243,231,177,180,103, 79,204,241,247,135,151,151, 23,142, 31, - 63, 14, 74, 41,156,156,156, 80, 92, 92,140,237,219,183, 99,200,144, 33,224,121,222,106, 4, 11, 0,118,239,222,141,184,184, 56, - 44,235,221, 27,179,156,156,224,238,238,142, 99,199,142, 1, 0,148, 74, 37,114,114,114,112,228,200, 17, 12, 30, 60,184,165,167, -254,159,199,102,131, 53,152, 16, 41, 9, 66, 27,179,169, 10,148,167, 0,129, 58, 50,146,200, 19, 19,237,191, 75,144, 0,175,174, -217,176,111,204,170, 69, 15,144,105,143,244, 84,191,249,201,209,153, 0,240,204,196,240, 0,149, 82,138, 53,219, 19,169, 4,120, -213, 94,221,198,136,140, 36,114,137, 4, 51,135,247,239, 4, 77,161, 17,105,215,203,126, 73, 76,167, 86,135,116, 68, 80,168, 58, - 47,196,227,227,174, 4,245,237, 26, 20, 68, 41, 95,155, 49,184, 18, 79, 62,144, 18, 28,221,197, 47,184,102, 78,145, 25,174,119, -127, 3,136,141, 14,137,215,209, 39, 74,249,236,203,243,230,245,123,240,177, 5,142,230,236, 93,168,206,252, 9, 16,244,208,235, - 8,202,249,142,200,189,158,141,165,171,182,221,168, 54, 75, 30, 61,151,104,176,203, 88, 38, 39,211,202,200,246,100,220,138,119, - 23, 31,126,103,233, 18,103,101, 78, 76,185, 76, 10,157,196,107,144,236,173,197,235,164, 21,101,198,135, 83,179,104,133, 53,157, -106, 9, 86,188,251,225, 71, 99,166, 62, 62, 46, 41, 60,104,176,151,144,151,230,165, 47, 43,203,255,230, 64, 92, 27,212,220, 57, - 18, 0, 72,205, 40, 66, 65,177,142, 23,120,243,113, 23, 19,222, 76,200,110, 62, 26, 88,159,246,126,196,103,220,152,110,143,249, -184, 43, 80,165, 43,129,175,135, 28, 35, 6,116,120,172,189, 31,121, 57, 77, 75,237,170, 49, 82, 31,203, 16, 97,236,250,123, 35, - 32,154, 34,168,104,134, 49,107,139,253, 58,192,188,121,147,218,186,121, 58, 25, 37, 68,208, 1, 50, 15, 64,225, 67, 36,142, 33, -224, 28,131,145,153,114,142,159,247,220,164,162,204,204,188,175,188, 41,110, 59,147,135,193,184,211,200,202,202,122,226,149, 87, - 94, 57,217,183,111, 95, 63,111,111,111, 68, 69, 69, 97,239,222,189,152, 63,255,143, 96,124,143, 30, 61, 0, 0, 69, 69, 69,120, -247,221,119,243, 52, 26,205, 19,205,105, 38, 36, 36, 36,109,217,178,101, 64,183,110,221,140,114,185,188, 4,181, 38, 43, 43, 43, - 75,170,211,233,136,209,104,164, 78, 78, 78,162, 82,169, 52, 79,152, 48,193,116,230,204,153, 48,157, 78,151,213,146,254, 91,204, - 80,239,222,189, 47,151,150,150,150, 17, 66,110,187,132,131,197, 92, 69, 68, 68,248, 24,141, 70, 1, 64,113, 75, 74, 56,240, 60, -143,222,189,123,227,200,175,231,112,224,215,203,168, 44, 72,195,228,135, 71, 32, 34, 34, 2, 7, 15, 30,108,105,247,106, 52,143, -156,196,177,115, 87,161,205, 74,196,227,255,247, 16, 58,117,234,132, 35, 71,108,174,144,196,104, 4, 41, 0, 88, 11,201,117,110, - 75,186,251, 69, 41, 54,191,250, 64,135, 72,105,212, 27, 32, 82, 71,236,218,184,183,255,162,119, 62, 75,234, 26, 64, 38, 95,182, - 33,219,171, 62,181, 19,147,183, 93, 76,140,120,236,129, 65, 65,248,242, 59,213,235, 0, 48,113,120, 40,206, 36, 22,224,116,124, -254,182,132, 22,214, 44,170, 79, 87, 63,162,130, 19,182,189,187,224,193,193,109, 3,219, 96,253,183, 39, 65, 40,126,176,117,255, -152, 77,143, 99,243, 15,199,110,172,222,120,115,198,224,198,221,113,215, 63,220,100, 72,162,160,112,119,148, 69, 60,245,192,221, - 86,179, 8, 29,100,146,105,163, 30,120,194,145,215, 30,132, 88,252, 29,100, 10, 57,170,116, 2,114,243,171, 81,165,114,196, 47, - 39,142, 87, 85,234,249,121,151, 82,248, 22, 69,237, 18,211,104, 90,143,112,114, 93, 87, 85,229,239,236,217, 65, 39, 33,160,149, - 70, 25,141, 75,204,209, 37,100,209,171,182,104,164,166, 82, 99,191, 64, 50,240,243, 77,223, 45,150,201, 20, 19, 57, 14,196,215, -221,201,231,179, 53,203,224,226,226, 12,202, 87,128, 86, 23, 98,220, 51,239, 20, 92,190,102, 10, 5,128,240,112,226, 60,168,187, -124,147, 84, 66,178,127, 57,111,124,205,218, 49, 8,135, 25,147, 31,232, 46, 19,205, 58,204, 94,178, 3,159,191,245, 0, 30, 31, -219, 89,246,211, 47,201, 51, 0,188,217,146,115, 7, 0,136, 53, 67,132,253,166,253,154, 68,128,147, 20, 24,112,110,223, 91, 17, -128,237, 35,143,189,122, 17,153, 84, 74, 58,119, 14, 48,202,132,236,237, 32, 14, 1,148,243, 30, 12, 56,133, 17,234, 28,133,143, -215, 44,174,252,114,253,250, 67, 34,193,210,164,140,230, 75, 94, 48, 24,255, 85, 40,165,105,238,238,238, 35, 71,143, 30, 29,115, -240,224, 65,207,168,168,154,229,230,226,226,226, 0,160,110, 40, 74,171,213,226,209, 71, 31, 45,204,205,205, 29, 73, 41,109,118, - 78,111, 69, 69, 69,250,174, 93,187,252,170,170,170,162, 95,123,237, 53,109,187,118,237, 42,204,102, 51,173,168,168, 0,207,243, -212,199,199, 71,214,171, 87, 47,210,165, 75,151,170,152,152, 24,175, 27, 55,110, 84, 0,200,108, 73,255,167, 78,157,138,239,191, -255, 30, 0,208, 26,117,177,228,114, 57, 70,143, 30, 29,112,234,212,169,156, 90,205, 22,215,197,162,148,226,210,165, 75, 56,145, - 34, 64,225,228,129,204,164,114, 28,249,113, 15, 38, 79,155, 14,158,111,249,108,133,139, 23, 47, 98,251,145,139,240, 11,232,128, -178,234, 75,216,189,123, 55,102,206,156,121, 91,154, 45,225, 78, 26, 30, 4,234, 69,176, 26, 59,161, 14, 29,136, 66,105,196,146, - 17,119, 5, 44,152, 48,180, 3,199,235, 53, 16, 69, 17, 28, 0,111, 23, 9, 54,124,249,121,232,119,187,246,199,118, 13,230, 62, -130, 81,124,245,178,150,234,109, 62,178, 4, 75, 86,126,253,219,196, 45,203,238,145,206,124, 36,194, 19, 0,228, 50, 9,214,108, - 75,224, 33,193,146,219, 57,169,126,129,196,161, 82,142,105,109, 66,220, 94, 95,244,220, 24,207,193,125,195,113, 60, 54, 30, 31, -109,141,253, 85,225,129,205,182,104, 80, 74,105,223,110,193, 88,189,177, 97,198,160,127,240,135,155, 12, 73, 7,127, 43, 31, 5, - 0,247,245,115, 58, 16,221,217, 51,216,218, 80,145, 32,210, 54, 10,149, 55, 12,153,251, 33, 85, 40,193,243, 38, 20,104,245,200, -200, 19,225,160,150,225,204,165,172,170,135, 30, 27,247, 83, 75,207,153, 16, 66, 6,244,112, 80, 47,121,235,131,192,170,170, 10, -190,188,180,144,151,202, 99,165, 42, 71,165, 45,243, 26,234,136,205,166,134,123,122,200,123,129,138,156,146,163,250, 69,243,166, - 56,229, 36, 31, 68, 71, 31, 13, 8, 40, 28,213, 99,224,226,196,201, 7,118,151, 95, 7,128, 16, 47, 55,197,187,111,206,119,155, -251,242,210, 19,214,180, 35, 35,137,188,107,120,155,185, 81, 29, 61,113,252,244, 21,252,122, 54, 43,225,215,223,147,187, 12,233, -163, 70,120,168,251,156,200, 72,178,162, 37, 17, 81, 0,117, 67,132,150, 44,194,168, 80,210, 37,250,254,215, 26,205, 30,108,138, -144,243, 16,147, 67, 41, 8,225, 64, 65, 0, 67, 14,248, 27, 91,192,133,206,162, 63,236,121,171,106,253,151,235,151, 37,102,216, -151,116,193, 96,252, 23, 41, 45, 45,189,164, 82,169, 70,116,239,222,253,235,217,179,103,187, 60,246,216, 99,234,169, 83,167, 74, - 0, 64,171,213,138,171, 87,175,214,172, 93,187,182,172,176,176,240, 41,147,201,116,217,154, 94,237,196,156, 83, 27, 54,108, 40, - 56,121,242,100,151,187,238,186, 75, 21, 29, 29, 45,250,250,250,202,245,122,189,112,227,198,141,170,216,216, 88, 33, 37, 37,197, -173,180,180, 52, 5, 64,106, 75,134,239,213,106, 53, 36, 18,201,155, 65, 65, 65,139,115,114,114,186,182,198, 28,172,142, 29, 59, -170, 1,164, 4, 4, 4,116,180,119,120,176, 33, 82,169, 20, 37, 37, 37,168,200, 78,133,190,168, 16,157, 56, 61,122,120,122,195, -197,197,229,182,204, 80, 89, 89, 25,164,213, 90,164, 93,202, 66,105, 94, 38, 34,219,246,134,147,147, 19,170,171,171, 91,172,217, - 82,238, 20,115, 5, 52, 51, 68,216, 37,136,204,244, 80, 96,245,148, 9,161,242,208,182,129, 48, 22,196,225, 66,106, 37, 94,251, -170, 79, 34, 39,119,169,126,254,201,225,189,134, 12,243,193, 61,131,251,144,118,109,221,231,172, 88,177,238,127, 93,130,201,252, -132,235,116,141, 45, 7, 78, 72,165,233,157, 67,201,250,163,103,115,102, 4,250, 84,129,130,226,232,185, 92, 92, 78, 45, 89,127, - 37,157, 54,154,186,219,100, 95, 59,146, 97, 82, 34,217, 65, 5,234,224,230,226, 84,209, 99, 80,132,247,176, 1,221, 36, 35,135, - 68, 67, 46, 5, 78,158,190,136,121,111,253,240,187,168,160, 99,226,226,172, 15, 15, 90,160, 34,127,211,132,246,154,109,141,236, -222, 72,102, 97, 67, 56, 9,201,211,105,207,181, 81,184, 68,194, 84,244, 11,180,218, 74, 36,164,153, 80,137, 32,148,100,103,131, - 82,225,250,146, 37,223,181,248, 63,196,219,219,219, 55, 52, 44,188,195,218, 47,119,194, 84, 93,134,180,196,141,168, 44,207,195, - 91,203,127,236, 16, 24, 24,120, 79,118,118,246,113, 91,181, 8, 72,120,204, 47,219,124, 65, 1, 78,170,196, 79, 95,124,139, 66, -169, 35,188,221,228, 16, 13,249,152,246,236,100,183,209, 99, 38,187, 1,192,245,212,139, 8,246,180,205, 87,155, 74, 49,126,226, - 83,157,220, 33,232,177,121,247, 69,131,132, 96,228,230, 31, 19, 82,135,244,114,119,152, 56,188,173,199,155,159,151, 62, 12, 96, - 91, 75,206,159,138,194, 77, 89,132, 45,201, 30,252,142, 82,161,115, 40, 73,221,118,164,192,121,194,232,158,142,114, 41, 33,212, -144, 3,145,200,201,154, 79, 54, 84, 40, 8,190,104, 73,223, 24,140,255, 34,122,189, 62,142, 16,210,245,165,151, 94,122,244,149, - 87, 94, 25,228,228,228, 20, 10, 0, 58,157, 46,221,108, 54,255, 10, 96, 27,165,212,230, 20,236, 90,195,148, 66, 8, 73, 79, 77, - 77,245,219,188,121,179, 59, 0,135,218, 95, 27, 0,148, 2,208,218,163,217, 16,139,153, 82,171,213,139, 91,170,209, 16,139,153, - 10, 8, 8,232,216,146,253, 57,142, 19, 36,146,154,149,125,148, 74, 37, 78,156, 56,129, 81, 3, 6,226,226,145, 44, 68,248, 5, - 97,200,228, 41,216,125,244, 40, 56,142,179,180,183,235, 58, 34,149, 74,113,242,228, 73, 60,114,255, 96,236,222,189, 27,237,123, -119,199,172, 89,179,240,243,207, 63, 67, 42,101,171,233,221, 14, 77,191,123, 20,111, 30,222,241,142, 28,162, 25, 59,191,121, 15, -135,207,234,141, 87,115,240,106,167,108,172,222,137, 10, 49,191,240,251, 25, 63, 29, 75,123,255,233,167,238, 87,221,123,207,112, -220, 59,104,136,180, 75,247,123, 94, 7, 80,103,176, 8, 33, 81,205,213,202, 16,204, 88,246,197,247, 73,211,119,236, 79, 38,224, - 43, 48,233,129,104, 42,152,177,172,185, 14, 55,166,233,166,114,222,113,242, 68,172, 7,132, 74,228,101, 28,117,104,227, 23, 10, - 80, 51,174, 93, 75,198,199, 27,118,139,199, 98,175,110, 49,114,152,157,154, 72,117,182,106,130,138,183, 24,167,154,140, 65,254, -166,140, 65, 74, 41,133,200,163, 97, 65,239,134,154, 6,179,248,197,150, 77, 95,126,240,204, 51, 83,157,138,170,115,144,124, 35, - 1, 6, 46, 0,156,170, 3, 18,206, 29,172,170, 50,139, 86, 75, 71, 52,247,126, 22, 22, 22,230,199,157, 43,198,142,175,151,195, -108,174, 70,126,110,141, 71,205,213,150,195,213, 53, 32,214, 30, 77, 19, 47,150,141, 31, 55, 77,238,232, 0,199,201, 19,199, 40, - 82, 53,213,232,217,201,165,230,124, 77,133, 72, 58,118, 2, 67,124,107, 38, 67,166, 38,113, 8,190, 75,109, 83, 63, 93, 92,228, -179, 71, 13, 12, 64,122, 86, 30, 78,196,229,108, 74,203,161,154,246, 1,100, 83,234,245,210, 25, 15, 14, 9,198,170, 45,137,179, -208,132,193,106, 74,179, 54, 91,112, 0,168, 25,148, 55,128, 2, 3,162, 66, 73, 23, 91, 50, 7, 27,211,148, 74,240,216,202, 29, -153,175,237, 60, 86,240,224,130,169, 3, 93,251,247, 27,165,128,104,166, 21,250,106,115, 98, 58, 45,111,137,230,237,194, 52,153, -230,191, 85,179,214,236,108,169,125,180,166,166, 6, 13,234, 50,221,142, 38,112,243,112,160, 70,163,225,212,106,181, 96,109,146, -187, 13,154,167,235, 61,223, 95, 27,189,106, 54,138,213,136,166,166,111,223,190,158, 99,199,142, 5,207,243, 72, 73, 73, 65, 86, - 86, 22,198, 62,253, 20, 60, 60, 60,112, 58, 49, 17, 41, 41, 41, 88,188,120, 49,120,158,199,153, 51,103,110,169,200,222, 80, 83, - 38,147,153,186,119,239, 46,127,232,161,135,192,243, 60,210,210,210,144,153,153,137, 89,179,102,193,205,205, 13,137,137,137, 72, - 75, 75,195,226,197,139, 81, 93, 93,141,244,244,244, 91, 70, 22,254,140,191,165, 59,141,166, 13, 22,129, 0,209,140,178,179, 75, -240,217, 62,152, 76, 60, 34, 18,110,208,140,122, 45,214,117, 11, 36,123, 47, 37, 36,165,199,157,190, 87,129,242,203, 0, 96,215, -157, 67,242, 13,154, 27,221, 73, 90, 1,190,194, 21, 5, 7,144,145, 83, 81,153,124,131,230,218,123, 18, 84, 20, 8, 4, 61, 80, -118, 14,187,247, 29,131,210,225, 2,206,158, 79, 18, 78,197, 37,239,144, 80, 44, 75,204,160,215,236,213, 4, 0,136, 60,220,156, - 21,183,100, 12,186, 59,202, 34,238,235,231,116,128, 82, 74, 93, 84,178,136,198,106, 99, 53,228, 76,124,245,151, 3,123, 56, 60, - 92, 81, 94,216,119,248,144,193, 78, 62,225, 19, 81,118, 45, 17, 9,231, 15, 87,157,187,156, 28,123, 38,190,218,182,218, 92, 77, - 16, 16, 16, 48,104,232,208, 78,152, 52,101, 17, 76,213,165, 72, 75,216,128,138,242, 60,156,248,205, 25, 73,215,203,251, 1, 56, -110,171,214,169,120,115, 23, 0, 24,208, 85,126,221, 85, 97,108,243,196, 35,247, 67, 41, 53, 64, 52, 87,128,152, 10,145, 90,108, - 42,123,120, 73,182, 0, 0, 42, 7, 34,117,146,150,185,218,162, 27,217,222, 43, 76, 37, 55, 99,243,158, 4,136,164,102,153, 37, -145, 96,221,230,189,169, 51,150, 61,223, 19,145,237, 61,186, 91, 6,224,109,237, 43, 5,254,119,238,199,165, 17,134,132,215, 65, - 69, 51, 78,190,239, 17, 49,240,165,146,255,161,133, 21,214, 47,167,210, 28, 0, 51, 58,183, 37,159,207,121,251,231,215,123, 71, - 37, 14,120,113,198,131,174, 32,108, 97,116, 6,131,241,215,163,215,235,167,191,252,242,203,159,115, 28,231, 3,128, 80, 74, 81, - 93, 93, 45, 93,191,126,189,140,231,121, 9,199,113,130,131,131, 3, 31, 23, 23,103, 22, 69,177,192,100, 50, 77,183,166,105, 52, - 26, 83, 63,254,248,227, 14,102,179,185, 46,227,176,186,186, 26, 91,182,108, 65,117,117, 53,148, 74, 37,156,157,157,145,150,150, - 6, 66,136, 73, 16,132,212, 63,245, 36,239, 80,154,187,104, 44,237, 63,126,201, 18, 80, 16, 16,188,209,192, 92, 1, 0, 46,101, - 83, 77,151, 32, 50,175, 75,143,123,106,230, 76, 17, 44,181,183, 3, 6, 65,120, 36,186, 87,248,118, 0,168, 22,133,199,237,221, - 31, 0,202, 13, 85, 19,123,244,233,183, 67,164, 84,202, 11,116,189, 68,130,239, 13,192,149,212,116,235,153,115, 77, 65, 69, 10, -231, 94,171, 49,229,129,212,154,140, 65,106, 6, 21,121,184,245,223,134,167, 30,184, 59, 56, 58,194, 61, 24,162, 25,148,154,225, - 49,244, 40,240,154,131, 85,205, 19, 23, 12,247,245,137, 82, 62,123,240,248,249,105,130, 72,219,112, 18,146,103, 48,139, 95,220, -174,185, 2,128,236,236,236,227,145,237,201,161, 75, 3,252,238,243,174, 45,179, 90, 88, 10, 20,150,225, 80,118,118,197,241,150, -104,150, 84,153, 31,124,229,253, 61, 63, 42,164,156, 20,160, 16,107, 23,188, 54,152,132, 98,139, 9,235, 22, 70,212, 47,173,231, -183,115, 28,201,178,166,119,250,114,238,170, 73, 47, 29,153,159,144, 82,178, 62, 35,187,230,206, 39, 35,155,198,119, 12, 32,175, -167,222,168,152, 31,159, 82,242,129,189,243, 38, 8,240, 73,244, 3, 75,110,217,102,143, 70, 99, 92,201,162, 23, 1,140,235, 18, - 66,134, 79,154,185,246, 69, 66,236,187, 91,102, 48, 24,255,110, 44, 81, 44,137, 68,210,242,228,155, 6, 88,162, 88, 0, 82,236, -216,231, 52,128,174,173,213, 7, 0,136,139,139, 43, 2, 80,212,154,154,140, 91, 33,127,102, 25,159,127,115,136,187, 91,123,178, -204,191,141,107, 79,203, 18, 56,117,195,130,181, 38,131, 82,122,211, 58,191,133, 69,213, 23, 46,165,209,215,155,208,148,220,102, - 23,197,166,250,217, 24, 97, 97, 97, 52, 37, 37,197,166,201,130,255,230,207,136,105, 50, 77,166,201, 52, 91,168,249,103,124, 39, -223,238,228,108,218,136,102,171,240,111,209,188,211, 96,195, 30, 77, 80,223, 44,181, 2,182, 21, 54,109, 37,174, 93,187,118,199, -100, 97, 48, 24, 12,198,159,192,159,241,157,204,138, 14, 51,110,226,118, 93, 60,131,193, 96, 48, 24, 12, 6,163, 1, 4, 64, 84, - 99,191,176, 39,244, 71, 8,105, 84,163, 57,172,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,206,211,180,166,125,167, 12, - 61,178, 57, 88, 76,147,105, 50, 77,166,201, 52,153, 38,211,252,219, 53,239, 52,216, 16, 33,131,193, 96, 48, 24, 12, 70, 43,195, - 12, 22,131,193, 96, 48, 24, 12, 70, 43,195, 12, 22,131,193, 96, 48, 24, 12, 70, 43,195, 12, 22,131,193, 96, 48, 24, 12, 70, 43, -195, 12, 22,131,193, 96, 48, 24, 12, 70, 43,243,167,102, 17, 50, 24, 12, 6,131,193, 96,252, 23,145, 0, 0, 33,132,214, 62,238, -249,155,251,195, 96, 48, 24, 12, 6,227, 63,200,157,230, 69,234,150,202,161,148, 18, 66, 8,197,237,175,167,196, 96, 48, 24, 12, - 6,131, 97, 55,119,146, 23,169,155,131, 85,123, 66,131,255,198,190, 48, 24, 12, 6,131,193,248, 15,115, 39,121,145,155, 34, 88, -127,103, 71, 24, 12, 6,131,193, 96,252,183,185,147,188, 8,203, 34,100, 48, 24, 12, 6,131,193,104,101, 88, 22, 33,131,193, 96, - 48, 24, 12, 70, 43,195, 34, 88, 12, 6,131,193, 96, 48, 24,173,204,159,106,176, 8, 33, 81, 76,147,105, 50, 77,166,201, 52,153, - 38,211,100,154,255, 53, 88, 4,139,193, 96, 48, 24, 12, 6,163,149, 97, 6,139,193, 96, 48, 24, 12, 6,163,149, 97, 6,139,193, - 96, 48, 24, 12, 6,163,149, 97, 6,139,193, 96, 48, 24, 12, 6,163,149, 97, 6,139,193, 96, 48, 24, 12, 6,163,149, 33, 0, 26, -205, 4,160,148,198,219, 44,210,130,108, 2,107,250, 76,147,105, 50, 77,166,201, 52,153, 38,211,188,243, 52,173,105,219,227, 63, -254,201,252,169,133, 70, 9, 33, 81,173,253, 70, 49, 77,166,201, 52,153, 38,211,100,154, 76,243,206,211,188,211, 96, 67,132, 12, - 6,131,193, 96, 48, 24,173,204,223,102,176, 8, 33, 18, 66,136,180,246, 33, 33,132,220,246, 2,143,127,134, 38,131,193,248,103, - 66, 26,240,119,247,135,193,248, 55,115,238,220, 57, 90, 88, 88, 72,253,253,253,147, 8, 33, 51,255,238,254,220, 9, 72, 91, 83, -172,147,175,227, 93,237,130,124,198, 28, 56,151,245,106,115,237, 8, 33,146,128,128,128, 21, 62, 62, 62, 51,245,122,189, 1, 0, -149, 72, 36,180,115,231,206, 32,132,192,242, 93, 41, 8, 66, 65, 82, 82,146, 77,227,191,173,169, 25, 30, 30,126, 78, 34,145, 4, -214,255,206,182,246, 92, 20,197,236,196,196,196,222,214,250,233,239,239, 63, 66, 34,145, 44,180,214, 78, 20,197, 21,185,185,185, - 7,155,107,211,181,107,215,243, 78, 78, 78,126, 18,137,164,201,139, 75,253, 33, 96,158,231,169, 94,175,215, 38, 36, 36,244,180, -118,124, 6,227,159, 12, 33,132, 4, 5, 5,245,240,243,243, 11,169,170,170, 18, 0,160, 75,151, 46,148,227,184,155,218,153, 76, - 38, 83, 82, 82,210,254,191,165,147, 12,198,191,136,195,135, 15, 99,218,180,105,184,124,249,114,167,253,251,247,127,170, 86,171, -255,151,155,155, 59,132, 82, 90,240,119,247,237,223, 74,171, 25,172,142,254,206,157,218,120,123,237,123,247,237,165, 0,208,164, -193, 34,132, 72,252,253,253,223, 29, 56,112,224,211, 91,183,110,117,218,181,107,151, 83, 72, 72, 8,228,114, 57, 56,142, 3,199, -113,144, 72, 36,224, 56, 14, 15, 62,248,160, 77,119,165, 13, 53, 99, 98, 98,156,194,195,195,235,204, 15,165,180,206,100,141, 30, - 61,218,170,166, 68, 34, 9, 60,127,254,188,175,131,131, 67,221,254,162, 40,222,244,160,148,214, 61, 4, 65,192,192,129, 3,109, -233, 42, 36, 18,201,194, 43, 87,174, 12,210,233,116, 55,105, 88,142, 97,121, 62,104,208, 32, 0,104,214, 96, 73, 36, 18,245,111, - 39, 98,124,137, 41, 29,224,139, 65, 57, 79, 64, 17, 10, 72,148,141,182, 47, 46, 46,198,144, 33, 67,184, 70,127,201, 96,252, 75, -176,152,171, 81,163, 70,181, 93,183,110,157,244,202,149, 43,210,206,157, 59, 67, 16,132,186,135, 40,138,118,253, 95, 50, 24,255, - 69,218,142, 95,255,169,200,155,106,163, 85,238, 0,190, 64, 69, 69, 5,166, 78,157,138, 61,123,246,116,190,235,174,187, 86, 0, -120,250,239,236,227,191,153, 86, 49, 88, 29, 2, 28, 3, 92,148, 78,135, 62,255,108, 45, 49, 87,104, 61,154,106, 71, 8,145,180, -105,211,230,173,129, 3, 7, 62,190,117,235, 86, 15, 66, 8, 98,102, 61, 3,119,147, 1,234,197,239,193,195,219, 7,198,133,211, -224, 34,240,232,250,203, 69,155,142,221,152,230,213,171, 87, 81, 92, 92, 12, 31, 31, 31,168, 84, 42, 40,149, 74,200,229,114, 40, - 20, 10, 91, 53,225,224,224,128,195,135, 15, 67, 42,149,214, 61, 56,142,107,244,181,159,159,159,109,111, 20,106, 34, 83, 17, 17, - 17,221,146,147,147, 93, 75, 74, 74,208,175, 95,191,114, 66,200, 37,203,239, 41,165,221, 46, 93,186,228,106,171, 30, 49,165,163, -242,250,103,160, 37,223, 3,238,227, 33,184, 78,130, 1,161, 55, 93,100, 44,166, 80, 16, 4,155,251,201, 96,252, 19, 33,132, 16, -127,127,255,110,247,221,119, 95,208,186,117,235,228, 0, 16, 31, 31,143,220,220, 92,248,250,250,194,193,193, 1, 50,153, 12, 28, -199, 65, 46,151,255,221,221,101, 48,254,209,136,188,105,102,247,222,119,215,189,222,116,248, 35, 84,187,245, 68,206, 27,111, 96, -245,234,213, 8, 11, 11,235,243, 55,118,239, 95,207,109, 27,172,168, 96, 55,119, 37,145, 29, 90,191,110,165, 2, 38,157,199,213, -179,191,161,203,168,233, 0,110, 78,181,172,157, 35, 33,241,243,243,123,110,219,182,109,174,150,232, 82, 56, 17,224, 14, 19,218, - 69, 70, 66,229,230, 14, 45,111, 2, 53,155,160,144,203,209,216,180, 10, 91, 52, 37, 18, 9,100, 50,217, 77, 15,133, 66, 1,133, - 66, 97, 85,179, 62, 22, 19,117,248,240, 97,152,205,102, 60,242,200, 35,141,154,173,198,104, 74, 51, 55, 55,247, 96, 64, 64,192, - 37, 74,233, 32, 81, 20, 65, 8,185,148,147,147,115,143,229,247,254,254,254, 35,186,119,239,190, 80, 20,197, 21,214, 52, 41,165, - 0, 95, 4, 90,188, 13, 46,253, 10, 81, 30,235, 13,226, 52, 12, 2,218, 34, 62, 37, 15, 49,231, 50, 81, 88, 92,137, 94,225,190, -184,175, 95,123,136,162,104,115, 63,111, 7,166,201, 52,255, 76, 77,127,127,255,208, 47,190,248, 66, 86,127,155, 92, 46,175,139, -130,215,143,134, 55, 28, 50,252, 43,251,201, 52,153,230, 63, 93, 83, 34,149,175,187,120,238,212, 76, 0, 40,191,242, 3,230, 60, -122, 55, 42, 42, 82, 48, 99,198,235,200,201,201,193,181,107,215,226,254,202,126,222,105,212,185, 3, 66, 8,165,148,218, 53, 81, - 52, 48,144, 56,184, 8,142,251, 62, 93,181,194,205,197, 89,229,115,238,208,110,100,101,229, 53,187,143, 94,175, 55,238,217,179, - 7,135,254,247, 52,194, 8, 15,143,197,239,195, 87,173, 70,217,211, 15,162,210,108, 66,135, 3,103,160,116,118,134,194,201,185, - 81, 51,212,148,230,209,163, 71,145,144,144, 0,169, 84, 10,103,103,103, 56, 57, 57, 65,169, 84,214, 25, 43,203, 23,176,173,154, -148, 82, 72,165, 82,196,199,199, 35, 43, 43, 11,238,238,238,248,237,183,223, 48,108,216,176,155,204, 21,199,113, 55,205,241,178, - 21,203,208, 98, 67,106,231, 93, 53, 59, 52,120, 19, 50,111,192,243,113, 84,252,174, 6, 60, 38,195, 76,221, 32, 82, 17, 23, 82, -138, 48,125,242, 24, 0,192,115,175,125,134, 97,125, 67,234,134, 32, 25,140,127, 51,122,189, 94,184,114,229,138,236,226,197,139, -224, 56, 14,174,174,174, 80,169, 84,144,203,229, 80, 42,149,117,198,138, 69,176, 24,140,230,201,250, 97,234,115,132,144,101,193, -193,193,199, 63, 91,190,188,227,208,161, 67, 1, 0, 49, 49, 49,216,240,232,163,120, 3,120,226, 35, 66,114,103, 83,186,232,175, -234, 83, 75,188,200, 63, 21, 41,240,199, 9,217,115, 98,132, 16,210,193,207,229,187,165,175, 60, 31, 18, 28,218,190,205,233,159, -190, 69,122,122, 14,180,218,146, 70,219,215, 30, 64, 36,132,136,161,161,161,112, 53, 27,224, 70,141,240,245, 87,195,197,211, 11, - 37,230,218,200,149,147, 19, 20, 78,206, 54,125, 57,214,215,140,140,140,132, 86,171,133, 92, 46,135,179,179, 51, 92, 92, 92,234, - 12,150,197, 92,217,250,133, 75, 8,129, 40,138,144, 74,165,184,116,233, 18, 6, 12, 24,128,160,160, 32,236,216,177, 3, 35, 70, -140,184, 37,138,213,146, 4, 38,203,156, 43, 11,255,207,222,153,135, 69, 85,182,127,252,251,156, 89, 25, 24,134,125,153, 5, 17, - 16, 16,200, 5,112, 95, 18,212, 20, 84, 52, 77, 83, 51,183,204, 82,115,121, 53,211, 50, 95, 51, 53, 45,203,204, 76,211, 22,181, -215, 52,247,220,151,220,210,212, 16, 92, 19, 69, 5,100,153,129, 97,223,134,217,207, 57,191, 63, 96, 8,145,129, 65, 91,253,205, -231,186,184, 6,206,242, 61,207, 57,204,156,249,158,251,185,159,251,177, 36,191,219,146,220,254, 16,130, 86, 48, 59,191, 8,202, -177, 15,140,172, 4,122, 86, 90,211, 37,200,226, 80,162, 26,169,153,133, 15,117, 23,218,177,243, 52, 16, 26, 26,138,252,252,124, -112, 56, 28, 56, 59, 59,195,201,201, 9,173, 91,183, 70,118,118,246, 67, 81, 44, 59,118,236, 52, 14,135,195, 89,177,111,223,190, - 96, 7, 7, 7, 44, 91,182, 12,206,206,206,184,180,100, 9,190,229,243, 33, 2,176,222,104,156, 15,224, 47, 49, 88,143,227, 69, -254,201, 60,118, 23,161, 66,161,248,164, 75,247,206,207, 6, 70,116,116,248,245,232, 30,220,187,155,137,194,194, 50,176,128,182, -145,221, 88, 66, 8,203,227,241,224,253,214,251,104,209,182, 45,170, 38,191,128, 18,147, 17, 65,135, 46, 65, 40, 22,227,246,115, - 81, 96, 13, 6,244, 76, 81,219,106, 92, 88, 66, 8, 11, 0,158,158,158,224,243,249,112,112,112,128,131,131, 67,109,238, 85,221, - 31, 91,205, 16,195, 48, 40, 47, 47, 71, 70, 70, 6, 38, 79,158, 12, 71, 71, 71, 16, 66,160, 86,171,225,239,239, 15, 14,135, 3, -165, 82,137, 83,167, 78, 33, 48, 48, 16, 2,129,160, 89,111,134, 58, 73,237,237,228,114,249, 89, 66, 72,187,164,164, 36, 73,135, - 14, 29,128,230, 68,176, 8, 31,122,248,131,134, 2, 12,251,123,174,149,201,108,126,104, 51,139,201,178, 99,231,223, 12,203,178, -108,155, 54,109, 88, 14,135, 3,111,111,239, 90, 51,197,227, 85,247, 24,250,248,248,160,188,188, 28, 28, 14,167,118,153, 29, 59, -118,172, 19, 18, 18, 18, 45,151,203, 49,107,214, 44,232,182,109, 67, 37,128, 65, 0,246, 25,141, 0, 0,103, 96,206,223,218,192, -127, 49,143,101,176, 20, 10,197, 27,237,219,183,159,244,213,230,173,226, 15, 23,190, 85, 94,146,114,131, 99,208, 26,157,244, 38, -147,225,126,110,209, 26,107,251,177, 44,203,134,133,133, 85, 63,117,186,186,193, 81,226, 2,125,189,200, 21,107, 48,128, 49, 26, -192,183,241,230,104,209,100, 89, 22, 34,145, 8, 2,129,160,193,200, 85,115, 34, 88, 0, 80, 90, 90,138, 29, 59,118,160, 83,167, - 78,112,116,116, 4,135,195, 65,187,118,237,144,146,146,130,160,160, 32, 0,192,190,125,251, 48,108,216, 48,220,187,119, 15,225, -225,225, 98,155,197,241,123, 23,225,241,227,199, 37, 44,203, 62,203,178, 44, 10, 10, 30,111, 52, 44, 77,211,208,104, 52, 56,126, -252, 56, 84, 42, 21,124,125,125, 81, 86,230, 12,137,172,218, 80,213, 29,253,104,199,206,211, 0, 77,211,184,124,249, 50,126,254, -249,103,156, 63,127, 30, 25, 25, 25,181,235, 36, 18, 9, 78,156, 56,129,216,216,216,191,177,133,118,236,252, 59,184,123,247,110, - 98,102,102,102,216,194,133, 11,177, 73, 46,135,179,179, 51,102, 47, 90,116,209,108, 54,119,107,122,111, 59,141,193, 5,128,230, -132,228, 20, 10,197, 80,169, 84,250,225,214,173, 91, 69, 42,149, 10,178,144,103, 36, 7,118,237,208,123,139,249,218,220,226,146, -113, 87,149,149,187,155,210,160, 40, 10,230, 37,179, 81,100, 54, 32,224,192, 5, 8,197, 98,164,246,239, 0,214, 96, 64,183,228, - 7, 16,138,197,224, 58,136,154,125, 50, 13, 69,172,234,254, 80,148,109,117, 85, 13, 6,131,107,223,190,125,209,167, 79, 31,188, -240,194, 11,181, 93,129,145,145,145,216,190,125, 59,134, 14, 29,138,107,215,174, 65, 38,147,161,117,235,214,104,221,186, 53, 78, -159, 62,221,172,182, 90, 34, 88,253,251,247, 47, 39,132, 92,103, 89,182, 93, 98, 98,162,205,163, 7, 45, 26, 64,181,129, 58,126, -252, 56, 6, 14, 28,136,160,160, 32, 92,185,114, 5, 39,222, 95, 9,174,216, 19,160,188,193, 50,108,109,100,203,158,131,101,231, -105,128,166,105, 80, 20,101,245, 51,109, 45,193,221,142, 29, 59, 15, 67,211,244,252, 33, 67,134,116, 92,182,108, 89,248,236,217, -179, 1, 0, 50,153,172,171, 76, 38,187,245, 87,215,193,122,154,186, 7,129, 58, 17,172,166, 78, 44, 38, 38,230, 43,147,201,244, -188,147,147,147,219,164, 73,147,140,133,133,133,216,187,119, 47,190,253,246,219, 42,141,137,147, 84, 90,100, 30,155,166,170,204, -105,234,128,132, 16, 80, 20, 5,190,201, 4,214,252,123,228,138,209,235,107, 35, 89, 60,145, 99,179, 78,130, 16, 2,150,101, 27, - 52, 85,150, 72, 86,115,110,182, 66,161,176,244,252,249,243,222, 57, 57, 57, 15, 37,180, 7, 4, 4, 0, 0, 18, 19, 19,113,233, -210, 37,140, 26, 53, 10, 92, 46, 23,124, 62, 31,215,175, 95,175,104, 78,155, 45,134,199, 50,138, 80, 42,149,246,239,220,185,115, -131,163, 7,109,209,202,202,202, 66, 80, 80, 16,244,122, 61, 92, 93, 93, 81,148,155,129,172,140,116, 84,233, 83, 17,232,235,128, -252,252,124, 8,133, 13,215,199,178, 99,231,223, 72,223,190,125,209,191,127,255,218,110, 66, 79, 79, 79, 24,141, 70,152,205,102, -187,185,178, 99,199, 6,252,135,125,189, 78,145,240,197, 20, 0,152,243,217, 73, 44, 88,242, 41,198,188,208, 31, 19, 38, 76,248, -219,234, 96, 61, 77, 38,235,161, 46,194, 70,204,213,120, 55, 55,183,209, 19, 39, 78, 20, 37, 38, 38, 98,201,146, 37,220, 19, 39, - 78, 24, 47, 95,190,108,166,105,122,142, 82,169,220,208,156,131, 82, 20,133,192,173,135, 32,243,245,197,221,184,142, 15, 69,174, -206,182, 83,128,209,235,241, 92,122, 89,179, 79,134,199,227, 61,100,172, 44,230,202, 90, 41,133,198,176, 60, 1,215,175,123,245, -250,235,175,227,171,175,190, 66,183,110,221, 16, 28, 28, 12, 46,151, 11,138,162, 30,107, 20, 97,221, 46,187,102,143, 30,172, 3, - 77,211,104,209,162, 5,110,220,184, 1, 23, 23, 23,124,247,221,119,240, 83,200, 49,182, 95, 0, 12, 6, 3, 76, 38, 19, 52, 26, -141, 37,130,245,175,127,211,218,177, 67,211,244, 67,163, 5, 45,134,202,110,174,236,216,177,157,135,234, 96,117,232,134, 95,246, -172,196,246,212, 22, 80, 46, 89,242,183,214,193,122, 90,190,167,154,236, 51,235,220,185,179,115,105,105,233,103,227,198,141, 19, -105, 52, 26, 20, 22, 22,162,168,168, 8,191,254,250,235, 9,131,193,240, 76, 99,230,138, 16,242,200,148, 52,132, 16,112, 56, 28, -184,123,121, 67, 40,118, 6,107, 48,212, 70,174,248,142, 78, 96,244,122, 48, 70, 3, 96,165, 43,203,154, 38, 33,228,145,168,149, -173,230,170,190,166, 37, 34,214, 80, 81, 81, 63, 63, 63,124,240,193, 7, 24, 60,120,240, 67,101, 26,108,105, 39, 80, 61, 90,144, -101,217,118, 0,106,147,220,165, 82,105,255, 38, 27,217,136, 38,195, 48,232,213,171, 23, 78,156, 56,129, 5, 11, 22, 32, 35, 35, - 3,241,241,241, 32,132,192,197,197, 5,190,190,190,112,115,115,131,131,131, 3, 44, 3, 2,154,210,124, 18,236,154,118,205,191, - 66,179,174,185,226,241,120,208,106,181, 54,153,171,167,225,220,237,154,118,205, 63, 66,179,166, 14, 22,174, 37, 93,192,217,205, -179, 49,109, 80, 0,134,182,188,135,133, 11,155,174,131,245,103,180,243,105,163, 73,247, 81, 85, 85,181, 36, 52, 52, 84,144,146, -146,130,251,247,239, 35, 53, 53, 21, 52, 77,223,203,201,201, 25,244,184, 7,165, 40, 10, 46, 46, 46, 16, 8, 4,232,122, 67, 9, - 1,159, 15,129, 83,117,142,248,115,233,101, 0,203,130, 18, 52,175, 59,139,162,168, 71,106, 94, 61,201, 40, 34,154,166,107, 43, -180, 91, 12,156,229,199,146,251,241, 56,145, 43,138,162,230, 95,188,120, 81,146,153,153, 9,150,101,177,103,207, 30,201, 11, 47, -188, 48, 31,143, 17,189, 98, 89, 22, 69, 69, 69, 96, 24, 6, 60, 30, 15,189,123,247, 70, 84, 84, 20, 42, 43, 43, 65,211,116,109, -247, 37,159,207,183,143, 34,180,243,212, 81,215, 92,217,115,174,236,216,105, 62,153,123, 38, 77, 5, 48,149, 16, 50,106,209,162, - 69,219,166, 78,157, 10,134, 97,112,230,204, 25,124, 49,111, 30,222,163,233,177,107, 8,169,154,193,178, 83,255,238,182,254, 27, -177,106,176, 58,117,234,212, 82,163,209,124,103, 50,153, 34, 25,134, 17,156, 61,123, 22, 58,157, 14, 41, 41, 41, 90,134, 97,118, - 61,193, 49, 51,227,227,227, 41,139, 49,105,204,160,208, 52,109,107,114, 93,102,223,190,125,255, 48, 77,134, 97,114,234,206, 97, -102, 77,183,238,223,102,179,185,201,252,179, 26,237, 21, 93,187,118,125,100,153, 45,251, 54,160,149,222,167, 79, 31, 99,221,101, -117,147,216, 27, 74,104,167,105,218,166,118,218,177,243, 79,133, 16, 82, 89,255, 51,100, 13,150,101,117,127,114,115,236,216,249, -215, 35,228,243,199, 78,155, 54, 13,255,251,223,255,176,119,245,106,244,207,201,193,118, 62, 31, 34, 62, 31,235,141,198, 41, 0, -236, 6,235, 49,176,106,176, 42, 42, 42, 62, 40, 46, 46,238, 82, 94, 94,110, 78, 79, 79,215, 18, 66,204,132, 16, 45,195, 48,239, - 51, 12,243,229,227, 30,240,214,173, 91,182,221, 25,255, 70,205, 91,183,110,117,248, 35,245,234,242, 36,185, 86,245,185,117,235, -150,125, 24,173,157,255,119,220,184,113,227,212,223,221, 6, 59,118,158, 38,174,221,184,209, 31, 0,226,227,227,161,157, 83, 93, -246,106,203,239,117,176,214,255,125, 45,123,136,142, 0,188,106,126, 47, 4,112, 7, 64, 52, 0, 17, 0, 61,128, 74, 0,158,117, -182, 47,170, 89,103, 89,255, 51, 0,211, 95,213, 88,160,145, 28,172, 59,119,238,140, 42, 40, 40,224, 26, 12, 6, 33, 77,211,142, -102,179, 89, 98, 50,153,124,105,154, 94,207,218,199,250,219,177, 99,199,142, 29, 59, 79, 5,161,161,161,196,211,211,147,132,134, -134,146,119, 89,246,161,159,127, 80,247,160, 23, 33,228, 32, 33,228,224,219,111,191, 29, 11,160,219,219,111,191,221,169,230,239, - 14, 0, 60, 45,235, 9, 33, 7, 1,120,212, 91,223,254,175,110,176,109,133,161,236,216,177, 99,199,142, 29, 59,118,254,102, 88, -150, 29,180, 98,197,138, 15, 0,112, 86,172, 88,241, 65,157,191,193,178,236,160,186,175,245,214,123, 89, 87,253,115, 32, 0, 26, - 28, 9,208,156,153,178, 31,103, 52, 65, 83,250,118, 77,187,166, 93,211,174,105,215,180,107,218, 53,159, 62,205,166,180,173,236, - 63,144, 16,114,144,101,217, 65,117, 95,235,236, 51,168, 70,243, 96,221,223,235,173, 63,212,156,243,120, 98, 88,150,253,211,126, - 0,180,177,107,218, 53,237,154,118, 77,187,166, 93,211,174,105,215,124,194,159,129,213, 38,136, 87,248, 0, 0, 32, 0, 73, 68, - 65, 84,150,197,250,171,181,223,235, 44,251, 43,219,219, 72,153,134, 93,187, 56,202,112, 72, 4, 34, 71, 62, 0, 24,180, 85, 70, -121, 10,202, 49,124, 56,221, 92, 19,103,199, 14, 33,196, 7, 0, 88,150, 85,255,145,219,218,177, 99,199,142,157,255, 63, 16, 66, - 14,206,159, 63,255,157,191,187, 29,182,208,176,193,218,181,139, 83,216,193,209,147,171, 47, 9,165,205,198, 48, 0,224, 82,236, -237,194, 14,110,169,158,187,118, 21,254,209, 38, 43, 62, 62,254, 29,150,101,125,120, 60,222, 33, 95, 95,223, 51, 27, 54,108,248, - 75, 51,253,255, 42,108, 53, 14, 79, 98, 48,158,208,156, 52, 89,212, 43, 52, 52,212, 73, 36, 18, 13,167,105, 58,136, 97, 24, 16, - 66,238, 19, 66,118,222,184,113, 67, 11,160,193,193, 15,132,144,229,132,224,173,154,223, 63, 98, 89,246,237, 70,218,111,243,182, -117,105,209,162, 69,128,131,131,195,120, 66, 72, 56, 0,176, 44,155,162,211,233, 54,103,101,101,101, 52,181,239,211,134, 76, 38, - 19,177, 44,251, 60,143,199, 27,231,238,238,222,169,160,160,224, 61,165, 82,249,233,227,104, 17, 66,184, 0,230,184,186,186,142, -114,117,117, 13, 44, 46, 46, 78, 43, 47, 47,223, 1,224, 19,150,101,155,252,156, 46,121, 67,222,229,217, 1,189, 22,254,124,248, -236,146,133,107,149,151,234,175, 95,252,166,204,163,119,159,238, 11,143, 28,186,240,254, 7,107,149,197,205,108, 27,133,223,243, - 72, 25, 84, 63,165,254, 99, 7,224,200,100,178, 72, 0,243,104,154,230, 81, 20,245,105,110,110,238,249,191,187, 77, 77, 17, 22, - 22,246,150, 64, 32,152, 66, 81, 84,154, 90,173,158,168, 82,169,254,144, 50, 47,132, 16,202,223,223,223, 57, 51, 51,179,130,101, - 89,123,129, 62, 27,233,218,181,171,218,104, 52,122, 55,182, 13,159,207,207,191,120,241,162,207, 95,213,166,191,144, 66,182,166, -235, 15, 64, 62, 0, 78,205,223,134,154, 87,117,157,101,106, 43,235,255, 82, 26, 52, 88,202,112, 72,184,250,146,208, 34,245,173, -145, 5,185, 87, 95, 4, 0, 47,105,228, 14, 15,159,136, 31,148,225, 2, 99,199,176, 97, 98,158, 35,119, 29,135,195,139,212, 25, -244,158, 60, 46,175,208,104, 54, 93,165, 12,236,212,220,219,123,178,108, 57,112, 66, 66, 66, 40, 0,151,168,168,168,203, 6,131, -161,211,167,159,126, 42,221,189,123,119,187,228,228,228,209,131, 7, 15, 62,192,178,236,177, 3, 7, 14,104,155,115, 50, 36, 38, -134,235, 93,234, 62,150,195,229, 38, 0,104,199,178, 0, 8,231, 58, 99, 50, 30,202,119, 43,218,204,158, 57, 99,110,142, 94, 93, -186, 70,123,132, 18,198, 56,151,199, 97,123,154,104,114,142,165,248, 43, 47, 38, 23,165,218,220, 54, 27,141,195,227, 26,140,250, -251,114, 56,156,207,105,154,158,101,235,190,182, 16, 26, 26,234, 36,145, 72,222, 93,191,126,189, 36, 60, 60,156, 0, 64,114,114, -178,235,244,233,211, 67,218,182,109,187,228,198,141, 27, 85, 13,180,201,135, 16,188,197, 48, 44, 5, 0, 20, 69,230,249,248,248, -184,115,185,220, 71,254,183,102,179, 89, 68, 8, 38, 49, 76,245, 52, 9, 20, 69,222, 34,132,124,214,148, 89, 12, 10, 10,122, 62, - 50,170,227,140,255,204,157,231,227,237,225,233,108,166,205, 70,165, 50, 87,182,250,211, 15,187, 4, 5, 5,173, 75, 75, 75,219, -215,220,115, 37,132, 16,133, 66, 49,146,199,227, 13, 2, 16, 94,179, 56,197,100, 50, 29,204,201,201,249,193,214, 47,242,246,237, -219,255, 76, 81, 84,203,230, 28,155,166,233,172,235,215,175,247,104,110,155, 1, 64, 46,151,143,144,203,229,223,118,233,210,197, - 49, 50, 50, 18,124, 62, 31, 31,125,244,209, 28, 0,141, 26, 44,139,145,114,116,116, 28,233,228,228, 20, 84, 89, 89,121, 95,171, -213,238, 22, 8, 4,125, 63,251,236, 51,191,238,221,187, 59,171,213,106,194,225,112,124, 14, 28, 56, 48,246,243,207, 63,239, 79, - 8,233,195,178,108,163,159,169,146, 52,102,161,144, 23,214,179,228,254,233,133, 0,226,235,175, 55,235, 28,198,113,120,126,131, - 56,236,149,108, 0,159,216,122,158,132, 16, 74,161, 80,124,230,227,227, 51, 65,171,213,234, 8, 33, 44, 33,132,109,219,182,173, -101, 61, 0,192, 96, 48,148,220,185,115,167,117, 99, 90, 1, 93,221,147, 56, 20, 71, 97,109, 61,205,208, 57, 25, 23,139,159,184, -116, 11,203,178,179,174, 93,187, 54,156,203,229,146,246,237,219, 59, 17, 66,250,219,106, 46,100, 50, 89, 40, 33,100, 1,203,178, -151,115,115,115,215,177, 44, 75,203,229,242, 88,150,101,107,239, 21, 74,165,242, 52, 0,200,229,242,117,193,193,193,131,239,221, -187,183, 94,169, 84, 46,125,220,246,134,132,132, 76,157, 57,115,230,162, 41, 83,166,136,138,138,138,252,251,245,235,247, 61,128, -158, 77,238,216, 8,209,209,209,188,188,188,188, 57,237,218,181,155,222,177, 99, 71,233,173, 91,183,242,100, 50,217, 26, 95, 95, -223, 79,146,147,147,155, 52,236,237,218,181,147,113,185,220, 9, 0,198,162,250, 11,116, 59,128,205, 87,174, 92, 73,123,146,118, -253, 91, 48, 26,141,222, 63, 45, 93, 8,194,225,192,161,103, 95, 48, 12,131,194,149,139, 96, 46, 46,132,231,210, 53, 48,155,205, -232,219,183,111,163, 6,236, 95, 76,226,223,221,128,230,210,160,193, 18,136, 28,249,180,217, 24, 86,144,123,245,197, 78,113,107, - 92, 0, 32,241,232,140, 23, 61,228,207,220, 20,112, 29, 83,133, 18,135, 61,195, 18,250, 70, 14, 31,212,139, 40,164,222,200,201, -205,247,249,102,251,177,184,131,199, 78,239, 65,117, 93,138, 38, 41, 47, 47, 95,230,239,239,239,117,242,228,201, 7, 2,129, 64, -228,224,224, 64, 70,140, 24, 33, 26, 61,122,116,196,169, 83,167,130,142, 30, 61, 58,124,200,144, 33, 71,249,124,254,161,157, 59, -119,150, 52,165,231,211,118,104,132, 47,215,119,215,144,231,227, 91, 14,124,206, 91,224,239,235, 5,134,113,192,157,116, 99,139, - 19,231,174,196, 29, 62,122,124,174,119,196,208, 17,249,183,246,222,176,245,226,180,105,227,226, 42,162,216,217, 34, 1, 59, 42, -174,103, 68, 64, 66,124, 55, 18,216, 42, 16,169, 41,169, 65,167,207, 94,158, 16,219,201, 57, 67,107, 32,219,181, 12, 89,117,243, -102, 89,169, 53,157,134, 76, 70,159, 62,125,162, 68, 34,145,161,238,118, 90,173, 86, 64, 8,250, 52,215, 96,212, 61,134,193,160, -167,120, 60, 1, 56, 28,106,102,199,142, 29,187,170,213,234,147, 58,157,110,109, 97, 97, 97,174,173,231,109, 13,145, 72, 52,252, -203, 47,191,148,132,133,133,145,170,170, 42,152, 76, 38,180,104,209,130,122,247,221,119, 93,150, 45, 91, 54, 2,192, 38, 27,218, -137,111,190,249, 38,220,199,199,199, 88,127,157, 90,173,230, 39, 36, 52,111,130, 0, 63, 63,191,192,232,142,157,103,108,222,180, -169,115, 89,113,177,238,235, 85,235,175,232,185,194, 42,255,240, 80,254,194, 69, 75, 93,222,255,239,219,175,249,249,249,221,204, -206,206, 78,183, 85, 83, 42,149,182,104,217,178,229,158,119,222,121,167, 77,143, 30, 61,120,222,222,222, 80,171,213,184,115,231, - 78,155, 95,126,249,229,249,125,251,246,205,145, 74,165,195,114,115,115,155,124,152, 96, 89, 54,228,199,143, 62,240, 22,122,120, -130, 49,153,224,214, 54,178,118,157,234,212, 49, 48, 38, 19, 24,147, 9,126, 3,159,183,108,143,216,216,216,199, 42, 73,174, 80, - 40,100,161,161,161,255,155, 63,127, 62, 95,175,215,227,234,213,171,184,120,241, 34,147,159,159,223,104, 33, 91, 66, 8,151, 16, -114,124,209,162, 69,138, 30, 61,122, 56, 23, 22, 22,130,166,105,207,125,251,246, 77,141,138,138,146, 40, 20, 10,193,150, 45, 91, - 44, 51, 4,184, 7, 5, 5,185,143, 30, 61,218,240,221,119,223,205, 1,240, 97, 67,154, 75,222,144,119, 41,189,207, 44,204,227, - 6,197,181,238, 48, 30,121,220, 99,113,179,251, 75,143,184, 6, 81,181,145,172,248, 86,173,156, 3,195, 28,231,137, 37,109,220, -203,148, 39,230,197,183,106,245,213,145,251,247,155,156, 52,157, 16, 66,201,229,242,207, 6, 12, 24,240,210,250,245,235, 29, 83, - 82, 82, 28,195,195,195,193, 48, 12,204,102, 51,104,154,182,204,187,137,186, 5,131,173,193,161, 56,138, 95,246,252,230, 45, 18, -137,106, 39, 97,183,188,106, 52, 26,244, 31,215,165, 73, 13, 91, 96, 24, 70, 96,241,229,102,179,217, 1, 0, 15,128,161,209,157, -126,103,241,133, 11, 23, 70, 28, 57,114,100,204,210,165, 75, 67, 0,188,193, 48,204,194,148,148,148, 94, 0, 16, 30, 30, 46, 0, -112, 90, 38,147, 77,156, 50,101,202,148,105,211,166, 97,220,184,113, 11, 9, 33,203, 30, 55,170, 39, 16, 8,254,251,250,235,175, -139, 76, 38, 19, 68, 34, 17,140, 70, 99,171,199,209,177, 16, 17, 17,193,175,170,170,218,189,120,241,226, 65, 67,134, 12, 1,151, -203, 5,195, 48,190, 63,255,252,243,242, 55,223,124,179, 91,116,116,244, 80,107, 38, 43, 58, 58, 58, 18,192,251,193,193,193,253, -199,141, 27,199,233,222,189, 59, 42, 43, 43,113,252,248,241, 5,123,246,236, 89, 16, 29, 29,125, 1,192,194,228,228,228, 51, 79, -210,198,122,199,204, 4,208,162,230,207,172,228,228,100,255, 63, 74,251, 73,224,136,157,113,103, 88, 44,130, 82,138, 0, 0,121, -235, 86, 2, 0, 36,255,253,248,239,108,150,157, 6,104,254, 44,200, 0,170,170,170,162,222,158, 49, 22, 20, 85,253,148, 24, 28, -216, 2,203,223,153, 76,126, 60,120, 44,170,177,253,186,118,237,186,138,166,233, 16,119,119,247,185, 58,157,206, 97,245,234,213, - 14, 74,165, 50,108,247,238,221,236,181,107,215,192,231,243,225,226,226,130,222,189,123, 11,227,226,226, 90, 93,184,112,161,197, -158, 61,123,134, 12, 28, 56,112,243,161, 67,135, 14, 88,211,245,108, 59, 56,196,199,203,247,236,199, 75, 95,117,111, 19, 24, 4, -131,201,132,156,124, 37, 88, 8,224,235,237,132, 49,207,183,231,119,239,192, 15,254,228,139,147,103,124,218, 12,121, 86,125,243, -199,223,154, 58,199,158,209, 78,137, 67,123,181,138, 30,220,191, 27, 21, 28, 30, 1,190,208,177,118, 93,219,168, 40,180,141,138, - 34,147, 39, 87, 4, 94,187,114,237,221,163, 39,127,125,167,103,180, 83,242,185,100, 77, 99, 19, 99,214,118,191, 17, 66, 48,115, -230, 76, 72,165,210,135, 54,200,205,205,197,153, 51,167,155,106, 90, 99, 60,212,197,247,222,123,239, 9, 52, 26,205,115, 95,127, -253,117,172, 76, 38,251, 64,165, 82, 89,189,134,182, 96, 52, 26, 91,133,133,133,145,202,202, 74, 24, 12, 6, 60,120,240, 0, 5, - 5, 5,240,242,242, 34,102,179,185,193,155, 47,203,178,106, 66,200, 71, 20, 69,230, 17, 66, 32, 16, 8, 51, 94,123,237,181,164, -154,117, 65, 7, 14, 28,112, 76, 72, 72,168, 34,132,164, 1,128, 64, 32,244,230,112,168,128,234, 36, 65,124,212,148,185,116,116, -116,124,101,214,127,222,244, 42, 43, 46,209,154, 42, 42,140, 98,134, 54, 75, 28,120,164,188,160,168, 52, 35, 91, 82,245,202,148, - 25,220,255,206,159,253, 10, 0,155,250,236,165, 82,105,139,176,176,176,196,175,190,250,202,219,195,195, 3,165,165,165, 40, 42, - 42, 66, 98, 98, 34, 24,134, 65, 92, 92,156, 48,170, 93,187,168, 79, 86,173,186, 40,149, 74,187,218, 98,178,132, 30,158,216,221, -171,250,163, 49, 34,173,250,166, 72, 8,193,209, 81, 9,181,219,140,206,172,158,220,188,102,190, 72, 91,154,250, 8, 44,203,118, -237,222,189, 59, 31, 0,230,204,153, 83,174,209,104,150, 19, 66,190, 87,169, 84,202, 38,118,157,243,238,187,239,202, 3, 3, 3, -253,191,255,254,123, 84, 86, 86, 2,128,119, 96, 96, 32, 66, 66, 66,232,179,103,207, 34, 52, 52, 20,206,206,206, 56,123,246, 44, - 46, 93,186,132,200,200, 72,103, 62,159,255, 34,172, 24,172,103, 7,244, 90, 40,228,133,245,108,221, 97, 60,196, 18, 41,190,218, -246, 3,238, 36,109,238,169, 55,221, 94,248,206, 27,242,151, 57,172,112,188, 60, 68, 60, 63,160, 67,140, 71,240, 51, 67,208, 50, -250,170,167,158,254, 57,125,225,180,160, 21, 92, 7,221,150, 69, 31,171,138, 26,210, 37,132, 80,190,190,190, 43,227,227,227, 71, -172, 95,191,222, 21, 0,110,220,184,129,188,188, 60,120,121,121,193,193,193, 1, 60, 30, 15, 92, 46,183, 89, 83,101,137, 68, 34, -228,230,230,194, 88, 83, 92,145,166,105, 84, 84, 84,192,215,215, 23, 0,176,120, 49,161, 22, 45,178, 45,218, 36,149, 74,123, 68, - 69, 69,109, 85, 40, 20,126,117,151,199,199,199, 99,242,228,201,208,104, 52,136,140,140,236,238,227,227,163,127,245,213, 87,193, - 48, 12,212,106,117,229,141, 27, 55,158, 83, 42,149,191, 90, 57,111,109, 94, 94, 30,166, 76,153,130,172,172,172,105, 50,153, 44, -147,162, 40, 7,129, 64, 96, 89, 47,144,201,100,161,161,161,161,159,189,250,234,171,120,240,224, 1, 82, 83, 83, 19,159,164,203, - 84, 40, 20,106,104,154,246, 54,155,205,208,106,181,136,139,139,115, 8, 11, 11, 83,243,120,188,219,165,165,165, 99,178,179,179, -109,122,104, 35,132,112,165, 82,169, 47,143,199, 91, 63, 99,198,140, 1,189,122,245,194,237,219,183,113,244,232, 81, 12, 30, 60, - 24, 49, 49, 49, 88,176, 96,193,192,133, 11, 23,206, 1, 96,237, 97, 96,215,238,221,187, 3, 20, 10, 69,237,148, 72, 18,137, 4, -175,188,242, 10,198,142, 29,139,195,135, 15,119,251,224,131, 15,118,199,196,196,120,159,121,130,158,138,122,180, 72, 78,174,158, -138, 47, 58, 58,186, 69, 19,219,254,101, 8, 59,116, 67, 80, 74, 17,210,194, 61, 0,160,214,104, 89,254,134,188,209,175, 97, 59, -127, 33, 13, 26, 44,131,182,202,200,165,216,219, 94,210,200, 29,137, 71,103,212,118, 17,194,204,222, 54, 24,171,140, 0, 64, 51, - 44,202,171,204, 16, 9, 41, 60,200,173,192,205,180,194, 71,116,216,122, 67, 45,171,170,170,254,179,102,205, 26,124,244,209, 71, -241, 90,173,182, 50, 61, 61, 61,183,178,178, 82, 51,102,204, 24,194,227,241,240,203, 47,191, 32, 35, 35, 3,109,219,182,133,171, -171, 43,122,244,232,193,239,215,175,159,223,196,137, 19, 95, 6,112,160, 33, 77, 50, 98, 4, 71, 42, 16,238, 95,185,116,164, 59, -225,164, 34, 53,171, 20,173, 20,157,224,225,226, 7,101, 65, 37,146,111, 29, 70,234,253, 67,104,165,104,129,201, 47,181,114,253, -244,203,130,131, 36,250,181, 86,108,242,239,121, 94,245, 53, 1,192,129, 79,119,124,111,205, 53,208,154,251, 96, 77, 89, 96,141, -121,143,156,159,163,171, 31,194,218,251,192, 81,224, 69,221, 72,249,180,163,181,115,103, 89, 86,205,225,112,214, 81, 20,153, 74, - 8, 65,155, 54,109,211, 87,175, 94,221,208,147,171,161, 77,155,182,233, 28, 14, 21,200,178, 44, 8,161,214, 51, 12,173,110, 72, -179,129,107,173, 38,132,124, 44, 16, 8,223, 4, 0,133,194, 47,255,228,201,147,166,231,159,127, 30, 31,124,240, 1,119,209,162, - 69, 11, 20, 10,197,157,156,156,156,251,214,218,217, 24,173, 90,181, 10, 72, 72, 72, 16, 2,128,201,100, 66,118,118, 54,178,179, -179, 81, 84, 84, 4,147,233,225,135,206,250,154, 44,203,190,237,227,227,227,254,205, 55,223,132,191,246,218,107, 73, 74,165,114, - 22, 0,200,229,242,213, 0,218, 18, 66,210,234, 44,195,134, 13, 27, 58,188,242,202, 43, 41,106,181,250,109,107,154, 22, 8, 33, - 97,110,174,110, 78, 95,127,178, 62,201, 75,200, 33,158,126, 50,194,151,184,114, 41,177,179,144,229,112,180,254,126, 50,103, 66, - 72,152,149,107,118,179,158, 22,105,217,178,229,158, 77,155, 54,121,243,120, 60,208, 52, 13, 47, 47, 47,164,167,167,163,180,180, - 20, 21, 21, 21, 72,191,157,130, 0,133, 2, 51, 39, 79,146, 46,254,120,213, 30, 66, 72,135,186, 95, 98, 13,181,147,169,119,125, -172, 25, 40,107,203,109,253, 31, 49, 12,147,161, 82,169,224,232,232,136,240,240,112,241,229,203,151,207, 41,149,202, 6,205, 85, - 93, 77, 7, 7,135, 23,187,119,239,238,188,109,219, 54, 68, 71, 71,195,197,197, 5,167, 79,159,198,141, 27, 55, 96, 52, 26,169, -138,138, 10,136,197, 98,172, 88,177, 2, 45, 90,180, 64, 89, 89, 25, 50, 51, 51, 61,120, 60,158,167, 53,205,159, 15,159, 93, 82, -146,118,122, 97, 30,231, 88,220, 87,219,126,192,171,163, 71,194,215,156,118,206,173, 21,181, 36,126, 96,183,255,114,120,126,131, -156,156,219,184,133,180, 25, 2,190, 64,140, 55,222,122, 31,169, 55,247,187, 85, 85,220,152, 70,155,178,253, 0,204,172,175, 73, -170, 47, 16, 37,147,201, 38,109,216,176,193,217,178,156,162, 40,240,120,188,135,140,149,101,146,246,134,174,105, 67,215,147,166, -105, 24,141, 70, 24,141, 70, 48, 12,131,130,130, 2, 84, 84, 84,192,205,205,173,122,131, 69, 0, 1, 33, 44, 26, 54, 44,117, 53, - 41,138, 26,243,195, 15, 63,248, 57, 58, 58, 62,178, 93,118,118, 54,202,202,202,224,228,228, 4, 87, 87, 87,152, 76, 38,152,205, -102,232,245,122,113, 76, 76,204, 84, 0,191, 54,164,201,225,112,102, 79,153, 50,165,251,193,131, 7,131,150, 46, 93, 10,163,209, -184,178,160,160, 0, 22,131,214,163, 71,143, 46, 44,203,222,153, 49, 99, 6, 0, 96,241,226,197,166,202,202,202,215,109, 57,247, -134,240,241,241,137, 72, 72, 72,112,251,233,167,159,208,163, 71, 15,232,245,122, 76,157, 58, 85, 50,105,210, 36,201,133, 11, 23, -188, 86,175, 94,189, 5, 64,223,198, 52,163,163,163,121,106,181,122,222,152, 49, 99,230,244,237,219,215,165,176,176, 16, 66,161, - 16, 59,118,236,192,215, 95,127,125,196,104, 52,190,187,123,247,238,101, 27, 55,110,140, 27, 50,100, 8, 54,110,220, 56,163, 38, - 45,130,105, 64, 83,230,231,231,135,235,215,175,195,205,205, 13,158,158,158, 40, 43, 43,195,165, 75,151,144,152,152,136,176,176, - 48, 16, 66,220, 80,253,157,214,160,193,106,164,157,153,120,204, 72,149,173,215,179, 57, 52,165,105, 25,161,102,113,251, 52, 93, -157, 18, 77,195, 74, 18,172, 13,154, 64,181, 17,150,201,100, 67, 92, 93, 93,167,177, 44,203, 45, 41, 41,217,224,232,232,184,235, -254,253,251, 13, 70, 89,255,140,115,127,218,224, 2, 0, 33,196,242,127,137, 97, 89,246,172, 60, 5,229,133, 29,220, 82, 61,124, - 34,126,240,144, 63, 83,125, 17,205,236,109,142,208, 45,213, 39,169,170, 28, 0,140, 38, 22, 23,110,151,224,250, 61, 53,174,223, -205,131,216,161,233,167,110, 15, 15, 15,116,235,214, 13, 63,254,248, 35,178,179,179,197, 43, 86,172, 8, 49, 26,141,198,132,132, - 4, 85,203,150, 45, 75,122,244,232, 1, 30,143,135, 95,127,253, 21,229,229,229,224,112, 56, 16, 8, 4, 96, 24,198,106,164,205, -251, 46, 61,126,220,228,168, 32, 79, 87, 10, 7,126, 57,134, 46, 97, 67,225, 40,228,161,160, 68, 11,138, 16,220,207,248, 9, 52, -237,132,107,183,179,208,181,141, 19,122,118,118, 81, 84,158, 44,158, 12,224, 11, 91, 46,144, 81,121, 6,130,150,195, 0,135,103, -192, 26,238,131, 49, 40,193,242,188,161,169,114, 64,225,131, 76,220,190,180, 11,172,249,145,212,163, 71,160,105,250, 13, 79, 79, -207,252,183,223,126,187, 71,104,104,168,225,141, 55,222,184,153,145,145,177,160,238, 54, 1, 1, 1,203,214,174, 93,139,212,212, -212, 7,203,151, 47, 63, 95, 88, 88,184,196,150, 54, 90, 96, 89,246, 45, 66,200, 42, 0,224,243,249,165, 59,118,236,120,246,244, -233,211,111,126,242,201, 39,110,211,167, 79,231, 76,158, 60,121, 10,128,217,205,209,140,137,137,225,100,101,101,133,139, 68,162, - 81,179,103,207, 22, 25,141, 70,168, 84, 42,100,103,103,163,180,180, 20, 20, 69, 33, 53, 53,149, 33,132,220,105, 76,135,203,229, -106, 27,234, 22,108, 8, 31, 31, 31, 99, 67, 57, 90, 86,168, 52,152, 76,122, 39, 63,153, 41, 97, 72,255,182, 55, 18,175,166,138, -220,221,169,182, 29, 35, 35,110,223,123,144, 76,170,187, 96,108,234,134, 81, 40, 20, 35, 23, 45, 90,212, 86, 34,145,128, 97, 24, -184,184,184,160,160,160, 0, 70,163, 17,101,101,101, 48, 84,148,195, 88, 94,134,235,153,233,232, 17,211, 27,253,186,118, 9, 63, -100, 50,141, 4,176,189, 49, 93,247,118, 81,181,145,171,157, 65, 30,181,203, 71, 61, 40,173, 53, 0,135, 59, 5, 67, 40,118, 66, -155, 89, 54,167,220, 61, 66,110,110,238, 21,127,127,255,195,113,113,113, 3, 38, 79,158, 76,229,229,229, 29,245,241,241,233,174, - 86,171,111, 53,182,159, 88, 44,110, 85, 88, 88,136,138,138, 10,184,184,184, 96,245,234,213,240,246,246, 70, 85, 85, 21, 46, 95, -190,204, 42, 20, 10,114,250,244,105,200,229,114, 20, 21, 21,193,104, 52,162,170,170, 42,207, 96, 48, 88,253, 31,213,116, 3,198, -207,238, 39, 61,114, 39,105,115, 79, 57,210, 47, 15,159,219,243,238,181,196,212,236, 83, 39,127, 89, 98,214, 57,100,151,230,156, -152, 23,216,241,154,231,180,185,139,177,118,229, 34,220,249,245,108,177, 79,139,138, 47,104,162,223,220,189,191,245,246, 86, 85, - 85,233, 82, 82, 82,156,175, 93,187, 6,138,162, 32,145, 72,224,228,228, 84, 59,177,185,197, 92,113,185,182, 7,232, 45, 93,138, - 22,115, 85, 80, 80,128,251,153,169,216,125,106, 11, 76,102,147,231,166,206,146,188, 32, 62,255,186,103, 25,121,167,240, 38,123, -165, 49, 45,150,101, 55,140, 26, 53,106,164, 92, 46,119,174,187,188,125,251,246,120,233,165,151,112,244,232, 81, 36, 37, 37,129, - 97, 24, 48, 12, 3,150,101, 81, 80, 80,144, 75,211,244,102,107,154, 89, 89, 89,165, 10,133, 34,110,210,164, 73,201,123,247,238, -149,124,252,241,199,160,105, 26,102,179,185,182, 91,212,242,186,109,219, 54, 36, 39, 39, 47,204,203,203,187,109,243, 5,168,131, -175,175,111, 88, 66, 66,194,207, 95,124,241,133,171, 90,173, 70, 97, 97, 33, 52, 26, 13,120, 60, 30,204,102, 51,130,131,131, 9, - 77,211, 1,141,105, 68, 68, 68,240, 41,138,218,127,234,212,169,254, 33, 33, 33, 0,170, 31,204,126,249,229, 23, 76,158, 60,185, -200,209,209,241,197, 7, 15, 30,104,100, 50,217,130,131, 7, 15,198,181,111,223, 30,109,219,182,245,205,207,207,119, 6, 80,214, -144,166,165,219,214,242,255,249,230,155,111,106,215,233,116,213, 83, 78, 26, 12, 6,210,177, 99,199,128,203,151, 47, 55,103,112, -139,181, 72, 85, 86,157,191,109,202, 45,254, 43,200,252,223, 87,120,240,206,116,248,159,171,190,229, 38, 71, 84,167, 92,249,159, - 77,169,222, 96,236,216,102,233,201,100, 50, 15,150,101, 95,237,219,183,239,172,184,184, 56, 47,169, 84, 10, 15, 15, 15,220,184, -113,163,251,177, 99,199, 62, 87, 40, 20, 95,210, 52,253,165, 45,209,250, 39,165,190, 23,249,179,143,247,103, 83,123, 7, 98, 89, -150,212,156, 28,193,240,225,180,231,174, 93,133,202,112,129, 81,192,117, 76, 5, 0,131,177,202,232,147, 84, 85, 93,166, 97,201, - 54,176, 96, 65, 51,213, 55, 36,134,101, 65,219, 56, 14, 68,119,251, 5, 48,165,251,225,237, 54, 4, 27, 55,238, 69,126,126, 62, -127,245,234,213, 45,247,238,221,171, 24, 51,102, 76, 86,112,112,112, 89,239,222,189,177,101,203, 22,248,250,250,194, 96, 48,128, - 97, 24,171,238,205,217,157, 30,222,185,109, 48, 39, 53,243, 6, 58,132,188,128, 0,105, 15,220, 87,150,161,164, 66,143,162, 50, - 45, 66, 67,231, 66, 93, 92,133,114,141, 14, 55,238,124, 15,133, 52,144,226,240,238,199,193, 70,131,165,191,191, 21,250,244, 31, -192,151,198, 66, 16, 56, 18, 60,207,174,200,190,115, 6, 87,127, 90,133,156,187,231,193, 50, 52,124,252, 26, 12,144, 60, 2,135, -195,217,112,252,248,241,200,103,159,125,150,219,167, 79,159, 54, 10,133,162, 77, 78, 78,206, 77, 0, 80, 40, 20,109,226,226,226, -218,120,123,123,227,179,207, 62,171,226,112, 56, 27,108, 18,173, 71,189, 46,181, 19, 50,153, 76,179,127,255,254, 53,227,198,141, -131, 92,110, 91,236,120,241,226,197,228,243,207, 63, 95, 37, 18,137,134, 9, 4, 2,137,151,151, 87, 89,124,124,252, 61,103,103, -231,244,140,140, 12,176, 44, 11,119,119,119, 84, 86, 86, 34, 53, 53,149, 57,126,252,120,169, 88, 44,222,253, 56,237,125, 82,140, - 70,227,229,172,204,204,208,238, 61,187, 75,127, 78,186,117,101,216,243,131, 98, 41, 46, 69,101,100,230, 94,246,242,112,119,250, -229,194,249,114,163,209,120,217, 22, 45, 30,143, 55,168, 71,143, 30,220,146,146, 18,200,100, 50, 20, 20, 20, 64,169, 84,194,100, - 50, 65, 87, 86, 2, 99,121, 57,140,101,165, 96,171, 42,145,118,249, 87,132,251,201,133,199,171,147,224, 27, 53, 88,150, 0, 87, - 67,147,133, 91,150, 9,157,197, 16, 57, 59,215,118,127,216,138, 76, 38, 27, 34,145, 72,230, 85, 84, 84, 28, 86, 42,149, 75, 13, - 6,195, 27,203,151, 47,239,248,254,251,239,123,206,155, 55, 79, 50,111,222,188,157, 45, 91,182,140,124,240,224,129,222,154, 70, -101,101,229,125,147,201,228, 1,192,231,228,201,147,240,242,242, 66,121,121, 57, 76, 38, 19,180, 90,173,193,205,205,205,161,168, -168, 8, 58,157, 14, 6,131, 1, 18,137, 4,201,201,201,197,102,179,185,201, 46,103,215, 86,212, 18,189,233,246, 66,247, 8, 39, - 37,205,122,244,170,208, 50, 37,139, 62, 86, 45, 1,240, 73,124,171, 86, 95, 25,152,179,233,169, 55,127,116, 75,191,124,186, 88, -117,183, 42,232,171, 67,105, 86,115,176,216,234,155, 20, 67, 8, 97, 91,183,110,141,130,130, 2,112, 56, 28, 56, 57, 57, 65, 44, - 22, 35, 44, 44, 12,217,217,217,143,109,176,234,154,171,159, 46, 30, 68, 97,101, 46,190, 90,185, 13,114, 95, 63, 10,128,151, 50, - 47,251,185,137,115, 70,116, 14,236,225,182, 60,253,124,137,213,188, 54,149, 74,117, 21,128,164,238, 50,185, 92, 30,235,230,230, -118,202,104, 52,226,193,131, 7, 56,126,252,120, 76, 78, 78,206, 89,155, 27, 8, 32, 39, 39, 39, 77, 46,151,199, 61,255,252,243, - 91,218,182,109,219,138,101, 89,132,133,133, 97,200,144, 33,216,189,123, 55,110,221,186,133,242,242,114,230,220,185,115,155,114, -115,115, 31, 43, 33, 71, 42,149,182, 30, 56,112,224,249,181,107,215,186, 21, 22, 22, 66,167,211,161,178,178, 18,187,118,237, 66, -247,238,221,225,224,224,128, 53,107,214,148,155,205,230,181,214, 52, 34, 34, 34,248, 44,203,254,184,119,239,222,254, 65, 65, 65, -184,125,251, 54,206,157, 59, 7, 47, 47, 47,136, 68, 34, 36, 36, 36,120,252,240,195, 15,111, 68, 68, 68,172,226,241,120, 75, 6, - 12, 24, 0,154,166,145,148,148,148,155,153,153,105,245,255,111,137,212, 52,132, 78,167, 3,203,178, 48,153, 76,171, 41,138,122, - 49, 58, 58,186, 95,114,114,242, 19, 37, 69,255, 83,114,174, 0, 64,161, 80, 60,195,227,241,102,186,185,185,161,160,160, 0,165, - 12, 32, 46,174, 30,116, 91, 86,243,221, 91, 92, 92, 92,123,175, 9, 9, 9, 57,164,213,106,223,177,124,191, 52,132, 92, 46,111, -231,232,232, 56, 43, 33, 33, 97,204,192,129, 3, 57, 70,163, 17, 7, 15, 30,196,218,181,107, 17, 23, 23,135,224,224, 96,204,157, - 59,215, 69,175,215,207, 63,122,244,232,188,240,240,240,163, 21, 21, 21,111, 55,166,249, 71,240,144, 23,249,151, 83,123, 7,170, - 57,161,152,218, 53,195,135,211,114,160, 4, 0,124,125,125, 61,221,221,221,215,210, 52, 29,139,255,254, 23,206, 92, 23, 60,184, -127, 23, 21, 37, 12, 76, 6, 61, 24,134, 5,107,221, 3, 61, 4, 83,186, 31,146,103, 89,148,255, 76, 96, 52, 26,225,237,237,141, - 21, 43, 86,160,172,172,140, 59,113,226,196,128,197,139, 23, 95,213,233,116,208,104, 52,208,106,181,208,106,181,141, 26, 44,190, -131,190,173,191, 79, 8, 42,180,157,224, 40, 16,160,168, 92,143,146, 10, 61, 10, 75,117,216,243,227,104,232,181, 85, 48, 27, 12, -160,141,102,136,125,134, 34,216, 61, 22,192, 61,155, 42,211,214,246,252, 48,102, 24,149, 39, 96, 84,158,128, 99,251, 5,248,113, -205,203, 15,109,103, 54,219,214,229,175, 86,171, 11, 20, 10,197,209,228,228,228, 65, 47,190,248, 34,206,156, 57, 51, 30, 53, 17, - 37,161, 80, 56,254,197, 23, 95, 68,114,114, 50,110,223,190,125, 84,173, 86, 23,216, 36,218,244, 57,148,234,245,213,223,173, 66, -161, 80, 64, 8, 33,141,229,101, 44, 94,188,152,172, 93,187,246,238,172, 89,179,252,167, 79,159,206,149, 72, 36, 40, 45, 45, 21, -111,217,178,197,123,220,184,113,178, 37, 75,150,156,203,203,203,195,166, 77,155,180,183,111,223,214,113, 56,156,219, 2,129, 96, -239,197,139, 23,173,126,129,215,107, 79, 80, 77,215, 32, 88,150, 13,178,182,204, 86,116, 58,221, 55,203,150, 44,140,253,223,214, - 29, 97,173,195,130,221, 14, 31, 63,125,197,195, 67, 34, 10, 8, 8, 18,150,149,150,234,215,174, 94,201,213,104, 52,223,218, 40, - 23,238,233,233,137,188,188, 60,220,187,119, 15,122,189,190,186, 11,167,170, 18,134,210, 82, 24,203, 74, 0,157, 22, 2,154,134, -190, 80,141,128,160, 0,224,247, 17,134,141, 82,215, 76,213, 93,102,121, 21,185, 72, 32,112,114, 2,135,215,112,183, 86, 67, 72, -165,210,232,168,168,168, 29, 27, 55,110,228,207,158, 61,187,115,203,150, 45,215,230,229,229,101, 42, 20,138, 62, 43, 87,174, 76, - 92,186,116,169,112,204,152, 49,173, 55,108,216, 48, 14,128, 85,195,174,211,233,118, 28, 62,124,248,165, 22, 45, 90,248,220,188, -121, 19, 58,157, 14, 12,195, 32, 62, 62, 30, 0, 28, 44,219,221,185,115, 71,171,213,106,213,191,253,246, 91, 69,102,102,166, 17, - 54,140,250, 91,184, 86,121,105,246, 8,197, 48,169, 84,118, 81, 32,244, 15,164,170,146,135,206, 30,161,248,120,213,206, 28,221, -145,251,247, 43, 22, 78, 11, 90, 81, 85,113,115,154,155, 66,243,197, 23, 7,172,155,171, 58,176, 53, 35, 6,225,233,233, 89,219, - 37,200,231,243, 1, 0, 62, 62, 62, 40, 43, 43,107,180,139,176, 33,104,154, 70, 89, 89, 25,202,202,202,112, 55,227, 54, 10, 42, -114,113, 98,251, 69,208, 52, 93, 27, 29,145,249, 40,240,211,246, 68,231,152,225, 29,223,241,104, 71, 78, 23, 93,103,109, 50,238, - 0, 64, 81,212,172, 23, 94,120, 1, 70,163, 17, 67,134, 12,193,182,109,219,102, 1, 56,107,235,254, 22,148, 74,229, 37, 66, 72, -200,189,123,247, 36, 38,147,105,112, 66, 66,194,230, 1, 3, 6,224,226,197,139, 56,121,242,100,140,193, 96, 72,165,105, 90, 43, -149, 74,151, 75,165, 82,111, 66,200,114,149, 74,213,232,104,231,208,208,208, 49,206,206,206,203, 68, 34, 81,197,128, 1, 3,100, -150,200,149, 70,163,129,217,108, 70, 78, 78, 14,142, 28, 57,146,123,248,240,225, 92,150,101, 29, 43, 43, 43, 23,101,101,101,237, -106, 72, 43, 58, 58,154,103, 50,153,246,237,223,191, 63, 46, 40, 40, 8,103,207,158,197,135, 31,126,136, 86,173, 90, 97,211,166, - 77,232,214,173, 27, 2, 2, 2,224,238,238, 62,179,188,188,188,235,135, 31,126, 56, 32, 42, 42, 10,123,247,238, 69,126,126,254, -231,141,141,170,108,236, 62,171,213,106,193,178, 44,122,247,238, 61,121,246,236,217, 72, 72, 72, 56,222,161, 67,135, 78, 73, 73, - 73,119,109,184,172,255,200, 72,149, 5,153, 76,182,162,111,223,190,243,218,181,107,135,173, 91,183, 66,223,161, 7,156, 54, 29, -192,205, 65,221,193, 2,144,109,250, 17, 0,112,115,112,245,128,142,128, 62,195, 49,111,222,188, 1, 67,135, 14,109, 1,224, 25, - 43,154, 31,191,252,242,203,115, 94,126,249,101, 92,185,114, 5, 27, 54,108,192,213,171, 87,107,191,243, 76, 38, 19, 82, 82, 82, -144,146,146, 2,169, 84,138, 65,131, 6,145,215, 94,123, 45, 62, 62, 62,222, 11,192, 19,143,168,109,140, 71,188,200,191,152,134, - 35, 88,117,240,245,245,245,116,115,115,251,109,237,218,181, 30,157, 59,119,230,152,205,102,156, 60,117, 10,111, 78,159,136,184, - 65,211,160,211, 11, 96,214, 17,208,124,177,109, 71,148, 12, 66,249,207, 4,140,120, 0, 12, 6, 3, 38,111,227,195,149,168,177, -122,188, 15, 0, 16,173, 86, 11,189, 94, 15,173, 86, 11,141, 70, 3,141, 70, 3,154,166,173,222, 37, 43, 74,157,140, 70, 19, 3, -101,126, 38,114,114,111,194, 69,220, 2, 44,229, 7,117,113, 21, 8,188, 97,210,221, 1, 83,243,193,212,107,115,160,209, 63,153, - 41,166, 43, 30, 29,140,198, 48,182,231, 84, 86, 85, 85,237,216,186,117,107,191, 85,171, 86,241, 7, 12, 24,208, 74,161, 80,116, - 2,128, 97,195,134,181,114,118,118,198,214,173, 91,141, 85, 85, 85, 59,158,168,145,117, 32,132, 12,234,210,165, 11, 42, 42, 42, -144,150,150,150,220, 84,210,235,231,159,127,254,217,172, 89,179,252,223,126,251,109,174, 78,167, 67,121,121, 57,120, 60, 30, 38, - 76,152,192,175,168,168, 8, 88,189,122,181,234,210,165, 75, 73, 6,131,225,235,251,247,239, 55,187,198,212,129, 3, 7, 28, 1, -180,109,106,153,173,168, 84, 42,173, 76, 38,155,177,116,217,210,239, 63, 94,185,210,187,184,168, 36,149, 47, 16,233, 28, 69, 66, -247,121,111, 46, 97,213,106,245, 28,181, 90,221,116, 31,110, 13, 37, 37, 37, 72, 79, 79,135, 72, 36, 2,159,207, 7, 93, 85, 9, - 70,163,129,190,164, 8,148, 65, 15, 33, 77,195,221, 81, 8, 63, 31, 31,180,240,182,109,106,171,220,211,199,113,100,100,245,232, - 72, 75,183, 32, 33, 4, 71,187,181,134, 64,236, 4, 7,177, 24, 61,246,157, 3,128,106,163,176,122, 99,147,154,190,190,190,158, - 50,153,108,255,231,159,127,206, 47, 44, 44,196,111,191,253,118,237,193,131, 7,101,238,238,238,206, 60, 30,143,185,123,247,238, - 79,119,238,220, 25, 20, 16, 16, 0,150,101,155, 26,253,245,201,158, 61,123,158,235,222,189,187, 57, 32, 32,192,169,160,160,160, - 69, 73, 73, 9,201,205,125, 56,135,249,242,229,203, 14, 89, 89, 89, 85, 12,195,236, 69,117, 29,172, 38,223,248,179, 71, 40, 28, - 46, 92,193,140, 94,158, 1,237, 92,188,218,161,208,116,181,221,165,107,121, 51,102,143, 80,172, 89,181, 51, 71, 71, 19,253,102, -218,148,237,199,117,208,109,105,242,164, 81, 29,197,138,136,136, 0,203,178,184,124,249, 50,206,157, 59,135,115,231,206,225,193, -131, 7,181,219,184,184,184,224,196,137, 19,136,141,141,181, 69, 18, 0, 80, 85, 85, 5,169, 84, 10, 87, 87, 87,236, 61,243, 29, -190,254,120, 91,109,162,187,133,194,194, 66, 56, 58, 58, 98,217,155,171,196, 19,223, 26,190, 4, 64, 63, 91,180,253,252,252, 2, -187,119,239, 62,208,199,199, 7, 37, 37, 37,240,242,242, 66,199,142, 29, 19,124,124,124, 2,212,106,245, 99,213,105, 51, 24, 12, - 83, 99, 99, 99,151,206,153, 51, 7, 38,147, 9, 35, 71,142, 68,122,122,250,142,180,180,180,213,254,254,254, 51,166, 77,155,230, -227,233,233,137,169, 83,167, 58, 1, 24,102, 77, 39, 44, 44,236, 63,243,231,207,255, 96,236,216,177, 66,147,201,132,147, 39, 79, -226,193,131, 7,208,235,245, 48,155,205,200,204,204,196,162, 69,139,114,203,203,203,123,213,207,223,108,136,188,188,188, 57,251, -246,237,139, 15, 13, 13,197,209,163, 71, 49,101,202,148, 67, 98,177,248,153,129, 3, 7,182,112,114,114,194,181,107,215, 96, 52, - 26, 33,149, 74,125,230,207,159, 63,168,127,255,254,248,233,167,159,176,100,201,146,131,190,190,190,141, 26,118,154,166,193,229, -114, 31,201,249,228,112, 56,184,122,245, 42,122,247,238,141,121,243,230, 1, 0,126,250,233, 39, 73,191,126,253,110,198,196,196, - 72,206,156, 57,211,232,195,159,181, 72,213, 63,101, 20,161,147,147,211,132, 77,155, 54,225,222,189,123, 56,127,254, 60,138,138, -138, 96, 48, 24, 80,198, 84,231, 92, 9,107, 34, 87,172,220, 31,221,230,188,131, 81,131,134, 33, 55, 55, 23, 20, 69,121, 90,211, - 36,132,140,121,231,157,119,112,228,200, 17,172, 88,177, 2,229,229,229, 13,110, 39, 18,137,208,177, 99, 71, 68, 70, 70, 34, 61, - 61, 29, 0,172,106,254, 81, 60,149, 17, 44,107,184,185,185,173, 94,183,110,157, 71,247,238,221, 57, 26,141, 6, 12,195,160,107, -151, 46, 24, 55,126, 28,142,237,221, 5,105, 96, 44, 56, 58, 17,204,206,143, 38,116, 54, 4,237,183, 25,197,197,197, 16, 10,133, -112,168, 73, 40,189,158, 83, 27,222,133, 78,167,171, 53, 87,150,215,198, 48, 27, 4,201, 41,105,180, 95,121,229, 85,252,154,252, - 63,152, 12, 6, 4,132,188, 13,189,217, 19, 78,222,175, 64,107,220, 15, 99,105,245,200, 93,129, 36, 6,106,117, 33, 0, 98, 83, -136,179, 33, 47,194,104, 31, 77,118,103,104,219, 13, 86, 73, 73, 73,185, 84, 42,253,241,226,197,139, 35,134, 13, 27,134, 19, 39, - 78,140, 3,128, 97,195,134,225,226,197,139, 72, 79, 79,255,177,164,164,164,225,119,123, 51,145,203,229,227, 7, 12, 24, 48,226, -153,103,158,193,137, 19, 39, 96, 54,155,155, 28,162,200,229,114,135, 79,159, 62,157,107, 9,185,243,249,124,148,151,151, 35, 47, - 47, 15, 61,123,246,228,207,154, 53, 43, 88,163,209,204,205,204,204,124,172, 47,134,186, 35, 6, 27, 26, 69,104, 89,214, 28, 77, -149, 74, 93,168,216, 95, 0, 0, 32, 0, 73, 68, 65, 84,149, 19, 26, 26,122, 95,171,211,241,220, 60,220,171,156,157, 4,108,121, - 69, 5,117,253,250,149, 92,181, 90,253,160,105,133, 90, 82,126,251,237,183, 54, 74,165, 18,153,153,153,160,171, 42, 65,233,245, - 32,122, 45,250,116,237, 2, 17, 88, 8,193,128,207,152,192,227,112, 81, 81, 81, 9, 0, 41, 77,137,214, 77,114,183,152, 43, 66, - 8, 28,196, 98, 8,156,197, 16,138,197,181,235,106,174, 65,147, 13, 21,137, 68,223,111,216,176, 65, 42,149, 74,241,233,167,159, - 66, 42,149,134,245,237,219,183,170, 87,175, 94, 34, 79, 79, 79,132,134,134,162, 67,135, 14, 56,125,250, 52, 8, 33,141,126, 49, -178, 44,107, 38,132,244, 59,127,254,252,156, 11, 23, 46,140,144,201,100,100,236,216,177,136,139,139,131, 80, 40,132, 86,171, 69, - 73, 73, 9, 14, 29, 58, 68,104,154,142, 2, 0, 95, 95, 95,255,150, 45, 91,110, 35,132,228,100,100,100,188, 88, 95,243,203,101, -237,100, 21, 90,102,162,212, 87, 54,172, 87,255,128,182,189,251,247, 69, 96, 72, 31,244,238,159, 13, 0, 43, 60,121, 25, 35, 63, - 90,208,102,111,128,159,251,166, 11,251,126,250,111,143,248,216,119, 23,207,112, 95,178,104, 77,177, 45,101, 26,106,191,108, 41, -138,106, 48, 74,197,225,112, 64, 81,182,205,101, 79, 51,116, 78,220,248,174,181,127,155,204, 70, 79,185,175, 31,101,137, 92, 1, - 64,121,121, 57,178,178,178, 96, 50,153,224,225,225, 1,147,201,216,206, 38,113, 0, 52, 77,207, 24, 57,114, 36,209,233,116,152, - 51,103, 14, 86,174, 92,137, 33, 67,134,144, 95,127,253,117, 6,128,102,215,170,147,201,100, 43,167, 78,157, 58,103,194,132, 9, - 40, 45, 45,197,169, 83,167, 16, 27, 27,139,117,235,214,121,157, 58,117,234,131,110,221,186,129,195,225,224,196,137, 19, 48, 26, -141,141,230, 70, 10, 4,130,233, 99,199,142, 21,102,103,103,131,207,231,163, 67,135, 14,200,201,201,129, 70,163, 65,126,126, 62, -222,127,255,253,188,178,178,178, 24,165, 82,217,164,185, 34,132, 80, 61,123,246,156, 25, 28, 28,140,147, 39, 79, 98,234,212,169, - 71,156,156,156,134,149,148,148,188,166,215,235,215, 12, 26, 52, 8,221,186,117,195,157, 59,119,144,144,144,128,142, 29, 59,226, -212,169, 83,152, 55,111,222, 33, 71, 71,199, 23,154,168,131,117,247,204,153, 51,109, 58,116,232, 0,141, 70,131,138,138, 10,240, -120, 60,184,186,186, 34, 37, 37, 5, 33, 33, 33,152, 55,111, 30, 86,173, 90,133,217,179,103, 51,253,250,245, 51, 27,141, 70,190, -101,148,229, 99,242,143, 24, 69,168,209,104,216,220,220, 92, 72, 36, 18,236,220,185, 19, 55,126, 58,134,195,211, 95,129,195,187, - 43,193,178, 44,114,150,206, 71,239,183,222, 69,151,107,105,200,205,205,197,150, 45, 91, 64, 81, 84,237,136,216,134, 96, 89, 22, -101,101,101,136,140,140,196,229,203,151,177,101,203, 22,124,250,233,167,181,209, 90, 30,143,135,152,152, 24, 60,247,220,115,184, -123,247, 46, 54,108,216, 0,137, 68, 98, 85,207, 78,195,112,129,106,199, 88,247,181, 46, 12,195,244,238,216,177, 35,167,178,178, - 18, 58,157, 14,106,181, 26, 25, 25, 25, 16,137, 68, 80,230,103,161, 83,171, 74,228, 17, 3,126,187,154, 74, 19, 14,239,106, 99, - 7,179,140,212, 49, 24, 12,184,126,253,122,245,208,247,144,229, 96,152,234,168,112, 77,206, 7,116, 58, 29,206,156, 57,195,138, - 68, 34, 56, 57, 57,145,198,250,222, 25,179,254,200,233, 95,174, 13,120,121,104,111,193,137, 51, 95,195,164, 55,163, 82,239, 10, -141,206,128, 10, 45, 15, 6, 97,127, 16,114, 14, 20, 71,136,110,145,173,112,234,252, 93, 29,109, 50, 30,181,233,234,176, 52, 56, -238,237, 64, 23, 95,255,253,120,218,135,159,234,249, 66, 49,104, 27,187, 8,107, 53, 24,102,239,247,223,127, 63,160,107,215,174, -142,177,177,177, 65, 0, 32, 20, 10, 13,223,127,255,189, 37, 58,208, 44,234, 86,111, 39,132, 16, 31, 31,159,158, 14, 14, 14,175, -188,248,226,139, 97,163, 71,143, 70, 90, 90, 26,182,110,221,154,229,232,232,120,184, 41, 45,179,217,236, 42,145, 72, 80, 94, 94, - 14, 62,159, 15,179,217,140,162,162, 34,220,185,115, 7, 30, 30, 30, 40, 43, 43,147,180,108,217,178,201, 50, 23,141,180, 53,173, -137, 81,132,171,241, 24,209, 44, 17,159,137,126,247,173,201,193, 58,157, 54,162,162,162,194,204,229,114,185, 66, 30,109,115,237, - 43, 0, 48,153, 76, 7,207,157, 59,247,124,143, 30, 61,132,169,215,175,194, 88, 86, 6, 83,121, 41,248,180, 25,238,209,145,160, - 12, 58, 16,131, 9,242,112, 22,218, 82, 39,252,114, 37,205,100, 50,153, 14, 54,165,107, 49, 88, 20,135,243,112,222,149,196, 25, - 2,113,181,193,170,187,156, 52,209,175,229,227,227,227, 24, 31, 31,223, 39, 42, 42, 10, 44,203, 98,229,202,149, 48, 24, 12, 2, -147,201, 4,147,201, 4,163,209,136,138,138, 10,236,222,189, 27,223,125,247,221, 47, 46, 46, 46, 77,214, 39, 99, 89,214,172, 80, - 40,222, 96, 24,198,219,108, 54, 27,189,188,188,248, 59,118,236,128,131,131, 3, 40,138, 66,100,100, 36, 28, 28, 28,244, 50,153, -204, 88,211, 6,211, 39,159,124,194,157, 52,105, 18,191, 33,189,246,157, 66,223,164, 89,143, 94, 2,161,127,128,139, 87, 59, 4, -134,244, 1, 0, 60, 55,104, 34, 2,131,253, 80, 86,112, 61,208,160,207, 28,202, 33, 69,110,255,187,168, 76,233,233,216,102, 66, - 81,206,153, 84, 0,223, 52,164,247,200, 53,101, 24,244,233,211, 7,253,250,245,171,237, 14,244,246,246,134,193, 96,128,217,108, -182,217, 92, 1,128,165,136,232,226,197,132,194, 34, 96, 83,103,231, 60, 0,181,225,201,178,178, 50,100,103,103, 35, 51, 51, 19, - 64,245,125,138, 97,109,123,186,150,201,100,162,192,192,192,241,207, 60,243, 12, 78,157, 58,133,235,215,175, 43,207,158, 61, 43, -239,212,169, 19, 20, 10,197, 4,153, 76,246,142, 74,165,178,185,160,178,151,151,151, 83,207,158, 61,167, 79,152, 48, 1,119,238, -220,193,188,121,243,138,242,242,242,246, 30, 60,120,112,210,127,254,243, 31,170, 87,175, 94,200,207,207,199,151, 95,126, 73, 39, - 38, 38,126,236,230,230,246,126, 99,122, 12,195,164,171, 84,170,150, 58,157, 14, 69, 69, 69,176,148,100, 56,122,244, 40,142, 29, - 59,166, 46, 45, 45,141, 81,169, 84,247,108,105,155,191,191,191,115,116,116,180, 79,106,106, 42,182,111,223, 14,163,209,248,238, -131, 7, 15,140, 46, 46, 46, 91,191,248,226,139, 69, 65, 65, 65,238,207, 62,251, 44,186,117,235, 6,150,101,113,224,192, 1,188, -247,222,123,135, 68, 34,209,176, 91,183,110, 53, 53, 0,102,232,146, 37, 75,150,120,122,122,190,248,210, 75, 47, 81,209,209,209, - 72, 74, 74, 2, 77,211,232,211,167, 79,173,185, 58,122,244,232,247, 71,143, 30, 29, 14,128, 47, 22,139, 29,154,138, 94, 1, 0, - 33, 36, 1,128,229,161,174,138,101,217, 39, 42,103,243,103,160,211,233,144,154,154, 10, 31, 31, 31, 4,119,234,138,121, 55, 51, -112,238,194, 69,176, 44,139, 30,191,101,160,178, 82,131, 77,155, 54, 33, 57, 57, 25, 28, 14, 7, 65, 65, 77,103, 90, 24,141, 70, -220,187,119, 15, 5, 5, 5, 24, 50,100, 8,198,140, 25,131,143, 62,250, 8, 70,163, 17, 11, 22, 44, 64,113,113, 49, 54,110,220, -136,123,247,238,129,203,229, 66, 44,182,177,151,234, 9,104,204,139,252, 27,177, 41, 11,212,108, 54,131, 97, 24,168, 84, 42, 92, -190,124, 25, 25, 25, 25,112,114,114,130,214,204, 48,159, 95,186,198, 80,132,167,164, 89,156,103,205,213, 85,196,173,161,209,104, - 88,147,201, 68,184, 92, 46, 46, 92,184,128,251,247,239, 67, 18,204,214, 70,175, 76, 38, 19,244,122, 61,170,170,170,192,227,241, - 42, 47, 94,188,248, 32, 41, 41, 41,144,203,229, 90, 29, 5,150, 31,194,217,124,226,167,147,111, 70, 71, 70,132,246,237,245, 30, - 14, 30,252, 47, 74,203,203,161,209,115, 81,169, 53, 66,163, 99, 33,115,110,133,206,237,162, 80, 80,100,192,221,223,146,115, 10, -249,238, 77,246,193,152,104,170,236,251,181,175,185, 12, 30, 62, 21, 14,190,207,194,144,177, 3,140, 86, 93,107,176,248, 14,206, -144,120,182, 64,121,165, 22,191,164,164,195, 68, 83, 13,142,124,105, 8,181, 90, 93, 37,149, 74,119, 77,157, 58,117,197,213,171, - 87, 2, 1, 32, 49, 49, 49, 93,165, 82,205,111, 78,119, 22, 80, 91,189,125, 30, 0,136,197,226,148, 30, 61,122,148, 68, 70, 70, - 58, 14, 26, 52, 8, 46, 46, 46, 72, 73, 73,193,178,101,203, 50,244,122,253,107, 89, 89, 89, 77,142,166,227,114,185,165,197,197, -197,222, 2,129, 0,101,101,101,181,230, 74,163,209, 88,146, 40,203,207,156, 57,243,143,154,143, 82,161, 80,244, 26, 16,215,171, -205,199,171,214, 64, 91, 85,137,196,139, 7, 81, 82, 92,136, 13, 95,237,105,171, 80, 40,122,217,154, 76,156,147,147,243,195,158, - 61,123,230,180,127,230,153,168, 32, 63, 63,220,200,204, 0,159,161, 33,160,105,112, 12, 58, 80,180, 30,138, 54, 44, 40, 74, 12, -117, 94, 5,214, 31, 63,117, 51, 39, 39,231,135,166,116,229,241,131, 49, 58,179, 12,132, 16, 28,239, 25, 1, 7,177, 24,124,177, - 19,186,237, 62, 83,107,170, 30,172,152, 11,190,147, 24,110, 29,155, 46,140,169, 86,171,171,130,131,131,147,110,223,190,221,177, -117,235,214, 88,188,120, 49,178,179,179,193,178, 44,242,243,243,117, 5, 5, 5,202,162,162,162, 7,132,144,189, 42,149,234, 43, - 91,171,133, 51, 12,227,125,224,192, 1, 0,224, 3,192,201,147, 39, 33,147,201,224,226,226,130,242,242,114,140, 29, 59, 86,184, -112,225, 66, 0,192,149, 43, 87,120, 14, 14, 14, 86,181,126,187,122,231,147,146,114,182,132,210, 36, 15, 43, 52, 95,109,219,187, -127, 14,158, 27, 52, 1, 39, 14,110,194,169, 99, 63,193,147,151,145, 78,139, 42,143, 20,164, 23, 86,228,106, 66,190,140,232, 48, -137,163,170, 60,182, 97,218, 16, 55,174, 66,202,236,156,191,206,122,225, 94,160,250, 9,156,195,225, 60,146,208,222, 92,115, 85, -151, 69,139, 88,134,128,144, 64, 30,247,170, 50, 47,187,191,204, 71,129,252,252,124,100,101,101, 33, 43, 43, 11,217,217,217, 8, - 14, 14, 70, 70,102, 26, 4, 2,126,163, 15,147,117,218,249,210,160, 65,131,156, 13, 6, 3,246,237,219,103, 38,132, 12, 58,112, -224, 64, 82,251,246,237,185,177,177,177,206,155, 54,109,122, 9,192, 87,205,104,166,147, 88, 44,230,155, 76, 38,108,222,188, 25, - 74,165,178, 87, 94, 94, 94,138, 76, 38,251,242,245,215, 95, 95, 23, 30, 30, 30,156,146,146,114, 87,171,213, 78, 85,169, 84,215, -155, 18, 43, 45, 45, 29, 23, 23, 23,183,147, 97, 24,255,238,221,187, 59,141, 30, 61, 90,194,178, 44,194,195,195,113,248,240, 97, -149, 74,165,178, 37,135, 9, 0,144,153,153, 89,113,238,220, 57,117, 68, 68,132,143, 84, 42, 5,159,207, 95, 33,149, 74,151,138, -197,226,143, 19, 18, 18,220,119,236,216,129, 93,187,118,193,201,201, 9,233,233,233,170,219,183,111,175,246,245,245,253,204,150, - 10,238,201,201,201,233, 0, 70,119,234,212,233,189, 79, 63,253,244, 93,138,162, 94, 62,126,252,120,109,173, 51,139,185, 10, 8, - 8, 24,183,115,231,206, 49,182,182,185, 6, 71, 75,201, 1, 66, 72,221,252,220,127, 74,110,150,201, 96, 48,192,195,195, 3, 5, - 5, 5,200,207,207, 71,139, 22, 45,208,181,107, 87,152, 76, 38,252,120,240, 16,206,157, 59, 7,150,101,225,233,233, 9,137, 68, -130,107,215,174, 1, 64, 99,163,135, 77, 70,163, 17,238,238,238, 40, 45, 45,197,181,107,215,224,237,237,141,217,179,103,195, 96, - 48, 96,199,142, 29,184,122,245, 42, 40,138,130,151,151, 23,156,157,157,113,245,234,213,166, 52,237,212,163, 73,131,197,225,112, - 78,159, 62,125,122,120,187,118,237,184,119,239,222,197,221,187,213,159, 55,173, 86,107,230,114,176, 75,125,125,223,104,107,251, - 18, 66,218,212,173,149, 33, 16, 8,214, 15, 31, 62,124,234,196,137, 19, 49,109,218, 52, 80, 20,133,111,174,232,145,149,197,192, -104, 52, 66,173, 86,227,198,141, 27,108,199,142, 29, 9,195, 48,198,152,152,152, 87,147,147,147, 59,113, 56,156,114,107,154,236, -206,157,180,103,219,193, 67,190, 88,255,213,133,241,227,199,187, 15, 30,242, 5,174,220,250, 13,165,154,234,161,171, 50, 79, 39, -116,110, 61, 23,249, 69,122, 28, 59,114,176,132, 49,235, 94, 96,111,110, 55, 53,214, 78, 0, 40,168,210,122,127,185,101,207,202, -237,187,247,190, 58,121,220,104,135,152,152,113,224, 85,220, 0, 93,148, 12, 89, 72,119, 16,142, 35,126,189,118, 5,215,239,101, -235,170,116,156,175,202,141,218,185, 77,105,214,165,172,172,236,178, 90,157, 23, 88,167,106,123,160, 80,232,208,104,210,108,125, -205,154,234,237,243, 44, 26, 28, 14, 21, 49,127,254,252,155,222,222,222,166,140,140, 12,108,220,184, 17,151, 46, 93, 58, 39, 16, - 8,222,203,202,202,106,176,235,165,190,166,217,108,222,181,114,229,202,215,230,207,159,207,203,205,205, 69,106,106, 42, 52, 26, - 13, 76, 38, 19, 14, 31, 62,108,174,170,170,106, 50,194,214,212,185, 63, 14,141,105,230,228,228,156, 13,105,213, 2,155,191, 90, - 5,163, 81,143, 92,101, 38, 0,160,176,168, 12,141,153,171, 71,222, 75, 44,203, 74,165,210, 97,159,174, 94,125,105,202,184,151, -125,123,246,238,131,236,235,215, 96, 40, 46, 0, 69,155,193, 99,185,168,202, 23, 65,173,174,196, 7,135,127,202,215,234,116,195, -234,231,180, 89,107,103,109,183,160,196, 25, 66,177, 24,130,154,168,149,101,157, 64,236, 12,158,147, 24, 28, 62,191,161,100,248, - 71, 52,171,170,170, 94,152, 60,121,242,245,195,135, 15,187,141, 30, 61, 26,131, 7, 15,190, 82, 90, 90, 26, 91, 92,220,116, 23, -155, 53, 77,138,162,242, 7, 12, 24,224,109, 48, 24,204, 35, 71,142,228, 22, 22, 22,194, 50,196,190,162,162, 2, 71,142, 28, 65, -235,214,213,179,206,252,246,219,111,136,136,136,176,170, 57,233,173, 27, 74, 0, 75,102,143, 80,124,124,233, 90,222, 12, 0, 43, - 2,131, 21, 56,117,236, 39,156, 59,117, 97,126,151, 54,204,154,129, 47,117,122,223,161,247,139,115, 35,162, 39,113,196, 18, 41, -182,236,217,205,185,149,252,245, 50,157,230,102, 16,128,185,214,218, 73, 8,169,158,169,190,142,185,226,114,185,168,170,170,178, -201, 92, 53,246, 94, 98,193,178,158,229,228,221,241,179, 71,116, 61,185,253, 87,103, 39, 39,167,218,156,159, 86,173, 90,129,203, -227,226,155,189,159,107, 74, 75, 11, 23,218,162,233,228,228,244, 70,108,108, 44,210,210,210,112,253,250,245,221, 42,149,234,186, - 76, 38,219,157,158,158, 62,178, 83,167, 78,248,225,135, 31,222,128, 21,131,101, 77,211, 82,177,158,101, 89,208, 52, 93, 12, 0, - 42,149,234, 26,128, 38, 75,206,215,215,172, 41, 22,218, 29, 0,194,195,195,179,135, 14, 29, 42, 49,155,205,168, 49,207, 30, 86, -100, 26,212,100, 89,150,145,201,100,159, 37, 38, 38, 46,143,140,140,196,168, 81,163,158, 75, 74, 74,122,174,125,251,246, 8, 10, - 10, 66, 73, 73, 9,206,156, 57,243, 63,134, 97, 94,207,205,205,213, 53,150, 15,106,237,220, 19, 19, 19,239, 1, 24, 27, 29, 29, -253, 34,151,203,133, 68, 34,225, 40,149, 74,206,241,227,199, 1, 96,242,206,157, 59,173, 62,252, 53,247,190,100, 75,206,213, 95, -113,175, 35,132, 44, 24, 55,110,220,151,175,189,246,154, 67,167, 78,157, 80, 86, 86, 86,107,250, 15, 31, 62, 12,134, 97,224,225, -225, 1, 15, 15, 15,220,187,119, 15,123,247,238, 53,148,149,149,173,230,243,249, 43, 26,211, 28, 59,118,236, 67,154, 22,243,118, -240,224, 65, 88, 6,145,120,120,120,224,238,221,187,216,179,103,143,174,172,172,108,149,193, 96,248,232,207, 60,247,167,141, 38, - 13, 86,113,113,241,204,183,223,126, 59,246,149, 87, 94,241,208,106,181, 28, 79, 79, 79,168, 84, 42,243,177, 99,199,138, 43, 42, - 42,102, 54,231, 96, 23, 46, 92,152, 54,104,208,160,213,223,126,251,237,198,141, 27, 55,246, 26, 53,106, 20,198, 14, 24,128,169, - 93,157,160,215,235, 65, 8,193,177, 99,199,238,156, 62,125, 58,144,207,231,235, 23, 45, 90,196, 0,120,100,130,216,250, 20,222, -216,127,215,167,237,208, 94,107, 62, 95,183, 43,170, 67, 23,255,150, 1, 45,133,221,253, 92, 96, 52,209, 80,231, 23,225,236,133, - 91,250,187,183,174,101, 51, 70,195,136,252, 91, 77, 87,113, 7,128, 91,183, 88, 35,128,153, 17, 17,146,197, 31,173,255,126,253, -119, 59,119, 15,125,117,212, 48,110,116,219, 88,100,228,253,136,159,147, 78,155, 75, 42,216,189, 21, 6,206,148, 91,183,202,155, -156,202,167, 62, 58,157,206, 84,191, 35, 72,167,211, 61,241, 36,215,219,183,111, 71,126,126, 62,115,251,246,237,147, 0, 54, 43, -149, 74,155,194,251, 22,166, 79,159, 62,115,237,218,181,253, 43, 42, 42, 90, 12, 27, 54,140,231,238,238,142,226,226, 98, 28, 57, -114,196,124,229,202,149,204,233,211,167, 55,171,142, 86,125,254,232, 81,132, 64,109, 4, 11,227, 39,253, 7, 90,109, 37, 46, 93, - 56,136,210,226, 66, 92,188,156,138,230, 68,176, 0, 32, 55, 55, 55, 75, 42,149,118, 89,186,122,205,158,184,206, 29,195, 67,101, -190, 66,143,128,150,112,242,242, 69,113, 81, 17, 46, 93,187,111, 90,123,226,236, 77,173, 78,103,211, 84, 57, 64,245, 23,162,101, -148, 91,196,140,249,160, 40,170,118, 22, 4,203,122, 73,135, 30,160,184, 60,208, 44, 96, 52, 26,155, 76,194, 82,169, 84, 57,114, -185,252,133,233,211,167,159,220,188,121, 51, 21, 19, 19, 19,185,127,255,254, 39,154, 52, 55, 39, 39, 71, 1, 0, 50,153,172, 92, - 34,145,112, 39, 76,152, 0,147,201,132,170,170, 42,148,151,151,163,168,168, 72, 63,107,214, 44, 33, 0,240,249,124, 83, 92, 92, - 92,147,247,143, 85, 59,115,116,179, 71, 40,214,120,242, 50, 70,150, 21, 92, 15,244,228,101,164,119,105,195,172, 89,181, 51, 71, -247,225,107,110, 75,149, 5,103, 82, 85,149,199, 54,108,217,179,155, 51,110,232, 11,180, 84,124,119,190,167, 31,118,198, 14,110, -186,189,245, 13,214,227, 70,174,234, 83,120,147,189, 18,216,213,101,121,236,136, 78,239, 44,157,243,137,216,211,203, 19,102,179, - 25,233, 89,105,248,118,207, 90, 77,133,190,100, 89,209, 45, 54,201, 22,173,192,192,192, 0, 14,135,131, 31,127,252, 17, 0, 44, -165, 13,214, 30, 57,114,100,228, 75, 47,189,132, 22, 45, 90, 68,180,108,217, 82,216, 88, 25,141,250, 88, 34,254,182,228,234, 53, - 7, 66, 72,218,181,107,215,228,114,185,156,108,223,190,189,210,104, 52,190,215, 92, 13, 95, 95,223, 79, 14, 29, 58,212,147,101, -217,184,168,168, 40,248,251,251, 3, 0,110,221,186,133,115,231,206,109, 83, 42,149,227,109,141,168, 54, 1, 75, 8, 65,121,121, -185,165,174,137, 81, 44, 22, 63,174,110, 85,157,200, 85,179,122, 16,254, 10,148, 74,229,119, 62, 62, 62,199,222,123,239,189,255, -182,106,213,234,245,201,147, 39,115, 66, 67, 67, 81, 86, 86, 6,137, 68, 2,169, 84, 10,165, 82,137,239,190,251,142,206,207,207, -255,150,162,168,197, 42,149, 74,245,184,154,110,110,110,144, 74,165,200,201,201,177,104,110, 52,153, 76,239, 23, 20, 20,252,229, -147, 37,255,219, 33,182,124, 72,107,202, 52,124, 70,211,116, 44, 80, 29,213, 42, 46, 46,158,153,151,151,247,104,249,246,186,226, -141, 56,220, 65,131, 6,181, 42, 44, 44,220,104, 52, 26,123, 13, 30, 60, 24,163, 70,141, 66, 66, 66, 2, 70,141, 26,197,177, 68, -173,126,252,241,199, 71, 10,229, 53,166,105,153,236,153,226,240, 7,177, 44,219, 14, 0, 33, 20,213,228,100,207,182, 56,241,168, - 8, 73,144, 72,200,124, 37, 18, 48, 61,180, 6,234,188, 86, 79,189,122,229, 86,185,213, 9, 70,109,209, 36,117, 38,103,174,153, - 22,166,209, 42,147, 86,158,230,107,187, 8,185, 92,222, 78, 15, 15,143,197,132,144, 44, 91,243, 58,234,105, 18,160,182, 14,214, -103, 92, 46,119,184, 86,171,117, 21,137, 68,165,102,179,121,215,244,233,211,103, 46, 90,180,168,177, 55, 12,107,173,157,114,185, -124,245,254,253,251,109,206,173, 26, 60,120,240, 13, 75, 94,150, 53,205,186,180, 10, 82, 28, 11, 10,144,247, 11, 10,144, 1, 0, -210, 50, 84, 72,203, 80, 30,191,159,150, 99,181,100,101,163,239, 37,242,251,100,207,164,166, 20, 3,107,195,100,207,245, 53,159, -121,230,153, 36, 14,199,250, 68,194, 13,193, 48,140,234,230,205,155,181, 53,203, 26,107,167, 76, 38, 27,237,231,231,183, 66,165, - 82,237,201,206,206,254,143,173,199,104, 66,179, 27, 69, 81,135, 25,134, 17,213, 93, 78, 81, 84,190,197,132,249,250,250,250, 11, -133,194,135,146,220, 27,211,252,104, 65,155,133,221,123,245, 28,250,203,217,115,123,223, 90,118,243,161, 2,186,111, 12,117,159, -248,210,180,153, 31,125,255,197,103,111,173,221, 91,252, 80, 73,141,134, 52,219,181,107,119, 6, 64, 72,205,250, 70,207,147,166, -105,213,205,155, 55, 31, 26, 86,110,235,147,183, 71, 59,210,209,213,201,115,137,193,104,108, 79, 17,176, 60, 62,255, 90,105,105, -225,194,134,204,149, 53, 77,133, 66,177, 34, 56, 56,120,230,253,251,247,183,101,103,103,191, 98, 89, 46,147,201, 62,110,217,178, -229,180,236,236,236,181,217,217,217,115,235,239,103, 77, 51, 48, 48, 80,210,190,125,251,146,197,139, 23, 83,139, 22, 45, 66, 98, - 98,162,123, 78, 78,142,205, 15,120,141,157,187,191,191,191,175,131,131,195, 22,134, 97,130,104,154,254, 34, 45, 45,205,166,201, -183,235,107, 70, 68, 68,240, 75, 75, 75,103,250,249,249,205,246,241,241,241, 81,171,213,153, 89, 89, 89,203,243,242,242,190,182, -213, 92,217,242, 63,138,142,142,214, 3, 16, 0,128, 45,249, 86,127,117,100,253,207,208, 84, 40, 20, 65, 12,195, 44,107,223,190, -253,240,137, 19, 39,146,148,148, 20,156, 56,113, 2, 15, 30, 60,216,203,178,236, 59,214,186,116,155,171,121,236,216, 49, 54, 51, - 51,115, 39, 69, 81,239,230,228,228, 52,248, 61,103,143, 96, 53,141, 77, 6,235,177,197,109,248, 7, 88,140,150, 94,175,127, 22, -128,230,250,245,235,206,141,109,255,119,127, 72, 98, 98,188,156,206,156, 41,104,124,104, 99, 51, 52,235, 38,168, 63,174,102,115, - 52,154,208,124,210,196, 66,171, 6, 75, 38,147,189, 65, 8,177, 57, 58,197,178,108,154, 74,165,170, 45,102,104,235,245, 12, 9, - 9, 97,239,221,187,103, 83,146,228,223,253, 94,250,255,164,249,229,178,118,178,246,157, 66,223,252,237,234,157, 79,106,186, 15, -107, 89, 60,195,221,185,123,239,152,119,127, 57,117,102,105,253, 81,132, 79,195,185, 19, 66,168,134,140, 5, 33,141,215,164,179, -166,217,162, 69,139, 47,163,162,162, 94,189,114,229,202, 55, 89, 89, 89,147,255,168,118, 62, 46,141,220,151,136,191,191,191,160, - 57,209,185,166, 52,159,132,167, 73,211,215,215,183, 3, 69, 81, 11, 1,128,162,168,101, 57, 57, 57,141, 22, 85,109,166, 38,205, -178,236,210,220,220,220, 70,103, 44,176, 27,172,166,121,172,201,158,255, 72, 14, 30, 60,120, 31, 64,204,224,193,131,189, 57, 28, -206, 31, 53, 73,231,159,134, 45,230,170, 57, 60,142, 41,250, 51, 52, 44, 82,127,144,206, 35,212, 53, 75,127, 38,119,239,222,125, - 42, 70,159, 60,109,188,190,224,186, 10,192,127, 58,245,121,116, 93,141,169,122,171,183, 13,221,130,255, 70,172, 69,109, 26, 51, - 87,141,145,149,149,245,186, 76, 38,155,221,156,209,135,127, 7, 53,231,215,108,115,101,167,105,242,242,242,146, 0, 36, 52,185, -225,223,172,249,255,157,191,221, 96, 89,216,191,127,127,254,223,221, 6, 59,118,236,216,249, 55,240, 79, 55, 87,118,236,216,169, -238, 18,106,112,218,152,230,132,254,234, 13,109,181, 9, 27,242,147,236,154,118, 77,187,166, 93,211,174,105,215,180,107, 62,101, -154, 77,105, 63, 45, 93,143,127,123, 14,150, 93,211,174,105,215,180,107,218, 53,237,154,118, 77,187,230,211,198, 31, 51,174,217, -142,157, 70,248,252, 85, 34,255,252, 85, 34,255,179,182,183, 99,199,142, 29, 59,118,254,105,252, 99,114,176,254, 40, 58,116,232, - 16,193,178,236, 75,132,144,225, 0,192,178,236, 46, 66,200,247, 73, 73, 73, 54, 85,160, 21,137, 68,121, 58,157,206, 27, 0, 28, - 28, 28,242,117, 58,157, 20, 53,163,235,134, 15, 31, 78, 10, 11, 11, 73,101,101, 37, 1, 0,177, 88,204,158, 61,123,150, 5,192, - 52,150,176,234,224,224,160,214,235,245,222,245,151,243,249,124,163,155,155, 91,137,183,183,119,137, 84, 42, 45,241,247,247, 47, - 9, 10, 10, 42,144, 74,165,151,162,163,163,119, 7, 5, 5,217, 84, 52, 18, 0,158,123,238,185,215,157,156,156, 22,106,181,218, -143,142, 29, 59,246,153,173,251, 61, 46,132,144,206,126, 50,223, 77, 38,179,145,201,203, 47, 94,192,178,236,143, 13,109,183,238, - 21,178,156, 75,170,139, 70,174,123,133,172,156,250, 77,227,165, 40,154,187,125, 35,237,235,192,227,241,222,240,241,241,137,207, -201,201, 73, 2,240, 22,203,178,246, 42,196,118,236,216,177, 99,231, 47,161, 89, 6,171,107,180, 71, 40, 97,140,115,121, 28,182, -167,137, 38,231, 88,138,191,242, 98,114, 81,234,147, 52, 64, 38,147,249, 17, 66, 98, 88,150, 13,167, 40,234, 6,195, 48,199, 85, - 42, 85, 81,115, 52,162,163,163,253, 0,140, 2, 48,186, 75,151, 46,109,166, 76,153,130,224,224, 96,232,116, 58, 36, 38, 38,206, -223,186,117,235,252,232,232,232,155, 0,182, 1,216,158,156,156,156,109, 77, 75,167,211,121, 91,188, 18, 33,196,123,242,228,201, -180,165,214, 14,203,178,112,115,115,179,212,222, 57, 70, 8, 57, 26, 22, 22,118,244,139, 47,190, 72,107,237, 45,234,210,210,207, -107,224,145,164,204, 5,245, 53,245,122,189,183, 58,249, 87,176,102, 26,149,202, 44,200,227,135,128,166,105, 48, 12,195, 63,210, -183,179, 15,163, 45,244,145, 58,186, 33,124,241, 98,131, 78,167,219,105, 48, 24, 10,130,130,130, 42, 26,211,172, 79,100,100,228, -251,239,189,247,158,231,224,193,131,223, 0, 96,213, 96, 53, 71,211, 26,132, 16, 97,151, 14,237, 78, 31,216,189,221, 1,132,194, -243, 67,135,111, 35,132,140,101, 89,118,119,221,237,214, 77, 32, 62,132,131,185, 83,102, 77,225, 0,192,186,213,235,223, 90,253, - 50, 89, 51,235,127,108,158, 92, 46,143,101, 89,246,173, 26,189,143,148, 74,229,233,117, 19,136, 15, 40,204,155, 50,107, 10, 1, -128,245,171,215,207, 93, 55,129,124, 54,117, 83,243, 70, 73, 18, 66,166,142, 31, 63,126,205,178,101,203, 56, 53, 69,248,226, 34, - 34, 34, 66, 9, 33, 17, 44,203,218,147,131,237,216,177, 99,199,206,159, 78,147, 6,171, 77, 27, 23, 87, 17,197,206, 22, 9,216, - 81,113, 61, 35, 2, 18,226,187,145,192, 86,129, 72, 77, 73, 13, 58,125,246,242,132,216, 78,206, 25, 90, 3,217,174,101,200,170, -155, 55, 27,159, 63,108,205, 92, 98, 50,153,171,143,201,231,130, 94,185, 67,177,183,111,223,190, 1, 19, 39, 78, 68, 84, 84, 20, -146,146,146, 98,119,238,220, 57,211,207,207,239,178,201,100, 58, 44, 20, 10,207, 52, 85, 67, 37, 58, 58,122,133, 92, 46,127,107, -206,156, 57,164, 67,135, 14, 16, 10,133,181,235,196, 98, 49,250,244,233,131, 62,125,250, 32, 47, 47,175,205,153, 51,103,218,124, -255,253,247,203,163,163,163, 63, 74, 78, 78,158,111,203, 5,122,227,141, 55, 26, 90,124,140, 16,114,148,162,168,163, 97, 97, 97, -105,193, 82,113,107, 31, 47,143,131, 31, 46, 91, 12, 0, 86,141,203,190,254,221, 0, 0,195,239,255, 94,159,149,173, 44,133,162, -125, 91,184,135, 71, 48, 58,157,110,183, 78,167,219, 29, 18, 18,114,200, 86, 77, 0,136,137,137, 17, 58, 59, 59, 19,150,101,209, -169, 83, 39,247,254,253,251,167, 82, 20,245,217,145, 35, 71,214,215,221,174, 57,154, 77,208,249,189,185,211,248,133,105, 87,113, -251,194,113, 12,137,150, 59, 92,249,237,206, 82, 0,187, 27,219,137, 16,138,218,156,228, 57,127, 22, 48,147, 97,152,133, 41, 41, - 41,189, 0, 32, 60, 60, 92, 0,224,244,150, 68,183, 1,227,187,149, 61,118,153, 5, 66, 8,159,195,225,124,177,101,203,150, 73, - 99,199,142, 69,102,102, 38,206,159, 63, 15,177, 88,140,247,223,127,191,229,156, 57,115,150, 3,104,214,236, 3,118,236,216,177, - 99,199,206,227,208,168,193,234, 25,237,148, 56,180, 87,171,232,193,253,187, 81,193,225, 17,224, 11, 29,107,215,181,141,138, 66, -219,168, 40, 50,121,114, 69,224,181, 43,215,222, 61,122,242,215,119,122, 70, 59, 37,159, 75,214,116,178,166,103, 50,131, 59,231, -149, 41, 87, 0,224,204,133,245, 81,169,169,169, 1, 34,209,239,197,162,123,245,234,133, 94,189,122, 81,203,151, 47,239,124,250, -244,233,206,219,183,111, 55,202,229,242,213, 74,165,114,103, 35,205,124,107,231,206,157,132,195,225,128,195,225, 88,221,200,215, -215, 23,207, 61,247, 28,124,125,125,201,220,185,115,223, 2,208,160,193,114,112,112,200, 39,132,120, 3,128,135,135, 7,214,172, - 89, 3,212,169, 15, 69,211,244, 49, 0, 71,121, 60,222,209, 13, 27, 54,164,183,146,139,228,206, 66,199,227, 27,191,252, 28,166, -114,181,187,181,227, 87,169,114, 26, 92,222,162, 99, 52,220,194,159, 97,120,238, 30, 63,235,116,186, 93, 33, 33, 33, 7,108,213, - 4,170,205,149, 72, 36,250,249,203, 47,191,116, 3,128,233,211,167,187, 86, 85, 85,185,190,250,234,171,243, 1,212, 26,172,230, -104, 90,131, 16,226,218,179,107,135, 7,107, 86,252, 87, 18,213,185, 7, 46,237, 90,135,210, 82, 13, 52, 21, 85, 96, 24,230,145, -153,127,167,254, 31,123,103, 30, 23, 69,253,255,241,215,103,102, 47,118, 57, 68,144,107,193, 19,143, 64, 80, 4, 20, 81,243,206, -210, 44,181, 50, 51, 21,191,150,230, 93,169, 37,154,229, 45,230,149,166,230,149, 87,105,150,119,105, 30,120,226, 45,135,120, 32, -162,120,195,130,128,156,238, 46,123,205,124,126,127,192, 18,226,178,187,152,253,190,213,119,158,143, 7,143,221,217,153,121,205, -103,102,150,221,215,190, 63,239,207,251,179,145, 62,250,238, 3,178,240,187,111, 86, 77, 38, 12, 67, 66, 94,253, 28,175,186,209, -241, 74,165,242, 26, 33, 68, 44,149, 74,205,186, 34, 63, 63, 63,101,179,102,173, 22, 54,233,240, 18, 86, 45, 91, 9,202,243, 20, -192, 66,123,163, 87,132, 16, 79,103,103,231,189,135, 15, 31,142,104,221,186, 53,206,159, 63,143,219,183,111, 99,204,152, 49,250, - 49, 99,198, 72,162,162,162,200,132, 9, 19,198, 17, 66,118, 80, 74,207, 60,207,249, 11, 8, 8, 8, 8, 8,216,139, 85,131,229, - 32,225, 90,207,248, 54, 25,156, 58, 29,212,248, 0,212,144,253,204, 54, 10,215,186, 8, 8,241,130, 66,234,193, 92,185,254, 77, -235,202,235,108,141, 48, 48,155,171, 29,139,149, 65, 90,117,150, 4, 0,228,142, 62,134,183, 39,100, 94,107,221,186, 53, 60, 60, - 60, 36,103,207,158,157, 0,160,194, 96, 89,208, 36,250,203, 9, 72,125,163, 61, 26,167,230, 67,161, 80,192,252,197,109, 38, 45, - 45, 13,113,113,113,184,127,255, 62,252,253,253,129, 42, 21,203, 43,107,106,181, 90,239,168,168, 40,245,164, 73,147,228,171, 87, -175,198,197,139, 23, 93, 19, 19, 19,139, 97,129,224,122,181, 92,165, 84,124,120,221,170,111,196,208,171,221,110,196,159, 65, 80, -207,143, 44,182,211,187,123,175,138,200,213,142,198,117,224,225,223, 16,202,150, 45,208,120,225, 6, 94,167,211,109, 47, 45, 45, -221,222,180, 73,147, 95,237,213,236,218,181,235,127, 68, 34,209, 23, 0,106,173, 89,179,198,213,213,213,149,217,187,119,175, 97, -245,234,213, 37, 18,137, 68, 79, 8,153,247, 60,237,180,134,152,101,103, 47,154,241,153,139,130, 49, 33,233,247, 31,145,113,255, - 1, 46,223,202, 52,254,124, 42,133,211, 27,185, 97,150,174,231,232,245,116,202,196,126,178,141, 9, 89,254,191,245,158, 62,166, -233,156, 55,189, 96, 48, 24,214,229,230,230, 98,248,240,225,224,121, 30, 29, 58,116,104, 79, 41,205, 28, 63,126, 60,252,253,253, -177,238,215,155, 26, 81,241,133,206, 91,142, 22, 39, 88,210,172, 10, 33, 36,184,126,253,250,135,143, 31, 63,238,229,235,235,139, - 19, 39, 78, 32, 59, 59, 27, 62, 62, 62, 24, 51,102,140,116,254,252,249,155,139,139,139,251,207,157, 59,215,225,234,213,171,219, - 8, 33,117,105, 25, 47,124, 4,140,160, 41,104, 10,154,130,166,160,249,151,208, 26,128, 7,128, 92, 0,241, 85,150, 81,254, 28, - 22,150,243, 80,246,157, 95,121,242,242, 60,148, 5, 78, 60, 0,112, 0, 46, 2,168,241,156,194,182, 16, 1, 0, 33,164, 19,128, - 19, 0,102, 82, 74,103, 84,221,200,144,121, 2,210, 6,111, 1, 14, 65,160,250,116,240,250, 76, 80,177, 39,212, 26, 7,228,221, -187,143,212,243, 59, 64, 77,182,231,200, 20,139, 96,218,125,112, 85,168,171, 51,192, 74, 61, 12, 37, 37, 37,112,116,116,132, 86, -157, 37,137,138, 42, 75, 27,218,188,249, 99,201,241,227,199,145,152,152, 8,165, 82, 89,209, 70,107, 80,125, 89, 47,162, 94,175, -135, 94,175, 71,118,175, 54,112,108,219, 17, 5,131,199,224,200,145, 35,200,205,205,133, 68, 34,129, 68, 34,129,201,100,187, 88, - 60, 33,132, 1,202,114,174,100, 50,153,197, 42,204,126,126,196,193,153,147,239, 91,190,100,158,139,139,147,194, 43,225,240, 30, -220,191,255,172, 1, 53,195,243,127,200,248, 4, 52,131, 79,139, 96,212, 14,106, 1,157, 78,183, 83,167,211,237,108,210,164,201, -158,154,104,178, 44, 59,107,231,206,157,190, 58,157, 14, 18,137, 4, 59,118,236, 48,108,218,180,233,154, 90,173,126, 57, 49, 49, -177, 34,207,168,166,237,180,134,187,135,199,254,183, 6,125, 52,102,206, 7,175, 64,171, 46,197,238, 83, 41, 56,122,229,238,155, - 0, 78, 83, 74,171,173,112,191,120,183,238,150,175,175,111,183,225,195,135, 95,218,181,107, 87,157, 69,139, 22,129,227, 56,152, - 76, 38,152, 76,166,138,231, 28,199,225,167,159,126,194,233, 11, 41,227, 85,170, 98,187, 38,211, 37,132, 40, 27, 54,108,120,228, -194,133, 11, 30, 10,133, 2,177,177,177, 40, 44, 44,196,232,209,163, 43, 34, 87,133,133,133,239,173, 90,181,234,237,123,247,238, - 45, 58,117,234,212, 99, 0, 44,128,191,253,172, 1, 2, 2, 2, 2,255, 75,216,240, 34, 30,132,144,125,148,210,222, 0,186, 3, -144, 86, 90, 6, 33,100, 31, 0, 84, 93,142,142,142,158, 26, 19, 19,115,205,188,108,222,102,202,148, 41, 65,243,231,207,159, 23, - 25, 25,185,237,236,217,179,119,240, 87, 25, 44, 0, 39,168,149,185,219,116,233, 91,160,187,243, 51, 36, 62, 93, 32,109, 52, 0, -226, 58,145,120,120,227, 4, 46, 29, 89,130,140,155,167, 65,121, 14, 94,117, 3,108, 30,108,252, 66, 42, 86, 42,149,137, 42,149, - 10, 73, 73, 73, 72, 79, 79,135,131,195, 51, 61, 75, 56,122,244, 40, 0,192,203,203,203,174,147,144,182,110,143,186,201, 89,120, - 24,226, 3, 0,168,155,156, 5, 0,152, 55,101, 10,164, 82, 41, 36, 18, 73,197,182, 28,199,217,212, 35,229, 89,236,148, 82, 60, -121,242,196,226, 28, 98,141,189,156,183, 79,143, 30, 91,191,161,127, 19,229,133,253,191,224,206,157, 76, 60,122,100,249,254, 56, - 59, 59,151,240, 60, 95, 49,199,162,111, 88, 40, 92,155,183, 0, 91,199,235,184, 94,175,223,217,184,113,227, 93, 53,213, 4,240, - 75,255,254,253,255,211,175, 95, 63,121,219,182,109,101,235,215,175, 47,172,106,174,158, 67,179, 90,124,124,124, 94,125,253,245, -215,247,143, 24, 49, 2,125, 94,235,142,247, 59, 4,210,140,156, 34, 45,128, 88, 74,169,205,139,154,153,153,153,233,235,235,251, -202, 91,111,189,181, 37, 40, 40, 40,144, 82,138,128,128, 0,244,233,211, 7, 59,119,238, 68, 74, 74, 10, 74, 74, 74, 12,167, 78, -157, 90,170, 82,169, 54,216,210, 43, 63, 63, 69,237,218,181, 15, 30, 59,118,204, 67,161, 80,224,240,225,195,208,104, 52,207, 68, -174,230,205,155,231,112,247,238,221, 21,135, 14, 29,106, 0,128,161,148, 10,230, 74, 64, 64, 64,224,239,135, 85, 47, 2,148, 25, - 39, 74,105,239,202,134,169,170,209, 50, 63, 55,111, 23, 19, 19, 83,177,108,222,103,254,252,249,243, 42, 45,219,142, 16, 61, 7, -102,131,213,153, 16, 66, 1,116,166,148,158,172,188, 65, 69,245, 1,222, 4, 67,102, 44, 12,153,177, 80,132,124,129,189,223, 14, -126, 74,200,158,200,144, 37, 74, 75, 75, 33,150,186, 27, 54,111,254, 88, 2, 0, 28,117, 52, 60,115,108, 27,212,164, 88,170,157, -237,172, 48, 88, 90,173,246,153, 29,252,252,252, 22, 71,182,143,232,208,164, 69, 27,197,133,131,187,112,235,230,125,228,229, 21, - 1, 20,165,150,196, 60, 60, 60, 30, 31,235,223,211, 89,202,105,225,213,162, 5,234,125,185, 20, 90,173,118,151,193, 96,216,238, -239,239,191,227,121, 52, 99, 99, 99, 39, 69, 70, 70,126, 5, 32,237,197, 0, 0, 32, 0, 73, 68, 65, 84,185, 99,199, 14,149,191, -191,191, 76, 36, 18, 25, 42,155,171,231,209,172,138, 82,169,108, 47, 18,137, 14, 51, 12, 35,127,237,181,215, 48,126,252,120, 44, - 91,182,204,196,139, 29,122,175, 58,152,208,255,137,206,240,133, 61,230,202, 76,102,102,230,101, 0,205, 27, 52,104, 32, 51,153, - 76, 93,222,120,227,141,223,123,245,234,133,115,231,206,225,200,145, 35, 77, 13, 6, 67, 86,249,113,103, 1,240, 98, 24,102,129, -149,153,220, 25,137, 68,178,237,200,145, 35, 65, 74,165, 18,177,177,177,208,104, 52, 21,145,171,161, 67,135, 62, 21,185, 58,123, -246,236, 99, 8,230, 74, 64, 64, 64,224,239, 76,181, 94,196,140,217, 52, 85, 53, 89,246, 80,201,124,105,163,163,163,167, 18, 66, -246,149, 71,184,180, 0, 84,127,190,249, 79, 35, 42,111,240, 73,148, 79,238,142, 42,249, 73,150,224, 74,238, 60,243, 26,207, 63, -255,247, 86,211,238,135,174,201,229,114,172, 90,181, 10, 10,197, 31,137,244,246, 26, 39,245,239,187,240,112,204,160,138,200,149, - 57,146,133, 87,163,158,217,214,206, 46, 66,179,193, 58, 20, 18, 18,242,212, 14,126,126,126, 99, 91,182,108,249,193,218, 77, 91, -156,231,127,249,121, 81,113,234, 53, 81,169, 70,231,168, 51,154, 12,233,143,242, 44,150, 71, 80, 42,149,249,181, 61, 92, 26, 58, -251,188, 4,215,192, 22,208,233,116,123,202,187, 5,119, 62,175, 38, 0,156, 59,119,174,180, 91,183,110, 27,231,205,155,215,150, -231,249, 77,127,182,157, 85,218,220,222,221,221,253,208,138, 21, 43,228,114,185, 28, 58,157, 14, 11, 22, 44,192,209,163, 71,123, -103,101,101, 29, 2,112,200,230,133,172, 6,131,193,240, 97,247,238,221,191,153, 52,105, 18,140, 70, 35, 6, 12, 24,128,123,247, -238, 29,190,117,235,214, 50, 63, 63,191, 73,163, 71,143, 86,214,169, 83, 7,163, 70,141,146, 0, 24, 90,141,204,215, 91,183,110, -237, 29, 18, 18,130,147, 39, 79,162,168,168, 8, 62, 62, 62, 24, 59,118,172, 52, 38, 38,102,115, 73, 73, 73,255,152,152, 24, 33, -114, 37, 32, 32, 32,240, 15,193, 94, 47, 82, 57, 18, 85, 67,125,243,126,226,152,152,152,107, 49, 49, 49, 79, 69,184, 94, 52,230, - 28, 44,179,147,233,108,161, 65,207,236,196,107,159,205,225,225, 57,251,191,187,236, 53, 78,246,116,231, 1,127,228, 96, 85,197, - 92,191,170,242,114, 13, 12,214, 33, 66,200,193, 29, 59,118, 84,116, 17,250,249,249,245,245,246,246,254,122,235,214,173,114,149, - 74, 5,191,102,193,181,246,239,252, 89,231,229, 40, 43,205,200,207,143, 74,206,124,178,195,146, 94,253,250,245, 31,187,214,115, -130, 75, 64, 48,136,167,242,104,105,105,233,142,172,172,172,157, 77,154, 52,225,159, 87,211,204,209,163, 71, 39, 86,125,237,207, -106, 42,149,202,246,117,234,212, 57,180, 98,197, 10,133, 74,165,130, 68, 34,129,147,147, 19,142, 29, 59,134,114,115,245,220,248, -249,249,205, 24, 55,110,220,244,161, 67,135,162,160,160, 0, 71,142, 28, 65,151, 46, 93,176, 98,197,138,250,199,142, 29,251,166, - 93,187,118, 96, 89, 22,177,177,177, 48, 26,141, 55, 45,105, 16, 66,250,141, 24, 49, 98,210,219,111,191,141,139, 23, 47, 34, 43, - 43, 11,163, 70,141,210,143, 29, 59,182, 34,231,234,187,239,190,123,251,238,221,187, 66,228, 74, 64, 64, 64,224, 31,130, 53, 47, - 82,133,253, 0, 94, 55, 47, 84,142,102, 85, 54, 95,230, 8, 85,229,229,170,219,151,175,183,171, 87,167,166,152, 35, 88,213, 71, -173, 40, 7,214,173, 37,184,252,203, 21, 47,241,218,172,167, 54,145,200,156,192,217, 97, 92,190,253,140, 24,151,127, 2,209,201, -181, 12, 24,137,187,193, 49,248,208,181,234,182,117,114,114,122, 42, 49,220, 10,156,164,215,219,108,227, 87,251,226,118, 11,111, - 80,163,161, 34,146,133,169, 21,215, 21,132, 16, 72, 36, 18,232,245,122,160,108,212,128, 53, 98, 9, 33,135, 89,150, 61, 72, 41, -165,157, 59,119, 94,103, 52, 26,251, 58, 57, 57,213, 30, 62,124,184, 33, 47, 47, 15,187,119,239,198,198,141, 27,181, 79, 12,162, -132,130,199,198,193,183, 85, 79, 44,215, 97, 0,208,172, 89,179,124,239, 15, 63,132, 94,175,255,173,180,180,116,123, 73,113,241, -206,153, 51,103,174,154, 54,109,218,115,107, 90,226,207,182, 19, 40, 51, 87,158,158,158, 21,230, 74, 38,147,193,201,201, 9,153, -153,153, 16,137, 68,127,170, 72,103,131, 6, 13,100, 17, 17, 17,147,163,162,162,144,154,154,138,232,232,232, 44,149, 74,181,107, -239,222,189,163, 38, 76,152, 32,234,212,169, 19,114,114,114,176,122,245,106,227,197,139, 23,231,101,103,103, 47,180,164, 35, 18, -137, 62,156, 61,123, 54, 85,169, 84,228,246,237,219, 79, 69,174,138,139,139,251,199,196,196, 56,220,185,115, 71,136, 92, 9, 8, - 8, 8,252,131,176,145,127,149, 87,110,158, 30, 89, 88,102, 43, 25,171,170,203, 57, 85,150, 1, 64, 95,101,125,242,139, 57,131, -167,177, 58, 66,207,200, 49, 69, 91, 87,124, 84,235,205,119, 70,195,193,187, 35,244,119,127, 1,175,125, 84, 97,176, 36, 14,206, -112,169, 83, 15,197, 79,180, 56,115,253, 14,140, 28, 83,100, 85,207, 4, 81,191,215,254,168,131,229,234,234,138,162,162,162,167, - 34, 90, 10,133, 2, 74,165, 18,197,197,197,216,177, 99, 7,108,213, 44,162,148,206,142,138,138,250,106,244,232,209, 76,227,129, -195,240,228,252,169,167,214, 19, 66,224,224,224, 0,185, 92,142,204,204, 76,220,184,113,131,167,148,206,182,122, 85,128,195, 12, -195, 28, 92,185,114,229,237,206,157, 59, 15,173, 93,187,246,192, 97,195,134,201, 47, 94,188,136,217,179,103,139, 98, 99, 99, 13, -241,241,241, 38,142,227, 38,102,102,102,174,182,161,133, 86,173, 90, 61,214,233,116,251,117, 58,221, 78, 0, 59, 39, 77,154,244, -254,159,213,172,202,139,104,167, 82,169,108,167, 84, 42, 15, 45, 91,182, 76,145,157,157, 13,153, 76, 6,103,103,103, 60,120,240, - 0,179,103,207, 86,155, 76,166,215,106,218,174, 42,200, 28, 29, 29,101, 70,163, 17,155, 54,109, 66,102,102,102,100, 86, 86,214, - 3,111,111,239,213, 35, 71,142,252, 54, 48, 48, 48,224,198,141, 27, 55,159, 60,121, 50, 38, 59, 59, 59,181, 58, 17, 87, 87,215, - 72, 15, 15, 15,114,238,220, 57,140, 26, 53, 74, 63,110,220,184,138,156, 43, 33,114, 37, 32, 32, 32,240,175,228,162,141,229,191, - 29, 86, 39,123,206,213,104, 61, 87,111,222,245,237,128,119,187,149, 30, 58,118, 12,168, 31, 5,177,239,171, 0,235, 0,101,211, -246,240,104,208, 22,201,183,178,177,251,212,181,210,180, 76,253,183,185, 26,237, 83,243,237, 17, 66,130,173,233, 23, 21, 21,161, - 65,131, 6,208,166,244, 10,122,116, 42, 32,180,111,224,242,208, 8,207,197, 65,199,142, 29,195,226,197,139,159,164,165,165, 45, -105,218,180,233, 36,107,154, 73, 73, 73, 51, 31, 62,124,216,106,202,148, 41, 7,191,200, 40, 70,193,172,149, 40,254, 36, 10,217, -221, 90, 64,161, 80,160, 78,157, 58, 80,171,213,136,139,139, 67,114,114,242,193,210,210,210, 86, 73, 73, 73, 51,173,105,150, 79, -129,115, 59, 34, 34,194,185,168,168,104, 89, 84, 84,148, 92,173, 86, 35, 47, 47, 15,143, 31, 63,198,133, 11, 23, 98,245,122,125, -144, 53,211, 82, 89, 51, 32, 32, 32, 81,175,215,239,204,203,203,219, 57,104,208, 32,233,139,208,172,204,139,106,167,163,163,227, -103,187,119,239, 86, 48, 12, 3,153, 76,134, 90,181,106,225,225,195,135,152, 53,107,150, 90,171,213,190,166, 82,169,236, 42,208, -105,237,190,243, 60, 15,147,201, 4, 74, 41,164, 82,105, 49, 0,100,103,103,167,222,190,125,187,219,175,191,254,234,115,235,214, -173,206,150,204, 85,101,205,188,188,188, 19,247,238,221,131,163,163, 35,198,141, 27, 39,157, 55,111,222, 15,203,150, 45, 43,141, -137,137,145,116,239,222,125,197,161, 67,135, 94,210,106,181, 29,109,153, 43, 91,239,207,231, 65,208, 20, 52, 5, 77, 65, 83,208, - 20, 0,108, 68,176, 82, 82,168, 1,192,199,205,155,187,204, 92,176,106,235,170, 31,182,239,236, 55,252,189,183, 68, 97, 45,186, -224,110,246, 94,196, 37, 28, 55, 21,148,208,221, 37,122,118, 84, 74, 74,177,205,177,255, 98, 17, 76,139,215,175, 10, 5, 0,137, - 24,166,249,179,122,159, 8, 10, 10,234, 48,188,107,142,228,173,119,202,242,174,119,237,248, 88,114,226,196,137,237, 50,153,108, -205,157, 59,119, 44, 22,248,172,202,165, 75,151,174, 0,232,217,186,117,235,142,147, 38, 77,250,186, 87, 67,191, 54,253, 34, 59, - 67, 44, 22, 35, 62, 62, 30,249,249,249, 23, 25,134,153,156,148,148, 20,103,143,222,247,223,127,127, 27, 0, 52, 26,205,236,166, - 77,155, 74,175, 95,191,142,244,244,116,164,165,165,129,227,184, 91, 25, 25, 25, 53, 74,136, 51,153, 76,199,138,138,138,242,219, -182,109,107,212,104, 52,243, 95,132,102,101, 94, 84, 59,181, 90,237,188, 57,115,230,244,152, 57,115,166,204,217,217, 25,151, 46, - 93,194,204,153, 51,213,165,165,165,118,155, 43, 91, 80, 74, 97, 52, 26,107, 52,242,211, 2,147, 67, 66, 66, 94,154, 51,103, 78, -211,242, 92, 46, 33,114, 37, 32, 32, 32, 32,240,183,194,174,201,158,203,205,211,187,161,205, 93,252,231,173,220,178, 78, 46,229, - 59,104,245,204,105,173,142, 25,158,148, 82,108,113, 24,189, 37,198, 47,164,226,202,203,227, 22, 0,205,155, 55,119, 76, 76,197, -147,183,202, 95, 75, 76, 5, 84, 42,213, 2,251, 79,225, 15,226,227,227,227, 0, 68,132,134,134,246,251,157,144,169,192, 29, 80, - 74,231, 37, 37, 37,237,174,137, 78,155, 54,109, 26,168,213,234, 31, 12, 6, 67, 43,158,231,165, 39, 79,158, 68,105,105, 41,174, - 95,191,174,229,121,222,106,130,184, 37,234,215,175,255,232,221,119,223,125,161,154,127, 69, 59, 51, 50, 50,226,149, 74,101,119, - 66,200,145,201,147, 39,203,102,205,154,245, 66,205,149,155,155,155, 38, 59, 59,251,113,105,105,169,251,163, 71,143,244,110,110, -110,207, 85,123,132, 82,122,139, 16,210,226,211, 79, 63,157, 53,105,210,164,207,190,254,250,107,137,144,115, 37, 32, 32, 32, 32, -240,119,194, 46,131,101,166,220, 76,117,238,220,217,195,241,244,217,220,106, 43,119,215,132,148,148, 20,245,140,143,136,105,202, -204,143, 69, 0, 32,149,252,249, 10,219,229,134,170, 70,166,170, 50, 37, 37, 37,243,242,243,243,219, 22, 23, 23,155,238,222,189, -171, 37,132,152, 8, 33, 90,158,231,103,241, 60, 95,227,252,168,127,146,166, 74,165, 58,227,237,237,253,242,153, 51,103, 38,168, -213,234, 21, 42,149,234,236,243,232, 88, 34, 49, 49,209,232,227,227, 51,232,141, 55,222, 24,198,243,252,234,204,204, 76,227,243, -106, 81, 74,245, 0, 38, 19, 66,118, 93,185,114,229,151,179,103,207,102, 65, 48, 87, 2, 2, 2, 2, 2,127, 19,106,100,176,204, -156, 56,241, 98,204,149,153, 25,107,158,142,108,253,183,185,113,227,198,123, 0,222,251, 95,212, 4,128,236,236,236,132,191, 66, - 23, 0,178,178,178, 14, 3, 56,252,162,244, 40,165,241,132,144,134, 40, 27, 37, 34,152, 43, 1, 1, 1, 1,129,191, 5,207,101, -176, 4, 4,254, 78,208,178,132, 46,193, 92, 9, 8, 8, 8, 8,252,109, 32, 0, 44,142, 4,168,201, 76,217,207, 51,154,192,150, -190,160, 41,104, 10,154,130,166,160, 41,104, 10,154,255, 62, 77, 91,218, 53,241, 31,127,103,200,159, 28,205,101, 93,156,144,224, - 23,125,161, 4, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,247,105,254,219,176, 90, 7, 75, 64, 64, 64, 64, 64, 64, 64, 64, -160,230,212, 56, 7,171, 77,155, 54, 77, 0,224,226,197,139,183, 94,124,115,202, 32,132,140,245,241,241, 25,222,178,101,203, 64, -137, 68,194, 20, 21, 21,205, 60,113,226,196, 76, 75,219,134,132,132, 36,244,232,209,195,255,248,241,227,250,242,125, 81,249,145, -227,184,140,132,132,132,240,191,170,173, 2,214,241,241,241, 57,228,224,224, 80,191,172,192, 40,133,137,231,192,241, 20, 28,199, -195,200, 81, 24,244,165,247,117,234,162, 87,159, 75,187,213, 91,245, 56,142,143,161,160,171, 8, 37,163, 40,161,171, 8, 37, 35, - 41, 67, 86, 17,158,126, 4,145,105, 17, 76,162, 73, 34, 94,252,133, 42,101,251,195, 23,125,110,255, 13,102,206,156,249,167,126, - 20, 77,159, 62,221,226,252, 83,161,161,161,251, 28, 28, 28, 26, 87,183,159, 70,163,201, 74, 78, 78,238,242,103,142,253,119,199, -219,219,187, 35,195, 48,203, 1, 4, 85, 89,149, 10,224, 99,149, 74,117,244,191,208, 44,171,120,122,122,198,177, 44,219, 84,173, -209,168, 75,138,139,253,157,157,157,111,203, 21,142,142,156,137,187,153,151,151,211,241,191,221, 62, 1,129,255,101,108, 26,172, -176,176,176,102, 0, 58, 17, 66, 58, 81, 74, 59, 6, 4, 4,120,105, 52, 26,132,133,133, 61, 34,132,196,149,207,126,125, 50, 49, - 49, 49,237, 69, 52,136,101,217,133,203,150, 45,155, 56,110,220,184, 10,147,116,245,106,245, 81, 72,150,101,253,230,207,159, 95, -235,193,131, 7,144, 72, 36,144, 74,165, 21,127, 44,203,162,109,219,182, 53, 58,190,155,155,155,179,167,167,231, 76, 66, 72,127, -134, 97, 88, 91,219,243, 60,207, 81, 74,183,231,228,228, 76,207,207,207, 47,169,201,177, 90,135,183, 52, 2,164,154, 99, 80, 46, - 62,225,178,213,209,149, 47,189,244, 82,130, 72, 36,242, 3, 44, 79,108,109,233, 57,199,113, 25,215,174, 93,179,203,112,186,185, -185, 57, 59, 40, 20,159, 17, 70,212, 29,148, 15, 40, 19, 99, 82, 41,111, 58, 82,170,209, 44,180,231,124,101, 50, 89,253,196,164, -164,166, 41, 55,238,192,191, 81, 61,232, 13, 38,232,244, 70,236, 61, 18,143,144,192,134,120,179,215, 43,246, 52,197, 34, 38,158, -204,248, 98,236,224,174,243,150,255,212,122,234,184,129, 78,243,150,255, 20, 62,117,220, 64,231,121, 43,126, 10,255, 98,252,251, -206,115,150,111, 13,255, 98,252,251,181,230, 46,223,170, 7,240,225,243, 28,227,131, 22,245,213, 12,103,146, 89, 90,199,179, 34, -221,250, 43,247, 29,159,251, 4,254, 4,243,230,205,107,102, 48, 24,174, 15, 29, 16, 62, 59,160,137,103,142,165,109,138,138,114, - 60,211, 83, 19,190,132, 88, 18, 24,216,102,170,213,255, 79,137, 68,210, 40, 46, 46,174,169,185,210, 62,199,113,224, 56, 14, 38, -147, 9,122,189, 30,111,191,253,246, 11, 25, 16, 19, 30, 30, 62,140, 82, 58, 23,101,115,170,207, 73, 72, 72, 88,241,188, 90,132, - 16, 39,145, 72,244,169, 84, 42,237,100, 50,153, 2, 1, 64, 44, 22, 95,215,233,116, 39, 77, 38,211, 55,148,210, 39, 53,209, 99, - 24,102,233,197,139, 23,155, 59, 59, 59,195, 96, 48, 84, 76, 12,207,178,108, 64, 68, 68,196, 74, 0, 77,237,213,242,243,243, 75, - 32,132,248,213,228,248,148,210,140,140,140,140, 26,253, 24,100, 89,182,233,189, 7, 42,207, 6,245,148, 0, 0,133,194,209, 49, -254,234, 93,207,176,160, 6, 53,145, 17, 16, 16,248, 11,168,246, 67, 51, 44, 44,236,119, 0,157, 2, 2, 2,228,175,188,242, 10, - 66, 67, 67, 81,191,126,125, 56, 56, 56, 0, 0,242,243,243,189, 82, 82, 82,222,189,116,233,210,187,231,206,157, 67, 88, 88,152, - 22,192,233,196,196, 68,139,209,136,238,111,116, 26,231,232, 44, 95, 6, 0,143, 50,115,179, 30,166,103, 47,207,202,202, 90, 72, - 41,173,248, 69, 77, 8,241, 31, 58,116,232,132,241,227,199, 99,223,190,125,248,233,167,159,160,211,233, 80, 84, 84,132, 19, 39, - 78, 88,108, 39,199,113, 25, 67,134, 12, 17,165,165,165,153,202, 53, 80,249,145,227,184, 26, 77,152,236,233,233, 57,243,131, 15, - 62,248, 36, 60, 60,188,226,203, 69,175,215,195, 96, 48, 64,175,215, 35, 39, 39, 7,227,199,143, 7, 80, 86,149,156,231,121, 28, - 57,114,100, 92,116,116, 52, 0,124,106, 73,243,149, 78,141, 19, 68,132,248,153, 79,148,231,249,140,216,184,219,225, 0, 97,227, - 19,146,159,114, 70,230,156,184, 54,173, 91,217, 52,119, 34,145,200, 47, 41, 41,201, 83, 34,145,216,117,110, 60,207, 35, 52, 52, -212,174,109,125,125,125,187, 56, 58,185,252,212,239,189, 15,106,183, 10, 13, 21,251, 41,125, 96, 52,153,112,231,238,131, 54,201, -151, 18, 91, 29,254,237,231,225,190,190,190, 3, 51, 51, 51,143, 91,211, 49,114, 60,146,175,221, 66,236,233, 36,188, 33,113,128, -166, 84,143, 18,141, 30, 63,252,122, 6, 25, 57, 86,167,174,180, 74, 68, 68,132,175,163,168, 78,196,248, 15,251, 58, 46,250,110, -179,227,248, 15,251, 98,241,170, 31, 42, 30,199,125,208, 7, 11,191,219,236, 52,254,131, 62, 88,190,122, 99,100, 68, 68,132,239, -133, 11, 23, 50,171,211,171,238, 30, 49,156, 73,182, 46, 37,147, 5,128,220,213,171, 97,120,244, 8,202,233,211, 1, 0, 35,130, -252, 44, 26,175,234, 8, 14, 14,174, 48,196,214, 48,153, 76, 25, 87,175, 94,173,246,139,214,108,174, 76, 38, 19, 21,137, 68, 95, -158, 58, 48,115, 71,187, 54,205,158,186,152,105, 55,211,106,205,248,106,250, 59,191, 28, 44,161,239,190,230,124,253,250,197,121, - 86, 77, 22,207,243,140, 78,167,195,205,155, 55, 45, 86,217,103, 24,198,214, 4,233, 22,233,220,185,179, 76,173, 86,111,117,114, -114,106,169, 86,171,135, 81, 74,191, 58,113,226,132, 23,195, 48,232,222,189,251, 87,225,225,225,119,101, 50,217,119,165,165,165, -151,156,156,156, 6,158, 56,113, 66,103,143, 46, 33,164,163,179,179,243, 15,123,246,236,169, 29, 26, 26,202,228,229,229,161, 97, -195,134,200,207,207,111, 19, 23, 23, 23,246,193, 7, 31,124, 64, 8, 25, 66, 41,181,107,246,134,114, 94,114,116,116,164, 81, 81, - 81,132,227,254, 56,221,245,235,215, 35,172,241,163,198,163,222,145,107, 74, 13,180,232,212,101,135,145,148,161,167,239,221, 43, -172,246, 13, 76, 8,241,155,185,238, 99, 79,169, 84, 10,163,209, 88,241, 71,121, 0, 20,160, 60, 64,121, 10, 74, 1, 80, 2,158, -227,177,120,202,186, 26, 52,245,105, 20,142,142, 10,111,111,159, 71,114,133, 66,241,215,101,213, 10, 8, 8,212, 4,107,191, 74, -123,158, 56,113, 2, 38,147, 9,206,206,206, 96,217,167,191,239,221,220,220,208,177, 99, 71, 68, 68, 68,160,123,247,238,184,113, -227,134,252,235,175,191,174, 54, 28, 49,236,179,183, 81,191,169, 47, 0,128, 82,234,115,226,183, 11, 49,223,205,216, 82, 7, 64, -229,185, 6,135,141, 24, 49,130, 60,126,252, 24,253,251,247,143,211,233,116,125, 40,165, 86,167,203, 73, 78, 78,126,161,221,127, -132,144,254, 45, 90,180,192,119,223,125, 7,173, 86,251,204,122, 23, 23, 23, 92,187,118,173, 98,153,101, 89,132,135,135,179,132, -144,254,168,198, 96, 49,132,248, 29, 56,113,171, 98,158,198, 1,111,182,146,244,232,212,248,145,136,145, 82, 0,228,139, 47,190, - 0, 80,102,174, 40,165,152, 53,107,150,221,237,149, 72, 36, 72, 77, 77, 5,203,178,184,221,161, 25, 0, 32, 56,233, 33, 88,150, - 69,114,203,178, 95,181,145, 55, 11, 32, 18,137,224,228,228,100,151,166,175,175,111,103, 47, 31,191, 61, 83,166,199, 56,151, 26, - 41,246, 31,187,136, 7,170, 88, 80, 74,225,227,233,134,118, 97,161,226,192, 22, 45, 61, 55,172, 92,184,199,215,215,183, 79,102, -102,166,101,247, 11,192,100,226, 16,216,172, 17, 54,237,137,195,220,239,118,224,113,113, 41, 74, 52,122, 0, 64,247,200,230, 88, -191,216,238, 83,125, 10,150,101, 23, 6, 52,106, 84,119,211, 47,135,208,174,109, 27,108,250,229, 32, 34,219,182,193,166,237,101, -203,155,183, 31,194,203,145, 17,216,188,253, 16,130, 3,155,214,123,124,175,104, 33,172,212,246,122,230, 30,245, 41,187, 71, 13, - 89, 9, 1,202,238,205,189, 81,163, 0,160,194, 96,213, 20,179, 33,182,181,157, 53, 19, 92,201, 92, 33, 39, 39,135, 20, 22, 22, - 82, 87, 87,215,119, 42,155, 44,179,185,250,249, 64, 49,180,105,203,201,150, 45, 39,249, 65,131, 58, 93,191,126,113, 94, 32, 48, -221,226, 36,218, 6,131,225,110,143, 30, 61, 40, 0,232,245,122, 95,169, 84,250,148,107,231,121, 94,217,190,125,251,103, 12,154, -173,174, 67,181, 90,189,117,251,246,237,253,188,188,188,208,167, 79,159,195,205,155, 55,151, 42, 20, 10, 28, 56,112, 0,126,126, -126,117, 92, 92, 92,126,143,137,137,193,146, 37, 75,234, 29, 62,124,248, 39, 0,253,108, 93, 31, 66, 72,247, 46, 93,186,108,219, -183,111,159,131, 68, 34,129, 86,171,197,181,107,215, 80,171, 86, 45, 72,165, 82,244,233,211,135,109,215,174,157,123,151, 46, 93, -118, 18, 66, 6, 82, 74,143,216,210, 52,163,213,106,233,148, 41, 83,160, 80, 40,224,232,232, 88,241, 39,151,114,100,213,140, 70, -242, 79,230,103,203,191,248,124,208,252,181, 27,126, 59, 94,175, 94,173,175, 30, 60, 40, 42,172, 78,203,143,109,129,232, 73,209, - 0, 0,134, 97, 32,149, 74,159,138,178,155,159, 75, 36, 18,180,106,213,202,102,219, 2, 3, 3, 87,179, 44,235, 81,249, 53,134, - 97,216, 47,167, 77, 53, 93,185,118,195,209,104,130, 99,169,222,136, 57,179,190, 50,177, 12,203, 6, 7, 7,239,166,148,230, 94, -187,118,109,164,189,231, 47, 32, 32,240,226,176, 26,246,119,114,114, 66,124,124, 60, 8, 33,112,118,118,134,139,139, 11,106,213, -170,133,226,226, 98,164,164,164, 32, 53, 53, 21,119,239,222, 5,195, 48,240,247,247, 7,202,202, 62, 84, 80,121,132,193,134,133, - 59,225,232, 44, 7, 33, 4,145,175,132,161, 77,183,112, 92, 62,127,243, 99,165, 82,185, 78,165, 82,221, 36,132,136,130,131,131, - 63,104,219,182, 45,150, 44, 89, 2,157, 78,247,141, 37,115,101,105,212,194,200,126,226, 83, 18, 17, 83,215, 96,226, 31,174,222, -109,124,185, 85,171, 86, 9,161,161,161, 13,175, 92,185, 98, 4,202,162, 89, 85,187,201, 42,231,101, 85,213, 84,171,213,224,121, -139,169, 42,207, 64, 41, 69,113,241,179, 30,176,178,102,213,136,192,156,152, 37,174, 37, 69, 57,152,189,224, 71, 24,141, 70, 76, -156, 56, 17, 60,207,131,231,121,112, 28,135,130,130, 2,192,194,207,208,170,237, 52,159, 19,203,178, 79, 25, 96, 91,203,214, 52, - 61, 60, 60, 28,101, 14,138,159, 38,125, 49,219,249,114, 90, 6,246, 29,187, 8, 74, 41,246,174,253, 10, 0,208,103,196, 44,100, -102,229,162, 93, 88, 0,134,126,244,169,243,210,152, 47,126,242,240,240,104,156,155,251, 71,241,217,202,154, 70, 19,143, 29, 7, -207, 33,235,241, 19, 12,233,215, 21, 58,189, 17, 57,143,178,176,241,187, 69, 24,253,159, 93,168,237, 36,247,246,247,247, 79,171, -124,141,156,157,157,217,210,210,210,184,180,180,180, 15, 45,105, 2,128,209,104,236, 57,229,147,225, 88,186,110, 7,130,252,189, -176, 47,246, 60, 90, 7,215,199,239,199, 46, 34,178, 69, 67, 28, 60,153,128,118, 33,254, 56,126,238, 42, 62, 30, 57, 8,159,125, - 28,215,211,218,185, 63,115,143,230, 45,113, 45, 41,206,193,254,121,155,145,179, 98, 5,238,143, 27,135,214,229,239,137,120,134, -129,196,215, 23,112,177,125, 61, 45,145,154,154, 10,157,238,217, 64,141, 76, 38, 67, 64, 64,128, 85, 77,115,228,234,209,163, 71, -228,209,163, 71,112,116,116, 36,215,175, 93,229, 2,131,130,223,225,242,127, 89, 7, 0,101,145,171, 98,104,110,124, 11,237,205, -229,144, 20, 94, 97,214,206,250, 72, 63,226,171, 53,215, 81,254, 63, 90,181,157,201,201,201, 21,215,167,109,219,182,169,167, 79, -159,126,169, 82, 20, 24, 38,147, 73, 98, 50,153,154,154,187, 13, 77, 38, 19,116, 58, 29, 6, 14, 28, 88,241,198,178,116,238,114, -185,188,165,151,151, 23, 46, 92,184,128, 25, 51,102, 72,131,130,130,112,243,230, 77, 48, 12,131, 97,195,134,161,121,243,230,200, -205,205, 69,235,214,173,113,234,212,169,103, 92,134,133,247,188,179,163,163,227,134,223,126,251,205,129, 97, 24,148,148,148,128, -231,121,180,111,223, 30,132, 16, 92,185,114, 5,211,166, 77,195,174, 93,187,176,103,207, 30,121, 88, 88,216, 6, 66, 72, 32,165, -180,164, 58,205,202,135,211,233,116,212,193,193, 1, 14, 14, 14,144,201,100,144,201,100,144, 72, 36,208,234, 89,124, 52,253,174, - 78, 44,115,226, 91,182,240,111, 60,122, 68, 63,102,246,252,141,199, 0,236,173, 78, 83, 69,175,193, 45,136,224,240,198, 4,244, - 25,213, 17, 18,177, 20, 18,177, 4, 82,137, 20,226,242,231, 18,177, 4, 82,177, 12,108,157,210,103, 27, 83, 69, 83, 44, 22,215, - 73, 74, 74,114,173,252,191,108, 50,153,174,143, 27, 55,206,191,223,155,189,189,126,217,181,143, 29, 60,160, 15,231,237,229,153, -247,240,225,253, 91, 0, 92,195,194,194,168, 53,205, 23,129,160, 41,104,254, 63,209, 26, 64,229, 31, 24,122, 0,210,242,231,121, - 40,251,108,115,175,242, 58, 0,228,150, 63,122, 84,179,156, 7, 32, 5, 64, 96,249,107, 28,128,139, 0,108,206,175,108, 11, 17, - 0, 16, 66, 42,254, 9, 41,165,164,234, 70,102, 19, 81, 92, 92,140,135, 15, 31, 98,213,170, 85, 16,139,197, 16,137, 68, 16,137, - 68, 96, 24,166, 34, 95,161, 58,142,252,118,114, 57,128,229, 97, 97, 97,226,228,179, 63,254, 62,123,115,116,183,200, 30, 17,236, -249,216,196,119, 0,204, 1,208, 51, 42, 42,170, 14, 0,108,222,188, 57, 15,192, 1,123, 79, 66, 34, 98,234,126,187,236,199,122, -227, 63, 30, 12,160, 44, 47,107,221,186,117,181, 51, 50, 50,158,250,149, 40,145, 72,108,230,101, 81, 74,183,199,199,199,127,210, -163, 71, 15, 24,141,198,138,174, 65,243,159, 70,163,129,171,171,107,197,151, 76,105,105, 41,214,175, 95,111,162,148,110,183,162, -137,180,107, 71,113,243,218,113,112, 28,255,148,153, 42, 45, 45,197,140, 25, 51, 42,162, 87, 0, 48,170, 60, 82, 98, 47,214, 34, - 87, 44,203,226,180,127,153, 19,232,149, 75,159,201,213,170,138, 88,234, 48,177,215, 91,131,220, 76,148,173, 48, 87,101,231, 80, -102, 46,164, 98, 17,228, 50, 49,110,222,126,136,134,190, 97,232,246, 90,223,218, 71,126,223, 57, 17,128,197, 65, 8, 70,142, 71, -175,206, 97,248,110,219,113, 20, 63, 41, 69,113, 97, 62,242, 30,166,226,250,229,139,144, 74,165, 56,127,254,188,115,173, 90,174, -206,141, 26, 53, 4,199,241, 56,125, 62, 1, 10,133, 28,219,126,218,210,176,126,195, 70,184,127,247,142,197,220, 41,158,231, 69, -237,194, 3, 81,156,247, 0, 34,145, 8,237, 66, 27, 67, 36, 18,161,125, 88, 83,176, 44,139, 14,173, 95, 2,203,178,232, 20,209, - 28,141, 27, 55, 6,207,243, 86,127, 76, 80, 74,145,118,245, 40,210, 82,142,131,242, 60, 56,190,172,251,151, 2, 48,100,101, 61, -123, 94,217,217,160, 46, 54,131, 81, 22,143, 51,121,242,228, 66,149, 74,101,168,186, 78,169, 84, 74,118,237,218,229,106,173,116, -138, 68, 34, 9, 20,137, 68,215,243,243,243,121,133, 66,193,112,156,137, 15, 12, 10,102, 79, 29,152, 89, 49,247,228,140, 89, 51, -119,188,251,154,203, 59, 63,110,252,141, 74, 60,218, 19,194,202, 76,195,191, 90, 35,133, 88, 18,104, 79, 27,205,221,133, 55,110, -220,176, 57, 41,183,165,207,139,202,168,213,234,161,125,250,244, 57, 60,114,228, 72, 7, 0,200,203,203,131, 72, 36,170, 48,253, -233,233,233, 96, 24, 6,107,215,174,133, 78,167,179,249,198, 23,137, 68,159,236,220,185,179,150, 84, 42,173, 48, 87,148, 82,176, - 44,139,212,212, 84, 44, 94,188, 24, 81, 81, 81,120,240,224, 1,124,124,124, 48,113,226, 68,167,249,243,231,127, 2,192,158,176, -240,101,189, 94, 31, 46,151,203, 33,147,201, 96, 54, 90, 0,144,152,238,117,245,206,157, 59, 45,234,215,175,227,221,176,249,149, - 95, 59,119,104, 25,226,238,238, 26,137,114,131,101, 9,167, 39,245, 80,146, 38, 66,167, 78,157,112,242,100, 28,122,247,238, 13, - 78, 34, 1, 47,149,130,151, 74, 65, 37, 18, 64, 42, 5,145, 74, 65, 21, 10, 59,154, 7,202,178, 44,178,179,179,159,122,109,196, -136, 17,247, 7, 13, 26,228, 9, 80,168, 84,153,244,211, 79,198,103,230,229,229, 81, 47, 47, 47,123, 52, 5, 4,254, 54,216,240, - 34, 30,132,144,125,149,214,247, 54, 47, 71, 71, 71, 79,141,137,137,185, 70, 8,217, 87,249,117,243,118,229,218,251, 44, 45,151, -239,235, 62,101,202,148,224,249,243,231,207,139,140,140,220,118,246,236,217, 59,120, 81, 6,139, 82, 74, 8, 33,212,214,135,165, - 25, 75, 95,210,182, 12,150,153,196,196, 68,163,175,175,239,247, 41, 9,183,186, 5,132, 7, 66,238, 40,127,133, 16,178, 92, 38, -147,125, 58,100,200, 16,156, 63,127, 30, 87,175, 94, 93, 79,107, 48,237,137,193,196, 63, 28,255,241, 96, 24, 76,252, 67,160, 44, - 66, 53,113,226, 68,201,233,211,167, 13,230,246, 86,141, 96, 85,167,149,147,147, 51,125,239,222,189,176,150,228,126,228,200, 31, - 61, 14,149,147,220,171,211,164, 60,133,193, 96,132, 90,173, 45, 51, 86,229, 95,222, 28,199, 65,173, 86, 99,192,128, 1, 21,166, -139,231,121,228,228, 88,204, 89,182, 9,195, 48,118, 71,174,170,213, 96,217, 87, 91,134,132,138,143,157,189,252,212,151,107,223, -143,230, 64, 42, 41, 51, 87,114, 7, 9,228, 50, 49, 30,170, 30, 33, 32, 48, 72,114, 50,118,223,171,168,206, 96,153, 56, 44,223, - 18, 11, 16,130, 29,251,142, 33,188,161, 2, 51,167, 77, 70,255,254,253, 33,149, 58, 96,231,206,237, 88,184,114, 19, 70,213,175, - 15, 10, 32, 34,188, 21, 22,172,222,134,217,179,102, 49,219,127,217,209,193, 86,123,197, 98, 49, 88,150,173,248,210,174,250,200, -178,172, 77,147, 0,148,223, 35,163, 17, 26,181, 22, 28,207,131,231, 41, 40,207, 3,148,194,119,238, 92,248,206,157,139,120,166, -108, 0, 95,115,181,186,172,251,184,115, 75, 59,175,106,249, 49, 40,133, 94,175,135, 74,165, 50, 36, 39, 39, 63,243,237, 23, 18, - 18,242, 72,175,215, 91,109,239,212,169, 83,211,230,205,155, 23,232,230,230,118,253,242,229,100, 99,203,150, 33,226,170, 57, 88, -205,154, 54, 43,154, 49,107,230,142,193,255,121,227,157,213,211,222, 51,141,156,254,131,200,158, 68,119, 51, 6,131,225,110,247, -238,221,237, 74,229,209,106,181,217,213,173, 11, 15, 15, 31, 70, 8,153,219,172, 89, 51, 89,215,174, 93, 17, 23, 23,135,185,115, -231,242, 38,147, 41, 15, 0,218,181,107,231, 49,123,246,108,146,146,146, 2, 87, 87, 87,228,228,228,108, 10, 15, 15,159,109, 45, -241, 93, 42,149,118,110,221,186, 53,163,211,233, 42,126,148, 48, 12,131,212,212, 84,204,159, 63, 31, 3, 7, 14, 68,179,102,205, - 42,254,183,186,116,233, 34,254,246,219,111, 59,195, 14,131,197, 48,204,199,221,186,117, 91,132,178, 81,132,149, 63,228,174, 3, -248, 12, 0,238,223,207,203, 30,248,118,187,107,221, 58,133,134, 55,110,232,235, 99, 77,239,177, 56, 29, 62,161,114, 72,196, 18, - 68,125,254, 38,246,237,219,135, 49, 51, 6,149, 71,178,202, 34, 88, 98,177, 4, 18,177, 20, 82,143,231,155,136,160,252,115,132, -184,184,212, 2, 0,212,170, 85,246,200,113, 28, 1, 64, 25,134, 17, 82,178, 4,254, 49,216,227, 69,204, 6,169,242, 50, 33,100, - 95, 76, 76, 76,239,170,175, 85, 54, 83,150,158, 87,222,119,254,252,249,243, 42,105,107, 94,196,249,188,176,169,114,140, 70,235, -243,246,118,237,218,117,156,179,179,243, 50, 0, 8, 15, 15,199,205,211,119,112,243,244, 29, 4,190, 20,216, 62, 52, 36,180,112, -224,192,129,112,119,119,199,103,159,125, 70, 1,108,168,201,177, 87,239, 54,190, 92,121,249,210,165, 75,207,157,151, 85, 62, 50, -238, 83, 84,147, 79,245, 60, 80, 74, 97, 52, 24,161,214,148,194, 96, 48,192,104,228, 96, 50,113, 8,107,238,140, 31,214, 76,134, - 94,111,128,145, 43,123,205,104, 52,194,100,226, 32,147,232,208,169,109, 93, 35, 8,163, 61,121,238,190,133,206,168, 63, 8, 74, -124, 0,150,101,113, 57,164, 44,199,173,106,228,234, 21,149,193,110,163, 69,121,238, 37, 47, 47, 79, 60, 56,120, 1, 0,224,164, -112,192,161,205,179,225,168, 40,251, 37,223, 51,106,106,153,201,146, 73, 96, 48,232,225,233,213, 0, 38,206,248, 82,117,122, 38, -163, 65,223,178,169, 47, 92,157,229, 72,142, 63,135, 79,199,126,136, 97,195, 62,128,196,193, 25, 39, 79, 30,199, 3, 85, 14,210, - 51, 10, 48,118,250,119, 48, 26, 57, 24, 76, 28,140, 38, 30, 75, 55,238,131,129,179,237,140, 36, 18, 9, 38, 78,156, 40,175,110, -253,182,109,219,180,118, 25, 44, 90,110,130, 53, 90,232, 74,117,208, 27,202,238, 5,215, 72,140, 57,211, 6,193,104, 52, 66,251, - 94, 36, 12, 70, 35,184,143,251,193, 96, 48,224,161, 66,196,116, 8, 87, 26, 65, 24,237,233,248, 12,171,247,200,124, 12,107, 6, -138, 82,106,177,235,176, 42,102,147,213,178,101,200,245,168, 1,225, 49,103,206,198,231,158, 57, 27,255,204,118,141,154,133,223, - 30, 57,103,219,148,154,152, 43,224,233,238,194, 63,131, 57,161,221,201,201, 9,105,105,105, 96, 89, 22,132,144,199,137,137,137, - 94, 0, 48, 99,198,140, 60,177, 88,236,206,178, 44, 62,249,228, 19,176, 44,235, 49,102,204,152, 47, 1, 84,107,176, 76, 38, 83, -160,179,179, 51, 74, 74, 74, 42,174,163, 84, 42, 69,116,116, 52, 6, 15, 30, 92, 97,174,164, 82, 41, 54,109,218,132,176,176, 48, -232,245,122,187, 34,119, 25, 25, 25,241, 0, 94,182,181, 29,207,243,101,221,172, 60,111,245,141,229,164,174,139,210,187, 82,112, - 18, 9,182,237,221,139,193,131, 7, 67, 42,149, 85, 68,174, 32,145,128, 72,165, 96, 36, 18,112,108,141,198, 75,152,219,129,226, -226, 98,118,211,166, 77,141,130,130,130, 8, 5, 16, 16,208,156,236,219,191,191,158,147,147,211, 29, 55, 55,183,103,162,164, 2, - 2,255,116, 42, 27,164, 23,161, 21, 29, 29, 61, 21, 0,141,142,142,158,106, 94,142,137,137,209, 2, 80,253, 89,253, 23,102,176, -108, 69,176,150, 44, 89,130, 22, 45, 90, 84,187,158, 82,138,111,191,253, 22, 63,252,240,195, 18, 74,233,237,154, 28,251,163,190, -226, 11, 10,185,196, 71,163, 53,100,173,217, 99,140, 8, 9, 9, 73,136,140,140,108,148,144,144, 80,109, 4,171,186,218, 88,127, - 69,153, 6, 74, 41,244, 6, 35, 52, 26, 45, 74,245,122, 76,152,188,210,158,211, 34, 6,125,137,232,245,215, 58, 86,107, 30,106, -146,131,101,171,107,176, 50, 70,163, 9,102, 15,240, 68, 83,138, 46, 3,163, 17,255,235, 50, 0,168, 48, 87,114,153, 24, 14, 82, - 49, 24, 2, 16, 84,175,109,212, 22,191,249,249,184, 15, 79,173, 90,255,131, 95,223,142,195, 49,126,252,120,136,164, 10,212,118, -247,128,137,163,168,167,244, 68,122, 70, 1,118,174,152, 92,158,118, 70,209,241,253, 25, 88, 50,109, 56, 22,206,176,253,171,158, -101, 89,172, 88,177, 66, 91, 53,106, 85, 57,146,101, 15, 21, 6, 75,173,133, 86,167,199,164, 41,223,217,179, 91,217, 61,122,245, -229,106,239, 81, 85,244,122,189,213, 54,216,138, 96,153,153, 58,117,106, 26, 0, 22, 0,170,251, 22,149,185, 3,129,237,123, 77, -179,183,109,127, 5, 60,207, 99,255,254,253,207, 68, 87, 43, 99,190,103,246,252, 8,224,121, 30,247,239,223,199,213,171, 87, 17, - 25, 25,137,162,162, 34,136, 0, 76,188,114, 5,205,135, 12,129,174, 60,117, 65, 42,149, 98,196,136, 17, 47,248,108,202, 41,127, -195, 83, 98,253, 70,169, 21, 25,240, 10,150, 97,195,252,221, 24, 55, 43, 10, 30, 1, 14, 88, 60,101,109,197,250,133,223,207, 40, -207,195,146,194,193,190,241, 39, 79, 81, 92, 92, 44, 90,180,120,113,203,136, 54,109,229,131,163,134, 49,122, 19,143, 57, 95, 47, - 99,127,249,105,179,251,230,205, 63,202, 29, 28, 28,174,215, 92, 85, 64,224,239,205,139, 50, 87,102, 45,115, 4, 43, 38, 38,230, - 90, 76, 76,204, 51,209,176, 63,131,205,111, 31,150,101, 81,121,200,114, 85, 8, 33,118,229, 96, 77,152, 48, 1,206,206,206, 22, -215, 25, 12, 6,122,249,242,229,148,172,172,172,117,148,210, 26,215,197,145,138, 25,175, 37,139, 54,250,141,255,120, 48, 15,148, -141,214, 90,185,114,165,171, 57, 7,171,114, 30,150,173, 28, 44, 79, 79,207,153, 11, 22, 44, 24,223,179,103, 79,134, 97,254,168, -233,104,238,142,168,220,149,199,243, 60,140, 70, 35,126,251,237,183,241, 49, 49, 49, 64, 53, 81, 47, 74,203,186,159,212, 26, 45, - 74,117,101, 95,176,233, 87,119, 88,218,212,210,206, 54, 55, 49, 71,174,218,166,229, 91,140, 92, 29,244, 42,251,226,234,149,107, - 91,139, 48,108,218,221,251, 15,219,120,215,113, 69, 65,209, 19,200,202,187, 5,205,152,205,149, 92, 38, 65,237, 90, 78,200,127, -156, 3,177, 88, 92,109,116,132, 82,122,159, 16,242,242,128,126,189, 14, 51,172,200,161,242, 58,177,220, 69, 17,123,230, 74,237, - 71, 5, 26,240,149,206,147,167, 20,227,102,219, 23,196, 20,139,197, 24, 51,102, 76,181, 6,103,239,222,189,207, 14, 5,181,220, -206, 74, 6,171, 44,138,100,247, 61,178, 19,123, 34, 88,246, 26,172,170,152, 71, 23, 74, 36,146,192,114,229, 5,253, 98, 0, 0, - 32, 0, 73, 68, 65, 84,243,101, 55, 33, 33, 33, 7, 20, 10, 69, 67,123,183,183,183,232, 40, 33,100, 86,215,174, 93,231,250,249, -249,121,142, 28, 57,146,136, 68, 34,132,135,135,215,249,234,171,175,138, 0, 32, 48, 48,208, 25, 40,251,140, 89,186,116, 41,174, - 95,191,158, 75, 8,153,109, 77, 83, 42,149,166,214,170, 85, 43,188,107,215,174, 40, 42, 42,194,131, 7, 15,224,228,228,132,230, -139, 23,227,202,232,209, 8, 89,189, 26, 76,215,174, 0,202, 6, 13, 92,185,114, 5, 50,153,204,226,200, 73, 0,240,245,245,141, -160,148, 46, 0,208, 30,127,116, 11, 82, 0,103, 8, 33,159,103,102,102, 94,120,102, 39,134, 48, 0,192,217,136,176, 74,139,188, -160,123, 40,195,208,161, 67, 33,145, 72, 1,169, 20,147, 38, 77,170,244,121, 36, 5, 91,158,143,197,115, 82,107, 82, 0,158,206, - 79, 1, 0,189, 94, 79,100, 82,169, 44,234, 63, 31, 48,159, 79,250,148, 55,154, 76,188, 72, 36,102, 38,126, 49,143,185,121,227, -170, 76,173, 86, 51,164, 38,191,172, 4, 4,254, 1, 88,202,165, 42,143, 66, 85, 71,110,229,188,172,234, 12, 90,229,156, 44, 0, -118,149,139,177, 69,133,193,178,208,231,121, 51, 57, 57,185,105, 80, 80, 16, 30, 60,120,128,194, 66,203,163,145, 29, 29, 29, 33, -151,203,113,235,214, 45, 0,184, 89,221,129,142, 29, 59,182, 28,192,114,243,178, 82,169,140,236,254,238, 43,103,194,186,182,193, - 79, 75,126, 44,202,202,202, 10, 49,215,196, 34,132, 16,165, 82, 57, 88, 44, 21,189,219, 44,184, 81, 39, 19,207, 47, 56,242,171, -229, 74,238,192,179, 57, 88, 38,147,233,185,115,176, 8, 33,253,123,246,236,201,164,164,164, 96,192,128, 1,248,241,199, 31,171, -219, 20,131, 7, 15,198,182,109,219,240,234,171,175, 50,243,231,207,175,182, 76, 3,165,128,209, 96,130, 90, 83,138,210,210, 23, -114,223, 44,242,103, 35, 87, 0, 64,121,211,145, 43,151, 18, 91,181, 8,139, 20,223,125,152, 13, 7,169,248, 41,131,165,144, 73, -224, 32, 43,123,205,219,163, 54, 46,158, 61,105, 48,153,140, 86,135,193, 83, 74,239,195, 66,145, 70,153,115,157,180, 87,218,183, -168,109,105,159, 37, 83,162,208,226,231, 37, 54,219, 43, 22,139,177,126,253,122,109,117,209, 43,123,175, 1,165,168,232, 34,212, -104, 95,236, 61,242,242,242,242,240,244,244, 92,229,234,234,234, 96,206, 29,170,110,189,181, 8, 87,117, 84,169,139,117,125,222, -188,121, 53, 50, 89, 82,169,180,225,153, 51,103,154,154,243, 2,173, 61,234,245,122,188,251,238,187,118,133, 5, 19, 18, 18, 54, -132,134,134,166,123,120,120,196,182,107,215, 78,150,146,146,130, 57,115,230, 16,177, 88,236, 2,148,253, 95,150,148,148, 64, 36, - 18,161,160,160, 0,132,144,161, 9, 9, 9, 7,173,105,234,116,186, 19, 39, 78,156,104,245,230,155,111,178,215,175, 95,135, 72, - 36, 2,207,243,208,181,109,139,144,213,171,113,245,211, 79,209,241,238, 93,232,140, 70, 56, 56, 56,224,224,193,131, 6,141, 70, - 83,109, 25, 17,169, 84,186,246,220,185,115, 65, 14, 14, 14, 48, 24, 12,224,121, 30, 12,195, 16,150,101, 59, 4, 5, 5,125,139, -178,145, 75, 21, 52,108,232,233, 57,230,195, 94, 47,113, 60,207,101,170,114,115,171,145, 5, 0,232,157,115,225, 17, 40,171,200, -183,146,136, 37,144,136,202,140,149, 57,114, 37, 17, 75, 32,145, 72, 33,147,218,213,133, 79,171,190,119,204,185, 87,142,142, 10, -190, 73,147, 38, 41, 55,111,165, 55, 7,192,212,170,229,106,119, 94,172,128,192,223, 9, 43,249, 87,185, 85,204,145,190,210,114, - 46,202,230, 86,238, 93,254, 28,149,158,199, 3,104, 93,101, 91,243,122,125,149, 71,243,250,228, 23,113, 46,214, 62, 40,123,125, -248,225,135,171,123,244,232,209,109,226,196,137,112,114,114, 66, 86, 86, 86,197, 63,173, 84, 42, 69,221,186,117,161,213,106, 17, - 23, 23,135,194,194,194, 99, 0, 62,178,247,192, 89, 89, 89,231,111, 36,165, 61,238,212,231,101,247,224,136, 64,215, 7,105,247, -219, 2, 56, 75, 8, 33,190,190,190,223, 15,153,208,247, 63,175,188,221, 1, 18,169, 24, 15,110, 61, 59,138,171, 50, 85,115,176, -254, 76,109, 44,134, 97, 88, 66, 8, 6, 12, 24, 96,215,246,239,189,247, 30, 78,158, 60, 9,107,221,137,101, 93,132, 6,104,212, - 90,104, 94,160,193, 34,132,128,227,184,138,200,149,249,239, 21,149, 1, 12,195, 84, 24,139,158, 57,246,149,156, 0,128, 82,141, -102,225,169, 35,123, 71,188,212,188,165, 71,100,104, 51,220,188,243, 16, 11,167,254,209,213, 50,105,212,123,216,180,237, 55, 40, -189,221,161,211, 62,193,161,223,127, 43, 42, 46, 46, 94,248,188,231,176,105,247, 73, 0,192,203,239, 63, 61, 70, 96,192, 39, 75, -237,218, 95, 36, 18, 97,216,176, 97,213, 70,176, 98, 99, 99,181,149, 35,145,213, 97,190, 71,106,117, 41, 52, 22,234,159, 61, 47, - 74,165, 50,164,109,219,182,177,107,214,172,113,175, 83,167, 14, 84, 42,213, 83, 6, 75,169, 84,134, 68, 68, 68,196,174, 89,179, -198,221,195,195, 3, 15, 30, 60,176,187, 68, 8,240,116, 93,172,220,220, 92, 82, 80, 80,192,215,174, 93,187, 70, 38,139, 97, 24, -232,116, 58, 92,191,110, 95,143, 82, 77,138,142, 54,108,216,240,199,101,203,150,201,238,221,187, 7,163,209,136,148,148,148,103, - 6, 33,176, 44,139,232,232,104,124,241,197, 23,171, 0,212,183,166,103, 50,153,190, 25, 50,100,200,135,153,153,153,181,189,188, -188,144,149,149, 5,137, 68, 2, 74, 41, 72,151, 46,120,249,206, 29, 24, 56, 14,114,185, 28, 55,110,220,192,186,117,235,212, 6, -131,225, 27, 75, 90,141, 27, 55,150, 50, 12,211, 84, 34,145, 96,208,160, 65, 79,173,219,188,121, 51, 34, 3, 11,194, 63,122, 75, -250,132,163, 18,221, 19, 4, 30, 96, 24,134,140, 29,222,171, 89,135,200, 22,193,215, 82,238,166,171,114,242,207, 88,107,171,184, -200, 29, 6,149, 12,144, 72,254,200,183, 42,207,185, 98,165,210,138, 17,133, 84, 42, 5, 47,181,175, 88,112,101,211, 68, 8,129, -187,187,187,110,233, 55, 11,101,142,142,142, 28, 0, 56, 59, 57,114,191,108, 94, 9,119, 55, 55,221, 51,110, 76, 64,224,159,205, -179,137,166,255, 63,251, 62, 55,213, 26,172,196,196,196, 59, 0,186,135,134,134,190, 31, 23, 23,183,100,194,132, 9, 30, 29, 58, -116, 64,126,126, 62,234,215,175, 15, 31, 31, 31, 36, 36, 36, 32, 57, 57, 57,143, 82, 58, 49, 33, 33,225,153, 80,143,181,217,182, - 41,165, 84,169, 84,110,215,107,212,163, 67, 59,182,192,209, 29,199, 99,124,124,124, 62,242,243,243,251,120,248,212,119,255,211, -173, 95, 59, 92, 79, 74,199,217, 67,137,200,188,159,139, 1,237, 71, 87,171,105, 79, 14, 86,229,199,170, 57, 88,149, 53,121,158, -231,244,122, 61,126,254,249,103,187, 76,214, 79, 63,253,132,210,210, 82,240, 60,255,212,151, 78,101, 77,142,231,136,179,139, 7, -124,235, 5,194,160, 87,131,231,237,255,101, 89,249, 19,210,210,185,155, 76, 38,204,156, 57, 19,159,125,246, 25,102,207,174,190, -119, 69, 36, 18, 97,229,202,103,115,191,170,106,230,231,231,151, 40,149,202,193,219,214, 47,219,241,254,240,241,206,126,237, 66, -176,225,151,223, 97, 52, 24,225, 32, 19,161,182,139, 19,154, 52,244,133,190, 84,131,239,150, 47, 41, 46, 45,213, 14,174,154,123, - 86,147, 89,214,135,246,235,132,175,215,253,138, 83, 91,255, 8, 80,190,252,254,116,108, 89, 52, 14,161,161, 27,173,106,114, 28, - 7,177, 88,140,173, 91,183,106,171, 27, 77,200,178, 44,170, 51, 88, 85,239,145,139,139, 7,252, 26, 52,135,190,244,201, 11,187, - 71,238,238,238,159,125,255,253,247,238, 90,173, 22,169,169,169, 72, 77, 77, 5, 33,228,122,213,245,106,181, 26, 87,175, 94, 53, -155,156,167,156,142,181,235,105,142, 92,229,230,230,146,172,172, 44, 40, 20, 10,230,242,229,203,165, 45, 91,182,188,142,242, 28, - 45, 91,231,174,211,233,238,117,235,214,205,226,118, 58,157,206, 87, 38,147, 61, 53,101,147,185,232,104,213,174, 66, 75,237,124, -248,240,225,165,101,203,150,213,107,214,172, 25,214,174, 93,171,115,118,118,150, 78,152, 48, 1, 44,203,146,165, 75,151,210,252, -252,124, 67,116,116,180,244,244,233,211, 80,171,213,151,172,181, 19, 0, 40,165, 37,132,144, 17,237,218,181,251,225,192,129, 3, -242,166, 77,155,162,168,168,108, 0,229,166, 77,155, 48,118,236, 88,200,229,114,164,165,165,161, 79,159, 62, 26,141, 70, 51,162, -114, 13,172,202,154, 38,147,137,136,197, 98,202,243, 60,166, 77,155,246, 84, 97, 81,133, 66, 1,185,148,195,154, 89,254,142,159, -126,157,237, 56,126,244,144, 33, 0,192,241, 60,119, 45,229,110,250,154, 13,191, 30, 7, 16, 87, 93, 59, 1,128,175, 85,132, 58, - 77,203, 34, 88, 98,115,205, 43,137,236,169,209,131,101,117,176,202,234, 98,217, 58,247,170,169, 24,110,110,110,166,176,176,208, - 20,173, 86,203,154,189, 84,157, 58,117,174,150,111, 75,235,214,173,171, 71,149,138,122, 53,249,223,180, 23, 65, 83,208, 20,176, -140,205, 80,127, 82, 82,210,214,224,224,224, 3,243,231,207,159,191,123,247,238,225,227,199,143, 39, 46, 46, 46,216,190,125, 59, -205,207,207,223, 40,149, 74, 63, 59,119,238,220,115,213,139,160,148,110,138,251,245,212,168, 33, 19,222, 33,147, 22,143,108,159, -112,226,210,245, 86,237, 3,209,170,125, 32, 46, 28, 77,198, 55, 83, 54,254,104, 50,154,190,202,202,202,122, 96, 77,199,158, 28, - 44,243,159, 72, 36,178, 89, 7,107,247,238,221,227,123,245,234,197, 92,188,120,241,153,156,171,202,121, 88,177,177,177, 48, 24, - 12,216,190,125, 59,111,173, 14, 22, 15,236,253,102,209, 87, 81,235, 55,239,151, 50,196,128,115,113, 59, 81, 84, 80,237,232,118, - 0,128, 68, 34,198,150,159,246, 26, 68, 34,246,134,149,182,222, 79, 76, 76,116,255,250,235,175, 89,134, 97,176,114,229,202,167, - 34, 87, 85,185,114,229, 10,111, 52, 26,109,222, 43,149, 74, 21,235,237,237,253,222,234,111,102,109,234,242,234,155,174, 1, 1, - 65, 34, 79,207,122, 16, 49, 12, 10,243,115, 17,127,254,180,233,224,254, 61,133,122,189,126,168, 74,165,138,181,165,103,141,152, - 53,123, 44,190,254,246,120,235,221,131, 12,195,152,140, 70,163,200,209,209, 17, 38,147,201,162,185,234,214,173,155,252,204,153, - 51, 90,131,193, 0,150,101,173, 58,166,178,123, 52, 61,106,253, 15, 47,246, 30,113, 28, 23, 88, 80, 80, 0,181, 90,141,132,132, - 4,186,114,229,202,220,194,194,194,169,149,215,231,231,231,163,164,164, 4,241,241,241,116,237,218,181,185,197,197,197,214,242, - 9,170,180,161,172, 46, 86, 65, 65, 1,175, 80, 40, 24,163,209,104,108,217,178,165,131, 68, 98, 95,205, 43, 0,184,116,233,210, -107,213,173,107,223,190,253,205, 51,103,206, 52,169, 60, 55,161,201,100,146,232,116,186,166,125,250,244,177,249,249, 33,151,203, - 7,238,220,185,115,171,131,131, 67,139,210,210,210, 15,115,114,114, 54, 1,168,199,178, 44,110,221,186,149,103, 50,153,250, 79, -155, 54,109,189, 90,173,190,226,228,228,244,190, 61,237,165,148, 30, 36,132,188,223,188,121,243, 13, 51,102,204,112,236,220,185, -179, 88,169, 84, 34, 44, 44, 12,105,105,105,216,191,127,191,225,187,239,190,211,104, 52,154, 97,148,210,106,223,159, 34,145,136, - 2, 32, 38,147,233,169, 57, 76,165, 82, 41,196, 98, 49, 52, 58, 6,195,167,221,214,242, 16,107,231, 45,252,113, 63,165, 32,170, -172,188,188,236, 71,133, 23, 68, 70, 99,220, 61, 85,137,213,185,158,184, 60, 5, 26,184, 4, 3,248, 35, 77,129,225, 25, 16, 3, - 1,203,177, 96,141, 44,136, 72, 84, 22,221,178,111,186, 43,106, 50,153,208,187,119,111,236,219,183, 15,125,251,246,165,176,146, - 43,178,111,223,190,106,127, 92, 8, 8, 8,252,245,216,149, 75,113,245,234,213, 66, 0, 31,181,110,221,122,243,184,113,227,246, -241, 60, 47,230,121,254,245, 75,151, 46,157,250, 51, 7,207,202,202, 74, 84, 42,149, 83, 61,125,107,199,244, 30,212, 21, 45,218, -248,131, 51,113,136,219,127, 17,107,230,110,219,150,241, 48,227, 63,180,210, 92,133,213, 97, 79, 14, 86,229, 71, 91,117,176,230, -204,153,131,185,115,231,214,120, 20, 97,117,219,156,141,207,252, 40, 50,220,199,239,237, 55,219,191,202, 16, 66,117, 86,242,108, - 8, 1, 53,103, 90,136, 68,236,141,147,231, 31, 86, 91,108, 41, 59, 59,187,219,232,209,163,143, 50, 12, 83,255,143,253,171,207, - 55,226, 56, 46,235,241,227,199, 61,108,157, 83,185,246, 1, 63, 63,191,102, 39, 15,254, 58,229,244,145, 3,157, 57,206,208,152, -128, 64, 34,145,164, 27, 57,211, 9,163, 94, 31,147,145,145,241,167, 11,177, 77,249,168, 47,238,171,242, 32, 18,177,101,181,167, -202,111,247,206,111, 39, 32, 52,116, 75,181,251,201,100,178, 3, 27, 54,108,232, 61,100,200, 16, 34, 18,137, 42,186,221,204,231, -207, 48, 12,206,159, 63,175,213,235,245,216,184,113, 35,149,203,229, 86, 11,215,254, 85,247,232,201,147, 39,195,250,244,233,179, - 9,128, 12,192,173,162,162,162,145, 42,149, 42,163,242,250,190,125,251,110, 2, 32, 35,132, 60,179,222, 22,230,146, 13,181,107, -215,190, 94, 30,185,114,120,158, 68,247,234,224,121,158,173,174,251,208,158,174,194,242,185, 5,223, 50, 47,135,135,135,207, 26, - 53,106, 84,229,201,158,227, 0,248,215,180, 93,148,210, 88, 66, 72,208,180,105,211, 62,150,203,229, 93,180, 90,109, 0, 0, 40, - 20,138, 84,141, 70,115,220, 96, 48, 44,163,148, 86, 59,141, 13, 0,164,167,167,235, 27, 53,106,148,102, 50,153,130, 61, 61, 61, - 43, 70, 31, 74,165,101,209,164,243,169,110, 9,153,153,153,173,173,105, 88,105, 95,134,181,136,114,117,251, 88, 91,175,215,235, -115,207,158, 61,235,118,228,200, 17,150,227, 56, 28, 60,120,176,226, 71,159,165,222,192,219,183,111, 67,175,215, 63, 91, 34, 94, - 64, 64,224,255, 5,242, 87,118,211,219, 27, 66, 84, 42,149, 3, 20,142, 14,163, 27,188,228,215,242,225,157,236,148,146,130, 39, - 91,178,178,178,214, 80, 74,159,249, 0,255,167,132, 58, 5, 77,219,154, 82,133,203, 33,194, 74,234, 87,183,158,114,134,251,122, - 77,241,171,150, 52, 35, 34, 34,124, 37, 18,201, 66,157, 78,215,211, 90,149,118,150,101, 77,114,185,252, 64,105,105,233,103, 85, - 39,123,254, 39, 94,207,153, 51,103, 90, 12, 73,216, 59,138,112,250,244,233,230,129, 36,118,181, 51, 36, 36,228,184, 66,161,176, - 88, 80, 83,163,209, 60, 72, 78, 78,174, 48,236,255,205,235,105, 30, 45,103, 79,222, 81,101,205,231, 26, 69,248, 39,218, 89, 19, -170,106,250,249,249, 57,184,184,184, 44,100, 24,198,106,129, 83, 51, 60,207,235,115,114,114, 38,228,229,229, 85,132, 98,255,137, -239,121, 65,243,127, 71,243,223,198, 11,171,131,245,103, 80,169, 84, 63, 3,248,249,191,221, 14,129,255, 95,204,230,233,121, 40, - 55, 75,213, 78,222,252,111,197,108,144, 44,188,158, 10, 88, 41, 72,246,156,216, 83,142,225,239,192,243, 38,116,151, 27, 40,155, -197, 69,255, 14,100,100,100,148, 2, 24,251,223,110,135,128,128,128,125, 8, 29,244, 2, 2, 2, 2, 2, 2, 2, 2, 47, 24, 2, - 32,216,210,138,154,132,254, 8, 33, 22, 53,172, 97, 75, 95,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,127,159,166, 45,237, -127, 75,215,227,223, 34, 7, 75,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205,255,109,205,127, 27, 66, 23,161,128,128,128,128, -128,128,128,192, 11,198,110,131,229,228, 29, 24,232,209, 32,100,147, 91,221,150,151,221,234,182,188,236,209, 32,100,147,147,119, -160,221,181,118,254, 77, 40,149, 74,185,143,143,207,251,245,234,213,139,109,213,170, 85,177,175,175,175,197, 41,114, 4,172,211, -153, 16,209,123,132,140,137, 34,228, 65, 20, 33, 15,222, 35,100, 76,103, 66,254, 22, 3, 47, 94, 36,179,199,250,182, 61,117,112, -208,129,217, 99,125, 45, 22, 96,155, 57, 73,233,126,230,208,187,203,166,142,245,117,123, 17,199, 35,132, 56,123,121,121,173,245, -246,246,190,231,229,229,117,223,203,203,107, 3, 33,164,214,139,208, 22, 16, 16, 16, 16,176, 15,187,190,204,220,234,183,248, 48, - 48,224,165,207,102, 77,159, 66,124,189, 61, 20, 70, 19,103,184,123, 47,163,249,244, 57,243,119,184,213,111,177, 36,255,254,149, -239,107,122, 96, 66, 8,241,243,243, 27, 32, 22,139,123, 3, 48, 27,181,235, 70,163,113, 95, 70, 70,198,207,246,142, 10,106,217, -178,229,105,150,101,235,213,228,216, 60,207,223, 75, 78, 78,238, 88,211, 54, 3,128,175,175,111,127, 95, 95,223, 13,109,219,182, - 85,180,106,213, 10, 18,137, 4, 11, 22, 44,152, 8,192,226,116, 28,150, 32,157, 59,139, 60, 11,221,134,176, 34,209, 27, 0, 90, - 82, 10,128,176,151,121,163, 97,127, 78,237,199,155,232,137, 19,118,149, 17,247,241,241,153, 74, 8, 25,138,178, 97,229,223,171, - 84,170,231,158,178,198, 26, 74,165,178, 46, 33,164, 11,165, 52,128, 97,152, 43, 60,207, 31, 86,169, 84,143,255,172,174, 23,240, - 81,187, 14, 29,150, 69, 77,156,200,106,227,226,176,108,195,134,165, 40, 46, 6,128,103, 75,206, 91,129, 16, 66, 34, 34, 90,189, -227,236,140,222, 4, 8, 5, 1, 97, 64, 47,229, 23, 50,191,199,199, 39,253,108, 79, 45,181,234, 8, 11, 11,219, 15,160, 87,249, -226,239,137,137,137,175,215, 84,163,224, 54,255,165, 76, 28,240,114, 65,250,241, 47, 1,244,172,186,222, 84,234, 16,197,138,235, -246,102,105,210, 67, 0,139,159,183,173, 0, 64, 8, 81,120,120,120, 92,222,179,103,143, 95, 68, 68,132, 8, 0, 18, 18, 18,134, -244,238,221,187,107,121, 72,191,248,207,232, 63, 47,145,145,145,181, 77, 38,211,102,150,144,182, 60,207,187, 2, 0,195, 48,133, - 28,165,231, 69, 34, 81,212,243, 22, 43, 22, 16, 16, 16,248,187, 98,211, 96, 57,121, 5, 52, 15, 10, 10,156,120,112,247,230,186, -133,249,133,165, 43, 23,110, 74,210,138,164,154,134,205,155, 74,190, 93,242,181,235,216, 79, 38,125,226,228, 21,112,225,201,163, -212, 20,123, 15,234,227,227, 83,175, 65,131, 6,187,166, 78,157, 26,220,161, 67, 7,177,167,167, 39, 30, 61,122,132, 27, 55,110, - 4,159, 57,115,166,239,158, 61,123, 38,250,248,248,188,101,171,130, 59, 0, 56, 74, 37,141,126,254,122,158,183,212,181, 54, 40, -103,130,107, 80, 8, 0,128,242, 60,178, 78,196,130, 55, 26, 65,121, 14,126,175,189, 89,246, 58,165,104,211,166,141,125, 19,127, - 85,193,207,207, 79,217,172, 89,179, 31,163,163,163, 37, 58,157, 14,151, 46, 93,194,185,115,231,248,156,156,156,249,246,106,120, -181,232,215,220, 91,228,189,163, 79,223,158, 13, 94,127,197, 83, 90,223,219, 3, 60,239,128, 27,119, 12,245, 98, 79, 37,189,246, -251,193,195,159,121, 54,239,215, 63, 39,101,247, 21,107, 58,193,193,193,109, 25,134,153,155,153, 89, 86,218, 73,169, 84, 46,136, -136,136,248,170,242, 54, 85, 61, 42,207,243, 16,137, 68,143, 52, 26,205,128,171, 87,175, 38, 89,210, 93, 54, 73,244,200,196,113, -158,101, 75,162,146,101,187,188, 15,119,239,222,189,225,176, 97,195, 16, 26, 26,138,132,132,132, 46,219,183,111,255,184,110,221, -186,241, 70,163,241,119,153, 76,118,226,222,189,123,207, 53,193,162, 4,248, 60,106,226, 68,214,233,222, 61, 56, 93,186,132, 65, -197,197,162,175,129,207, 81, 3,131, 21, 22, 22,214,168, 71,247,208, 29,125,223,234, 20,232,237,221, 92, 34, 22,215, 1,165, 20, - 70, 99,126,179,220,220,235,239,212,170,133,232, 54,109,218,188,125,241,226,197, 91,246,232,181,110,221,218,139,231,249,213,148, - 82, 9, 33,100, 28,128, 94, 7, 15, 30, 4,199,113,120,253,245,215,123,133,133,133, 53,162,148, 46,119,114,114,162, 90,173,246, -131,248,248,248, 71,213,105,205, 30,235,219,182, 48,157,255, 50, 91,228,255,218, 75,225, 67,145, 45, 58,244,218,132, 87,125, 14, -184,250, 51,179,191, 92,145,121, 30, 0,122, 54,110,236,220, 40, 64, 49,217,201, 37,216,173, 40, 51,118,114,207,198,141,215, 29, - 72, 79, 47,169, 78,211, 22, 74,165,114,225,230,205,155,235,182,109,219,182,162, 72,110,171, 86,173,216, 5, 11, 22,248, 78,152, - 48, 97, 41,128,255,216,169,211,204,221,221,253, 16,207,243,186,107,215,174, 53, 51,191,238, 25,242, 86, 59,119,103,199,110,185, - 5, 37,113,121,215,246,156,180, 71, 43, 60, 60,124,152,132, 97,214, 46,153, 54,150, 13,108,217, 18,138, 58,158, 48,168, 84, 80, -155,140,110,231,147,175,189,254,245, 55,107,115,195,195,195, 71, 36, 36, 36,108,168,233,249, 10, 8, 8, 8,252, 93,177,105,176, -100, 50,105,244,244, 47, 38,147,130,199,133, 90, 67, 73,177, 65, 65,245, 38, 23,133, 3, 41,206,201, 45,188,235,162,208, 76,248, -100,188,195,228,232, 47,162, 1, 12,178,165, 5,148,153,171,128,128,128,139,235,214,173,243,116,115,115, 67, 81, 81, 17, 30, 63, -126,140,139, 23, 47,130, 82,138,158, 61,123,202, 66, 90,180, 8, 93,242,205, 55,231,124,124,124, 34,109,153, 44,145, 88, 68,196, -142,142,216,217, 41, 20,140, 68,130,183, 83,203, 38,134,166, 70, 3, 14,190,247, 6, 0,128,149, 74,241,238,205, 28, 0,128,131, -131,131, 61,205,180, 8,165, 52,178,125,251,246, 18, 0,152, 56,113, 98,177, 90,173,142, 33,132,108, 85,169, 84,153,182,246, 5, -128, 58, 45,222,108,234,229,225,125,114,209,156,225,110,193,141,252,161, 55, 26,145,145,147, 9, 10, 41,188, 61, 29, 49,168,111, -136,164,125,184,164,201,226,149, 71, 79,120, 5,247,233,248,232,234,222,107,213,105, 57, 58, 58,110, 94,186,116, 41,126,249,229, - 23, 0,192,241,227,199,209,180,105, 83, 71, 91,109,184,113,227,134,255,208,161, 67,183, 1,104, 98,105,189,137,227, 60, 39,126, - 48, 10, 0,176,120,253, 42,231,180,180,180,134,114,249, 31,115, 41,119,234,212, 9,157, 58,117, 98, 98, 98, 98, 34,142, 31, 63, - 30,177,109,219, 54,131,175,175,239,210,204,204,204,106,167, 10,178,134, 54, 46, 14, 78,151, 46, 1,113,113,182, 55,174, 66,171, - 86,173,234, 5, 5,121,156, 91,188,232, 43,143,223,246, 93,195,162, 69, 27,144,158,158, 14, 0,240,247,247,199,251, 3,251,139, -183,110, 89, 29, 20, 29, 61,227,108, 88, 88, 88,135,196,196, 68,155,213,205,121,158, 95, 29, 19, 19,243,166,147,147, 19,162,163, -163,211, 26, 53,106, 4, 23, 23, 23,172, 89,179, 6,181,107,215,134,209,104, 76, 91,176, 96,129, 72,165, 82,225,219,111,191, 93, -143, 63,162, 91,207,208,177, 87,167, 47,101,226,128,151, 95, 10, 31, 10, 39, 23, 31,172,251,233,103,220, 72,216,244,178,206,152, -250,229,212,177,190,131, 89, 42, 27,234,219,212, 41,186, 97,120,103,247, 38, 65,125,208, 32,236, 82, 29, 29, 23,119,231,203, 49, -254,243, 69, 14,165,155,167, 47,122, 54, 74, 72,250,239, 96,131,139,227,221,174,198, 58, 62,166,180,162,104, 40, 65,121, 13, 44, -111, 31,229, 27,157, 58,117, 98,129, 50,131,125,239,222, 61,232,245,122, 52,111,222,156,209,235,245,118,213,180, 82, 42,149,205, - 58,118,236,120,250,199, 31,127,116,127,249,229,151,115, 43,175,243,118,119,125,245,228,174,165,227,231, 46,219, 18,224,217,188, - 95,161,173, 31, 2,225,225,225,195, 90, 52,243,255,126,233,130,233,132, 85,103, 64,228,250, 24,224, 31, 35,107,219,122, 64,225, -134,215, 71, 78, 64,235,136, 8,118,252, 39, 83,191,111,221,186, 53,141,143,143,223,104, 77, 79, 64, 64, 64,224,159,130, 77,131, -197, 83,190,165,135,135,155,195,183, 11, 55, 37,248, 56, 48,196,219, 79, 73,164, 46,174, 34, 56, 57,202, 24, 86,172,245,247,247, -147,240,148,183, 56, 85, 72,213, 17, 6,132, 16,210,160, 65,131, 93, 27, 55,110,244, 20,139,197,224,121, 30, 30, 30, 30,184,115, -231, 14, 10, 10, 10,240,228,201, 19,164, 95,191,142, 6,117,253, 48,126,196,112,159,217,139, 22,239, 34,132,132, 87,238, 46,172, -170, 73,121, 10,222,244,116,143, 26, 33, 4,150,250, 23,171,155, 70,198,222,145, 16, 60,207,223, 85,169, 84, 80, 40, 20, 8, 12, - 12,116,138,143,143, 63,149,105, 14, 33,217, 58,247,254,253, 89, 31,169,236,215,133,115, 6,184, 17, 54, 13,105, 15, 10,209,216, -175, 13,220,107,213, 69,102,238, 19, 36,166,252,142,180,244,253,104,236, 87, 15, 35,222,111,236,250,205,234,220,125, 36,236,163, -198, 52,113,141,209,146,102, 73, 73,137, 83,189,122,245,224,235,235, 11,158,231,193,113, 28,174, 93,187, 86,241,220, 60, 95,162, -249,249,210,173,103, 80,155,205,195,128,126,189,144,159,159,239,100,239,185,155,205,213, 15,243,148, 65,154, 39, 89, 18, 0, 80, - 56,249, 24, 6, 79,201,188,214,186,117,107,120,120,120, 72,206,158, 61, 59, 1, 64,133,193,178,247,122, 26,128, 5,203, 54,110, -252,118, 80, 81, 17, 3, 0,223, 19,194, 27,202,170,106,219,190,158,132,144, 30,175,180,218,253,205, 55, 95,122, 16,154, 2,183, - 90, 95,227,226,197,251, 48, 24,202,238,252,227,199, 57, 24, 55,166, 24, 34,145, 51, 22, 47,158,238,254,238,128, 81, 59,203,187, -200,248,234, 52,203, 95,147,164,166,166, 34, 40, 40, 8,219,182,109, 19,177, 44,139, 11, 23, 46, 64, 46,151, 99,232,208,161, 8, - 14, 14, 22,201,229,114,156, 58,117, 10,197,197,197,207,188,161, 42,107,198,253,126,114,118,193,237,227, 95,102,179,135, 94, 91, -247,211,207, 24, 62,112, 0,188, 77,183, 79,213,110,204,204,238,249,122,187,175, 88,113,221,222,142,206,193,181,155, 6,247,129, - 68,234,132,177,159,207, 66,218,213, 95,107,107, 74,174,140,225,140, 15,235, 2,248,184,170, 38,221,254, 14,183,100,147,103,216, -145,122, 73,245,149, 97, 31, 93,200, 74, 90,123,249,143,163, 7,138,192,104, 93,203,247,193,173, 91,183,144,158,158, 14,150,101, -161,213,106,159,154, 40,184,178,102,104,104,232, 71, 28,199,125, 5, 0,122,189,126,147,151,151,215,176,229,203,151,187,179,236, - 31, 51, 69,153, 35, 87,249,133,197, 5,103,227,175,221,152,240,209, 59,157,227,206, 95,125,232, 26,210,247, 65, 97,242,158, 34, - 75,215, 51, 50, 50,178,182,148,101,215, 46, 91, 52,147,112,183,143, 66, 22,216, 25, 34,167,166,224,140,153, 40, 45,120, 2,237, -157,108, 24,214,172,128,255,200, 79,176,112,193, 92, 50,112,240, 7,107, 27, 55,110,188, 43,189, 82, 4,239,175, 24,165, 36,104, - 10,154,130,230,223, 83,243,223,134, 77,131, 69, 8, 83,108, 48, 24,197, 46,117,125,141,111,191,213,177, 69,210,133,171,105, 78, -110,181,152,144, 54, 45,154, 95, 77,203, 72,132,137, 51, 16,194,216,149,215,225,231,231, 55, 96,250,244,233, 45, 92, 92, 92,192, -243, 60,106,213,170,133,220,220, 92, 24, 12, 6, 20, 23, 23, 67,247,164, 4,134,146, 98, 36, 63,184,135, 14,157, 59,227,149,200, -200,192,223,141,198, 1, 0,182, 85,167,201, 49, 44,117, 15,109,131,254,183, 31,131, 55,232,177,221,223, 29, 64, 89,212,234,189, -123,133, 32,132,128,211,235,240,123,155, 38,144, 57, 57,162,229,103,213, 78, 25,104,147,172,172,172,164,250,245,235, 31,120,237, -181,215,122,142, 24, 49,130,201,206,206, 62,232,229,229,213,254,209,163, 71, 54,187, 71, 61,111,114, 67,163, 70,132,250,215,113, -101,240,219,153, 67,104, 27,208, 15, 10,153, 24,185, 5, 90, 48,132, 32,253,238, 17,112,156, 35,146, 83, 31, 32, 50,216, 17, 47, - 71,212,242,123,114, 52,127, 4,170,239, 46, 35, 5, 5, 5,200,201,201,129,209,104,132,201,100,194, 59,253,251, 99,243,166, 77, - 80,171,213, 40, 45, 45,133, 94,175, 7,207,151,249,137,236,220, 39,184,152,124, 16,225, 45,154, 1, 86, 42,126,139, 88, 54,103, -241,250, 85,158, 0, 32, 87,184, 25, 75, 74, 74,224,232,232, 8,205,147, 44,201,168,247,203, 34, 91,171,182,174,146, 28, 63,126, - 28,137,137,137, 80, 42,149,192,115,206, 8,144, 14,172,189,203,113,211,122,238,222,237,121,102,247,110,254,252,111,191,101,200, - 74, 74,214,216,179,111, 68, 68,171,119,198,142,125, 61, 80,238, 32, 71,198,131,165, 8, 8,144, 96,226,167,238,136,249, 58, 15, - 0, 48,126,172, 31,194,195,221, 81, 92,184, 3,117, 60,167, 98,226,132,190,141,159, 60,161, 67, 0,108,178,166, 75, 8, 25,183, -101,203,150,180, 30, 61,122,136,146,146,146, 32,147,201, 32,151,203,225,224,224, 0,185, 92,142,236,236,108,232,245,122,108,223, -190,221, 84,222,133, 88, 45,229,221,128, 61, 39,244,240, 57,112, 35, 97,211,203,190,204,157,228,190, 19,218,221, 77,186,144,252, -228,216,209, 51,179, 77,165, 14, 15, 11, 51, 98, 39, 55,106,157, 92,103,204,103, 51,177, 98,225,116,220,184,112, 50,223,171, 94, -201, 74,142,232, 54,181,183, 80,231,190,115,231,153,162,209,211, 6, 26, 71, 15,123,187,214, 62,159,179,195,247,137,144,247, 40, -255,202, 34,220,190,168,149, 53, 13, 26,220,172, 17,209, 31, 59,118, 76,222,177, 99, 71,104,181, 90, 0, 0,203,178,216,178,101, - 11,111, 50,153,142, 91,106,167,209,104,252, 42, 49, 49,209, 71,163,209, 96,224,192,129,227,103,204,152,225, 40, 22,139, 1, 0, - 28, 87, 54, 91,149, 57,114, 53,231,155, 31, 14,125,242,213,202,227,135,182,125,173,156, 19, 61,172,243,160,177,115,143, 3, 56, -104, 73,215,100, 50,109,254,230,235, 41,172,204,213, 0,210,186, 7, 12, 57, 90,220,255,126, 4,244, 69, 90, 52,155, 61, 11,128, - 4,122, 3,139,125,125,251,131,117, 83,226,195,142,237, 69,107, 78,158,222, 12,160,175,181,235, 42, 32, 32,240, 63, 73,107, 0, - 30,229,207,243, 80,246, 61,230, 14,192, 28,101,247, 0,160, 7, 32,173,180, 79,213,229,202,219, 86, 93,174,252, 60, 15,101,185, -205, 30, 0, 56, 0, 23, 1,212, 56, 79,148, 1, 0, 66, 72, 69,192,167,242,115, 0,224,121, 62, 46,253,246, 61,109,231, 78,225, - 62,199, 47,222, 76,122,173,223, 43,109, 58,118,141,104,251,232,113,241,109,111, 15, 23,199,179, 23,206,203,120,158,183,171,127, - 71, 44, 22,247,238,208,161,131,168,160,160, 0, 10,133, 2,185,185,185,200,204,204,132,193, 96,128,182,168, 16,186,194, 2,104, - 11,242, 97, 44, 41, 68,122,252, 5,188, 84,207, 87, 86,158, 4,111, 23, 85, 35, 84,230, 25,236, 9,195,192,193,197, 25,114, 23, - 23,176,108,205, 42, 83, 40,149,202, 62, 1, 1, 1,231,125,125,125,167, 1,128, 94,175, 31, 19, 19, 19,147, 71, 41,197,228,201, -147, 93, 92, 92, 92,182, 55,104,208, 64,102, 75,199,217,141,123, 39,162, 69, 19, 54,237,254, 21,132, 55,125, 27, 13,125, 58, 34, - 61,179, 8,185, 69,165,200,206, 87,163, 89,179,207,224,161, 28,142, 90,222, 35,113,229,198, 67,248,120, 55,100, 88,177,228, 53, -107,154,217,217,217, 79, 45,255,180,117, 43, 52, 26, 13,154, 52,105,130,247,222,123, 15,159,127,254, 57, 6, 12, 24, 0,165, 82, -137,151,155,136, 48,108,240, 59,200,201,201,177,218,206,143, 23,153,188,150,108,247, 73,154,248, 13, 77,106,221,247,240,213,244, -244,116,164,165, 61,219,179,118,244,232, 81, 20, 21, 21, 85,124, 1,219,131,151,151,215, 20, 31, 31,159,203, 62, 62, 62,215,124, -124,124,126,127,164, 84,166, 26,253,253,189,218,247,237, 75,154,191,251, 46,251,208,209,145,220,173, 91,215,201,182, 18,224,226, -130,215,195,195, 59, 72, 11, 11, 54, 0, 40, 51,145,195,254,227,129,211, 39,131,112,230, 84, 24,198,141,245, 7, 67, 28, 64, 24, - 9, 52,234,163,104, 30, 20, 44,113,118,166, 86,223, 75,229, 9,237,183,131,130,130, 68,163, 70,141,130, 76, 38,195,230,205,155, -177,106,213, 42, 44, 89,178, 4,105,105,105,168, 95,191, 62,124,124,124,224,229,229, 37, 2,112,187,124, 31,171,184, 54,102,102, -235,140,169,167,106, 55,117,188, 77, 24,207,118, 58,147,195,219,211, 23,169, 30,207, 94,121,123,241,221, 27, 90,255,212, 11, 39, - 31,167, 93,221,203,223,137, 63,158,167,186,249,196,127,246,202,219,139,231,173,200,204,183,164,117,242,228,116,110,207,239, 39, - 13,234, 39, 26, 81,159,158,221,180, 35,255,243, 94, 51, 55,197, 75, 91,224,219,163, 85,131,186, 62,131,167,207,251, 86,255,225, -168, 79, 12,223,175,223, 64, 75, 74, 74, 80, 92, 92,140,101,203,150,153,126,251,237,183, 76,142,227, 62,169,166,137, 44, 0,152, - 76, 38,244,239,223,223, 81, 46,151,227,225,195,135, 21, 81, 80, 0,200,202,125,124,229, 76,252,213,212, 9, 35,251,119, 82,235, -116,186, 67, 39, 18,174, 55,111, 90,223,143, 16,218,160,186,243,102, 9,105, 27,212,178, 37, 40, 45, 4, 35,170,135,140, 31, 22, - 65,155,157, 15, 77,110, 62, 24,177, 35,140,112,128,129, 74,225,208,178, 13,238, 39, 94,130,151,147, 11, 68,132,180,183,117, 61, - 5, 4, 4,254,157, 88,243, 34, 0, 60, 8, 33,251, 8, 33,251,166, 76,153,210, 5,128, 59, 33,100, 31,202, 76,144, 71,249,115, -169,121,155,106,150, 61, 42,235, 84,217,183,242,243, 58, 83,166, 76,233, 74, 8,217,215,174, 93,187,193, 40, 51,114, 53,198,166, -219, 96, 75,245, 49, 83,166, 77,103, 92,156,164,206,205, 3, 27,214,254,237,112, 92,210,153,243,151,174, 59, 43, 28,100, 79,212, -106,233,146,229,171,234, 17,141,214,222, 36,239,192, 58,117,234,192, 96, 48,224,214,173, 91,200,200,200,128,193, 96,128, 73,163, -134,174,176, 16,165, 5, 5,224, 53, 79, 32,225,120,104,243,114, 81,219, 65, 10,252, 49,194,176, 90, 40,165, 21,102,170, 50,230, -101, 66, 8, 28, 92,156, 33,117,118, 2, 35, 98, 45, 73, 88,196,199,199, 39,172, 85,171, 86,191, 28, 59,118, 44,162, 67,135, 14, -179, 27, 52,104, 80, 43, 59, 59,251,254,163, 71,143,186, 45, 92,184, 80,231,225,225,129, 65,131, 6,189,100, 52, 26,163,108,105, - 73, 28,116, 45,234,123, 53, 69, 61,175, 62, 80,186,183,197,227, 98, 29,114, 11,181,200,126,172,193,207, 59,223, 67,236,129,247, -112,233,212, 96,220,186, 48, 12,143,213, 46,112,112,235, 2,128, 90,173,160,123,254,252,255,177,119,230, 97, 81,149,237, 31,255, - 62,103,246, 25, 96, 24,134,125, 88,220, 16, 49, 68,101, 81, 92,195, 61, 83,204, 22,245,205, 92, 82,203,202,210,124, 43, 83, 83, -115,169,196, 50,179,172, 92,126,105,154, 90,110,169,249,230, 26,149,251,138,184,162,130,130,236, 59,195, 14,179,158,121,126,127, -192, 16, 18, 48, 51,136,162,117, 62,215,117,174,153, 57,203,247,220,231, 48,204,124,231,126,238,231,121,206, 98,237,218,181, 53, -203, 55,223,124, 3,181, 90,141, 78,157, 58, 33, 45, 45, 13,135, 14, 29, 66,118,118, 54, 92, 93, 93,113,233,210, 37,172, 91,183, - 14,231,206, 89, 53,119,237, 61,104, 52, 26, 8,197,206,250, 53, 63,174,193,154, 31,215,128,133,157,222,188,205,150,129,106, 25, -134,121, 57,235,217,103, 59,103, 41, 20,129, 93,186,116,121,122,204,152, 49,237,194,195,195,107,182,251,249,249,249,242,249,252, -108,149, 74,181, 94,165, 82, 5, 55, 42,102,162, 33, 78,202, 39,160,211,222, 4, 0, 16,194, 7, 33, 98, 12, 24,124, 3,189,251, - 94,132,222, 32, 2, 97,196, 96,136, 4, 70, 99, 1,228, 14,238,160,212,226,136,196,195, 14, 29, 58,132,181,107,215, 34, 41, 41, -169,166,121, 52, 50, 50,114,250,216,177, 99,119,179, 44,139, 95,127,253, 21,123,247,238, 69,219,182,109, 17, 28, 28, 12,189, 94, -223, 96, 13,150,153, 5,223,100,156,253,241,139,131, 47, 10,140,138, 96,145,184, 85, 91,166, 84, 54,242,205,126,174,118, 0,112, -240,206,157, 82,119,223,210,101, 21,165,215, 82,157,188,203, 63,181, 84,224, 78, 41,104, 76,252,245,115,219,126, 62, 82,156,147, - 95, 32, 8,233, 26, 84,249,201,226, 89,194,214,109,218,127,182,112,246, 52,247,140, 18, 73,241,224, 25, 7,111,238, 62,116,190, -108,194,228,169,198, 41, 83,223,210, 28, 62,242,251, 30,147,201,212,165,161, 30,132, 38,147, 9, 89, 89, 89,184,118,237, 26,146, -146,146,144,159,159,143,188,188, 60,148,150,150,214, 52, 43,202, 74, 75,246,127,179,241,127,151,237,164, 82, 89,120,103,127,223, -115,177,113,185,118, 82,169,204,191,141,111, 7, 66,234,159,128,218,100, 50, 41,170,238, 33, 65,233,181,227,208,168, 75, 81, 89, - 84,134, 74,117, 25,180,122, 30, 52, 90, 6, 26, 61, 3,151,190, 67, 80, 86, 94, 9,141,186, 8, 38, 74,157, 44,221, 79, 14, 14, -142,127, 47,148,210,200,101,203,150, 45,109,108,123,173, 71, 93,157,215, 32,132,252, 74, 41,141,164,148, 70, 86,155, 41,152,215, -215,214, 89,182,108,217, 82, 74,105,228,233,211,167,127, 2, 80,209,148, 88, 45, 54,237,228,231,199,151,201, 93, 3,159,159, 57, -251,195, 3, 91,191, 91,229,166, 86, 23,198, 11, 37, 82,141, 68, 34, 82,190, 63,123,177,162,188,162,248,249, 50,181,245,189,158, - 10, 11, 11,107,190,188,245,223, 43, 29, 0, 0, 32, 0, 73, 68, 65, 84,132, 66, 33,216,138,114,176,149, 21,208, 20, 22,128,232, -181, 16,178, 44,148, 50, 25,124, 85,238,104,237,238, 97, 81,143,103, 98, 73,230,111, 7,112,120,252,115,247, 52, 11,154,244, 58, - 28,234, 21, 0,145,189, 29,164, 10, 39,244,217,123, 2, 0, 32, 20, 10,129,133,159, 90,212,245,240,240,112, 81,169, 84,251,190, -254,250,107, 97,126,126, 62,174, 95,191,126, 57, 57, 57,185, 88,169, 84, 58, 8, 4, 2, 83, 66, 66, 66,244,173, 91,183, 34,219, -180,105, 3, 74,169,159, 37,189,210, 34, 59,189,222, 96, 66, 70,110, 10,210,179,174,193,209,222, 23,148,241, 65,142,186, 2, 4, -110, 48,104,110,213,212,146,105, 43,211, 81,174,181,110,222, 94,189, 94, 15,131,193, 0,131,193, 0,157, 78,135, 9, 19, 38,224, -244,153, 51,248,113,239, 81,164,165,165,161,173,135, 12, 47,254,103, 52,186,118,237,138,152,152, 24,171, 52,235,163,203,240,195, -215,165, 82, 41,214,172, 89, 3,153, 76, 86,179,222, 90,131,229,233,233,185,162, 99,199,142,237,111,149,151, 35,238,230, 77,116, - 31, 61, 26, 0,112,242,228,201,154,125, 42, 43, 43,241,210, 75, 47,137,146,146,146,166,220,188,121,115,138,167,167,231, 23, 89, - 89, 89,239, 54,164,185,127,255, 25,188,254,122, 28,242,242,170, 50,187,219,127, 10,172,217,118, 55, 73,143,161,195,171, 90,174, - 20, 10, 5, 86,172,176,110,182, 7,150,101,177,110,221, 58, 72,165,210, 26,131, 37, 20, 10,123,191,243,206, 59,207,215,183,127, - 96, 96, 96,125,171,239,225,157,209,222,146, 75, 41,210, 55, 29,219,183, 9,114,116,237,130,124,227,165,206,177, 25,217,211,223, - 25,237,253,229, 23, 59,211, 53, 44,209,110, 98, 13,105, 62,124,137,230, 7,107, 98,188,115,112,149,206,169,237,107, 63,100,231, - 22,207,123,107,234, 56,103,133,147,123,217,250,175,163, 20, 12,195,224,127, 23,117,133,157,218, 57, 59,141,236,241, 85,217,235, -255, 93, 16,171, 51,166, 76, 71,218,175,183,128,122,203, 18, 1, 84, 25,172,140,140, 12,228,231,231, 35, 53, 53, 21,121,121,121, - 32,132, 32, 47, 47,207,166, 12,101, 93, 8, 33,208,165,103, 32,123,207, 6,120,188, 52, 14, 29,150, 44,129,201, 36, 64,101,133, - 17,187,250, 14, 68, 73,113, 37,116, 38, 2, 69,104, 47, 12,254,245, 4, 24,147, 17, 56,115,186,201,231,227,224,224,248,231, 67, - 8,249,117,206,156, 57, 31, 88,185,123, 52, 0,171,134,214,169,107,184,230,204,153,243,129,249, 92, 81, 81, 81,149, 0, 50,109, -141,213,170,218,153,146,188,184, 68,231, 86, 93,178,202, 42, 42, 37, 78, 74,167, 10, 7,123, 17, 45, 46, 42,230,221,188, 29,175, - 41,203,186,125,203,134,243,221,184,126,253,122, 80, 70, 70, 6, 82, 83, 82, 96,168, 40, 7,209,105, 1, 77, 37, 6,245,237, 13, - 9, 0, 9, 1,132, 38, 61,120, 60, 17,202,202, 74, 0,224,134, 37, 81,147,161,166, 14,252,222,102, 65, 7, 7,136,236,237, 32, -150, 59,212,108,179, 22,169, 84,250,227,186,117,235, 60, 61, 61, 61,177,114,229, 74,120,122,122,118, 28, 52,104, 80, 69, 68, 68, -132,212,197,197, 5, 29, 58,116, 64, 88, 88, 24,254,252,243, 79, 16, 66,238, 88,210, 51,234, 68, 23,111, 36,178, 62, 37,101,151, -112,238,226, 22, 24,116, 58,180,241,159, 11,173,209, 5,118,110, 83, 80,169,223, 7,125,209, 81, 0,128, 72,222, 15, 57, 57,249, - 0, 72,163, 69,132,117,205, 13,165, 20, 87,174, 92,193,166, 61, 39,225,251, 68, 63,100,171, 15,225,218,181, 24,184, 59, 29,129, -127, 96, 39, 24,106,221, 39, 75, 88,107,156,172,253, 2, 38,132,188, 52,119,238, 92, 20, 75,165,192,240,225, 16, 38, 38, 66,175, -215,163, 71,143, 30,232,214,173, 27, 0,160, 71,143, 30,224,241,120,104,223,190, 61,148, 74, 37,118,239,222,253, 18,128,122, 13, - 22, 37,228,146,137, 45,232,216,174, 93,187, 26,131,245,195,230, 60,196,198, 12, 2,129, 8,171,190,249,235, 79,226,235,235,139, -236,236, 36, 16, 98,177, 40,243,192,240,225,195,135, 57, 57, 57, 97,210,164, 73,144, 74,165,120,238,185,231, 80, 89, 89, 57, 6, - 0,150, 45, 91,134,185,115,231, 2, 0, 22, 46, 92,136, 69,139, 22,161,162,162,162,193, 33, 42,214,126,210, 69, 85, 90,105,154, -236,233,169,122,174,191, 75,155, 46, 3,158, 26,132,182,254, 3, 49,224,169, 52, 0, 88,234, 34,184, 59,250,179,121, 65,123,218, -248, 40, 55,158,222, 27,253, 97,159,167,251,207, 95, 60, 67,249,209,194, 85,106,139, 63, 88,138,238,254, 95,233, 77,193,136, 47, - 87,173, 53,174, 92,248,193, 59,226,148,124,189, 58,179,208, 84,102, 39,230, 59,248,185,195,126,250,251, 31, 37,101,102,222,126, - 15,105, 71, 44,246,156,100, 89, 22, 73, 73, 73,208,106,181, 96, 89, 22, 90,173, 22,101,101,101, 72, 79, 79,175,249,251, 86,218, -201,135,190, 53,105, 68,215,242,202,202,138,115, 87, 19, 82,231,207, 24,215,179,188,178,178, 34,225,110,106, 60,165, 95,213, 59, -206, 24, 33,164,168,162,180, 76,169, 43, 53,160,232,114, 60, 92, 6,180,130,206, 72,160, 53,242,160,206, 47,133,158, 5, 12,140, - 0,222,163, 38,192, 72,248, 40,201,203, 6, 67, 8, 55, 30, 22, 7, 7, 71,131,152,141, 80, 84, 84,148,213,229, 67,182,106, 3, - 64, 84, 84,212,245,168,168,168,251, 58,151,217, 96,245,171,213,222,217,175,238, 78,132, 16, 18,220,197,215,107,233, 7,207,171, - 12, 6, 93,199,178,178, 50,150,207, 23,241,125, 28, 43,179,235,238,219, 24, 6,131,225,215, 19, 39, 78, 60,219,183,111, 95,113, -194,213,203,208, 22, 23, 67, 91, 92, 4,161,201, 8,165, 36, 12,140, 65, 7,162,211,194, 43,192,132,202, 18, 9,206, 92,184,101, - 48, 24, 12,191, 54,166, 73, 65,169,201, 88,101, 28, 24,134,119, 79, 83,161,216,193, 30, 34,123,123,136,237, 29,234,109, 66,108, - 8,119,119,119,217,211, 79, 63, 61, 48, 36, 36, 4,148, 82, 44, 95,190, 28, 58,157, 78,100,206, 20,233,245,122,148,150,150,226, -231,159,127,198,230,205,155, 79, 57, 58, 58, 90,236, 90,110, 50,106, 15,254,121,234,242,176,241,207, 13, 16,253,118,116, 61, 12, - 90, 35,202,180, 10,148,107,116, 40,173, 20, 64, 39,126, 10,132,156, 0,195, 19,163, 87,176, 31,254, 56,153,160, 97, 13,250,122, -139,135,255,118, 15,170,205, 16, 33, 4, 90,173, 22,185,185,121, 80,151,254, 9,148,102,192, 69, 95,138,178,187,119, 16, 60, 97, - 34,116, 58,157, 69,173,175,222,227,231,188, 51,154,117,251,226, 29, 6, 18,169,147,161,251,115,191, 53,104, 74,236,237,237,107, -106,116,172,161,164,164, 4, 91,182,108, 65,143, 30, 61, 16, 17, 17,129,140,140, 12, 36, 38, 38, 98,216,176,191, 90,217, 46, 95, -190,140,216,216, 88,248,249, 53,158, 20, 44, 41,161, 7,212,234,219,163, 71,142, 28, 41, 60,123,246, 44, 40,165,240,247,119,132, -220,193, 30,132, 17,227,137, 39, 92, 1,220, 2, 33, 4,253,250,245,131, 94,159,105, 44, 47,199,129,198, 52, 47, 94,188, 56, 60, - 52, 52,180,173,193, 96,136, 15, 10, 10,226,103,103,103, 99,212,168, 81,216,190,125, 59, 0, 96,206,156, 57,152, 51,103,206, 61, -199,148,149,149,105, 26,210,235,218,189,195,123, 44,117,142, 16,137, 91,181,117,116,237,130,182,254, 3, 1, 0,131, 35, 39,163, -109,123, 31, 20,231, 93,105,171,211,166, 60,199, 35, 5, 78, 91,207,102,196,245,149, 5, 77,202, 79, 59,154, 0,192,226,192,189, -148, 82, 74, 8,201, 73, 21,200,119,236,250,229,215,215, 70,140,120,134,111, 96, 77,198, 32, 95,190,227,246,221,251,115, 51, 82, - 82,191, 66,234,145,235,181,247,111, 72,139,101, 89,182,168,168, 8,246,246,246, 72, 76, 76,212,142, 24, 49, 66, 92, 89, 89,137, -132,132,132, 26,131,229,230,162, 12,236,221, 45,168,227,199, 43, 55, 31,182, 19,139,197, 79,245, 11,123, 34, 46, 33, 37,157, 82, -146,220,160, 46,165,103, 19,110,220, 24,238,234,226,139,172,163,167, 97,215,231,105,104,181, 4, 26,189, 9, 58, 22, 48,242,132, -112,236,218, 29,210,118, 79,192, 68,129, 27, 87, 47,195, 72,233, 41, 75,215,206,193,193,241,143,165, 81, 47, 2, 84,101,176,122, -246,236,185, 13,248, 43,203,100,126, 14, 64, 11,160,177,154,232,188,218, 38,202,220,108,216,208,121,234,232,218, 12,191,250, 36, -199,208, 72,207, 50, 23, 23, 23,183, 39, 2, 58,181,251,110,195,122,232,181,197, 72,140,219,136,242,210, 28, 44, 88,122,198,207, -219,219, 59, 34, 61, 61,253,152, 53, 39, 75, 79, 79,223,190,123,247,238,119,187,118,234, 20,210,218,219, 27, 87,146,239, 66, 72, - 89, 8, 89, 22,140, 94, 11, 62,171,131,119,160, 9, 12, 99,135,236,236, 82,172, 59,244,251,181,244,244,244,237,141,105,178,132, - 7,159, 17, 47, 96,236,224,225,160, 6, 61,142,244, 13,132,196,222, 30, 98,133, 2,189,126, 62, 90, 53,100,131,209,128,228,101, -179, 32,180,179,135,178, 71,189,127,179,123,200,201,201,169,104,223,190,125,204,205,155, 55,187, 5, 4, 4, 96,241,226,197, 72, - 75, 75, 3,165, 20,185,185,185,154,188,188,188,140,130,130,130,100, 66,200,158,204,204,204,239,172, 25, 41, 60,215,159,183,233, -183,232,223,223, 11, 13, 14,236, 48, 40, 98, 17,126,253,245, 67, 20,149,148,160, 92,203, 71, 89,165, 30,229, 26, 10,149,131, 31, -194,187,132, 32,175, 64,135,132,235, 23,211,243,133,202,255,179,230,190,154, 33,132,224,242,229,203,104,165, 36,136,139,143,133, -139, 70,141, 0,133, 61, 66,250,244, 69, 82, 82, 18, 0,203,153,169, 58,227, 96, 9, 20, 10, 5,138,139,139,239, 57, 78, 38,147, - 65,165, 82,161,164,164, 4,187,118,237, 2,181,238, 75,209,160,211,233,208,177, 99, 71, 92,184,112, 1,209,209,209, 24, 48, 96, - 0,158,124,242, 73, 28, 61,122, 20, 49, 49, 49,136,141,141, 5, 33, 4,206,206,206,230,108, 91,131, 41,183,243,231, 47,239,180, -183, 39,115, 39, 77,122, 35,104,220,184,113,248,249,231,109,152, 60, 41, 0,132, 17,131, 16, 49,158, 25,209, 17, 75, 62,138, 65, -120,120, 63,184,184, 8, 17, 29,125, 61,137,207,119,220,108, 41, 72, 74,233,215,159,125,246, 25, 95, 34,145, 64,167,211,161,172, -172, 12, 5, 5, 85,195, 81,213,151,193,170,172,172,108,112, 96,181,235,151,110,173, 40, 44,161,133, 76,197,197,231,242, 13,151, -186, 12,120, 42, 29,131, 35, 39,225,183, 95, 55,226,143,195,209,112, 17,220, 77, 98,165,101, 7,243,146,242, 75, 51,203,252,215, - 5,134,189,194,203, 42, 63,188,246,205,145, 78, 60,111, 79,211,206, 57,171,139,139, 44,197,171,142,219,178,111, 31,197, 51,125, -122,116,247,235,236,171, 18,169, 11,114,177,251,151,131,215,245,119,127,254, 21, 85,205,130,214,164, 34,151,172, 90,181,234, 67, - 0, 48,153, 76,155, 86,174, 92,249,202,123,239,189,231,154,145,145, 81, 99,176,114,243,213,127,244, 26, 62,157, 45, 40, 42,214, -125,191,242,253, 81, 82,137, 88, 52,127,217,247, 71, 13, 60,156,109, 72,148,207,231, 79,252, 96,245,214,188, 93, 59, 55,242, 92, - 37, 66,156,156,189, 16,137,191,255, 9, 61, 17,226,169, 35,231,160,211,179, 40,201, 45,192, 31,147,166,193,201, 83,137, 3, 5, - 9,108,113,105,137,197,122, 70, 14, 14,142,127, 38, 22,188, 72, 94, 45, 67,164, 6,144, 28, 21, 21,149, 95, 43,187,148, 7,224, - 50,128,174,213,251,229,213, 57, 46, 15,192, 5, 0,221,106,233,228, 85,159, 55,178,206,115, 93,157,125, 46, 55,229,122,172,106, - 34,204,207,207,207, 61, 31,115, 13,167,126, 91, 3,163, 65,139, 98,117,213,216,159,153, 57, 26,200,229,242, 51, 13, 29, 87,119, -182,109, 74, 41,245,244,244,124,126,229,151, 95,158,125,109,226,120,143, 39, 7, 14, 68,202,213, 43,208,170,243,193, 99, 89,240, -136, 0,101,249, 18,228,100,151, 32,106,223,193,220, 74,141,230,249,186,191,188,235,155,193,219, 92,228, 78, 9,129,196, 81, 14, -177,157, 29,196,142,242,191, 50, 86,132, 64,100,239, 0,129,157, 61,120,194,218, 61, 54, 27,214,172,168,168,120, 97,234,212,169, - 87, 14, 28, 56,224, 52,118,236, 88, 60,243,204, 51,177, 69, 69, 69,253,213,106,203,205, 55,245, 94,251,206,157,172, 75,231,103, - 70,126,187,230,187,211, 47,191,252,178,242,153,145,223, 34, 54,238, 58,138,202,171, 6, 77, 87,185,216, 33, 60, 96, 22,114, 11, -180, 56,124,240,215, 66,147, 81,243, 2,189,182,205,208,144, 38,165,148,186,184,184,220,147,149,227,241,120, 56,122,244, 40,222, -126,251,109,184, 56, 28, 69,105,114, 34, 58,247,141,192,224,113, 19, 49,121,242,100,240,120, 60, 56, 59, 59, 3,181,190,116, 45, -205,136, 94, 92, 92,140,214,173, 91, 99,251, 10,191,160,202, 10,181,192,151, 7, 8,203,229,134, 63,254, 24,126,237,248,241,227, -101, 0,190,243,247,247,191,103,144,209,250, 52, 9, 33,243,150, 46, 93,186,166,119,239,222, 82,123,123,123,248,251,251,227,212, -169, 83, 56,117,234, 20, 78,156,168,170,143,115,118,118,134, 82,169, 68, 81, 81, 17,210,210,210, 42, 9, 33,243, 26,188,159,148, -154,186,117,235,246,236,111,191,237, 57, 55, 98,196,243, 46, 67,135,246,132,135, 71, 41,140,198,124, 16, 70, 8,177,196, 13,223, -125,183, 12,185, 57,106,156, 62,115, 70, 93, 86,198,127, 33, 38,230,222, 41,136, 26,136, 83,127,232,208, 33, 72, 36, 18,252,252, -243,207, 70,119,119,119,190, 66,161, 0, 80,127, 6, 75,163,209,136,235, 28, 95,163,249,202,251, 87, 51, 0,124,244,206,104,239, -207, 79, 95,207,121, 22,192,143,109,219,123,227,143,195,209, 56,241,199,233, 57, 61,130, 76,171,134,191,212,125,137,100,192,152, - 89,129,161,175,240,236,229,158,248, 97,247,207,188,184,139,235, 63,209,148, 95,107, 7, 96,150,133,191, 17, 5,128,178,220,156, -185, 81, 95,124,179, 41,106,241,135,210,229, 95,173,206,172,204,207,254, 0, 85, 93, 43,105,237,253, 26,138, 51, 49, 49,113, 29, -128,154,225, 49, 84, 42,213,150,101,203,150, 29, 31, 63,126,188,171, 57, 67,153,123,253,151, 51, 0,206, 4,245,159,178,160, 87, -183, 78, 1,159,124,181,245,112,106, 90,206,214,162,184,170, 49,176,234,139,243,204,153, 51,133, 97, 97, 97, 83,103,205, 94,180, -126,241,146,133,164,227,204, 57,136, 63,117, 1,218, 74, 61,244,148, 7, 3, 8, 46,126,252, 5, 28, 92,229, 56, 73,213, 84,203, - 99, 94,189, 83,167,200,223,210,251,179, 41,112,154,156, 38,167,249,104,106, 90,224, 66, 61,235,234,155, 73,163,238,126,150, 94, - 63, 48,172, 50, 88, 94, 94, 94, 79, 14, 30,216, 3,189, 7,191, 1,189,182, 8,137,215,191, 71, 89,105, 14,188, 60,196, 72, 76, - 45,233, 9,224,152,181, 39,204,202,202, 74,245,244,244,236,241,201,151,171,118, 63,213,189,219, 19,254, 94,158, 98, 69,235, 86, -176,115,115, 71,126, 94, 30,206, 93,140, 55,172, 62,252,199,181, 74,141,198,170,169,114, 76, 38, 19,165,148, 66, 40, 20,130,242, -120, 8,156, 62, 27, 12,195,212,233, 45, 72, 32, 15,235, 3,134, 47,128,193,202,154,161,204,204,204,116, 47, 47,175, 23,166, 79, -159,254,251,166, 77,155,152,126,253,250, 5,239,219,183,175,201,115,218, 1, 64,254,213,125, 9,238,157,159,139, 88,245,245,234, - 93, 33, 97, 61, 90,181,110,211, 90,220,219,199, 17,122, 3,139,156,220, 2, 28, 59, 29,167, 77,136,187,156,102,210,235, 70,231, -198, 53, 60,138, 59, 0, 24, 12,134, 84,149, 74,229,190,104,209, 34, 24,141, 70,176, 44, 11,163,209,136,252,252,124,196,198,198, - 34,180, 71, 79,116,156,242, 10,212,106, 53, 54,108,216, 0,111,111,111, 12, 27, 54, 12,165,165,165, 56,126,252,120,131,247,181, -246, 56, 88,132,225, 23, 69, 70, 70, 30,237,212,169, 83,159, 65, 1,106, 65,237,204,214,209,163, 71,119,138,197,226,117, 73, 73, - 73,141,142,129,230,231,231, 39,210,104, 52,193,148, 82,126, 73, 73,201,151, 90,173,246,229,119,222,121,199,243,179,207, 62, 67, -151, 46, 93,144,159,159, 15,165, 82, 9, 79, 79, 79,148,149,149, 33, 41, 41,137,213,235,245,107, 89,150, 93,146,147,147,147,215, -152,246,133, 11, 23,238,134,132,132,244,204,201, 94,179,251,141,215,135,248, 27, 12, 97, 34,185, 99, 95, 80,106, 68, 81, 97, 26, - 8,189,162,223,179,247,247, 59, 69, 69,188,231, 99, 98, 98, 18, 26,211, 50,195, 48,204,235,255,251,223,255, 96,158, 42, 39, 51, - 51, 51,145, 97,170, 58,201,213,151,193,178,134, 47,118,166,107, 0,252,244,249,127,123,206, 44,206,187,210,193, 69,112, 55,169, - 71,144,105,213, 23, 59,211, 53,159,190,230,244,113, 70,222,209,248,204,178,195,235,126,216,253, 51,111,226,115, 47,176,158,246, - 9,115, 92,124,176,179,255, 51,141,235, 82, 74,105,215,174, 93,125, 25, 70,221, 38,183,224, 86,204,228, 87, 95, 27,227, 40,172, - 60,208,197, 43,191,189,209, 61, 80, 18, 23, 23,151, 92,189,155,245, 93, 61, 1,100,102,102,198,171, 84,170, 39, 87,172, 88,113, - 24,117, 82,227,185,249,234, 63,122, 70,190, 69,139,138,138, 47,229,198,253,210,232, 40,238, 0, 16, 19, 19,243,125, 88, 88, 24, - 38,140,159,252,127,175, 78,153,202, 11,154,241, 62,210,255,252, 29, 48, 26,144,117,226, 24,100, 14, 44,126,205, 79,102, 43,120, -204,212,152,152, 24,110, 20,119, 14, 14,142,127, 12,196,218,207, 94,191,118,222,135,219,181,241, 26,210,174,141, 10, 0,144,120, - 55, 19,137,119, 51,142,220, 73, 76,175,103, 56,196,106,241, 70, 28,110,237,201,158, 73,245, 80, 12,212,138,201,158,235,106, 6, - 5, 5,197, 50, 12,163,178,234, 34,170, 97, 89, 54,253,250,245,235, 97,214,196,169, 82,169,198,250,248,248, 44,203,204,204,220, -157,150,150,246, 95,107,207,209,232,181, 87, 79,246,204,240,132,145,148,210, 46, 0, 8, 97, 24,139,147, 61,215,214,244,242,242, -234, 44,149, 74,215,241,249,124, 95, 84,167, 84,205,183, 76,175,215,243,138,139,139, 37, 58,157,142, 7,128, 8,133, 66,163,189, -189,189, 70, 32, 16, 24, 89,150, 77, 53, 24, 12,175,101,100,100, 92,181, 20,167,153,192,192, 64,187, 73,131,110,148,213, 50, 88, -120,119, 37,109,176, 73,185,182,230,237,219,183, 59, 56, 57, 57,253,135, 16, 50,138, 82, 26, 80, 90, 90,170,253,240,195, 15, 47, - 29, 59,118,172,196,215,215,119,104,223,190,125,201,149, 43, 87,144,156,156, 76,203,202,202,118, 49, 12, 51, 47, 61, 61, 61,209, -166,251, 73, 8,211,171, 87,240,139, 14,246, 24,110,162,232, 10, 80, 66, 8,185, 90, 86, 70, 14,120,122,182,217,186,115,231,206, -122, 93,181, 53,215, 30, 26, 26,186,191,172,172,108, 88, 66, 66,253,254,140, 16, 2, 74,255,186, 23,141,105,126, 62,175,243,188, -158, 17,125, 94, 56,117,236,196,158,247, 63,185,246, 81,237,109,111, 61,167,156,252,210,155,111,127,246,227,183, 95,189,255,205, - 30,245, 61,115,242, 53,164, 25, 26, 26,218, 22,192,139,148,210, 78,132, 16,127,147, 9, 18, 66,168,154, 16, 18,103, 50,153, 46, -155, 76,166,255, 93,185,114,165,222,158, 47, 15,251, 23,109,237,201,158, 9,203, 42, 88, 66,172,154,236,249,113,249,229,205,105, -114,154,156, 38, 71, 93,172, 30,129,219,108,164,252,253,253,233,237,219,183,239,249, 82,105, 10,213, 6,106, 27, 26, 25,165,221, - 26,174, 93,187, 22,114, 63,199, 91, 34, 51, 51,243, 39, 0, 63, 53,167,102,181,129,250,190,122,105, 18,213, 6, 41,220,226,142, -205, 64, 92, 92, 92,249, 87,239,241,107, 50, 91,124, 30,175,241,209, 74,107, 49,100,200,144, 20,189, 94, 31, 13, 32, 29,128, 2, -128,218, 96, 48, 28,202,203,203,203,241,240,240, 8, 75, 73, 73, 89, 0, 0, 38,147,233,163,236,236,236, 38,141, 35, 81, 93, 3, -247, 99,245,210,172, 92,188,120,113,184, 74,165,138,117,118,118,246,211,104, 52, 34,141, 70, 35,168,253,222,151, 74,165,141,102, -217,106,227, 40,199, 15, 60, 82,224,236, 36, 39,127,203,212,184,120,225,231,202,242,107, 29, 92,188,240,179, 13,177, 37, 5, 7, - 7,111, 97, 24,166,141,201,100,114, 7, 32,167, 20,249,148,210,124,150,101,211,175, 94,189,106,115,183,226, 7, 69,181,129,106, -246, 94, 63, 28, 28, 28, 28,143, 42, 54, 79,113,146,144,144,112, 95,198,138,227,241,228,237,207,141,238, 77, 57, 46, 57, 57, 89, - 11,224,116,245,114, 15,213,134,106,196,125,134,246,192,201,204,204,108, 22, 19, 95, 93,147,245,223,238, 3,255,190,173,122,104, -134,247, 7, 88,104, 22,172,203,165, 75,151, 82, 1, 88,108, 74,231,224,224,224,224,120,184,216, 54,111, 12, 7, 7, 7, 7, 7, - 7, 7, 7,135, 69, 8,128,122,135,184,182,165,109,149, 16,139, 83,144,216,172,207,105,114,154,156, 38,167,201,105,114,154,156, -230, 63, 79,211,146,246, 63,165,182,203,234, 34,247, 38,137, 63, 38,133,117,156, 38,167,201,105,114,154,156, 38,167,201,105,182, -172,230, 63, 13,174,137,144,131,131,131,131,131,131,131,163,153,225, 12, 22, 7, 7, 7, 7, 7, 7, 7, 71, 51,195, 25, 44, 14, - 14, 14, 14, 14, 14, 14,142,102,134, 51, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12,103,176, 56, 56, 56, 56, 56, 56, 56, 56,154, -153, 7,218,139,144,131,131,131,131,131,131,131,227,223, 8,151,193,226,224,224,224,224,224,224,224,104,102, 24, 0, 32,132,208, -218,143, 28, 28, 28, 28, 28, 28, 28, 28, 15,147,127,154, 23,225, 50, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12,103,176, 56, 56, - 56, 56, 56, 56, 56, 56,154, 25,179,193,234, 87,157,146,235,215,146,193,112,112,112,112,112,112,112,252,107,249, 71,121,145,154, - 94,132,132, 16, 74, 41, 37, 45, 28, 15, 7, 7, 7, 7, 7, 7,199,191,148,127,146, 23,225,134,105,224,224,224,224,224,224,224, -224,104,102, 30,104, 13, 22, 33, 36,136,211,228, 52, 57, 77, 78,147,211,228, 52, 57, 77, 78,243,223, 6, 87,228,206,193,193,193, -193,193,193,193,209,204,112, 6,139,131,131,131,131,131,131,131,163,153,225, 12, 22, 7, 7, 7, 7, 7, 7, 7, 71, 51,195, 25, - 44, 14, 14, 14, 14, 14, 14, 14,142,102,134, 51, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12, 1, 80,111, 79, 0, 74,233, 53,171, - 69,154,208,155,192,146, 62,167,201,105,114,154,156, 38,167,201,105,114,154,255, 60, 77, 75,218,182,248,143, 71,153, 7, 58, 14, - 22, 33, 36,168,185,111, 20,167,201,105,114,154,156, 38,167,201,105,114,154,255, 60,205,127, 26, 92, 19, 33, 7, 7, 7, 7, 7, - 7, 7, 71, 51,195, 25,172, 38, 64, 8,153, 64, 8, 57, 68, 8,185, 70, 8, 57, 76, 8,153,112, 31, 90, 82, 66,200,156, 90,122, - 7, 9, 33,239, 19, 66,196,205, 25, 51, 71,243, 66, 8,225,181,116, 12, 28, 28,181, 81,169, 84, 29, 2, 3, 3, 47,170, 84,170, - 14, 45, 29, 11, 7, 7, 7,192,111,104,131,159,159,223,105,134, 97,218, 50, 76,149, 7, 35,228,175,169,129,204,207,235, 62, 82, - 74,147,226,226,226,122, 53,164,217,182,109,219, 26, 77,134, 97, 64, 8, 1,195, 48, 48, 24, 12, 14, 60, 30,175,180, 62, 77,150, -101,211,111,221,186, 21,118, 31,215,216,172, 16, 66,182, 56, 57, 57, 25, 86,175, 94,253,109, 72, 72, 72,123,181, 90, 93, 62,117, -234,212,167, 8, 33,131, 40,165,227,109,212, 10, 34,132,108,238,214,173,219,238,183,222,122,107,103, 96, 96,160, 67,121,121,185, -120,251,246,237, 30,107,215,174, 61, 65, 8,153, 76, 41,141,123, 80,215,194, 97, 59,158,158,158, 33,132,144,111,252,253,253,195, - 84, 42,213, 5, 0,111,102,102,102, 94,110,233,184,254, 77, 16, 66, 94, 17,137, 68, 67,253,253,253,187,107,181,218,194,164,164, -164,243, 44,203,126, 72, 41,205,110, 38,125, 71, 0, 31,138,197,226,112, 63, 63, 63,159,132,132,132, 52,189, 94,127, 14,192, 18, - 74,105,113,115,156,163,185, 81,169, 84, 29,194,195,195, 79, 46, 93,186,212,121,238,220,185, 39, 85, 42, 85,159,204,204,204,248, -150,142,139,227,209,199,215,215, 87, 81, 94, 94,190,158, 97,152, 16,137, 68,226,225,224,224, 0,123,123,251,108,177, 88,124, 73, - 38,147, 77,217,191,127,127, 81, 75,199,248,184,210,160,193,226,241,120,222,231,207,159,119,115,112,112, 0,203,178, 48,153, 76, - 48,153, 76,160,148,214, 60,154,161,148,130,101, 89,244,239,223, 95,223,232,201,248,124,159,139, 23, 47,186,217,219,219,215,172, -211,235,245,232,210,165,139, 41, 54, 54,214, 77, 34,145,220,179,191, 78,167, 67,104,104,232, 35, 51, 89, 34, 33,100,156,179,179, -179, 46, 37, 37,181,167, 70,171,239, 53,109,214, 71, 31,254,231,153, 8,199, 51,103,206, 48, 35, 70,140, 16, 16, 66, 38, 80, 74, - 55, 91,169, 37, 37,132,108,152, 63,127,254, 50,190, 80,230,182,235,192,105,254,215,235,126, 76, 11,122,162, 13,153, 57,125,154, -108,198,140, 25,231, 59,118,236,248, 61, 33,164, 47,165, 84,251,160,175,141,195, 50,132, 16,190,143,143,207, 47, 81, 81, 81, 94, -217, 89, 89,248, 98,229,202, 30, 0, 86, 3,232,209,210,177,253, 91, 32,132,204, 89,188,120,113,212, 75, 47,189, 4,163,209,136, -202,202, 74,213,157, 59,119, 58,205,159, 63,255, 57, 66, 72,119, 74,105,226,125,234,187,250,251,251,223,156, 57,115,166,178,123, -247,238, 96, 24, 6, 69, 69, 69,170,147, 39, 79,246,216,176, 97,195, 4, 66, 72, 71, 74,105,222,125,232, 51,206,206,206, 51, 0, -244, 55,153, 76, 98, 0,231, 10, 11, 11, 63,166,148, 54,250,217,105, 9, 39, 39,167,173,159,127,254,185,179, 88, 44,198,198,141, - 27,157,199,140, 25,115, 66,165, 82,245,229, 76, 22, 71, 99,184,184,184,188, 82, 90, 90,250,173, 76, 38, 19, 42, 20, 10, 72,165, - 82, 8,133, 66,136, 68, 34, 95, 39, 39, 39, 95,123,123,251, 97, 99,199,142,125,243,167,159,126, 90,223,210,177, 62,142, 52,216, - 68,200, 48, 12,164, 82, 41,182,111,223,142, 61,123,246,224,224,193,131,248,227,143, 63,112,242,228, 73,196,196,196,224,234,213, -171,184,121,243, 38,238,220,185,131,180,180, 52,240,120,150, 91, 76,204, 89,169,125,251,246,225,248,241,227,184,114,229, 10, 8, - 33, 32,132, 64, 44, 22, 35, 58, 58, 26,199,142, 29,195,233,211,167,113,225,194, 5, 8,133,194,123, 50,103, 15,133,236,197,116, -244, 32, 66,235,123,244,112,198,150,165, 75,151, 30,170,208, 26, 4, 44, 37,218,236, 66,131,122,201,242,111, 79,229,231,230, 30, -219,177, 99, 71, 9,128,177, 54,156,233,237,238,221,187,239, 51, 66,228, 62,225,229, 73,147,190, 89,177,228, 53, 42,117, 49,158, -140,189,147, 27, 24, 24,242,163, 66,161, 48,126,253,245,215,241, 0,102,216, 18,126,183,110,221, 82, 67, 67, 67,105,104,104, 40, -237,222,189,123, 94,191,126,253, 26, 52,209, 15, 19, 66,136,138, 16,242, 19, 33,228, 7, 66, 72,199, 58,219, 58,136, 68,162,255, - 17, 66, 54, 18, 66,124, 90, 42, 70, 75,120,121,121,117, 28, 63,126,188, 75, 65, 94, 30,190, 88,185,210,188, 58,172, 37,154, 11, - 67, 67, 67,219,246,233,211,103, 79,159, 62,125, 82,195,194,194,216,176,176, 48,246,201, 39,159, 76,237,219,183,239,202,208,208, - 80,105, 83,117, 9, 33, 62,132,144, 97,132,144,225, 13, 44,195,150, 47, 95,222,182, 37, 52, 9, 33,173,221,221,221,151,142, 30, - 61, 26,251,247,239,199,244,233,211, 13,139, 22, 45,162, 2,129, 0,111,190,249,166, 19,128, 97, 77,189,238, 90, 12, 91,188,120, -177,178,119,239,222,248,229,151, 95,176, 96,193,130,202,131, 7, 15, 34, 36, 36, 4, 83,167, 78, 85, 2,120,218, 86, 65, 66,136, -184,186,217,255, 48,143,199, 43,127,249,229,151,151,196,198,198, 14,186,122,245,106,248,164, 73,147, 70,200,229,242, 56, 23, 23, - 23,123,203, 74, 13, 83, 88, 88,248,241, 71, 31,125, 84, 42,151,203,145,154,154,138,197,139, 23,187,120,122,122, 30,227,154, 11, - 27,135,199,227,233, 9, 33,212, 92,146, 97,233,245, 63, 9,103,103,231, 55,212,106,245,119,174,174,174,194,214,173, 91,195,193, -193, 1,124, 62, 31, 38,147, 9,229,229,229, 72, 79, 79,135, 78,167, 19,118,236,216,241,187,183,222,122,235,141,150,142,247,113, -132, 79, 8,137,160,148, 30, 51,175, 48,191, 38,132,192,100, 50, 65, 32, 16,128,199,227,129,207,231, 67, 32, 16, 64, 32, 16,220, -243,220,188,212,103,132,234,246, 48, 96, 24,134,148,150,150,194,209,209, 17,114,185, 28,142,142,142, 53,153, 48,131,193,240, 55, - 77,150,101,193, 48, 12,109, 76,179, 57,168,173, 57,122,194, 34,236,140,166, 4, 0,118, 70, 47, 68,237,199,236,130, 69,241,189, -123,247,246,121,251,227,141, 81, 5, 5, 69,185,129,222,174,198,177, 47, 69,180, 18,229,231,228, 59,183,105, 19, 9, 32,215,134, - 56,251,188,254,250,235,187,118,253,121,219, 78, 44, 22,137,120, 12,120, 29,218,181, 21,120,201,219, 43, 93,159,234, 46, 74, 78, - 76, 60, 49, 97,194,132,215,167, 77,155,230, 12,224, 51, 43, 53, 65, 41,245, 60,114,228, 8,248,124, 62, 6, 13, 26,228,132,170, - 44,165,209,154,107,111, 46, 26,208,156,159,147,147,243,162, 70,163, 65, 88, 88,216, 51,132,144,254,148,210, 75,132,144,206, 35, - 71,142, 60,177,115,231, 78,135,216,216, 88,244,232,209, 67, 10, 96, 76, 11,198,249, 55, 84, 42,213, 17, 0,131,121, 60, 30,116, - 26,141,110,249,138, 21,181, 55,199, 80, 74, 89, 91, 53,109,161,174,102,112,112,112, 71,153, 76,118,122,197,138, 21,242,192,192, - 64, 34, 16, 8, 96, 52, 26,145,144,144,224,179,101,203,150,215, 46, 92,184,240,116,104,104,104,224,197,139, 23, 13,214,106,214, -162,211,137, 19, 39,202,219,181,107,199,214,183,177,162,162,130,215,174, 93,187,126, 0,146, 90, 64, 51, 61, 39, 39,231,217,193, -131, 7,191,158,157,157,125,211,104, 52,206, 6, 16,228,226,226, 18,251,194, 11, 47, 64, 42,149,246, 7,240, 85, 3, 49, 88, 19, - 39,220,220,220, 70,246,234,213, 11,223,124,243, 13, 62,253,244,211, 65,148,210,223, 9, 33, 3, 75, 74, 74,162,159,121,230, 25, - 40, 20,138,103, 1,108,178, 86,147, 16, 18, 40, 22,139, 55,253,244,211, 79,246,237,218,181,107, 39, 20, 10,153,118,237,218, 65, -173, 86, 67,163,209,136, 63,254,248,227,206, 18,137,228,242, 87, 95,125,181, 9,192,243,214,198, 89, 27,149, 74,213,161,123,247, -238,223,189,243,206, 59, 14,191,254,250, 43,252,253,253, 81, 82, 82,130,201,147, 39,187,173, 90,181,234,168, 74,165,234,103,206, -100, 61,236,255, 35, 66, 72, 49, 0, 57, 0,133, 45,205,171,141,220,207, 98, 0, 53,102, 71, 32, 16, 64, 44, 22, 67, 34,145, 64, - 34,145, 32, 41, 41,233,103, 30,143, 55, 9,192,223,222,251,245,105,146,191,190,184,186, 18, 66,206,243,120,188, 70, 95, 83, 74, - 77,214,196,121, 63, 88, 49,108,130, 55, 33,228, 75, 0,253, 81,149, 36, 57,230,230,230,246,118,118,118,118,138,181,154, 42,149, -202,185,172,172,236, 43,149, 74, 5, 55, 55, 55, 0, 0,143,199, 67, 88, 88, 24, 52, 26, 13,174, 95,191, 14,147,201,132, 59,119, -238, 64, 46,151,163,115,231,206, 95, 45, 94,188,120,215,194,133, 11, 11,172,141,211, 86, 26,242, 34,205,121,142,135, 13, 3,224, - 40, 80,117, 49,213,235,142,154, 55,178, 44,251, 55,211, 83,159,201,226,243,249, 32,132,128, 82,218,104,186,137, 16,194,232,116, -186, 26,115, 37,151,203,107,204,153,209,104,172,215, 96, 53, 21, 39, 39,167,195,132,144, 33,182, 30,183,115,243,162,198, 54,223, -201,205,205,213,143,236,211, 65, 44, 44, 83, 23, 76,232, 19,224,216,197,207, 59,200, 93,229, 53,166,162,162,226, 2,128, 44, 27, - 78,229, 21, 24, 24,232, 80,144,147,149,255,210,140,229, 75,102,125,188,246,163,110,254,238,242, 39,159,104,237,217,167,107, 96, - 27,103,106,100,100, 50, 89, 39, 0, 94,182, 94,131,163,163, 35,254,248,227, 15, 91, 15,123,208, 56, 85, 86, 86, 66,173, 86, 99, -237,218,181,114,103,103,231, 63, 9, 33, 19, 71,142, 28,121,106,215,174, 93, 14,197,197,197,208,235,245, 0, 80,217,210,129,214, -195, 71, 78, 78, 78,186,103,159,125, 22,219,118,236, 16,153, 76,166,114, 0,101, 0,178, 40,165,111, 61,236, 96, 36, 18,201,123, - 31,127,252,177, 60, 48, 48,144,228,231,231, 35, 51, 51, 19,249,249,249,112,113,113,193,172, 89,179, 36,237,219,183,247, 18,137, - 68, 31, 52, 81,158, 52,100,132, 0, 64, 38,147,177,176,189,115, 76,189,154, 70,163,145,132,135,135,191, 31, 20, 20,180,217, 26, - 77, 74,169,145, 82,186, 47, 45, 45,109,168,193, 96,120,151, 82,106, 4,112,249,230,205,155,149,124, 62, 31,109,218,180, 9,183, - 49,174,191,209,161, 67,135,158, 2,129, 0,231,206,157,211, 2, 56, 86,189,250,216,149, 43, 87,180,124, 62, 31, 62, 62, 62, 61, -173,213, 34,132,136,197, 98,241,166,219,183,111, 7,140, 24, 49,162,125, 73, 73, 9,163, 82,169, 96,254,155,165,166,166,226,202, -149, 43,152, 50,101,138, 27,203,178, 13,214,174,214, 70,165, 82,117,136,136,136, 72, 27, 53,106, 84,193, 11, 47,188, 80,240,252, -243,207, 23, 12, 31, 62,252,252,198,141, 27,157, 1,192,104, 52, 98,238,220,185, 72, 76, 76,132, 66,161,192,164, 73,147,220,165, - 82,233, 86,155,111, 68,243, 83, 36, 16, 8,168, 66,161,112,188, 79, 29, 49, 0, 17, 0, 17,159,207, 23,137,197, 98,145, 68, 34, - 17,137,197, 98,145, 88, 44, 22, 53, 67,156,143, 52,132, 16, 47, 66, 72,156, 64, 32, 24,174, 80, 40, 28,149, 74,165,131,175,175, -239, 83,126,126,126,215, 39, 76,152,208,218, 90, 29,141, 70,179, 89, 42,149, 10, 92, 93, 93, 1, 0, 67,134, 12,193,214,173, 91, -241,226,139, 47,154,134, 12, 25, 98, 26, 61,122, 52,220,221,221, 1, 0,151, 47, 95,134, 72, 36, 18, 40,149, 74,171,202, 95,238, -131, 6,189,200,227, 74,237,230,163,163,168, 26,120,180, 6,147,201, 4, 30,143,215,104,230,170,118, 6,203, 82,115, 30, 33, 4, - 44,203,194,195,195, 3, 50,153, 12, 50,153,172,102, 91,125,102,142, 82,218,228, 38,194,246,237,219, 15,144,201,100,125, 9, 33, -207, 80, 74,163,173, 61,174, 42,131,181,176,161,205,191,204,156, 57,115,216,217,179,103, 53, 61,187,180, 53,137, 51,211, 10,100, - 78, 46, 93,136,171,219,160,105,175, 78, 61, 3,224, 39, 27, 66,204,212,104, 52,226,214, 30, 76,101,102,113,137,174,173,220, 81, -209,214,209, 94,214,218,197,209,217, 73, 34, 98,236,220,221, 84, 6,131,161, 8, 64,166, 37,161,110,221,186,165,154, 76, 38, 31, - 0,144, 72, 36, 58, 66, 8, 95,161, 80,192,209,209, 81, 95, 88, 88,168, 9, 13, 13,133, 72, 36,202, 23, 10,133,158, 71,143, 30, -109, 48,155, 85,155,238,221,187,231,176, 44,235,214,216, 62, 66,161, 48,247,204,153, 51,238, 86, 93, 45, 48,175,107,215,174, 17, -171, 87,175,118,245,247,247,199,218,181,107,229,187,118,237,218,180,117,235, 86, 20, 21, 21,225,238,221,187,152, 60,121,114, 9, -128,229, 86,234, 61, 52,148, 74,229,201, 81,163, 70, 97,253,250,245,180,250, 71,132, 29, 33,164,139,163,163,227,173,184,184,184, -251,170,157,105, 10, 12,195, 60, 21, 16, 16, 64,138,139,139, 65, 41, 5,143,199,187,103,153, 53,107,150,116,202,148, 41,243,123, -246,236, 57, 75, 32, 16,148, 24,141,198,109,101,101,101,159, 92,187,118,237,145, 42, 86,237,219,183,239,127,211,210,210, 34, 91, -181,106,245,191,166,106, 80, 74,105,183,110,221,116,148, 82, 41,143,199, 19,220,111, 76,230,230, 94,150,101, 53,213, 6, 14,148, - 82, 99,104,104,168, 6, 85, 95,238,182, 52, 7,207,216,185,115,167,131,167,167,167,180,178,178, 18,137,137,137, 8, 13, 13, 69, -105,105, 41,202,203,203, 81, 81, 81, 1,189, 94,143,226,226, 98, 5,203,178, 58,107, 4,149, 74,229,214, 45, 91,182,120,123,123, -123,195, 96, 48,192, 96, 48,160,188,188, 28,199,142, 29,131, 86,171,133,193, 96, 64, 64, 64, 0,150, 45, 91,166,121,243,205, 55, - 37, 59,118,236,200,173,172,172, 28,103,243,141,104,102,120, 60, 30,196, 98, 49, 4, 2, 65,145,175,175, 47, 24,134,145, 36, 39, - 39, 55,165,182, 84, 14,160,132,207,231,139, 36, 18, 9,196, 98,113, 77, 6,235,218,181,107,219, 27,202, 94, 53, 4,173, 51, 16, -164,165,215, 45, 13, 33,228, 75,129, 64, 32,118,118,118, 22,154,215,233,245,122,161,147,147, 19, 90,181,106,245, 13,172,108, 38, - 39,132, 4, 59, 59, 59,131, 16, 2,161, 80,136, 87, 95,125, 21,231,207,159,223,147,158,158, 62, 33, 55, 55, 23,101,101,101,155, -229,114,249,115,185,185,185, 96, 89, 22,201,201,201,232,218,181,107,240, 3,187,176,123,249,155, 23,121, 92,225, 3,127, 57,198, - 90,206,209,156,145,178,152,185,106,172,137,176, 46,122,189,222, 62, 50, 50,210,100, 54, 99,230, 94,132, 0, 8,203,178, 16, 10, -133,247,104, 86, 27,172, 38,189,193,197, 98, 49,134, 13, 27, 38,145,201,100,123,171, 77,150, 85, 41,157,250, 50, 88, 1, 30,146, - 86, 2, 70,176, 61,114, 64,223,224,169, 51,103, 9,250,245,235,247,191,163, 50,131, 7, 0, 0, 32, 0, 73, 68, 65, 84,189,123, -247,134,184,244, 25, 48,188,168,168,232,226,180,137, 47,159,216,190,125,123,169,181, 5,238,213,156,218,179,103,143,231,123,211, -167, 9, 35, 34, 34,126,158,216,249, 29,190,167,200,228,160, 20, 11,121, 50, 30,159, 17,251,180, 30,250,251,177,227, 89, 0,142, - 91, 18,162,148,122, 70, 71, 71, 67,161, 80, 0,128, 72,167,211, 65,161, 80, 96,237,218,181, 18,185, 92, 14,185, 92,142, 94,189, -122, 57, 9,133,194, 70,155, 11,107,195,178,172,219,209,163, 71, 97,111,111,143,242,242,114,104,181, 90, 24,141, 70, 80, 74,193, -231,243, 33, 22,139,209,175, 95,191, 70, 13, 88,157, 24, 19, 9, 33, 79, 78,155, 54,237,248,234,213,171, 93,253,252,252,176,100, -201, 18, 20, 20, 20, 32, 53, 53, 21,227,198,141, 43, 73, 74, 74,234, 79, 41,189,105,173,230,195,160,115,231,206,244,212,169, 83, - 56,120,240, 32, 70,140, 24, 65,246,237,219,167,103, 89, 86,152,145,145,113,181,165, 98, 50, 26,141, 14, 34,145, 8, 6,131, 1, -124, 62,191,166, 9,223,108,176,188,188,188,240,219,111,191,241, 43, 42, 42,248, 5, 5, 5,178, 13, 27, 54, 76,143,137,137,241, -132,109, 53,130,205,206,154, 53,107, 90,189,250,234,171,169,124, 62,159, 14, 29, 58,116,124, 74, 74,202,179,158,158,158,191,255, -249,231,159, 43, 0,216, 92, 43, 20, 20, 20, 20,195,227,241,188, 1, 8,247,238,221,107, 96, 89, 86,216,185,115,231, 28, 74, 41, -204, 11, 0, 24,141,198,244,248,248,120,139, 61,145,131,130,130, 98, 36, 18,137,240,255,254,239,255, 12, 26,141, 70,216,165, 75, -151,156, 90, 58,194, 95,126,249,197, 96, 48, 24,132, 1, 1, 1, 49, 86,246,108,238, 23, 30, 30,222,170,168,168, 8,142,142,142, - 40, 43, 43, 67, 76, 76, 12, 2, 3, 3,145,153,153, 9,134, 97,160, 80, 40,176,102,205,154, 10, 66,136,218,154,107, 86,171,213, -227,102,206,156,121, 98,251,246,237, 46, 60, 30, 15, 41, 41, 41, 80,171,213, 80, 40, 20,216,178,101, 11, 90,183,110,141,232,232, -104, 53,203,178,175,172, 95,191,126,126,101,101,229,184,150, 46,116,103, 24,166,198, 8,213, 50, 68,154, 30, 61,122,224,212,169, - 83, 63,218, 98,138, 40,165, 58,115,179, 96,237,166, 65,177, 88, 12, 30,143,103,115,147, 7,203,178, 66, 66, 72, 48,170,191,208, - 45,189,126, 4,136,176,179,179, 19,214, 93, 89, 88, 88, 40, 12, 8, 8,232,107,173,136, 88, 44,118,150, 74,171, 74, 53, 35, 34, - 34,144,155,155,203,182,107,215,238, 63, 99,198,140, 49, 0,192,107,175,189,246,159,188,188, 60,141,193, 96,224,241,249,124,228, -229,229,161,109,219,182,206,205,118, 21, 13, 80,159, 23,121,156,225, 83, 74, 9, 33,132,214,126, 52,111, 52,215, 96, 53,150,185, - 50,111, 51, 27,165,198, 78,198, 48, 76,209,197,139, 23,237,236,236,236,106,214, 25, 12, 6, 4, 7, 7,155, 76, 38, 19,169,123, -174,251,201, 96,137,197, 98, 40, 20, 10,140, 29, 59, 86,150,145,145,177, 9,128,183, 53,199,213,205, 96, 5,120, 72, 90,121,185, -186,159,254,244,147,197,158,119, 14,110,196,119, 95, 45, 55,158, 63,127,126,143,167,167,231, 11, 0, 74, 60,156, 49, 60,187, 0, -227, 41,165, 86,167,225, 9, 33, 12,128,237,103,206,156,185, 52,100,200,144, 51,119,239,222,117, 74,185,125,251,164, 92, 87, 86, -102,239,211,198, 40,116,115, 31, 89,169, 55,240, 71,141, 26,229, 14, 96,149, 21,122, 48,153, 76,216,191,127, 63, 28, 28, 28, 32, -151,203,161, 80, 40, 96, 54, 87, 77, 37, 41, 41, 9,233,233,233,176,179,179,131,157,157, 29,236,237,237, 97,111,111, 15,145, 72, -116, 79,246,209, 90, 40,165,241,132,144,183,119,239,222,189, 45, 42, 42, 10,133,133,133, 40, 47, 47,199,194,133, 11,145,152,152, - 56,147, 82,122,169,201,193, 62, 0,186,116,233, 66,207,156, 57,131,147, 39, 79,162,188,188, 28,223,124,243, 13, 60, 61, 61, 7, - 0, 88,208,146,113,153, 76, 38,161,121,168, 19,134, 97,254,150,193, 50,155, 45,169, 84, 10, 23, 23, 23,204,157, 59, 87, 56,114, -228,200,200,150,140,249,179,207, 62,107,255,229,151, 95,110,248,225,135, 31, 14,142, 27, 55,110,199,181,107,215, 38, 57, 58, 58, - 94,253,227,143, 63, 62, 22,139,197, 38,203, 10,127,135,207,231,123, 95,186,116,169,182,201, 23,176, 44, 43, 99, 89, 22, 70,163, - 17, 6,131, 1, 21, 21, 21, 24, 52,104,144,213,122,231,207,159,151, 1,192,130, 5, 11, 4, 0,100, 38,147, 9,181,245, 42, 43, - 43, 5, 3, 7, 14,180,234,179, 4,128,202,201,201, 73,144,154,154, 10,163,209,136,144,144, 16,172, 89,179, 6, 99,198,140, 65, -167, 78,157, 80, 90, 90,138,184,184, 56,108,218,180,201, 73, 40, 20,190, 96,141, 96,102,102,102,188, 74,165,234,251,159,255,252, -231,244,182,109,219,156, 90,181,106,133,244,244,116,100,102,102,194,207,207, 15,171, 86,173, 42,167,148,246,174, 54, 85,191, 88, - 25,231, 3,131, 97,152, 26, 19, 84,223,210, 20,140, 70,163, 92, 34,145,148, 84, 55, 13, 66, 44, 22,227,194,133, 11, 54,103,175, -204,212,253,220,177,244,186, 37, 49,127, 6, 27, 12,247, 94,166,157,157, 29,252,253,253,173,214,177,179,179, 35,230,239, 88,131, -193,128,172,172, 44,246,218,181,107,108, 72, 72, 8, 0,192,211,211,147, 61,123,246, 44,171,213,106,121, 14, 14, 14, 0, 0,133, - 66,241, 64, 77,102, 99, 94,228,113,197,220, 68,120,188,206, 99, 77, 6,203,108,120, 26, 43,114,231,243,249,214, 26, 44,240,120, - 60, 28, 58,116, 8,246,246,246,112,112,112, 64,199,142, 85, 29,202,204,217,178,186, 89,177,166, 26, 44,145, 72, 4, 71, 71, 71, - 28, 57,114, 68,115,249,242,229, 87,173, 61,174,118, 6,203,108,174, 86,124, 22,229, 89,112,227, 12,210, 51,179,144, 16,151,241, - 27,165,244, 7, 0, 63, 0, 0,178, 23, 83,120, 44,180,218, 92, 61,225, 42,235,218,195,223,227,151,254,131,135,122, 61, 59,113, - 26,243,230,155,111,246,124,249,229,151,213,227,199,143,159, 33,149, 74, 59, 25,141,198,194,232, 99,199,146, 71,143, 30,237, 92, - 92, 92,252, 50,165,212, 98, 77, 18,143,199,203, 26, 50,100,136, 15, 0, 56, 56, 56,232,190,255,254,123,145, 66,161,192, 75, 47, -189,164,201,206,206,150, 84,223,143, 66, 88,153,189, 2, 0, 62,159,159,251,202, 43,175, 52,154,161, 18,137, 68,185,141,109,175, - 11, 33, 36, 56, 50, 50,242,187,237,219,183,163,160,160, 0,229,229,229, 16, 10,133, 88,190,124, 57, 82, 83, 83,191, 34,132, 92, -123, 84, 62,204,186,118,237, 74,207,157, 59,135,171, 87,175, 66,171,213,226,213, 87, 95,173, 93, 99,104,115,109, 95, 51, 67, 50, - 50, 50,176,101,203, 22,176, 44,139,113,227,198,161,117,235,214, 53, 6, 43, 59, 59, 27,223,127,255, 61, 88,150,197, 43,175,188, - 2, 95, 95, 95, 24, 12, 6, 73,191,126,253,248,214, 54, 17, 55, 55,239,188,243,206,157, 61,123,246, 28, 76, 75, 75,123,250,211, - 79, 63,141, 32,132,152,102,205,154,181, 76, 46,151, 55,189,208, 18, 64, 97,113, 41,110,221, 78,129,209,104,172,119,113,117, 81, -218,172,151,144,152, 10,163,145,173,209, 96,217,191,244,156,149, 54,233,101,168,213,106,127, 30,143, 39,188,125,251, 54, 90,181, -106,133,238,221,187, 99,233,210,165,200,203,203,131,209,104,132,155,155,155,201, 96, 48,196,234,116, 58,139,153,106, 51, 89, 89, - 89, 21, 5, 5, 5,229,175,188,242,138,226,187,239,190, 35,254,254,254,184,123,247, 46, 4, 2, 1, 28, 28, 28, 42,110,222,188, -249,200, 12,205, 80, 55,115,101, 94,170, 51, 87, 12,128,255, 1,176,201, 96, 83, 74,117, 62, 62, 62, 53, 25,172,166,102,175, 30, - 20, 60, 30, 79,111, 50,153, 4, 0, 36,148, 82,173,165,215,182,104,251,251,251, 31,147,203,229,145, 55,111,222,188, 39,139, 53, -118,236, 88,189,159,159,223, 9,107,117,228,114,121,161, 72, 36,114,214,104, 52, 56,115,230, 12, 58,118,236, 40, 44, 46, 46,142, - 34,132,204, 1,128, 46, 93,186, 68,229,228,228, 8,189,188,170, 74,128, 3, 2, 2, 80, 92, 92, 92,232,227,243,192, 59,121,255, -205,139, 60,206,240, 1,128, 82, 26, 81,251,209, 76,221, 38,194,198, 76,150,121, 64,210,198, 32,132,160,178,178,178, 38, 35, 98, -103,103, 7,147,201,116, 79,115,100, 93,131, 85,183, 23,161,181,136,197, 98,252,249,231,159,154,117,235,214,141,162,148, 30,182, -246,184,218, 25, 44, 15, 87,215, 67,102,115,117,229,228,111,216,121, 57, 55,131,192,244,102, 67,251, 91, 34,208,213,174,139,135, -187,203,209, 47,150, 47,147,103,156, 59,136, 29,235,190,160, 87,206,159,239,246,198,249,243, 47,188,241,198, 27, 74, 84,213, 91, -101, 0, 56, 9,224, 43,107,204, 21, 0,156, 61,123,214,215,252,188,123,247,238, 6,185, 92, 14,123,123,123,228,229,229, 9,237, -237,237, 37, 71,143, 30,181,185,214,225,220,185,115,214,214, 86, 89, 5, 33,164,195,136, 17, 35,142,255,252,243,207,118, 69, 69, - 69, 72, 78, 78,198,251,239,191,143,111,191,253, 22,114,185, 28,251,247,239,119,136,140,140, 60, 74, 8,233,213,210,131,171, 6, - 7, 7,211, 11, 23, 46, 32, 57, 57, 25, 70,163, 17,207, 62,251,172,197, 14, 28, 15, 19,147,201, 68,103,206,156,137,239,190,251, - 14, 12,195, 96,226,196,137, 40, 41, 41,169,217,174, 84, 42,235,219,198,131,133, 30,165, 15, 18, 62,159, 79,143, 29, 59,246,105, - 68, 68, 4,210,210,210,158, 14, 13, 13,253,122,210,164, 73, 25,247,171,235,228,232,128,174,129,237,160,213,106,161,213,106,161, - 82,169, 80, 90, 90,138, 59,119,238, 64,171,213,194,221, 77, 97,179, 94,112,167,246,208,233,116,208,106,181,112,115,115, 67,121, -121, 57,238,222,189, 11,173, 86, 11, 87, 87, 39, 91,228,142,157, 60,121,178,213,160, 65,131, 2,226,226,226,112,252,248,113,232, -116, 58, 4, 7, 7, 35, 33, 33, 1, 61,123,246, 68, 73, 73,201,185, 11, 23, 46,236,179, 86,144, 16,226,243,212, 83, 79,253,249, -227,143, 63, 58,111,221,186, 85,247,252,243,207,139,150, 44, 89, 66,228,114, 57,114,114,114,238, 25,159,240, 81,160,174,177,138, -137,137,217, 46, 20, 10, 41,128, 38,101,155,204,164,165,165,137, 59,119,238,172, 21,139,197,162,211,167, 79,219,212,204,248,160, -185,223,158,137,141,209,190,125,251,153,222,222,222,131, 66, 66, 66, 16, 23, 23, 39, 20,139,197, 24, 63,126,188,126,216,176, 97, -122, 62,159,111,117,135, 27,137, 68,114,195,193,193,225, 73,173, 86, 11,157, 78,135,232,232,104, 40,149,202,247, 35, 35, 35,223, -206,202,202, 66,102,102,166, 72, 44, 22,215,100,201,251,247,239, 15,181, 90,125,195, 90,253,166,210,144, 23,121, 92,105,112,140, -164,186, 25, 44, 75, 61, 9,173, 49, 88, 12,195, 64,167,211, 65, 38,147,213, 24,172,218, 35,197, 55, 69,179, 33, 46, 93,186,116, - 58, 49, 49,113, 5,165,244,128, 45,199,153, 51, 88,126,110,142,109,187,181,114,232,144,121,238, 0,110, 93,137,193,246,216,156, -140, 50,131,174,207,173,108, 77, 74,125,251, 91,162,131,155, 93,144,151,187,243,209, 47,150, 47,147, 23,220, 56,131,219, 87, 99, -112,224, 92,250, 69, 45,165, 9, 0, 62,177, 37, 70, 75,152,219,214, 31, 37,196, 98,241,204, 93,187,118,217, 21, 21, 21, 33, 49, - 49, 17,227,198,141, 43, 74, 78, 78,158,246,236,179,207,126,123,248,240, 97, 39, 39, 39, 39, 28, 57,114,196,193,199,199, 39, 10, - 64,139, 53,103, 17, 66, 40,203,178, 40, 40,168,234,141,220,187,119,239, 71,202, 92, 1, 64, 76, 76,140,112,196,136, 17,191, 3, - 24,112,227,198, 13,152, 76,166,211, 23, 47, 94,236,109,222,222,216, 54, 43, 48,149,150,150, 10, 28, 28, 28,234,253,178, 18, 10, -133, 66,216,152,113,168,173,121,234,212,169,101, 43, 86,172,216,243,238,187,239,222,190, 79, 77, 0,127,207, 96, 69, 70, 70, 66, -163, 53, 32, 61,167, 24, 70,163, 17, 21,186, 28,155,245,106,103,176, 34, 35, 35, 81,169,209, 33, 53, 75, 13,163,209,136, 50,141, - 77,137,146, 85, 99,199,142, 29,117,234,212, 41,117, 64, 64,128,242,194,133, 11,200,205,205,133,193, 96,192,128, 1, 3, 32, 22, -139, 83,162,162,162,132,176,162, 12, 0, 0, 8, 33,178,193,131, 7, 31,222,182,109,155,199,233,211,167,161,211,233, 76, 49, 49, - 49,119,167, 78,157, 42,159, 50,101,138,115,213,109,124,180, 48, 27,171, 27, 55,110,152,141,213, 68, 52,147, 17, 50,103,176,254, - 77,108,221,186, 53, 99,227,198,141,129,158,158,158, 95,142, 31, 63,190,191, 74,165, 98, 68, 34,209, 49, 62,159,255, 54,128, 20, -107,117,196, 98,241, 36, 39, 39,167, 59, 60, 30,143,151,145,145,129,219,183,111,131,199,227,129, 82, 42,170,172,172,132,187,187, -123,205,216,150, 99,199,142,133,183,183, 55,155,144,144, 48,233, 1, 93,214, 63, 22,139,131, 80,126,244,209, 71, 88,183,110, 29, - 94,123,237,181, 70,247,219,183,111, 31, 80,167,137,144,212,153,109,219,220,139,112,209,162, 69,247, 28,103,110, 10,156, 54,109, -218, 61,154,123,247,238,253, 91, 19, 97, 93,205,134,184,115,231, 78,132,165,125,234,211, 52,103,164,238,228, 22, 39,117, 86, 57, -156,216,180,239,247,190,119,213,149, 73,229, 6,253,192,186,230,170,246,254,141,105, 62,225, 97,255,132,183,155,243,177, 21,203, -151, 57,154,179, 97,219, 98,179,139, 97,164,141,223,212, 70, 52, 27, 66, 32, 16,100,245,234,213,203, 7,176,174, 89,208,218,251, -105, 11,245,105,106,181, 90,156, 61,123, 22, 0, 48,121,242,228,162,228,228,228, 39, 41,165,215, 9, 33, 55,134, 14, 29,122,236, -208,161, 67, 78,213,191,190, 11,234,145,124,168,179,193,179, 44, 11, 62,159, 15,127,127,127,155,205,213,195,138, 51, 43, 43,235, -181,215, 95,127,125,157, 86,171,229,151,151,151,191,102,237, 54, 75,113,238,220,185,243,182,191,191,127, 4, 26, 30, 54,193, 4, -224,204,253,104,126,249,229,151, 0, 16,112, 63,154,102,234,102,176,182,111,223, 14,150,101,225,237,238, 8,173, 86,139,218,245, -158,214,104,214,205, 96,237,216,177, 3, 38,147, 9,190,158, 74,104,181,218, 6,107, 15,235,211,164,148,106, 9, 33,147,122,245, -234,181,249,227,143, 63, 78,234,216,177,163, 79,175, 94,189,156,212,106,117,238,165, 75,151,146,215,173, 91,103,111, 52, 26, 39, - 53,212, 76, 84, 87,211,217,217,249,139, 31,126,248,193,251,198,141, 27,200,200,200,192,202,149, 43, 83,242,242,242,134,241,249, -124,241,215, 95,127,125,116,248,240,225,238, 70,163,177,209,108,245,195,252, 63, 2,128,204,204,204,125, 0, 4,176,209, 88, 89, - 19,231,249,243,231,119, 84,107, 31,176, 70,251, 97, 93,251,253,246, 76,180, 20,231,164, 73,147,210, 81,103,204, 52, 91,227, 60, -114,228, 72,242,139, 47,190,248, 81, 80, 80,208, 34,123,123,123,196,199,199,215, 12,139,100,254,129, 78, 8,193,232,209,163,241, -198, 27,111,224,200,145, 35, 31,141, 26, 53, 42,217,150, 56, 57, 26, 49, 88, 44,203,166, 37, 39, 39,123,254,240,195, 15, 60, 66, - 8,182,108,217,130,186,133,181,230, 71, 0, 56,123,246,172,145, 82,122,167,177,147,177, 44,155, 22, 19, 19,227,190,113,227, 70, -129, 84, 42,133, 88, 44, 70,102,102, 38, 76, 38,147, 41, 39, 39,135,249,241,199, 31,239, 41,214, 61,115,230,140, 81,175,215,167, - 54,243, 53, 55, 74,237,140,212,213,204,210, 39,253,188,164, 94,242, 76, 77,238, 45, 74,235,253, 7,182, 38,131,101,231, 32, 95, -182, 98,249, 50,133,217, 92,109,143,205, 46,210,104,217,254, 55,242, 42,174, 52, 87,220,102, 78,157, 58,229,107,121,175, 22, 97, - 97, 68, 68,132, 9,128, 11,128,249,180, 42,115,135,106,147,213,195,223,223,255, 93, 0, 82, 0,214,181,183, 62, 0, 8, 33,212, -100, 50,213,100, 78, 31,181,204, 85,109, 46, 94,188,152, 4, 96,160,173,219, 44, 49,106,212,168, 68, 0,247, 53,221,204,195,208, - 52,163, 46, 42,193,157,187, 25,213, 83,121,177, 96, 83,178,107,213, 79, 25,160, 46,169,215,175, 55, 72, 97,113, 41,238,220, 77, -135,201, 68,171,244,216,140,154, 34,119,163,209,136,252, 34,219,134,105,163,148,198, 17, 66,122,206,158, 61,123, 6,128, 62, 0, -124, 1,164,162,170, 12, 96,149,181, 53, 56, 2,129,160,207,151, 95,126, 57,140, 97, 24,230,236,217,179,218,229,203,151,167,229, -229,229,141,164,148,166, 2,128, 74,165,234,183,119,239,222,173,143,194,144, 12,117,152,248,152,106, 55,153,199,165,103,226,182, -109,219, 22, 79,155, 54,141, 31, 30, 30,254, 65,183,110,221,152,187,119,239, 34, 55, 55,183,230,199,229, 83, 79, 61,133, 86,173, - 90,153, 14, 28, 56,176,244,185,231,158, 91,220,146,177, 62,174, 52,104,176,242,243,243,159,154, 56,113,226,111, 12,195,180, 49, -103,145, 26,122, 4, 0,147,201,148,156,147,147,211,232, 52, 18,249,249,249, 79, 45, 92,184,240, 55, 62,159, 95,163,201,178,172, -182,160,160, 96,218,232,209,163, 87, 11, 4,130,154, 17,122,171,123,198,165,100,101,101, 61,212,130,226,186, 25,169, 59, 25,149, -141,214,137, 88, 83,131,101, 39, 66,187,180,179,251,113,251,234, 69,108,143,205, 46, 44,213,177,253,226,243,202,255, 85,206,159, - 82,154, 11, 96, 90, 3,219,110, 3,176, 41,155,247, 32,248, 39,245, 94,249, 55, 96, 52, 26,211, 7, 13,232, 87, 51, 36,131, 57, - 49, 80,247, 53,203,178,233,214,234, 13,236, 31,209,160,142,249,185,181,122,102,170, 77,212,103,213, 75,147,224,241,120,239,134, -135,135,243,222,125,247,221,156,131, 7, 15,254, 94, 88, 88,248, 14,165,180,194,188,189,186,215, 96,104, 83,245, 57,154,151,199, -165,103,226,234,213,171, 23,188,255,254,251,155, 84, 42,213,150, 62,125,250, 4,248,249,249,201, 29, 28, 28, 80, 82, 82, 82,170, - 86,171,111,237,223,191,127,220,196,137, 19,255, 54,195, 2,135,149,212,254, 16,105,238, 5, 64,208, 99,167,153,181,136,142, 26, - 8,106,203,163, 37,205, 14,238,118, 17,221,125,229, 23, 59,171, 28, 46, 4,184,217, 5, 62,178,215,206,105,114,154,156,230, 35, -169, 9,192, 87, 36, 18,253,194,231,243,251, 60,202,113,114,154,143,183,230,168, 81,163,120,163, 70,141,226,181, 84,156, 22,150, -110,148,210,225,213,143,230,231,131,106,173,123,152,177, 88,181, 60, 18, 19, 1, 63, 82,120, 44, 36,117,231, 32,180,244,104,137, - 91,217,101,199,192,253,186,228,224,224,104, 34,180,170, 41,112,100, 75,199,193,241,207,102,231,206,157,143,204,112, 23,245,224, - 74, 8,249,149, 82, 26, 9, 0,230,231,181,215, 61,106, 52,189,155, 30, 7, 7, 7, 7, 7, 7, 7, 7, 71,189, 16, 0, 65,245, -109,160, 54,244, 14, 32,132,212,171,209, 24,150,244, 57, 77, 78,147,211,228, 52, 57, 77, 78,147,211,252,231,105, 90,210,110,224, -248,225, 22, 50, 88,251,109,141,243, 65, 67,170,219, 82, 31,140,248, 67,238, 18,204,105,114,154,156, 38,167,201,105,114,154,156, -230,227,169,105,129,199,206, 96,113, 53, 88, 28, 28, 28, 28, 28, 28, 28,143, 58,149,115,230,204,249,128, 16,242, 43, 0,204,153, - 51,231,131,150, 14,200, 18,156,193,226,224,224,224,168,133, 74,165, 26, 1, 96, 49,170, 74, 40,162, 50, 51, 51,119,180,112, 72, - 28, 28,205,138,171,171,171,157,179,179,243,239, 12,195,180, 2,238, 29,114,169,238,224,222, 0, 96, 50,153,178,212,106,245,144, -236,236,236,252,135,169, 89,135,211, 81, 81, 81, 21, 81, 81, 81,230,130,246, 60, 84,181,194, 69, 86, 63,127,228,176,217, 96,205, - 25,210,166,175,202,203,235,199,162,130,130, 88,109, 69,233,148,165,191,103,168,155,114, 98, 66,136,179, 72, 36,250,143,157,157, -221, 32, 74,105, 59, 30,143,119,179,184,184, 56,218, 96, 48,108,163,148,150, 53, 69,147,131,163, 57, 9, 14, 14,238, 44, 18,137, -222, 39,132,244, 48, 26,141,222, 2,129, 32, 19,192, 57,173, 86,187, 60, 54, 54, 54,182,165,227,227,104, 30, 8, 33,140,167,167, -231, 87, 10,133, 34,188,168,168,104, 28,128, 15,226,227,227,187, 48, 12,131,192,192,192, 15, 84, 42,213, 29, 7, 7,135,245,165, -165,165,167,179,178,178,222,166, 54,204, 29,199,241,232,226,231,231, 23,195, 48,140,119,237,233,218,204, 52, 52,230, 35,165, 52, - 41, 46, 46,174, 87, 67,154,222,222,222,237,228,114,249,106, 0,221,234, 51, 21,181,169, 46,207,185, 80, 82, 82, 50, 45, 61, 61, -189,222,129,120,149, 74,165,131,155,155,219, 98, 66,200,104,134, 97,120,150,174,201,100, 50,177,148,210,157,185,185,185, 11,213, -106,117,105, 67,251, 57, 59, 59, 71, 31, 63,126,188,155,139,139,139,197, 49,255,140, 70, 35,210,211,211, 93, 35, 35, 35,143, 3, -232,248, 48, 53,235,160, 3,112,222,202,125, 31, 9,108, 54, 88,132,197,248, 41,175, 78,244, 42, 74,139,247,250, 97,219,161, 14, -243,158,106,213,239,147,195, 41,217,182,104, 72,165,210,255, 4, 5, 5,173, 90,181,106,149,115,155, 54,109,136, 84, 42, 69, 86, - 86, 86,199,203,151, 47, 63,183,104,209,162,133, 2,129, 96,146,193, 96,248,205,214,216,238,137,147, 16,133,210,158,255,126, 65, -169, 97,238,253,232,112,252,251, 24, 61,122, 52, 47, 45, 45,109,145,139,139,203,123,179,103,207, 22,183,109,219, 22,246,246,246, -200,205,205,245, 77, 72, 72,240, 89,189,122,245,136, 94,189,122,125, 45, 20, 10,231, 29, 61,122,180, 69, 38, 79,230,104, 62, 60, - 61, 61,191, 58,126,252,248, 91, 42,149, 10,189,123,247, 62, 29, 28, 28, 44,151,201,100, 56,120,240, 32,218,181,107,215,201,209, -209,241,220,218,181,107, 5,139, 23, 47,238,186,123,247,110, 0,152,222,210, 49,115,220, 63, 12,195,120,199,198,198,186,201,100, - 50,176, 44, 91, 61, 27,128, 9,148,210,154, 71, 51,148, 82,176, 44,139,254,253,251,235, 27,211,148, 72, 36,223, 94,189,122,117, -144,121,134, 19,243,177, 13,145,153,153, 57,168,127,255,254,223, 2,168,119, 64,109, 55, 55,183,197, 83,166, 76,153, 25, 22, 22, - 6,163,209, 8,157, 78, 7,157, 78, 7,189, 94, 15,157, 78,135,220,220, 92,204,152, 49,163,230, 60, 38,147, 9,209,209,209,211, -231,204,153, 3, 0,255,109,228,218, 91,185,184,184, 16, 75, 83,224, 45, 90,180, 8,139, 22, 45,194,170, 85,171, 8,159,207,111, -116,230,244, 7,161,249,184, 99,187,193, 2, 61,112, 96,215,142, 41,145, 17, 1,228,229,145, 33,254, 91,247,197,156,153, 51,168, -237,147,203,162,147,210,172, 57, 94, 42,149,206,120,253,245,215,151, 45, 89,178, 68,114,235,214, 45,196,197,197,193,104, 52,194, -222,222, 30,157, 59,119,102, 14, 28, 56,224, 57, 99,198,140, 93, 34,145,104,178, 78,167,219,109,251, 37, 85,225,225,196, 91,110, - 39,229,189, 36,226,243,207,233,140, 70,171,103,171,127,152,132,135,135, 31, 49, 24, 12,159,198,198,198,254,217,210,177, 88, 75, -104,104,104,111,161, 80,184, 80, 36, 18, 13,253,167,154,139,148,148,148,133,125,251,246,125,111,209,162, 69,226,187,119,239, 34, - 62, 62, 30, 89, 89, 89,104,211,166, 13,218,180,105, 67, 86,173, 90, 37,249,250,235,175,167, 95,190,124,153, 1, 48,203, 90, 93, - 66, 8,227,225,225,241,202,192,129, 3, 95,112,113,113,113,204,200,200, 40, 62,117,234,212, 47, 89, 89, 89,255, 71, 41,109,210, -189, 36,132, 48, 46, 46, 46, 47, 71, 70, 70,190,160, 84, 42,149, 89, 89, 89,234,223,127,255,253,151,220,220,220,245,247,147,105, - 33,132,120, 2,232, 2,192,185,122, 85, 86,235,214,173,175,223,189,123, 55,183, 25, 53, 51, 91,183,110, 29,215, 20, 77, 87, 87, - 87, 59, 62,159,191,131, 16,162,106,104, 31, 74,105,166,209,104, 28,147,151,151, 87,222,152,150, 92, 46,239,225,233,233,137,115, -231,206, 97,254,252,249,202,254,253,251, 35, 33, 33, 1, 12,195,224,189,247,222, 35,129,129,129,130,236,236,108,132,133,133, 33, - 58, 58,186,193,236, 5,199,223, 33,132,236, 4,160, 0, 48,150, 82,154, 95,107,189, 11,128,189, 0,114, 41,165, 54,205,171,215, -156, 72,165, 82,252,244,211, 79, 16, 8, 4, 16, 10,133, 40, 44, 44,132,151,151, 23,132, 66, 33, 4, 2, 65,205, 34, 20, 10,225, -227,227, 99, 81,207,100, 50,117,231,241,120, 40, 43, 43, 3,203,178, 53,211, 44, 21, 23, 23,131, 82, 10,145, 72, 84,179,222,188, -205,100, 50,117,111, 72,143, 16, 50,186,115,231,206, 88,189,122, 53, 42, 43,255, 62, 77,147, 92, 46,199,245,235,215,107, 94,243, -120, 60,132,133,133,241, 8, 33,163,209,136,193, 34,132, 80, 0,120,245,213, 87,239,153,158,174,238, 98,158, 59,152, 82, 90, 51, -133,216,195,212,124,220,105,212, 96,205, 29,216,118, 90,167,144,174,203, 69, 34,129,212,196, 26, 96, 50, 26,208, 41,200, 31, 38, -147, 17, 73, 41, 89,104,231, 38,194,228,167,253, 90,109, 62,146,112,237,131, 33,254,225, 75,143, 36,196,215, 62,190,110, 15, 3, - 66, 72,235,110,221,186, 45,254,248,227,143, 37,191,255,254, 59,110,221,186,133,165, 75,151, 2, 0,236,236,236,112,240,224, 65, -176, 44,139, 47,190,248,194, 97,232,208,161,171, 9, 33,199, 40,165,234,198, 52,235,131, 16,210,234,201, 48,239,145,187, 63,127, - 82,220,233,185, 93, 95, 18, 66,246, 83, 74, 27, 28, 64,237, 65,244,132,176, 70,211,104, 52, 14, 22, 8, 4,189, 66, 66, 66, 70, - 88, 99,178, 90, 42, 78, 51,161,161,161,189, 5, 2,193, 33,189, 94, 47, 19,137, 68,124, 52, 48,145,116, 75,199,121, 63,154,193, -193,193,157,149, 74,229,123, 11, 23, 46, 20,159, 61,123, 22,133,133,133,200,205,205,197,219,111,191,141, 53,107,214,160, 83,167, - 78,176,179,179,195,244,233,211, 37,111,190,249,230,180,110,221,186,237,188,112,225, 66,140,165, 56, 9, 33, 76, 68, 68,196, 79, - 91,182,108,105, 99, 52, 26, 25, 0, 48, 24, 12, 78, 41, 41, 41, 19,231,206,157, 27, 65, 8, 25,219,144,201,106, 76,179, 87,175, - 94, 91,182,110,221,234, 39, 18,137,152,234, 15,107,215, 9, 19, 38, 76,153, 55,111, 94,127, 66,200, 75, 13,189,239, 27,187,159, -132,144, 96,153, 76,246,196,180,105,211,242, 71,142, 28,153, 1, 0, 23, 47, 94, 36,151, 46, 93,234,189,120,241,226,228,133, 11, - 23,214, 59,205,135, 5,205, 80,153, 76, 22,240,214, 91,111,229, 13, 27, 54, 44, 83, 40, 20,154,206,158, 61,203,187,118,237, 90, -159,165, 75,151, 38,126,240,193, 7,245,206,203,217,144,166, 64, 32,216,190,123,247,238, 8, 47, 47, 47, 22, 0,173, 62, 7, 37, -132, 80,134, 97, 40,195, 48, 72, 76, 76,108, 61,106,212,168, 31, 1, 60,211,152,102, 81, 81,209,196, 62,125,250, 28,159, 63,127, -190, 18, 0,142, 31, 63, 14, 62,159, 95,243,133,112,235,214, 45,104,181, 90,172, 90,181, 74, 95, 90, 90,250,138,173,215,222, 84, -254, 33,154, 62, 0,186, 3,248,131, 16, 50,128, 82,154, 95,109,174,254, 4, 16, 8,224, 84, 75,197,201, 48, 12, 88,150,173, 49, - 81,191,253,246, 27,214,172, 89,131,109,219,182,193,203,203,235, 30,131, 37, 16, 8,234,173, 35,170,231, 59, 14, 64, 85, 19, 24, -203,178, 56,127,254, 60,214,175, 95, 15, 55, 55, 55,184, 56, 59,195,197,213, 21,225,225,225, 48,103,205, 88,150,253,155,110, 93, -205,242,242,114,152, 76,214,253, 86,162,148,162,164,164,196, 98,156,102, 26, 51, 66,181,151, 6,206,213,236,154,255, 52, 26, 53, - 88,158, 30, 46,243, 70,189, 48, 88, 10,214, 8,232,203, 1,125, 5,168,190, 2, 84, 87, 14, 34,146,130, 26, 52,176,227, 21,224, -181,129,238,242, 93,103,114,110,204, 25,208,106,248,178, 63, 82, 14, 53,164, 39,151,203, 23,172, 91,183,206,241,234,213,171,136, -143,143,199,202,149, 43,177,100,201,146,154, 95, 14,207, 60,243, 12, 78,159, 62, 13,157, 78,135,249,243,231, 43,103,207,158,253, - 22,170,138, 77,109,194,195,153,191,102,199,230, 85, 74,165, 52, 31,147, 71, 94,112,254,118, 71,242, 52, 0, 95,219,170,243, 48, -152, 61,123,182,236,179,207, 62,251,159,181, 38,171,165, 8, 13, 13,237, 45, 22,139, 15, 45, 88,176,192,110,193,130, 5,205, 50, -218,111,104,104,104, 39, 62,159,191,221, 96, 48,188, 27, 27, 27,123,184, 57, 52,239, 23,177, 88, 60,227,189,247,222,147,164,167, -167,163,168,168, 8, 98,177,248,158, 15, 55,177, 88, 12,134, 97, 32, 18,137, 48, 97,194, 4,201,134, 13, 27,222, 1,240,162, 37, - 93, 15, 15,143, 87, 54,111,222,220, 70,175,215, 51,229,229,229, 16, 10,133, 16, 10,133,232,220,185, 51,111,214,172, 89, 62, 51, -103,206,124, 29,192, 55,182,196,234,228,228, 52,113,203,150, 45,126, 34,145,136,201,202,202, 66,239,222,189,113,238,220, 57,132, -135,135,243,102,205,154,229, 59,125,250,244,169, 0,214,216,162, 73, 8,241,148,201,100,157,142, 31, 63,158,166, 82,253,149, 28, -106,211,166, 13,125,250,233,167,213,241,241,241, 1,177,177,177, 5, 33, 33, 33, 86,101,172,171, 53,189,100, 50, 89,199,195,135, - 15,103, 45, 89,178,100,224,154, 53,107, 70, 2, 64,247,238,221,247, 45, 93,186,244,247,130,130,130,192,243,231,207, 23,116,239, -222,189,209,121, 63,235,224,236,225,225, 97,156, 54,109,154, 67,221, 13, 11, 23, 46,196,226,197,139,177,105,211,166, 2, 0,110, -141,137,168, 84,170, 17, 12,195, 44,238,212,169,147,124,192,128, 1, 56,126,252, 56,166, 79,159,174, 53, 24, 12, 9, 0, 48,104, -208,160, 14,139, 22, 45, 18,197,198,198,194,201,201, 73,144,149,149,245,189, 74,165,226, 10,223,173,103, 36,128,163, 0, 58,161, -202,100,141, 1,176, 11,192, 19, 0,226, 1,140,106,193,216,106, 12, 86, 70, 70, 6, 54,108,216,128,165, 75,151,194,223,223, 31, -122,189, 30,124, 62,191,198, 92,241,249,124, 16, 66, 64,173,156,167,148,101, 89, 92,184,112, 1,155, 55,111,198,252,121,243,224, -224, 80,245, 54,213,235,245, 80, 23, 22, 66, 34,145,212,152,176,198,160,148,238,188,112,225,194,204, 33, 67,134,192, 96, 48,212, - 52, 13,154,151,138,138, 10, 40, 20,138,154,201,200, 53, 26, 13, 54,108,216, 96,164,148,238,108, 76,215,108,234,120, 60, 30,254, -251,223,255, 66,171,253,107,206,241, 46, 93,186, 0, 0, 90,183,110,141,174, 93,187,214,188, 54,103,168,172,209, 92,223,187, 51, - 42,107,237, 29,176,232,115, 0,128,183,183, 55, 2, 2, 2,224,233,233,105,149,230,227, 14, 31,168,186, 72, 90,207, 68,183,217, -217,185,159,110, 90,251,253,231, 34, 1, 35, 24,212, 43, 0, 78, 98, 35,136, 76, 9, 97,196, 28, 16, 69, 43, 0, 0, 85, 39, 66, -119,120, 14,198,116,205,103, 54,107,121,123, 23, 63,237,231,186,240,224,157,122,139,235, 24,134,233,225,235,235,139,227,199,143, -163, 77,155, 54, 88,176, 96, 1, 58,118,236, 8,153, 76,134,156,156, 28,148,151,151,195,206,206, 14, 44,203, 34, 36, 36,132,231, -224,224,208, 31, 54, 26, 44, 66, 72,200, 43, 99,194,187,243,229, 29,209,123,104, 79, 28, 89, 29, 97,183,233,215,204,185,132,144, -239,105,173,201, 81, 31, 21,158,125,246, 89,228,228,228,200,182,108,217,210,100,147, 21, 30, 30,126,196,104, 52, 14,182,180,159, - 84, 42,253,243,196,137, 19, 3,108,213, 55,155,171, 13, 27, 54,216, 41, 20,138,122,127,201, 53, 65,179, 19,159,207, 63, 57,113, -226, 68,249,150, 45, 91,246,132,132,132, 60,247, 40,152, 44, 66, 72,175,182,109,219, 34, 53, 53, 21, 57, 57, 57,208,106,181,200, -201,201, 1, 0,164,167,167,195,219,219, 27, 78, 78, 78,240,246,246, 70,135, 14, 29, 8,195, 48,225,214,232,246,239,223,127, 36, - 0, 38, 49, 49, 17,121,121,121,112,116,116,132,157,157, 29,188,188,188, 48, 96,192, 0,190,159,159,223, 48,216,104,176,158,126, -250,233, 23,100, 50, 25,147,146,146,130,228,228,100,104,181, 90, 36, 36, 36,192,209,209, 17,131, 6, 13, 18,248,249,249, 69,194, - 70,131, 5, 32,104,234,212,169,185,181,205,149, 25, 59, 59, 59, 18, 16, 16,160, 86, 40, 20, 97, 0,172, 54, 88, 0,130,166, 79, -159,158, 19, 21, 21,245,100,116,116,244,108,243,202,232,232,232,247, 1,224,155,111,190, 57,174, 84, 42,195, 0,216, 98,176, 64, - 41, 53, 77,153, 50,229,182, 72, 36,130,121, 49, 27,215,207, 63,255, 28, 12,195, 56, 90, 33,243, 65,124,124,124, 23,123,123,123, -196,199,199,131,199,227,129, 16,114, 59, 51, 51,179, 11, 0,204,158, 61,251,142, 70,163,105,167,209,104, 48,106,212, 40, 50,124, -248,240,206, 43, 87,174,156, 7,224,145, 48, 88,132,144,110, 0,190, 64, 85, 1,240, 60, 74,233,185, 22, 14,233, 30, 40,165, 57, -132,144,126,248,203,100, 93, 2, 32, 70,149,185,234, 71, 41,205,105,169,216, 8, 33, 48,153, 76,224,243,249,248,252,243,207,161, -215,235,177,117,235, 86,236,218,181, 11, 12,195,128, 16, 2, 66, 8,228,114, 57,190,250,234,171,154,215,214, 96, 52, 26,177,113, -227, 70,204,153, 61,187,198, 92, 1,128, 80, 40,132,135,187, 59,156, 93, 92,144,152,152,104,209, 96,229,230,230, 46,252,229,151, - 95,208, 88,145,123,116,116,116,205,243,218, 69,238,214,196,201,227,241,160,213,106, 49,120,240, 95, 95, 31,111,189,245, 86,205, -243,194,194, 66,243,255, 4,136,149, 23,207,227,241, 80, 73,129,103, 37,127,173, 27,246,238,187, 53,207,243,243,243, 27,212,108, -200,139, 60,174, 52,154,193, 18,245, 73,249,230,238,105,166,235,232,200,158, 47, 43,229, 82,152, 74, 51, 33, 28,184, 8, 87,213, - 50,124,185,182,234,187,112,230,168, 16, 4, 13,254, 24,218,239,135, 96, 64,107,157,232,251, 88,233, 44, 0, 11,234,211,115,113, -113,113, 49, 26,141, 96, 24, 6,118,118,118, 80, 42,149,144, 74,165,200,207,207,199,140, 25, 51,112,232,208, 33,232,116, 58, 8, -133, 66,180,109,219, 22,122,189,190,157,173, 23,228,225,196, 95,191,242,243,165,138,130,196, 31,113,241, 86, 17,100,142,222,152, - 55, 53,204,105,209,234,152,133, 0,222,183, 85,239, 97, 16, 24, 24,136,183,223,126, 91,246,245,215, 95, 55,201,100, 25,141,198, -143,248,124,126,239,119,223,125, 87, 58,106,212,223,127, 16,198,197,197,225,245,215, 95,175,172,168,168,248,196,214,216, 66, 67, - 67,123,139, 68,162, 67,235,215,175,183,115,116,116, 68,106,106,170,173, 18,245,105,118,226,243,249, 39, 87,173, 90, 37,111,215, -174, 29, 4, 2,129,100,227,198,141,143,132,201, 50, 26,141,190, 50,153, 12,249,249,249,152, 57,115,230, 61, 5,170,230,230,108, - 0,136,143,143,135,183,183, 55, 52, 26,141,151, 53,186, 74,165,210,137, 82,138, 87, 95,125, 21,105,105,127,121, 19, 47, 47, 47, -164,165,165,193,104, 52, 42,109,141,213,201,201, 73,105, 48, 24, 16, 17, 17, 1,141, 70, 3, 0, 24, 51,102, 12, 4, 2, 1,114, -115,115,161,215,235,157, 45, 72,212,135,203,240,225,195, 51, 27,218,104,103,103,103,112,114,114,106,109,163,166,115,100,100,100, -198,186,117,235,158,169,187,225,252,249,243,207, 56, 58, 58, 70, 43,149,202, 0,155, 35, 5, 76, 98,177, 24, 98,177, 24, 2,129, - 0, 34,145, 8, 98,177, 24, 34,145, 8, 2,129, 0, 60, 30,207,170,118, 21,147,201,132,253,251,247,131, 97,152,123,154, 46, 22, - 44, 88,240,154, 66,161,112, 63,118,236, 88,205, 15,192,178,178, 50,180,111,223,190,237,160, 65,131, 46,103,103,103, 39,199,197, -197, 61,215,132,184,155,147,229, 0,204,117, 97,107, 0,116,109,193, 88,234,165,218,100,141, 6, 16,131, 42,115,165, 3,240, 66, - 75,154, 43, 51,102,131,101,254, 63,151, 72, 36, 8, 9, 9,169, 49, 83,132, 16, 84, 84, 84,212, 52, 17, 90,251,165, 95, 92, 92, - 12, 79, 79, 79, 56, 56, 56,160,189,191, 63,110, 39, 36, 0, 64,205,115,145, 72, 4,160,202,136, 53, 70,117, 79,192,255,162,145, -122,170,166, 96,206, 28,241,249,141,151, 97,123,122,122,194,100, 50,153,141,165,165, 12,150, 85,154, 46, 46, 46, 40, 43, 43,179, - 74,243,113,135, 15, 0,245, 57,198,197,139, 9,163, 61,221,102,195,232, 97,221, 95,126,194,219, 14,218,252, 68,136,236,157, 65, - 20,173,241,229,218,195,184,145, 92, 85, 26,245,229,174, 88,108,154,251, 20,136, 76, 9,207,202, 91,112,144,136,159, 67, 3, 6, -171,160,160,160, 76,175,215, 43,165, 82, 41,248,124, 62,132, 66, 33,242,243,243,241,225,135, 31, 98,199,142, 29,104,221,186, 53, -140, 70, 35, 68, 34, 17,242,242,242, 32, 20, 10,109,234,157,200,231,147,225,139,222,126,186,141,157,179, 63, 10, 98,151, 84,173, -148,135, 96,234, 24,158,104,197,230,235, 19, 9, 33, 43, 40,165, 77, 46,210,125, 80,216,219,219,163,107,215,174,120,233,165,151, -100, 91,183,110,253, 1,128,183, 45,199, 95,188,120,241, 84,104,104,232,144, 47,190,248,226, 72, 86, 86,150, 52, 56, 56, 24,246, -246,246,176,183,183, 71, 98, 98, 34,150, 44, 89,162,209,106,181,145, 77,201,142,241,249,252,141, 83,166, 76,177,147,203,229, 72, - 76, 76,132, 82,105,179, 15,184,135,208,208,208, 78, 2,129,224,228,170, 85,171,228,126,126,126,184,121,243, 38, 66, 67, 25, 53, - 49, 37, 0, 0, 13,102, 73, 68, 65, 84, 67,225,225,225, 33,137,138,138,106,113,147, 37, 20, 10,211,243,242,242,252,124,124,124, -176, 97,195, 6, 48, 12,131,204,204, 76,204,155, 55, 15, 81, 81, 81, 8, 15, 15,135,131,131, 3,124,124,124,112,251,246,109, 72, - 36,146, 44,107,116, 51, 50, 50,212, 0,220, 14, 29, 58,132,188,188,191,134,108,105,213,170, 21,212,106, 53,180, 90,109,129,173, -177,102,100,100, 20, 0,112,191,124,249, 50,146,147,147, 49,116,232, 80,236,221,187, 23, 97, 97, 97, 96, 89, 22, 6,131,193,102, - 77, 0, 44,143,199,107,240, 67,175,250, 23,167,147,141,154,198,198, 52, 81, 53,222,148,173,154,160,148,210,134,204,149, 72, 36, -130,133,115,154, 89,218,177, 99,199,197,109,219,182,125, 98,222,188,121, 2, 62,159,143, 62,125,250,116,152, 53,107, 86,138, 84, - 42,117,158, 51,103,142,172,158, 99,164, 0,186, 60,241,196, 19,118,182,198,252, 0,168,157,165,123, 36, 59,157, 16, 66,220, 80, -149,241, 19, 1,208, 87, 63,110, 51,215,100,181, 96, 92, 48,153, 76, 16, 10,133, 88,180,104, 17,222,120,227, 13,184,187,187, 99, -246,236,217,224,243,249, 53, 11, 80,149,149, 49,103,181,172,225,255,219, 59,247,160,166,206, 52,140, 63,223, 57,185,144,152,132, -139, 37, 2, 3, 11,214,138, 16,148,162,128, 72, 29,215,177, 45, 86,237,118,187, 59,181,182,238,106, 87,167,182,162,118,168,182, - 91,187,186,186,218, 69,106,113,187, 75,219,233, 42,222,214,203,142,142,218,177, 45,234, 86, 89,235,174,182,138, 55, 66, 84,208, - 66,226, 2, 42,169,200, 45,114, 75, 78,110,231,236, 31, 36, 49, 80, 2, 9, 70, 81, 60,191,153, 51,225,144,195,147,239, 28, 32, -231,201,251,190,223,251,113, 28,135,176, 33, 61,102,167, 93, 69,238, 61,113,175,218, 52, 56,205,144, 55,181, 80,110,209,166, 30, -143,243,135,230, 64,138, 94, 1, 30, 82,132, 46,115, 53, 53,101,142, 42, 74,138, 18,245, 37, 36,134, 91,193, 9,133,158,149,236, - 86, 16,145, 12,193, 82,129, 71,115, 64, 8, 81, 87, 85, 85,197, 4, 7, 7,195, 98,177, 64, 44, 22, 35, 49, 49, 17, 69, 69, 69, - 96, 24, 6,102,179, 25, 1, 1, 1, 16,137, 68, 40, 45, 45,133,197, 98, 57,225,237,137, 16, 66,232,176, 16,250,179,165,203,255, -172, 64,205, 86, 4, 43,196,120, 58,125, 56, 32, 75, 0,221,246, 3,254,182,226,133,193,243,255,248,213, 39,240,162, 94,230,126, - 35,151,203, 81, 93, 93,141,221,187,119,183, 51, 12,243,187,190,104, 56, 77,214,222,189,123, 11,131,131,131,165,227,198,141, 67, - 69, 69, 5,114,114,114, 76, 12,195,252,162,175,245, 93, 54,155,109,238,230,205,155, 15,219,108, 54,153,211, 92,244, 21,103,228, - 42, 43, 43, 75, 17, 27, 27, 11,157, 78,135,160,160, 32, 40, 20, 10, 60,254,248,227,136,136,136,144,100,101,101,245,171,201, 98, - 89,246,148, 78,167,123, 66,165, 82,145,184,184, 56,136,197, 98, 68, 70,118, 4,169,146,146,146,160, 82,169, 32, 18,137, 0, 0, - 58,157, 14,240,178, 47,203,119,223,125,247,117,121,121,249,188,212,212, 84, 58, 60, 60,188,211,236,164,181,107,215, 90,170,171, -171,125, 94,230,225,216,177, 99, 95, 93,186,116,233,141, 9, 19, 38, 8, 66, 66, 66, 16, 16, 16,128,196,196, 68, 68, 68, 68, 32, - 39, 39,199, 82, 89, 89,217,151,165, 35,174,105, 52, 26,201,136, 17, 35,186,205, 93,200,229,114, 5, 0, 95, 35, 15, 55,138,139, -139, 69,233,233,233, 5,223,124,243,205, 40,247, 39,210,210,210, 10,228,114,121, 16, 0,175,140,106, 23, 88,247,212,160,123,170, - 80, 44, 22, 67, 32, 16,244, 26,193,210,235,245, 7,194,195,195,255, 23, 22, 22,118,114,252,248,241, 65,231,207,159,199,202,149, - 43, 69, 12,195, 68, 59, 83, 47, 30,138,155,209,214,214, 38,249,201, 19,247,159,197, 0,242, 0, 12, 2,240,126, 47,199,222,119, - 8, 33, 97,232, 40,104,143, 71, 71, 90,240, 21,116,152, 45,103, 77, 86,191,154, 44,150,101, 33, 20, 10, 17, 31, 31,143, 37, 75, -150, 32, 55, 55, 23, 11, 23, 46, 68,108,108,172,115,252,174, 26, 44,199,140, 55,175,110,252, 34,145, 8, 97,225,225,176, 90,173, -174,232, 21, 0,104, 43, 42, 32, 16, 8,192,178, 44, 24,134,233, 53, 69, 56,100,200,144, 15,214,173, 91,151, 53,109,218, 52,202, -125,198, 29,199,113,174,182, 12,238,155,213,106,197,129, 3, 7,178,214,174, 93, 11,120, 17,245,162,105, 26, 73, 73, 73,157,210, -130,159,127,126,167, 82, 33, 57, 57, 25, 25, 25, 25, 62,205,246,163,105, 26,241,171, 63,238,148, 22,252,151,242,206,101,251,217, -107,111, 34, 54,231,179,110, 53, 7, 90,138,176,219,171,102, 41,138, 89,243,242,148,209,115, 84,145, 1,208,168, 75,113,240,236, -143, 63,212,215, 27,192,214, 94, 2, 91,119, 5,139, 95, 78, 70,194,208,193, 72, 24, 58, 24,139, 95, 78, 6,123,171, 20, 92,211, - 85,112,146, 16,220,106, 35, 30,211, 11,141,141,141,127,201,206,206,110, 10, 9, 9,129, 68, 34,129, 88, 44,198,141, 27, 55, 48, -114,228, 72,215,190,227,147, 39, 86,174, 92, 89, 87, 87, 87,151,239,237,137,200,164,212,155,185,127,156, 25, 38, 10, 80, 0,141, - 39, 16, 24, 40,199,214,252,143, 1, 70, 15, 80, 98,252, 50, 99, 52, 29, 17, 22,252, 12, 33, 36,174, 47, 23,234, 94,114,237,218, - 53,172, 94,189,186,221,104, 52,222, 85,161,123,113,113,241, 73,139,197,242, 92,126,126,190,241,224,193,131,119,109,174,156,154, - 86,171,117,234,142, 29, 59,218,174, 93,187, 6,185, 92,222, 87, 41,136, 68,162, 63,216,108,182,192,188,188, 60,118,242,228,201, -246, 69,139, 22,217,231,206,157,107,127,233,165,151,236, 25, 25, 25,246,204,204, 76, 59,195, 48, 1,131, 6, 13, 90,215,231, 23, -185, 75, 24,134,249,124,195,134, 13, 38,138,162, 32,151,203, 33, 22,139,161, 84, 42, 1,116, 24, 97,231,141,220, 98,177, 96,253, -250,245, 70,163,209,248,137, 55,186, 13, 13, 13, 91,223,123,239,189,202,194,194, 66,171,115,150,143, 94,175, 71, 78, 78,142, 37, - 63, 63,191,198, 96, 48,108,242,117,172,205,205,205,219,150, 46, 93, 90,117,232,208, 33, 43, 69, 81,104,106,106, 66,112,112, 48, -114,114,114, 44,155, 54,109,170,105,105,105,241, 89,243,169,167,158,210,213,212,212, 40, 24,134,249, 73,244, 71, 40, 20, 18,137, - 68,146, 6,224,152, 47,154,169,169,169,186,170,170,170,192, 53,107,214, 28,207,200,200,200, 85, 40, 20, 21, 10,133,162, 34, 35, - 35, 99,221,250,245,235,255,227,208, 60,218,171, 80, 23, 40,138,114, 25, 44,103,170,208, 25,197,114, 68,178,188, 74, 17,170, 84, -170, 93, 59,119,238, 12,170,168,168, 64,115,115, 51, 74, 74, 74,160, 86,171, 93,169, 92,231,205,204,125, 3,128,246,246,118,169, -175, 99,246, 55, 28,199,253,151,227,184, 36,142,227,134,115, 28,247, 32, 78,146,249, 2,119,204,213, 36,199,204,179, 73,142,253, - 81, 0,190,238,175,129, 57, 82,126,174, 15, 59, 51,103,206,196,209,163, 71, 17, 27, 27,235, 50, 85,238,179, 8,125, 49, 25,118, -187, 29,137,137,137, 96,204,230, 78, 6, 93, 32, 16, 64,169, 84, 66,167,211,185, 10,211,123, 25,227,140,105,211,166, 81,101,101, -101, 80,169, 84, 80,171,213, 80,171,213, 40, 41, 41,129, 70,163,193,197,139, 23, 81, 90, 90,138,203,151, 47, 35, 37, 37, 5,213, -213,213,152, 50,101, 10,229, 72,201,246,132, 79,209, 38, 47,163,119,247, 66,243,161,198,149, 34,116,127, 12, 11,145,205, 77,136, - 16, 64,163,185,140,130,226,198,237,132, 80,251,213,149,204,193, 41,195, 90, 96,217,251, 27, 36,206,248, 39,182, 47,155, 2, 0, - 96,111,149,194,178,111, 54,200,160, 80,104,155,101, 48,154, 13, 30, 63, 53,115, 28,119, 54, 36, 36,100,207,206,157, 59, 95,159, - 51,103,142,152,101, 89, 72,165, 82,188,243,206, 59,174, 30, 33, 52, 77, 99,225,194,133,173,183,110,221,202,227, 56, 78,231,205, - 73, 16, 66,164,145, 74,241,138, 89,111,172,148,224,250, 70,128, 18,161, 30, 99,144, 52,241,117,220,170, 42, 2,218, 46, 3, 68, -132,252,143,230,133,190, 56,247,175,155, 0,252,252,110, 47,156,191,184,114,229, 10, 86,173, 90,117,215,230,202,137, 51,146, 85, - 80, 80,176,131, 97,152, 55,252,168, 57, 53, 55, 55,247,240,144, 33, 67,250,156, 22,137,140,140,124,173,190,190,254,117, 47, 14, -237,183, 84,135, 90,173, 86,167,167,167,111,200,203,203, 91,248,246,219,111, 75,164, 82, 41, 2, 3, 3, 81, 94, 94,142,232,232, -104, 0,128,209,104,196,178,101,203,140, 86,171,117,251,185,115,231,138,188,209,229, 56,142, 37,132,204,202,204,204,156, 23, 23, - 23,247, 34,203,178,143,153,205,230,134,234,234,234, 67, 45, 45, 45,125,234,131,229,208,252,237,130, 5, 11,230,140, 24, 49, 98, -186,197, 98,121,204,102,179, 53, 92,191,126,189,160,185,185,121,107, 95, 52, 79,157, 58, 85,183,101,203,150,171, 55,111,222, 28, - 25, 17, 17,113, 59, 40, 40,200,108, 54,155,105,185, 92,174, 16,139,197, 41, 0,138, 0, 92,246, 69,243,220,185,115,181,249,249, -249, 85, 12,195,196,109,222,188,249,132, 76, 38,251,150, 16, 66, 68, 34, 81,136, 76, 38,123, 26,192,113, 0, 90, 95,199, 74, 81, - 20,235,110,168,220,163, 88, 34,145, 8,132, 16,175, 12,150, 78,167, 59,153,157,157,253,228,176, 97,195,144,159,159,223, 40,151, -203, 21,211,167, 79, 23,220,190,125,155, 0,158, 35, 88, 70,163,241, 65,136, 96, 61,232, 52,160, 35,202,251, 43,103,205,149, 91, -225,251, 23, 0, 12,253, 57, 56,142,227, 58, 25,169,232,232,232, 78,166,202,253, 57, 95, 12,150,205,102,131, 72, 36,130, 64, 32, - 64,120, 68,132,203,204,113, 28,135, 10,173, 22, 77, 77, 77,174, 54, 13, 61, 65, 81, 20, 77, 8,193,171,175,190,234,213,235,206, -156, 57, 19,199,143, 31, 71,111,233, 68,247, 25,127, 67,135,246, 92, 82,233, 52, 76, 20, 69,121, 61,139, 48, 42,170,231, 42, 23, - 79,154, 93,189,200,195, 78,183,213,104,250,198,246, 53, 91,190, 44, 89,166,111,182,237, 15, 24, 95,189,100,245,106,112,203,158, - 29, 90, 24, 37, 19, 63,151, 64,213,128,217, 52, 1, 36,176,227,102,195,181,234, 65,100,225,104, 18, 70,227,128,250,230, 77, 74, - 72,247, 24,125, 48, 24, 12,139, 63,253,244, 83,250,240,225,195, 51, 62,252,240,195,224,248,248,120,204,154, 53, 11,102,179, 25, - 23, 47, 94, 68,102,102,102, 99, 93, 93,221, 70,131,193,144,235,237, 73,132, 6, 10,254,244,201,242,231, 30,163,216, 86,160,185, - 24, 16, 4, 33,116,176, 2, 23,206,159, 0,110,159, 7, 40, 17, 64,137,145, 58, 70,133,164, 81,195, 85,132,144, 9, 28,199,125, -239,211,149,186, 71,204,159, 63,223,111,230,202, 73,113,113,241, 73, 0,195,252,165,231,212, 76, 73, 73,153,250,238,187,239, 30, -102, 89,182,187,186,148, 94,217,183,111,159, 29,128, 95, 90, 60,220, 75,172, 86,235,178,178,178, 50,188,245,214, 91, 11,102,207, -158, 45,141,143,143, 71, 76, 76, 12, 42, 42, 42, 80, 94, 94,142, 13, 27, 54,152, 88,150,221,106, 48, 24,126,239,139,174,163, 39, -213, 70,199,230, 23, 28,205, 68,255,225,216,252,194,188,121,243, 46,105,181,218,198,200,200,200,113, 52, 77, 63,137,142, 70,145, - 63, 58, 94,195,103, 35, 4, 0,153,153,153,154,171, 87,175,214,135,135,135,143, 19,137, 68,195, 29,154, 53, 0,182,246, 81,179, -225,194,133, 11,195,211,210,210, 88,154,166, 57,161, 80,200, 57,110,134,156, 64, 32,224, 8, 33,220,145, 35, 71, 36, 0,122,173, -185,188,113,227, 70,214,246,237,219, 57,185, 92, 62,174,181,181,117, 22,128, 29, 70,163, 49,205, 96,232,184,247,123,234,196,109, - 50,153, 2,250, 48,238, 71, 10,142,227,126,237,225,251,181, 0, 38,220,231,225,116, 75,118,118, 54, 54,110,220,136,222, 58,144, - 23, 20, 20, 0,189,164, 8,157,127, 43,206,250, 42,179,217,140,178,178, 50, 16, 66, 92,251,238, 77, 70,237,118,123,143,157,222, - 89,150,181,155,205,102,236,217,179,199, 43,147,181,123,247,110,152, 76, 38,176, 44,235,213,251, 44, 77,211, 24, 61,122, 52,154, -154,154, 92,173, 19,146,147,147, 93,207, 91, 44, 61, 54,174,247,168, 25, 31, 31,143,250,250,122,132,134,134, 2,232, 72, 11, 58, -177,181,245,216,247,119, 64, 65,122,250,229,186,243,193,164,161, 65, 38, 1,245,229,232, 72,118, 82,106, 76, 0, 66,131, 37,160, -133, 1,104, 54, 17,148,233, 77,248,254,114,243,117,187,141,123, 33,231,219, 74,175, 26,196, 17, 66,210, 35, 34, 34,150,219,237, -246, 81, 20, 69, 13,226, 56,174,149,166,233, 18,189, 94,255, 1,199,113,165,189, 43,220, 33, 88, 65,107, 67,100,116,144, 80, 44, -230,236, 54, 22, 0, 5, 80, 20, 64, 40, 0,180,227,177, 99,223,104,180,136,236, 44,217, 95, 91, 87,223,109,195,192,251,201,196, -137, 19, 11,219,218,218, 30,186, 78,238, 82,169,116, 21, 77,211, 3,182,147,187,147,177, 99,199,166, 74,165,210,229, 44,203,142, - 53,153, 76,225, 82,169,180,150, 16,114,190,165,165,229,163,146,146,146,211,253, 61,190, 71, 25,127,118,114,239,138,115,177,231, -208,208,208, 17, 23, 46, 92,144,184, 71,176,220,223, 47,125,153, 85,198,243,224,145,144,144,112,102,215,174, 93,169,209,209,209, -148,179,224,154,162, 40,215,230, 76, 99, 57,163, 45,167, 79,159,182, 45, 90,180,168, 72,163,209, 76,244,164, 25, 27, 27, 91,120, -244,232,209,201,238, 17, 42,167,145,234,250,181,221,110, 71,123,123, 59, 86,173, 90,245,111,173, 86,219,237, 82, 57, 42,149, 42, -111,197,138, 21, 89,207, 63,255, 60, 69, 81,212, 79,106,174,186,214, 97, 89, 44, 22,236,223,191,159,221,182,109,219,103, 87,174, - 92,241, 88,131, 53,102,204,152,235, 37, 37, 37, 81,206,150, 9, 93,183,174, 51,106, 1, 32, 61, 61,253,199, 51,103,206,120,252, -127,187, 23,154, 15, 59, 94, 27, 44,160, 99, 6,209,251,207,196,188, 66, 64,205,160, 8,155, 8, 66,196, 44,135,114, 2, 20,138, - 37,230,245,171, 14,232,141, 93,142, 79,244,119, 71, 94, 94,147,215,236, 15, 77, 66, 8,197,121,177,244, 76,127,143,147,215,244, -159,102,108,108,172, 86,171,213, 14,239, 65,199,101,176, 6,218,185, 63, 10,154, 74,165, 82,166, 84, 42,191,165, 40, 42,198,105, -162, 61, 61, 2, 0,203,178, 85,181,181,181,207,214,214,214,182,123,210,140,138,138,122, 66, 34,145,252,157,101,217,180,222,234, -139,184,142,165, 98,206,154, 76,166, 69,238,139, 61,187,107,250,107, 22, 97,215,113,142, 26, 53, 74,119,246,236,217, 39,164, 82, -105,167,186,194,174,231,236,164,178,178, 18,211,167, 79,175,214,104, 52, 67,221,142,243,187,230, 64,195,167,181, 8,185,142, 43, -182,199,177,241,240, 60, 50,120, 99,174,120, 6, 22, 70,163,177, 73,169, 84,182,154, 76, 38, 33,195, 48, 66,155,205,214,233, 6, - 39,149, 74,235, 60,253, 44,207,131,143, 35,178,233, 85,163, 96,111,113, 24,165,110,163, 81,125,225, 94,245,193,106,106,106,122, - 97,236,216,177, 71, 4, 2, 65, 64, 87,243,211,157, 25,178,219,237,166,134,134,134,169,247, 91,243, 97,199,231,197,158,121,120, -120,120, 30, 5,106,106,106,252,122,243,229,225,121, 80,208,235,245,229, 0, 98, 30,116,205,135,157,129,189,148, 53, 15, 15, 15, - 15, 15, 15, 15, 79, 63,192, 27, 44, 30, 30, 30, 30, 30, 30, 30, 30, 63,195, 27, 44, 30, 30, 30, 30, 30, 30, 30, 30, 63,195, 27, - 44, 30, 30, 30, 30, 30, 30, 30, 30, 63,243,127,112,255,137,153,247, 9, 28,230, 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, 0, 8, 6, 0, 0, 0, + 94,187, 18, 70, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 10, 77,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,119, 88,147,247, + 22, 62,223,247,101, 15, 86, 66,216,240,177,151,108,129, 0, 34, 35,172, 8,200, 16, 89,162, 16,146, 0, 97,132, 16, 18, 64,197, +133,136, 10, 86, 20, 21, 17,156, 72, 85,196,130,213, 10, 72,157,136,226,160, 40,184,103, 65,138,136, 90,139, 85, 92, 56,238, 31, +220,167,181,125,122,239,237,237,251,215,251,188,231,156,231,252,206,121,207, 15,128, 17, 18, 38,145,230,162,106, 0, 57, 82,133, + 60, 58,216, 31,143, 79, 72,196,201,189,128, 2, 21, 72,224, 4, 32, 16,230,203,194,103, 5,197, 0, 0,240, 3,121,120,126,116, +176, 63,252, 1,175,111, 0, 2, 0,112,213, 46, 36, 18,199,225,255,131,186, 80, 38, 87, 0, 32,145, 0,224, 34, 18,231, 11, 1, +144, 82, 0,200, 46, 84,200, 20, 0,200, 24, 0,176, 83,179,100, 10, 0,148, 0, 0,108,121,124, 66, 34, 0,170, 13, 0,236,244, + 73, 62, 5, 0,216,169,147,220, 23, 0,216,162, 28,169, 8, 0,141, 1, 0,153, 40, 71, 36, 2, 64,187, 0, 96, 85,129, 82, 44, + 2,192,194, 0,160,172, 64, 34, 46, 4,192,174, 1,128, 89,182, 50, 71, 2,128,189, 5, 0,118,142, 88,144, 15, 64, 96, 0,128, +153, 66, 44,204, 0, 32, 56, 2, 0, 67, 30, 19,205, 3, 32, 76, 3,160, 48,210,191,224,169, 95,112,133,184, 72, 1, 0,192,203, +149,205,151, 75,210, 51, 20,184,149,208, 26,119,242,240,224,226, 33,226,194,108,177, 66, 97, 23, 41, 16,102, 9,228, 34,156,151, +155, 35, 19, 72,231, 3, 76,206, 12, 0, 0, 26,249,209,193,254, 56, 63,144,231,230,228,225,230,102,231,108,239,244,197,162,254, +107,240,111, 34, 62, 33,241,223,254,188,140, 2, 4, 0, 16, 78,207,239,218, 95,229,229,214, 3,112,199, 1,176,117,191,107,169, + 91, 0,218, 86, 0,104,223,249, 93, 51,219, 9,160, 90, 10,208,122,249,139,121, 56,252, 64, 30,158,161, 80,200, 60, 29, 28, 10, + 11, 11,237, 37, 98,161,189, 48,227,139, 62,255, 51,225,111,224,139,126,246,252, 64, 30,254,219,122,240, 0,113,154, 64,153,173, +192,163,131,253,113, 97,110,118,174, 82,142,231,203, 4, 66, 49,110,247,231, 35,254,199,133,127,253,142, 41,209,226, 52,177, 92, + 44, 21,138,241, 88,137,184, 80, 34, 77,199,121,185, 82,145, 68, 33,201,149,226, 18,233,127, 50,241, 31,150,253, 9,147,119, 13, + 0,172,134, 79,192, 78,182, 7,181,203,108,192,126,238, 1, 2,139, 14, 88,210,118, 0, 64,126,243, 45,140, 26, 11,145, 0, 16, +103, 52, 50,121,247, 0, 0,147,191,249,143, 64, 43, 1, 0,205,151,164,227, 0, 0,188,232, 24, 92,168,148, 23, 76,198, 8, 0, + 0, 68,160,129, 42,176, 65, 7, 12,193, 20,172,192, 14,156,193, 29,188,192, 23, 2, 97, 6, 68, 64, 12, 36,192, 60, 16, 66, 6, +228,128, 28, 10,161, 24,150, 65, 25, 84,192, 58,216, 4,181,176, 3, 26,160, 17,154,225, 16,180,193, 49, 56, 13,231,224, 18, 92, +129,235,112, 23, 6, 96, 24,158,194, 24,188,134, 9, 4, 65,200, 8, 19, 97, 33, 58,136, 17, 98,142,216, 34,206, 8, 23,153,142, + 4, 34, 97, 72, 52,146,128,164, 32,233,136, 20, 81, 34,197,200,114,164, 2,169, 66,106,145, 93, 72, 35,242, 45,114, 20, 57,141, + 92, 64,250,144,219,200, 32, 50,138,252,138,188, 71, 49,148,129,178, 81, 3,212, 2,117, 64,185,168, 31, 26,138,198,160,115,209, +116, 52, 15, 93,128,150,162,107,209, 26,180, 30, 61,128,182,162,167,209, 75,232,117,116, 0,125,138,142, 99,128,209, 49, 14,102, +140,217, 97, 92,140,135, 69, 96,137, 88, 26, 38,199, 22, 99,229, 88, 53, 86,143, 53, 99, 29, 88, 55,118, 21, 27,192,158, 97,239, + 8, 36, 2,139,128, 19,236, 8, 94,132, 16,194,108,130,144,144, 71, 88, 76, 88, 67,168, 37,236, 35,180, 18,186, 8, 87, 9,131, +132, 49,194, 39, 34,147,168, 79,180, 37,122, 18,249,196,120, 98, 58,177,144, 88, 70,172, 38,238, 33, 30, 33,158, 37, 94, 39, 14, + 19, 95,147, 72, 36, 14,201,146,228, 78, 10, 33, 37,144, 50, 73, 11, 73,107, 72,219, 72, 45,164, 83,164, 62,210, 16,105,156, 76, + 38,235,144,109,201,222,228, 8,178,128,172, 32,151,145,183,144, 15,144, 79,146,251,201,195,228,183, 20, 58,197,136,226, 76, 9, +162, 36, 82,164,148, 18, 74, 53,101, 63,229, 4,165,159, 50, 66,153,160,170, 81,205,169,158,212, 8,170,136, 58,159, 90, 73,109, +160,118, 80, 47, 83,135,169, 19, 52,117,154, 37,205,155, 22, 67,203,164, 45,163,213,208,154,105,103,105,247,104, 47,233,116,186, + 9,221,131, 30, 69,151,208,151,210,107,232, 7,233,231,233,131,244,119, 12, 13,134, 13,131,199, 72, 98, 40, 25,107, 25,123, 25, +167, 24,183, 25, 47,153, 76,166, 5,211,151,153,200, 84, 48,215, 50, 27,153,103,152, 15,152,111, 85, 88, 42,246, 42,124, 21,145, +202, 18,149, 58,149, 86,149,126,149,231,170, 84, 85,115, 85, 63,213,121,170, 11, 84,171, 85, 15,171, 94, 86,125,166, 70, 85,179, + 80,227,169, 9,212, 22,171,213,169, 29, 85,187,169, 54,174,206, 82,119, 82,143, 80,207, 81, 95,163,190, 95,253,130,250, 99, 13, +178,134,133, 70,160,134, 72,163, 84, 99,183,198, 25,141, 33, 22,198, 50,101,241, 88, 66,214,114, 86, 3,235, 44,107,152, 77, 98, + 91,178,249,236, 76,118, 5,251, 27,118, 47,123, 76, 83, 67,115,170,102,172,102,145,102,157,230,113,205, 1, 14,198,177,224,240, + 57,217,156, 74,206, 33,206, 13,206,123, 45, 3, 45, 63, 45,177,214,106,173,102,173,126,173, 55,218,122,218,190,218, 98,237,114, +237, 22,237,235,218,239,117,112,157, 64,157, 44,157,245, 58,109, 58,247,117, 9,186, 54,186, 81,186,133,186,219,117,207,234, 62, +211, 99,235,121,233, 9,245,202,245, 14,233,221,209, 71,245,109,244,163,245, 23,234,239,214,239,209, 31, 55, 48, 52, 8, 54,144, + 25,108, 49, 56, 99,240,204,144, 99,232,107,152,105,184,209,240,132,225,168, 17,203,104,186,145,196,104,163,209, 73,163, 39,184, + 38,238,135,103,227, 53,120, 23, 62,102,172,111, 28, 98,172, 52,222,101,220,107, 60, 97, 98,105, 50,219,164,196,164,197,228,190, + 41,205,148,107,154,102,186,209,180,211,116,204,204,200, 44,220,172,216,172,201,236,142, 57,213,156,107,158, 97,190,217,188,219, +252,141,133,165, 69,156,197, 74,139, 54,139,199,150,218,150,124,203, 5,150, 77,150,247,172,152, 86, 62, 86,121, 86,245, 86,215, +172, 73,214, 92,235, 44,235,109,214, 87,108, 80, 27, 87,155, 12,155, 58,155,203,182,168,173,155,173,196,118,155,109,223, 20,226, + 20,143, 41,210, 41,245, 83,110,218, 49,236,252,236, 10,236,154,236, 6,237, 57,246, 97,246, 37,246,109,246,207, 29,204, 28, 18, + 29,214, 59,116, 59,124,114,116,117,204,118,108,112,188,235,164,225, 52,195,169,196,169,195,233, 87,103, 27,103,161,115,157,243, + 53, 23,166, 75,144,203, 18,151,118,151, 23, 83,109,167,138,167,110,159,122,203,149,229, 26,238,186,210,181,211,245,163,155,187, +155,220,173,217,109,212,221,204, 61,197,125,171,251, 77, 46,155, 27,201, 93,195, 61,239, 65,244,240,247, 88,226,113,204,227,157, +167,155,167,194,243,144,231, 47, 94,118, 94, 89, 94,251,189, 30, 79,179,156, 38,158,214, 48,109,200,219,196, 91,224,189,203,123, + 96, 58, 62, 61,101,250,206,233, 3, 62,198, 62, 2,159,122,159,135,190,166,190, 34,223, 61,190, 35,126,214,126,153,126, 7,252, +158,251, 59,250,203,253,143,248,191,225,121,242, 22,241, 78, 5, 96, 1,193, 1,229, 1,189,129, 26,129,179, 3,107, 3, 31, 4, +153, 4,165, 7, 53, 5,141, 5,187, 6, 47, 12, 62, 21, 66, 12, 9, 13, 89, 31,114,147,111,192, 23,242, 27,249, 99, 51,220,103, + 44,154,209, 21,202, 8,157, 21, 90, 27,250, 48,204, 38, 76, 30,214, 17,142,134,207, 8,223, 16,126,111,166,249, 76,233,204,182, + 8,136,224, 71,108,136,184, 31,105, 25,153, 23,249,125, 20, 41, 42, 50,170, 46,234, 81,180, 83,116,113,116,247, 44,214,172,228, + 89,251,103,189,142,241,143,169,140,185, 59,219,106,182,114,118,103,172,106,108, 82,108, 99,236,155,184,128,184,170,184,129,120, +135,248, 69,241,151, 18,116, 19, 36, 9,237,137,228,196,216,196, 61,137,227,115, 2,231,108,154, 51,156,228,154, 84,150,116, 99, +174,229,220,162,185, 23,230,233,206,203,158,119, 60, 89, 53, 89,144,124, 56,133,152, 18,151,178, 63,229,131, 32, 66, 80, 47, 24, + 79,229,167,110, 77, 29, 19,242,132,155,133, 79, 69,190,162,141,162, 81,177,183,184, 74, 60,146,230,157, 86,149,246, 56,221, 59, +125, 67,250,104,134, 79, 70,117,198, 51, 9, 79, 82, 43,121,145, 25,146,185, 35,243, 77, 86, 68,214,222,172,207,217,113,217, 45, + 57,148,156,148,156,163, 82, 13,105,150,180, 43,215, 48,183, 40,183, 79,102, 43, 43,147, 13,228,121,230,109,202, 27,147,135,202, +247,228, 35,249,115,243,219, 21,108,133, 76,209,163,180, 82,174, 80, 14, 22, 76, 47,168, 43,120, 91, 24, 91,120,184, 72,189, 72, + 90,212, 51,223,102,254,234,249, 35, 11,130, 22,124,189,144,176, 80,184,176,179,216,184,120, 89,241,224, 34,191, 69,187, 22, 35, +139, 83, 23,119, 46, 49, 93, 82,186,100,120,105,240,210,125,203,104,203,178,150,253, 80,226, 88, 82, 85,242,106,121,220,242,142, + 82,131,210,165,165, 67, 43,130, 87, 52,149,169,148,201,203,110,174,244, 90,185, 99, 21, 97,149,100, 85,239,106,151,213, 91, 86, +127, 42, 23,149, 95,172,112,172,168,174,248,176, 70,184,230,226, 87, 78, 95,213,124,245,121,109,218,218,222, 74,183,202,237,235, + 72,235,164,235,110,172,247, 89,191,175, 74,189,106, 65,213,208,134,240, 13,173, 27,241,141,229, 27, 95,109, 74,222,116,161,122, +106,245,142,205,180,205,202,205, 3, 53, 97, 53,237, 91,204,182,172,219,242,161, 54,163,246,122,157,127, 93,203, 86,253,173,171, +183,190,217, 38,218,214,191,221,119,123,243, 14,131, 29, 21, 59,222,239,148,236,188,181, 43,120, 87,107,189, 69,125,245,110,210, +238,130,221,143, 26, 98, 27,186,191,230,126,221,184, 71,119, 79,197,158,143,123,165,123, 7,246, 69,239,235,106,116,111,108,220, +175,191,191,178, 9,109, 82, 54,141, 30, 72, 58,112,229,155,128,111,218,155,237,154,119,181,112, 90, 42, 14,194, 65,229,193, 39, +223,166,124,123,227, 80,232,161,206,195,220,195,205,223,153,127,183,245, 8,235, 72,121, 43,210, 58,191,117,172, 45,163,109,160, + 61,161,189,239,232,140,163,157, 29, 94, 29, 71,190,183,255,126,239, 49,227, 99,117,199, 53,143, 87,158,160,157, 40, 61,241,249, +228,130,147,227,167,100,167,158,157, 78, 63, 61,212,153,220,121,247, 76,252,153,107, 93, 81, 93,189,103, 67,207,158, 63, 23,116, +238, 76,183, 95,247,201,243,222,231,143, 93,240,188,112,244, 34,247, 98,219, 37,183, 75,173, 61,174, 61, 71,126,112,253,225, 72, +175, 91,111,235,101,247,203,237, 87, 60,174,116,244, 77,235, 59,209,239,211,127,250,106,192,213,115,215,248,215, 46, 93,159,121, +189,239,198,236, 27,183,110, 38,221, 28,184, 37,186,245,248,118,246,237, 23,119, 10,238, 76,220, 93,122,143,120,175,252,190,218, +253,234, 7,250, 15,234,127,180,254,177,101,192,109,224,248, 96,192, 96,207,195, 89, 15,239, 14, 9,135,158,254,148,255,211,135, +225,210, 71,204, 71,213, 35, 70, 35,141,143,157, 31, 31, 27, 13, 26,189,242,100,206,147,225,167,178,167, 19,207,202,126, 86,255, +121,235,115,171,231,223,253,226,251, 75,207, 88,252,216,240, 11,249,139,207,191,174,121,169,243,114,239,171,169,175, 58,199, 35, +199, 31,188,206,121, 61,241,166,252,173,206,219,125,239,184,239,186,223,199,189, 31,153, 40,252, 64,254, 80,243,209,250, 99,199, +167,208, 79,247, 62,231,124,254,252, 47,247,132,243,251, 37,210,159, 51, 0, 0, 0, 4,103, 65, 77, 65, 0, 0,177,142,124,251, + 81,147, 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, 38, 58, 73, 68, 65, 84,120,218,236,157,119,120, 20,197, 31,198, +223,217,221,235,119,233,164, 7, 2,161, 67,168, 1,148, 38,189, 55, 65, 80, 64, 44,216, 64, 69,127, 88, 40, 22,164, 40,160,168, + 40, 42, 34, 88, 80, 16, 16, 84,154,116,164,119,130,148,208, 91, 32, 13, 72, 66,250,245,219,157,223, 31,201,157,151,227,146,187, +131, 80,157,207,243,220,115,101,119,223,155,221,157,153,125,247, 59,101, 9,165, 20,183, 11, 66, 72, 3, 74,233, 49,166,201, 52, +153, 38,211,100,154, 76,147,105, 50,205,255, 18,220, 77, 28,212, 10,119,100,132, 16, 90,242,106,119,175,107,222,198,125,167, 21, +168,217,174, 68,115,226,125,146,206,118,247,170,166,125,127, 43, 82,215,249, 24, 86,212,241,116, 74, 39,173,232,116,222, 46,205, +138, 46,151, 21,153, 71,221,156,247,137,247, 73, 58,219,221,107,154,174,249,167, 34,116,221,229,201, 91, 61,158,110,210, 73, 43, + 58,157,183, 75,179,162,175,151, 21,149, 71,203, 57,247, 21,118,109,186,151, 17,238,182,193, 0, 0, 74, 41,113,210, 39,247,170, +166,243,113,176,235, 87,100, 90, 43,144,173, 21,173,233,114, 60, 43,138,137,148, 82, 66, 8,217, 6,160, 93, 69,238,123, 69,156, +119,151,125,173, 16,221,219,105,174, 42, 50,223,223,110,205,138, 42, 75,174,154, 21,145,239,221,157,247,219,120,142, 42, 42,157, + 21, 82,150,110, 71,158,119,147,127,110, 89,215, 85,179, 34,202,146,171,102, 69,228,251, 59,161, 89, 17,101,201,157,102, 69,228, +251,178,206, 61,139, 96,221, 25, 35,224, 90,176,219,223,203, 70,232, 54, 71,177,218,221, 15,154, 21,124,142, 38,150,104, 86,228, +221, 76,251,138, 58, 71,174,121,167, 34,238,186,156, 53, 43, 42,111,186, 73,231, 45,159, 39,119,154,183,154,222, 50,210, 89,225, +251,126,171,249,254, 78,105, 86,240, 57,170,144,178,228,162,217,190,130,111, 2,218, 87,100, 89,114,214,172,168,178,228, 38,157, +183,124,158,220,105,222,106,122,203, 72,103,133,239,123, 5, 70, 68, 43, 92,247,129,139, 96,221, 78,115,117, 59,204,155,253, 46, +169,162, 47,100, 21,105,178,110, 87,164,173,162,162, 56,110,116,183, 85,160,220,214,138, 78,103, 73,250,200,237, 48,194,148,210, +137,132,144, 15,238,229, 2,205,202, 18, 43, 75,247, 90, 89,114,151,111,110,181, 44,221,174,155,103,103,205,138, 50, 66,110,246, +253,150,202,146,235,182, 21, 81,150, 60,104,146,219,177,255, 21, 93,158,238, 69,184,123, 37, 33,183,161,127, 15,189, 29, 81,177, +219,184,223, 21,153,206,246,247,195,190,223,142,116, 18, 66, 38,222,166,125,191, 95,142, 41, 43, 75,172, 44,221,115,101,201, 37, + 79,182,175,168,200, 80, 69,223, 72,185,106, 86,100, 63,164,138,204,163,183,123,223, 43,178, 44,221,142,115,127,191,224,115, 4, +235,118,221, 29,223, 15,154,183, 67,251, 54,237,251,182,219,113,119,112, 27,250,117, 85,120, 58, 41,165, 19, 81,129, 77,142,246, +125,174,200,180,222,206,102,194,219,145, 55,111,103,126,175,200,126, 30,183,105,223,239,151,243, 94,225,233,172,168,178,228,230, +156,223,114, 90,221, 29,191,138,110,194,174,200,188,121, 59, 53, 43, 66,251,118,164,243,118,157,251,251, 9,114, 59,167,105, 96, + 48, 24, 12, 6,131,193,248, 47, 82,102, 4,171,105,211,166,171, 85, 42, 85,141,178,150,235,245,250,140,195,135, 15,119, 96,135, +144,193, 96,120,188,147, 35,132,195,191, 93, 18,164,226,155, 89,118,119,199, 96, 48,254,131, 6, 75, 46,151,199,109,223,190,189, +150, 36, 73,176,217,108, 16, 69, 17,162, 40,194,102,179,193,108, 54,227,177,199, 30,243,185,121,177,113,227,198,219, 57,142,171, +234,203, 54,162, 40, 94, 62,114,228, 72,155,178,150,135,135,135,239, 6, 16, 71, 8,113,174,204, 97,255,238,252, 59,199, 57,186, +156,165,167,164,164, 52, 45, 79,147, 16, 18,231,172,231,170,229, 70,183, 92,205, 58,117,234, 28, 20, 4, 33,198,221,246,101,105, + 75,146,116,225,216,177, 99,173, 88, 54,189, 51, 52,110,220,120, 59,207,243, 62,231,207,195,135, 15,151,153, 63, 27, 52,104,240, + 15,199,113, 81,238,206,113, 25,249,137, 23, 69,241,244,145, 35, 71,218,148,101, 64, 34, 35, 35,119, 83, 74,227,188,204,151,118, + 82, 83, 82, 82,154,121, 42, 71,229,165,211,141,118,185,154,206,230, 42, 58, 58,122,122,104,104,232, 72,189, 94,111, 4, 64, 57, +142,163,245,234,213, 43,165, 47,138, 98,230,201,147, 39, 27,176,156,200, 96, 48, 30,104,131, 37, 73, 18,103, 50,153,112,230,204, + 25,184,171,231, 57,142, 19,125,253, 51, 74,105,173,205,139, 22,132,169, 67,195, 33, 90,204, 80, 86, 10,115,104,231,158, 56, 6, +209, 98,129,100,181,160, 82,179,135,237,105, 64,251,246,237,121, 15,178, 49,163, 71,143, 14,243,243,243,131,209,104,132,209,104, +132,201,100,130,201,100,130,217,108,134,217,108,134,197, 98,129,197, 98,129,213,106,133,201,100,194,177, 99,199, 68, 15, 23,132, +152,215, 94,123,205,161,105, 50,153, 96, 52, 26, 29, 90, 38,147,201,161,105, 54,155, 97, 50,153,112,252,248,241,114, 53, 5, 65, +136, 57,116,232, 80,152, 92, 46, 7,165, 20,146, 36,129, 82, 90,234,229,114,172,208,186,117,107, 11,203,162,119,148, 90,203, 63, +254, 40, 76, 25, 82, 9,146,213,138,144,198, 9,142,115,145,182,121, 29, 36,171, 21,146,213,138,216, 62, 3, 28,191,183,107,215, +206, 83,254,140,253,125,194,248, 64,185,159, 31,108, 70, 35,170,245,238,239, 88,144,244,237, 76, 80,171, 21,212,102, 65,195, 55, +222, 3, 0,100,101,101, 25,234,214,173,155,142,226,126, 10,101, 69,120, 98, 46, 94,188, 24,102, 79,131,171, 81,231, 56,174,212, +107,231,206,157, 24, 54,108,152,167,125,143,121,247,221,119,195,236,101,196, 57,175, 91,173, 86, 71,249,177,217,108,176, 90,173, + 48,155,205,248,231,159,127,188,138, 92, 69, 70, 70,126,220,182,109,219,225, 11, 23, 46,212,254,249,231,159,218,106,213,170, 65, + 46,151,131,231,121,240, 60, 15,142,227,192,243, 60,250,245,235, 71, 88, 22,100, 48, 24, 15,188,193,178, 88, 44, 23,187,118,237, + 74, 1,192,108, 54, 71, 43, 20, 10,185,139, 1,139,106,221,186,245,105,215,237, 60, 53, 29,170, 67,195,241, 99,181, 96, 0,192, +160,243,217,142,139,194,178, 71,154, 56,214, 25,114, 41,175,120, 93,181, 26, 28,199, 17, 15, 21, 56,116, 58, 29,186,118,237, 10, +133, 66,129,132,132, 4,200,229,114,200,100,178, 50, 95,222,160,213,106, 49,105,210, 36,187, 57,130, 86,165,196,203,109, 31,134, +138, 80,252,120,228, 20, 76,162, 4, 65, 16, 32, 8, 2,100, 50,217, 13, 17, 41,119,200,229,114, 28, 59,118, 12, 60,207, 67, 16, +132, 82,239, 60,207, 99,213,170, 85, 24, 56,112, 32,120,158,135, 70,163, 1,254, 67,157, 1,239, 21,148, 33,149,240,123,187,226, + 64,228,147, 41, 5,142,223,215, 13,238,227,248,252, 84, 90, 17, 8, 33,144,203,229,222,157,119, 63, 63,172, 25,216, 3, 0, 48, +224,204, 53, 71,158, 57, 58,243, 35,200, 20, 10, 8, 50, 57, 26,140,126, 23, 89, 89, 89,134, 1, 3, 6,236, 84,169, 84,235,189, +184, 89,193,229,203,151, 29, 90, 50,153,236,134,124,207,113, 28,126,250,233, 39, 92,186,116,201,171,125, 55, 24, 12,152, 58,117, +170, 99,223,220,233, 58,127,246,180,239,132, 16, 46, 34, 34,226,195,182,109,219, 14, 91,184,112, 97, 16, 33, 4,179,103,207,134, + 32, 8,232,213,171, 23, 66, 66, 66,176, 97,195, 6,200,229,114,188,253,246,219, 44,243, 49, 24,140,255,134,193, 58,124,248,112, + 15,251,231,135, 31,126,248,228,206,157, 59,235, 56,133,242, 97,179,217,228, 54,155,173,150,189,217,208,102,179,193,100, 50, 97, +200,144, 33,229,222,209,139, 22,243, 13, 6,169, 44,227,228, 45,102,179, 25,131, 6, 13,114,152,152,242,204,149,151, 23, 6,152, + 76, 38, 8,130,128,234, 85, 66,241,222,160,102,104,205, 83, 24,178, 1,100, 21,225,153, 72, 1,135, 99,106,225,171,203,217,184, +148, 95, 8, 65,240,174,181, 84,146,164, 82,134,202,245,243,156, 57,115, 48,120,240, 96,240, 60,127, 67, 19, 18,227,206, 32, 89, +173, 30,243,161,175,231,198,102, 52, 2, 0,120, 39, 67, 46,147,201,160, 80,169,192,203,100, 16, 20,114,100,101,101, 25,186,116, +233,178, 87,173, 86,255, 28, 17, 17,145,150,154,154, 90,110,254,164,148, 66, 38,147, 65, 16,132, 50,243,252, 79, 63,253,132, 5, + 11, 22,160, 69,139, 22, 94,229,121,179,217, 12,185, 92,142,159,126,250,233,134,229,239,191,255,254, 13, 6,203,131, 30, 1,192, +133,135,135,191,188,104,209, 34,127,251,255,135,132,132, 64, 38,147, 33, 62, 62, 30,126,126,126,216,185,115, 39, 68, 81,244,218, +172, 50, 24,140,255, 44, 50, 0,141, 1,132, 2, 16, 1, 20, 0, 8,116, 90,158, 89,242, 30,234,244,253,128, 27,157,230, 37,235, +216,151,219,191,155, 1, 40,220,252,158, 13, 64, 93,242, 50, 1,216, 13, 32,222,233,127,236,219,193,245,127,133,146,202,176, 29, +128,173, 0,218,187,155,252,206,222, 92,120,234,212, 41,120,234,151,234,105,120,167,178, 82,152, 35,114,181,180,122,136,227,247, +193,201,185,142, 10,118, 77,139,154, 80,234,180,104, 54,113,134,199, 35,110,191, 48, 92,187,118,237,134, 59,239,155, 53, 88, 0, + 96,181, 90,161, 86, 43,177,229,187, 71,144,113,193,134,143, 86,167, 96,197,254,139, 16, 4, 1,189,235,212,196, 99, 54, 96,122, +176, 10, 47,217, 68, 88, 36,234,213, 5,140, 82,122,131,185,114, 54, 89,132, 16,199,111,236, 98,115,119, 8,105,156,224,136, 92, + 45,172,236,119, 67,212, 10, 0, 86, 52,169, 10,149,159, 14,241,175,143,243, 42,127, 86,235,221,223, 17,185,250, 43, 33, 14,130, + 92, 14,153, 82,129,199,142,164, 0, 40,110, 22,236,216,176,222,182, 92, 94, 49,255,233,167,159,190,176,121,243,102,141, 55,105, +149,203,229,165, 12,155, 59,115, 37, 8, 2,172, 46,166,177,188,155,138,178,140,147,189, 92,249, 18,193, 2, 0,189, 94,111, 94, +177, 98, 5,190,250,234, 43,132,132,132,160,107,215,174,136,136,136,192,178,101,203, 64, 41,197,171,175,190, 10,181, 90, 13,181, + 90,205,242, 60,131,241, 31,199,131, 23,121,100,252,248,241,205,166, 79,159, 62,181,101,203,150,139,119,239,222,189,136, 16,178, +218,201,123,244, 46,209, 88,237,244,189,185,139,201,146, 1, 8, 37,132,172,182,175,239,252,221,233,247,206, 0, 20,246,239,227, +199,143,143,159, 62,125,250,212,113,227,198,189, 51,109,218, 52,249,248,241,227, 27, 78,159, 62,125,170,253,127,220,165,195, 57, +130, 85,238, 44,192, 22,139,229, 98,231,206,157,189, 26,241, 99, 48, 24,174,120, 48, 96,110, 35, 3,206, 81, 1,165,159, 14,106, + 63, 63, 16,206,187, 10,215,106,181, 66, 16, 4,112, 28,135,141, 27, 55, 66,173, 86,163,103,207,158, 55,221, 68,104, 55,109, 10, +133, 28, 66, 32,135,167, 63, 63,136,204, 28,189,163, 73,112, 83,114, 10,246,171,213,120,175, 94, 67,232, 10,147,145,111, 50,223, + 82, 4,107,240,224,193, 48, 26,141,224, 56,206,241, 27,199,113,248, 47, 61,179,233, 30, 44,232,110,191, 19, 66,160,242,247,131, + 74,167, 3, 47,240, 94,105, 81, 74,255, 53, 66, 10, 5,100, 74, 5, 4,185,220, 97,174,186,116,233,178, 55,151, 87,204, 79, 75, + 75,219, 11, 64,229,173,193,178, 71,176,202, 51, 87,130, 32,192, 98,177,120,101, 94, 76, 38, 19,228,114,185,215, 6,203,195, 62, + 83, 66,136, 68, 8,145,226,226,226, 28,219,132,135,135, 35, 48, 48, 16,146, 36, 65,146, 36,168, 84, 42,168,213,234, 50,255,151, +193, 96,252,167, 40,207,139, 40,167, 79,159, 62,213,217,192,184, 26, 26,103,227,228, 98,162,156, 77, 90,188,135,186,127,181,171, +105,178,255, 47, 33,100,245,180,105,211,122,123, 72, 71,166,171,193, 42,119,154,125,231,230,194,138,186,120,149,119, 1, 83, 7, +248, 67,161,213,162,164,251, 21,245,164,101,177, 88, 28,125, 78, 70,142, 28, 89,230, 93,189,115,223, 20, 79,152,205,102,240, 28, + 15, 40,171, 65,194, 62,199,197,202,241,146,203,145, 92,165, 17,200,149, 52, 8,130,119,253,253,237, 17, 44,187,137,122,245,213, + 87, 49,111,222, 60, 71,199,100, 0,224,121, 30,181,107,215,198,249,243,231, 89, 81,187, 11, 80, 74, 61, 54, 91,171,252,253,160, +212,233,192,123, 17,105,180, 47,119,244, 97, 82, 41,193,203,229, 16,228,197,205,130,125,251,246,221,150,155,155, 59,191,126,253, +250,103, 81, 60,141, 1,241,182,252,184,203,231,243,231,207, 47,101,174,124,137, 96,217,203,145, 51,189,122,245, 42,245, 14, 0, + 3, 6, 12,240, 54,130, 69, 9, 33, 84, 38,147,161,115,231,206,104,216,176, 33, 86,172, 88, 1, 73,146,240,202, 43,175, 64,173, + 86,227,139, 47,190,128,205,102,195,244,233,211, 89, 4,139,193, 96,148,231, 69, 12,227,198,141,123,135, 16,178,186, 36,146,148, + 84,142,145,114, 71,115, 23,147,150, 89,198, 53,160,183, 59,147,229,252,217,206,248,241,227,227,221,164,227,192, 13, 6,203,201, + 53,222, 86,114, 79, 28,115,116,104,183, 55, 11, 18, 66,176,174, 85, 29, 40,116, 90,168,116, 58,180, 89,190,195,113,215,140, 15, + 63,243, 42,130,101, 55, 78,217,217,217, 30,155, 8,189,141,138,241,114, 25,246,234,100,160, 50,190,212, 5, 75, 38,147,129, 19, +100, 72, 14,173, 5, 34,108,128, 32,218,188,186, 56,216, 35, 25,206,163,167,158,126,250,105,112, 28,231, 48, 89, 77,154, 52, 41, +149,215, 88,113,187,179,164,255,189, 30,107,159, 40, 46,171,206,205,130,171, 91,212,128,210, 79, 7,165, 86,139,118,171,118, 59, +154,115,241,197, 92,143,154,167,126,248, 6, 73, 95, 78,131, 32,147,161,255,161,100, 71,228,170,117,157,154,123,205, 90,255,249, +151, 47, 95,222, 11,128,123,226,137, 39, 2,155, 54,109,202,123, 89, 9,149,234,120, 46, 8,130, 91,115, 37, 8, 2,108, 54,155, + 87,251,110,177, 88,188,138, 36,217,163, 88, 94,228,119, 90,183,110, 93,240, 60,143,128,128, 0,248,249,249, 57, 70,208,218, 35, + 87,246,254,155,222,150, 75, 6,131,241,192,223,228,150,229, 69, 76,211,166, 77, 75,154, 54,109,154, 35,146,228, 26,193, 42,131, + 94, 37,102, 42,212,110,206, 80,220,151,234, 64, 57,105,232, 93,150,241,114,254,109,250,244,233, 83,221,164,195,209, 44,233,182, +119,118,227,198,141,215,106, 52,154,106,222, 30, 16, 95, 38, 29, 21, 45,150, 27,238,196, 9, 33, 80,233,116, 80,248,233,160,212, +233,202,140,114,149,117,161,177, 55, 17,242, 60,239,184,232,252,252,243,207,208,233,116,120,246,217,103,111,170,147,123,177,193, +226,177, 82,126, 6,144, 11, 55, 92,180,120,153, 12,151, 3, 42,131,147,201, 32,136,222, 69, 8,242,242,242,192,243, 60, 62,248, +224, 3, 76,159, 62,221, 49,140,222,121,104,189,115,212,131,113,231,113,238,228, 94, 42,170,234,231,231,200,159,206,191,123,234, +147, 72, 8, 1, 68, 91,241,104, 65,165,194, 97,174,250,246,237,187,205,172,245,159, 95,167, 78, 29,123,228,138,211,104, 52, 30, + 71,205, 58,151, 13,187,209,113, 53, 87,246, 40,169,253,179,213,106,245, 42,207,219, 13,214,164, 73,147, 28,101,197, 57,114,229, +106,176,188,205,167, 28,199, 97,251,246,237, 56,116,232, 16, 70,142, 28, 9,181, 90,141, 89,179,102,193,102,179, 97,242,228,201, + 80,171,213, 80, 40, 20, 44,243, 49, 24,140,242, 8,178, 27,156, 18,147, 84, 42,178, 68, 41,237,237,108,130,202,106, 42, 44,137, + 56,109,247,240, 95,127,149, 24, 51,183,216, 35,105, 46,117,232,106, 87,115, 38,216, 29,163,243,187, 66,161,168,182,107,215,174, + 90,146, 36, 65, 20, 69,148,247,110, 54,155,241,248,227,143,123, 61,233,168,100, 45, 54, 88,156,203, 72, 57,165,191, 31, 20,186, +127, 47, 96, 78, 23, 49,143,181,184, 61,130,229,108,176, 62,248,224, 3, 8,130,128,121,243,230, 1, 0,222,122,235, 45,159, 35, + 88, 84, 2,118,139, 91, 17, 53,187, 17,232,124, 21,174,110, 63, 9,153, 76,134,136, 22, 93, 32, 53,123, 12,217, 10,127,104, 75, +250, 85,121,211,236,152,157,157,141, 75,151, 46,129, 16,130, 55,222,120,163, 92,115,181,113,227, 70,214, 7,235, 46, 26, 44,142, +231, 75,157, 15,231,252,233, 98,190, 60,183,147,217,108,144, 41,149,165, 70, 11,230,230,230,206,191,124,249,242, 62, 0,100,216, +176, 97,129, 26,141, 6, 63,252,240,131, 30,128,124,249,242,229,106, 79,154,206,253,248, 92, 35, 87,174, 6, 75, 20, 61, 55, 97, +219,111, 42,188,137,246,250, 98,176,236,249,155, 16, 2, 81, 20, 29,145, 43,171,213,234,248,174, 84, 42, 89,198, 99, 48, 24,158, +158, 43,154,233,210,207,137,184, 68,154, 50,221, 25, 43,231,230, 64,167,207, 86, 55,186,102,151,166, 67,215,223,237,239,217,211, +166, 77,219, 98,143, 92, 57,253, 94, 42, 29,101, 70,176, 56,142,131,201,100,194,137, 19, 39,188,189, 67,245,122,210,209,144,132, +135, 48,228, 82, 30, 8, 33,216,208,182, 62, 84, 58, 29,228, 58, 45, 90,253,190,213, 81, 97, 39, 79,127, 27,114,173, 14, 33,109, +186,120, 85,129,139,162,120,131,193,202,205,205,133, 76, 38,195,135, 31,126, 8,142,227,240,241,199, 31, 35, 58, 58, 26, 25, 25, + 25,104,215,174,157, 87, 23, 27, 78,226,160,122, 38, 24,170,151,252,192,141,172,129,248, 62, 47, 33,175,160, 42,142,154,181,168, + 91,116, 6, 65,127, 79,132, 69,178,121, 53, 77, 3, 33, 4, 54,155, 13, 91,182,108,129, 76, 38,131,205,102,115, 92,124, 40,165, +142, 89,242,237,147, 58,126,252,241,199,172,180,221, 5, 42,247,122, 20, 79,167,235, 1, 0,107, 91,213,129, 82,171,133,194, 79, +135, 54,127,110,119,228,207, 11, 83,223,132, 92,171, 67, 96,243,182, 94,105,214,123,229, 45,212,125,249, 77,100,101,101, 25, 58, + 55,137,223,158,199, 43,127,106,208,160,129,163,207,149, 70,163,129, 74,165, 34,246, 72,150,183,166,133,227, 56,143,230,202,254, +217,219,155, 10,215, 81,184,229, 25, 44,111,225, 56, 14,207, 62,251, 44, 34, 35, 35,241,213, 87, 95,149,138, 92,189,243,206, 59, +176, 90,173,248,226,139, 47, 88,230, 99, 48, 24,229,113,192,135,117,155, 59,153,165, 3, 55,169,123,224, 86, 19,236,182,230, 53, +153, 76,201,157, 58,117, 66, 25,203,162,149, 74,101,169,218,213, 62,233,168,107, 83, 33, 33,164, 1,165,244,152,139, 67,253,183, + 89,176,164,179,176,194,165,217, 69,161,243,131, 76,171, 3,231,166, 18,119,167,233, 46,130,101,111, 58,201,203,203,131, 76, 38, +195, 87, 95,125, 5,127,127,127,152, 76, 38,119, 29,236,221,106,242, 60, 15,253, 37, 61, 46,190,127, 20, 74,237, 57,212,238,226, + 7, 63,217,121,212,220,177, 28, 54,155, 25,112,106, 50,244, 70,179,118,237,218,248,224,131, 15,110,152,158,161, 44, 18, 18, 18, + 60,106,222, 42, 76,211,189, 38, 33, 4, 74, 63, 29, 84,126,126,101,230, 79,193,205,220, 77,174,154,246,229,246,200, 85,161, 92, +243,211,229,139, 23,247, 1,224,134, 13, 27, 22,160,209,104, 48,103,206, 28, 61, 0,110,202,148, 41,154,216,216, 88,222,155,116, +114, 28,135,159,127,254,249,134, 62, 87,101, 25, 44,111,210,105,179,217,110, 48, 88,131, 6, 13,186, 97,162,209,178, 34, 88,238, +210,105,239,171, 86,169, 82, 37,104, 52, 26,199, 99,183, 84, 42, 21, 84, 42,149, 99,118,248,178,154, 90, 89,254,100,154, 76,243, +191,163,121,151,204,216,109,195,173,193,250,231,159,127,186,151,181, 65,235,214,173,207,236,218,181,171,166,243,179, 9,109, 54, +155,220,100, 50,213,234,215,175,159,199, 91,101, 73,146,160, 84, 42, 65, 41, 69,227,247,166, 23,223,194,115,255, 54, 9, 82, 74, + 17,216,186, 51, 8,207, 67, 20, 37, 88,173, 86,143,163, 8,141, 70, 99,169, 14,232,238,134,175, 23, 22, 22,150, 59,207,143,171, +166,193, 96, 40,213,175,139,136, 20, 23, 54, 45,187,113, 52, 97,201,255,120,139, 74,165, 42,213,108,226, 41, 41,236,166,229,206, + 98,159,192,147, 82,138,248,215,198, 21, 71,138,120,174,212,242,128,230,109, 65, 4, 25,164,226,126, 75,158, 6,134,144,204,204, + 76, 67,223,190,125,183, 81, 74,127,236,215,175,223,105, 20,119,176,164, 58,157, 78, 41,147,201, 36, 0,215, 1,208,156,156,156, +128,180,180, 52,201,104, 52, 86,241,148,206,237,219,183,227,220,185,115,104,218,180,169, 35,242,105,127,217,155,239,111, 38,130, +229,110, 70,248,178,102,114,247, 37,130, 21, 16, 16, 0,133, 66,129, 15, 63,252, 16,114,185, 28,106,117,113, 43,232, 23, 95,124, +225, 56,230, 12, 6,131,241, 32,225,243, 3,155, 37, 73,226,203,106, 62,244,212, 84, 40,138, 98,234, 67, 15, 61,228,235,255, 93, +245,112, 65, 76,221,177, 99,135,220,245,129,180,238, 30,128,235,244,155, 71,205, 3, 7, 14,200,203,217,222,221,231,171,190,236, +187, 55,253, 87,108, 54, 91, 26,203,162,119, 14,155,205,150,218,162, 69, 11,247, 11, 63,248,184,172,243,122,213,131,105, 57, 91, +171, 86,173,116,157, 78,247, 87,120,120,120,246,174, 93,187, 66,154, 55,111, 30,226,188, 78,243,230,205, 35, 93, 54, 51,163,156, +233, 73, 8, 33,169, 79, 63,253,180,220, 67,126,116,253,156,234,225,166, 34, 53, 41, 41, 73,238, 46,191,151,245, 78, 41, 77,245, +226,176, 94,234,209,163, 7,231,174, 12,185, 57,150,153, 44, 23, 50, 24,140,255,172,193, 50, 26,141, 41,157, 58,117,114, 59,238, + 91,175,215, 95, 46,111,219,164,164,164,102, 21,189, 3,169,169,169,173,238, 7,205,219,177,239,140,123,255, 28, 37, 37, 37,181, +168,104,205,203,151, 47,183,186, 31, 52, 1,224,248,241,227, 45, 89,206, 98, 48, 24,204, 96,121,129,183,211, 49, 48, 24, 12, 6, +131,193, 96,252, 87,225,216, 33, 96, 48, 24, 12, 6,131,193,168, 88, 8,128, 6,238, 22,248, 50, 58,128, 16,210,192,215, 63,246, +164,207, 52,153, 38,211,100,154, 76,147,105, 50,205, 7, 79,211,147,246, 61, 60, 58,209, 55,131,229,105, 38,234, 91, 18,103, 67, + 88,153, 38,211,100,154, 76,147,105, 50, 77,166,249, 31,132, 53, 17, 50, 24, 12, 6,131,193, 96, 84, 48, 2, 59, 4,119, 7, 66, + 8, 79, 41, 21, 43, 80, 50, 16, 64, 89, 15,116, 51, 3,200,189, 73, 93, 5, 0, 89,201, 11, 40,126,196,128,181, 68,147,193, 96, + 60, 64, 52,107,214,108, 56,165,244,163,226, 42,138,124,120,240,224,193,175,217, 81, 97, 48, 42,216, 96,213,168, 81,227, 32,199, +113, 49,238, 30, 64, 92,214,188, 56,162, 40,166,158, 60,121,210,171,161,238,132, 16, 33, 50, 50,114,144, 86,171,237,192,243,124, +235,146,237,119, 21, 21, 21,109,201,200,200, 88, 74, 41,181,221,204, 14,197,197,197,249, 27,141,198,199, 9, 33, 67, 1,128, 82, +250,171, 74,165,250,237,194,133, 11,249, 55,105,132,106, 68, 68, 68,252, 42,147,201,248,148,148,148, 14, 0, 80,185,114,229, 45, +102,179, 89,188,118,237,218, 80, 74,233, 57, 31,245, 56,185, 92, 62,189,109,219,182,109, 8, 33,191, 80, 74,191,173,160,115,169, +228, 56,238,146,187, 5,146, 36,197,222,132,158, 28, 64,192, 23, 95,124, 17,188, 96,193,130, 38, 25, 25, 25, 13, 1, 32, 50, 50, +242,232,176, 97,195,254,249,223,255,254,119, 29, 64, 30, 0, 11, 43, 70,247, 55,181,106,213, 58,200,113, 92,140, 47,115,201,149, + 60,162, 42,245,248,241,227,205,202,210,228,121, 62,198,195,124,116, 55,124,150, 36,233, 66, 82, 82,146,219, 41, 35,106,215,174, +189,135,231,249,106,158,210,230, 46,157,101, 77,193, 81,187,118,237,131, 60,207,199,248,170, 41, 73,210,133, 99,199,142,181,170, + 72,205, 59,157, 78, 0,104,223,190,189,178,168,168,232, 87,157, 78,215,168,168,168,104, 56,165,116,194,214,173, 91,195, 57,142, + 67,231,206,157, 39, 52,107,214,236,162, 82,169,156,109, 52, 26,255,209,233,116, 67,182,110,221,106, 98, 37,134,193,184, 69,131, +197,113, 92,204,161, 67,135,194,180, 90, 45, 74,140, 10,236,179,183, 75,146,228,120, 81, 74, 65, 41,133,205,102, 67,251,246,237, +189,250,211,152,152,152, 6,181,107,215, 94,246,234,171,175, 86,233,211,167,143, 34, 60, 60, 28,132, 16, 92,185,114,165,214,234, +213,171,159,252,234,171,175, 62,136,137,137, 25,152,154,154,234,109, 71, 57, 46, 50, 50,178, 19,128,103, 26, 52,104, 48,224,173, +183,222,146,183,110,221, 26,162, 40,226,239,191,255,110, 59,115,230,204,175,162,162,162,254, 0, 48, 63, 35, 35, 99, 51,165, 84, +242, 82,183, 73,181,106,213,126,219,190,125,123,181,228,228,100,177,127,255,254,191, 0,192,174, 93,187, 26, 81, 74, 73,235,214, +173,215, 18, 66, 30,167,148,254,227,195, 49,239, 55,106,212,168,129,175,188,242, 74,232,240,225,195,135, 1,248,182,228,191,236, + 15,185,244,181, 83,156, 35,114, 69, 41,149,151,179, 94,184, 15,145, 44,237,133, 11, 23, 2, 91,183,110,253,202,181,107,215, 70, + 59,235, 94,189,122, 21,135, 15, 31,182,124,252,241,199, 51,119,237,218,245, 77, 92, 92, 92, 46,128, 34, 86,148,238, 95,120,158, +143, 62,120,240, 96,152, 70,163,113, 60,200,221,185,156,219,203,184,115,214,164,148,226,145, 71, 30, 41, 79, 51, 38, 49, 49, 49, + 76,173, 86, 59,234,142,242,244,156, 52, 45,229,212, 73,177, 7, 14, 28, 8,211,104, 52,160,148,122,212, 35,132,128, 82, 90,238, +179, 71,237,233, 84,169, 84, 94,105,218,105,221,186,181, 88, 81,154,246,116,182,108,217,146,150,167,121,232,208,161, 48,251, 83, + 48,124, 72,103,185, 55, 64, 69, 69, 69,191, 46, 93,186,180,127,120,120, 56,250,245,235,183,161,126,253,250, 10,141, 70,131,181, +107,215, 34, 38, 38,166,146,191,191,255,154,105,211,166,225,179,207, 62,171,178,113,227,198, 69, 0,250,179, 18,195, 96,220,186, +193,130, 86,171,197,226,197,139,221, 62,126,198,245,115,108,172,119, 65,146,136,136,136,102, 85,171, 86,221,182,124,249,114,117, + 88, 88,152,227,119,139,197, 2,127,127,127, 60,251,236,179,138,206,157, 59,215,124,242,201, 39,247, 70, 68, 68,180,187,114,229, +202,193,242,244, 34, 35, 35, 7,196,199,199,127, 61,122,244,232,240,190,125,251, 34, 40, 40,168,212,242,222,189,123,163,103,207, +158,242, 11, 23, 46, 12, 94,186,116,233,224, 95,126,249,229, 74,100,100,228,168,140,140,140, 63,202,117, 24, 90,109,231,198,141, + 27,255,176,121,243,230,152,192,192, 64, 68, 69, 69,113,239,191,255,126,131,234,213,171,171, 35, 35, 35,185,244,244,116,252,241, +199, 31,213,135, 13, 27,182, 66,165, 82, 13, 55, 26,141,155,189, 48,108,138,224,224,224,183, 95,122,233,165,144,130,130, 2,219, +161, 67,135,206,217,127, 87, 42,149, 19, 30,126,248,225,166,132,144, 37,148,210,249, 55, 19,185,162,148,230,227,223,166, 60, 59, + 86,251,114, 47, 35, 89,138, 67,135, 14, 5,181,110,221,250, 79,147,201,212,244,249,231,159, 79,155, 49, 99,134,194,223,223,223, + 31, 0,201,205,205,205,153, 52,105,146, 56,107,214,172,177,245,235,215,239,180,107,215,174,254, 77,155, 54,101, 77,134,247, 57, + 26,141, 6,171, 86,173,114,251,152, 41,119,101, 62, 48, 48,208,227,211, 8,212,106, 53, 54,110,220,232,216,206,249,209, 82,238, + 62, 7, 6, 6,130, 82, 90,174,168, 74,165,194,206,157, 59, 29,143, 1, 42,171, 94,178,191,107, 52, 26, 16, 66, 56, 79,154,219, +182,109,243,168,101,127,215,233,116, 0,192,123,147, 78, 79,251,108,255,172,213,106, 61, 30, 79,165, 82,233,208,116,214, 40,235, +123,201,205, 49,241,112,142, 26,133,135,135, 99,223,190,125,152, 56,113,162, 34, 62, 62, 30,103,206,156, 1,199,113, 24, 62,124, + 56,234,215,175,143, 43, 87,174,160,126,253,250,216,185,115,103, 19, 86, 82, 24,140, 10, 48, 88,118,202,170, 96, 93, 63,219,239, +196, 92,238, 72, 75, 69,160,170, 86,173,170,212,233,116,191,175, 90,181, 74, 29, 18,242,239,211, 66,204,102, 51, 10, 10, 10, 80, + 88, 88,136,130,130, 2,104,181, 90,204,158, 61, 91, 61,116,232,208,223,171, 86,173, 90, 43, 57, 57,217, 84,150, 38, 33,100,230, +225,195,135,195,109, 54, 27, 20, 10, 69,153,102,177, 70,141, 26, 24, 53,106, 20,218,180,105, 19, 49,120,240,224,153, 0,254, 40, + 75,179,196,184,125,179,107,215,174, 24,133, 66,129, 51,103,206, 32, 53, 53, 21, 35, 70,140,136,149, 36, 9, 41, 41, 41, 56,115, +230, 12,210,211,211, 49,119,238,220,152,161, 67,135,206, 6, 80,179,188,125, 47,225,133, 55,222,120,163,102, 80, 80, 16, 55, 99, +198,140,188,194,194,194,185, 37,191,143,255,226,139, 47,134,180,107,215, 46,244,249,231,159,167,132,144,197,148,210, 27, 12,139, +139,166,187,200,149, 72, 41, 61,233,178, 89, 93,151,200, 86, 56,138,159,133,151,231, 70,147, 0,240,239,222,189,251,155, 38,147, +169,233,142, 29, 59,206,181,105,211, 38, 22, 64, 6,165, 52, 19, 0,130,130,130,180, 95,126,249,101,120,239,222,189, 79,119,238, +220,185,105,247,238,221,223,204,204,204,252, 8, 64, 22, 74, 30,239,114, 59, 70,150, 48,205,219,167, 89,210,148, 4, 65, 16,208, +163, 71, 15, 16, 66,220, 62,111,115,207,158, 61,232,212,169, 19,100, 50, 25,158,123,238, 57,175, 53,187,117,235, 6,155,205,118, +131,158,171, 1,177, 63,163,179,188,125,167,148,150,122, 70,168, 59,115,225,252,114,213,115,167, 41, 73,146, 91,173,178, 76,150, +253, 97,245,222,236,187,183,230,210, 83, 58,157, 53,101, 50, 25, 90,181,106,133, 67,135, 14,149,107,182, 60,165,179, 36,130,245, + 76,191,126,253, 54,140, 24, 49, 66, 5, 0, 89, 89, 89,165, 30, 68,127,234,212, 41,152, 76, 38, 44, 92,184, 16, 38,147,105, 36, + 43, 71, 76,243,118,106,122,178, 35, 0, 26, 3, 8, 5, 32, 2, 40, 40,185, 14,154, 75,174,133,217, 0,212, 37, 47, 19,128, 66, + 0,149, 74,182,205, 42,185,190, 57, 63,166, 44, 19,165, 31, 10,221,188, 68,219,254,200,174, 80,167,101,246,255,112,253,238,250, + 94, 74,155, 43, 41,188,180,228,213,206, 53,108,237,141,185,178, 87,142, 94,156,144, 87,199,143, 31, 31,238,108,174, 76, 38, 19, +242,243,243, 81, 80, 80,224,120, 63,115,230, 12, 20, 10, 5, 6, 13, 26, 20, 78, 41,125,213,131,172,156,231,121, 28, 58,116, 8, +203,151, 47,199,197,139, 23,111, 88,225,252,249,243,248,242,203, 47,241,217,103,159, 33, 63, 63, 31, 40,238, 95,228,150,198,141, + 27, 79, 28, 58,116,232,222,246,237,219, 43, 5, 65,192,225,195,135, 81,171, 86, 45,236,222,189, 27,151, 47, 95, 70, 78, 78, 14, + 78,157, 58,133, 6, 13, 26,224,220,185,115,200,207,207, 71,124,124,188, 50, 33, 33, 97, 71,213,170, 85, 39,150, 19,189,146, 71, + 71, 71,191,243,210, 75, 47, 41, 51, 50, 50,164,159,127,254,121, 23,165,116, 55, 33,100,196,187,239,190,251, 84,183,110,221, 66, + 79,158, 60,153,127,224,192,129,131,238,204, 85, 25,145,171,203, 28,199, 93,162,148,230, 83, 74, 13, 40,238,124, 94,234, 98,100, +179,217, 76, 6,131, 33, 47, 59, 59, 59,139,227,184, 75, 28,199,157, 1,160, 44, 75,115,216,176, 97,213,179,178,178, 94,249,223, +255,254,119,177, 77,155, 54,177,148,210, 83,148,210,236,146, 12,107,178,217,108,217,185,185,185,167, 91,183,110, 29, 57,100,200, +144,115, 89, 89, 89,175, 12, 27, 54,172,122, 57,154,140,123, 31, 42,138, 34,100, 50, 25,182,110,221,138,157, 59,119, 98,231,206, +157,216,181,107, 23,118,239,222,141, 61,123,246, 96,207,158, 61, 16, 4, 1,187,119,239,198,238,221,187, 49,106,212, 40,143,101, + 94, 20, 69, 8,130,128,109,219,182, 97,255,254,253,142,215,129, 3, 7,176,127,255,126,168,213,106,143,102,200,165, 12, 57, 52, +221,189,190,249,230, 27,135, 57,180,215, 77, 28,199,149, 27, 21,115, 53, 46,174,134, 37,182,106,213, 27,150,121, 74,167,221,180, + 9,130,128,239,191,255, 30,105,105,105,248,234,171,175,112,254,252,121,124,242,201, 39, 72, 74, 74,194,228,201,147,113,224,192, + 1,140, 31, 63, 30, 59,118,236,176, 63,252,157,122,210,180,155, 43,139,197,226, 72,207,169, 83,167, 48,117,234, 84, 28, 62,124, + 24, 19, 38, 76,192,158, 61,123,240,246,219,111,131,231,203, 13,178,161, 89,179,102,195, 9, 33, 75,107,215,174,173,236,216,177, + 35, 4, 65,192,212,169, 83,165, 9, 19, 38, 92,123,247,221,119,175,173, 94,189,154, 86,175, 94, 29,102,179, 25,126,126,126,160, +148,206,111,214,172,217,171,172,184, 48,110, 23,238,188,136, 19,143,140, 31, 63,190, 35, 33,100,117,171, 86,173,134, 1, 8, 36, +132,172, 6,160, 40,121, 15, 25, 63,126,124, 11, 66,200,234,241,227,199, 55, 3, 80,137, 16,178,186,228,123, 7, 0, 33,246,239, + 37,235,135,186,152,183, 80,167,223, 67, 93,214, 85,184,251,238,250,238,170, 45, 56, 93,140, 73, 73, 1, 39,206, 21,164, 47, 6, +203, 83,133,171,211,233,122,118,239,222, 93,238,108,174,156, 35, 87,246,247,130,130, 2,156, 62,125, 26, 13, 26, 52,144,235,116, +186,158, 0, 62,245, 24,138, 19, 4, 68, 69, 69, 33, 43, 43, 11,199,142, 29, 67,108,108, 44,172, 86, 43,214,175, 95,143,220,220, + 92,200,229,114,200,229,114,152,205,229,123,151,186,117,235,246, 88,176, 96, 65,179, 95,126,249, 37, 71, 16, 4,156, 58,117, 10, +191,254,250, 43, 40,165,168, 84,169, 18,244,122, 61,174, 93,187,134,153, 51,103,194, 98,177, 64,167,211, 33, 58, 58, 90,245,234, +171,175,182,153, 52,105,146, 12, 64, 89, 38,235,161, 1, 3, 6,248,251,249,249,225,245,215, 95,151, 44, 22,203,103,132,144,135, + 7, 12, 24,240,206,168, 81,163,130,147,147,147,205, 47,188,240,194, 65,139,197, 50,179, 36,163,201, 40,165, 86, 15,134,181,204, +200,149,205,102,179, 31,211,139, 5, 5, 5, 8, 11, 11,171, 66, 41,149,123, 56, 71,242,221,187,119,183, 2,192, 79,153, 50, 69, + 69, 41,189,234,108,218, 44, 22,139, 93,211,150,151,151,119,237,237,183,223,182, 45, 90,180,136, 47,217,230, 4, 0, 35,171, 34, +238,203, 74,205, 81,214,123,244,232, 81,202, 80,108,223,190, 29,221,187,119,119,148,119,185, 92,238, 88,207,147,166,115, 84,204, + 30,121,178,235,110,217,178,229,134,200,139,151, 55,105,142, 8,139, 59,227,227,106,186,236, 55,138,222,152, 33,119, 38,203, 94, +183,184, 70,134,188, 73,167, 76, 38,195,168, 81,163, 32, 8, 2,222,126,251,109,200,100, 50, 52,110,220, 24,130, 32,160,101,203, +150, 16, 4, 1, 29, 58,116,240,250, 6,213,158,206, 61,123,246, 32, 33, 33,193,145,158,198,141, 27,163,121,243,230, 16, 4, 1, +109,219,182,133, 32, 8,232,218,181,171, 71, 77,123,135,118,157, 78,135,211,167, 79,131,231,121, 16, 66,178, 19, 19, 19,195, 1, + 96,226,196,137, 89, 70,163, 49,196,104, 52,162, 83,167, 78,104,213,170, 85,232,162, 69,139,222, 7,192, 70, 22, 50,110,223,221, +158, 27, 47, 98, 15, 0, 76,159, 62,125, 42,165,180,119, 89,219,218,151, 19, 66, 86, 79,155, 54,173,119,137,222, 13,223,157,162, + 76,206,230, 45,222, 57, 2,101,223,206,249,255,202,251,111,151,245, 51, 75, 25,172,146, 29,106,239,174,210,117, 23, 42,119,253, +236, 77, 5, 97, 52, 26, 27,219,163, 87, 70,163,177,148,161, 42, 44, 44, 44,101,180,204,102, 51,226,226,226, 96, 52, 26, 27,251, +122,177,136,140,140,132,197, 98,193,188,121,243, 28,198,202,217, 36,148,199,241,227,199, 47,238,221,187,183,105, 66, 66, 66,208, +159,127,254,153,217,185,115,231,208,110,221,186, 65,165, 82,193,104, 52,194,102,179,225,161,135, 30, 66,221,186,117,113,237,218, + 53,172, 93,187, 54,171, 86,173, 90,149,246,237,219, 39, 93,185,114,229, 82, 57,210,157, 58,117,234, 4, 66, 8,214,174, 93,123, +157, 82,154,168, 86,171,255,152, 58,117,106,160,201,100,146,158,122,234,169,148,235,215,175,191, 13,192,170, 84, 42, 63,237,210, +165,203, 67, 60,207, 47, 17, 69,209,231,202,204,100, 50,149, 58,182, 5, 5, 5,208,104, 52,222, 76, 9, 33,203,205,205,109, 8, + 0, 26,141, 38, 24,128, 99,132,164,193, 96,112,156,163,146,243, 99, 12, 14, 14,214, 2, 64,201, 54, 50, 86, 53,220,191,216, 47, +222, 91,183,110, 45, 85,190,237, 17, 40,215, 50,175, 80, 40,176,106,213, 42,175, 52,157,205,148, 23,205,121,229, 70,155,236, 6, + 75, 16, 4,204,157, 91,220,194,254,250,235,175, 59,182,119,253, 15,111,234, 11,187, 25, 18, 4, 1,117, 63,144, 0, 88,144,250, +185, 10, 50, 89,113,150,118, 77,179,253, 34,224,141,185,252,234,171,175,208,187,119,111,172, 94,189,186,220,247,158, 61,123,122, +149, 78, 65, 16,160, 84, 42, 75, 25,191,195,135, 15,187,213,157, 51,103,142,199, 62,109,146, 36,225,175,191,254, 2,199,113,165, + 34, 94,239,191,255,254, 75,254,254,254,186,109,219,182,225,234,213,171, 40, 42, 42, 66, 97, 97, 33,130,130,130, 2, 59,119,238, +124,248,202,149, 43,201,199,143, 31,103, 29,222, 25,183, 37,138,229,236, 69,156, 48,140, 27, 55,238, 29, 66,200,234,113,227,198, +189, 51,109,218,180,164,146,245, 87,187,108,191,218,131,190,221, 4,217,155, 7,155,187,152, 55,123,211, 97,175,114,182, 53,187, + 24, 42,215, 38,194, 3, 30, 35, 88,174,125, 19,202,251, 92, 18,226,246, 84,225, 10,132,144, 27, 12,128,187, 8,150,213,106, 69, +118,118, 54, 36, 73,170,208,185,186, 60, 25,172, 99,199,142, 61, 59,124,248,240,244,128,128,128, 70,217,217,217, 25, 74,165,178, +237,246,237,219, 43, 91,173, 86,248,251,251,195,223,223, 31,107,214,172, 65, 64, 64, 0,254,247,191,255, 93, 54, 24, 12,187,181, + 90,109,184,193, 96, 56,114,229,202,149,247,202,116, 46, 50, 89,167,182,109,219, 34, 49, 49, 17,185,185,185,127, 19, 66, 26, 61, +255,252,243, 93, 43, 87,174, 76, 62,250,232, 35,227,185,115,231,190, 6,144,169,213,106,191, 95,176, 96, 65,187,166, 77,155,234, +158,122,234, 41, 16, 66,126,160,148,122, 29, 25,210,235,245,165,140,149,253,152,250,249,249,121, 53,231, 86,201,241,166,132, 16, +199,128, 70,103, 99,229,100,128, 41,207,243, 18, 0, 90,209,231,136,113,231, 35, 88,246,178,222,167, 79,159, 27, 58,183,203,229, +114,108,216,176, 1,143, 62,250,168,227,134, 37, 33, 33,193,235,104, 83,223,190,125, 29,134, 96,195,134, 13,101, 26, 44, 79, 77, + 90,174,209,166,215, 94,123, 13, 50,153, 12, 95,127,253, 53, 70,143, 30, 13,158,231,241,249,231,159,131,227, 56,188,255,254,251, + 62,155, 75,153, 76,134,139, 31, 23,191,199,188,145,143,236,111,195, 1, 0,126,254,254,197,251, 35, 73, 94,107,218,247,221, 83, +228,202,217, 88,121,106, 34,116,142, 2,158, 57,115,198,241,185,101,203,150,165, 34, 87,130, 32,120, 52,108, 37,255, 55,185, 99, +199,142, 31,197,196,196,132,141, 24, 49,130, 8,130,128,102,205,154, 85,154, 48, 97, 66,158, 76, 38, 83,189,245,214, 91,238,186, + 82,200, 0, 52,170, 87,175,158,150,149, 28,198, 29,142, 96,153,166, 77,155,150, 52,109,218, 52,183, 17, 42,215, 72, 82,121,145, + 38, 39, 99,117, 0, 37,205,129,227,198,141,123, 7,197, 93, 97, 14,120,177,173,194,110,174, 92,163, 92,206,184, 70,176, 38,185, + 86, 60,222, 24, 44,111,250, 79,148, 68, 69,142,102,101,101,181, 84, 42,149,200,207,207,191,225,162,237,108, 10,120,158,199,181, +107,215,160,209,104,142, 86,228,201,243,212, 68, 88, 98,102,222,116, 58, 46,205, 7, 13, 26,180,104,201,146, 37,113,155, 54,109, +194,190,125,251, 80,169, 82, 37, 76,157, 58,245, 66,114,114,242, 16, 74,233, 1,111,254,183,122,245,234,245,117, 58, 29,118,237, +218, 5, 0, 59, 0, 60,243,242,203, 47, 19,139,197,130,217,179,103,235, 1,108, 10, 8, 8,248, 99,217,178,101,141, 26, 53,106, +164,220,180,105, 83,193,190,125,251,182,122,105,174, 68, 74,169, 91, 99, 85, 80, 80,128,162,162, 34,232,116, 58,111, 12,150,205, +223,223,255, 88, 65, 65,193,227, 6,131, 33, 95,169, 84,250,229,231,231,155,156, 35,140,133,133,133, 40, 42, 42,130, 32, 8,178, + 51,103,206,164, 3,168,238,239,239,127, 12,128,141, 85, 13,247, 39, 28,199, 81,187,201,216,180,105,147,219,178, 46,147,201,176, +126,253,250, 82,229,125,237,218,181, 30, 77,155, 32, 8,142,145,132,158, 34, 88,246, 77, 61,134, 89,101, 50,240, 60,143,111,191, +253, 22,148, 82, 71,228,138,227, 56,140, 27, 55, 14, 74,165, 18, 31,126,248, 33,198,141, 27,231, 85, 20,203, 57, 42, 86,109,172, +225,223,202,177,100, 91,139,217, 92, 28,165,231, 56,103,147,229, 85,164,205, 83, 7,119, 95, 76,176,115,164, 77,169, 84,150,217, +185,221,117,211,178, 52, 15, 30, 60,248, 99,211,166, 77,207,133,134,134,110,108,213,170,149,242,224,193,131, 24, 53,106, 20, 49, +153, 76,254,155, 54,109,114,252,175,187,227, 85, 84, 84,164, 98, 37,135,113, 27, 35, 88,147,220, 44, 10,178, 27,167, 18, 51,228, +173,222,106,231,245,237, 26,174,166,168, 36, 34,182,221,147,150,187,109,203, 66, 40, 43,220,237, 90, 73,120, 50, 90,222,220,125, + 26, 12,134,205, 91,183,110,109,254,232,163,143, 10,229, 53, 15, 22, 22, 22, 34, 60, 60, 28,231,207,159,183, 25, 12, 6,143,211, + 31,136,162,247, 19,162,123,138, 96,185,169, 76, 14,196,199,199,219, 44, 22, 11,106,214,172,137,232,232,104, 24, 12, 6,124,249, +229,151, 54,111,205, 21, 33, 68,222,172, 89, 51, 30, 0,242,242,242,128,226,209, 14,181,106,213,170,133,196,196, 68,228,228,228, +172, 0,208,105,210,164, 73, 77, 30,126,248, 97,249,146, 37, 75,244, 35, 71,142, 92, 97,181, 90, 63,242,242, 14,220,108,179,217, +170,113, 28,103,201,205,205, 77,115, 54, 86,225,225,225, 65, 58,157,142,187,118,237,154,213,155,195,211,176, 97,195,253,169,169, +169,152, 50,101, 74,230,212,169, 83,107, 21, 20, 20,228,228,229,229,217,236,198, 42, 63, 63, 31, 6,131,129, 11, 13, 13, 85,206, +153, 51, 71, 3, 0, 13, 27, 54,220, 15, 54,225,232,253,126,215,120, 67,211,160,187,105, 26,188,189,153,114, 54, 46,253,250,245, +187, 33, 34,102,127, 45, 91,182,172, 84,191, 38, 79, 77,111,118,205,111,190,249, 6,175,191,254, 58,148, 74, 37,190,248,226,139, + 82,125,176,220,109, 90,158,166,221,180, 85, 27,107,192,149, 89,193,144,201,100, 8, 25,121,181, 84, 19,161,187,187,108,111,140, +224,212,169, 83, 43,164,137,208,217,244,217,167,196,153, 55,111, 30, 6, 13, 26,132, 29, 59,118,220,116, 19, 97,181,106,213, 22, +124,249,229,151,202, 19, 39, 78, 32, 63, 63, 31,153,153,153, 48, 26,141, 72, 73, 73,113,156,195, 50, 34,229,106, 86,106, 24,183, + 35,122, 85,206,226, 76,151,254, 83,196,185,185,174,156,119,215,245,225,244,155,179,110, 38, 74, 15, 20,115,254,221,213, 84,185, +254,135,243, 58,153, 55, 68,176,202,184,112,123, 61, 77, 67, 73, 7, 73, 79, 70, 96,230, 7, 31,124,240, 74,155, 54,109,130,253, +253,253,145,158,158,238, 54,130,229,239,239, 15,139,197,130,173, 91,183,230, 75,146, 52,211,195, 57,177, 90,173, 86,132,133,133, + 33, 43, 43, 11, 82, 25, 97,124,142,227,160, 86,171, 81, 88, 88, 8,151,131,232,213,133,194,106,181,194, 98,177,192, 98,177,192, +106,181,250,154,111,212,246, 9, 91,139,138,138, 0,160, 40, 42, 42,170,186, 74,165,178,143,122, 60, 3,160, 99,183,110,221,100, +217,217,217,244,133, 23, 94,216, 67, 41, 29,229, 97, 54,123,243,214,173, 91,171, 2,128, 90,173, 62, 3, 0, 41, 41, 41,214,220, +220, 92, 20, 22, 22, 58, 34,132,106,181, 26,253,251,247,143,160,148, 98,235,214,173, 85,229,114, 57, 45,199, 12,153, 86,175, 94, +125, 60, 32, 32, 96,209,244,233,211,135,244,234,213, 43,169, 97,195,134,213, 10, 11, 11,175,233,245,122,131,193, 96,160,130, 32, +200, 67, 66, 66,148, 27, 55,110, 60,183,103,207,158, 46,254,254,254,139, 86,175, 94,125,188, 36,180,202,184, 63,239, 24, 75, 69, +113,220,153, 42, 95, 70,208, 57, 27, 23, 65, 16,176,126,253,250,114,163, 56,222,106, 58,155,140, 55,223,124, 19,179,102,205,186, + 33,130,245,209, 71,197,247, 36,239,190,251,174, 79, 17, 34, 65, 16,112,101, 86, 48, 34, 94,187,126, 67, 4,139,148,164,207,151, + 38, 66,251,246,147, 39, 79,134, 76, 38,115, 52,225,117,233,210,165, 84,211,160,183,198,202, 89,243,218,181,107, 16, 4, 1,193, +193,193, 24, 50,100, 8,186,118,237,122,131,158,183,186, 41, 41, 41,255,124,246,217,103, 85,162,163,163,177,100,201, 18,179, 86, +171, 85,116,236,216,145,230,229,229,145,242, 34, 88, 6,131,129, 69,176, 24,119,154, 3,119, 88,247,150,255, 79,240, 84,233,222, +202, 52, 13,174, 79,219, 78, 78, 78,206,139,140,140, 28, 58,120,240,224, 63,191,253,246, 91,117,245,234,213,113,234,212, 41,228, +228,228,192, 98,177, 64, 46,151, 35, 42, 42, 10,133,133,133,248,253,247,223,245,122,189,126,104, 70, 70, 70, 94,121,154,132,144, +119,123,244,232, 49,231,189,247,222, 83,213,175, 95, 31, 57, 57, 57, 40, 44, 44,116,220,121, 17, 66,224,239,239, 15,141, 70,131, + 99,199,142, 97,207,158, 61, 6, 66,200,187,229,105,186, 51,154,118, 99,101, 55, 90,158, 70, 38,185,104,106, 53, 26,141,253,206, + 15, 0,108, 85,170, 84, 9, 7, 96, 55, 88,151,226,226,226,222,171, 81,163, 6, 89,176, 96, 1,165,148,110,114,103,174, 92, 52, +115,218,181,107,151, 11, 32,220,108, 54,203, 1, 32, 63, 63,223, 18, 18, 18, 18,166, 84, 42, 37,165, 82, 41,169, 84, 42, 41, 35, + 35,195,102,179,217,228, 0,208,174, 93, 59, 51,128,171, 40,153,175,202,141,166, 4,160, 96,246,236,217, 19,159,121,230,153,150, +173, 91,183,142,127,225,133, 23, 78,140, 28, 57, 18,209,209,209, 65,133,133,133,198, 51,103,206,228,126,251,237,183,198,253,251, +247,119,145,201,100,151,102,207,158, 61, 17,197,243,145, 72,222, 30,207,155, 52, 1, 76,243, 54,105,218,251,254,184, 51, 86,206, +223,189,152, 70,161, 84, 58,237,166,237,241,199, 31,119,140, 62,116,141, 92,249,170, 9,192, 49,130,112,204,152, 49,165,210,247, +222,123,101,118,129, 36,229,236,187, 35,218, 36, 8, 2,242,230, 69,151, 50,127,222,154, 42,119,154,130, 32, 96,194,132, 9, 94, + 71,176, 92,251, 96,149,151,206,118,237,218,161,168,168, 8, 50,153, 12, 27, 54,108, 40, 51,130,229,233,120,170,213,234, 33, 43, + 86,172,248, 85,169, 84, 54, 52,155,205,207,101,101,101,253,172,215,235,171,228,230,230,150, 27,193, 50, 26,141, 74, 86,142,152, +230, 93,152, 11,235,190,162,220, 91, 60,155,205,134,202,149, 43,151,122,182,149,189, 51, 59,207,243,142,145, 39,222,140, 32,180, +147,145,145,177, 33, 50, 50,114, 64,255,254,253, 23, 62,243,204, 51,126,117,235,214,149,197,198,198,194, 96, 48, 32, 57, 57, 25, +201,201,201,182,191,255,254, 59, 95,175,215, 63,153,145,145,177,193,147, 94, 90, 90,218, 47,225,225,225,235,135, 13, 27, 54,161, + 73,147, 38, 35, 70,143, 30,205,199,197,197, 33, 47, 47, 15, 65, 65, 65, 8, 13, 13, 69,114,114, 50,126,255,253,119, 49, 55, 55, +119,142, 40,138,147,175, 94,189,154,233,203, 65,178,217,108,188,213,106,197,224,193,131, 33, 73, 18,190,248,226, 11,216,108, 54, +222, 7, 9,139,197, 98,161, 0, 72, 86, 86, 22, 0,232,237,134,235,236,217,179, 0,112,185,106,213,170, 58, 0,216,188,121, 51, + 1,176,219,219,224,154,115, 36,171,110,221,186,201,174,149,162, 61,114,101,143,122, 57,155,171, 50, 48, 14, 25, 50, 36,211,100, + 50,117,123,227,141, 55, 38,204,155, 55,111,200,188,121,243,110, 88,201,223,223,127,209,231,159,127, 62,121,200,144, 33,153, 96, +211, 51, 60, 24,149,129, 75,180,202,215, 46, 0,101,105,174, 92,185,210,235,201, 53, 61, 69,197, 8, 33,110, 71, 36,150, 87, 7, +121,243,244,169,178, 38, 20,189,149,168,160, 32, 8,152, 49, 99,134, 35,114,229,220,249,252,102, 34, 88,118,205,224,224,224,226, +187, 54,173, 22,146, 36,161,103,207,158, 55,173, 91,242,108,193, 1,246,239,205,154, 53,155,188,120,241,226,143, 40,165, 33, 0, + 4,231, 99,224,251, 83,188, 24, 12,102,176,220, 34,138, 98,170,253,217,130,222, 60, 4,182,196,136,164,122,105,178,214,199,197, +197,197,205,155, 55,239,117,173, 86,219,217,104, 52, 54, 4, 0,149, 74,117,180,168,168,104, 19,199,113, 95,102,100,100,120,253, +112,230, 18,195,244,106, 76, 76,204, 23,195,134, 13,251,168, 85,171, 86, 3, 95,120,225, 5, 34, 8, 2,150, 46, 93, 74,211,210, +210,150,113, 28,247,110,122,122,250,249,155, 57, 72, 26,141,230,244,178,101,203,170,175, 92,185, 18, 86,171, 21,115,230,204,129, + 82,169, 60,237,237,246,148,210, 76, 65, 16, 22,182,110,221,122,200,158, 61,123, 22, 81, 74,143, 41,149,202, 95, 31,121,228,145, +161,187,119,239,254,141, 82,122, 66, 16,132, 95, 91,181,106, 53,116,255,254,253,127, 80, 74,143,248,144, 60, 71, 36,203,102,115, +223,162,232, 46,114,229,129,252,225,195,135, 91,134, 15, 31,254,198,192,129, 3,231, 37, 38, 38, 62,100,159,190, 33, 48, 48,240, +104, 66, 66,194,190,101,203,150,157, 42,137, 92, 49,115,117,159, 99,239,144, 30, 20, 20, 4,142,227, 28, 47,251,108,222,190, 26, + 33,187, 38,165, 20, 65, 65, 65,110,111,204,202,209, 36, 30,202, 18,116, 58,157, 67,211,203,209,203, 30,195, 80, 58,157,174, 84, + 26,189,188,185, 41,119,223, 93,211,233,205, 49,243,164,169,213,106, 97,177, 88,188,214,132, 23,131, 6,156, 57,120,240,224,143, + 0,126,172, 89,179,230, 89, 0, 53,152,169, 98, 48,110,131,193, 58,121,242,100,179,219,249,199, 23, 46, 92,200, 7, 48,185,228, + 85, 33,164,166,166,158, 7,240,120, 68, 68,196,167,187,119,239,126,191,164,114,157,226,233,121,134,158, 56,114,228,200,163, 50, +153,108,246,252,249,243, 91, 81, 74, 17, 16, 16,176,251,220,185,115, 47,251, 24, 5, 27, 65, 8, 25,109, 31, 21,104, 50,153, 70, + 16, 66,222,162,148, 22, 57, 45,119,124,247, 17,138,226,206,118,145,101, 44,247, 38,114,117, 67, 36, 11,128,121,217,178,101,133, + 0, 14,227,223,121,174,172, 37, 47, 19,156,154, 5, 25,247, 47, 54,155, 45,173,125,251,246,130,167, 27, 40, 55,219,165,150,119, +131,214,182,109, 91,220,132,102, 90, 57, 73,189,212,170, 85, 43,206, 91, 45, 59, 86,171,245, 90, 57,230, 43,181,101,203,150,110, +211,233,225,152,149,187,239, 45, 91,182,244, 41,141, 37,105, 73,171,104, 77, 15,199,179, 76, 12, 6, 67, 78,104,104,104,161,209, +104,148,153, 76, 38,153,107,196, 94,173, 86,103,178,146,195, 96,220,164,193,186,159, 41, 49, 84,125, 42, 74,175,164, 63,212,139, + 21,160, 99,116,249, 94, 84,222,119, 31,201,185, 13,135, 82, 2, 96, 96,197,228,193,230,216,177, 99, 15, 85,180,230,241,227,199, +155,221,134,116,182,172,104,205,164,164,164,102,255, 85,205,242, 72, 75, 75,123,136,149, 12, 6,227,214,224,216, 33, 96, 48, 24, + 12, 6,131,193,168, 88, 8,128, 6,238, 22,248, 50, 58,128, 16,210,192,215, 63,246,164,207, 52,153, 38,211,100,154, 76,147,105, + 50,205, 7, 79,211,147,246,131, 50, 58,145,220,206, 78,140,108, 8, 43,211,100,154, 76,147,105, 50, 77,166,201, 52,255,139,176, + 38, 66, 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, 61, 3, 97,143, 66, 96, 48, 24, 12, 6,131,193,168, 88, 28, 17, 44, + 66,200, 54, 66,200, 54,118, 72, 24, 12, 6,131,193, 96,220, 13, 30, 36, 47, 34,148,236, 16, 5,208,158,157, 90, 6,131,193, 96, + 48, 24,119,201, 92, 61, 80, 94,132, 80, 74, 65, 8,161,148, 82,194, 78, 47,131,193, 96, 48, 24,140,187,101,176, 30, 36, 47,194, + 58,185, 51, 24, 12, 6,131,193, 96,220, 38,131, 53,137,245,193, 98, 48, 24, 12, 6,131,113, 23,121,160,188,136, 99, 20, 33, 33, +164, 29, 0, 80, 74,153,201, 98, 48, 24, 12, 6,131,113,231, 77,201, 3,228, 69,216, 52, 13, 12, 6,131,193, 96, 48, 24, 21,204, +109,237,131, 69, 8,105,192, 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,113,151, 32, 0,220,142, 4,160,148, 30,243, 90,228, 38, 70, 19,120,210,103,154, 76,147,105, 50, 77,166,201, 52,153, +230,131,167,233, 73,219, 23,255,113, 79, 27, 44,111,230,193, 34, 37, 15, 8,242, 89,156,144, 6, 21,125,160,152, 38,211,100,154, + 76,147,105,222, 30,205,155,169,235,221,105, 18, 66,136,211, 77, 60, 0,208,146, 11, 39,189,151,210,121,191,236,251,127, 69,243, + 65, 67,240,112, 0, 57, 20, 55, 35, 18, 66,136, 4, 64,170,136, 3, 85,114, 18,184,138,210, 99,220, 6,231, 93,124,142,200,191, + 55, 20,236, 60, 49, 24, 15,112,121,175,176,186,222,169,238,224,237,154, 0, 68, 0, 34, 33,228,150, 46,182,183,227,154,116,175, +239,251,127, 89,243,129, 52, 88,246, 3, 21, 26, 26,186, 33, 44, 44,172, 67, 86, 86,150, 84,242, 59,162,163,163,193,113, 28, 4, + 65, 48, 92,188,120,209,223,215, 63, 12, 15, 15,255, 33, 62, 62,254,153,236,236,108,137,227, 56, 84,174, 92, 25,132, 16,240, 60, + 15,158,231, 13,231,206,157,243,191,219, 7, 37, 33, 33, 33,199,108, 54,235, 92,127, 87, 40, 20,198,196,196, 68,191,255, 64,101, + 43,212,170, 85,235, 9,141, 70,163,182,255,214,180,105, 83,231, 85,232,161, 67,135,230,121,171, 87,173, 90,181,253,106,181, 58, + 80, 16, 4,240, 60, 15, 65, 16, 80, 84, 84,148,123,226,196,137, 22, 37,203,119,169,213,234, 16,158,231,237,121, 11, 70,163, 49, +251,248,241,227,173,217,165,239, 70,218,183,111, 47,120,186, 57,114,131,109,235,214,173,182, 59,152, 76,206,156,232, 87,131,216, + 12,141, 8, 71, 3,168, 68,242,168,160, 62,162, 72, 40, 56,231,229,246,210, 93, 46, 3, 85, 0,216, 40,165,233, 55,179,177,155, +138,182,187, 8, 12, 46,249,106,228,128,108, 2,156, 9, 1,126,191, 10, 24, 74,173,124, 7, 47, 68,246,186, 62, 38, 38,230,203, +240,240,240,103, 11, 10, 10,244, 60,207,131, 16, 66,227,227,227,111,216, 29, 66, 8, 36, 73, 74, 77, 74, 74,106,230,225, 34, 43, +171, 82,165,202,231,161,161,161, 79,235,245,122, 61, 33, 4,132, 16, 74, 8, 65,195,134, 13, 29,154,246,119, 81, 20, 83,143, 29, + 59,214,236, 78,165,243,110,237,123,131, 6, 13, 28, 90,118,109, 73,146,202,220,119,103,205,152,152,152,207,195,195,195,159, 46, + 44, 44,212,115, 28,231,208,140,143,143,191,233,116,222,203,154, 15,114, 4,139, 11, 11, 11, 91,209,162, 69,139,246, 43, 87,174, +228, 78,158, 60,201,213,173, 91, 23,162, 40, 66,146, 36, 80, 74,145,144,144,160,241,245,207, 34, 34, 34,126,110,222,188,249,224, + 85,171, 86,113, 43, 86,172,224,154, 55,111, 14, 66, 8, 68, 81,132, 40,138,232,212,169,147,250, 22, 43, 11,157, 32, 8,163, 21, + 10, 69, 59,155,205, 86, 15, 0,100, 50,217, 9,147,201,180,205,102,179,205,164,148, 22,122,163, 99,181, 90, 53, 73, 73, 73, 55, + 28,155, 22, 45, 90, 40,110, 54,109,181,106,213,218,205,113, 92,156,115,161,245,244, 78, 41,189,144,148,148,212,170, 44,205, 58, +117,234,120,212,116,253, 77,146,164, 11,199,142, 29,107, 85,158,185,170, 89,179,230,224,250,245,235,171,150, 46, 93,138,148,148, + 20,104,181, 90, 72,146, 4, 81, 20, 97,181, 90,241,232,163,143, 18, 95,246, 93,173, 86,251,255,253,247,223, 53,194,194,194,112, +237,218, 53,100,101,101, 97,196,136, 17,103,156,150,135,108,217,178,165, 86,112,112, 48,244,122, 61,242,242,242, 48,116,232,208, +251,190,112,117,125,164,250,135, 4, 8,182,127, 23, 37, 92,223,180,243,252,123,183,170,107, 50,153, 50, 68, 81, 12,242,112, 77, + 47, 5,207,243, 57, 0, 66, 61,148,159,170, 0,250,240, 60, 95, 83, 38,147,213,161,148, 86,181,217,108,225, 0, 32,151,203,175, +242, 60,159,108,181, 90, 79,153,205,230,179, 0, 86, 81, 74,147,203,210, 50, 39,250,213, 16, 77,250,129, 69, 38,169,167, 68, 17, +193, 17, 92,209, 42,245,107,204,137,126,203,124, 48, 89,119,203, 92, 85,139,138,138,154, 81,242,249,109, 74,233,197, 91,213, 20, +129,193,148,210, 0, 0,200,203,203, 11, 72, 73, 73,137, 88,181,106, 85,252,212,169, 83, 59, 42,140,198, 79,204,192,137,242,182, +239,210,174,198, 65,129,144, 24,135, 91,166, 82,234,198,109,231, 43,226,194,196, 69, 71, 71,127,217,163, 71,143, 97,115,230,204, +209,236,219,183, 79,211,176, 97, 67, 20, 95, 24,225,168,239, 41,165,142, 60,246,240,195, 45,203, 61,124, 0,132,168,168,168, 47, +122,244,232, 49,100,246,236,217,154, 83,167, 78,105,170, 85,171,230,208,116,206,179, 37, 23, 96, 52,110,220,228, 78,167,243,182, +238,123,183,110,221,134,204,153, 51, 71,115,244,232, 81, 77,173, 90,181, 28,154,174,222,153,227, 56, 52,107,214,220, 43,205,238, +221,187, 15,249,238,187,239, 52,137,137,137,154,122,245,234,149,152, 52, 56,210,120, 51,233,188,199, 53, 31, 60,131, 69, 8,225, + 66, 67, 67, 23, 52,107,214,172,219,202,149, 43,121, 0, 72, 76, 76, 68,118,118, 54,162,163,163,161,211,233,160, 82,169, 96, 52, + 26,125,186,203, 10, 15, 15,255,161, 69,139, 22,131, 87,174, 92, 41, 3,128, 63,158,124, 20, 23,100,192,168,107,102,200,229,114, +156, 59,119, 14, 60,207,223, 74,232,248, 17, 63, 63,191, 95,150, 47, 95, 30,212,180,105, 83, 46, 43, 43, 11,213,170, 85,195,245, +235,215, 91,108,223,190, 61,225,185,231,158,123,142, 16,242, 20,165,116,187,183,154,127,253,245, 23,180, 90,173,227,101,177, 88, +200,205,166,143,231,249,152,125,251,246,133,233,116, 58,136,162, 8, 74,105,169, 2,236, 90,240, 36, 73, 66,219,182,109, 45,229, +158, 60, 65,136,217,183,111, 95,152, 90,173,190, 65, 75, 20, 69, 40, 20, 10,112, 28,103,191, 67,132,205,102, 67,171, 86,173, 44, +229,221,209,213,170, 85,235, 9,187,185,226, 56, 14, 75,150, 44, 65, 68, 68, 4,194,194,194,160,213,106,161, 86,251,238,129, 5, + 65, 64, 72, 72, 8, 94,121,229, 21, 60,241,196, 19, 88,184,112, 33,100, 50, 89,169,229,193,193,193, 88,183,110, 29,252,253,253, + 17, 27, 27, 91,106,249,125, 27, 9, 4,130,215,111, 63,239,136,200, 14,236,221, 88,232,220, 54,110,182,163,114, 45, 94,137, 74, +197,235, 82, 73, 20,115, 54,239,186, 52,193,139, 27,128, 74,187,118,237,130, 82,169,244,238,226, 46,138,104,209,162, 69, 37, 15, +229,167,103,131, 6, 13,254,120,229,149, 87,228, 53,106,212, 32, 50,153, 12,130, 32, 64, 16, 4,123,126,140,165,148,198, 74,146, +212,254,234,213,171,244,171,175,190,250,132, 16,210,159, 82,186,198,173,158,205,208,168,200, 36,245,164, 20, 17,225,157,105,149, +107,155, 8,138, 76, 82,207, 0,193,112, 14,192, 61,107,176, 8, 33,254,106,181,250,253,165, 75,151,202, 1,160,115,231,206,239, + 19, 66,254, 71, 41,205,175,168,255, 8, 8, 8, 64, 64, 64, 0, 26, 52,104,128, 1, 3, 6, 4, 54,105,210,228,173,170, 38,211, +136,100,192, 92,102, 25,226,184,152,181, 91,206,132,217,191, 15,121,180,169,188, 91,251, 26, 87,139, 59,184,184,174, 77, 33,137, + 52,117,211,206, 11,205, 60,236, 43, 23, 17, 17,241,105,247,238,221, 31,159, 51,103,142, 31, 0,252,240,195, 15,232,217,179, 39, + 34, 34, 34,160, 86,171, 33,151,203, 33,151,203, 33,147,201, 28,239, 30, 34, 66,124, 68, 68,196, 39,189,122,245, 26, 56,123,246, +108, 63, 0,248,249,231,159,209,187,119,111,132,132,132,192,223,223, 31, 74,165, 18, 10,133,162, 68,139,192, 83,188,206, 93, 58, + 95,232,218, 17,113,106, 37,250,124, 52, 3,129,129,129,248,251,205,151, 33,227, 56,188,188,110, 27,252,253,253, 61,214, 31,238, + 52, 19, 19, 19,113,245,234, 85,183,251,206,243,124,185,229,205,121,223,123,246,236, 57,208,174,249,243,207, 63,163, 91,183,110, + 8, 9, 9,129, 78,167,115,236,251,191,218,156, 87,154,221,186,117, 27,248,221,119,223, 57, 52, 59,117,234,132,224,224, 96,248, +249,249, 65, 46,151, 59,142,167, 47,231,232, 94,214,124, 32, 13,150,189,111, 84, 88, 88,216,227,171, 87,175,118,156,121,153, 76, + 6,165, 82,233,200, 28,206, 23,110,111,195,208,241,241,241,207,172, 92,185,210,177,145,217,165, 80,169, 84, 42,159, 52, 93,244, + 59,119,232,208, 97,241,234,213,171, 85,114,185, 28, 6,131, 1, 73, 73, 73, 8, 8, 8,128, 66,161, 64,191,126,253,248, 86,173, + 90,133,116,232,208,225,119, 66,200, 16, 74,233, 38, 79,154,148, 82,232,116,186, 82, 6,235, 86, 34,247,132, 16,168,213,106,172, + 88,177, 2,130, 32,148,202,100,238, 42,177,240,240,112,143, 81, 9, 0, 80, 42,149,216,189,123, 55, 56,142,131, 76, 38,115,188, +254,250,235, 47,188,249,230,155,184,122,245,170, 99,153,159,159,199,214, 77,162,209,104,212,118,115,101, 63,247,106,181, 26, 50, +153,140, 8,130, 64,120,158, 7, 0,234, 75,135, 80, 65, 16,144,156,156,140, 39,159,124, 18,243,231,207,199,148, 41, 83, 48,100, +200,144, 82,203,243,243,243, 17, 20, 20,132,192,192, 64, 40,149,202,155,206, 11,247, 18,146,203,209,153, 60,229, 19, 77,113, 7, + 15, 9,144, 0, 10,234,248,156,145,113, 14,159,125, 58,139,247, 86, 91,169, 84, 98,215,174, 93,112,110,118,229, 56, 14,114,185, +188,212,111,130, 32, 32, 50, 50,210, 27,189, 73,203,151, 47, 87, 44, 89,178, 4,127,254,249, 39, 68, 81,132, 76, 38,131, 74,165, +130,191,191, 63,130,131,131, 29,175,216,216, 88,242,227,143, 63,202, 27, 53,106, 52, 9,128,123,131,197,209, 0,169,196, 92, 1, + 64, 88,103, 90,229,252, 74, 62, 40,208,175, 56,138,115,143,154, 43, 1,192,248,175,191,254, 58, 36, 33, 33, 1, 0,240,245,215, + 95,135, 12, 31, 62,124, 60, 33,228, 61, 74,233, 77, 55,177,242,192, 98, 66,200,224,146,136,173,170, 75,151, 46,138,111,190,249, + 6,117,234,212,193,107,175,189, 22,252,217, 39,159,244, 1,176,172,236,188, 84, 58, 51, 77,155, 49, 43,208,249,134,234,223, 23, +112, 61, 51, 25,239,191,255,161,199, 58, 25, 0, 23, 21, 21,245,220,220,185,115, 29,221, 33,130,131,131, 29,117,144,107, 29,101, +127, 47,167, 94, 34, 37, 81,161,225,115,230,204,113,104,134,134,134,150,210,144,201,100, 72, 62,241, 15,214,254, 48, 29,218,144, + 72, 12,125,115,154,207,233,140, 86, 42, 16,163, 86,160, 81,163, 70, 80,171,213, 72,148, 21, 95,202,236,230,170,188,116,150,165, +201,243,188, 35,141,148, 82, 24,141, 70, 20, 20, 20, 64, 20, 69,152,205,102, 36, 36, 36,120,181,239,223,125,247,157, 67,179, 82, +165, 74,142,250,221,185,158,183,191,236, 55, 48,229,105, 70, 69, 69, 13,255,254,251,239, 29,154, 33, 33, 33, 14, 45, 65, 16, 32, +151,203,241,243,207, 63,195,203,136,182,215,154,190,158,119, 87,205,139, 23, 47, 98,234,212,169,144,203,229,246, 46, 64,142,136, +101,116,116, 52,190,250,234, 43,175,174,113, 15, 84, 4, 11, 0,201,202,202,146, 78,158, 60,201, 29, 60,120, 16,114,185, 28,161, +161,161,104,209,162, 5, 0,192, 98,177, 64, 16, 4,168,213,106, 82,171, 86,173,171,246,131,102,127,119,110, 75,119, 26, 97,192, + 93,191,126, 93,218,176, 97, 3,183,112, 64, 55,152, 41,208,228,253,105,232,214,187, 55,214, 71, 43,192, 3,104,113, 50, 11, 10, +133, 66,136,140,140,180,218, 79,130, 93,215,185,111,150,155, 81, 11,126, 90,173,246,199, 85,171, 86,169, 56,142, 67, 65, 65, 1, + 36, 73, 66,235,214,173, 65, 8,193,209,163, 71,241,222,123,239,225,143, 63,254,192,242,229,203,213, 77,155, 54,253,145, 16, 82, +143, 82, 90,224,100,166,142,185,203,156,254,254,254, 80,171,213, 14,131,165, 86,171, 73,157, 58,117,174,218,219,207, 93,154,227, +210,146,146,146, 18,202,210,180, 71, 18,250,247,239,239,232,115,102,191, 0, 58, 23, 54,251,231,164,164, 36,119,166,239, 6, 77, + 73,146,208,166, 77, 27, 0,128, 86,171,133, 78,167,195,150, 45, 91, 28,203,155, 54,109, 10,179,217,140, 74,149, 42,225,196,137, + 19, 94,105, 94,185,114, 5, 11, 22, 44,128, 76, 38, 67, 72, 72, 8,100, 50,153,124,211,166, 77, 83,180, 90,109, 0,207,243, 8, + 12, 12, 68,239,222,189,231,244,233,211,199,158, 6,241,175,191,254, 18,202,210,228,121, 30, 42,149, 10, 63,255,252, 51,166, 78, +157,138,119,222,121,199, 53,186, 7,163,209,136,144,144, 16, 4, 5, 5, 33, 40, 40,200,171,116,222, 42,183, 91,147,130, 34,233, +208,122, 28, 63,188, 9, 34, 21, 33,137, 18,168, 68, 33, 74, 18, 14,109,220, 95, 43,227, 66,122, 52, 5,117,244, 54, 18, 11,139, +108,237, 43, 41,235, 0, 88,177, 53,203,244,133,167,116,242, 60, 15,139,197,130,245,235,215,227,220,185,115,216,176, 97, 3, 12, + 6, 3, 42, 85,170,132,192,192, 64,180,106,213, 10,195,135, 15,119,107,176, 92, 53, 69, 81,252, 57, 45, 45,173, 73,171, 86,173, + 72, 94, 94, 30,178,178,178, 80, 80, 80, 0,139,197, 2,139,197,226, 56,135, 90,173, 22, 17, 17, 17, 48, 24, 12,212,100, 50,253, + 92,230,190, 75, 36,143, 35,184,114,126,133, 80,169,122, 63,155,250,234,150, 16,147,193, 44,183,125,187, 66, 51,252,175,177,213, +187,114,148,163, 64,241,174, 19, 2, 42,137, 98,214,166, 29, 23, 94,185,203,231,125,196,232,209,163,235, 57, 55, 79, 15, 29, 58, + 20, 73, 73, 73,245,102,206,156, 57, 2,192,215,190,106,170,129,104, 0,176, 1,235, 80,252,194, 36,131,129, 76, 89,177,162, 63, +128,167,151, 47, 95,142, 33, 67,134,224,211, 79, 62,105,224,106,176, 74, 29, 79, 74,145,124,102, 59, 46,158,217, 5, 73,146, 74, + 94,180,204,207,212,187,116,146,194,194, 66,227,190,125,251,116, 63,253,244, 19,130,131,131, 81,181,106, 85,248,249,249, 65,169, + 84,222, 96, 6,236, 47, 79,251,174,215,235,141, 39, 79,158,212, 45, 94,188, 24, 33, 33, 33,136,141,141,133, 86,171,133, 74,165, +114,220,160,239,219,176, 28, 35,158,234,135,236,203,167, 48,235,127, 79,120,157,206, 23,186,116, 68,140, 90,129,126,147,167,161, + 94,189,122, 88,246, 68, 95,112, 4, 24,249,247, 94,200,100, 50,252,212,243, 17, 40,149, 10,140,252,251,128,215,154, 7, 14, 28, + 0,165, 20,177,177,177, 48, 24, 12,142, 40,155, 92, 46,199,166, 77,155,208,183,111, 95, 44, 92,184, 16, 15, 63,252,176,199,125, + 47, 44, 44, 52, 30, 61,122, 84,247,235,175,191, 34, 56, 56, 24,149, 43, 87,134, 70,163,113,232, 57,155,152,184,184, 56,228,230, +230,162,122,245,234,229,106, 22, 21, 21, 25, 19, 19, 19,117, 11, 23, 46, 68,112,112, 48, 98, 98, 98,160,209,104, 74, 69,194, 38, + 77,154, 84, 74,163, 81,163, 70,183,172,233,235,121,119,213, 28, 48, 96, 0,170, 87,175, 14,127,127,127,199, 49,112, 53,218, 62, +210, 28,165,187, 57,152, 1, 40,156,222, 51, 1, 28,112,179,158,253,119, 25,128,198, 37,203, 68, 0, 5, 0, 2,221,232,149,165, +147, 85, 18, 47, 14,117, 89,223,245,127, 74, 27, 44, 66,136,189, 60,182, 7,176, 19, 0,234,214,173,139,236,236,108, 40,149, 74, +180,104,209, 2,153,153,153,142, 48,159, 36, 73, 24, 52,104, 16, 63,118,236,216, 48,142,227, 96,181, 90, 65, 41, 5,207,243,176, +223,249,185,250, 0,142,227,208,170, 85, 43, 28, 47, 57,166,221,122,247, 70, 76, 76, 12,146,157,238,200,135, 12, 25, 66,222,124, +243, 77,193, 30,189,160,148,194, 96, 48,160, 81,163, 70,234,114,162, 35,255,251,253,247,223, 3, 20, 10,133,195, 92,217,211,114, +242,228, 73,124,246,217,103,120,250,233,167,113,249,242,101, 68, 70, 70,226,173,183,222,210, 77,159, 62,253,127, 0, 38,123, 58, +155, 58,157,174,148,193,122,234,169,167,132, 86,173, 90,133,105, 52, 26, 71,116,171,196, 84,162, 85,171, 86,196, 83, 4, 75,146, + 36,172, 91,183,206,237,221,161,235, 29, 67,201,168, 11,175, 52,247,237,219,231, 48,103,246,232,133,125,121, 82, 82,146, 35,130, + 85, 98, 4,203,211,164,118,163,102, 15,147,203,100, 50,249,190,125,251, 62,138,140,140,212, 61,245,212, 83, 40, 40, 40, 64, 84, + 84, 20,186,118,237, 10, 73,146, 96,177, 88, 48,106,212,168,114, 35, 47, 50,153, 12,251,247,239,199,244,233,211, 49,118,236, 88, +204,153, 51, 7,157, 59,119, 46, 21,193,178,223,233,250,251,223,245, 49, 14, 21, 24,194, 2, 44, 54, 43,244,122, 3, 40, 21, 33, + 74, 20,146, 40,225,232,214, 67,181, 46, 28, 62, 23,191,122,209, 2, 25, 0, 24,183, 45,119,222, 42,114,192,236,223,106,183, 15, +150,239,219,122,221,178,207, 67,179, 51, 94,126,249,101, 76,152, 48, 1,143, 63,254, 56, 54,110,220,136,119,223,125, 23,207, 61, +247,156,195,188,219,243,130, 23,205,142,115,135, 14, 29,250,210,178,101,203,234,188,241,198, 27,156,189, 76,106, 52, 26, 16, 66, + 96, 52, 26, 29,175,147, 39, 79, 74, 47,190,248,226,105,179,217, 60,183,204,140, 36,168,143,104,149,250, 53, 25,217, 92,205, 43, +127, 7,115, 68,240,183,132,198,182,207,235, 85,171, 51,237,252, 68,213, 32, 42, 21, 71,248, 40, 40, 76,198, 34,188, 51,246,109, +254,110,158, 42, 66, 72,207, 46, 93,186,116,253,232,163,143,110, 88,246,209, 71, 31,225,196,137, 19, 93, 9, 33,201,101, 53,137, +150, 97,174, 98, 2, 34, 34,102, 2,128,250,202,149,209, 6, 32, 21, 0,166, 0,221, 68,160,239,198,141, 27, 1, 0, 85,170, 84, +129, 4,212, 39,192, 47, 60,176,216, 6,172,117, 23, 81,183, 88,109, 48, 24,140,144,104,113, 62,146,168, 4, 73, 44,142,130,186, +154, 44, 79,237,110,148, 82, 74, 8,145,120,158, 71,131, 6, 13,208,173, 91, 55, 40, 20, 10,232,116, 58, 71, 61,239, 90, 39,121, +113, 81,164, 0, 36, 66, 8,226,226,226,208,181,107, 87,200,229,114,104,181, 90,248,251,251, 59, 12, 22,207,243,104,208,170, 35, + 22, 47,156,129, 97,221,226,241,212, 35,225,248,253,104,150, 87,233,140,213, 40, 16,171, 86,162,110,221,186,240,243,243, 3, 33, + 0,207,115,142,116,106, 53, 42,200, 29,205,143,222,237,251,149, 43, 87,144,156,156,140,228,228,100,112, 28,135,214,173, 91, 67, +161, 80, 64, 16, 4,156, 57,115, 6,147, 39, 79,134,217,108,246,106,223, 57,142, 67,205,154, 53,209,177, 99, 71, 40, 20, 10,216, +175, 21,206, 77,131, 50,153, 12, 5, 5, 5,168, 81,163, 6, 86,172, 88,129,182,109,219,122,212,172, 87,175, 30,218,183,111, 15, +185, 92, 14,181, 90,237,232,170,163,112,218,215,194,194, 66,199,113,104,210,164,137, 79,154, 27,246, 95,198,188, 13, 91, 96, 50, + 75,200,215, 91, 75,109, 16, 89,201, 31, 59,127, 29,235,213,190,219, 53,231,206,157,139,220,220, 92, 71, 61,196,113,156,227, 69, + 8, 65, 76, 76, 12,190,251,238, 59,119,229,208,225, 69, 40,165,219, 92, 22,135, 18, 66, 86, 59,157,199,222,132,144,213,206,239, +101,173, 87,242,241,145,241,227,199, 55,155, 62,125,250,212,150, 45, 91, 46,222,189,123,247,162,178,244,202,210, 25, 63,126,124, +252,244,233,211,167, 58,175,239,230,127,110,140, 96, 21,231, 57, 66, 1,112,246,200, 76,116,116,180,163,221, 89,167,211, 65, 46, +151, 59, 54,180,217,108,248,241,199, 31, 17, 22, 22,134,240,240,112,199,123, 89, 25,186, 74,149, 42,160,148,226,181,204,226, 46, + 64,235,162,228, 72, 6,208, 43,147, 58,244, 68, 81,196,178,101,203,224,231,231,231, 40,232, 58,157,174,220,230, 34,133, 66,209, +190,121,243,230,156,201,100,114,132,201, 57,142,195,201,147, 39, 49,125,250,116, 12, 25, 50, 4,181,107,215,134, 40,138, 40, 42, + 42, 66,135, 14, 29,100,179,102,205,106,239,173,193,210,104, 52,142,126, 71, 38,147, 9,155, 55,111, 70, 96, 96, 32,130,130,130, + 16, 18, 18,130,224,224, 96, 40,149, 74,231,140, 81,110,179, 99,255,254,253, 75, 69,174,156,163, 86,206, 21,154,189,217,207, 27, +205,135, 31,126,216, 17,189,210,233,116, 88,187,246,223,250,185, 69,139, 22,160,148, 34, 52, 52, 20,123,246,236,241, 88,233, 54, +109,218, 20,146, 36, 33, 44, 44, 12, 50,153,140,108,218,180,105, 74,137,185, 34, 50,153, 12,255,252,243, 15,146,146,146, 16, 26, + 26,234,184, 43,245, 68, 81, 81, 81,198,172, 89,179,196,111,190,249, 6, 0,208,169, 83, 39,228,229,229, 93,115, 90,158, 61,108, +216,176, 82,251,155,147,147,147,253, 0,248, 43,216, 44, 54,232, 13, 70, 20, 22, 20,193, 42,137,176,218, 68, 92, 75,203, 12, 28, +251,230,104,217,167,163,134, 3, 0,222,252,226,107, 20,124,247,111, 5,246,231,155,131,195,250,127,182,100, 28,128,126,229,233, +235,245,122, 24,141, 70, 84,169, 82, 5, 7, 14, 28, 64, 65, 65, 1, 58,119,238, 92, 42,250,235,161, 9,194,249,220,155, 9, 33, +173,123,247,238,125,224,243,207, 63,175, 94,191,126,125, 82, 84, 84,132,162,162, 34,232,245,122,216, 63, 31, 59,118,140, 46, 90, +180,232,130, 94,175,111, 69, 41, 45,179,207,144, 34,161,224,156, 57,209,111,217,142, 35,242,222,143, 13,232, 27,144,154,150, 98, +203, 54,168, 10,243, 12,167, 77, 34, 61, 1, 42, 82,136,148,130,138, 18, 68, 42,225,110,142,223, 38,132,196,212,170, 85,235,197, +133, 11, 23,186, 53,164, 60,207, 99,225,194,133,104,211,166,205,139,132,144,147,229,117,238,183, 83, 21, 80,216,100,178,177,191, +253,246,155, 28, 0, 58,118,236, 56,182,170,213,250,102, 50, 96,174,223,176,225,192,221,187,119, 7,104, 52,197,227,132, 2, 2, + 2, 64, 41,229,245,122,125, 64,171, 86,173, 6,194,157,193,146, 40,172, 86, 27, 12, 70, 19,114,243, 10, 97, 53, 91, 97,147,108, + 16,109, 18,108, 82,113,116,212, 38,138,144,108, 34,108,146, 8, 94,224,253,218, 63, 92,165,176, 56,150, 69,114,183,237,189, 92, +217, 93, 22, 45, 30,225, 5, 68, 68, 68, 56,154,132,157,251,202,120,138, 98,184, 65, 44,174, 11,169,163,110, 60,178,117, 53,174, +157,216, 9, 57,161,144, 68, 43, 36,155, 5,162,213, 2, 30, 18, 78,156, 79, 67,253, 40,143,117,136, 35,157,221,223,255, 16, 45, + 90,180,192,239,131,251,129, 16, 96,228,230, 61,144,203,229, 88,244,104,103, 40, 84, 10, 60,191, 97,175,183,233, 44,181,239,137, +137,137,120,237,181,215,240,241,199, 31, 67,173, 86, 59,110, 78, 78,157, 58,133, 37, 75,150,160, 75,151, 46, 94,239, 59, 33,197, + 77,173,246, 99, 56,126,252,120,164,167,167, 99,230,204,153,104,214,172, 25,100, 50, 25,114,115,115,209,170, 85, 43, 92,189,122, +213, 43, 77, 74, 37, 4, 7, 7, 59,186,235,184,246, 17,179,223,200,250,114,142,156, 53,159,125, 52, 18, 43,119, 45, 2, 1,193, +222, 95, 71,151,186, 30,125,187,100,135,207,154, 19, 38, 76, 40,149, 78, 95,162, 87, 78, 94,132,148,177,188,183,151,117,154,125, + 61,251, 65, 86, 78,159, 62,125,170,235,246,158,244,156,151,187,108,111,118, 49,101, 87, 61, 54, 17, 82, 74,105,116,116, 52, 36, + 73,130, 78,167,131, 66, 81, 28, 1,115,189,144,106,181,218, 82,142,220, 83,123, 50,207,243,160,148, 58, 14, 44,239,102,249,158, + 61,123,110, 48, 1,223,127,255,125,185,237,180, 54,155,173,158,159,159, 31, 10, 10, 10, 28,125,164, 20, 10, 5,198,141, 27,135, + 97,195,134, 57,204,149, 66,161,192,252,249,243,145,144,144, 0,179,217, 92,175,188, 3, 42,151,203,245, 13, 27, 54,228,236, 81, + 32,181, 90, 77,134, 12, 25,194, 91, 44, 22,168, 84,170, 82, 81, 39,123,223, 52, 79,102,200, 30,109, 90,191,126,189, 87, 17, 44, +111,251, 32, 81, 74,113,232,208,161, 82, 70,173,100,168, 49, 0,224,240,225,195,142, 11,173,183,237,221,162, 40, 66,173, 86, 19, +185, 92, 78,180, 90,109,192, 83, 79, 61,229,208,181,159,115,251,126,123,211,209,250,200,145, 35, 29,202, 91,126,244,232,209, 7, +114, 58, 6, 73,146, 96,177, 90, 97, 48, 24, 81, 80,164,199,164,105, 37, 45,106,147,176, 15,192,190,214, 35, 94,195,203,221,186, +116,132,135,209,125,101, 17, 28, 28,140, 63,254,248, 3, 50,153, 12, 43, 86,172,128,191,191, 63,250,246,237, 11,127,127,127,140, + 29, 59, 22, 79, 60,241,132,215, 6,171, 36, 47,229, 17, 66, 90,143, 30, 61,250,192, 39,159,124, 82,165, 74,149, 42,176, 88, 44, + 48,155,205,176, 88, 44, 56,127,254, 60, 22, 45, 90,148,162,215,235, 91, 83, 74,243, 60,233, 41, 18, 10,206,173,126,163,122, 70, +155, 1,143, 26, 79, 92,217,128,171, 87, 50, 97, 19, 83, 97, 19, 69,216,172,182, 98, 67, 32, 73,176, 89,108,224,121,206,191, 67, +203,216, 77,197, 29,254,137,121,235,158,228, 30,119,240, 84,209, 51,103,206,100,135,134,134,218,239, 32,253,205,102, 51, 41,169, + 75, 40, 0,123, 7,247, 34, 0, 22,111, 4, 83,128, 17,159,126,252,113,101,123,243,253,199, 31,127, 92,249,173, 55,222, 24, 1, +224,203, 19, 71,143, 46,120,246,217,103, 71, 47, 93,186,180,212, 54,207, 62,251, 44, 78, 28, 61,186,160,172, 16,129,213,106,133, +193, 96, 66, 86,214,117,188, 48,242,253,127, 67,206,160,142,142,238, 37,179, 58, 2,128, 10, 0,178,174,158,197,168,215,222, 82, +150,117, 67, 85,191,126,125,123,121,135, 76, 38,187,161, 19,178,115,253,238,169,254, 40,137, 12,149,234, 98, 33,151,203,113,110, +247,106,140, 30, 49, 16, 16,109,128,165, 8,176,232, 65, 45,122, 80,115, 17,136, 66, 13,106, 53,122,212,181,167,211,222,109, 67, +224, 57, 40, 21,255,214,155, 26,141, 26, 10,149,194,171,116,186,219,247, 75,151, 46,225,149, 87, 94,129,217,108,198,128, 1, 3, + 96, 52, 26, 97, 50,153, 96, 52, 26, 17, 23, 23, 7,131,193,224,245,190, 75,146,228,136, 2,142, 30, 61, 26,205,154, 53,195,228, +201,147, 49,102,204, 24,196,197,197, 97,196,136, 17, 88,188,120, 49,226,227,227,161,215,235, 61,106,218,235, 18,157, 78, 7, 65, + 16, 28,117,176,243,185,178, 27, 44,111,207,145, 59,205,226,233,192,112,195,121,127,253,169, 78, 62,107, 78,157, 58, 21, 89, 89, + 89, 55, 68,174,156, 35, 88,179,103,207,190,217, 27,162,213,222,152, 44,167,245, 18, 75,126, 50,140, 27, 55,238, 29, 66,200,234, +113,227,198,189, 51,109,218,180, 36,111,244,202, 88,254, 87,201,123, 47,167,223, 18, 61, 26, 44,160,120,232, 40,165,212, 17,214, +180, 31, 56,251, 50, 0,208,104, 52, 88,189,122, 53,150, 45, 91, 86,234,130, 82, 22, 28,199, 65,146, 36,172, 9, 45, 62, 17, 61, + 75, 34, 87,246,239, 61,174, 73,232,221,187, 55,226,226,226, 74, 69,175,212,106,117,185,102, 67,146, 36, 92,186,116, 9,199,142, + 29, 67,203,150, 45,145,151,151, 7, 1,192,155, 71,143,162,254, 83, 79,193, 84, 98,252, 20, 10, 5, 94,124,241, 69,175, 78,224, +129, 3, 7, 74,117, 2,170, 95,191,126,106,171, 86,173,162,247,236,217,227,136,104, 41,149, 74,168, 84, 42,135,201,240,178, 80, + 99,224,192,129,165,204,144,171,193,178, 23,158,117,235,214,121,213, 68, 72, 41, 69,187,118,237, 28,209, 43, 63, 63, 63,252,249, +231,159,142,117, 30,121,228, 17, 16, 66, 16, 22, 22,134,181,107,215,122,212,180, 31, 83,251,185,231,121, 30, 69, 69, 69, 72, 76, + 76,132, 66,161,112,244,207, 80,171,213,142,253,103,148,117,194, 37,152,173, 86,232, 13, 70, 20, 20, 20, 87,164,231,142,253, 94, +106, 21,139,233,230, 7,167,217, 35,161,249,249,249,216,188,121, 51,254,248,227, 15, 52,107,214,172, 84,243,160,183, 77,132, 78, +121, 52,147, 16,210,102,204,152, 49,123,167, 76,153, 18, 21, 18, 18, 2,139,197,130, 75,151, 46,225,199, 31,127, 76,215,235,245, +109, 40,165,153, 62, 8,194,102,181,193,168, 55, 32,175,160, 8, 19, 63,154, 95,102, 21, 1, 0, 22,115, 1,122,247,104,167,184, +163,167,137,210, 52, 0,207, 57,149,171, 5, 0, 2, 74,190,230, 83, 74,135,249,162, 39, 3,218, 15, 24, 56,176,227,232,209,163, + 29,191,141, 30, 61, 26,123,247,238,237, 40, 91,182,236,152, 21,216,202, 47, 91,214, 96,230,204,153,142,117,102,206,156,137, 63, +150, 45,251, 91, 4,182,150,117, 28,173, 37, 77,132,133, 69, 6,248, 7, 70, 34,237,226, 54,143,105,145,243, 38,208,114,234,101, +123, 29, 82, 86,191, 27,111,205,149,243,197,182, 97,195,134,176, 55, 49,203,229,114, 52,232, 56, 16,159,127,249, 61,148, 28, 69, +255,142,245, 17,170,150, 64, 52,193,144,183, 27, 7, 18, 24, 91,188,225,196,198,240,166,174,219,246,238,155, 56,175, 85,225,197, +141,187, 32,147,201,240,199,224,158,144, 43,228,120,250,175,237,197,131,123,134,247,135, 92,169, 64,215,111,151,120,115,161,118, +236,251,185,115,231,176,107,215, 46,212,173, 91, 23,103,207,158,117,244,177,181, 95,183,188,108, 77,160,246,121,174,236,245,248, +149, 43, 87,208,187,119,111,200,229,114,204,159, 63, 31,219,182,109,195,152, 49, 99,240,236,179,207,162, 67,135, 14,110,251,197, +186,106,198,199,199,151, 58, 71,101,245,143,242,229, 28,185,211,116,228,223,155, 60,239,206,154,246,206,237,238,204,250,173,118, +108,119,138, 22,185,107, 50,235,229, 38,242,212, 28,197,125,163, 76,211,166, 77, 75,154, 54,109, 90,111, 66,200,234,105,211,166, +245, 46, 39,130,213,203, 67,132,171, 23,138,251, 92,149, 95, 71,187,180,125,182,119, 54, 81,138,114,218,178,181, 90, 45,158,123, +238, 57,140, 29, 59,214,209,145,177, 60,236,206,181, 60, 86,175, 94,125,195,111, 43, 86,172,240,212, 68,120, 50, 32, 32,160, 89, +199,142, 29,145,151,151,135,203,151, 47, 67,167,211,161,254,103,159,225,232,203, 47,163,241,156, 57,224, 58,118,116, 20,248,163, + 71,143, 66,169, 84,158,244,245,164,234,116, 58, 4, 5, 5, 65,165, 82,193,207,207, 15,126,126,126,208,106,181, 14,163,229,169, +137,208, 94,152,255,250,235,175,114, 35, 87,206, 33, 95,111,204, 16,165, 20,123,246,236,185, 33,130,101,255, 79,251, 50,123, 36, +195, 27,205,146,136, 37, 85, 42,149,224,121, 30, 26,141,198, 17,238, 87,169, 84,142,151,183, 17, 44, 79, 19,137, 86,173, 90,181, +212, 68,164, 50,153,172,212, 68,164,247,127, 19,161, 9, 69,133, 69, 21,174,111, 54,155, 33, 8, 2,254,248,227, 15, 60,244,208, + 67, 14,115,101, 55, 86,206,231,221,199, 10, 44,149, 16,210,126,214,172, 89,251, 62,255,252,243,160,194,194, 66,204,159, 63, 63, +175,176,176,176, 61,165, 52,213, 39, 45, 0, 86,139, 13,122,147, 9,133, 5,197,199,224,124,210,239, 30, 77,217,253, 76,189,134, + 13,135,253,244,211, 79, 55,252,254,211, 79, 63,225,236,217,179,195,112,244,232,214,202,192,156,177, 99,199,214, 72, 72, 72,168, + 12, 0, 99,199,142, 77,169, 12,204, 41,175,156,219,155, 8, 11, 75,204,186,177, 40,171,194, 34,173,174, 55,124,183,122, 65, 36, +132, 56, 76, 70,151,199,159, 67,250,133, 83,168,171,201, 66, 88,160, 22, 82, 65, 58,228,157, 38,226,232,117, 13,190,152,179,222, +167,116,106, 20,114,168,212,255, 54, 55,169,212, 42, 40, 75, 90, 21, 8, 33, 80,105,212,144, 41, 20, 62,239,251,169, 83,167,160, +209,104, 32,138,226, 13,215, 27, 95, 71, 52, 83, 74, 29,215,206,207, 63,255, 28,111,191,253, 54,230,207,159,143,163, 71,143,162, +113,227,198,232,220,185, 51,174, 93,187,134, 35, 71,142,192,100, 50,121,157, 78,231,235,197,137, 19, 39,176,105,211, 38,156, 62, +125, 26, 41, 41, 41, 55,125,222, 93,155, 25, 75, 90,112,138,205,235,166,127,240, 88,151,166, 55,165, 57,113,226, 68, 92,187,118, +237,134,200,149,115,247,163,178, 34, 88,206, 94,164, 28, 18, 93,162, 71,176,247,135,178, 27, 34,215,239, 0,130,236,191,141, 27, + 55,238, 29,111,183,115,254,110,143,128,121,219, 84, 41,184,187,232,218,155,152,236, 7,221, 57, 50,101,255,172,209,104, 28, 81, +166,216,216,216,114,163, 87,246, 2,199,243, 60,218, 94, 40,128, 66,161,112, 52,231,245,184, 38,149, 10,145,199,197,197,149,234, +131,229,124, 82,220, 97, 50,153,182,110,221,186,181, 73,223,190,125,249, 19, 39, 78, 64, 16, 4, 72,146, 4,211,195, 15,163,241, +156, 57, 56, 54,122, 52, 30,185,120, 17, 38,171, 21, 42,149, 10,235,214,173,179,232,245,250,173,190,100, 26,142,227,136,221, 96, + 41,149, 74,248,249,249,193,223,223,223, 17,205,241,165, 18, 42,235, 14,209,249,229, 75,129,182,119,232,119,190,176,218,207,159, +193, 96, 40,101,184,188,197,185,201,192,110,138, 2, 2, 2, 74, 53,139,218,163,120,222, 24, 44, 79, 19,137, 42,149, 74,255,237, +219,183,215,240,247,247, 7,165, 20, 89, 89, 89, 24, 60,120,240,153,251, 62,128, 5, 90,220,201,221, 96, 68,161,193, 88,225,250, +191,254,250, 43,206,157, 59, 7,139,197,130,105,211,166,221, 96,172,110, 38,130,229,148,175,206, 53,109,218, 84,234,222,189, 59, +246,236,217, 3,165, 82,105,165,148,250, 60,127, 21,149, 36, 88,172, 54, 24, 13, 38, 20, 22, 21,225,191,192,241,163, 71,151,105, +181,218,193, 0,116,185,185,185,124, 64, 64, 0, 52, 26, 13, 12, 6, 67, 30, 95, 50, 82, 48, 25, 48,171,173,214,143, 31,127,252, +241,153, 0, 32, 88,173, 31,151, 55, 15,150,195, 96, 85,240,113,180,215, 91,101, 69,175,110,214, 92, 17, 66,138,135,231,115, 28, +230, 79,123, 27,117, 53,153,104, 90, 77, 11,227,181,115, 80,250, 87, 2, 9,172,138, 47,230,172,199,137,228,235, 62,165,115,200, +130,223, 81,185,114,101,172,126,186, 31,148, 74, 37, 6,255,190,169,184,147,246,136, 39, 32, 87, 41,209,233,235, 95,111,106,223, +245,122,125,153,145, 42,111, 35, 88,206,154,118, 3,216,180,105, 83,212,172, 89, 19, 91,183,110, 69,211,166, 77,113,246,236, 89, +156, 61,123, 22,201,201,201, 56,122,244, 40,114,114,114,124, 62, 71, 75,150, 44, 65,102,102, 38,228,114, 57,242,243,243,113,241, +226,197, 50,251, 63,251,114,222,237,212,233, 53, 17, 0, 16, 21, 26,224,147,193,114,214,156, 49, 99,134, 47,211, 60, 56,231,243, +242, 86,202,114,233,235,100,255,110,118, 49, 59,174,223, 93,215, 7,128,107, 0,120, 15,219,185,126,207,154, 54,109,218, 86,123, +228,171, 68,151, 47,171,255, 85,169, 8,150,139, 9, 48,212,169, 83, 71,237,220,126,202,113, 28,252,252,252,200, 91,111,189,197, + 19, 66,160,211,233, 16, 16, 16,128, 90,181,106,193, 98,241,220, 45, 65, 46,151, 27, 90,180,104,161,118, 14,189, 18, 66,160,213, +106,249, 49, 99,198,144,239,191,255,222,237,118, 43, 87,174, 44, 55,115,219,108,182,153, 79, 61,245,212,243,169,169,169, 65,225, +225,225,200,200,200,128, 92, 46, 47,158, 45,182, 67, 7,180,189,112, 1,150, 18,195,112,234,212, 41,204,155, 55,175,200, 98,177, +204,188,153, 8, 86, 72, 72, 8,148, 74,101,169, 81, 49, 78,161, 85,175, 34, 88, 21,105,174,236,154,206, 23, 86,251,231, 17, 35, + 70, 56,190,251, 82, 73,202,229,114,218,171, 87, 47,199, 51, 8, 3, 3, 3, 81,169, 82, 37, 92,189,122,245,223,145, 58, 37,145, + 59,111, 13,150,167,137, 68,101, 50, 25, 44, 22,139,163, 57,243,235,175,191,190,105, 99,112, 79, 25, 44,155, 68,116,186, 80, 68, + 69,213, 70,104,152, 17,146, 36, 86,152,182,205,102,195,200,145, 35, 75,205,121,101,191, 16,219, 39,177,181,143,240,117, 14,255, +251,122, 39,126,203,209, 17, 10, 88,109, 37, 81, 60,189,249,190, 59,135,177,177,177,254, 37, 77,134,174, 44,166,148,174,117,123, +110, 74,166,100,224,129, 15, 47, 95,190,220, 32, 32, 32, 0, 93,187,118,197,170,229,203, 87,190, 15, 56, 66, 54, 6, 32, 85,125, +229,202,255, 74, 62,167,121, 10,234,217,155, 8,139,244, 21,109,214,201, 13,209,171, 91,109,202,225,184,226, 27,179, 63,191,251, + 24,117,213, 87,209,184,138, 18,187,246, 30,193, 67,149, 41,168, 73,126,211,233,212,233,116,197,157,241, 53, 26, 40,149,255,246, +185, 82,106,212,144, 43,148, 55,189,239,206,145,170, 91,141, 96, 17,194,149, 58,142,207, 63,255, 60,198,142, 29,139,174, 93,187, +226,236,217,179,216,190,125, 59,206,156, 57,131,215, 94,123, 13,241,241,241,232,214,173,155, 79,231,232,207, 63,255, 68, 94, 94, + 30, 40,165,200,204,204,132,209,104,196,132, 9, 19,110,249,188,219,185,176,113, 42, 0,224,247,141,135,110, 90,115,252,248,241, +142, 57, 24,237,215,252,242,162, 86, 94,178,223,195,119, 95,183,191,237,184, 53, 88,167, 79,159,118, 59, 86,190, 94,189,122, 87, + 59,117,234, 20,118,250,244,105,232,116, 58,212,170, 85, 11, 38,147,169,204,102, 8,231,167,109, 39, 37, 37,185,213,172, 94,189, +186,165, 75,151, 46,178,136,136,136, 82,145, 43,251, 8, 27,103,103,236,170, 89,114, 17, 40, 32,132,188,216,186,117,235, 95,214, +174, 93,171,174, 85,171, 22,242,242,242, 0, 0,243,231,207,199,171,175,190, 10,181, 90,141,211,167, 79,163, 95,191,126,122,189, + 94,255,162,243, 28, 88,238, 52,221, 25, 25,185, 92,238,104, 38,179, 55,149, 41,202, 9, 69,151,241,164,113,204,154, 53,203,237, + 92, 80,174,204,153, 51,167, 56,183,122,145,206, 79, 63,253,180,194, 52,247,238,221, 91,234, 25,131,125,250,244,249,174, 91,183, +110, 72, 73, 73, 41,213, 44, 88,158,193,114,213,244, 52,145, 40,207,243, 8, 15, 15,199,148, 41, 83, 80,169, 82, 37, 68, 68, 68, +220, 96,176, 60,157,163,155,188,123,191,173,154,148,163,137, 95,126, 62,177,205,119, 63,252, 46, 83, 42, 56,236,217,254, 59,242, +115,174,148,142,192, 90,254, 29, 18,173,104,218, 9,230, 67,155,189, 74,167,201,100,194, 39,159,124,130,137, 19, 39, 98,226,196, +137,229,166,169,140,225,208, 30,247,221,217, 96,121, 99,182,220,105, 74,146, 72, 84,154, 32,104,180, 81,136,143, 15,130,228,197, + 92,157,210,221, 63,239,250,148,148,148,128,202,149, 43,227,204,153, 51, 4,255,246,199,250,247, 92, 41, 20,131,225, 52,218,207, +109,121, 7,142, 46, 90,180,168, 65,195,134, 13,241,245,215, 95, 3,192,211,159,108,216,240,196, 68, 67,113, 56,179,100, 74,134, +117,222,164, 83,164, 34, 81,105, 2,161,214,149, 28, 71,201,251, 57, 79,105, 57,251,110,191,248,221,226,141,222, 13,154,246,237, +207,239,249, 11,189,122,196, 96,247,190,163,216,156,170, 69,101,101, 58, 34,245,153,144, 50, 79,226,127, 3,155,226,139,101,197, + 23,241,163, 7, 61,107, 18, 66,176,243,173, 23,161, 83, 41,241,216,162, 53,144,201,100,216, 58,250, 25,200,229,114,180,251,188, +184, 73,246,216, 39,227, 33, 40, 21,168,251,218, 68,175,210,233,218, 82, 99,239,115,229,108,174,202,139, 96,149,183,239,133,133, +133,200,201,201,193, 47,191,252,130,225,195,135,227,218,181,107,184,120,241, 34, 78,159, 62,141,197,139, 23,151,186,198,193,135, +115, 52,110,220, 56,188,249,230,155,224, 56, 14, 13, 26, 52,192,196,137, 19,209,178,101, 75,159,207,145,235,121,119,197, 83,244, +170, 60,205, 47,191,252,210,231, 1, 91, 15, 34, 62,117,208,176, 71,178, 42, 85,170, 4,173, 86, 11, 0,165, 46,176,158,154, 9, +203,210,180,217,108, 80,171,213, 80,171,213,165,166, 69,232,219,183,175,199, 8, 86, 73,229,191,142, 16, 50,180,126,253,250, 63, + 78,156, 56, 81,219,190,125,123, 89, 84, 84, 20, 18, 18, 18,112,250,244,105,252,245,215, 95,150,217,179,103,235,245,122,253,112, + 74,233,198,155,169,147,237, 29,191,157,103,180,247, 5, 81, 20, 83, 46, 94,188, 24,249,233,167,159,242,132, 16,204,156, 57,179, +212, 4,173,174,251,184,119,239, 94,155,167, 38, 25,155,205,150,114,241,226,197,200,207, 62,251,172,148,166,253,229,106, 82,188, +209, 44, 11,251, 62,187, 30, 3,111, 10,143,167,137, 68, 5, 65,192,169, 83,167,240,193, 7, 31,128, 16, 82,106,224,196,253,204, +174,253,233,223,183,106, 22, 21, 52,120, 96,199,134, 4, 28,204,110, 34,189,124,118,174,195, 92,245,255,108, 9,254,124,243, 9, +111,206,197,197,109,219,182, 85,153, 58,117, 42,207,243, 60,102,204,152, 81, 42, 47,185,158,247,191,255,254, 91, 84,171,213,151, +111,118, 63, 44, 22,139,199, 81, 84,229, 20,240, 93,179,102,124,208,245,187,159, 86,201, 8, 49, 99,207,182,223,145,151,235,126, +104,186, 66, 38, 96,193,162,149, 54,129,231, 82,238,242,169,251,174,115,231,206, 19, 54,109,218, 36, 84,174, 92,249,166, 69, 98, +128, 85,179,102,205,234,241,212, 83, 79, 5,215,171, 87,207, 62,248, 68, 81,242, 66,201,204,238,235,188, 52, 73, 43,190,248,244, +131,167,231,254,180, 74,193, 17, 11,246,108,255, 29,121, 46,102,253,198,104,180, 12, 11, 23,173,176, 8, 2,127,202, 83, 29,124, + 51, 35,152,189,161, 73,175,225,248,102,205, 60,132, 53,236,129, 65,125,218, 96,231,215, 79,227,241,122, 6, 88,126, 27,130, 6, +131, 22, 96,254,248,226,232, 77,227,165,227,189,186, 86,248,235,254,157,176,146,227, 56, 40, 85,106,200, 20,255, 70, 95, 20, 26, + 13,120, 31, 34,182,246,125, 47, 47, 82,229,235,241,224,121, 30,113,113,113,168, 94,189, 58, 90,183,110,141, 38, 77,154,160, 67, +135, 14, 56,114,228, 8,142, 28, 57,130,215, 94,123,173, 76,115,229,205, 57,234,218,181, 43,186,119,239,126,203,231,198,245,188, + 87, 4,222,228,165,151, 95,126, 25, 0,110, 53,154,245,224, 26,172,208,208, 80, 40, 20,138,155, 50, 84,238, 52,205,102,179,195, + 88,169,213,106, 71,196,106,229,202,149, 94,103,112, 74,233, 70, 66, 72,252,123,239,189,247,186, 90,173,238, 96, 48, 24,234, 2, +128, 70,163, 57,169,215,235,183, 88, 44,150, 47, 41,165,185,183,146, 86,103,131,225,198,205,151,123,139,159,153,153,217,109,216, +176, 97, 27, 57,142,171, 86,222,131,153,157,204,106,242,213,171, 87,123,120,210,124,242,201, 39,221,106,186,211,245, 70,179, 12, +115, 88,202, 84, 57,143, 48,244, 42,147,121,152, 72, 84, 38,147, 65,167,211, 97,249,242,229, 8, 9, 9,121,160, 10,216,238,131, +233,159,148,183,188,125, 37,229, 54, 0,161,253, 63, 91,114,121,107,150, 57,182,125, 37,197,165, 63,223,124,162,138, 7,195,211, +106,250,244,233, 59,173, 86,107,172,151,249,246,146,201,100,106,227,107,218, 41,165, 56,117,234,148,244,252,243,207,103,101,102, +102, 14,186,153,253,223,190,231,210,231,109, 90, 68, 85, 26,216,175, 77,115, 16, 2,179,217, 84, 86,203, 2,165,148, 82,129,231, + 82,182,237, 77,121,254,110,158, 51, 74,233, 97, 66,200,228, 26, 53,106,188, 4,160,172, 43,225, 98, 79, 58,201,128, 89, 97, 50, +125,218,172, 89,179, 49,239,188,243, 78, 96,159, 62,125, 80,185,114,101, 4, 4, 4,248,156,166,157,251, 82, 95,106,217, 44, 50, +230,177,190,109,186,113,132, 80,147,217,228, 33,186, 80,114, 60, 5,254,212,182,189, 41,141,202,139,206,219, 77,249,237,136, 54, +116, 26,248, 44, 58, 13,124,214,145,159, 54, 47,107,143,196,180, 13, 72,224,210, 96,154,219, 6,196,223,158,213, 61, 79,115,195, +113, 28,250,252,180, 28,114,185,220,145,206, 86,211, 75,143, 11,168,245,138,247,207, 82,119,222,119,231, 8,150,155,186,216,167, + 62, 88, 60,207, 35, 43, 43, 11,167, 79,159,198,213,171, 87,161,215,235,113,226,196, 9,152,205,102,228,228,228,192, 62,210,240, +102,210, 89, 81,231,232,110,106,254, 23,140,213, 77, 25, 44, 74,105,234, 67, 15, 61,228,233, 98,236,211, 40, 35, 65, 16,140,109, +218,180, 33,238, 70, 27,216, 63,171,213,106,131,151,233,203, 5, 48, 17,192,196,146,231, 77,193,108, 54,223,114, 71, 18, 81, 20, +211, 91,180,104,193,151,215, 39, 65,146,164,171, 30,204, 80, 17,128, 10,125,116,248,237,208,116, 83,104,196,151, 94,122,169, 92, + 39,165,213,106,203,237, 92,228,105, 34, 81,189, 94,159, 49,108,216, 48,209,185,169,217,121, 34,210, 7, 26, 66, 47,245, 28,252, + 92,236,214, 44,115, 44, 0,216, 77, 22, 40,189, 84,214, 38, 7, 14, 28,184, 10,160,198,237, 78,218,133, 11, 23,204, 15, 61,244, +208,194,130,130,130,151, 41,165,250,155,213,217,185, 63,125,252,253,118, 90, 40,165,135, 1,140,184, 85, 29, 51,112, 34,220,104, + 28, 57,241,253,247, 31,251,224,253,247,107, 73, 64, 8, 74,230,168,226,189, 48,105,206,236, 57,152, 81,225,115,131,137,162,152, +218,170, 85, 43,159,183,241,180,188,156,153,196,241, 43, 42, 3, 7,125,215,188, 29,233,180,107, 54,108,216, 16,141, 27, 55,118, +188,219,113,254,189, 73,147, 38, 94,105, 54,109,218, 20,245,234,213, 43,115,134,118,215, 62, 87,119,123,223,237,216,111,125,155, + 52, 89, 95, 97,154,183,154,206,251,191,122,191,141, 67,162,239,199,126, 51, 76,147,105, 50, 77,199, 58, 60,165, 84,100,199,147, +105, 50, 77,166,121, 39, 52, 31, 52, 56,118, 8, 24, 12, 70, 25, 81, 28,145, 29, 5, 6,131,193,184, 73, 19, 10,160, 65, 25,149, +171,215,206,148, 16,210,192,215, 63,246,226,238,153,105, 50, 77,166,201, 52,153, 38,211,100,154, 15,152,166, 39,237, 7, 37, 50, +198,154, 8,153, 38,211,100,154, 76,147,105, 50, 77,166,121,215, 53, 31, 52, 88, 19, 33,131,193, 96, 48, 24, 12, 70, 5, 35,176, + 67,192, 96,252,183,153, 68,200, 45,221,104,125, 64,169,196,210,201, 96, 48, 24,165, 97, 17, 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,248, 79,113, 91, 71, 17, 50, 24,140,123, 31,214, 7,139,193, + 96, 48, 42, 30, 22,193, 98, 48, 24, 12, 6,131,193,168, 96, 4,160,244,131,138, 41,165,132, 29, 22, 6,131,193, 96, 48, 24,119, +146, 7,205,139, 8,204, 88, 49, 24, 12, 6,131,193,184, 23,120,144,188, 8,231,206, 57, 50, 24, 12, 6,131,193, 96,220,105, 30, + 36, 47,194, 61,136,174,145,193, 96, 48, 24, 12,198,253,199, 3, 27,193, 98, 81, 44, 6,131,193, 96, 48, 24,119,139, 7,201,139, + 8, 15,154, 99,100, 48, 24, 12, 6,131,113,255,241,160,121,145,219, 58, 77, 3, 33,164, 1,211,100,154, 76,147,105, 50, 77,166, +201, 52,153,230,127, 13, 54, 15, 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,252,167, 16,216, 33, 96, 48,254,219,220, 47,207,232, 99,207, 18,100, 48, 24,247, 19, 44,130,197, 96, 48, 24, 12, 6,131, + 81,193, 16, 0,110, 71, 2, 80, 74,143,121, 45,114, 19,163, 9, 60,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,193,211, +244,164,237,139,255,184,167, 13, 22,165,183,111, 62, 47, 66, 72,131,138, 62, 80, 76,147,105, 50, 77,166,201, 52,153, 38,211,124, +240, 52, 31, 52, 88, 19, 33,195,181,208, 8,132, 16,225,102,151,223, 41, 77, 6,131,193, 96, 48,238,101,216, 69,141,225,108,116, + 90, 2,232, 93,242,121, 53,165,116,143, 47,203,239,148,230,221, 34, 33, 33, 65,173, 82,169,186,254,253,247,223,242, 83,167, 78, + 97,239,222,189,244,215, 95,127,181, 26,141,198, 13,137,137,137, 6,150,131, 30, 12,154, 54,109,218,141, 16, 50, 22, 0, 40,165, + 31, 31, 58,116,104,253, 45,148, 41, 82,163, 70,141,215, 20, 10, 69, 79,153, 76, 22, 37,138, 34, 49,153, 76,233, 6,131, 97, 99, + 90, 90,218,103,244, 38, 58,238, 19, 66,154, 87,170, 84,105, 68,124,124,124,173, 11, 23, 46,164, 92,190,124,121, 1,128,245, 0, +186, 85,169, 82,101, 88, 92, 92, 92,229,164,164,164, 51, 89, 89, 89,115, 40,165, 7,238, 86, 58, 25, 12,102,176,188, 43,124, 92, + 80, 80, 80, 23,181, 90,253,122, 97, 97, 97, 83,127,127,255, 36,155,205, 54, 43, 35, 35, 99, 53, 43,120, 15,140,185, 18, 0,244, +166,148,202, 0,128,231,249,126, 45, 91,182,140, 37,132, 72,132, 16, 74, 41, 37, 28,199, 53, 17, 69,145, 43, 89,191, 55, 33,228, + 0,165,212,118,179,154, 54,155,205,103,205,219, 69,124,124,252, 84, 74,105, 84,121,235,104,181,218,102,155, 55,111,174,179, 98, +197, 10,219,130, 5, 11,114,159,120,226, 9,221, 51,207, 60, 35,204,159, 63,255, 27, 0,255,115, 93,191,126,253,250,159,115, 28, + 87,201,155,255,151, 36, 41,235,248,241,227,111,176,156,120, 79,148,133,177,207, 77,223,250,136, 68,129, 31,199,181,227, 74,204, +203, 77,209,164, 73,147,159, 31,125,244,209,193,181,107,215, 22, 36, 73,130,213,106,133,201,100,170,115,232,208,161,246,235,215, +175,111, 6, 96,144,143,105,235, 61,110,220,184,121,147, 39, 79, 14,149,201,100,196,106,181, 62,252,219,111,191,117, 31, 49, 98, +196,225, 57,115,230, 52,126,252,241,199,253,236,191,127,240,193, 7, 61, 8, 33,163, 41,165,139,239,116, 58, 25, 12,134, 7,131, +229,231,231, 87, 51, 52, 52,244,205,144,144,144, 30,205,154, 53,203,123,241,197, 23,207, 31, 57,114,228, 68,124,124,124,225, 79, + 63,253,244,145,213,106,157, 93,187,118,237, 13,249,249,249,159, 93,185,114,229,132,143, 21, 69, 77, 0, 47, 2,232, 1, 32, 6, + 64, 58,128,181, 0,230, 81, 74, 79,221,204,206, 68, 71, 71, 55,212,106,181, 99, 8, 33, 15, 23, 21, 21,197,104,181,218,116, 74, +233,190,130,130,130, 25, 25, 25, 25,135,110, 70, 51, 38, 38,166, 58,128, 81,130, 32,180, 21, 69,177, 26,207,243,151, 68, 81,220, + 33,138,226,215,233,233,233,103,110, 70,179,117,101,191, 62,146,206,255, 51, 43,175,174, 92,104,180,201,117, 74,193, 42,147,140, + 41, 82, 81,238,184,125,151, 11,127,191, 23, 50,134, 66,161,224, 22, 44, 88,208, 88,161, 80, 0, 0,204,102, 51,226,227,227,111, +233, 57, 81, 50,153,140,155, 49, 99, 70, 99,185, 92, 14, 0,176, 88, 44,232,216,177,227, 61,241,236, 41, 66, 72, 76, 98, 98, 98, +128, 61,109,174,136,162,136,126,253,250, 85, 85, 40, 20,152, 51,103,142, 45, 43, 43,171,233,143, 63,254,152,248,205, 55,223, 84, +250,249,231,159, 7,186, 51, 88, 28,199, 85, 42, 75, 83, 20, 69, 88, 44, 22,216,108, 54,152,205,102,116,232,208,129,213, 70,247, + 8,148,210, 88, 10, 96,237, 17, 35, 0,132,220,138,150, 90,173,174,219,191,127,127, 33, 51, 51, 19, 50,153, 12, 22,139, 5, 87, +174, 92, 65,245,234,213,121,179,217, 92,219, 87,189, 58,117,234,140,152, 54,109, 90,216,154, 53,107, 44, 11, 23, 46, 52,117,238, +220, 89, 62,124,248,112,255, 71, 30,121,164,109, 76, 76, 12,247,227,143, 63,154, 54,109,218,100,121,242,201, 39,149, 83,167, 78, + 13, 91,187,118,237, 96, 0,139,239,116, 58, 25, 12, 70, 57, 6,203,207,207,111,155, 78,167,171,241,194, 11, 47,156,122,249,229, +151, 55,232,116, 58, 17, 0,174, 92,185,162,236,215,175, 95,230,128, 1, 3,174,233,245,122,126,246,236,217, 85,190,250,234,171, +141,126,126,126,105, 5, 5, 5, 45,188,184,144, 17, 0,175,115, 28, 55,170,107,215,174,219,172, 86,107,230,242,229,203,151, 14, + 28, 56,176,141, 36, 73,218,191,255,254,251, 47, 66,200,119, 0, 62,245, 54, 58, 70, 8,225,227,226,226, 38,198,196,196,188,245, +237,183,223, 42,171, 85,171, 6,141, 70,131,130,130,130, 42,103,206,156,169,252,250,235,175,247,173, 94,189,250,172,128,128,128, +247, 18, 19, 19,173, 94,106,146,168,168,168,255,249,251,251,127,248,209, 71, 31,169,234,215,175, 79, 52, 26, 13,146,147,147, 27, +236,217,179, 39,254,135, 31,126, 24, 30, 19, 19, 51, 41, 45, 45,205,235,116,182, 39, 68, 48,213, 8, 93, 31, 88,167, 69,135, 57, +243,126, 32,149,180, 26, 8,132,192,106,177,200,174,234, 13,113,175,142,124,105,105,203, 90, 17,187, 10,100, 87, 59, 29, 63, 78, + 45,119,248,162, 98, 35,132,172,230,121,190,159, 66,161,224,250,245,235,135, 77,155, 54, 17,163,209, 40, 0,128, 74,165,178,245, +235,215, 15,106,181, 26,102,179, 89, 2,176,186,100, 27,101,201,246,166,242, 52,101, 50, 25,215,161, 67, 7,253,193,131, 7,179, +245,122,189,204,174,217,161, 67,135, 96,165, 82,169,177, 90,173, 94,105,222,102, 83,137,115,231,206,221, 96,132,174, 93,187,134, +236,236,108,152, 76, 38,146,147,147, 3, 81, 20, 97, 50,153, 50, 69, 81, 4,199, 21, 7,223,202,210,148,203,229, 56,125,250,244, + 13,191, 91, 44, 22, 24, 12, 6, 88,173, 86,228,231,231,171, 85, 42, 85,141,182,109,219,166, 2, 88, 81, 88, 88,248,217,225,195, +135, 47,177,234,233,174,113,249,175,127,140, 85, 0, 88, 0, 92,184, 69,227, 46, 1,192,142, 29, 59,112,245,234, 85,100,102,102, + 34, 51, 51, 19,149, 43, 87,198,205, 68,255, 79,157, 58,245,101,147, 38, 77,200,225,195,135, 87, 1,152,183,100,201,146,254,215, +175, 95,255,246,237,183,223, 14,158, 49, 99,198,245, 49, 99,198,140, 4,240,231,146, 37, 75,158,109,216,176, 97,159,163, 71,143, +126,113, 55,210,201, 96, 48,202,233,228, 78, 41,141,170, 89,179,230,245,153, 51,103,214, 25, 55,110, 92, 72, 97, 97, 33, 15, 0, + 81, 81, 81, 70, 0,208,235,245,252,216,177, 99, 67,167, 79,159, 94, 71,169, 84,230,216,108,182, 80, 55, 26,238, 70, 24,140,242, +247,247,239,123,254,252,249, 37,117,234,212, 9,158, 54,109,218, 63, 90,173,150,126,241,197, 23,135,170, 87,175, 30,121,233,210, +165, 95,252,253,253, 59, 2,120,171,140,116,221,160, 89,181,106,213, 15, 6, 14, 28,248,214,174, 93,187,148,141, 26, 53,130,159, +159, 31,120,158, 71, 96, 96, 32, 30,122,232, 33,178,125,251,118,101,207,158, 61, 95,203,203,203,155,225,173,102,116,116,244, 91, +221,187,119,255,232,224,193,131,234, 78,157, 58, 17,133, 66,129,220,220, 92, 40, 20, 10,180,108,217,146,124,251,205,215,234, 6, +245,235,125, 16, 19, 19, 51,217, 91, 77, 83,205, 74, 27,159,120,121,108,199,213,107,215,147,240,240,112,156,255,116, 50,118, 60, + 18,143,179, 83,198, 33, 50, 50, 18,171,214,172, 35,189,159,122,185,141,191, 53,252,111,111, 53, 43,192, 88, 29,115,250,188, 39, + 62, 62, 62,241,196,137, 19,104,219,182, 45,150, 46, 93,218,232,237,183,223,126,249,237,183,223,126,121,233,210,165,141,218,182, +109,139, 19, 39, 78, 32, 62, 62, 62,145, 82,186,135, 16,242, 50,128,235, 0,174,151,124, 46, 83,115,219,182,109,232,216,177, 99, +206,146, 37, 75,170, 79,152, 48, 97,234,132, 9, 19,166, 46, 93,186, 52,174, 99,199,142, 57,219,182,109,243, 73,243,118,236,187, +179,161,114,125, 81, 74, 33, 73, 18,194,194,194,174,173, 89,179,134,246,238,221,155,143,136,136, 72,239,215,175,159,114,223,190, +125,148, 16,178,218,151,116, 82, 74, 97, 48, 24, 96, 48, 24,112,225,194, 5,245,172, 89,179,218,188,245,214, 91, 53,127,251,237, +183,232,215, 94,123,109,164,191,191,255,161,198,141, 27,199,222,233,125,103,154,142,200,227,149, 18,115, 85,196,113,220,229,155, +213,124,236,177,199, 26,196,198,198,134,255,150, 20,132, 28,121, 29,136,178, 0, 72,242, 64,136, 33,205,113, 86,222, 29, 81, 81, + 81,225,177,177,177, 45,125,209,164,148,110,252,231,159,127,122, 80, 74,231, 80, 74, 69, 74,233,178, 49, 99,198, 60, 79, 8,249, +125,204,152, 49, 47, 81, 74,151,149,252,254,253,145, 35, 71,250, 80, 74,183,220,141,116,178,188,196, 52,111, 3,205, 1,244, 42, +121,181, 0,240,144,203,119,133,203,122,157,203,120,239,229,242,189,185,203,118,205, 43,212, 96, 17, 66,168,253,229,116, 71, 99, +253,228,147, 79,246,254,240,195, 15,155, 50, 50, 50, 34,227,226,226,122,245,239,223, 63, 54, 63, 63,159, 27, 48, 96, 64,213,200, +200,200,222, 91,182,108,137, 24, 48, 96,192,223, 3, 7, 14,220, 67, 8,241,216,111,134, 16, 82,157,231,249,209,135, 15, 31,222, + 89,181,106, 85, 75,122,122,186, 95,147, 38, 77, 10, 0,160, 86,173, 90,250,236,236,108,181,159,159, 31,214,172, 89,179,159, 16, +242, 34, 33,164,142, 39,205,168,168,168, 38,149, 42, 85,122,235,195, 15, 63, 84,242, 60,239,118, 29,165, 82,137, 15, 63,252, 80, +233,239,239,255, 66,116,116,244,195,158, 52, 35, 34, 34,234,250,249,249, 77,156, 53,107,150,202,108, 54,195, 98,177, 32, 60, 60, + 28, 58,157, 14, 25, 25, 25, 72,187,120, 17,215,146,147,241,218,115,207,169,181,106,245,232,168,168,168,198,158, 52,219, 86,245, +235,167,139,174,215,254,213, 81,175,227,248,235,207, 97, 83,180, 2, 17,163,198,162,209,214, 99,136,153,244, 25,182,196,249, 35, +113, 80, 23,140, 30,253, 38,228, 97,113,173, 90, 85,214, 61,113, 87, 66,154,130, 64,149, 74, 37,140, 70,163,176, 99,199,142,182, + 54,155, 77,102,179,217,100,219,183,111,111,191, 97,195,134, 30,211,166, 77,235,166, 86,171, 71,182,108,217,242,103, 66,200,151, +148, 82, 53,165, 84, 13, 96,134, 61,242,228, 78, 83, 38,147,193, 96, 48,200, 14, 30, 60,248,146, 40,138, 10, 81, 20, 21, 7, 15, + 30,124,101,203,150, 45,195,230,204,153,227,179,230,157,130,231,121, 8,130, 0,153, 76,134,198,141, 27,159, 95,180,104,145, 53, + 42, 42, 74,152, 59,119,110, 80, 88, 88,152,246,231,159,127,206,205,201,201,249,196, 23, 77,179,217, 12,147,201, 4,131,193,128, + 29, 59,118, 84,123,225,133, 23, 4,179,217, 44, 62,245,212, 83,215,173, 86,171,233,149, 87, 94,241,215,233,116,111,178,251,191, +187, 3,165, 84, 4, 80, 4,160,208, 30, 69,173, 90,181,170, 50, 58, 58,186, 97,213,170, 85,189,206,143,133,133,133,223,125,254, +249,231, 49,156, 50, 16, 59,205, 61,177,132, 78,198,198,192,111,144, 89,245,109,132, 87,174,137,238,221,187,135, 17, 66,190,174, +128,244,174,160,148, 14,164,148,254,113, 51,219,223,238,116, 54,111,222,188,109,179,102,205, 14, 38, 36, 36,100, 52,107,214,236, + 96,243,230,205,219,222,234, 62, 79, 30, 65, 58,127, 60,138, 79,157, 50,146,208,143, 71,241,169,147, 71,144,206, 44,231,222,255, +184,243, 34, 78,132, 18, 66, 86, 19, 66, 86,143, 31, 63,190, 3,128, 16,151,239,173,156,215, 3,160,112,247,110,127, 57,253, 30, + 90, 98,172, 66,157,190, 87,204,245,212,169,144,186,109,230, 8, 13, 13, 53,191,243,206, 59,135,141, 70,227,177,159,127,254,185, +198,203, 47,191,220, 36, 54, 54,246,244,128, 1, 3,254,210,104, 52, 54,123, 31, 29, 47,121,174,103,207,158,107,130,131,131, 73, + 86, 86,150,220,108, 54, 11, 87,174, 92,145,139,162, 72,120,158,167,122,189, 94, 56,123,246,172,204, 98,177, 72, 15, 63,252,240, +202, 61,123,246,188, 8, 96,116,121,130, 26,141,230,149,185,115,231,170,202, 50, 87,162, 40,162,176,176, 16, 54,155, 13,147, 38, + 77, 82,189,245,214, 91,175, 3,216, 91,158,166, 76, 38,123,109,230,204,153, 42,123, 19,144, 36, 73, 56,116,232, 16,178,174, 93, +131,169, 32, 31,230,130,124,152,243,114,192, 21,230, 97, 88,143,110,170, 57,127, 44,127, 3,192,176,114, 47,170, 74,221,244,159, +231,253, 0, 81, 20,145,190,220,125,151,136,235,187,182, 66,180, 89, 49,245,227, 25,100,244,115,143, 79, 3,176,228, 94,201,248, + 10,133,130,251,244,211, 79,235, 40, 20, 10, 16, 66,168,217,108, 70,253,250,245,201, 45,106,242, 95,126,249,101, 19,185, 92, 78, +236,154, 13, 26, 52, 32,247, 90,161,151,203,229, 80,171,213,168, 90,181,170,161, 79,159, 62,123,190,252,242,203, 42, 60,207,107, + 4, 65, 88,151,151,151, 55, 45, 41, 41,201,167,102, 36,147,201, 4,163,209, 8,163,209,136,203,151, 47, 71,212,168, 81,131,252, +239,127,255, 19,139,138,138,226,190,255,254,251,115, 75,150, 44,209,124,253,245,215, 3, 0,140, 98, 85,238,157,165, 70,141, 26, + 10,127,127,255,128, 42, 33, 66,145,140, 71, 81,134,205, 22, 30, 19, 19, 51, 22, 64,179, 90,181,106, 5,157, 61,123, 54, 39, 58, + 58,122, 47,199,113,139, 83, 82, 82, 50, 60, 24, 31, 98,179,217,240, 82,139, 92,140,124,152,131,205,102, 67,110,110, 46, 46, 95, +190,140,164,164, 36,236,219,151,116, 83,105,172, 86,173,218,115, 42,149,170,171, 66,161,168, 42,138, 34,167,215,235, 47,153, 76, +166, 77,233,233,233,223,209,155,152,216,240,118,165,211, 73,255,179,254,253,251, 71, 5, 4, 4,224,159,127,254,137, 58,114,228, +200,103, 0,154,221, 82,221, 33,227,126,124,234,249,175,163,131, 3, 3,145,124, 98, 85,244,138,181,191,253,136,226,190,188,140, +251,255, 6,167,172,107, 64, 38,165,212, 49,226,124,218,180,105,189, 75,214,239,237,252,221, 11,253,222,110,140,221,106,119,191, + 87,152,193,178,143, 20, 43,107, 69,149, 74, 37,142, 24, 49,226,244,202,149, 43,171, 54,107,214,236,100, 89,157,129, 61,208,186, + 78,157, 58,151,246,239,223, 79, 67, 67, 67,205,146, 36, 17,141, 70, 35,170,213,106, 41, 47, 47, 15, 86,171,149, 94,186,116, 73, +184,124,249,178,188, 82,165, 74,114,111, 66,117, 50,153,172,101,181,106,213,202,140, 20, 20, 22, 22,162,160,160, 0, 38,147, 9, +225,225,225,132,227,184,135, 60,134,245, 56,174, 77,157, 58,117, 72, 78, 78, 14,162,162,162,176,115,231, 78, 20,230,229,194, 84, + 80, 0, 83, 94, 46, 44,249,121, 16,243,115,145,123, 45, 3, 85, 35, 99, 72,201, 84, 3,229, 98,227,213,177, 97, 58, 45,206, 78, + 30,139,230,135, 46,129,200,228,216,223, 32, 18,212, 90,220,213,170,197,209,116, 16,185, 2, 39, 95,123, 6, 17, 67, 95,128,149, + 83, 70,223,141,204,109,179,217,136,201,100,130, 74,165,178,181,109,219,118, 7,207,243,237, 21, 10, 5, 55,114,228, 72, 92,185, +114,197,145, 93, 0, 96,228,200,145, 80,171,213, 48,153, 76, 54, 0,111,151,213,103,202,102,179, 17,171,213, 10,181, 90,109,109, +214,172,217,119, 60,207,191,162, 80, 40,248,218,181,107, 95,157, 62,125,122,186, 86,171,213, 94,190,124,249,186, 66,161, 72,173, + 90,181,106, 11,181, 90, 29,235, 73,243, 78,162, 84, 42, 33, 8, 2, 56,142, 67, 72, 72, 72, 81,118,118,246,190,243,231,207, 15, +185, 25, 45, 81, 20, 97, 54,155, 97,181, 90, 97, 52, 26, 33, 73, 18,142, 28, 57, 2,165, 82, 41, 19, 69, 49, 73, 20, 69,141, 76, + 38, 3,207,243,108,142,186, 59, 76, 66, 66, 66,251, 70, 17,254,159,141,140, 52, 5, 85,239,173, 45,212, 40,249,162,193,203,173, +205, 59,119, 30,212,237,237,183,199,234, 42, 85,170,164,184,120,241,162,241,139, 47,190,168,246,231,159,127, 18, 0,159,150,167, +151,158,158,254,251,244,233,211,131,219,183,111, 31, 39,147,201, 72,110,110, 46, 50, 51, 51,113,237,218, 53, 92,190,124,153, 38, + 39, 39,159,183,217,108, 75,125, 73, 99,163, 70,141,190, 31, 58,116,232, 83,245,235,215,151, 81, 74, 97,181, 90,161,215,235,155, +236,219,183,175,239,206,157, 59,219, 2,240, 57, 95,102,100,100, 44,253,248,227,143,181,237,218,181,171, 35,147,201,184,138, 72, +167,203, 5, 45, 74,167,211, 97,211,166, 77,240,247,247,135,167,209,186,222, 96,177, 73,209,193,129, 33, 48,158,249, 28, 81,254, +177,176,216,164,104,150,131, 31,156, 40, 86, 25, 94,228, 0,128, 94,183,106,134,110,151,153,186,169, 8,150,157, 43, 87,174, 40, + 11, 11, 11, 5, 73,146, 56,147,201, 36,147, 36, 9, 50,153,204,234,227,255,213,239,223,191,255,222,230,205,155,235, 75, 34, 24, +182,128,128, 0, 91, 94, 94, 30, 74, 12,150, 36, 8,130, 81,167,211, 25,227,226,226, 0,192, 99, 19,161,193, 96,168,162, 86,171, +111,248, 93,175,215,163,176,176,208, 97,176,244,122, 61,252,253,253, 81, 84, 84,228,177,112,139,162, 88, 85,163,209, 32, 61, 61, + 29, 0, 80,152,155, 3, 99,126, 62, 44, 5,121,176,228,230,192,154,151, 11,107, 94, 14, 56,131, 1,129, 49,149, 97,179,217, 42, +123,210, 44, 50,137, 10, 30, 20,215, 86,255,142,240, 87,222, 46,115,189,235, 59,182, 64, 87,163, 54, 12, 6,139,112, 23, 50,118, + 75,142,227, 18,234,213,171,135,126,253,250, 97,208,160, 65, 71,212,106,117,216,215, 95,127, 93, 63, 45, 45,237,134,245, 31,125, +244, 81,140, 26, 53, 10,253,251,247,255,229,159,127,254,153, 93,158,102,187,118,237,208,161, 67,135,224, 65,131, 6, 37,235,116, +186,196,121,243,230,181,152, 52,105,210, 85,189, 94,159,150,152,152,216, 48, 53, 53, 85, 83,171, 86,173,173,241,241,241,220,154, + 53,107, 98,203,211,188, 11,166, 19, 86,171, 21, 22,139, 5, 38,147,201, 99, 89,113,185,184,148,250,110,181, 90, 29, 35, 8,141, + 70, 35,172, 86, 43, 89,177, 98, 57, 86,173, 90,197,157, 56,113, 60,102,220,184,241,200,205,205,133, 40,138,172,166,189, 67, 52, +107,214,172,135, 64,165,185, 79, 70,216, 84, 79,134,219, 10, 5,142, 22,158,249,225,189,162, 35,129,130,201, 84, 68,252,222,125, +239,189,160,115,231,206, 89, 62,254,248,227,140,126,253,250,169,158,127,254,249,122,107,214,172,105, 91,165, 74,149, 31, 46, 95, +190,156, 91, 70,190,151, 63,247,220,115,123,131,130,130,170, 47, 92,184,240,106,122,122,122,176,213,106,213,152,205,102,139,217, +108, 62,103,177, 88,118,154,205,230, 77, 25, 25, 25,137,190,164, 85,167,211, 53,122,226,137, 39,100, 57, 57, 57, 16, 4, 1, 22, +139, 5,153,153,153,104,218,180, 41,191,121,243,230,250, 55,179,255,199,143, 31,255, 60, 42, 42,106,235,170, 85,171,186,106,181, +218, 4,133, 66, 17, 33,138,162,104, 52, 26,175, 26,141,198,195, 55,147, 78,151, 99,145,126,232,208,161, 40, 63, 63, 63,164,165, +165,129, 16,146,126,171,231, 76, 46,227, 82,146, 79,174,172, 28,229, 95, 13,167, 78,237,133, 92,198,165,176,156,252,192, 71,176, +154, 59, 71,172,202, 49, 73,134,113,227,198,189, 67, 8, 89, 61,110,220,184,119,202,137, 96,137,206,235, 57,173, 95, 97, 55,245, +229, 94,196, 11, 10, 10,132, 3, 7, 14,132, 92,190,124, 89, 23, 17, 17,161,143,143,143,207, 37,132, 80, 81, 20,185,235,215,175, +107, 83, 83, 83, 85, 65, 65, 65,166,202,149, 43,231,121,249,127,103, 94,125,245,213,118, 19, 38, 76, 72,236,210,165, 75, 22, 0, +228,228,228, 32, 51, 51,211, 62, 74, 11,233,233,233,220,193,131, 7,131,215,173, 91,215, 4, 94,140,224, 81,171,213,151, 11, 10, + 10,106, 7, 6, 6, 58, 46,104,118, 83,229,252,110,177, 88, 80, 80, 80, 0,173, 86,235,177,112,115, 28,151,150,150,150, 86,195, + 96,208,227,210,217,179, 48, 21,228,193,146,159, 7,107,126, 46,172,185,185, 16,115,175,131, 43, 44,128, 78,173, 70,193,245,108, +240, 60,127,197,147,166, 86,201,155,173, 54, 81, 17,218,189, 47, 64,202,190, 62, 7, 62,212, 6,180,110, 35,168,213,127, 88,239, +100,166,182,207, 89,101,159,147, 74,173, 86,227,163,143, 62, 66, 98, 98,162, 84, 94, 51,176, 66,161, 0,199,113,162, 55,154, 74, +165, 82, 61, 97,194, 4,245,225,195,135, 85, 10,133, 2, 58,157, 78,115,248,240,225,134,187,119,239,230,244,122, 61, 95,163, 70, +141,254,209,209,209,133,229,105,222,110, 35,229,238,183,194,194, 66, 71,191,169,235,215,175, 11, 42,149,170,214, 35,143, 60,178, +199,108, 54, 47,181,217,108, 63, 37, 38, 38,230,151,121,167,109,185,113, 48,168, 36, 73,176,217,108,176,217,108, 16, 4, 65, 90, +177, 98, 37,190,154,253, 37,150, 45,249,131,182,107,215,142,172, 89,179, 6,146, 36,165,178,170,246,206, 32, 73,210,103, 91,198, + 62,166,130, 40, 22,154,182, 46, 42, 90,159, 45, 20,253,112,108,203,193,108,171, 73, 89,179,102, 92, 93,127,191, 0,238,231, 5, + 63, 92,207,184,122,254,204, 87, 95,165, 86,158, 58,117,106, 96, 92, 92, 92,192,233,211,167,163, 1,228,150, 97,132,170, 62,243, +204, 51,195,175, 95,191, 46,155, 55,111,222,252,180,180,180,237,148,210,243, 46,229,163, 41, 33,100, 6, 0, 25,128,112, 0, 54, + 0, 27, 41,165,191,148, 83, 78, 37, 66, 8,182,110,221,122,195,104, 63, 73,146,110,122,180, 95, 70, 70, 70,206, 67, 15, 61,212, +232,204,153, 51, 43,114,114,114, 22,186, 46,215,104, 52,125,227,227,227, 7,239,223,191,255,125, 74,233, 57, 31, 47,152,163, 79, +156, 56,241,137, 36, 73,177, 28,199, 93,162,148,142,185,213,115,102,182, 72,207,175, 92,187,100,158,217, 42, 86, 81,200,248,203, +102,139,244, 2,203,201, 15, 60,246, 62, 82,112, 54, 78,110,140,209,238,105,211,166,169,167, 79,159,142,105,211,166, 37,185,139, + 96,217,141,214,180,105,211,146,236,235, 57,173,191,189, 66, 13,150, 59,199,104,179,217,116,227,199,143,111,221,164, 73,147,244, +246,237,219,103, 84,171, 86, 77,239, 84,216,204,129,129,129,102,147,201,164, 76, 79, 79, 15, 61,121,242,100, 53, 73,146,212, 94, +252,223,223,129,129,129,193, 7, 15, 30, 12, 89,188,120,113,205, 67,135, 14,197, 14, 29, 58,180,157,201,100,130,217,108,198,133, + 11, 23, 98,231,206,157, 43,201,229,242, 92, 66,200, 1, 0, 30, 47,178, 86,171,117,207,153, 51,103,106, 61,244,208, 67,196,106, +181,150, 50, 85,206,159, 21, 10, 5,210,210,210,168, 36, 73,251,188, 72,231,222,131,251,247,215,104, 80,175, 30, 76,121, 57, 48, +231,231,194,146,151, 11, 91, 94, 46,164,252, 92,112,133, 5, 8, 9,150, 65,173,214,226, 76,122, 6, 74,210, 90, 46, 50,155, 33, + 57, 45, 47,191,118,141,137,159, 98, 75,156, 63,168,213,226,104, 22, 4,224,104, 46,108,117, 50, 19, 59,118,239,129, 32,154,210, +238,102, 78, 54,155,205,210,128, 1, 3,246,115, 28,215,160,162, 52,173, 86,171,244,242,203, 47, 59, 52, 83, 82, 82,174,167,164, +164,168, 12, 6, 3,167,211,233, 10,239,118,233,181, 90,173,110, 13,146,217,108,134,193, 96, 64, 70, 70,134, 98,227,198,141,109, +247,236,217, 35, 63,126,252, 56,246,236,217,211,120,197,138, 21,227,235,214,173,219,232,228,201,147, 87,188, 49,109,146, 36,193, +126, 29,164,148,130, 82,202, 3,192,202, 63, 87,163,123,247,238,164,160,160, 0,171, 86,173,170,144,102, 20,134,215, 20,193, 38, +170,205,219, 22, 21,189,121, 86,145,159,164, 23, 62, 76, 76, 76, 92,223,179,103,207, 29, 81,225,113,254, 0,160,148,235, 66,121, +234,167, 11, 13, 13, 85, 2, 64, 84, 84, 84,130,213,106,157, 13,160,141, 59,193, 71, 31,125,180, 85, 88, 88, 88,147,181,107,215, + 30, 78, 75, 75,219,225,106,174, 0,160,118,237,218,147,142, 29, 59,214, 67, 38,147, 17,167,202,159, 2,112,107,176, 30,123,236, +177,218, 49, 49, 49, 33,107,206, 4, 32, 95, 94, 3, 18,151, 11,202, 43, 33, 6, 54,194, 37,121,125,132,135,159, 12,169, 81,163, + 70,227,115,231,206, 29,246,241,230,170,202,227,143, 63,254,215,247,223,127, 95,183,123,247,238, 10, 0, 55, 24,172,186,117,235, + 14,216,188,121,243,192,145, 35, 71, 54, 34,132,244,161,148,158,245, 86, 63, 49, 49,113, 23,128,150, 21,121,194, 38,204,161,155, + 0,196,178,172,251,159,137, 94, 1, 78,125,176, 0,100,162,248, 89,202,206,223,237,249,222,236,180,110,166, 83,212,202,236, 18, +245,114,183, 44, 19, 64,133, 5, 55,132,114,238,188, 55, 94,184,112,161,249,227,143, 63,158,233,108,174,156, 15,128, 78,167, 51, +249,251,251, 23,238,223,191, 63, 74, 20,197,173, 94,252,223,188,205,155, 55,111,153, 53,107,214,162,224,224, 96,235,176, 97,195, +184,177, 99,199,238,200,206,206,166,217,217,217,248,250,235,175, 31,105,219,182,237,142, 75,151, 46,137,137,137,137,207, 2,232, +238, 73, 80,175,215,127,243,202, 43,175, 12,222,177, 99,135,202,108, 54, 35, 55, 55,247,134,232,149,213,106, 5,207,243,152, 61, +123,182,169,168,168,232, 75, 47, 34, 25,223,125,243,205, 55, 3,231,126, 53, 75, 37, 88, 45,208,231,230, 64, 44,121,241,198, 34, +232, 84, 28,106, 52, 9, 69,110,186, 18, 11,214,238, 50,216,108,182,111, 60, 26, 44, 99,225,219, 35, 95,122,113,245,198,191,183, + 32,164, 77, 71,100,109, 89,119, 99, 52, 40, 52, 28,102,139, 5, 31, 78,158, 72,137, 33,119,236, 29,206,216,182,146,209, 21,246, + 12,184,250,159,127,254,217,211,164, 73,147, 30,102,179,185, 60, 35, 6, 73,146,248,155,209, 84, 42,149,169,181,107,215,254,187, +122,245,234,253, 1,160, 94,189,122,127,114, 28,215,177, 60,205,219,109,176, 38, 76,152,128,233,211,167, 99,220,184,113, 14,131, +100,191, 1, 48,153, 76,213,214,173, 91,167,216,181,107, 23, 93,176, 96, 65,214, 99,143, 61, 22, 56,116,232,208,192,133, 11, 23, +254, 15,192,216,178, 52,199,140, 25,131, 57,115,230, 96,196,136, 17, 55, 44,231,121, 94, 74, 75, 75,133,201,108,162, 43, 87,174, + 76, 23, 4, 33,232,139, 47,190, 80,191,245,214, 91,132, 85,183,119, 6, 81, 20,223,109,243,249,138,215, 1,181,213,102,179,125, +121,228,200,193,173, 0, 48,104,208,160,176,207, 63,255, 92, 1, 0,159,206,248, 84, 70, 41,149,217, 39,134,157, 50,101,138,234, +165,151, 94, 10, 43, 75,243,247,223,127,207,153, 50,101, 74,200,243,207, 63,223,125,203,150, 45, 42, 66,200, 58, 20,247, 33,201, + 42,185,113,172, 4, 96, 87,104,104,104,228,146, 37, 75,106,116,237,218, 85,235,209, 5, 22, 21,253,240,237,183,223, 86,253,108, +187, 31,214, 20,245, 71, 10, 29, 4, 26, 76, 17, 44, 47, 64, 61,221,101,180,139, 76,137, 90,184,112,225, 60, 0, 9, 62,152,171, +250,143, 61,246,216,242,239,191,255,190,218,139, 47,190,152,186,107,215,174, 20, 66,200, 36, 55,171,102, 63,243,204, 51,151,230, +207,159, 95, 67,146,164,245,132,144,238,148,210, 51, 44,247, 48,238, 32, 7,110,211,186,183, 13,161, 28,147,241, 28, 33, 36,126, +220,184,113,159, 68, 69, 69, 85,153, 56,113,226,197,122,245,234, 21, 57, 74, 91,118,182,110,219,182,109,113,249,249,249, 5, 54, +155,237, 41, 74,233, 17, 55,133,183,129,203,156, 72,151, 8, 33,159, 52,110,220,120,240,111,191,253,182,205,207,207, 47,127,239, +222,189,254,254,254,254,121,199,143, 31,215,242, 60,175, 63,127,254, 60, 54,109,218,244, 8,128,175,220,221, 37,185,106,166,167, +167,255, 83,173, 90,181, 79,223,122,235,173,183,222,127,255,125,149, 36, 73, 48, 24, 12, 40, 40, 40,128,209,104,116,116, 78, 94, +188,120,177,201,100, 50,205, 77, 75, 75,219,235,133,230,158,202,149, 43,207,249,242,139, 47, 95,126, 97,240,227, 10,154,155,141, +188, 12, 3,136,177, 8, 58,149, 2,245, 59, 70,163, 40,155,224,251,109, 7,205,215,205,150, 37,105,105,105, 91, 61,105,238,188, + 92,240,215,195, 53,195, 54, 77,153, 60,177,243,248,159,254,128, 36, 73, 56,249,202, 48,228,108,223, 4, 77,189,134,104,117, 50, + 19,102,179, 25,227,198,188, 5, 94,127,117,199,222,203,133,203, 60,105, 86, 4,206,154, 37,243, 80, 29,112, 50, 71, 47, 19, 66, +158,170, 91,183, 46, 70,142, 28,137, 71, 31,125,180,212,182,203,151, 47,199,183,223,126, 11,147,201,244, 20, 33,228, 16,165,116, +182, 47,154,213,170, 85,107, 81,191,126,125, 62, 42, 42, 74, 95, 98, 54, 58, 38, 37, 37, 53,175, 91,183,110,185,154,183,105,223, +115,206,158, 61,235, 63, 99,198, 12, 98,177, 88, 48,105,210, 36,216,141,165, 61,226,244,238,187,239, 70,249,249,249,225,179,207, + 62, 51,103,101,101,117,202,206,206,222, 60,107,214,172, 74,139, 23, 47, 30, 98, 55, 88, 46,154,215, 78,156, 56,225, 55,103,206, + 28,206,102,179,225,243,207, 63,191, 33,162, 53,122,244,104, 88, 44, 86,200, 4,153,217,100, 52,213, 87,171,213,231,130,130,130, +212,146, 36,209, 59,117,222,255,235,154, 71,142, 28,217, 8, 96, 99, 57, 55, 31, 0, 0,131,193,128,172,172, 44,100,101,101, 33, + 32, 32, 0,112,154, 96,214, 85,211, 96, 48, 28, 30, 51,102, 76,226,119,223,125,215,125,247,238,221,143,111,223,190,189,231,166, + 77,155,140,151, 46, 93,178, 89,173, 86, 26, 25, 25, 41,180,105,211, 70,213,179,103, 79,173, 82,169,228,222,125,247,221,172,143, + 62,250,168, 18,128,236,114,234, 79, 94,146, 36,188,209, 54, 31, 99, 58, 8, 48,153,138,111, 40,211,211,211,144,148,148,132, 61, +123, 78,129, 16,194,249,120, 60,191, 92,184,112, 97,156, 66,161, 32,139, 22, 45,170,178,104,209,162,215, 60, 29,191, 95,126,249, +165,234,162, 69,139,102, 19, 66, 58, 83, 74, 37,150,151,152, 38,195, 71,131, 85, 82,160,147, 0,116, 39,132,180,121,241,197, 23, + 63,174, 91,183,174,201,102,179,201,214,175, 95, 95, 39, 43, 43, 75, 97,179,217,198, 80, 74,125,106,175,164,148,206, 33,132,160, + 95,191,126, 99,170, 87,175,190,249,208,161, 67,141,122,245,234,181,126,249,242,229,109,108, 54,219,249, 99,199,142, 61, 5,224, + 75, 0, 95,121,171,153,156,156, 60,105,211,166, 77,100,239,222,189,111,142, 27, 55, 78, 25, 26, 26, 74, 2, 3, 3, 97, 48, 24, +144,146,146, 66,231,207,159,111, 50,153, 76, 95, 5, 4, 4,188,231,173,102,104,104,232,216,237, 7, 15, 42, 78,159, 59,251,236, +179, 61,186,168,170,212,170, 13, 29, 1, 10,175,103, 99,219,182, 12,252,180,239,176, 49,203,108,249,149,231,121,175,135,210,199, +156,203,236,190,113,201,247,107,183,254,253,119,231,169,211, 63, 33, 81, 79,190, 0,109,108, 53, 72, 85,107, 98,219,214,173,248, +104,202, 36,202, 23, 94,221,110, 61,119,181,203, 93, 12,209,218, 74, 10,143, 18,192, 12, 73,146, 4,160,184, 79,214,168, 81,163, +224,252,232,156,111,191,253, 22, 6,131, 1, 0, 4, 66,200, 12, 66,200,143,101,205,232, 94,134,102,229,191,254,250,171,178,179, +102,221,186,117,189,210,172,104,174, 94,189,250,222,115,207, 61, 55, 93, 38,147, 5, 72,146, 4,119,163,221,181, 90, 45,242,243, +243, 33,138,162, 45, 56, 56,248,148,213,106,133, 32, 8,101,150,163,162,162,162,247, 70,140, 24,241, 33, 33,164,204, 72,135, 90, +173,190,180,115,231,206,154, 67,135, 14,229,150, 44, 89,114, 97,200,144, 33,202,221,187,119,139, 0,254, 96,213,211,189, 9,165, + 20, 69, 69, 69, 0, 64,203, 89,231, 50, 33,100, 76, 98, 98,162,106,196,136, 17, 9, 79, 62,249,164,127,135, 14, 29,116,206,235, + 24, 12, 6,105,213,170, 85, 69,115,230,204,201,222,190,125,251,129,225,195,135,247, 71,113,243,134, 91,210,211,211,255,250,250, +235,175, 3,218,181,107, 87, 75, 20, 69,100,101,101, 57,250, 96,165,166,166,226,210,165, 75,151, 36, 73, 90,233,227,238,188, 50, +116,232,208, 53,243,231,207,143,125,241,197, 23, 83, 23, 47, 94,188, 18, 64,158,155,245,116, 3, 6, 12,232, 59,127,254,252,216, +151, 94,122,233, 50,128,215,216, 12,239, 12,198, 45, 24, 44,167,202, 98, 39,128,150,132,144,126, 60,207,191, 93, 88, 88,248, 57, +165,116,197, 45, 84, 80,115, 8, 33,235,207,158, 61,251, 60,128,102, 95,126,249,229,120, 0, 41, 37, 97,189,174,238,250, 43,120, +208, 19, 1,188, 31, 29, 29,253,251,196,137, 19, 43,228, 89,132, 37,143,212,121, 37, 42, 42,106,241,199,139,127,127,143, 82,218, +148,163, 82,136, 68,184, 28,142,227,254, 17, 69,241,163,212,212,212,109,190,104, 46, 45, 78,103,215,135,171,248,245, 30,243,210, +208, 79,108, 50,117,213, 66,163, 77,161, 85, 10,102,185,104,186,196, 25,114,222,221,123,169,240,158,188,176,154, 76, 38, 91,255, +254,253,127,224, 56, 78, 2, 0, 81, 20, 5,147,201,244,172,183,121,232, 78,105,222, 44, 89, 89, 89,133, 0, 94, 41,111,157,182, +109,219,254,178,118,237,218,161, 93,187,118, 21, 87,175, 94,125,181,119,239,222, 66, 98, 98, 34, 5,176,169, 12,227,111, 66, 25, + 79, 36,176,211,184,113,227,216, 31,127,252,241,208,243,207, 63,239, 63,123,246,236,224,253,251,247,139,223,127,255,125,126, 97, + 97,225,103,172,122,186, 55, 32, 37,131, 82,100, 50, 25, 52, 26, 13,252,253,253,145,153,153,233,113,164, 39,165,244, 28, 33,164, +215,219,111,191,221,246,237,183,223,238, 21, 19, 19, 83,191, 74,149, 42, 85, 56,142,227, 50, 50, 50, 50, 83, 82, 82,146, 45, 22, +203,102, 0,127, 1,144, 87,175, 94,253, 31, 0, 11,202,210, 59,126,252,248,135, 81, 81, 81, 91,254,252,243,207, 94, 74,165,178, +158, 66,161, 8,182, 90,173, 92, 81, 81,209,117,139,197,114,194,100, 50,173, 78, 79, 79,223,237, 99,221,121,154, 16,210, 65, 16, +132,191,190,255,254,251,186, 25, 25, 25, 85,183,109,219,214,199,117,189,132,132,132,249,243,231,207,143, 29, 57,114,228,185, 69, +139, 22,249,212, 7,139,193, 96, 6,203,187,194,184, 2,192,138,138,248, 99, 74,233, 37, 0,239,149,188, 42,132,180,180,180,163, + 0,134, 86,228, 1, 74, 79, 79,223, 5,160, 27, 80, 60,155,115, 74,241, 69,243,150,216,123,185, 96, 53,128,213,247,248, 93,186, +137, 16,242,118,201, 40, 39, 0,120,219,117,218, 4, 66,200, 17,231,229,158, 34, 77,183, 67,243, 78,146,147,147,243,191,159,126, +250,105,255,171,175,190,170, 28, 52,104, 16, 78,156, 56,129,217,179,103,155,114,114,114, 22,223,172,230,225,195,135, 47, 53,110, +220,184,233,188,121,243,222,156, 59,119,110, 63, 66, 8,123, 22,225, 61,130,217,108, 62,255,196, 19, 79,216,159,159, 74,237,143, + 78,178, 79,219, 97,179,217,206,123, 81,142,108, 0,182,148,188, 60, 49,195,139,250,104, 15,128, 61, 21, 92,214, 47, 19, 66,122, + 37, 39, 39, 79, 61,125,250,244, 58,119,235, 36, 37, 37, 45,239,218,181,171,102,207,158, 61,239,248, 58,138,144,193,248,207,222, +156,221,196,196,191,190,220,249,177,246,233,251, 92,211,211,131,151,221, 45,191, 27,154,236,188, 51, 77,166,201, 52,153,230,253, +173,249,160, 33,176, 67,192,240,112,119,107,186,149,229,119, 74,147,193, 96, 48, 24,140,123, 9, 2,160, 65, 25, 23, 57,175,157, + 41, 33,196,231,185,146, 60,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,193,211,116,163,253,152,203,162, 52, 23,189,185, +247,165,193, 98, 77,132, 76,147,105, 50, 77,166,201, 52,153, 38,211,188,219,154,101,252,207,139,247,171,193, 98, 15,148,101, 48, + 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,227,222,198,171, 78,238, 10,133, 34,158, 82, 58,156, 16, 18, 65, 8,185, + 66, 41,253,209,108, 54, 39,253,215, 14,150, 66,161,136, 39,132, 12,167,148, 70, 80, 74,175, 16, 66,238,238,113, 32,132, 76,154, + 88, 60,155,244, 7, 19, 65,113, 59,219,123, 25, 12, 6,131,193, 96,220,186,193,170, 90,185,242,227, 28, 79,102, 89,172, 98, 80, + 96, 96, 32,247,245,215, 95,115,125,250,244,193,170, 85,171,240,218,168, 81,175, 69, 71, 71, 73,114, 65,200,161,146,237,181,228, +148,244,223,188,249,179, 1, 3, 6, 92,181, 90,173,101,206,106,205,243,252,181,229,203,151,135,223,234, 78, 69, 39, 60,126,213, +106,177,148,249, 63,130, 32,187,150,254,207, 82,175,254,167,114,229,168,199,121,194,205,178,138, 82, 80, 80, 80, 16,247,213, 87, + 95, 57,142,195,171,175,190,250, 90, 76,116,180, 36,151,241, 57,146, 72, 95, 75, 78, 73,249,237,142,157, 57, 39,115, 5, 0,147, + 38,130,124, 64, 8,152,201, 98, 48, 24, 12, 6,227, 30, 54, 88,132,195,236, 69,223,205, 8,202,190,158,131,197,203,215,163,110, +221,186, 56,126,252, 56,234,214,173,139, 54, 45, 26,113,221, 90, 54,230,120, 14,161, 19,190, 90, 48, 27,128, 87,198,194,106,181, +134,253,249,231,159, 32,132, 56, 38,236,179, 79,218, 87, 80, 80,128,215, 95,127, 61,172, 34,118,202,106,177,132,157, 63,240, 7, +100, 60,129, 85,164,176,218, 40,172, 54, 9, 22,145, 34, 95,111, 67,199, 94, 67,189,254, 31, 14,220,236, 31,103,205, 8,202,205, +203,195, 31,107, 54,150, 58, 14, 29, 91, 55,231, 6,245,108,207,105,212,242,208, 23,199,126,236,245,113,168, 8,156,205, 85, 41, +147, 85,206,227, 59, 24, 12, 6,131,193, 96,220,101,131,101,182,138, 65,225,193, 1,248,233,199, 31, 49,102,220, 20,212,169, 83, + 7,148, 82, 16, 66,240,206,251,147, 49,115,202, 56, 60,209,227, 17, 88,109, 82, 80, 89, 26,238, 70, 24, 16, 66,112,241,226, 69, + 24, 12,134, 82,175,248,248,120,175, 18,236,237,168, 5, 25, 79,240,215,161, 2, 88,172, 18, 44,182,146,151, 85, 66,135, 6,126, + 62,105, 90, 69, 41, 40,208, 95,135,121,223,125,139, 49,147,103,148, 58, 14, 99,223,121, 31,223, 76,127, 15,163, 71, 62, 13,179, + 85, 12,186,153,116,250, 2,211,100,154, 76,147,105, 50, 77,166,249,160,106, 62,144, 6,139, 16,210, 14,192,214,146,131,230,136, +140, 88,205, 70,212,175, 28,130,111, 63,251, 16, 20, 28, 36, 74, 1, 10, 80,201,138,106,149, 52, 48,232,245, 62,255,161, 36, 73, +176, 88, 44,176, 90,173,152, 59,119, 46, 10, 11, 11, 33, 73, 18,234,214,173, 11, 0, 72, 72, 72,112,142,192, 92, 78, 76, 76,140, +245,164, 25,214,240,209, 75,160,168,226,252,219, 7, 51,126,192,174, 67,231, 65, 41,160, 84,107, 48,240,201,151, 32, 74, 20, 22, +171,239,207, 39, 53,234,245,136,212,201, 48,243,163,247,193,201,228,224, 64,192,113, 4, 28,145, 80, 39, 38, 8,166,226,135, 19, +223, 81, 62,152, 8,234, 26,197,250, 96, 34, 40, 62, 96,153,154,193, 96, 48, 24,247, 31,101,121,145,251,218, 96, 1,216,234,110, +103,204, 70, 3, 98,130,228,136,208, 5,192,102, 19,145,100,137, 68,129,222, 8,139,197,138, 75, 22, 11,206,253,147,129, 86,173, + 90,225,209, 71, 31, 21, 45, 22, 11,228,114,121,222,242,229,203,131, 61, 25, 44,171,213, 10,139,197,130,162,162, 34, 44, 92,184, + 16,130, 32, 64,146, 36,187, 43,118,188,183,110,221,186,138,119, 86, 26, 85,206,237,255, 29,126, 42, 30, 54,137,194,102,163,176, +138,128, 40, 81,232,205, 18, 6, 60,247, 30,108,146, 4,155, 36,193,236,133,193, 42,101,216,130,155,163,223,248,197, 0,116,142, +229,254, 74,138, 49,173, 57,200, 21, 74, 40,228, 60, 76, 6,253,157, 63,115,148,210, 15, 8, 1,235,228,206, 96, 48, 24,140, 7, +132,173, 15,130,177,114, 53, 88, 14,247, 72, 41,221,246,175,193,210,195,102, 21, 97,181,137,176, 89,109,200, 43, 52,224,147, 79, + 62,129, 82,169, 4, 33,196, 97,150, 36, 73,226,172, 86, 43,122,246,236, 25,228,233, 15, 69, 81,132,197, 98,129,197, 98, 1,165, + 20, 60,207,227,161,135, 30,186, 97,189,189,123,247,250,180, 35,126, 42, 30,213, 58,143,191,225,247,125,191,127, 8, 74, 41, 68, +177,248,229,141,193,242,100,216,154,180, 27, 4,147,217, 10, 74, 1,208,226, 8,215, 93,129, 82,234,232,115,197, 34, 87, 12, 6, +131,193,120, 0,112,245, 34, 15,132,193, 66,113,104,206,225, 30, 77, 6, 3,172, 86, 27,108, 54, 17, 86,107,177, 49, 82,171,213, +120,228,145, 71,236,215,119,199,251,250,245,235, 97,177, 88, 60,254,161,189, 83,123,137, 49, 3,165, 20,139, 23, 47,134, 76, 38, +115,188,228,114,185,207, 59, 98, 19, 41,198,143,125, 3,114,129,131, 76,224, 28,239, 34,165,160,180,216, 28,137, 18,133,201,234, + 93,144,167, 60,195, 6, 0,102,147, 5,160, 20, 20, 20,134,162, 34, 86, 34, 24, 12, 6,131,193,168, 24, 74,121,145,251,221, 96, +181, 39,132,220,224, 60,204,134,162,146,232,149, 8,171,205,230, 48, 80,159,125,246, 25, 4, 65,128, 66,161,128, 32, 8, 14, 67, +228,141,193, 50, 26,141,136,139,139,131,217,108, 70,221,186,117, 65, 41,197,224,193,131,111, 88,111,255,254,253, 62,237,136, 85, +164,152,246,241,231, 55,252,190,115,233, 20, 52,172, 87, 13, 45,106,106, 97,180, 72,200,215,219,110,217,176, 1, 40,142, 96, 1, +160, 20, 48, 20,233, 89,113, 96, 48, 24, 12, 6,227,214,112,235, 69,238,107,131, 85, 18,138,187,193, 45, 26,245,122,216,172, 54, +135,201, 50,155,205,144, 36, 9,163, 70,141,186, 65,104,243,230,205, 48,155,205,229,255,153, 32, 92,123,225,133, 23, 74, 77,145, + 64, 41,197,239,191,255, 14,165, 82, 89, 42,138, 69,136,111,230,213, 42, 82, 76,124,247, 45, 40,100,124, 41, 67, 36, 73,192,170, +191, 54, 96,213, 95, 27, 28,235,242,188,236,218,173, 24, 54, 0, 48,155, 75, 34, 88,148,162,168,176,128, 21, 11, 6,131,193, 96, + 48,110,129,178,188,200,125,109,176,202,194,104, 40,130,213,169, 15,150,197, 98,129,205,102,195,220,185,115, 75, 53,231,201,100, + 50,112, 28,231, 49,130,245,231,159,127,150,154,220, 51, 33, 33,129, 82, 74, 49,112,224, 64, 71,115,227,179,207, 62,139, 23, 95, +124,209,103,131,101, 19, 41, 38, 77,253,204,161,211,179,115, 91,244,235,209, 14, 82,137, 23,190,118,108,185, 79,130,229, 25, 54, + 0, 48,155,138,251, 96, 81, 0,250, 2,214, 68,200, 96, 48, 24, 12, 6,195, 11,131, 37, 19,184,188,115,151,174, 4, 84,210,170, + 96,147, 76,176, 73,197, 35,255, 68, 81,196,139, 47,190,232, 88,111,200,144, 33,120,234,169,167,220, 26, 44,111,158,182, 45, 73, + 18,118,238,220, 9, 66, 8, 56,142,115,188,202,162, 44,205, 34,147,132, 93,191, 77,134, 68, 41, 36, 10, 72, 37, 3, 17,204, 54, +207,209, 70,119,154,158, 12,155, 82, 23, 8,158,163, 32, 4, 56,151,122, 21, 2,207,229,249,186,239,190,194, 52,153, 38,211,100, +154, 76,147,105, 62,168,154,255, 25,131, 69, 69,250,218,156,213,123,103, 89, 69, 41,192,254, 91,253,250,245, 97,177, 88,176,110, +221, 58,135,241,224,121,222,209,164,231, 77, 31, 44, 23, 46, 63,242,200, 35,229, 77,197,112,217,187, 51,141,203,205, 58, 60, 94, +165,188,229,190, 38,204,147, 97,251,126,251,191,143, 32, 20, 56, 46, 15,148,190,198,178, 19,131,193, 96, 48, 24,140,114, 13,214, +229,180,180, 5, 0, 22, 56,255,214,171, 87,175,194,190,125,251,170,109, 54, 27,204,102, 51, 44, 22, 11,204,102,179,227,165, 84, + 42,125,154,113,211,155, 73, 68,189,225,218,209,229,177, 21,122, 84,188, 48,108,233,233,233,177, 44,251, 48, 24, 12, 6,131,193, +240,201, 96,185, 67,175,215, 7, 18, 66,132,244,244,244, 27,150, 93,185,114, 5, 0,108, 15,194, 65,169,112,195,198, 96, 48, 24, + 12, 6,131, 25,172,178,216,186,117,171,237, 65, 49, 81, 12, 6,131,193, 96, 48, 24,183, 11,142, 29, 2, 6,131,193, 96, 48, 24, +140,138,133, 0,104,224,110,129, 47,163, 3, 8, 33, 13,124,253, 99, 79,250, 76,147,105, 50, 77,166,201, 52,153, 38,211,124,240, + 52, 61,105, 59,111, 79, 8,121,145, 82, 58,247,190, 52, 88,183,243,249,192,108, 8, 43,211,100,154, 76,147,105, 50, 77,166,201, + 52,111,225,127,238, 91,131,197,154, 8,125, 57,209, 9, 47,201,216, 81, 96, 48, 24, 12, 6,131,225, 9,225, 78,253,209,164, 73, +147,110,201,204,125,240,193, 7,210, 93, 51, 86, 49,143,213,224, 5,124,210,180, 73,195, 30, 92,236,128, 53, 84, 36, 99,105,234, +239,231, 88,246,185, 57,122, 68,232, 42, 65,180,245,214,106, 85,253, 98,252,132,135, 47,102,233,119,155,173,210, 42, 73, 33, 95, +177, 62, 53, 63,135, 29, 33, 6,131,193, 96,252,231, 13, 86,243,230,205,171, 73,146,244, 52,128, 39, 41,165,135, 15, 29, 58,244, +216,205,232,108,222,188, 57,218,106,181, 54,183,217,108, 77, 1, 52, 85,107,116,141, 77, 38,227, 53, 2,250, 76,143, 30, 61,254, +241, 85, 47, 33, 33,225, 47, 0, 61,221, 26, 38, 66, 38, 29, 60,120,112,162,183, 90,188,128, 79, 54,172,248,190, 95,134, 94,141, +109,137,151, 30,253,241,211,113, 0,208,255, 94, 60,161, 81, 81, 81,106, 0,207,112, 28,215, 73,169, 84,214, 50, 26,141,201, 0, +142, 18, 66,102,167,166,166,166,223,148, 57, 38,132,219, 31,166,124, 78,169,210,116,175,164, 83, 52,205,204,201, 75, 51,217,164, + 29, 84, 38,159,225,171, 33,234, 81,131, 40, 66,253,130,183, 61,215,167, 99,221, 58,117,107, 64,186,116, 24,166,220,204,190,199, +175, 24,250, 46, 74,188,246, 70,143, 26,164,233,218,115,212,236,141, 86,229,202,149, 35, 69, 81, 20,210,211,211, 83, 0, 32, 46, + 46,206,223,100, 50, 53, 3, 80, 23,192, 73,165, 82,121,240,194,133, 11,249,183,114, 60,239, 23,205,152,152,152, 40, 73,146,158, + 15, 15, 15,239,117,245,234,213,191, 56,142,251,254,102,207, 55,227,191, 67,213,135,159,250,156,112,164,146, 47,219, 80,137,102, + 37,239,253,229, 13,118,244, 24,140,219, 96,176,234,215,175,175, 85, 40, 20, 3, 57,142,123,166, 81, 66,203, 54,125, 7, 61, 67, +172, 68,131,143,222, 26,226,243, 20, 14,135, 14, 29, 82,102,100,100, 76,169, 86, 39,225,127,237,187,246,227,234,213,173,131, 74, + 33, 65,144, 56, 5,230,175, 59, 19,178,245,187,103,191, 6,208,242, 38,146,217,243,183, 53,251,144,145, 43,130, 16,128, 16,128, + 35, 64,161, 81,194, 59,195,219,124, 0,192, 43,131, 69, 18, 94,146,197,215,175,219,227,204,117, 21,214, 29,179, 2,136,130, 38, + 40,188, 7, 73,120, 73, 70, 19,191,179,222, 75, 39, 51, 50, 50,178,105, 72, 72,200, 55,207, 62,251,108, 80,173, 90,181, 34, 21, + 10,133,198,104, 52,214,188,116,233, 82,181,153, 51,103,118,137,140,140,156,158,145,145,241,135, 79, 7, 49, 82, 85, 37,172, 81, +181,223, 38, 60, 63,172, 69,181,170,149,193,155,139, 64, 77,133,149, 51,146, 47,180,156,253,203,159, 47,116, 13, 83, 14,222,112, +205,180,201,107,193, 2,229,187, 35, 70, 63, 94, 55, 86, 75, 97, 62,190, 19, 2, 79,161,244, 11, 66, 3,158, 7, 40,173, 55,107, +167,237, 29, 0, 31,120, 97, 36, 39, 3,120, 7, 0,137,140,140,252, 77, 38,147,237,127,248,225,135,235, 60,241,196, 19,164, 97, +195,134,248,231,159,127,234,173, 90,181,234,177, 42, 85,170,156, 50,155,205,251, 66, 66, 66, 14, 31, 63,126,220,226,101,254,150, +103,103,103, 55, 86, 40, 20, 15,221,203,154, 81, 81, 81,106,179,217,252,116, 76, 76,204,139,125,251,246,109,216,167, 79, 31, 82, +187,118,109,156, 58,117, 42, 97,237,218,181, 31, 52,110,220,248,104,106,106,234, 92,133, 66,241,115,122,122,186, 87,147, 0, 15, +234, 76, 78, 45,221, 68,235,220,236,114,151, 27,153, 64, 0, 42, 74,105,134, 23,235,134, 3,208, 80, 74, 47,220,105,205,219, 65, + 76, 76,204, 9, 66, 72,112, 73, 58,236,233, 41,245,217,249, 93, 20,197,162, 75,151, 46, 85, 47, 79,179, 74,149, 42,245, 36, 73, +226,157,127,147,201,202,238,181, 96,179,217,164,148,148,148,227,229, 30, 35,142, 84, 90,243,219,236, 0,165,192, 65,148, 40, 36, +137, 66, 4, 32,138,128, 40, 73, 16, 69, 10,145, 2, 34,149, 32,137,128,193, 44,226,197, 87,152,183, 98, 48, 42,212, 96, 17, 66, + 72, 66, 66,194, 35,148,210,103,170,198,213, 24, 56, 96,232, 75,234,170, 53, 27,160, 80,242,199,197, 44, 9,135,182, 44, 2,128, + 37,190,252,249,250,245,235,155, 81,138,159, 70,142,251,188, 78,163, 38,205,113, 44,205,134, 93, 41, 34,138,206,137, 16,120, 3, + 36, 9,160,148,154,110,118,231, 82,115,108,216,113,202, 12,158, 3, 56, 14,224, 57, 2,222,199,231,116,211,196,239,172, 92,236, +128, 53, 27,246,167, 61, 10, 85, 56,244, 57,105,208,231, 92, 93, 75, 83,254,188,167,204, 85,116,116,116,199,184,184,184, 47, 94, +127,253,245,136,140,140,140,224,125,251,246, 65,169, 84, 34, 40, 40, 72,168, 84,169, 82,157,113,227,198,229, 77,157, 58,245,237, +240,240,240,127,174, 94,189,154,236, 85,180, 41, 66, 81,183,113,124,252,238,215,222,255, 32,192,120,112, 45,114,150, 45, 3,207, + 73,144,107,117, 8, 81,107,240, 94,151, 42,193, 51,182,164,254,209, 35, 88, 93,119,237,117, 67,154, 55,154, 17,161, 33, 93, 99, +107,212, 70,238,234,217,184, 92, 96,198,225, 76, 51, 58,183, 77, 64,149, 32, 53,234,218, 68, 4,171,100, 29, 61, 25,172,152,152, +152, 32, 0, 99,147,147,147, 57,185, 92, 78,170, 85,171, 54,120,238,220,185,180, 94,189,122,142,167,110,183,108,217, 18, 45, 91, +182, 36,133,133,133,117,119,237,218, 85,119,249,242,229,214,232,232,232,196,180,180,180,249,101, 71,150,170, 95, 54,153,140,149, +149, 42,181,113,230,204,153,191, 62,252,240,195,146, 66,161,192,173,104,150, 24,223,133, 49, 49, 49,154, 9, 19, 38,100, 53,111, +222,156, 86,132,102,181,106,213, 54,180,109,219,182, 67,215,174, 93,133,214,173, 91, 35, 42, 42,202,177,172, 82,165, 74,104,219, +182, 45, 73, 73, 73,105,180, 99,199,142,217, 27, 54,108,152, 85,173, 90,181, 45, 23, 47, 94,236,234,197, 41,170,125,139,203,157, +225, 1, 76, 35,132,204,163,148,238, 42,167,110,105, 10, 96, 8,128, 79,238,146,102,185,168,213,234,171, 70,163, 49, 12, 0, 84, + 42,213, 53,131,193, 16,238, 69,125,169,155, 57,115,102,152, 92, 46, 7,199,113, 16, 69, 17,162, 40, 66,146, 36, 80, 74, 29,239, +246, 65, 70,147, 39, 79, 22, 61,105, 74,146,196,125,254,249,231, 50,181, 90, 13, 0,176, 90,173,165,222,237,216,191, 79,158, 60, +217,171, 58, 74, 41,112,120,254,185,167, 91,112,162, 89, 5, 0, 18,175, 48,118,126,230,227,253, 0,176,105,254,216, 82,191,191, + 63,237,219,253,236,178,201, 96, 84,176,193,106,210,164,201,154, 30,253,159,234,254,240, 35, 93, 97,147,135,225,212, 53,130,148, +139, 20, 2,111, 3, 7, 9, 23, 14,172,160, 28,199,253, 92,202,156,148, 51,194, 96,205,154, 53,111, 84,169,209,120,250, 59, 19, +167,241,199,174, 42,240,211, 14, 3, 68, 83, 30, 12, 89,231, 80,116,237, 12, 10,174,156, 64,110,218,177,163, 28,199, 77,244, 86, +243, 6,115, 68, 1,137, 82, 16, 74, 0, 9, 0,104,113, 24,235,134,245,202,215,164, 34, 25,155,184,225,167, 71,155,244, 27,143, + 51, 59, 22, 0,148, 27,235,249,191, 43,126,116, 69, 89,154, 81, 81, 81, 93,170, 86,173, 58,227,165,151, 94,138, 57,114,228,136, +191, 94,175, 47,218,191,127,255,182,140,140,140,240, 74,149, 42,165, 60,241,196, 19,173,194,194,194,194, 30,121,228, 17,205,250, +245,235,223, 5,240,188, 39,205,158,225,138,248,198, 13, 27,239,121,115,218, 39,218,172, 63,102,193,124,241, 8,142,100,153,112, +250,186,145,134,235,242, 73,143,186,129,208, 40, 4, 12,108, 18,170,155,186, 49,229, 99, 0, 67,189,217,247,232,168,240,234, 86, +131, 1, 70,131, 5,219,206,231, 27,246, 95,205, 9,227, 2,210, 50, 95,232,209, 84,197,103,165, 35, 68, 39,212,244,245,120, 18, + 66,160,209,104,220, 46, 11, 8, 8, 64,203,150, 45, 81,189,122,117,217,144, 33, 67, 30, 6, 48,191, 44, 77,139,197, 18,153,150, +150,142, 90,181,107, 41, 59,117,234, 68,120,158,135,217,108,190, 37, 77, 0,208,106,181,125,154, 54,109, 42,252,242,203, 47,185, +201,201,201, 73, 3, 6, 12, 72,211,104, 52,165, 46,168, 26,141, 6, 85,170, 84,193,203, 47,191, 44,123,225,133, 23, 60,106,134, +135,135,119, 89,176, 96, 1, 8, 33,142,139,183, 43,177,177,177,136,136,136, 64,207,158, 61,133,199, 30,123,172, 75,121,199,115, + 80,103,114,202,110,158, 6,117, 38,212, 67,148,139, 2, 56,237, 26,201,114,213,164,148,102, 19, 66,230, 0,248,147, 16, 50,208, +157, 33, 34,132,180, 6,176, 12, 64, 15, 74,233, 53, 79,231,221, 89, 83,161, 80,200, 45, 22, 75,144,171,241,241, 85,211, 41, 45, + 52, 49, 49, 17, 9, 9, 9,112,126, 55, 26,141, 14, 35, 68, 8, 9,243, 54,127,242, 60,143,111,191,253, 22, 28,199, 65, 46,151, + 67, 38,147, 65, 46,151,223,240,106,210,164,137,215,229, 93, 38,147,225,219,111,191,133, 40,138, 92,114,114,242, 51,162, 40,246, + 51, 26,141, 97,106,181, 58, 83, 46,151,175,110,215,174,221,143, 74,165,210,230,139,166, 77,162,224, 68,179,106,211,250,149, 90, +147,201,132,222,253, 30,119, 44,115,253, 93,164,119,183,174, 99,154, 15,182,166, 7,154, 3, 8,117,250,110, 6, 96,191, 91,205, + 66,241,180, 83, 33, 46,191, 59,175,103,127,207, 44,249, 61,180,100, 59,234,164,155, 9,224, 64,133, 26, 44, 66, 8,165,148, 18, +251,123, 25,235,250,167, 26, 2, 81,120,177, 18, 4, 78,130,192, 19, 8, 60, 0, 16,100,167,158,128,185, 40,123,231,193,131, 7, + 47,122,243,167,235,214,173,107, 89,181, 94,139,143, 39,126,248, 41,247,227,118, 3,242,244, 70,100, 29, 95,137,140,253, 63,100, + 72, 54,203, 74,142,227, 14,114, 28,119,168,105,163,134,167, 34, 35, 35,197,155,221, 57,137, 2,162,179,177,146, 0, 2,223,167, +165,160,169,191,159,139,106,247, 94,169,239,247,138, 67,142,137,137,233, 81,163, 70,141,105, 47,189,244, 82,236,161, 67,135,252, + 10, 10, 10, 50, 55,109,218,116,202, 98,177,252,195,113,220,151,233,233,233,237, 22, 44, 88,160, 25, 51,102, 76,215,218,181,107, +215,222,176, 97,131,222,147,102,207, 80,109,163,158,131, 6,239,233,244,220,171,170,164,223,191,134,234,244, 33, 44, 59,155, 39, +158,184,102,126, 23,254,198, 47,232, 21,101,235, 2,179,184,113,248, 67,225, 92,152, 78,134, 8, 63, 89,123,111,211, 43, 19,228, + 2, 21, 84, 48,155,108,208, 91, 68,243,214, 76, 90, 52,165, 75, 67, 11,213, 86, 82, 1,128, 64,136, 71,211,159,154,154,154, 19, + 21, 21,245,113,213,170, 85,223, 35,132,208, 71, 30,121,228,120, 66, 66, 66,145, 36, 73, 48, 24, 12,176, 88, 44,144,201,100, 48, + 24, 12,184,116,233, 18,246,237,219,135,128,128, 0,159,142,107,110,110, 46,170, 86,173, 10,141, 70,115,203,154,146, 36,145,217, +179,103,171,146,146,146, 84,127,254,249,103,240, 27,111,188,145,215,164, 73,147, 19,143, 62,250,104, 74,112,112,176,229,240,225, +195,216,179,103, 15,114,114,114,208,162, 69, 11,175, 52, 45, 22, 11, 4, 65,128,193, 96,128, 82,169,132, 32, 8,176,217,108,144, + 36,201, 97,186, 10, 11, 11,113,253,250,117,200,100, 50,143, 15, 98,183,155,165, 65,157, 9, 93,186,108,247, 53,136, 18, 32,230, + 91, 97,201,179,194,150,103,133, 53,207, 10,107,174,117,208,235,159, 53, 90,186,137, 18, 31, 42,225,189,132,144,129, 0,150,185, +154, 44, 39, 35, 52,144, 82,122,216, 87, 77,139,197,178,211,110,124, 84, 42, 85, 24, 33,197,198, 80,169, 84, 90, 77, 38, 83, 7, + 95, 52, 1, 32, 49, 49, 17, 77,155, 54,229, 75, 52,169,253,189,228,229, 19,132, 16,240, 60, 15,153, 76, 6,158,231,209,180,105, + 83,244,233,211, 7,181,107,215, 70,106,106, 42,182,110,221,138, 51,103,206, 64, 46,151,151,106, 58,244, 88,126,100, 50,112, 28, +199,157, 62,125,250,199, 78,157, 58,213,120,237,181,215, 20, 85,170, 84,193,169, 83,167, 34,102,207,158,253,212,230,205,155,219, +245,239,223,255, 41, 0,182,242,154, 15,157, 17,165,127,119,239,196,137, 19,110,215,177,255, 46, 82, 48, 24,183, 13, 15, 94, 36, +148, 16,178,218,169, 30,232,109,255, 62,110,220,184,119,166, 77,155,150, 68, 8, 89,237,252,187,243,122,206,239, 37,255,181,154, + 82,218,123,252,248,241,241,211,167, 79,159,106, 95,247,174, 68,176,120,158, 31,112,108,221, 23,123,107, 90,104,108,120,124,175, +146, 58,135, 0,160,184,116,120, 29, 36, 73,154,239,141,206,158, 61,123, 84, 54, 9, 63,142,121,103, 50,247,221, 22, 3,174, 94, + 73, 71,250,182, 79, 96,184,118,226, 39,181, 90,253,102,167,238,189,243,111,117,167, 18, 18, 18,226, 3, 67, 34, 96,178,208, 18, +131, 85,218,100, 61, 40, 68, 69, 69,245,169, 81,163,198,228,149, 43, 87,198, 26, 12, 6,191, 93,187,118,229,110,220,184,241,172, +197, 98,249, 62, 35, 35, 99, 97, 73, 38, 90, 41, 8,194, 20, 74, 41,116, 58,157,192,243,188,218,158,123,221,105,118,173,164,105, + 58,224,201, 33, 59, 95,248,116,142,234,236,177,195,152,181,100, 13,194, 4,171,120, 41,223,244,232,218, 76,147, 61,211,254,253, +108,117,255, 52, 74, 81, 89,198, 17,248,171,101, 17,131, 98,136,106,105, 42, 53,122, 74,115, 72, 76, 44,103,139,142,195, 14,189, + 9, 50,141, 92, 1, 0,225, 53,235,243,135,243,109,216,181,255, 36,136, 50, 88,238,205,190,167,167,167, 79,136,142,142,174,186, +113,227, 70, 78,175,215, 23, 29, 57,114, 4, 33, 33, 33, 8, 11, 11,131,191,191, 63, 78,157, 58,133, 77,155, 54,225,244,233,211, +160,148,150, 25, 37, 40,139,171, 87,175, 34, 63, 63,191, 66, 52,109, 54, 27, 1,128,248,248,120,196,199,199, 43,210,210,210,194, + 86,175, 94, 29, 52,117,234,212, 43,145,145,145,235, 13,134,127,187, 71,185, 54,247,148,133,201, 84,220,114,110, 52, 26, 97, 50, +153, 32,151,203,161, 82,169, 32,151,203,145,159,159,143,171, 87,175,162,160,160, 0, 0, 16, 24, 24,232, 88,223,203, 43, 46,176, +183,205,193, 27,195,143,207,132,221,228,157,238,174, 18,147,245, 55, 33,196,126,126,175,150,188, 15, 44,175,169,207,131,102,169, +227,225, 20,101,146,221,140,102, 66, 66,130, 93,163, 84, 45,161, 82,169,174,217, 35, 87, 42,149,234,154, 55, 90,246,102, 65,133, + 66,129,248,248,120,188,249,230,155, 56,117,234, 20,118,238,220,137,176,176, 48,116,235,214, 13,130, 32, 32, 37, 37, 5, 28,199, +121,101,176,228,114, 57,172, 86, 43,206,158, 61,251, 76,199,142, 29,227,102,205,154,165, 72, 78, 78,198,169, 83,167,224,239,239, +143, 41, 83,166, 40,199,142, 29, 27,179,126,253,250, 23, 26, 55,110,252,173,215,199,210,135, 58, 81,180, 50,135,197,184,187,184, +154, 32,187,113,154, 54,109, 90,111,119,166,202,141,137, 43,245,251,244,233,211,167, 58,125,175,208, 81,236,156,179,115,244,112, + 23, 30, 25, 24, 26, 29,252,210,208,110,144, 36,192, 38, 1, 54,145,194,160, 47,194,149, 83, 91,244,102,179,121,153, 55,127,152, +157,157, 61,229,217,255, 77,175,113,240,178,128,140, 28, 51, 82, 55, 79,166,166,172, 83,143,245,233,211,231,249, 78,157, 58, 85, +136,185, 10,170, 20,181,245,253, 79,126,192,129, 11,102, 72,244,223, 72,150, 40, 21,127,126, 16,136,142,142,174, 25, 20, 20,244, +233,138, 21, 43,170, 42, 20, 10,191,115,231,206,137,219,182,109, 75,183, 90,173,179,237,230,170,196,132, 61,217,160, 65, 3,171, + 86,171,133,193, 96, 48, 90,173,214,194, 50,205, 85,148, 58,166, 65,227,122,219, 95,248,116,142,202,104, 54, 35,207, 96, 66,213, + 42,209,226,133,124,211,163,107,175, 58,204, 21,122,132,169, 91, 53,136,139,140,230,212,126,197, 87,202, 66, 75,186, 55,230, 10, + 0, 84,254, 1, 92, 76,179,246,104,246,250, 87, 48, 9, 1, 20, 0, 2,194, 34,185, 14, 47,127,132,238, 95,108,131, 85,208,249, + 98,129, 13,181,106,213, 42,114,202, 91, 56,113,226, 4,242,242,242, 48,107,214, 44,156, 58,117,202,113,209, 53, 26,141, 55,117, +156, 43, 66, 83,146, 36,226,114,238, 48,114,228, 72,153,193, 96,208, 58,155, 43, 95, 52,205,102,179, 35, 29,148, 82,152,205,102, +228,229,229,193,108, 54,227,236,217,179, 14,115, 5, 0,162, 40,186,109,234, 44, 59,193,121,238,195, 93,214,108,235, 45, 84,138, +187, 0,200,157,250, 29,133,223,172,185,114, 49, 62, 94, 71,127,188,137, 96,185,139, 86, 25, 12,134,112, 74, 41, 73, 76, 76,132, + 55,253,175,156,246, 25, 10,133, 2,125,251,246,197,201,147, 39,145,150,150, 6,158,231, 97, 50,153, 96, 50,153,208,180,105, 83, + 71, 4,203,199, 99,217, 99,212,168, 81,170,139, 23, 47, 34, 59, 59, 27, 28,199,193,102,179, 65, 20, 69,188,240,194, 11, 42,179, +217,220,221, 23, 61, 95, 60,147, 72,153,193, 98,220,254, 40,150,155,223, 94,116, 54, 72,183,106,208,220,105,140, 31, 63, 62, 30, +128,242,182, 24,172,114,154, 6,145,144,144,208, 36,176, 82,244,150,241, 83,231,233,254, 60,194,227,122,198,105,164, 28, 90, 1, +155, 4,100,156,222, 5, 42, 90,255, 56,126,252,120,145,167, 63, 91,191,126,125,173,202,181,155,189,222, 56,225, 33,172, 63,102, +194,245,163,139, 97,206,185,248,109,175, 94,189,150, 87,196,206, 36, 36, 36,196, 7,133, 68,110,125,103,250,188,224, 85, 73, 50, + 92,190,120, 26, 91,103,245,197,134, 79, 58, 97,221,199,157,240,215,180,142, 88,249, 81, 71, 0, 88,227,139,110,123, 66,132,106, + 65, 22,116,169, 71, 16, 85, 73, 15,210,158, 8,119, 59, 19,166,165,165,157, 5,240,243,188,121,243, 10,118,238,220, 41,142, 24, + 49,226, 76, 94, 94,222,135,233,233,233,139,157, 46,228, 29,227,226,226,222,154, 60,121,114,109, 81, 20,177,125,251,246,179, 60, +207,151,217,190,188, 33,221,144,122, 50,233,248,236,253,139,127,192, 63, 7, 15, 96,229,228, 55,109, 39,142,159,234,179,193,217, + 92, 69, 40,234, 54,172, 19,183,122,216,203, 35, 57,162,212,226, 92,182, 9,153, 69,214,205,222,166, 59,179,208, 96,149, 41,213, +208, 69, 84, 69,186, 65,146, 71, 71, 71,239, 75,207, 55,200, 57, 94, 0, 39,200,145,146,103,246,233, 34, 46, 73, 55,250, 49, 87, +211, 2,192, 99, 19,153, 71, 39,119, 11,154,246, 8,214, 13, 23, 54,171,149,220,172,166,179,193, 42,117, 1,116,211, 23, 75,146, + 36,223, 12,150, 37,223,253, 57, 48,103, 87,196,192, 14,115,201, 11,183, 98,174,236,198,199, 30, 81, 82, 42,149,142,166, 54,111, +163, 76,238, 34, 88,183,178,220,229,130, 0, 73,146, 32,147,201, 80,179,102, 77,228,229,229,193,223,223, 31,126,126,126,208,233, +116, 80, 42,149, 8, 15, 15,135, 66,161, 0,199,113,224, 56,239,166, 9,180, 90,173, 48,155,205, 17, 49, 49, 49, 40, 44, 44,132, + 74,165,114,188, 20, 10, 5,106,215,174,141,194,194, 66,159, 34,141,146, 40,249, 80,222,152, 1, 96,220,246, 8, 21,113,243,219, +220,178, 34, 88, 21, 17, 5,179, 71,178, 0,168, 43,114, 95, 4, 47, 42,157, 38,129,149,162,183,140,253,104,174,255,210, 67, 28, +114, 51, 78,225,210,186,119, 10, 68,139, 62, 71,146,172,177, 57,231,119, 2, 78, 29,114, 61, 92, 12,155,183,234,216,143,219,122, +210, 12, 75, 65, 58,242,147,150, 36, 43,149,202,113, 21,105,174,198, 77,155, 23,252,231, 17, 1,215,211, 79,227,252,154,241,121, +162, 69,223, 49, 49, 49,209,231,121,180, 94, 34, 68,246, 29,165,214,126, 97, 97,143, 86,174, 28,254,201,240, 1,126,120,164,179, + 26,254,114,127, 76,158,193,157, 12,111, 77,222,186,186,139,174, 34, 9, 68, 70, 19,233, 93, 25, 81,152,148,148,244, 81,205,154, + 53, 57,155,205, 54,220, 98,177, 76, 76, 79, 79, 95,230, 20,185,234, 18, 27, 27,251,201,148, 41, 83, 98,146,147,147, 21,123,247, +238,189,254,207, 63,255, 72,162, 40, 78, 47, 79,115,205, 21,195,152,238, 97, 74, 62, 38, 42,106, 84, 90, 90,122,223,117,153,166, +117,246,101, 61,195, 21,241,141,234,215,223,245,230,187, 99,253,204,123,127,135,254,106, 42, 22, 30,188,150, 47, 72,220,120, 47, +163,110,193, 45,252, 56,124,242,202,112,169,160,160, 0,254, 42,133,148,122,236, 28,255, 70,175,246,226,156,247,222,230,174, 92, +185, 2,163, 94,207, 71, 71, 71, 7,167,165,165, 93,247,234,142,218,141,161,112, 23, 5,242,201, 96,184,225, 86, 52, 93, 35, 88, +229, 25, 44,111, 53,157,155,196, 60, 29, 15, 81, 20,125,107, 34,180,149, 97,176, 44,153,150, 91,204,178,151, 9, 33, 85,236,159, + 43,162, 12, 24,141,198, 48,167,166,193,114,111, 20,189,140, 96,221,244,242,178, 34, 88,231,206,157, 67,104,104, 40,108, 54, 27, +180, 90, 45,212,106, 53,212,106, 53, 12, 6, 3, 20, 10, 5,120,158,247, 73, 87,169, 84, 94, 57,117,234, 84,108, 80, 80, 16, 68, + 81, 44,101,178, 46, 94,188,136,128,128,128,107,222,246,191, 2, 74,247,193, 2,128,192, 0,173,236,239, 31,254,215,206,254,185, +244,186,204, 0, 48,238,122,132,107,181,179, 73, 34,132,172, 30, 55,110,220, 59, 55,171, 55,110,220,184,119,110, 53, 42, 86,174, +193,178, 87, 74,174,149, 83, 66, 66, 66,147,192,144,168, 45,111, 77,249,206,255,215,131, 28,242, 50, 78, 34,125,211,123,121,146, + 69,223,145,227,184,140,148,221,115,151, 1,208, 31, 58,116,104,155,151, 23,195,166,117,106,213,194,210, 36, 27,140, 87,142,128, + 35,116,126,231,206,157,245,183,186, 19,118,115, 53,102,234,220,224,165,255, 8,200, 41, 54,129,121,210, 77,152,171,161, 74,101, + 13, 25,199,125, 82,163,101,211, 94,131,195, 43, 21,246,172,161, 9,236, 89, 67, 9,126,239,114,172,138,186,134,235,149,254,198, +200,153,209, 53,118,175,200, 95, 89,165,147,112,189,239, 35,141,253,163,218, 9,127, 89,169, 56, 38,115, 59,189,227,157,223,207, +158, 61, 59, 37, 34, 34,226,207, 43, 87,174, 56,122,167,198,196,196,244,168, 90,181,234,212,201,147, 39, 87, 77, 73, 73,241, 59, +124,248,112,254,178,101,203, 46,114, 28, 55, 57, 35, 35,195,227,221,253,186,107,166, 55,123, 69, 42,190, 95,155,105, 62,229, 48, + 87,161,218, 70,189, 30, 31,188,167,229,160,103, 84,231,183,254,140,224,212,227,248,249,112,150,152, 89, 96, 30,178, 62,203,116, +197, 27,115,165, 80, 40,150,190,247,235,239,103, 27, 52,104, 64,244,122, 61,172, 86, 43, 50, 51, 51, 49,246,135, 37, 73,146, 36, + 33, 40, 40, 8,155, 55,111,150, 94,127,253,245,165,209,209,209,131,188, 49, 89,146, 36, 57, 46, 86,101, 69,129,212,106,181,111, + 6,163,100, 27,103, 3,115, 43,154,101, 25, 44,215,200,150,143,154,197, 5,184,164,115,123, 89, 17, 61,158,231, 33, 73,146,219, + 72, 95,217, 97,146,220, 50, 12,214,181, 91,186,145,160,148,198,122, 24, 72,115,215, 40,153,138, 1, 0,164,178,166, 98,112,234, +163,229, 85, 4, 11, 0, 20, 10, 5,118,239,222,141,238,221,187,255,159,189,243,142,138,226,250,219,248,115,103,123, 97,233,189, +136, 40, 29, 81, 17, 80, 17, 11, 26,123,215,196, 88, 19, 75,172,137,198,168,177,199,222, 98,236,166,153,216,107, 44, 81, 99,236, + 13, 75,176,119, 81, 65, 68,144,222,251, 46, 91,231,190,127, 0, 6, 13,101, 65,243, 38,241, 55,159,115,246,192,206,206, 62,123, +239,220, 59, 51,207,124,111, 3,203,178, 16,139,197,144, 74,165,144, 72, 36,184,126,253, 58,132, 66, 33,120, 60, 94,141,154, 9, + 5, 2,193,241,111,191,253,118,232,178,101,203,164, 44,203, 66, 36, 18, 65, 42,149, 66, 44, 22, 99,213,170, 85, 42,145, 72,116, +162,102, 6,235,213,186,177,125,235, 38,145, 88, 44, 22, 25,179, 47, 7,199,223, 17,189,170,228, 26,145,241, 90,228, 73, 83,238, +125, 6, 74,214, 86,238, 94,250, 63, 42,248, 95, 83,193,182,172,165, 75,151,158, 47,215,127, 43,227,255, 37,130, 21, 16, 16,224, + 99,105,227,124,126,210,194, 13,166,219,174,241,144,151,242, 8,153,231,191,202,163,122, 85,121,211,210,178,134,191, 23, 96,107, +107,133,204,136, 98,232,114,158,130, 16,114,251, 77, 51,208,180,105, 83, 15,115, 75,251,240, 41,139,126,178,220,125,139,143,220, +228, 63, 77, 96,109, 34, 87,124,134,249,102,229,201, 95,122,138, 83, 31, 67,117, 47,220, 92,144,157,136,135,233, 90,236,139, 72, + 45, 8,255,227,231,203,140, 47,109,213,110,160,185, 73,187,129,150, 88, 51,246,132,101, 90,113, 36,174, 69,255,222,107,201,140, +223, 41,254,161,217,221,203,155, 43, 71, 71,199, 30,206,206,206,243,143, 30, 61,234,170,215,235, 21, 23, 47, 94, 44,216,191,127, +255, 51,189, 94,191, 46, 37, 37,229,168,177,154, 71, 83,254, 52, 87, 29,173,101, 77, 62,252,120,208,229, 97,203,127,144, 68,222, +186,129,229,219,142,194, 69,102, 48, 68,165,171,251,157,200, 80, 31, 55,234,184,242,249, 11,118,239,222, 45,247,245,245, 37, 89, + 89, 89, 47,111,248, 90,173, 22,249,249,249, 47,251, 15,249,251,251, 51,115,231,206,149,207,153, 51,103, 1,128, 79,171, 57, 25, +211,231,207,159,111, 59,106,212, 40,152,154,154, 34, 43, 43, 11, 58,157,238,101,180, 73, 44, 22,195,220,220, 28,185,185,185, 56, +115,230, 12, 42, 26,178, 95, 30,161, 80,152,226,228,228,232, 34,149,201, 53, 50,153,140,154,152,152,188,177,102,233,205, 54,181, +107,215,174,246,243,231,207, 23,149,111,102,210,106,181,164,182,154,148, 82,101,199,142, 29,101,235,214,173,131,171,171, 43, 52, + 26, 13, 88,150,125, 25,193, 42,155, 26,224,197,139, 23, 88,188,120, 49, 40,165,198, 63,200,232,114,116,112,254,216, 6,218, 44, + 29,180, 89, 58,104, 50,117,208,166,235,160, 87,254,235,238,174,181,233,128,110, 68, 36,204,246, 77, 35, 88,165,209, 52, 8,133, + 66, 36, 36, 36,224,236,217,179,104,218,180, 41, 20, 10, 5,138,138,138,112,229,202, 21,164,166,166,214, 42,130,213,174, 93,187, +173,167, 78,157,106,245,217,103,159,185,141, 25, 51, 70,234,227,227,131,184,184, 56,172, 94,189,186,248,209,163, 71, 73, 19, 38, + 76,248,185, 38,122,101, 81,169, 50,115, 95,217, 72, 66,160,164,223, 45, 7,199, 63,196,141,255, 90,130, 43, 53, 88, 12,195,124, +209,236,253, 89,166, 91,175,242,145,147,244, 16,121,151,230,190,110,174,140,185,200,188,178,218,182, 64,162,240,215, 83, 33,128, + 98,232,115,159, 65, 36, 18,213,216, 0,189,174,201,178,236,228,230,239,207,178,220,126,131,143,188,228, 71,200, 8,159, 83, 99, +115, 85,166, 57,154, 16,129, 71,139,160,110,226,180, 40, 20,135,239, 1, 1,176,241, 78, 17,174, 36,106, 86,105, 53,154, 69,145, +121,234, 92,231, 16, 98,177,103, 73,250,156, 46,125, 26,126,238,213,255, 12,174,101,252, 0,200, 0, 11, 27,126,151,242,205,133, +255,196,234,229, 78, 78, 78, 30, 10,133,226,155,227,199,143,219,136, 68, 34,211,200,200, 72,195,129, 3, 7, 18, 12, 6,195,202, +148,148,148, 61,181,209,236,232, 40,117,246,240,112,189, 48,108,217,119,146,130,194, 34, 20,105,180,240,168,231, 98,184,115, 63, +242,253, 83,233,154,195,198,104,218,217,217,181, 29, 52,104, 80,163,192,192, 64,166, 50,115,149,159,159,143,194,194, 66, 36, 38, + 38,162, 85,171, 86,140,143,143,143,191,157,157, 93,219,180,180,180,243,149,165, 51, 37, 37,101,222,158, 61,123, 66,247,238,221, +219,125,228,200,145,138,190,125,251, 66, 42,149,162,168,168, 8, 46, 46, 46, 96, 89, 22,151, 46, 93, 66,116,116,116, 1,128,223, + 83, 82, 82,254,168, 42,157,177,177,207,234, 16, 66, 24,103,103,231,208,206,157, 59,191, 21, 77, 0,200,200,200,112,191,112,225, +194,180, 94,189,122, 77,236,212,169,147, 98,230,204,153, 66, 55, 55, 55, 24, 12, 6, 82, 91,205,156,156, 28,179,219,183,111,175, +104,217,178,229,167,157, 59,119,230, 47, 89,178, 4,102,102,102, 48, 24, 12,144, 74,165,200,207,207,199,130, 5, 11,112,249,242, +101, 61,165,244,187,188,188,188, 41, 85,105,190, 50, 15,214,132, 85,141,171,170,135,149,205,131,245, 79,212,121,149, 74,101, 87, +211,168,152, 49,233,188,125,251, 54,125,125, 62,172,170, 34, 88,175,107,150,245, 7, 19,137, 68,224,243,249,200,200,200,192,169, + 83,167, 94,153,255, 74, 36, 18,189,156,198,161,162, 8, 86,101,233, 84, 40, 20,236, 7, 31,124, 48,252,248,241,227, 67, 39, 79, +158,220,171,160,160,192,214,212,212, 52, 67, 46,151,255, 62, 97,194,132,205,230,230,230,149, 78,209, 80,145,166,129,150, 76, 34, + 90,126,254,171, 10,163,166, 60, 81, 49, 91,193,144,195,127,162,220, 57,205,119, 83,243, 93,163,170, 62, 88,146, 63,110, 69,131, + 17,167,163,224,218, 55, 53, 54, 87, 21, 62,253,168,139, 98, 22,254, 18, 27, 96,208,168,160,207,143,143,234,220,173,107,250,155, +102,128, 82, 42,191,124, 59, 6,124, 73, 22,114,175,126,157, 75, 12,234,118,183,110,221,186, 91, 27,173, 13,148,234, 6,203,229, +225,207, 46,159,125,207, 17, 64,124,182, 6,119,159,100,159, 58,168, 84, 78, 46,219, 39,241, 10,205, 1, 48,209,161, 53,227,109, +233,153,215,193,204, 17, 72,127,161, 67, 78,134,254,248, 63,213, 23,171,140,164,164,164,167, 13, 26, 52,216,182,105,211,166,177, + 77,154, 52, 49, 25, 63,126,124, 89,199,247,189,181,213, 60,149,172, 74,236,108, 43,254,225,143,205,107,190,228,121, 5,227,212, +242,153,134,251, 15, 30,245, 62,149,174, 49,186,205, 90, 44, 22,135,141, 29, 59, 86,168, 84, 42, 43, 53, 87,249,249,249, 40, 40, + 40, 64,126,126, 62,238,222,189,139,190,125,251,138, 31, 63,126, 28, 6,224,124, 21,101,207, 2,184,228,238,238,126,253,135, 31, +126,104,191,125,251,246, 14, 35, 70,140, 16,133,133,133, 33, 50, 50, 18,215,175, 95,215,104,181,218,211, 18,137,228, 76, 76, 76, +140,198,200,250,244,119,104,234, 1, 44,182,182,182, 94,183,127,255,254, 69,231,206,157, 27, 50,116,232, 80,185, 94,175, 39,111, +168, 57,209,198,198,102,246,177, 99,199,182,158, 58,117,170,247,144, 33, 67,152, 9, 19, 38, 96,253,250,245, 56,112,224, 0,107, + 48, 24, 14, 11, 4,130,143, 51, 50, 50,170, 29,128,242,202, 60, 88, 85,204,115, 85,221,231,255,208, 83,232, 27,107,190, 30, 9, +107,210,164,137, 93,249, 81,154,229,255,214,132, 70,141, 26,189, 50,207, 85, 89,135,246,178, 23,143,199, 3,159,207,175, 81, 19, + 97,131, 6, 13, 32, 16, 8,216,128,128,128,205, 0, 54, 3,175, 46,153, 35, 16, 8, 94, 78,106,106, 12,170, 98, 3,102, 45,253, +225, 58,203,150,244,199, 50, 24, 74, 70, 11,150,140,188,102,193,178,128,193, 64,193, 82, 22, 58, 61, 23,193,226,224,120, 27, 6, +107,102,225,173,181, 58, 0, 86,132,144, 25,183,110,221,138,124,211, 31,227,241,152, 25,233, 71,134,173,163, 64, 14,143, 96,198, +219,200,128,193, 96,152, 85,116,123, 29, 75, 41, 53, 39,132, 76,191,121,243,230, 27,165,147,234,245,227,190,249,249,210, 42, 27, + 51, 81,135,204, 92,245, 49, 16, 82,225,172,237,122,208,207,118,124,253,226,107, 11, 27,126,151,156, 12,253,113,150,193,180,127, + 67,129, 62,124,248,112,137,135,135, 7,239,199, 31,127, 28,174,209,104, 94,233,248, 94, 91, 78,164,171,167,118,182, 21,243, 92, +235, 56,143,143,143, 79,236,101,108,179, 96, 57, 68, 78, 78, 78, 15,149, 74, 37, 8, 33, 80,171,213,175, 24,170,242, 6, 75,171, +213, 34, 61, 61, 29,110,110,110, 40, 55,103, 82,149,148,154,146,163,214,214,214, 23,215,174, 93,219,109,253,250,245, 45, 88,150, +141,208,106,181, 71, 51, 51, 51, 11,107,147,231,191, 67,179,244,123,159,203,100,178,101,235,215,175, 95, 33,145, 72,130,210,211, +211, 47,188,137,102,169,121,122,223,202,202,202,113,219,182,109,251, 54,109,218,212,156,207,231, 95, 37,132,244,203,205,205,173, +205, 98,207, 81,111,248,121,117, 28,248, 27,170,253, 27,107,214,100,250, 5,163, 30, 38,245,250,194, 25, 51,102,164,191,190,230, + 96,249, 57,175,202,255,213,104, 52,197, 70,104,178, 95,125,245, 85,149, 15,113,229,141, 86,113,113,113,181, 77,186,148,165,153, + 99,198,215,108,109, 65,202,210, 76,238,214,201,193,241, 6, 6,235,214,173, 91, 9, 0,134,189,205, 31,235,220,185,243, 89, 0, + 62,111, 83,243,238,221,187,241, 0,134,188, 45,189, 93,106,117, 12,128,238,163, 9, 17,236,160,149, 71,164, 74, 59,180,247,249, + 39, 71, 17, 86, 70, 69, 29,223,223,130,201,154,220,205, 65,180,241, 68,185,142,239, 53,184,217,156, 20,139,197, 36, 63, 63, 31, + 90,173, 22, 5, 5, 5, 47,205, 85,121,147,165,215,235, 65, 8, 65, 65, 65, 1, 76, 76, 76,160,211,213,108, 86,195, 82,147,178, + 39, 44, 44,108,127,120,120,184,254,109,228,251,239,208, 84, 42,149,169, 0, 6,133,133,133,241,223,150,102, 86, 86, 86, 50,128, + 22,238,238,238, 34, 99,163, 96, 85, 69,178,106,251,185, 17,252,248, 55, 84,249,157,255,182, 11,107, 92, 92,156,239,219,214,124, +241,226,197,163,183,158,206,171,219,185,149,155, 57, 56,254,191, 13,214,219,102,238,220,185,255,169,225, 39, 27,168,113,166,233, +223,102,174,202,120,155,230,170,140,242, 29,223,107, 66, 82, 82,210,121, 0,176,181, 45,233, 59,236,226,226, 98,236,247,106,149, +206,183,101, 90,254,139,154,111, 98,174,254, 63,160,148, 22,254, 13,154,169,224,224,224,224,248,151,193,112,135,128,131,131,131, +131,131,131,131,227,237, 66, 0,248, 87,242, 84,104,244,232, 0, 66,136,127, 45,158, 58, 31,112,154,156, 38,167,201,105,114,154, +156, 38,167,249,191,165, 89,157,246,107, 35,114, 71,149,159,201,253, 63,101,176,232,223,184,182, 20, 55,132,149,211,228, 52, 57, + 77, 78,147,211,228, 52, 57,205, 55,248,157,255,172,193,226,154, 8, 57, 56, 56, 56, 56, 56, 56, 56,222, 50,124,238, 16,112, 24, +131,179,179,243,210,102,205,154,141,187,113,227,198,202, 23, 47, 94, 44,168,165,134,163,149,149,213, 98, 0, 45, 40,165, 98, 30, +143,247, 40, 51, 51,115, 73, 66, 66,194,165,218,166,203,209,209,209,197,198,198,102, 49,128,230, 44,203, 10, 5, 2,193,195,180, +180,180, 69, 73, 73, 73, 87,107,171,105, 99, 99, 35,119,112,112, 8,162,148,218, 82, 74, 25,129, 64,144,147,148,148,116, 55, 61, + 61, 61,157,171, 9, 28, 28, 28, 28, 28,111,108,176,230,143, 39, 14,208,130, 63,119, 3, 77, 0, 0, 66,136, 41,128, 32,148, 76, +181,240, 24,192, 77, 74,105,254,155, 36,224,191,162,249,111,135, 16,194,152,155,155,119,148,201,100,159, 23, 22, 22, 6,152,154, +154, 62, 44, 93, 30,231,247,210,201, 51,107,141,173,173,173,237,135, 31,126, 56,125,237,218,181, 24, 62,124,248,108,107,107,235, +213, 53,157,183,201,215,215,183,167,147,147,211,134,133, 11, 23,217, 52,109,218,148, 72, 36, 18,196,196,196, 56,205,154, 53,179, + 73,147, 38, 77,246,221,190,125,251,211,154,166,171, 65,131, 6,253, 92, 93, 93,215, 45, 89,178,196, 38, 40, 40,136,240,249,124, +220,191,127,223,121,254,252,249, 77, 3, 2, 2,182,221,185,115,103,114, 77, 53,253,253,253,221,220,221,221, 91, 44, 90,180, 72, +210,180,105, 83,136,197, 98, 60,122,244, 72, 62,115,230, 76,155, 38, 77,154, 60,189,125,251,246,181,154,232, 5,142,190, 45, 16, +202,180,124, 0,208, 42,133,250, 91, 27,154,232,140,221,198, 93,158, 56, 56, 56, 56,222, 65,131,181, 96, 44, 89,192, 0, 51,193, +128, 76, 28, 72,246,174,223,203, 92,111,223,190,189,247,136, 17, 35, 72,233,210, 17,190,123,246,236,121,159,199,227, 61, 97, 89, +246, 26,128,187,148, 82,173,145,102, 64, 8,160, 49,195, 48,205,254,205,154,255, 5, 20, 10,133,135,141,141,205,100, 43, 43,171, + 46, 65, 65, 65,249, 99,198,140,137,187,122,245,106,108,112,112,112,241,166, 77,155,150,232,116,186,239, 61, 61, 61, 79, 23, 20, + 20,172,168,237,212, 13, 2,129,192,135, 16,130,164,164, 36, 8, 4, 2,129, 72, 36,242, 5, 96,180,209,112,113,113,113,112,116, +116,252,113,239,161,147,182,249,106, 6, 79, 51, 88, 0, 74, 24, 24,107, 44, 92,190,222,106,197,226,217, 3, 61, 61, 61, 47, 71, + 71, 71,255, 98,172,166,163,163,163,139,171,171,235,186,115,231,206,217,138,197, 98,176, 44,139,130,130, 2,216,218,218, 98,233, +210,165,150, 11, 23, 46, 28,225,230,230,118,241,249,243,231, 71,140,213,180,177,177,145,187,187,187,183, 56,127,254,188, 68, 36, + 18, 17,157, 78, 71,212,106, 53,236,237,237,233,170, 85,171,196,179,102,205,242,114,115,115, 75,125,254,252,249, 11,163,204,213, + 79,183, 5,249,153,231, 67,104,130,106, 54, 0, 16,137,116, 81,216,124,203,235,249,153,231,155, 86,183, 45,240, 39, 92,185, 53, +138, 51, 89, 28,255,191, 56, 58, 58,134,186,185,185, 29,122,241,226, 69, 4,143,199,235, 31, 23, 23,167,126, 83, 77, 66,136, 51, + 0, 55, 0, 22, 40, 25, 88,149, 13, 32,142,210,146, 7,247,218, 96,237,222,182, 7,196,178, 97,160,180, 49, 3, 0, 12,115,151, +213, 22,109,201,140, 58,127,228,141, 52, 37,242,225, 96,217,198, 12, 40, 11,134,119,143,234,139,126,206,120,124,254, 56, 87, 51, + 56,222,154,193,154,255, 9,177, 96, 4,152, 54, 99,204, 40,134,207,227,145, 37, 27,126, 26,112, 35,226, 8,117,168,211,248,229, +146, 27,173, 90,181, 66,171, 86,173,200,242,229,203,125,206,157, 59,231,179,107,215, 46, 29, 33,228, 22,165,116,107,101, 63,182, +116,130,236,133, 94,167,114, 89, 48, 78, 90, 92,183,249,247,187, 90,180,104,197,138,197, 98,188,137, 38, 0,124,218, 79,112,122, +120, 63, 55, 18,214,125, 78,252,219,210,252,143,152,171, 11, 10,133,194,125,244,232,209, 79,199,142, 29,123, 81, 46,151, 83, 0, + 72, 79, 79,151,119,235,214, 45,167,119,239,222, 89, 74,165, 18, 63,252,240,131,203,186,117,235, 78,155,154,154, 38,229,231,231, + 55,173,193,133,145,239,224,224,176,172, 67,135, 14,147, 6, 13, 26, 4,133, 66,129,161, 67,135, 66,173, 86, 71, 56, 58, 58, 46, + 79, 73, 73,153, 77, 41, 53, 84,167, 99, 97, 97, 49,119,254,252,249,182,133, 26, 30,102,111,143, 65,118, 97,137,111,144,137, 24, +124,250,158, 24, 31,125,244,177,217,157, 59,119,150, 3, 48,218, 96,217,216,216, 44, 94,178,100,137, 77, 89, 89, 23, 22, 22,162, +176,176, 16, 5, 5, 5, 40, 44, 44,196,160, 65,131, 76,159, 62,125,186, 6,128,209, 23, 92, 7, 7,135,160, 69,139, 22, 73, 68, + 34, 17,142, 28, 57,210,168,184,184,152,175,211,233, 64, 41,213,123,123,123,223,253,248,227,143,133,209,209,209, 33, 0,140, 50, + 88, 14,169, 16,228,169, 84,223,125,251,245,151, 54, 0,240,217,180,111,190, 3, 84,205,168, 17,219, 28, 82, 17, 12,128, 51, 88, + 85,215, 79, 30,128, 62, 2,129,160,175,187,187,123,208,211,167, 79,239,232,245,250, 95, 1,252, 74,233,155,205, 79, 71, 8,121, +207,209,209,113,113,114,114,242,183,148,210, 29,255, 43,199,180,126,253,250, 7,119,237,218,101,117,236,216,177,158, 11, 23, 46, +252, 16,192,182, 55, 56,134, 2, 0, 33,165,166,234,113,169,177, 66,169,209,242, 38,132,212, 7,240, 71, 77, 30,120,173,189, 66, + 77,192, 55,221, 19,210,174,115,203,126,239,247, 86,216, 88,154,161, 72,109, 64,116, 92,106,157, 83,199, 14,182,177,247,239, 22, +161,215,230, 13,200,140,250,163,176,166,154,109,187,244,108,217,238,189,246, 10, 51, 51,115,100, 21,232,240, 44, 46,209,245,194, +233,195,173,236,252,187, 93, 4,209, 13, 73,187,127, 74,201,157,117, 28, 53,129, 49,242, 68,129,220, 68, 94,225,103,102,102,102, + 8, 11, 11,195,146, 37, 75, 4, 0,154,151,255,236, 47,139,138, 26, 52, 14,179, 63, 29, 15, 17,159,138,187,117,233, 68, 76, 77, + 77,223, 88, 19, 0,236, 44,245,237,155,121,169,218,164,221,157, 48,248,238,133,197,254,154,226,220,191,172,116, 42,147,201,224, +225,225,129, 89,179,102, 25,165,249,166,252,127,104, 82, 74, 29,125,125,125, 11, 86,175, 94,237, 53,103,206, 28,139,226,226, 98, + 57, 0,103,223,128, 80, 71,134, 97, 92, 52, 26,141, 98,222,188,121,214, 95,127,253,181,151,141,141, 77, 46,165,212,166, 38,233, +116,112,112, 88,189,100,201,146,201, 91,182,108, 33,193,193,193, 80, 40, 20, 8, 9, 9,193,246,237,219,153,185,115,231, 78,119, +112,112, 88,102,100,222, 91, 53,109,218,148,176, 0,114, 10,245, 56,191, 52, 16,127,124, 19, 12,165,134, 69, 94, 65, 33, 84, 42, + 21, 36, 18,137,212,218,218,218,164, 6,199,179,121, 80, 80, 16, 1,240,210, 84, 21, 20,148,188, 10, 11,139,160,209,104,193, 48, +140,105,221,186,117,197, 53, 56,158,182, 77,155,150,248,207,226,226, 98,126,207,158, 61,209,189,123,119, 20, 20, 20,240,243,243, +243,161,209,104,192, 48,140,176,244,198, 94,173,166, 70, 38, 32, 44,101,237,228, 50,169,181, 92, 38,181,102, 41,107, 7, 0,198, +108,211,200, 4,228,159,172,159,132, 16, 27, 30,143,183,217,221,221,253, 17,143,199,219, 70, 8,177,127, 19, 77, 66, 72, 48, 33, +100,137, 76, 38, 59,227,235,235,155, 32,151,203,207, 17, 66,150, 17, 66, 66,106,163, 73, 8, 17,201,100,178,115, 75,150, 44,217, +119,231,206,157, 15,207,158, 61,235,118,255,254,253,247,151, 47, 95,190,199,196,196,228, 34, 33, 68,250, 38,231,166,155,155,219, +166,107,215,174, 5,183,104,209, 98, 35, 33, 68,252, 54,206,119, 66, 8,143, 16, 18, 64,140, 92,120,240,255,187,220,157,157,157, +221, 3, 2, 2,172,121, 60, 30, 90,181,106, 5, 74,105,171, 55,212,108, 1, 32,149, 82,122,129, 82,154, 65, 41, 53,148,190, 50, + 41,165,151, 74, 31, 84, 90,213, 72,147,111,186,231,243, 47,166,118,158, 50,254, 19,197,237,120, 3,126, 62,149,130,189,151, 51, +144, 84, 32, 70,135, 94,195,205,218,116, 29,212,137, 47, 52,219, 83, 83,205,233,211,103,118,254,100,232, 96,197,131,100, 6,251, +254,200,196,229,199,249, 80, 18, 11,132,245, 26,101,225,219,180, 75, 55, 2,225,214,127, 67, 25,189,235,154,255, 19, 17,172,185, + 27,105,206,130,177,228,235, 37, 63,252, 52,155, 33,132, 58,123,118,138,116,243,104, 94,196,178, 44, 84, 42, 21,180, 90, 45, 4, + 2, 1, 84, 42, 21,226,227,227,113,237,218, 53,152,153,153,213,232,135,115,243,242,224,228,236, 6,153, 76,246, 86, 52, 71,126, +208,155,255, 34, 37,133, 31,113,251,124,224, 47,107,119, 5,186,212,239,240,184,113,216,212, 7, 38,102,117, 84,119,239,222,197, +149, 43, 87,144,147,147,131,178, 27,232, 59,242, 4,175, 91,177, 98,197,237,228,228,100, 92,186,116, 41, 96,254,154,157,117, 31, +228,215,231,103, 20, 82,129,141, 73,154,171,143, 52,202,144,147,157, 29, 59,121,242,228,115, 14, 14, 14,154,241,227,199,183, 49, + 70,215,217,217, 89, 66, 8, 9,236,218,181,235,167, 31,127,252, 49,226,226,226, 48,101,202, 20,205,221,187,119,115, 3, 3, 3, + 45, 86,172, 88, 33, 28, 53,106, 20, 34, 34, 34, 38, 59, 59, 59,239, 7,240, 48, 49, 49,177,170,181,212, 68, 18,137, 4,200, 43, +121, 80,213,234, 41, 0,246,101,228,137,161,185, 16, 10,133, 12,195, 48, 54, 0,140,122,242,100, 89, 86, 40, 18,137, 80, 84, 84, +132,194,194, 66, 36,101, 20, 34, 62,173, 8, 5, 69,106,168, 84, 58,168,139, 41,196, 10, 59, 70,151,145, 97, 5, 32,201,200, 11, + 6, 83,214,220,168,209,104,160, 82,169,160,209,104,160,209,104, 94, 46,231,195,227,241, 20, 78, 78, 78,166, 0,114,170,211,227, +137,164,122, 30, 35, 92, 50,115,209,119,243, 0,128,199, 8,151,152,160,152, 53,102, 27, 79, 36,213,255,131,245, 74,108, 99, 99, +115,126,223,190,125,190, 30, 30, 30,120,254,252,185, 79,191,126,253,154, 17, 66, 2, 40,165,202, 26,106,201, 24,134,249,122,216, +176, 97,227, 6, 14, 28, 72, 60, 61, 61,193,231,243,161,215,235,157, 99, 98, 98,218,238,221,187,119, 26,159,207,255,217, 96, 48, + 76, 54,118,150,119, 66, 8, 35, 18,137,126,217,176, 97, 67,235,102,205,154, 97,219,182,109,184,126,253, 58, 27, 28, 28,204,124, +244,209, 71,112,117,117,109,254,209, 71, 31, 29, 32,132,116, 55, 38,194, 90,129,190,235,224,193,131, 93,120, 60, 30, 90,180,104, + 33,140,136,136,104, 2, 32,226, 13,143,169,137,179,179,243,133,176,176,176,128, 51,103,206,220, 38,132,132,213,100, 86,123, 71, + 71,199, 94,118,118,118,203, 21, 10,133,133,177,223, 41, 44, 44, 84,166,165,165, 77, 73, 74, 74,218,111,100,253,111,209,176, 97, + 67,232,245,122,152,153,153,193,222,222,190,165,147,147,211,100, 51, 51,179, 62,249,249,249,147, 18, 19, 19,175,215, 32,191, 78, + 0, 24, 74,233,211,210,247,117, 1,148, 45,179, 20, 69, 41,125, 78, 41,141, 37,132, 56, 18, 66, 92,140,105, 46,180,118,111,219, +163, 69,251,174, 45, 91, 53,243,103,150,238,143,131,129,101,193,135, 1,124, 30,139, 76,131, 0,132, 16,184,122, 5,243,236, 30, +220,108,110,237,213,161, 71,102,212,233, 35,198,104,118,238,217,187,149,183,151, 39,179,242,208, 11,228, 38, 61, 48,164, 61, 62, +151, 73, 24, 6,245, 26,119,176,118,245, 10,224,185, 7,188, 39, 72,139,123,208,214,210,163, 77,251,236,167, 23,206,112,182,129, +163,198, 6,139, 16, 66, 41,165, 47,159,172,230,252, 64,231, 88, 91,144,186,145, 15,238, 49, 9,169,154,162,123,247,238,193,202, +202, 10,182,182,182, 48, 53, 53,197,147, 39, 79,112,230,204, 25, 68, 69, 69,129, 82,138,128,128,128, 26,253,112, 90,106, 42,178, +178, 11,222,170,102, 29, 7, 7,212,113,112,224,103,230,228,226,202,189,251,190, 71,126,110,239,157,198,140,222,162, 82,169, 94, +238,163,211,189,123,173, 46,182,182,182,134,207, 62, 27,159, 53,242,187,216,250, 3,218, 57,241,122,133,216,227, 80, 68, 10,111, + 79, 56,143,206, 30,209, 40, 51, 38, 38,218,232, 76,187,186,186, 46,110,219,182,237,151,124, 62, 95, 48,106,212, 40, 0,192,132, + 9, 19,212,247,239,223,247, 75, 72, 72,136,117,112,112,240,158, 52,105,210,253, 3, 7, 14, 8, 62,249,228, 19, 82, 92, 92,124, + 93, 32, 16, 80, 71, 71,199, 5,201,201,201,243, 42, 52, 26, 60,222,157,200,200,200,186,122,137, 35,172, 21, 12, 58,205,190, 13, + 0, 48, 17, 83,100,166, 37,225, 97,204, 13,216,216,216,152, 89, 91, 91, 63, 14, 13, 13, 85,167,165,165,125,254,236,217,179,173, + 85,165, 83, 32, 16, 60,188,127,255,190,179,157,157, 29, 10, 11, 11,145,144, 94,132,205, 87, 8,148,106, 41, 0, 41,120, 80, 64, + 97,237,162,168, 71,149,119,253,253,253,181, 26,141,102,122,116,116,244,142,106, 52,115, 30, 61,122, 36,119,114,114, 2,143,199, +211,238,221,187, 87,168,209,104, 64, 41,213, 31, 59,118,172,127,110,110,110,139,250,245,235, 51,174,174,174, 43, 66, 67, 67, 85, + 41, 41, 41, 35,159, 63,127, 94,233, 66,195, 39, 38,184,107,219,204, 11,255, 62,247,121,194, 94, 0,112,106,230,155,253,251,188, + 38,154, 54,243, 10,171,221,118, 98,130,187, 22,227,233, 63, 85,165,134,205,156, 57,211,215,210,210, 18, 99,198,140,193,252,249, +243, 49,103,206, 28,143, 49, 99,198,140, 2,176,186, 6, 55, 89,169,189,189,253,141,181,107,215,250,132,134,134,226,216,177, 99, +216,189,123, 55, 98, 99, 99,245,110,110,110,252,102,205,154, 97,238,220,185,232,212,169,211,200,241,227,199,183, 33,132, 52, 49, +210,116, 12,159, 59,119,110,175,150, 45, 91, 98,232,208,161,234,240,240,240, 15, 1,156, 58,125,250,116,187, 11, 23, 46,236,223, +185,115,167,116,201,146, 37,157, 39, 77,154, 52, 22,192,183,181,200,127,239,214,173, 91, 3, 0, 90,182,108,137,229,203,151,119, +122, 19,131, 69, 8, 17, 89, 89, 89, 29,221,182,109, 91,128,151,151, 23,134, 12, 25,210,228,195, 15, 63, 60, 74, 8,233, 64, 41, + 53,106,105, 35, 7, 7,135,175, 55,108,216,224, 46,149, 74,141,254, 93,141, 70, 99, 57,122,244,232,101, 0,140, 54, 88,254,254, +254, 8, 15, 15, 71,251,246,237,209,160, 65, 3,247,209,163, 71,175,232,212,169, 19,190,248,226,139,203,246,246,246,142,169,169, +169,198, 46,244,236, 10,224, 73,105,254,235, 0,240, 0,240, 71,233,103,205, 8, 33,160,148, 62, 71,201,226,225,222, 0,170,239, +143, 37,145, 15,235,217,189,187,226,215,136,116, 24, 88, 22, 62, 78, 18,248,214, 49, 69, 92,122, 49,226,146,178, 32, 32, 90, 40, +164, 98, 52,108,209,205, 34, 59, 45,110, 24,140,233, 30, 32,150, 13,235,221,179,187,201,193, 43,233,200, 77,122, 72,227,111,236, + 61,167, 43, 46, 26, 9, 0,145, 23,119,252,104,103, 33,233,224,217, 56,144,167,108,213,203,226,194,161, 31,134, 1,224, 12,214, +223,255,128,247,138, 23,121,231, 34, 88,101,100,229, 66,101,101,239,139,132,212, 59, 37,239,179,178,144,149,149,133,122,245,234, + 97,221,186,117,175,236, 91, 92, 92, 92,171, 4,252, 29,154,214, 22,230,232,217,182, 13,239,193,147, 31,120, 42, 86,245, 86, 52, +255,173, 80, 74, 41, 33,132,196,103,234,204, 51,243,117,194,254,109, 93,168,128,199, 96, 64,219, 58,228,219, 35,241,194, 76,149, +204,156,199,227, 49,198, 60,201, 7, 6, 6, 10,218,182,109,251,229,166, 77,155, 4, 41, 41, 41, 48, 55, 55,135, 78,167,195,157, + 59,119,146,147,147,147, 99, 1, 32, 37, 37,229,137,179,179,115,154,193, 96,112,246,241,241,193,232,209,163,225,237,237, 77, 38, + 79,158, 60,141, 16,178,160,162, 17,139,105,105,105, 75,102,205,154,213,122,241,242,117, 86,131,155, 17, 20, 41, 53, 40, 44, 44, + 68, 92,244, 67,208, 66, 13, 86,174, 92, 5,169, 84, 74, 0, 8, 51, 50, 50,132,243,230,205,221, 24, 20, 20,212,253,230,205,155, +125, 43, 53,232,105,105,139,230,206,157,219,116,229,202,149,150,133,133,133, 80, 21, 23,163, 64, 37,194,181, 85, 37, 17,202,102, +147,174,227,219,111, 86, 48,254,174,114,171,194,194, 66,124,249,229,151,107, 3, 2, 2,154,223,185,115,103, 92,101,154, 73, 73, + 73,119,103,206,156,105,179,126,253,122,177,183,183,247,253,252,252,124,228,228,228, 48, 7, 14, 28, 88,232,234,234,106,185,118, +237, 58, 34,147,201, 0, 0, 9, 9, 9,194,217,179,103,253,210,176, 97,195,157,247,239,223, 31, 90, 89,217, 0, 80, 19,130, 20, + 71,199,122,238,202, 43,204, 60, 71,199,226,203,225,115,147,182, 19,130,148,146,125, 64, 29, 54, 56, 12,126,177, 77,220, 82,173, +102,215,164,166,198, 71, 81, 10,138,185,255,152,185,130,181,181,245,248, 94,189,122, 97,217,178,101, 56,114,228,200, 36, 75, 75, +203, 85,243,231,207,135,163,163,227,103,132,144, 53,212,248,217,137,191, 89,189,122,181,143,143,143, 15, 62,254,248, 99,205,153, + 51,103,102, 2, 56, 4, 32,254,210,165, 75,117,182,110,221,218,227,151, 95,126, 89,182,118,237, 90,201,250,245,235,221,223,127, +255,253, 53, 0, 70, 84, 39,106,103,103,247,197,192,129, 3,177, 98,197, 10,132,135,135,191, 79, 41, 61, 86,250,209,113, 66, 72, +143, 37, 75,150,156,157, 61,123, 54, 86,175, 94, 61,177,166, 6,139, 16, 98,226,235,235,251, 85,231,206,157,113,233,210, 37,180, +106,213, 10, 33, 33, 33,147, 8, 33,235, 40,165,153,181,184, 89, 48, 38, 38, 38,191,108,217,178,165, 85,221,186,117,177,104,209, + 34,124,249,229,151,216,180,105, 83,171, 33, 67,134,252, 66, 8,233,107,204, 40, 95, 19, 19, 19, 19,169, 84,138,101,203,150,209, + 23, 47, 94, 84, 27, 61,117,112,112,176,248,234,171,175,136,153, 17,205, 0,132, 16,158,163,163,163,153,189,189,125,107,123,123, +123,172, 93,187, 22,182,182,182,152, 52,105, 18,172,172,172, 80, 84, 84,132,190,125,251, 10,174, 94,189, 58, 0,192, 58, 35,179, +110, 5,160, 44,226,229,139,146,190, 86, 5,165,191,119, 21, 64, 75, 0,207, 81,210, 47,203,210, 24, 65,134, 82,127, 11,115, 83, + 36,223, 79, 3, 31,122,248,212, 81,224,102, 76, 17,180, 6, 10,153,220, 4, 69, 5,185,104,236,110,131,124,165, 51, 0,214,168, +217,199,133, 60, 38, 80, 36,150, 34, 61, 63, 15,169,143,206,102,105, 13,234,209,185,177,151, 19, 0,192,178,126,235,209, 15,175, +157,184,217,183, 75, 43,219,140,156, 58,160,148,109, 10, 14,142, 26, 80,109, 31, 44,150,253,235,185, 95, 62, 34, 84,134, 86,251, +102, 3,243,254, 14,205,138,248, 59, 52,255, 13, 62,203,201,130,159, 39,151, 48,250,211, 55,211, 13, 58,189, 1, 39,111,166, 26, +100, 98,162,183, 16,107,242, 89,150, 53,234,134,120,235,214, 45,221,165, 75,151,182,205,152, 49, 3,171, 87,175,198,179,103,207, + 32, 16, 8,224,229,229,101,231,226,226,226, 0,148,140,222,107,208,160,129, 53,143,199, 67, 76, 76, 12,118,239,222,141,121,243, +230,209, 91,183,110,109,170,236, 70,145,156,156,124, 39, 45, 45,109,195,210, 5, 51,115, 5,234,100,200, 12, 25, 48,228, 62,131, +192,144,135,241,147,102,224,121,166, 1,119,158, 23,224,206,243, 2,164,170, 36,248,106,209, 74,158,135,135, 71, 15,103,103,231, + 78, 85,152,161,171, 41, 41, 41,219,231,204,153,147,151,153,153,249,178,254,104,245, 44,180,122,246,245,155, 19,150, 46, 93,106, +238,224,224,208,223,201,201, 41,172, 50,205,244,244,244,244,228,228,228,152, 25, 51,102,104, 51, 50, 50,144,159,159,143, 19, 39, + 78,188, 95,175, 94, 61,203,201, 51, 22,144,231,153,244,101, 58,243, 88,115,172, 88,247, 51,175,126,253,250,131, 28, 29, 29,171, +236, 71,228,232,232,228,238,235, 91,127,223,213,171, 87,135,186,187,187,143, 43, 51, 86,148,130, 2,128,155,155,219,152, 91,183, +110, 13, 15, 8,240,219,103,103,103,239,253, 15, 63, 61,182,237,223,191,191, 55,203,178,216,183,111,223,125, 74,233,234,131, 7, + 15,222, 80,171,213, 24, 48, 96,128, 27,128,206, 70,234, 4, 15, 26, 52,104, 92,171, 86,173, 48,113,226, 68,237,153, 51,103, 2, + 41,165,171, 40,165,113,180,132,120, 74,233,186, 11, 23, 46, 52, 30, 63,126,188,186,105,211,166, 24, 58,116,232,112, 66, 72,171, +106,116, 91, 12, 28, 56,208,135,101, 89,236,217,179,231, 94, 57,115, 85,102,106,207,237,223,191,255,170, 70,163,193,224,193,131, +235, 17, 66,218,213, 32,239, 66,177, 88,188,111,225,194,133,230, 73, 73, 73,248,232,163,143,212, 79,158, 60,193,188,121,243,164, +102,102,102,199, 8, 33, 38, 53, 61,158, 98,177,248,167, 31,126,248,161, 87,195,134, 13, 49,118,236, 88,205,247,223,127, 63, 97, +220,184,113,154,192,192, 64,124,247,221,119,189, 68, 34, 81,141,102,168, 78, 75, 75,203, 13, 15, 15,183,170,238,149,154,154,154, +102, 84,212,191, 78, 29,243, 6, 13, 26,220, 15, 14, 14,206,108,212,168, 81,125, 0,120,248,240, 97,198,190,125,251,168,149,149, + 21, 78,156, 56,129,159,126,250, 9,161,161,161, 80, 40, 20, 3,106,114, 77, 42,125,161,220,223,215, 63,127,125,191,234, 10,136, +230, 41,245,224, 51, 12, 4, 60,138,248,180, 98,104, 13, 20, 66, 1, 3, 1, 15,224, 51, 20, 86, 10, 1, 4, 2, 30, 0, 98,148, + 38, 67, 8,114,138,116,224,243, 8, 4, 34, 33, 97,244,134,151, 33, 66,134,111,144,138, 37, 98, 98,107, 38,132,144, 79, 64, 8, + 56, 56,222, 94, 4, 11, 0, 12,134,191, 6, 62, 42,138, 2,105, 52,154, 55, 74,200,223,161, 89, 73,216,252,157, 42,192,252,252, +124,254,133, 11, 23,204, 4, 2,129,188,123,195,208,172,175,247, 70, 91,207,223, 21, 5, 17, 15,164, 71, 35, 38, 37,252,252, 25, +146,147,147, 99,225,225,225,145, 99,140,222,179,103,207, 70, 58, 56, 56, 44, 98, 24,166,169,193, 96,216,187,122,245,106,124,251, +237,183,178, 49, 99,198, 60,113,116,116, 76,242,244,244,116, 89,179,102,141, 24, 0,182,111,223,142,147, 39, 79,246, 22, 8, 4, +215,227,227,227, 83,171,210,189,123,247,238,108, 87, 87,215,136,216,216,216,117,132, 16,115,133, 66, 97,113,240,224, 65,146,146, +171,193,236,237,207, 94,142, 44,148,139,121,152,209,199, 6, 31,124,208,143,255,244,233,211,111, 0,156,172, 76,243,246,237,219, +147,220,220,220, 46, 68, 71, 71,175, 22, 90,121, 89, 73,252, 71, 41,218,205, 40,105,126,116,176, 20,131, 41,189, 32,230,229,229, + 33, 51, 51, 19,195,135, 15, 55, 95,188,120,241, 52, 0,225,149,105,222,185,115,231,170,155,155, 91, 74,116,116,116,115, 74,169, +200,204,204, 44,116,245,234,213, 36, 62, 91,131,233, 91, 99, 80, 80, 92,146, 78,133, 68,128, 5, 3,157, 49,116,232, 80,254,243, +231,207,191, 46,125, 34,255, 11, 78, 78, 78, 30,190,190,190,251,118,237,218,229,187,102,205,154,236,167, 79,159, 22, 57, 58, 58, +206,127,109, 55,245,210,165, 75,179,182,111,223,238,245,209, 71, 31,237,179,183,183,255,176,182, 83,106,188, 41,166,166,166,203, + 70,143, 30,141, 95,126,249, 5, 57, 57, 57,107, 74,235,216,234, 93,187,118,237, 25, 57,114, 36,182,111,223,190,140, 16,114,194, +136, 40, 86,151, 1, 3, 6,224,248,241,227, 56,123,246,236, 87,148,210,200, 74,162,124,209,132,144,105,135, 15, 31, 94, 59,112, +224, 64,108,222,188,185, 51,128,170, 38,158,237,208,169, 83, 39, 28, 59,118, 12, 89, 89, 89,223, 85,180, 67,110,110,238,247,191, +253,246, 91,243, 78,157, 58, 97,233,210,165, 29, 0,156, 51,194, 92,249,152,153,153,109, 89,187,118,109,112,195,134, 13, 49,104, +208,160, 98,173, 86,219,249,203, 47,191, 60,178,123,247,110,197,182,109,219,130, 70,141, 26,117,141, 16,242, 9,165,212,168, 73, +108,121, 60,222,146,245,235,215,143, 8, 11, 11,195,164, 73,147,244, 39, 79,158,236, 73, 41, 61, 69, 8,137,153, 58,117,234,209, +149, 43, 87,242, 86,172, 88, 49,130,199,227,101, 24, 12,134,153,255,144,161, 94,177,114,229, 74, 95, 63, 63, 63, 20, 23, 23,227, +217,179,103, 72, 75, 75,219,117,226,196,137, 83, 15, 30, 60, 88,158,154,154,122,192,206,206,110,228,164, 73,147,156,131,131,131, +131,157,157,157, 45, 18, 19, 19,141,185,150,148, 69,166,210, 1, 60, 2,208,188, 52,114, 5, 0,205, 80,210, 52, 8,148,140, 40, +204, 49, 50,177,247,163,159, 39,213,179, 48, 49, 69, 14, 43,194,243,164, 76, 72,229,114, 48,148,129, 94,149, 3, 15, 87, 91,176, + 20,200,207, 76, 2,195,144,251,198, 72,234, 12,236,173,184,132, 52, 39,115,185, 4, 30,129, 93,173,238,157,219,188,195,172,126, +203, 81,124, 30,225, 9,197,166, 27, 6, 13,252,216, 90,103,160, 40,204, 73, 1,225, 49,215,193,193,241, 54, 13, 22,203,178,144, + 74,165,175, 68,152, 94,143, 2, 73,165, 82,168,213, 53,155, 46, 69, 42,149, 66,171,199, 91,213, 52,230, 55,223,182,230, 63,137, + 78,167, 83,140, 27, 55,174,101,243,230,205, 19,186,116,233, 18,227,227, 99, 19,215,173,133,196,122,253,166,195, 1, 93,218, 52, +184,147,159,157,150, 17, 47, 22, 23,231,228,228, 88,109,223,190,189,137, 78,167,147, 25,163,155,146,146,242, 2,192, 11, 39, 39, +167,110,109,219,182, 29,210,189,123,119, 92,188,120, 81, 81, 84, 84,228, 35,151,151,140, 38, 61,112,224, 0,126,251,237,183,159, +147,147,147, 15, 27,155,222,248,248,248, 19, 0,220,235,212,169, 99, 94,167, 78,157, 52,115,115,115, 97, 82, 65,209,203,145,133, + 66, 62,131,208, 47,111, 32, 55,191, 0,230,230,230,144,201,100,110,213,105,150,206,115,117,164,105,255,133, 13,121,177,187, 46, +172, 95,187,198,172,236,201,212,206, 92,136,220,220, 92,100,102,102, 34, 35, 35, 3,148, 82, 24, 12, 6, 95, 35, 52, 95, 0,120, + 97,109,109,237,224,225,225, 65, 76, 76, 76, 64,179,139,144, 83,168,125,165, 9,178,160,176, 8, 78, 78, 78, 80, 40, 20, 21, 54, + 71, 88, 90, 90, 42,196, 98,241,214,141, 27, 55,250, 40, 20, 10,222,200,145, 35,205, 71,142, 28,217,178, 50, 51, 38,147,201,120, +155, 55,111,246, 12, 8, 8,216, 82,183,110,221, 14,113,113,113,121,255,143, 55, 90, 30,128, 49, 83,166, 76, 9,146, 72, 36,248, +246,219,111, 99, 1,236, 44,253,120,223,247,223,127, 63,103,224,192,129,222, 19, 38, 76,104, 48,123,246,236, 73,165, 77,133,149, + 54, 59, 11,133,194, 64, 95, 95, 95, 28, 60,120, 16, 0, 14, 86,243,243,251, 35, 34, 34,214,118,239,222, 29, 18,137, 36,184,154, +125,221, 92, 92, 92,112,248,240, 97, 0,184, 83,153, 79,126,242,228, 9,250,246,237, 11, 66,136,155, 17,121,239,213,177, 99,199, +253, 75,151, 46,229, 43, 20, 10,140, 24, 49, 66,115,237,218,181,174,148,210,139,132,144,182,131, 7, 15,190,176,115,231, 78,249, +133, 11, 23,124, 22, 47, 94, 28,193,227,241,150, 24, 12,134,217,213,104, 14, 95,180,104,209,140,222,189,123, 99,254,252,249,116, +239,222,189,131, 40,165,167, 74, 77,229, 73, 66,200, 71, 22, 22, 22, 59,103,205,154, 69,242,242,242,102, 16, 66, 18, 41,165, 63, + 84,166,167, 84, 42,243, 12, 6,131,189, 82,169, 52,234, 9,209,216,253,235,213,171,215,197,207,207, 15,135, 15, 31, 70,143, 30, + 61,112,250,244,105, 48, 12,115, 52, 41, 41,233, 60,128, 83, 0,224,224,224, 96, 22, 19, 19, 51,169, 85,171, 86,204,153, 51,103, +250, 2,248,217,136, 36, 60, 7,208, 16,192,105, 74,105, 66,233,192,201, 22, 40,153,178,225, 17,165,180,108,170, 19,127, 0, 49, +198,228,137,213, 20,110, 59,123,108,127,219, 14,239,143, 51,227,241, 24,240, 33,132,178, 32, 31, 48, 24,224,238,106,135,166,190, +118,184, 23,167, 66,196,153,125,185,202, 66,165, 81,211, 75, 24,180, 69, 91,206,158, 56,220, 38,184,227,199,102, 98,119, 63,184, +216, 77, 12,120,120,253,212,105,177, 72, 72,222,127,191,159,121,219,166, 30, 56,123, 63, 31, 87,207, 30,202, 81, 22,228,111,225, + 44, 3, 71,173, 12, 86, 37,157,202,210, 39, 77,154,100, 59,121,242,100,152,154,154, 34, 43, 43, 11, 58,157,238,101,180, 73, 44, + 22,195,220,220, 28, 89, 89, 89,216,179,103, 15, 74,159, 86,170,120,162, 19,165, 44,250,110,189, 11,225,201, 53, 98,169,140, 90, +202,222, 92, 19, 0, 52, 58,126,250, 15,123, 14, 88,118,105, 29,194,175,227,224,240,151,207,107,163,249, 31, 49, 88,167, 83, 83, + 83,131,188,189,189, 83, 93, 93, 93, 85,197,197,197,160, 42, 85,193,177, 61,107,234,187,152,141,125,198, 48, 12,149, 74,165,172, +185,185,121,209,179,103,207,136, 94,175, 63, 95, 19,125, 74,233,152, 49, 99,198, 48,151, 46, 93, 26, 52,100,200, 16,212,173, 91, + 23,119,238,220,193,246,237,219,177,127,255,254,173, 66,161,112, 66,109,210,157,144,144, 80,232,235,235,251, 74, 4,228,245,145, +133, 58,117, 6, 88,150, 53,186,115,126,206,237,237, 81, 60,107,107, 93,131, 58,127, 78, 39,146,147,147,131,140, 82,115, 85,206, +100, 25, 29,194, 36,132, 20,104, 52,154,215,210,249,103,243, 99, 81, 81, 17,180,234,116, 24, 12,134, 10, 53,179,179,179, 11, 28, + 29, 29,215,175, 91,183,110,229,194,133, 11,109, 87,175, 94,157,253,248,241,227,124,134, 97,138, 95,123,136,145,184,187,187, 43, + 86,172, 88, 97,183,110,221,186,108,150,101,215,255, 63,155,171,222, 13, 27, 54,220,218,165, 75, 23,197,184,113,227,176,110,221, + 58,164,164,164, 76,167,148,234, 75,235, 1, 75, 8,153,250,221,119,223,253, 62,109,218, 52,104,181,218, 21,199,142, 29,155, 79, + 8, 25, 67, 41,221, 89,145,166,141,141,141, 51,159,207,199,237,219,183,243, 41,165,207,170,169,103,169, 94, 94, 94,105,132, 16, + 59, 7, 7,135,250, 85,237,107,105,105,233,174, 80, 40,144,148,148, 84,118, 19,175,136,184,228,228,100, 42, 18,137,136,163,163, +163, 71,117,249,183,176,176,152,186,113,227, 70,254,249,243,231, 49,119,238,220,196,248,248,248,193,165,211, 8,128, 82,122,155, + 16,210,170,109,219,182,187,167, 77,155,230,245,245,215, 95,147, 39, 79,158,140, 5, 80,165,193,114,117,117, 29, 51,124,248,112, +172, 95,191, 30, 27, 54,108, 24, 75, 41,221,247, 90,158,119, 19, 66, 44,172,172,172,214,143, 30, 61, 26, 91,182,108, 25, 12,160, + 82,131,149,148,148, 52,173,127,255,254,115,178,179,179,151, 24, 83,166,198,236,239,232,232,216,115,200,144, 33,118,148, 82,172, + 91,183, 46,117,253,250,245,202,252,252,252,157,201,201,201,175, 92, 39, 24,134, 57,112,226,196,137, 73,227,198,141,195,249,243, +231,191,117,116,116,164,201,201,201, 27,171, 41,211, 20, 66, 72,125, 66,136, 47,165,244, 81,233, 40,193,132,215,234,157, 87,233, +190,137,198,228, 41, 51,234,252, 17,187, 6, 93,255,184,123, 61,188,163, 91,131, 86, 2, 91, 11, 5,156, 60,172, 97,105, 34, 4, + 5,240, 32, 94,133,171, 23, 79,233,210, 83, 94, 68, 24, 51,130,176, 76,211,222,191, 91,132,204,218,181, 99, 61,191,150,124, 55, + 15, 79,116, 8,109,100, 97,101, 42,128, 70, 71,113,250,110, 30,174, 92, 56,174, 75, 79, 75, 56,207,141, 32,252,255,225, 93,233, +224,110, 76, 4,107,222,134, 13, 27, 66, 55,109,218,212,125,210,164, 73,138,143, 63,254, 24, 82,169, 20, 69, 69, 69,112,113,113, +129, 94,175,199,177, 99,199,112,251,246,237, 2,150,101,127,199,159,163, 68,202, 78,160, 87, 86,219,158,177, 78, 89,135, 16,194, + 0, 69,161,243, 55, 52,122, 43,154, 0, 16, 17,171,119,114, 76,201,156,151,149,115,236, 11, 87, 39, 7, 97,167,150,205,249,214, + 22, 37,163,153,107,171,249, 22,110, 90,127,187,166, 94,175, 31, 78, 8,105, 48,117,234,212,229, 78, 78, 78,142,243,231,207,127, +225,231,231,167,202,207,207,167, 26,141,134,205,200,200,144,237,223,191,223, 45, 43, 43,171, 64,167,211,125, 68, 41,189, 87,147, +116, 38, 39, 39,171, 0, 12,182,183,183, 63,156,158,158,190,127,192,128, 1,216,178,101, 11,174, 92,185,210, 45, 57, 57,249, 88, +109,243, 78, 41,213,135,132,132,228, 62,124,248,208,142,103,230, 6, 59,115, 1, 58,127, 85, 18,140, 80,136, 1, 85, 81, 1, 98, +163, 31, 33, 63, 63,255,166,177,154, 49, 49, 49,154,128,128,128,220,140,140, 12,107, 27, 27,155, 18,115, 85,206, 88,101,103,103, + 35, 47, 47,143, 50, 12,243,135,177,154, 25, 25, 25, 69, 45, 90,180, 80,198,196,196,136,120, 34, 7, 56, 88,136, 81,210, 4, 73, + 97,163,224, 67,165, 44,194,253, 59, 55,145,159,159, 31, 94,153,102,114,114,242, 30, 71, 71, 71, 0, 88, 57,103,206, 28,235,206, +157, 59, 63,189,126,253,122,155,242,191, 19, 24, 24,120,104,254,252,249,221, 22, 47, 94,156,185,117,235,214,105, 41, 41, 41, 59, +254, 63,235,146,149,149,213,228,163, 71,143, 42,180, 90, 45,214,173, 91,135, 85,171, 86,109,162,148, 30,120,173,204,142,242,120, +188,239, 24,134,249,244,179,207, 62,195,232,209,163,101, 65, 65, 65,147,202, 69,185, 94,209, 76, 74, 74,154, 29, 24, 24, 56, 39, + 61, 61,221, 40, 67, 16, 29, 29, 61, 42, 48, 48,112,118,122,122,250,242,170,242, 46,151,203,229, 6,131, 1,207,159, 63,207,161, +148,230, 85, 82,191,138, 61, 61, 61,147, 12, 6,131,179, 76, 38,179,172,174,126,230,228,228, 44, 9, 10, 10,154,151,150,150,118, + 10,192, 34, 74,105,241,107,122,119, 9, 33, 13, 62,255,252,243,241,203,150, 45,235,155,154,154,186,167, 58,205,248,248,248, 37, +109,219,182,253, 42, 42, 42,106, 43,165,116, 67, 37,233,252,150, 16,162,221,177, 99,199,216,231,207,159, 47,173, 74, 51, 57, 57, +249,119, 0,191, 27, 91,190,149,237, 95, 94,211,210,210,114,218,248,241,227,113,252,248,113, 20, 20, 20,172, 77, 78, 78,254,186, + 18,179,118,213,205,205,237,183,144,144,144,158, 43, 86,172, 16,118,235,214,109, 44,128,141, 70,212,207, 43, 0, 66, 75,251,193, + 61, 6,144, 85,230,147, 81, 50,114,144,188,126, 45,174, 78,211,160,203, 31,120,231,210,193,221, 9, 49,247, 67, 2,219,244,182, +200, 83, 58, 67,200,103, 80,152,147,130, 43,103,126,205, 73, 78,124,118, 69, 83,156, 59,176, 38,154,122,109,222,128,251,151, 15, +237, 73,141,123,212, 92, 25,218,213, 34,183,192, 21, 66, 1, 65,110, 70, 34,174,133, 31,206, 78,121,241,252,146,142, 85, 15,253, +167,174,243,255, 75,154,239, 26,196,152, 1, 65,132, 16, 17,128,246, 10,133,162,195, 23, 95,124, 33,234,220,185, 51, 22, 47, 94, +140,211,167, 79,107, 52, 26,205,105, 0,103, 42,138, 12, 84, 85, 0,127,135,102,151,102, 68, 97,111,199,172,169,235,192, 12,246, +243,112, 39, 15,163,159,240,111, 38,119,255,233, 77, 52,255, 43, 21,154, 16,210, 82, 32, 16,124,237,227,227,163,142,139,139,243, +179,180,180,140, 74, 74, 74, 18,233,116,186,169,148,210,139,111,146, 78,123,123,123,235,174, 93,187,166,207,154, 53,139,204,159, + 63, 31, 23, 47, 94, 52,175, 42,194, 98,140,102,157, 58,117,218, 5, 5, 5,157, 92,253,237, 70,126,124, 90, 33,242, 11, 10, 80, + 80, 80,128,162,194, 66, 20,231,167,226,248,161,221,154, 7, 15, 30,120,165,166,166,198, 27,171,233,234,234,218,185, 81,163, 70, +187, 55,110,220,104,150,149,149,245,210, 96,101,103,103,131,101, 89,108,216,176, 33, 59, 43, 43,171, 97, 98, 98, 98,178,177,154, +117,235,214,237, 21, 26, 26,186,127,249,154, 31,249, 9,105,133, 40, 40, 42,130, 82,169, 68,177, 74, 5,109, 97, 26,182,254,180, + 78,253,232,209,163,186, 25, 25, 25,105, 85,105, 58, 58, 58,246,111,217,178,229,130,251,247,239,159,127,242,228,201,152,242,159, +121,122,122,126,215,184,113,227,174,127,252,241,199,156,164,164,164,237,255,223,117,137, 16,210,217,201,201,105, 85, 70, 70, 70, +172, 86,171,221, 71, 41,221, 94,197,247, 6,240,249,252, 1,214,214,214,118,169,169,169,203, 40,165, 7,255, 63,235, 60, 33,164, +187,173,173,237,204,244,244,244,101,148,210,223,170,248, 94,217,126,203, 41,165,135,184, 27,216, 95, 53, 29, 29, 29,187,219,218, +218, 46, 72, 75, 75, 59,159,154,154, 58,181,170, 38, 95,103,103,103, 9,203,178, 11,236,236,236, 90,164,166,166,174, 76, 73, 73, +249,213,216,116,150, 46,149, 83, 23, 37,253,173,128,146, 62, 87,241, 85,205,125, 85,157,166,181, 87,135, 30, 98,153,116, 24,101, + 13,141, 1, 2,134,199,187, 91, 92,164,220, 82, 85,228,202, 24, 77,137, 92, 54,156,101, 13,141, 25, 16,150, 97,152,123, 42,149, +242,231,140,199,167,143,115,102,232,159, 51, 88,132,144, 81,148,210,159,240, 31,132, 24, 63,226,186,100, 8, 51,128,110, 12,195, +180, 96, 89, 54, 2,192,209,170,230,173, 49,166, 0,254, 14,205, 46, 97,196,169,174, 53,111,131, 66,198, 4, 45,219,170,251,252, +109,104,254, 87, 42, 52, 33,164, 23,159,207,255, 82,175,215,127, 67, 41, 61,252,182,210,233,233,233,185, 49, 44, 44,108,216,201, +147, 39,191,143,143,143, 31,255, 54, 52,253,252,252, 86,214,171, 87,111,124,183,110,221, 4,182,182,182,200,204,204, 68,116,116, + 52,110,221,186,165, 73, 77, 77, 29,243,228,201,147,173, 53,213,108,212,168,209, 66, 43, 43,171, 49,159,124,242,137, 21, 33, 4, + 89, 89, 89, 40, 40, 40,160, 7, 14, 28,200, 84,169, 84,159, 60,121,242,228,247,154,106, 54,108,216,240, 39, 55, 55,183,161,189, +123,247, 22, 56, 57, 57, 33, 51, 51, 19,145,145,145,248,227,143, 63,212,169,169,169, 67,162,162,162, 14, 24,163,233,238,238, 46, +138,137,137,169,176, 57, 49, 48, 48, 80,112,235,214, 45, 29,119,193,229, 52, 57, 77, 78,147, 51, 88,239,134,193,226,215,100,231, + 82,147,178,135, 16,178,191,172,127,198,155,242,119,104, 30, 15,167, 73, 0,186, 18, 66,248,111, 75,243,191, 66,169,169, 58,252, +182,117,163,163,163, 63,113,116,116,156, 80,218,108,248, 86,136,140,140,156,236,228,228,180, 35, 46, 46,110,133, 76, 38, 11, 96, + 89, 86,167, 86,171, 47,103,101,101, 77, 74, 78, 78,174,213, 66,176,247,238,221,251,202,209,209,241,208,138, 21, 43,166, 83, 74, + 27, 17, 66, 52,122,189, 62, 34, 39, 39,103, 65, 66, 66, 66, 74,109, 52,239,223,191, 63,202,201,201,105,115, 92, 92,220, 82,177, + 88,220,136, 82,170, 81,169, 84,225,233,233,233, 95,148, 69,174,140,161, 50,115, 5,148, 76,145, 1, 14, 14, 14, 14,142,119, 6, +126,109,190,244,119,152,150,255,138,230,255, 50,111,211, 92,149,145,148,148,116, 15,192,123,111, 57,157,119, 0,244,123,203,233, +188, 6, 32,140,171, 5, 28, 28, 28, 28, 28,198,192,112,135,128,131,131,131,131,131,131,131,227,237, 66, 80, 50, 15,201, 95,168, + 73,219, 42, 33,196,191,166, 63,108, 68, 95, 34, 78,147,211,228, 52, 57, 77, 78,147,211,228, 52,223, 49,205, 10,180,223,127,237, +163,164,215,244,222,253, 78,238, 53, 22,231, 58, 0,114,154,156, 38,167,201,105,114,154,156, 38,167,249, 63, 8,215, 68,200,193, +193,193,193,193,193,193,193, 25, 44, 14, 14, 14, 14, 14, 14, 14, 14,206, 96,113,112,112,112,112,112,112,112,112, 6,139,131,131, +131,131,131,131,131,131,131, 51, 88, 28, 28, 28, 28, 28, 28, 28, 28,255, 26,254,214, 81,132, 28, 28, 28, 28, 28, 28, 28, 28,255, +139,188, 18,193, 34,132,112,110,139,131,131,131,131,131,131,227, 31,227, 93,241, 34, 92, 19, 33, 7, 7, 7, 7, 7, 7, 7, 7, +103,176, 56, 56, 56, 56, 56, 56, 56, 56,254, 3, 6,139,107, 26,228,224,224,224,224,224,224,248, 39,121,215,188, 72, 89, 4, 43, +172, 52, 99, 97, 92, 17,115,112,112,112,112,112,112,252, 3,188, 83, 94,132, 27, 69,200,193,193,193,193,193,193,193,241,150,225, +250, 96,113,112,112,112,112,112,112,112,252,151, 12, 22, 33,196,159,211,228, 52, 57, 77, 78,147,211,228, 52, 57, 77, 78,147, 51, + 88, 28, 28, 28, 28, 28, 28, 28, 28, 28,156,193,226,224,224,224,224,224,224,224,224, 12, 22, 7, 7, 7, 7, 7, 7, 7, 7,103, +176, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,131,197,193,193,193,193,193,193,193,241, 15, 65, 0, 84, 56, 18,128, 82,250,192,104, +145, 90,140, 38,168, 78,159,211,228, 52, 57, 77, 78,147,211,228, 52, 57,205,119, 79,179, 58,237,154,248,143,127,181,193,250, 59, + 39, 26, 37,132,248,191,237, 3,197,105,114,154,156, 38,167,201,105,114,154,156,230,187,167,249,174,193,231, 14, 1, 7,199,127, +156,253,132, 7, 91,111, 55,176,212, 17,124, 81, 10,206,221,127,134,185,148,125, 99, 77, 71, 63, 87,104,116,118,144, 74, 50,112, +242, 94,236, 27,107,114,112,112,112,112, 6,139,131,131,227, 63,131,131,143, 23, 12, 88, 10, 30, 28, 64,181, 49, 8,245, 91, 10, +224,205,158, 44,173,124,188,160, 99, 23,129,207, 56, 67,163,141, 66,107,239,101, 0, 34,185,131,205,193,193,193, 97, 28,255, 72, + 39,247,224,224,224, 91,193,193,193, 11,195,194,194,196, 92, 17,112,112,188, 1, 15, 26,202,160, 55,116,209,232, 88,167, 19, 17, +185,182,202, 98,131, 23,132,250,174,136,240, 50,121, 35, 77, 1,233, 88,172, 99,235,236, 56,173,180, 43, 42,214,251,130,193,155, +105,150,226,239,239,111,222,180,105,211, 19, 1, 1, 1,214, 92,225,113,112,112,112, 6,235, 45,195,178,108, 19, 91, 91,219, 73, + 42,149, 42, 62, 40, 40,168,231,255,210, 1,111,222,188,121, 68, 72, 72, 72, 90,139, 22, 45,210, 90,180,104,113,187,186,237,239, + 34,142,142,142, 94, 13, 27, 54,140,111,208,160, 65, 84,249,237,182,141,251,182,240,109,253,241, 92,235, 6,189,219,112,167,166, +145, 20,177,118, 96,120,109, 35,227,148,178,212, 92,157,221,173, 39, 74, 5, 40, 47, 12, 90, 56,188,145, 38, 75,219,221,141, 81, +201,175, 60,179,177,187,244, 64,109, 10,202,180, 5, 37,246,111,154, 92,145, 72, 52,150, 82,218, 65, 32, 16, 76,228, 10,239,127, + 27, 66,136, 63, 33,164, 39, 33, 36,248, 45,106,126,237,227,227,147, 68, 8,249,156, 59,194, 28,255, 25,131,213,175, 30, 9, 29, + 84,159, 92,232, 95,143, 20, 12,168, 79, 10,135,212, 39,151, 63,112, 39,181,190, 17, 30, 56,112, 64,186,125,251,118, 91, 63, 63, +191, 61,205,154, 53,187, 28, 20, 20,228, 89, 27,157,224,224,224, 19,193,193,193,253, 94,223, 22, 20, 20,212,191,252,182,166, 77, +155, 62,108,218,180,105, 94,112,112,240, 51, 99,116, 3, 3, 3,159, 6, 6, 6, 22, 5, 7, 7, 63, 45,191, 61, 40, 40,168,127, +211,166, 77, 79,188,246,123,253, 94,223, 86,233, 1,103, 24,231, 35, 71,142,216, 30, 61,122,212,150,207,231,219,189,190,253,247, +223,127,127,101,123, 45,142,199,200,224,224,224,136,215,242,242,201,235,219,170, 34, 40, 40, 40, 34, 48, 48,240,147,215,116, 35, +130,131,131, 71,190, 13,115,213,186,117,235,203,119,238,220,169,163, 80, 40,204,203,127,102,111,101,222, 41,226,247,239, 38, 13, +237,215,113,172,173, 95,159,134,220,233, 89, 13,143,253,132,208,179,173, 89,150,218, 68, 62, 43,182,233,218,237, 3,254,221,167, + 42, 27,157,222, 96, 9,194, 11,195,133,186,226, 90,105,234,116,173, 88, 74,237,206,222, 21,218,132,245,248,140,119,254, 62,223, + 70,103, 48, 88, 65,135, 54,181,210,252,179, 30, 10,120, 60,222,164,209,163, 71, 51,132,144,207,220,221,221, 69,255, 75,197,213, +172, 33,113,122, 47,136,127, 61,208,143,132,190, 69, 67,209, 64, 46,151,223, 36,132,120,253,199,204, 85, 19, 0, 50, 74,233,111, + 0,236, 8, 33,252,183,160,185,122,193,130, 5, 83, 31, 60,120,224, 88,175, 94,189,249,132, 16, 30,119,145,224,248,215, 27,172, + 1,245,200, 60, 59,123,167, 83,179, 86,239,106,189,241, 66,172,201,247, 71,110,203, 39, 77, 91, 18,106,111, 97,115,108,136, 59, + 89, 86,217,247,170, 26, 97, 32, 18,137,240,236,217, 51,172, 91,183, 78, 50,111,222,188, 22,102,102,102,247,154, 53,107,182,198, +207,207, 79, 94, 85, 90, 94,215,164,148,134, 10, 4,130,141,205,154, 53,219, 82,118,193, 38,132,132,138,197,226,159,154, 53,107, +182,163,172, 25, 50, 48, 48,176,222,245,235,215, 77, 9, 33,118,198,164,179,105,211,166, 14,183,110,221,146, 1, 37,145,128,176, +176, 48,113,211,166, 77,183, 59, 57, 57,109, 0, 16, 10, 0,238,238,238,162,102,205,154,109,113,113,113,249,153,144, 87, 47,154, +149,229,157, 97, 24,152,155,155, 99,215,174, 93,224,241,120,229, 47, 14, 48, 55, 55,199,206,157, 59, 65, 8,169,241,241,244,243, +243,147, 7, 7, 7, 31,112,112,112, 88,195,178,108, 8, 0, 52,108,216, 80,214,180,105,211,253, 78, 78, 78,107,203,182, 25,163, + 73, 41, 13, 17, 10,133,107,154, 54,109,186,191, 97,195,134, 50, 0, 96, 89, 54,132,207,231,175, 14, 14, 14, 62, 80,147, 50,106, +210,164,201,232, 70,141, 26, 37, 55,106,212, 40,217,219,219,123,177,157,157, 93,248,250,245,235,173,202,231,189, 44,114,149,150, +158,149, 19,113,227,225,147, 73,163, 63, 8,171,227, 98, 55,216,188,113,111, 51, 99,242, 94, 91,254,243,154, 89,196, 22,132,182, +127, 18,175,146,212,245, 8,146,219,250,124, 0, 27,115,190,248,202,163, 34, 5,120,120, 15, 2,153, 77,237, 52,249,239, 61,140, + 85, 73, 45,234,117,145, 5, 55,111, 13, 34,247, 20,135,223, 41, 50, 5,159,169,157,230,159,124, 16, 18, 18, 34,106,223,190, 61, + 28, 29, 29,121,102,102,102,131,223,249, 50, 42,103,174, 20, 18,209,181,149, 11,190, 8,114,180,146, 29, 54,198,100, 25, 49,124, +190,129,173,173,237,249,239,190,251, 46, 80,161, 80, 92, 52,198,100,253, 27,142,103,169,185, 18, 82, 74,175,150,110,138, 4,208, +234, 13, 53, 87,207,155, 55,111,226,140, 25, 51, 80, 80, 80,128,161, 67,135,154, 2, 88,105,172,166, 66,161,240,104,212,168,209, +142, 6, 13, 26,188, 8, 8, 8,208,248,250,250, 22,123,123,123,199,249,251,251,111,149, 72, 36,110,239,122,253,252,183,104, 86, +131, 8, 64, 91, 0,221, 0,188, 7,160,105,233,255,193,165,175,110, 0,218,191,246,183, 44, 58, 90,246,121,179, 74, 52,186, 85, +240,189,224,114,219,203,191,127,253,255,170, 13, 22, 33,132,150,255, 91,158, 15,235,147, 22, 86,246, 78, 83,191, 62,116, 67,202, + 70,223,197,173, 17,237,240,228,243,222,144, 62,189,139,233,227,167, 75, 21, 10,139,241,253,234,147,182,181, 57, 90, 81, 81, 81, +216,179,103, 15,172,173,173,201,166, 77,155,196,253,250,245, 27,107,106,106,154, 16, 28, 28, 60,216, 88, 13, 30,143,103,216,178, +101,139, 73,175, 94,189, 6, 88, 90, 90, 62, 12, 12, 12,172,199, 48,140, 97,219,182,109, 38,253,251,247,239,167,209,104, 30, 5, + 5, 5,121,222,190,125,219,112,227,198, 13, 48,140,113, 65,187, 91,183,110,233,143, 31, 63, 94, 22,209,241,164,148, 62, 90,182, +108,217,128,131, 7, 15, 42,204,204,204,216,192,192,192,122, 46, 46, 46, 15,191,254,250,235,193,251,247,239, 87,152,154,154,178, + 70, 94, 8, 80, 92, 92, 12,137, 68,242,138,145, 34,132, 64,165, 82, 65, 44, 22, 27,157,198,114,145,129, 6, 86, 86, 86,143,151, + 46, 93,218,235,208,161, 67, 82,133, 66,129,224,224, 96, 95,115,115,243, 39,203,151, 47,239,125,248,240, 97,169, 66,161, 48, 90, + 79, 40, 20, 98,231,206,157,178, 65,131, 6,245, 20,139,197,143,131,131,131,125,133, 66, 33,118,239,222, 45, 27, 60,120,112,119, +153, 76,246, 40, 48, 48,176,129, 49, 90, 58,157,110,206,141, 27, 55, 28,194,195,195, 29, 92, 93, 93, 39,124,255,253,247,118, 2, +129, 0, 0, 96, 48, 24, 94,137, 92, 13,238,219,161,217,196, 57,223,157, 87, 21,171, 53,139,166, 15, 15, 19, 24,208,156,123, 6, +170,132,253,132, 7,214,208, 4,128,251,237, 40,149,117,227,214,131,249, 72,255, 13, 77,125, 77,248, 23,110, 23,218, 82, 74, 93, +161,167, 77,113, 33,140, 95, 35, 77, 30,109, 12,194,122,158,186, 67,172, 91,180, 31,204,143,143,143,135,155,111, 24,239,247, 27, +176,163,148,186,129, 69, 80,141, 52,203, 33, 16, 8,230,126,248,225,135,242,184,184, 56,180,104,209, 66, 38, 18,137,230,188,149, + 40,222, 53,111, 87, 92,244, 10, 67,132,151, 67,109,211,246,119, 71,174, 76, 37,162,171,187,119,252,226,216,176,213, 72,178,225, + 11, 87, 75, 27,133,224,240,155, 68,178, 74,205,213,185,107,215,174, 89,117,236,216, 17,243,230,205,179, 49, 53, 53,189,248,111, +143,100,149, 55, 87,132, 16,105,105,243, 96, 18, 0,231, 55,208, 92, 59,111,222,188,137, 51,103,206,196,213,171, 87,177,124,249, +114,116,233,210, 5, 22, 22, 22,213, 94, 63, 62,250,232, 35, 89,104,104,232,173,158, 61,123,222,157, 56,113,226,224,223,127,255, +221,101,203,150, 45,194, 97,195,134,137, 63,252,240, 67,215, 47,190,248,226,227,174, 93,187, 62,104,214,172,217,181,126,253,250, + 73,106,155,196,210, 23, 71,245,101, 89,169, 23, 1,208,104,198,140, 25, 77, 9, 33,191,207,152, 49, 35, 8,128, 53, 33,228,119, + 0, 54, 0,108, 74,255, 23,189,246,215,166,212, 52,149,125,110, 85,145, 70,217,235,181,239,217,148,219, 94,254, 55, 94,255,191, +250, 8, 22, 33,164, 13,128,139,175,239,192,167, 88, 48,122,210, 66,201,243,173,171,144,178, 99, 53,152,204, 36,240,114, 83,161, +190,248, 27,116,151,142,224,163,144, 16,169,148,144, 69,181, 57,152, 10,133, 2, 66,161, 16,209,209,209,120,244,232, 17,186,118, +237, 42, 92,183,110,157,121,131, 6, 13,126, 10, 13, 13,189, 27, 28, 28,220,200, 24,195,226,225,225,129, 1, 3, 6,136, 62,255, +252,243,250, 18,137,228, 54,165, 84,224,230,230,134,254,253,251, 11,167, 77,155, 86, 87, 34,145,220, 96, 89, 86, 40,147,201, 42, +141, 14, 85,164, 43,149, 74, 1, 64,224,233,233,121,115,207,158, 61,110,161,161,161,252, 83,167, 78, 33, 63, 63,159,239,229,229, +117,119,247,238,221,238, 45, 90,180,224, 95,190,124, 25, 69, 69, 69,212, 88,221,162,162, 34, 72,165,210,191, 24,172,162,162,162, +191, 24,175,234, 8, 14, 14, 30,233,238,238,126, 99,207,158, 61,206,173, 90,181,226,157, 63,127, 30, 5, 5, 5,112,117,117,189, +185,103,207, 30,231,208,208, 80, 94, 68, 68, 4, 10, 10, 10,140,127, 76, 16,137,224,230,230,134, 15, 63,252, 80, 48,101,202, 20, +103,129, 64,112, 67, 36, 18,193,213,213, 21, 31,126,248,161,112,242,228,201,206, 34,145,232,154,145, 77,134, 60, 0,208,235,245, +232,215,175,159, 92, 42,149, 34, 33, 33, 1, 44,203,130,101, 75, 60,105, 74, 70,214,253, 63,110, 60,120, 60,105, 76,191, 54, 69, +106,181,250,100,248,205, 71,126,158,174,206,132,208,186,220, 37,167, 18, 44,252,172,192, 67,135,248,100,141, 88, 36,119, 86,152, + 88,123, 3,217, 23, 81,207, 81, 12, 80, 34,185,241, 88, 41, 7, 67, 59, 0,153, 86, 53,210, 52,176, 29, 98,147, 52, 98,173,212, +223,196,209,169, 14,178,178,178,224,226,230, 3, 53,108, 68, 17, 15,138, 76, 64,107,168, 89, 74, 64, 64, 64, 43, 23, 23, 23,251, +186,117,235, 34, 51, 51, 19, 30, 30, 30, 48, 49, 49,177, 8, 12, 12,236, 80,235, 99,112,161,174, 24,121, 8,133,150,172, 4, 97, +230,131,242,151,130,159,209, 4,183, 3, 5,255, 58,115,181,243, 23, 39, 43, 7, 31,224,193, 8,216, 89,138,176,105, 70, 99, 75, + 27,133,184, 86, 38,139, 16,210,192,206,206,238,220,181,107,215,172, 37, 18, 9,110,221,186, 5, 63, 63, 63,172, 90,181,202,198, +194,194,226, 95,107,178, 94, 51, 87,150,148, 82, 21, 0, 22,192, 64,212, 98,212, 43, 41,225,219,133, 11, 23, 78,152, 57,115, 38, +174, 92,185, 2, 39, 39, 39,164,167,167,163, 85,171, 86,241, 57, 57, 57, 85,222,151, 26, 52,104,224, 28, 29, 29,157,244,197, 23, + 95, 52,217,190,125,187, 84, 46,151, 35, 55, 55, 23, 63,255,252, 51,102,204,152, 1, 66, 8, 40,165,216,188,121,179,108,248,240, +225, 77, 99, 98, 98,146,234,214,173,107,108,247, 13, 82, 26,113,145, 1,144,151,254,149, 76,152, 48, 65, 68, 8, 17,151,154, 75, + 9, 33, 68,192, 93,204,254, 82,174, 21,122, 17, 0,214,203,150, 45, 91, 66, 41,237,190,108,217,178, 37,229,246,255,189, 10,173, +242,166, 9, 0,240,186, 6,165,180,123,249,191,229,191, 75, 41,237, 78, 41,237, 94,254,251, 85,253, 94,165, 6, 11, 64, 56,165, +180,205, 95,194,128, 64, 35,251,122,222,200, 61,189, 15, 82, 30,121,229,197,196,222,135,139,132, 15, 29,165, 13,106,115, 32, 77, + 76, 76, 94,190, 24,134, 65, 74, 74, 10,120, 60, 30,230,204,153, 35, 25, 63,126,124, 67,161, 80,120,165,117,235,214, 75,171, 51, + 44, 0,112,253,250,117,120,120,120,144,153, 51,103,154,182,105,211,134, 15, 0,247,238,221,131,187,187, 59, 89,188,120,177,162, + 71,143, 30, 68, 38,147, 25, 29, 29, 98, 24, 6, 82,169, 20, 97, 97, 97,100,203,150, 45, 38, 98,177, 24, 71,143, 30, 69,102,102, + 38, 58,118,236,200,223,178,101,139,137, 68, 34,193,133, 11, 23,144,151,151,103,180, 46, 33, 4,106,181,186, 66,131, 85, 81,100, +171, 42, 90,180,104,177,201,222,222,126,205,246,237,219,197, 82,169, 20,231,207,159, 71, 94, 94, 30, 6, 12, 24,160,223,185,115, +167,196,212,212, 20, 17, 17, 17,200,203,203,171, 85, 69,191,126,253, 58,220,221,221,201,172, 89,179,164, 33, 33, 33, 58, 0,184, +115,231, 14, 60, 61, 61,201,172, 89,179,164,166,166,166,171, 91,182,108,185,169, 42, 13,150,101,145,146,146,130, 7, 15, 30, 32, + 54, 54, 22,153,153,153,200,200,200, 64, 65, 65, 1,244,122, 61, 0, 64, 86,144,127,244,219, 45, 71,238,202,165, 82, 89,179,134, +158,117,174,221,142, 76,151, 75,165, 50, 79,183, 58, 94,132,204,231,150,115,170,168, 18, 9, 52,158,160,164,201,213,200, 66,203, + 86,157, 6, 10,145,113, 28,160, 58,128,240,209,182,153, 51,255,240,229, 34, 59,176,104, 4, 33,124, 0, 35, 42, 20, 33, 4,124, +173, 7, 64,130, 78,221,210, 91,181,236, 52, 86,152,152,152, 8,161, 80, 8,177, 88,140,128,208,247,249,187,207,235,236, 1, 52, +134, 0,222, 70,105,150, 67, 44, 22,127, 53,124,248,112,121, 82, 82,210, 75,205, 46, 93,186,200,101, 50,217,220, 90,155, 43, 70, + 22, 2, 61,157,248, 48, 86,229,186,120,107,138,207,179, 4,149, 15, 40, 38, 67,167, 11,120, 83,147,229,234,234, 26,230,229,229, + 21,235,230,230,214,242, 13,205,213,149, 61, 59,127,113,178,180, 47, 49, 87, 48, 40, 1,158, 20,246,182, 22,216, 52, 55,204,210, +198, 84, 90, 35,147, 85,106,174,206, 94,189,122,213, 90, 34,145,224,230,205,155, 16,137, 68,144, 72, 36,104,216,176, 33, 54,108, +216, 96, 99,105,105,249,175, 48, 89,132, 16, 11, 66, 72, 39, 66,200, 7,132,144,247,203,153, 43, 55, 0,237, 8, 33, 29, 0,216, + 3,184, 64, 41,189,107,164,102, 75, 62,159,127,180,113,227,198,201,124, 62, 63,114,201,146, 37,159, 78,155, 54, 13,107,215,174, + 69, 88, 88,216,179,233,211,167,227,201,147, 39,122,165, 82,217,147, 82, 90,229,141,176,176,176,240,183, 89,179,102,153,245,233, +211,167,236, 61, 46, 95,190,140,109,219,182, 65, 46,255,179, 23, 4,165, 20, 61,122,244,192,200,145, 35, 45, 52, 26,205,129,170, + 52,237,236,236,222, 11, 15, 15,247, 44, 53, 87,146,114, 6, 75,126,230,204, 25,115,137, 68, 98,217,180,105, 83,211,210,237,178, + 62,125,250, 88, 9, 4,130,150,220, 69,237, 21, 42,244, 34,149, 25,156,215, 13, 80, 69,159, 85,100,158,106,155,184,170,126,175, + 42,131, 21, 70, 8,185, 80,209, 78,218,236, 52,136, 97,128,140, 71, 32,229,147,146,191, 60, 2, 41, 97,193,207, 73,171,225,165, +246, 85,131,165, 80, 40,254, 98,180, 84, 42, 21, 10, 11, 11,141, 50, 26,101,125,121, 44, 44, 44, 94,222,180, 77, 76, 74, 70,147, + 91, 90, 90, 66,173, 86,131, 16, 2,185, 92, 14,185, 92, 94,163, 8,150, 68, 82, 18, 17,142,136,136,192, 31,127,252, 1, 62,159, + 15, 75, 75, 75, 0,192,205,155, 55,113,255,254,125,136, 68, 34, 88, 89, 89,213, 72, 87,171,213, 86,216, 68,168,209,104,106,212, + 68,200, 48, 12,138,139,139,233,205,155, 55,241,224,193, 3,136,197, 98,216,216,216, 64, 36, 18, 33, 33, 33, 1,143, 31, 63,134, + 72, 36,130,141,141, 77,173,202,199,212,212, 20,185,185,185, 96, 89,182, 44,154, 7, 83, 83, 83, 20, 22, 22,130, 97, 24,163,210, +201,178, 44,146,146,146,144,153,153,137, 23, 47, 94, 32, 35, 35,227,165,201, 42,107, 34,228,168, 33,151, 27,152,129, 8, 58,102, +228,234,196, 25,133, 34, 51, 59,247,246, 64,230,113,128,240, 0,129, 5,154, 55,169,135,248, 84,131,252,201, 11,141, 4, 58,116, +194, 57, 47, 11,163, 52,121,130, 14,233,121, 58,113, 92,174,141,169,175,127, 32,210,211,211, 33, 22,139, 33, 22,139, 17,212,252, + 61,196, 38,179,178,200,231, 42, 25, 40, 58, 26,165, 89, 74,147, 38, 77,234, 75,165,210,144, 38, 77,154,144,180,180, 52,136,197, + 98, 72, 36, 18,132,132,132,128, 97,152,134, 1, 1, 1, 62, 53,202,255, 51,119, 17, 4,178,230, 0,157,248,248,185,210,241,112, +132,202,171, 71,239,247, 45, 87,239, 77,247,121,252,188,216, 13, 26,253, 20, 20,105, 3,107,107,178,234,214,173,219,198,196,196, +228,247,175,190,250,202, 77, 44, 22, 31,119,115,115,107, 85,171,235,155,152,247,227, 87, 19, 7, 58, 89,148,153, 43,125, 17,192, +147, 2, 60, 89,137,201,178,179,198,162,207,219, 91,202,132,130, 95,141,213,148, 74,165,187,191,253,246, 91,155, 50,115, 37, 20, + 10, 33,145, 72, 94,190,154, 52,105,130, 57,115,230,216, 88, 90, 90,238,250,135,205,149, 37, 74,250, 85,221, 3,112, 0,192,217, +114,230,202, 3,192,175,165, 81,171,219,148,210,120, 35, 53, 91,116,238,220,249,252,179,103,207,186,222,189,123,215, 33, 53, 53, +213,103,242,228,201, 88,179,102, 13,166, 77,155,182,139, 82,234,181,111,223,190,128,235,215,175, 55, 52,166,127, 80,106,106,234, +160,233,211,167,103,102,102,102, 2, 0,252,253,253,145,155,155,139, 41, 83,166, 96,226,196,137,101,145, 87, 0, 64,122,122, 58, + 86,172, 88,145,150,154,154, 58,180, 42, 77,131,193,144,112,240,224,193, 16,141, 70, 83, 7,128, 16,128, 24,128, 44, 62, 62,222, +172,168,168,200,148,199,227, 41,228,114,185,169, 88, 44,150, 15, 31, 62, 92, 24, 25, 25,233,171,215,235,147,184,139,218, 43, 84, +234, 69, 42,138, 52, 85,182,173,182,251, 27,107,178,106,100,176, 40,165, 23, 0,180,254,139,129, 33,184,247,226,198, 5, 88,250, + 53,121, 53,130,197, 39,144, 41, 76, 17,155,148, 0, 33,200,195, 90, 36,240,165,169, 42,111,178, 82, 82, 82, 48,125,250,116,229, +142, 29, 59,238,107, 52,154,144,139, 23, 47,206, 48, 38,130,101,107,107,139, 23, 47, 94,208,111,190,249, 38,255,248,241,227,250, +178,109, 9, 9, 9,116,246,236,217, 5,191,252,242, 11,173, 73, 19, 97, 89, 4,235,194,133, 11,116,238,220,185,121,201,201,201, +212,210,210, 18, 86, 86, 86, 56,115,230,140,126,198,140, 25,121, 49, 49, 49,212,210,210, 18,150,150,150, 53, 50, 88,122,189, 30, + 82,169,244, 21,131, 66, 8,129, 78,167,251, 75,100,171,202,123,226,229,203, 35,242,242,242,190,152, 50,101,138,234,209,163, 71, +212,198,198, 6, 54, 54, 54,216,186,117, 43,255,227,143, 63, 86,221,187,119,239,229,182,218, 96,109,109,141,168,168, 40,186,100, +201, 18,213,217,179,103, 5, 0, 96, 99, 99,131, 39, 79,158,208, 5, 11, 22,168,114,115,115,191,184,124,249,242,136,106, 46, 56, +136,141,141, 69,126,126, 62, 12, 6, 3,212,106, 53, 50, 50, 50,144,152,152,248,210, 96,169,228,166,157, 63, 27,214,163,113,145, + 74,165,188,118, 63,250, 69,179, 38,126,182, 69, 42,149, 50,250,249,139, 40, 74,231,114,179,135,255,229,228, 97,237, 65,105,203, +203,247, 11,205, 59,116,235, 47, 34,249,215, 1, 93, 33, 32,176, 0, 4,230,224, 75,172,208,229,189, 0,222,150,147,249,246, 32, +108, 11, 72,196,213,247,111, 97,169, 29, 88,182,213,153,155,197, 22, 45,187,142, 23,101,103,103,131, 97,152,151, 6, 75, 38,151, +227,189,238, 67,152,205, 39,213,246, 96,105, 40,120, 60,163,251,204, 8,133,194,169,195,134, 13, 19,230,228,228,188,162, 41,149, + 74,209,187,119,111,177, 66,161,152,109,116,222, 31,251, 9,145, 38,110, 14,150, 78,124, 18,167,114, 60,248,135,202,107,242,156, +205,210, 6,141,154, 97, 76, 47, 91,233,226,237,233,126,119, 99,148,110, 96, 12,147,160,212, 4,225,167,154,153, 44, 55, 55,183, + 86,114,185,252,232,161, 67,135,100,109,219,182,197,228,201,147,229, 98,177,248,120,221,186,117, 91,215,180,152,138, 10, 12,159, + 45, 88,189, 61,237,222,222, 78,128,190,160,212, 92,253,249, 74,207, 99, 49,231,219,243,121, 58, 3, 29,104,172,166, 74,165,250, +248,147, 79, 62,201, 58,112,224,192, 95,204,149, 68, 34,193,243,231,207,177,120,241,226,236,236,236,236,161,255,112, 45, 13, 0, +112, 7, 64, 49,128, 54, 0,100,165, 35, 5, 67, 0,156,161,148, 26, 40,165,105,148,210, 20, 99, 5,121, 60,222,180,239,191,255, +158,175, 82,169, 48,114,228, 72, 36, 36, 36, 32, 57, 57, 25,179,102,205,122,206,178,236,199,165,154,119, 41,165,143,141,209,211, +104, 52, 79,114,114,114,186,119,238,220, 57, 55, 39, 39, 7,141, 26, 53, 66,247,238,221, 97,111,111, 15, 71, 71, 71,244,236,217, + 19,158,158,158,200,202,202,194,192,129, 3,179, 51, 50, 50, 58, 81, 74,171, 28,133,158,149,149, 21,179,119,239,222,152, 79, 63, +253, 52, 56, 33, 33,193, 31,128,131, 78,167,179, 84,169, 84, 10,189, 94,111, 98,106,106,106, 21, 24, 24,104, 51,102,204, 24,243, + 27, 55,110,248, 37, 38, 38, 22, 2,136,231, 46,106,175,120,131, 10,189,200, 27,112,244, 77, 34, 85, 21, 69,192,140,133, 41, 21, + 34,229,255,190, 18,189, 2,230,108,219,191,173, 88,228,234, 9, 51,159,198,144, 73, 36,144,138, 69,144,154, 91,162,152,101,177, +241,121,170,178,136,210,217,181, 72,252, 43,145, 43,150,101,177, 97,195,134,226, 69,139, 22,229,166,166,166,142,185,120,241, 98, +227, 27, 55,110,220, 51,198, 8,229,231,231, 99,223,190,125,170, 45, 91,182, 60, 83,169, 84, 77,132, 66,161, 78,163,209, 96,215, +174, 93,197,107,214,172,137, 83, 42,149,193, 2,129, 64, 91,147,230,183,178, 62, 88, 2,129, 64, 87, 92, 92,220,100,207,158, 61, + 49, 71,143, 30, 85,153,154,154, 66, 32, 16,232,148, 74,101,195,237,219,183, 63,217,179,103,143,202,212,212,180, 70,198,141,101, +217, 10, 35, 88, 6,131, 1, 98,177,184, 70,125,176,110,220,184,241,179, 86,171,109,182,107,215,174,196,205,155, 55, 23,155,154, +154, 2, 0,116, 58, 93,240,182,109,219, 18,127,252,241, 71,117, 77, 58,184,151, 94,120, 96, 48, 24,176,125,251,118,245,238,221, +187, 19,245,122,125,112,217,182,205,155, 55, 23,111,223,190, 61, 81,171,213, 54,187,113,227,198,207,213,105, 25, 12, 6, 67,110, +110, 46,248,124, 62,158, 61,123,166, 22,139,197,224,241,120,136,142,142,126,105,176,108,173, 45,253, 66,131,253,125, 86,253,184, +239,130, 92, 44, 22,119, 10, 11,242,141,140,142, 79,164,148,196,113,151,155,138, 66,202,144,129, 64, 26,157,160, 86, 72, 4, 58, +130,212, 95, 1,161, 69,169,193, 42,121, 57, 58, 57,227,198, 99,165, 2, 4, 34,104,116,182,213,106,234,168, 28, 4,178, 7,241, + 80,240,133, 82,146,154,154,250, 50,210, 84,102,136,220,220,125,113, 59,186,208, 4,132,138, 1,216,213,228, 66,101, 98, 98,194, + 79, 73, 73,121,169,245, 82,211,205,141,167,211,233, 58, 25,157,247, 12,131, 3, 88,246,179,168, 23,197,142,135,254, 80,121, 78, +154,179, 89, 42,229,229, 0,113,107,209,192,211, 30,147,135, 54, 22,205,218,152,209,224, 70,164,178, 62, 8, 29,131, 6,133, 70, + 63, 93,184,185,185,181,148,201,100,199, 15, 29, 58, 36,147,203,229,120,246,236, 25, 26, 53,106,132,133, 11, 23,202,100, 50,217, + 49, 87, 87,215,176,154, 20,211,213, 39, 52,190,176,192, 16, 50,117, 67, 66,234,189,231,134, 18, 99,197,148,152,171,140, 60,138, + 79,190, 58,146,155,147, 95,252,254,149,251,186,115, 53, 56,150,119,242,242,242, 58,126,245,213, 87, 89,153,153,153,175,152,171, +248,248,248, 50, 35, 16, 70, 41,125,248, 15,215, 82, 57, 74, 58,175,123, 3,112, 7,208,152, 82,170, 7, 80, 64, 41,173, 85,232, +218,207,207,175,137,171,171, 43,126,248,225, 7,108,220,184, 49,103,213,170, 85,160,148,194,211,211,211,180,182,154,105,105,105, +215,159, 60,121,210,169,113,227,198,143,214,175, 95,159,232,224,224,192,142, 28, 57, 18, 35, 70,140,128,141,141,141, 97,237,218, +181, 47, 90,181,106,245, 32, 38, 38,166,125, 81, 81,209,125, 35,202,135,102,102,102, 70,108,218,180,233,250,123,239,189,167, 24, + 54,108,152,221,198,141, 27,237, 31, 63,126, 92, 71,169, 84, 58,165,167,167,203, 47, 94,188, 40,222,182,109,155,125,100,100,228, +115,149, 74,117,157,254,157, 11, 2,255,247,204, 85,165, 94, 4, 64, 70,169,209,209,188,246, 55,163,154,207,140,253,110,133,255, + 27,177, 95,165, 84, 59,226,102,239, 51, 26, 49,196,157, 44, 95,184,121,195,151, 67, 26,250, 72,235,186,249,194, 80,152,139,251, +169,169,216,150,146,167,212, 81,250,237,190,103,244,124,109, 13, 22,143,199,195,201,147, 39, 13,187,118,237,210, 82, 74,127,202, +207,207,159, 29, 25, 25, 89,100,172, 14,203,178,188,225,195,135, 23,230,228,228,252,154,146,146, 50, 38, 38, 38, 70,211,170, 85, + 43,222,160, 65,131, 10,179,179,179,127, 35,132,140,188,121,243,166,186,101,203,150,168, 73, 61, 38,132, 64, 40, 20,130, 16,130, + 27, 55,110, 60,247,243,243,107,112,245,234,213,239,162,162,162, 62,164,148,242,110,221,186,149, 16, 24, 24,216, 40, 34, 34, 98, +253,227,199,143, 7,178, 44,203, 51, 86,183, 44, 58, 86,222, 72, 49, 12,243,210,212,145, 26,182,185,222,186,117,235,161,159,159, +159,239,245,235,215,183,142, 26, 53,170, 19, 0,217,141, 27, 55, 30, 53,108,216,208,231,234,213,171, 91, 63,254,248,227,206, 40, +105,243, 55,238,254,173,213,162,119,239,222,202,188,188,188, 19, 5, 5, 5, 67,239,223,191,175, 12, 12, 12, 44,219,118, 50, 55, + 55,119,104, 13,202,104,193,186,117,235,230,148,150,213,214,213,171, 87,127, 50,101,202, 20,155,164,164,164,151, 6, 43, 61, 51, +251, 92,139,110,227, 13, 89,185,121,154,205,171,167,126, 32,149,136, 69,179,151,109, 14,215,241,112,149,187,228, 84,128,200,144, + 15,202, 36,127,208,206, 66,188,246,219, 77,194, 97, 61,235, 75,252,125, 92, 75,204,149,208, 2, 55, 34,115, 49,231,155,125,236, +215, 99,109, 98,193, 34, 1, 6, 60,169, 86,211,132,159,143, 98, 93,250, 39,157,132,226,165, 63, 77,172, 23,218,253, 75,177,175, +127,211,151, 70,232,241,195,155, 88,189,120, 60,251,245, 24,203, 88,176, 36, 25,122, 60, 54, 54,185,122,189,254,131,101,203,150, +157, 24, 54,108,152,188, 65,131, 6, 47, 53,159, 63,127,142,175,191,254, 90,165, 86,171,223, 55,246,172, 4,227, 23, 96, 48, 24, +108,119,158,202,242,248, 98,194, 24,153,148,201, 6, 98, 87,148,152, 23,129, 25, 2,252,173, 49,103,130,189, 96,242,210, 35,126, +151,191,171, 87, 8,157,208, 23, 64,178, 49,234,124, 62,255,232,146, 37, 75,100, 82,169, 20,209,209,209,144, 74,165,144, 72, 36, + 8, 12, 12,196,154, 53,107,100,159,126,250,233,241,176,176, 48,147,240,240,112,125, 77, 76, 86,115,111, 18, 50,245,251,152, 43, +203, 63, 55,183,111,228,109,141,204, 2,224,147,185,191,231,100,231,171,250,213,196, 92,149, 55, 89,132,144,142, 19, 39, 78, 60, +181,101,203, 22, 43, 95, 95, 95, 36, 36, 36, 96,192,128, 1, 89, 25, 25, 25,109,255, 5,230, 10, 0,138, 0, 56, 1,136, 66, 73, + 95,164,167,132, 16, 17,222, 96,121,182,200,200,200,219,241,241,241, 14, 35, 70,140, 64,126,126,190, 69,255,254,253,241,236,217, + 51, 68, 69, 69,221,121,147,132,170, 84,170, 27,132,144,134, 95,124,241,197,144,169, 83,167,134, 42, 20, 10, 55, 74, 41,205,207, +207,143, 53, 24, 12,151, 1,236,162,212,248,117, 56, 75, 13,211, 83, 66, 72,108, 76, 76,140,221,214,173, 91,205, 75,143, 1, 0, +168, 0,228, 1, 72,171,173, 41,252, 31,230,198, 63,244,221, 55,114,140, 70,189, 62,112, 67,232,176,250,228,194,160,122, 40, 24, + 88, 15,133,195,220,201,229,247,235,163, 77, 85,223, 1,224, 95,209,246, 38, 77,154, 80,189, 94, 79, 79,157, 58, 69,187,116,233, + 82,212,178,101,203,203,129,129,129,158,198,164,227,117,205,176,176,176, 19, 65, 65, 65,253, 94,223,214,180,105,211,254,229,183, +181,105,211,230, 97,155, 54,109,242, 90,183,110,253,204,152,116,182,110,221,250,113,104,104,104, 81,235,214,173, 31,151,223, 30, + 28, 28,220,171, 93,187,118, 71,203,111,107,218,180,105,207,215,183, 85,150,247,246,237,219, 39, 68, 69, 69,209, 23, 47, 94,208, +174, 93,187, 38,151,109,127,239,189,247, 18,238,222,189, 75,163,162,162,104,231,206,157,147,107,114, 60,203,191,130,130,130, 70, +182,106,213, 42,226,181, 52,127,242,250,182,170, 52, 91,181,106, 21, 17, 28, 28,252,201,235,219,130,130,130, 70,214,166,140,202, +191, 28, 28, 28,188, 2, 2, 2,210, 87,175, 94, 77,235,213,171,151, 94,254,179, 6, 97,195,191,202,205, 47,204,159,178,224,135, +189, 54,190,189, 27,214, 52,239, 53,125,253,103, 53, 31,249, 10,233, 31,190,161,244,162,239,209,199,219, 93, 31, 13,237, 40, 87, +223,218,213,153,210,199, 95,210,171,251, 70,208, 16, 95,145,225,143,239, 92,162,232, 69,159,227,244,146, 87,107,122,188,190,200, + 40,205,139,238,173,232, 69,159,227,145, 91, 93, 31,245,110,109,163,217,181,125, 3,125,250,244, 41,253,237,224, 46,218,220, 87, + 86,170,233,123,138, 94,244,109,107,148,230,171,231,124,104, 72, 72, 72,225,222,189,123,105,116,116, 52, 61,125,250, 52,109,209, +162,133, 50, 32, 32,160,173,241,121, 7,161, 23,252,122,235,207,123, 95,158, 49,192, 36,247,147, 78, 18,245,128,182, 34, 77,175, + 16,161,182, 99, 19,161, 62,212,151,111,104, 84,143, 97,125, 93, 64, 59, 6, 74,213,244,162,247, 37,122,217,183,147,177,233,244, +244,244,124, 81,183,110, 93, 90,217,203,203,203, 43,163, 77,155, 54,252,218,148,123, 51, 47,184,182, 15, 22,167,156,253,169, 45, +237,209, 90,145,213,220,159,223,238, 77,235, 18,128, 0,107,107,235,204, 45, 91,182, 80, 59, 59,187, 12, 0, 13,254, 45,117, 30, +128, 37,128, 94, 0,108, 74,223,155,160,100,254,161,122,111,160,217,162, 99,199,142,186,219,183,111,211,103,207,158,209, 19, 39, + 78,208,208,208, 80, 61,128,176,119,250,124,255, 31,210,124,215, 94,228,239,140, 78, 18, 66,252, 43,234,108, 24, 24, 24, 72, 59, +117,234,164,186,112,225, 66,161, 70,163, 25,125,243,230,205,223,222, 84,243,239, 72,231,223,161,217,174, 93,187, 8,134, 97,234, +149, 14, 1, 78, 62,115,230, 76, 19, 0,104,219,182,109, 4,143,199,171, 87,106,122,147,207,158, 61,219,228, 93,203,123, 25,142, +142,142, 94, 12,195,156, 4,160, 78, 76, 76,124, 57,218,201,182, 65,175, 16, 75, 11,179,182,185,185,121,119, 82, 31, 28, 62,254, + 46,230,253,173,105,158,112, 23, 65, 33, 10,130, 1,211, 31, 60, 83,186,205,222,148, 89,191,123,199, 22,130,173,251, 46,178,203, +199,217,198,180,240,147, 63, 7, 97,191,134, 65,125, 29,109,226,212, 70,107,202, 72, 83, 64, 48,253,110,140,210,117,202,247, 57, + 30,237,123,124,194, 59,178,127, 3,251,205, 56,171,152, 22,126, 38, 47, 0,124, 13, 86,121,197,104,205, 87,207,251, 80,177, 88, +124,124,224,192,129, 38,187,119,239, 86, 21, 23, 23,119,191,125,251,246,249, 26,229,253,138, 79, 29,232,201, 98,128,186, 24,209, + 32,255, 20,122,118, 33,218, 62,126,241,111, 40,247,230,222,196, 85,174, 16,255,174, 84,235, 39, 26, 19,185, 50, 70,147, 16, 18, + 96, 97, 97,177, 35, 39, 39,167,191, 49,145,171,255,207,188, 19, 66,108, 80, 50, 17, 35, 31, 37,211, 22, 60,172,174, 15,147, 17, +154, 45,121, 60,222,180,250,245,235, 55,122,246,236,217, 3,131,193,240, 13,165, 52,252,127,225,222,241,191,160,249,174,241,143, + 24,172, 86,173, 90,221, 50, 24, 12, 39,132, 66,225,226,240,240,112, 53, 87,249, 56, 77, 78,179, 22,154,229, 76,214,173,168,162, +122, 75,119,102,187, 78,234,111,241,162, 58,115, 85,173,102,169,201,186,254, 68, 89,247,235, 93, 5,174,147,251,155,188,168,206, + 92, 25,155,247,192,192,192, 80,137, 68,178, 77,165, 82,141,172,206, 92, 85,168,249,216, 79,136, 28,157, 19,244, 60,127, 48,168, +124,169, 29,150, 42, 33,224, 61, 64, 10,210,240, 65,164,150,171, 75,156, 38,167,201, 25,172,255,111,254,145, 89,143, 47, 93,186, + 20,200, 29,122, 14,142, 55,164,115,140, 6, 39,220,111, 66, 33, 90, 22,232, 37, 29,255,235, 98,169, 18, 44, 73, 4, 97,215, 84, +101,174,140,208,188, 14,153,110, 89, 83, 47,233,196,131,139,165, 74, 0,169,160, 88, 93,149,185, 50,150, 91,183,110,253, 1,160, + 94,173, 5,124, 34,181, 0,158, 3, 36, 14,243,171,152, 29,123, 46, 40,192,117, 30,230,224,224,248, 31, 51, 88, 28, 28, 28,111, +209,100, 61,246,187,129, 44,222, 20, 24, 80, 15, 98,125, 60,114,245,169,232, 28,167,121, 67,205,107,200, 34,159,131,133, 23, 68, +250, 24,228,106,222, 76,243,173, 67,105,137,137,226,224,224,224,224, 12, 22, 7, 7,199,223, 65, 73, 84, 39,177,244,245,239,213, +228,224,224,224,248, 31,130, 0,240,175,248,249,208,248,182, 85, 66,136,127,205,159, 63,171,237,188,201,105,114,154,156, 38,167, +201,105,114,154,156,230, 59,166, 89,157,246,187,210,183,235, 31,233,228,206,105,114,154,156, 38,167,201,105,114,154,156, 38,167, +249, 46,195, 45,164,203,193,193,193,193,193,193,193,241,150,249, 71,251, 96,201,172,189, 28,192,103, 26, 17,150,250, 0, 0,101, +200, 99,232,217,123,202,204,168, 20,174,104, 56, 56, 56, 56, 56, 56, 56,222, 57,131,229,213,162,207, 37,185, 84,238, 1, 0, 44, +165, 48,176, 64,126, 78,250,149,248,123,167,251, 0,128, 99,131,247, 14,138,228,214, 33, 44, 75,193, 82, 10, 61, 75,161, 87,171, +158,102, 68, 30, 53,106,229,121, 19, 91,239, 62,237, 59,182,239,219,189,123, 55,239,134,254, 13,221, 1,224,254,131,251, 49,191, +255,126,244,137,137,173,247,175,133,233, 79, 14,114,197,195,193,193,193,193,193,193,241, 78, 25, 44,185, 84,238,113,238,240, 38, +219,131,151, 18, 0, 0,237, 3,237, 49,127,229,150,222,132,144, 39, 0,240,254,167, 43,189,102,127, 49, 20, 17, 15, 51, 64, 41, + 69,128,135, 37,122, 15,254,212,168, 31,149,218,251, 5,247,255,240,195, 65, 83,166, 76,238,249,244,233,211,184,221,187,119, 95, + 2,128, 86,173, 91,123, 44, 89,178,228,195, 21, 22,150, 98,169,189, 95,146, 42, 53,242, 6, 87, 68, 28, 28, 28, 28, 28, 28, 28, +239,140,193, 2, 0, 19, 9, 31, 79,158,151,180,214,153,203,128, 81, 31,191,143,180,180, 84, 47,173,158,197,144,254,125,112,251, + 73, 10,162,158,103,128, 82,192,203,217,232,181,132,193, 3, 27, 52,124,196,240, 54, 39, 79,157,186,254,213,236,175,182, 19,130, + 43, 0,176,225,167,159, 67,230,204,157, 51,114,200,199, 67, 58,236,223,191,255, 33,254,169, 5, 26, 57, 56, 56, 56, 56, 56, 56, + 56,254, 46,131,101, 96, 41, 30,199,166, 2, 0, 24, 30, 31,221, 66,205,176, 98,209, 52,168,212, 6,220,141,205,195,161, 63, 18, +160, 46,202, 5,165, 64,168,191, 45, 94,159,246,239,245, 17, 6, 43, 63,151, 53,225,137, 4,253, 59, 7,121,212,181,180,176,176, +136,190,190,189,104,206,224, 52, 95,190, 94,123,107,209,145,224, 88,185, 66,212, 98,223,254,253,126, 61,186,119, 23,153,154,154, + 77,181,244,233,232,204, 22,107, 39,231,198,133,231, 85,166,249, 54,224, 52, 57, 77, 78,147,211,228, 52, 57, 77, 78,243,159,213, +124,215, 96, 0,128, 16, 82,225, 92, 13, 49, 9, 89,120, 18,155,130, 38, 62, 78,112,175,107,143,235,209, 57,216,117, 46, 1,155, + 79,197,225,220,189, 12,176, 2, 5, 82, 11, 8,158,198,167, 33, 42, 46,179,218,105,149,121, 34, 65,255,137,203,243,166,248,213, +203,111, 30,190,119, 60, 28, 77,162,253,166,173,204, 29,207, 19, 9,250,219,218,155,239,158,242,249,152,193, 10,153, 84,164, 81, +107,224, 86,215, 69, 50,118,228,240, 97, 66, 19,249,110,174,152, 56, 56, 56, 56, 56, 56,222,109, 42,243, 34,255,105,131, 85, 17, + 69,170,162,167, 31,141,158,146,238,161, 72,209,244,105,235, 11, 80, 32, 35, 37, 14,145,215, 79, 34,250,214, 41, 20,100,188, 0, +165, 64,221,186,117, 32, 84,197,106, 54,252,248,125, 58,171, 47,126, 90,153, 94,175,142,142,206, 79,147,228,204,242, 41,117,174, + 68, 71,165, 88,143,155,178, 5,209, 81, 41,214,203,167,212,185,242, 52, 73,206,200,132,134, 22, 31, 15,232, 69,122,117,239,140, +105,211,166,160, 87,247,206,152, 50,230, 67, 34, 17, 9,154,115,213,142,131,131,131,131,131,131,227,157, 48, 88, 81, 17, 7, 91, +221, 58,179,221, 46, 51, 45, 45, 79, 46,230,131,207, 48, 72, 79,124,134,109, 43, 63,199,254,111, 39, 35, 55,229, 41, 40, 5,164, + 66, 30,212,133, 89,121, 41,119,246,217,101, 86, 49,130,144, 64,215,225,187, 29,207,221,226, 82,168,217,174, 19,133, 2, 0,216, +117,162, 80, 16,151, 66,205,190,219,241,220, 77, 68, 51,192, 26, 12,232,222,235,125,108,223,186, 17, 33,237,122, 97,255,197, 23, + 80,170,180, 26,174,152, 56, 56, 56, 56, 56, 56, 56,222, 9,131, 85,158,228,244,108, 88, 42,120,176,113,116,195,160,207, 87, 0, + 0, 12,172, 30, 20, 37,211, 51, 24, 19,211,163, 16,156,254,108,136, 91,108, 93, 7,146, 55,184,139, 76, 5, 0,131,187,200, 84, +117, 29, 72,222,103, 67,220, 98,149, 6, 11,173,193, 96,192,229,135,233, 88,254,203, 35,124,181,229, 30, 78,222,228,166,195,226, +224,224,224,224,224,224,248, 15, 27, 44, 66, 8,173,168,253,147, 5, 16, 29,151, 1, 49,159,133,115, 29,247, 63, 59,178, 83,128, + 82, 64,167,103,141,250,161,195,167,146, 19,235, 57, 21,209,169, 43, 94,132,248,251, 88,221, 27, 59,208,229,177,191,143,213,189, +169, 43, 94,132,212,115, 42,162, 58, 86,100,160,148,130,178, 20,148, 82, 80, 10,176, 44,229, 74,136,131,131,131,131,131,227,127, +132,202,188,200,127,214, 96, 81, 74, 73,217,171,162,157, 92, 93,236,112,237, 65, 60,234,216,137, 97,106,166,192,227,152, 68, 48, + 60, 62,120, 12,129,222, 96,252,113,160, 26,221, 47,171,166,154,173,120,145, 98,184,250,253,142,103, 79, 95,164, 24,174,174,154, +106,182,130,106,116,191,148,164,163,100, 82, 83,182,220, 95, 14, 14, 14, 14, 14, 14,142,119,159,234,188,200,127, 13,190, 17, 57, +134, 92, 38, 5,203, 72,112,249,102, 12,124,124, 27, 97,203,111,215,225,238,223, 12, 41, 5,122,208, 26, 44,103, 56,121,173,242, + 54,128,219,189, 58, 58, 58,247,233,226,212,129, 66,112,250,187,221,121,137, 0,176, 41,164, 79,169,177, 42,137, 92,177,180,100, +154, 8, 14, 14, 14, 14, 14, 14, 14,142,255, 26, 70,185, 35,150,165,176,177,182,128,216,196, 12,177, 25, 26, 20,194, 6,121, 42, + 2,214, 0, 24,244,149,155, 32, 66,136,127, 69,219, 15,159, 74, 78, 60,116, 42, 99,211,225, 83,201,137,175,185,215,151,205,131, +148,210, 10,155, 8, 43,211,124, 19, 56, 77, 78,147,211,228, 52, 57, 77, 78,147,211,252,103, 53,223, 53,140, 90,236,185,190,131, + 28, 30, 78,114, 20,107,236,160,210, 24, 80,164,214,163, 64,169, 67,158, 82,135,184, 84, 37,162,194,223, 60, 33,180,212, 96,129, + 18,176,148, 2,164,164,153,240,221, 8, 20,114,112,112,112,112,112,112,112, 6,171, 28, 74,149,242,105,135,190,159,148, 46,248, + 76, 97, 48,148, 68,150, 12,101, 77,121, 44,133, 65,171,122,250,166, 9, 49,176,236,245, 31,182,252,210,181,113, 64, 51,158,159, +171, 2,249,185,153,184,121,237,138,158,178,236, 21,174,152, 56, 56, 56, 56, 56, 56, 56,222, 41,131, 21,125,229, 96,171,255,143, +132,100,103,167, 13,217,177,231,215, 69, 59,247,254, 22,170,214,106,157, 88,240, 18, 12, 58,221, 5,113, 65,214, 28,174,152, 56, + 56, 56, 56, 56, 56, 56,222, 41,131,245,255, 69,118,204,181, 2, 0, 19,184, 34,225,224,224,224,224,224,224,248,175,195,112,135, +128,131,131,131,131,131,131,131,227,237, 66, 0, 84, 56, 18,160, 38, 43,101,215,102, 52, 65,117,250,156, 38,167,201,105,114,154, +156, 38,167,201,105,190,123,154,213,105,215,196,127,252,171, 13, 22,165,127,223, 92, 83,132, 16,255,183,125,160, 56, 77, 78,147, +211,228, 52, 57, 77, 78,147,211,124,247, 52,223, 53,184, 38, 66, 14, 14, 14, 14,142,255, 57,172,189,122,154, 88,123,245, 52, 49, +118,127, 27,191,126,118, 54,126,253,236,184, 35,199, 97, 44,124,238, 16,188, 21, 39, 47, 6,192, 82, 74,181,255, 84, 26, 44, 44, +234,153,234, 21,214, 7, 25, 86,253,117, 94,194,189,211,111, 59,127,126,126,126, 1, 0, 16, 25, 25,121,135, 82,170,126, 83, 77, +185,157,247, 64, 11, 83,243,209, 90, 86, 99, 80, 22, 41,127, 40, 76,141,218,255, 54,211,108, 99,227, 39,215,136,165,203, 65,104, + 23, 80, 48,148, 33,103,121,249,186, 73,185,185,119,243,170,250, 94,157, 94, 75,125, 70,124,208,109,246,166,253, 71, 23,189, 56, + 60,227,241,235,159, 91,118, 89,175,152, 48,228,189,169,223,254,242,251,215,153,191, 77, 45,228,106,127,205,169,211,114,144,185, +158,111,207, 75, 14, 95,145, 85,147,239, 57,123,135, 60, 20, 8, 4, 54, 90,173, 54, 61, 41,234,170, 81,205, 22, 46, 62, 45,110, +243,120,140,163, 65,207, 38, 38, 60,137, 8,226,142,126,245,200, 28,125, 2,136,193, 48,141,178, 6, 1, 11,222,234,226,140,232, +203,111,162,231,232,232, 40, 53, 51, 51,107,109,106,106,234, 34,147,201, 36, 57, 57, 57,170,156,156,156, 23,241,241,241,231, 40, +165,250,127, 34,143, 54, 13,122,207,224,139,152,185,165,255,207,207,120,120,104,105,213,251,247, 90, 68, 24, 50,163,244,255,165, + 25, 15, 15,207,254, 55,148,149, 93,195,190,205, 64,217, 47, 24,134,215,194, 64,245, 75,210,239, 31,254,190, 38,223, 15, 9, 9, +233,173,211,233,196,101,239, 5, 2,129,250,202,149, 43,135,184,179,224, 31, 50, 88,206,126,253, 44,116,124, 58,143,207, 99,222, +103, 41, 85,164,220,217, 39,255, 55,103,208,181,217, 71, 55, 25,134,113, 46,191,141,101,217,196,248,107,219,223,202,197,150, 16, +226,188,114, 98,224,180,180, 44, 85, 62, 33,100, 97,101,230,195, 46, 96, 96, 4, 97, 72, 61, 66, 8, 24, 2,240, 24, 2, 0,201, + 47,174,237,104, 82,129,166,131,169,156,239,149, 95,164,127, 64, 41,173,246, 38, 36,181,242,116,148, 91, 57, 93, 8,235, 51,222, +237,230,201, 45,190, 38,118, 62,239, 21,166, 61,142,124, 11,121,179,113,119,119, 15,246,242,242,178, 26, 63,126,188, 16, 0, 86, +175, 94,237,225,225,225,145, 21, 19, 19,115,131, 82,154, 81, 43,115,101,235, 51,100,237,138, 5,219,187,116,233,130,228,140, 34, + 44, 95,253,125,152,137,189, 87,191,183,101,178,136, 99,160,212, 92, 46,123,240,233, 23,115,156,187,182, 13,230,231, 22,234,112, +236,220,213, 33,251, 55, 47,111,103,110,222,184, 97, 85, 38,139, 85,230,206,182, 83,208,206,172, 50, 23, 0, 6,190,254,185,147, +137,174,189,165, 12, 93, 28,196,252,187, 0,126,173,246,230, 18,252,241, 73,129, 80,232, 74, 8, 83, 82,238, 60, 2,166,180, 14, +232,117,154,248,167,151, 54,119,250, 87, 92,168, 3,135,164, 18, 16, 43,166, 52,125,132, 0, 12,195,128, 79, 0, 80,154,255, 44, + 98,139,213, 91,168, 79,102,254, 30,230, 13,186,133,182,220,116, 33, 54,219,164, 78,155, 47,142, 18,202,124, 31,127,113,229, 93, + 99,190, 47,145, 72, 44,142, 28, 57, 98,211,185,115,103, 51, 59,255,222, 23,140,249,142,137, 72,226,247,251,239,191, 9, 59,119, +238, 84,131,250,233,221, 1, 12,179,131, 0, 2,150,165,171,121, 44,221, 91,152, 21, 21, 67,107,216,159,194,214,191,247, 2, 16, +248, 26,253, 5,138, 71,233, 15, 14,205,169,229,177,229, 73,109,189,135, 74, 37,146, 41, 30, 94, 62, 94,113,207,159, 69,229,231, +231,173, 82,165, 71,109,162,148,178, 53,210,210, 27, 38,158, 58, 23,241, 1, 95, 32, 32,157,218, 6,203, 9, 33,157,106,170,241, + 74,221,178,179,235,189,126,253,250,250, 33, 33, 33, 0, 0,189, 94,111,186,111,223, 62,251,133, 11, 23,202,141, 57,135, 42,194, +201,201,201,201,204,204,172,142, 84, 42,117, 2, 0,149, 74,149,148,151,151,247, 34, 41, 41, 41,169,186,239,218, 7,244,179,102, + 24, 44, 56,241,235, 79,124, 0,232,212,119,244, 34,183,176, 47, 45, 8, 79,160,170,104,127,131, 94, 35,103, 8,249,226,236,145, + 45, 4, 0,222,235, 57,108,186,141, 95,191,111, 51, 34,247,165,253, 35, 15,244,253,250,241,172,163,181,189, 9, 37,147, 2,131, +130,155,247,237,213, 5,126,238,142,232, 61, 96,236, 20, 0, 53, 50, 88, 58,157, 78,188,127,255,126,103,134, 97,120, 90,173,182, +120,192,128, 1,233,111,146, 54,207,150, 31, 71,128, 16, 23,173, 94,255,115,252, 85,247, 69,148,206,101, 95, 79,187,195,115,254, + 44, 16,102, 36,101,217,132,148,219,187, 91,112, 6,171, 20,107,175,158, 38, 60,177,240, 65, 88,171,230, 86, 51,198,246, 17,253, +184,247, 18, 28, 3, 62, 76, 74,190,179,215,233,223,154, 65,134, 97,156, 15,239, 90,111, 43, 21,243, 0, 0,133, 42, 3,250, 14, + 25, 95,253, 9, 28, 60, 56, 28, 4,222,101,109,168, 6,131, 94,194,231, 11,138, 9, 0,144,146,209, 1, 82,169,232,234,166, 89, + 33,121,195,122,212,251,104,218,183,183,183, 2, 48, 7,144, 90,225, 73,193, 48,206,123, 54,175,182,117,178,146,128,207, 35, 40, + 84,233,209,231,163, 73,134,138, 12,219,166, 89, 33, 11,134,116,169,219,223,182,243,129,190, 0,142, 87,121, 3,177,247,243, 81, + 88, 59,158,238, 59,106,129,163, 10,166,152,189,104,149,109,196,169,253,151,218,247,254, 68,251, 34, 49, 81,169,215,234,158,100, +101,167, 76, 46, 72,142,138, 54,246, 66,109, 98, 98, 82,223,196,196,164,113,151, 46, 93, 36, 83,166, 76, 17,132,133,133,189,252, +124,212,168, 81,194,240,240,112,135, 21, 43, 86,116,117,116,116, 44, 46, 44, 44,188, 91, 88, 88,248,140, 82,106, 48,182, 76,236, +237,109, 62,123,191,119, 15,180,123,255, 83, 24, 88,130,145,227, 38,226,228,241, 95,199, 0,120, 43, 6,203,132,199,204, 31, 57, +126,166,115,155,144, 64,254,178,125, 79, 97, 38, 19,162, 83,179, 32,190,152, 55,213, 97,207,230, 21,171, 0, 12,175, 40,114,197, + 42,115,103,251, 91,107, 7,244,108, 81, 15,191,237,209, 14,112,110, 63, 21,140,204,252,101, 36,203,189,203, 4,133,133, 84,178, +222,201,156,103, 43, 54,164,175,119,239, 50,225, 76,204,241,117, 5, 85,165, 69, 32, 20,186,110,250,118,177,167,165,137, 16, 60, + 30, 1,159, 97,192,227, 17,168, 53, 6, 12, 25, 59,227,109, 69, 24,121, 82, 91,207,174, 12, 48, 12, 0, 88, 96,139, 42, 61,250, + 88, 77,202,132, 48, 60,171,125,155, 87,240,109,205, 68,224,241, 8,120, 76,201,235,121,170, 10, 19,190,156,103,246,166, 70,189, + 75,168,109,112,248,183,109, 58, 53,247,183,108,244,203, 21, 98,222,188, 75,127,171,204, 98,233,208, 61,135,195, 7,212,105, 61, +233, 26,165,236, 55, 9,151,214,156,170, 74, 71,173, 86,167,117,234,220,197,148,240,229,178, 51, 7,183,182, 46, 91,108, 94,103, + 96,255, 92, 28,158, 2,101, 15, 49, 44, 5, 70,125, 50, 2,157, 58,119, 81,178,122, 54,177, 6, 23,141, 29, 39,206, 92,182, 41, +214, 81,172, 92,191,113, 65, 81, 94,230,130,216,199, 86,113, 50, 59,175, 47,148,105, 81,191, 25,159,113,248, 70, 69,236,235,179, +235,247, 43,240,247,243,133,129, 45, 89, 95,213,203, 89,142,221, 71,175,194,199,219,167,100,242,102,150,194,219,197, 4,109,186, +125, 84,203,227, 27,198,151,219,249,236,238,221,127,216, 7,125,222, 31, 0,115, 83, 19,104,180,106,175,115,167,142,255,244,195, +250,229,161,132,144,161, 53, 49,135, 44,107, 16,253,249,191, 78, 2, 64, 0, 64,243, 6, 17, 44,155,224,224,224,151,239,245,122, + 61,220,220,220,144,148,148,228, 93, 11,179, 38,115,116,116,236,182,124,249,114,219,182,109,219, 10,108,108,108, 0, 0, 25, 25, + 25, 78,231,207,159,111,210,164, 73,147,244,228,228,228,163,105,105,105,202, 74, 77, 5, 91, 44,228, 81, 62, 79, 44,150,150,250, + 90, 48, 83,198, 15,106,100, 99, 99, 83,225,195,113, 86, 86,182,104,238,220, 57,132,207, 23,148,236, 79, 41, 67, 89, 67,165,107, +140,180,104,209,162,167, 86,171,149, 84,244, 89,166,222,166,107, 49, 43,234, 95,114, 23, 1,248, 60, 94, 78,242,157,253, 54, 70, +155,246, 70,189, 58, 58, 48,130, 31,122,244,234, 85,183,119,215, 48, 56,216,152,225,220,213, 39,248,124,214, 74,232,244,134, 53, +181, 41, 31, 30,143,199, 79, 79, 79,143,179,176,176,176,127, 11,247,219,122,135,119,173,179, 61,127,233,230,244,111,197,123,198, +214,111, 57, 76, 87,182,252,157,129,165,240,150,152, 10, 90,247,234,160,176,114,242,146,110,252,118,153,128,139, 96,149, 47, 8, + 17,111, 97,203, 22,193, 86, 51, 38,142, 16, 45,220,120, 1, 87, 78, 29, 85, 37,223,217,247, 86,204,149,220,214,179, 33, 79, 40, + 26, 65,120, 2, 57, 3, 34,102,245,250, 20,131, 65,249,117, 97,106, 76,230,155,106, 27, 88,224,192, 31, 53, 52,230,148,122,252, +244,221, 74, 91, 59,115, 49, 84, 26, 61,134,127,246, 21, 54,172, 89,160,176, 49, 19, 65,173, 53, 96,203,225, 27,153,141,138, 86, +209, 97, 93,235,125,180,120,211,195, 95,191,217,241,248,215,146,115,181,146,138, 71, 24,216,154,137,177,104,247, 19,152,202, 4, +176, 52, 17,129, 97, 42, 54, 87,195,122,148,104,230, 22,104,244,132, 16, 17,165,180,194,139,155,137,131,127, 43,133,141,243,254, + 62,159, 44,176,137,206, 32,160, 84,131,103,102, 98,244, 29, 50,214,220,221, 94, 10,185,132,135,184,132, 20,183, 47,167, 78, 13, +146, 56,248, 4, 23,167, 60,126, 81, 93,182,235,214,173,219,183,123,247,238,178,201,147, 39, 11, 92, 92, 92,176, 99,223, 73,215, + 14, 31, 76,232,145,148,154,229,194, 82,192,206,214, 50, 97, 68,255,174, 71,142, 29, 59, 22,159,144,144, 32, 88,190,124,121,179, +253,251,247,251,213,228, 73,212, 64, 41, 84, 26, 3, 12, 6, 22, 6,150, 32, 35, 87, 93,139,155, 10, 97, 42,127,170,166,189, 58, +134, 53,229,175, 62,244, 12, 5, 74, 29,164, 66, 30,158,166, 20, 33, 36, 36,152,191,119, 11,105, 91,209, 55, 70,124,208,109,182, +157,130,118,238,217,162, 30,108, 45,100,216,252,237, 98,252, 22, 17,219, 57,173,128,192,186,231,242,209, 14, 98,126, 7, 27,153, +112,125, 88,144,135,253,123,129,174,184, 25,228, 97,127,241,214,227,168,134, 31,174, 26,159, 84, 40, 56,147,125,124,124, 65,101, +229,110,105, 34,196,198,147,113,144,139, 5,144, 75,248, 37, 47, 49, 31, 12,243,102,235, 64, 73, 29,253, 92,120,172, 97,132,169, +163,223,136, 1, 31,246,115, 28, 56,224, 3, 74, 24, 30,246,253,122,164,215,206,157, 59, 82, 76,236,189, 55, 26, 24,222, 38, 85, +114,100, 66,245,199, 19,176, 53, 19,225,203,159, 31, 64, 33, 19,192, 84, 38,128, 66, 42,192,123,141,109,106,157, 78, 66,136,197, +152, 94,245,187,222,219,222,190,173,119, 29, 19,207,187, 49,121,145, 35, 22,221, 92, 19,158,219,118,226,250,213,126, 86,162, 28, + 53,255,171, 41,159,240,147,146, 83,218,238, 59,114,161,157, 99,211, 17, 79,244,218,162,153,233,119,247, 30,174, 72, 47,225,113, + 68, 19,231,144,126, 18,109,161,238,254,221,168, 68,247,236, 98, 17, 34,227,243, 75,143,169, 0, 38,101,199,182,244,248,166, 36, +198, 33, 91,201,187,156,100,197,180,165,225, 17, 53,106,138, 82,105, 89,220,141, 45, 68, 93,175, 38,176,119,112,132,166,235,160, +186,215,207, 29, 56, 44,119,240, 93, 90,148,242,104,166,177, 58,187,126,191,130,133, 75,215, 68,131,224, 81,233,221,220,119,242, +164,241,158, 43, 87,173,127,101,219,216, 79,199,121,214,214, 92,203,236,188,119,182,239, 57,244,131, 70,205, 58, 32, 58,230, 25, +162, 31,222,196,123,237, 59,161, 75,247, 62,208,168,139, 63,218,244,211,250, 27, 0,190,123,253,187, 10, 7,223,150, 13,253,125, +119, 58, 58, 56,186, 80, 90,186, 52, 25,165,104,219,182, 45,166,126, 49, 18,202,194, 2,120,123,251,135,154,183,234,168,238,220, +255, 51,176, 44, 69, 86, 86,102,209,147,199,145,237, 85,105,143,175, 25,155, 70,165, 82,169,203,200,200,192,157, 59,119, 16, 21, + 21,133,135, 15, 31, 34, 43, 43, 11,102,102,102, 53,106, 98,183,176,176, 48, 13, 10, 10, 26,180,119,239, 94,137,153,217,159,158, + 95,163,209, 64, 38,147,161,119,239,222,130,150, 45, 91, 58, 13, 27, 54,236, 99, 11, 11,139, 93, 57, 57, 57,249, 21, 26,166,123, +191, 39,219, 55,236,253, 99,215, 15, 70,141, 5, 0,161,216, 36,118,237,207,191, 62,172,234,183,133, 18, 83,215,246,189,135,187, +131, 82, 16, 66,214,102, 62,254, 53,181,178,125,181, 90,173,244,151, 95,126,113, 34,132,188,114,127, 93,176,238,151, 22,247,163, + 83,218,255, 48,111, 26, 95, 33, 23, 35, 51, 79,131,209, 99,199, 91, 27,109,174, 26,246, 26, 23,220,164,201,119, 95, 77, 25, 9, +185, 76,138, 83, 87,159,225,139, 25, 75,245,217,153,233,219, 65,200,234,140,135, 7,223,180,213,226,173,140,120,243,116, 50,129, +162, 83,136,100,228,135, 97, 18,141,206,128,156, 66, 29,212, 90, 3, 88, 74,145, 87,164, 67,100,124, 1,172,205,132,216,136,119, +159, 26, 25, 44,190, 64,212,125,194,208,174,162, 21,187,174,225,202,169, 93,170,228,219,251,100,101,159,185, 4, 13,136, 77,184, +185,167,222,171, 30,165,250, 17, 6, 10, 39,111, 75, 48,146,175, 91,183,105,211,123,240,199, 35,137,171,147,141, 64,111,160,236, +195,199, 49,186,125,187, 54,127, 98,234,220,104, 85,126,226,189, 5, 53,209,124,245,105,140, 77,124, 61, 98,197,178,108, 98,117, +233, 36, 4, 48,151, 11,240,227,209,216,146, 39, 99, 80,152,201, 4,216,125, 62, 17,249,217, 73,153,141, 84,171,254, 24,209,213, +182,231,162, 77,145,135,191, 63,146,118, 11,192, 67, 74,105, 90,101,154,132, 1,248, 60, 2, 51,185, 16,102, 50, 1,204, 76, 4, + 96, 8,169,212, 92,125,245,211,189,173, 0,158,148, 55, 87,229, 53,229,118,222, 13, 76,109,234, 30,122,127,204, 18,139,251, 47, +180, 96, 24,160,158,189, 28, 22, 38, 34,104,116, 64, 92,134,182, 52,175,166, 24, 55,121,158,205,244, 73, 99,142, 17, 18,214,136, +210,112,125, 85,121, 87, 42,149,162, 33, 67,134, 8,116, 58,157,118,216,231,139, 58,166,164,101,246, 90,179,228, 75,177,181,181, + 21,138,138,245,184,243, 40,206,119,233, 55,223,214, 59,118,238,218,193, 65,221,154,252,102,107,107,107,166, 86,171,217,154,148, +123, 70, 90,230,183, 91,118,236,223,190,122,197, 82, 60,142,203,198,230,159,190, 7, 53,232,127,172,218,239,190,170,185, 97,195, + 6,219,144,144, 16,230,234,213,171, 89,175, 27, 80, 66, 32,207,206, 83,195, 92, 46,132, 76,204,135,189,185, 24, 86, 10, 33,196, + 66, 6, 12,243,231, 69,164,188,230,166,253, 71, 23,177,202, 92,252,182, 71, 59, 96,243,183,139, 49,252,179, 89,120,144, 41, 60, +193,200,204, 23,125,214,191,215, 52, 75, 25,186, 56,153, 51,182,239, 5,214,133, 92, 34,196,140, 9, 67, 16,124, 43,206, 54, 49, +151,157,149,173, 68, 99, 0,179, 43, 74, 39,195, 35,224,243, 24, 40,164, 2,132, 31,221,157,174, 44,200,203, 35,188,146, 8,139, + 78,163,141, 55,206,235,255,245,120,202,237,188,167, 7, 6, 52, 90, 60,118,212, 8, 38, 52,164, 41,101, 24, 62, 50,243,181,132, +130, 98,226,103, 99, 48,110,204, 72,251,196,164,180, 57,223,125,191, 97,182,137,173,239,194,194,244, 71,243,170,210,228, 17, 6, + 12, 67, 32,151, 10, 96, 34,249,243, 85,172, 97, 65, 8,120,206,129, 3,242, 64, 0, 66, 72,114,194,141,221,190,198,164,211,177, + 97,151,179, 23,210,133, 62,202, 99,197, 87,158, 70,223, 94,116,253,222,139,235,148,210,236, 58,109, 38,125,172,211, 81, 20, 22, +235,241, 60, 77, 9,189,134,146,225,157, 93,225,246, 1,241, 94,178,249,246,118, 66,136,105, 89,196,229,117,205,196, 43,251,138, +173, 27,246,237,191,122,221,134, 27, 43, 22,207,226,101,229,107, 96,160,128, 84,196,131,164,244, 37, 21,242, 80, 92,148,135,239, +126,252, 57, 85, 15,210,151,134, 87, 93,231,255,122,209,160,131,251,118,109,189,135, 0, 34,194, 8, 19, 29, 93,235,186,182,235, + 62, 84,242, 94,143,143, 96,208,107,167,203,237,124,206, 23,165, 61, 62,107,140,166,191,159, 47, 64,240, 40,253,254,161,190, 37, + 55,201,222,191,250,120,251,120,190,190,205,195,195,203,211,152,114, 47,123,184,144,218,120,142,242,240,105, 56,117,236, 87, 27, +234, 38,103,169, 97,225,228,129, 59,183,111,225,228,190,239,110,171, 10,114, 86,156,252,253,224,212,133,203,214, 52,238,222,251, + 67, 28, 62,180,119, 50, 33,228,123, 90,194, 75, 77,202,178,131,183,110,220,224, 34, 16,138,161, 51, 80,232,244, 44,116, 6, 22, + 58, 61, 69, 74, 74, 50, 10, 10, 11, 33,145, 42, 32, 55,181,132, 78, 95, 18, 41, 84,171,117,242, 49, 31,117, 31, 7,224, 90, 69, +233,116,107, 54,228, 38, 24,226, 92,178,189,212,156, 48, 22, 74, 7, 7,135,237, 0, 32, 22,139, 33, 22,139,161,215,235,113, 63, + 25, 19, 29,131, 7,207, 0, 45,189,179,179,108, 98,202,237,221, 65,149,229,221,197,197,165, 71, 69,230,170,176,176, 16,127,220, +184,103,182,229,151, 83,157,227, 18, 82,235,179, 6, 91,181,212,190,113, 39, 0, 61, 42, 59,158,169,247, 15,141,171, 19, 54,145, +153, 60,118,136,199,218,159,247, 95,143, 62,177,176,202,112,114,189,246,211, 53, 83,199, 13, 12,250,122,237,230,232,196, 11,107, +190,168,174,140,132, 66,161, 32, 35, 35,227,229,249,189, 96,253,129, 46, 47,210,242,219,127,179,120,150,240,206,179, 66,220,123, +158,130,161, 29, 92,141, 62,223, 29, 26,244,241,118,173,235,178,102,205,194,207, 17,149,172,194,250, 3,215,113,225,232,246, 91, +218,226,130,110,233, 15,127, 75,175,205, 53,228, 77, 13, 86, 69,154,101, 55,130,243,247, 50, 81,160, 42, 49, 86, 58, 3,139, 2, +149, 30,233,185,106,228, 21,233, 80, 88,172,195,208,246,174,181,241, 43,193, 0,108, 0,100, 0,184,241,218,123,148,254,143, 10, +222,103,150, 70, 12,173, 74, 35,177,162,114,154,101,239, 43,219, 94,246,253, 72, 0,190,165,154, 6, 0,215, 1,228, 84,235,153, + 8, 33,148,210, 63,151, 84,126,253,253, 43,145, 7,189,206,217,209,193, 1, 44, 77, 44,139,112,150, 68, 61,154, 13, 80,126, 49, +170,159,212, 49,224,131,162,228, 59,251,141,238,147, 37,183,241,107, 36,145,203,143,175, 91,191, 94,212,189,109,144,201,211, 52, +117, 65, 84,146, 38, 83,169, 49,232,109,220, 2,132,179, 23, 55,148,172, 93,181,100,130,194,177, 65,114, 65,242,195, 77, 21,134, +159,131, 7,222, 36,132,113,102,254, 12,203,131,178, 52, 49,241,198,174, 32, 0,120,147,190, 86, 69,197,122,240,120, 4,130,210, + 62, 41, 74,141, 1,202,220,212,172, 70,202, 53,127,140,232, 92, 98,174,174, 37,217, 63,227,241, 50,180,148,210, 42,155, 32, 24, + 66,144,175,212,193, 84, 42,128,153, 92, 8,115,153,240,101, 4,171, 18,115,245,176, 42, 77,161, 86,155, 96,208,169,139,169,193, +128,174,193, 54,176, 53, 19,193,193, 66, 12,137,136, 15,157, 1, 80,105, 88,168, 52, 6,196,167, 43, 81,160, 20,163, 97,155, 1, + 30,214, 14,215,148,214,117,131,183,102,198,221, 24, 93,101,132,201, 96,192,206,253, 39, 61,146, 82,210,123, 29,222,177, 74,156, +158,167,195,189,184, 66,164,231,104, 64,137, 25,102,204,158, 45,158, 61,123, 78, 31, 82,156,245,220,171,158,117, 98,141,143,107, +250,227, 29,141, 66,187,125,219,173, 71,111, 69,228,245,227,136,190,115,246,171,194,180,154,245,191,114,117,117, 53,124,247,221, +119,230, 63,254,248,163,135,173,173,109, 66,122,122,122,108, 89,115,148,155, 95, 72,242,233,115, 23,173,218,132,182,230, 39,100, + 22,195, 90, 33,132,171,157, 12,183, 34,206,107, 24, 66, 78, 84,164, 87,218, 12, 56,208,185,253, 84,252, 22, 17,219,249, 97,150, + 56,252,147,145,195,227, 78, 31,189,158,181,110,199,217,229, 78, 38,186,187, 18, 54,125,253,173, 32, 15,251,233,227,135, 96,233, +186, 29,184,112,235,113,122, 17,227,184, 56, 69,173, 63, 61,119, 64,197,173, 29, 60, 6, 16,240, 9, 20, 82, 1,148, 69,121,121, + 15,206,124,239,245,150, 30,142, 62, 62,121,104, 7,147, 93,160, 67, 98,166,138, 36,103, 21, 64,207,178, 48,151,139,160,103,129, +220,236, 76,178,115,231, 14,220,184,113,133, 1,143,249, 4,192,188,234, 34, 88, 60,134,192, 68,194,135,137,180, 36, 10,100, 34, +229, 67,171,103,225, 89,207, 5,107, 22, 76, 48,181,177,181, 67,199,190,163,141,143,176,201, 45, 26,111,251, 97, 33,194,175,220, + 13, 59,255,116,119,176,173,127,227,117,206,126,253, 86, 48,150,142, 42,181,206,128,252,188, 28, 20,171, 19,208,212, 41, 19,150, +114, 3,226,242, 29,240, 32, 53,218,164,186,230,172,204,251,191,222,177,241,239, 51,123,223,145,115, 75, 59,117, 8,195,195,231, +249, 37,230, 74, 88, 98,174,248,132,197,170, 31, 55,232,114,242, 10,186,103, 62, 56,148, 89,139,250,121,166,244, 98, 92, 18, 41, +182,171,111,179,115,253,236,109, 35,167, 46,239,212,169,207,199,228,193,141,243, 51, 1,156, 53, 54,122,254,215,109,212,168,109, +149,153, 43, 91,247,160, 93, 91,182,238,238,239,231,233,130,180, 92, 29,146,115,180,184,116,235, 41, 14,110,152,153,155,155,246, +108, 48,180,133,133, 44,209,231,157, 58,121,228,196,167, 19,166,162, 65,131,198,117,243, 19,243, 77, 1,228,189,114, 51,228,145, + 13, 31,141, 24,211,223,206,214, 78,193,150, 70,176, 88, 74,225,237,237,135,174, 61,250, 34,252, 98, 4, 34, 31,222, 43,217,206, + 2,148, 82,228,230,100,165,234,117,154,173,149,166,143, 71,156,183,252,184,202,150, 33,128, 86,207, 66,163, 99, 49,125,198, 87, +154,207,231,172,111,217, 41,180,209, 67, 30,216,252, 23, 41,185,230, 55,158,164, 52, 36, 2, 83,135, 65,163,166, 9, 85, 90, 3, +242,149, 58,156,221,183,182,242,102,198,250,141, 67,220,124, 91,142, 24, 53,235, 71,177,152,199,104, 27,120,185,196,182,105,222, + 32,161,142,163,117,193,146,181, 59,155, 70,220,122,210,181,239,251,125, 36,253,235,251, 17, 71, 43,137, 98,204,184,241,141,236, + 61, 91,126,148, 26,125,121,123,165, 55, 63,190, 56,215,197,217,229,101, 83,162,173,127,239,123, 0, 94,191,243,199,167, 63, 56, +212, 8, 0,108,237,236,139,137, 64, 92, 80, 3, 3, 66, 1, 96,254,186,253, 93, 19, 51, 10, 63,248,102,241, 44,225,157,216, 34, +220,121,150, 7,145,144, 7,181,214,248,110,109, 6, 66, 39, 78, 27, 63, 92,144, 93,164,199,249,123, 25,120,112,243, 28,213,107, +243,135, 82,194, 31,102,227,223,251, 35, 2,184, 81,224, 57, 67,240,147,134,193,214,220,187,135,242,106, 27,193,178,245,235,219, +130,240,208,149,199, 23, 6, 3,172,143, 94,167,179,101,120,188,204,212,187,251,237,106,144,119, 40,211,163,177,124,201, 28,172, +217,120, 16,215,163,178, 97,166, 79,192,225,205,139, 49,121,233, 78, 40, 53,134,202,234,119, 85,126,196,134, 16,242, 59,165,180, + 59,128,246, 0, 68,229,222,131, 16,242,123,233,111,191,242,126,250,244,233, 51,151, 46, 93,250,176,108,223,178,237,101,251, 86, +181,189,220,247,173,102,204,152,225,191,108,217,178, 37, 33, 33, 33,123, 34, 34, 34, 98,141, 50, 88,229, 51, 65, 8,169,244, 44, +183,107,216,171, 41,192,240,236,173, 76,224, 81,207, 5,242,126,195,164,206,129,253,139,120, 60,134,217,186,102,166, 36, 75,197, + 7,159,199, 43, 50,190, 73,208,203, 95, 97,110,121,234,200,111,135,196,158,117, 44, 37,191, 94,203, 77,184,241, 76,249,178, 82, + 20,229,164, 8,237, 68, 89,130,110,221,251,240,111, 92,189, 54, 29,192,166,138, 11,132,113, 94,183,234,107, 91,133, 84, 0,134, + 0,249, 42, 61, 38, 78,154,246,198,119, 47, 10,202, 27, 55,105, 46, 24, 82,114,243, 41,204,203,198,226,213, 91, 10,251, 58,159, +187, 60,162,179,117,207, 69,155, 34, 15,159,122, 36,125,218,167, 79,187,188,184,184,184,106, 15, 52,161,134,196, 15, 62,254, 92, +200, 48, 37,205, 70,132, 16, 0,134,180,218,152, 43, 0,200,201,137,205,151,218, 55,234,179, 99,213,248,141,117,156,157, 44, 21, + 50, 9, 76,228, 98,226,227,237, 46,105,222, 44, 68,234,234,222, 64,120,241, 81, 33, 94,100,168,240, 44, 41, 31, 98, 27,127, 65, +255,176, 14,216,177,118, 90, 87, 99,242,127,238,202,131, 30,223,175,152, 37, 78,203,209,226, 81, 66, 1, 82,179,213, 72,205, 41, + 70,106,142, 26, 38, 18, 62, 66,218,191, 47,190,120,116,103,111,175,122,214,235,106,115,124,159,197,196, 30,140, 79, 74, 25,218, + 40,160, 41,118,110,219,210,156, 56, 59, 75,104, 98, 98,177,177,223,223,184,113, 99,118,147, 38, 77,172,191,249,230,155, 34,111, +111,239,198,222,222,222,245,162,162,162,194,235,215,175,223,227,135,181, 11,195, 63,159,181,194,149, 15,189, 89,243,208, 80,158, + 76, 68,112,245,226, 41,245,214,141, 63, 38,107,115, 11,167, 86,105,132,101,230,139,210, 10, 8,108, 28, 93, 30,200, 5,186,142, + 2,153, 54, 42,123,251,248, 29, 0,126,117,239, 50,225,204,249,155, 79,162, 2,111,197,217,158,187, 21,149,158,173,212,121,197, + 28,159, 84,229, 5,151, 71, 74, 35, 88,178, 63, 35,150,118,141,251, 61,165,132,216,148, 25, 27,130,146,136, 22, 41,121, 62, 72, + 78,188,245,139, 17, 29,163, 9,101, 89, 32, 42,177, 16, 5, 42, 61,138,117,122,184, 88,203,145,145,150,136, 31,214,109,197,237, +155, 55,208,177, 75, 79,124,247,243, 78,140,252,168, 95,181,199,149, 97, 8, 24,134,148, 70,174, 74,204,149,137,132, 15, 16, 32, +183, 72,135, 95, 47, 39,192,189, 30, 3, 82,131,214, 66,133,137, 20,121, 5,197, 96, 4, 38,120,124,105,187,236,248,185,235, 51, +230,173,216,244,101,126, 97,218,139,152,200, 43,240,182,200, 66, 61, 71, 13, 30,166,153,225,102,118, 93,120,187,215, 7, 35,188, + 97,148,118,230,195,134,203,127, 99, 14,116, 15, 14,240, 11,169, 99,107, 6,149,198, 80, 26,197,226, 99,235,150, 45,136,123,158, + 56, 34,243,225,161,219,111,195,201, 22,166, 61,203,144,216,121,126,122,255,234,217,216,222,131,199,193,222,169, 78, 99,227,187, + 39, 24,103,166, 88, 35, 12, 22, 33,132,177,172, 27,176,109,219,142,125,253,235,213,177,199,233,235,207,113, 59, 38, 7,166, 10, +115,240,228, 14,240,106, 51,204,252,254,137,181,239,171, 50, 11,183, 9,132,178, 79,154, 54, 15, 5,165, 20, 79, 30, 63,204,206, +203, 51,251,203,181, 89,153,252,248, 14, 0,211,242,219,100, 54,190,141, 21,102,150,119,138,181, 6, 36, 37, 37,226,143,136,240, + 38,165,251, 25,141, 88,200,224,212,173,116,104,245, 44,180, 58, 22, 77, 26,250, 20, 11,132,210, 86, 95,111, 60,218, 60, 53, 45, +157,145,153,152,177,102,214,245,133,230,186, 84,245,221,216, 60,161, 86,207,162,190, 67,213,207,229, 50,203,250, 75,190,152,244, +185, 47, 95, 36, 69,126,145, 90,147,146,152,100,255,211,238,243,133,143,158, 68, 58,185,213,173, 99,186,112,225, 60, 97,126, 49, + 69,122,174, 26,153, 5, 90,242,225,192, 17,142,219, 55,127, 55, 24,192,246, 26, 36,189,225,158,237, 63,234, 44, 77,132,164, 64, +169,163, 25,249,197,134,113,159, 78,108,248, 38,117,231, 21,115,245,172, 8,119, 98,115, 33, 22,242, 32, 22,242,160,211, 27,215, + 69,210,198,175,159,220,198,198,124,112,179, 0, 15,156,188,149, 1, 62,143, 64, 85,148,175,145,136, 77, 30,248,248,120, 50, 1, +141,253, 17,214,178, 5, 98, 98,227,188, 79,158, 62,183,250,250,141,219,139,109,252,251, 76,205,120,112,240,187,154,164, 53, 62, + 41, 67,158,166,119, 25, 96,107,111,237,223,179,103, 15,113, 29, 39, 59, 98,109,101, 14, 3,132, 24, 59,238, 51, 91,163, 91,141, + 40, 5, 5,176,108,193, 12,168, 53, 26,216,154,139, 64, 41,176,121,253,124,104, 52, 26, 56, 90, 73,144, 87,164,171,170,158, 87, +233, 71, 42, 50, 68,175, 27,173,178,255,203,246, 91,186,116,105,247,215, 12, 96,247, 74,140,225, 95,246, 43,251,254,178,101,203, +150,148,251, 92,105,116, 19, 97, 89,102, 42,203,148, 77,163, 62,161, 82,177,252,212,119, 75, 39, 50,185, 69, 90,136,133, 12,234, +215,115,195,248, 9,159,203,222, 11,176,133, 10,166, 56,176,123,107,190,222,160,251,221,152, 31, 53,177,247,245, 53, 49,181, 60, +179,123,207, 47, 2, 43, 75, 51,178,250,104, 70, 84,122,158,246,229, 20, 7,177,247,206,106,175,254,182,198,129, 80, 28, 23,203, +228,174, 90,173,186,210,194,101, 74, 11,116,243,169, 56,240, 24, 6,188,183, 52,179, 23,195, 48,134,159,215, 45,132,181,105, 73, +159,171,249,107,118, 20,244,176, 57,113,174,188,185, 10, 8, 8,200,107,220,184,113, 46,195, 84,255,163, 47,174,239,108, 81, 65, + 69,169,149,185,122,217, 79, 36,245,222, 13,188, 54, 19, 63, 33,129, 2,107,183,125,147, 7, 12, 26, 60,195,174, 65, 15,197,243, +148, 60,136, 24, 29,130,125, 29, 16,126,242, 87, 54, 33,246,209, 24, 99,180,211,179,242, 92,172,173,172,112,251, 89, 33,146,179, +138,145,146, 93, 98,174, 82,179,139,145,175,210, 35,192,205, 22, 69, 42,181, 75,173, 13, 44,161,135, 78,158, 56, 57,180, 75,175, +254, 24,255,229,188, 46, 27,191, 95,121, 79,106,231,251,145, 42,237,209,117, 99,190,191,111,223, 62, 67,221,186,117, 99, 51, 51, + 51,131,167, 78,157, 90,224,230,230,102,191,112,225,194, 81,245,235,215,119,124,175,109,219,188, 27,231,155,111,251,252,203,121, +109,103,126,190,177, 30,195, 48,105,148,165,191, 37, 23,233,230,210,140, 72, 85,149,229,116,120,198, 99,226, 55,127,232,123,173, +172,126,179,146, 50,126, 2,162, 30, 72,252,230,239,165,145,115,181, 49,199,215, 21, 52,252,112,213,248,164, 92,118, 86, 49, 99, +191,184, 58,115, 85, 18,193, 34,208,104, 89,152, 74, 5,101, 35, 71, 1, 10,135,239,215,175,148,217,152,137,193,231, 17, 8,120, + 12,242,148, 58,100,229,107,240,229,212,169,198, 30, 65,214,192,178, 80,170, 13, 80,105,244, 32, 32, 40,200,207,196,140, 47,191, + 64,151, 30,125, 49, 98,204, 36,228,170,128,155,177, 5,208,234,116,213,218, 34, 30, 1,148,106, 61, 70,116,114, 69, 86,129, 22, + 69,197,122,104,180, 44,100, 18, 62,248,124, 6,114, 49, 31, 10,169, 0,132, 80,161,131,131,195, 40, 0, 16, 8, 4,197, 47, 94, +188,216, 81,121,243, 60, 69, 93, 23, 59,168,180, 12,154,246, 95,129,246, 33, 94,184,115,122, 19,255,226,181,251,245,190,156,183, + 26,227, 6,134, 96,255, 19,119, 88,218,214,133,137, 76, 2, 29,101, 0, 24, 55, 5, 8,165,115, 89, 7,159,190, 3,127,252,121, +243,147, 5, 95, 77,147,228, 20, 17,136,133,124,156, 59,119, 6, 87,174,221, 92,155,241,240,208,142,183,217,151, 66, 64, 25, 59, + 83, 51, 83, 72, 68, 60,104,181,106,163, 59,124, 27, 88, 10, 80,248,218, 54,236,253,107,105,217,251,178, 21,108,171, 46,130, 69, + 8, 33,102,142,254, 91,126,220,184,115,176,131,189, 45, 14,158,189,135,109, 27,191,133,147,127, 23, 60,189,245, 35, 92, 2,123, +195,164, 94, 59,136, 20,251, 70, 49, 60,126,195,113,159,207,232, 27, 24, 20,130,136, 75,231,145,158,154,242, 35,165,143,141,234, +131,198, 19,144, 9,109,219,119,135, 90,107, 64,171,118,221,113,226,200,193,241, 40, 29, 60, 81, 91,120, 60,134,253,108,228, 0, + 65,122,174, 70,144,158,167, 70, 82,166, 10,177,169, 69, 56,252,203, 38,163,155,164, 8,143, 9,110,211,216, 89, 48,106,249,185, + 4, 23,103, 7,181, 64,173,146, 70,197,196,248,124, 50,116,176,192,205,195,155,201,200, 85, 35, 35, 79,131,140, 60, 13,138,138, +117,112,119,172,195,168,245,252,144,154,166,213,214, 76, 34,248,238,247, 88,152,202,248,104,225,107, 85,235, 78,216, 44,203,254, +105,174, 22,149, 68,174,238,198,230, 65, 34,228, 65, 36,224, 65, 44,100,160, 51, 80, 35,239, 69,250, 1,163,135,126, 40,213,232, + 40, 50,243, 53,224, 49, 4,246,214, 86, 98, 23, 7, 47,108, 94,241, 25, 0, 96,228,180,239,241,201,240, 33,240,246,242, 64, 94, + 94,129,244,147,177,159,175, 66, 5,253,238, 42,139,180,237, 60,124,209,239,230,131,248,201, 31, 15,253, 72,208,191,103,107,230, +246,179,124,164,100,171,241,236,169, 18, 26, 93,205,102,163,209, 27, 74,218,124,183,236,253, 29, 50, 33, 15, 25,121, 37,167,203, +162,245,123, 97, 34,229, 35, 53, 71, 3,150,101,171, 74, 79,149,126,164,178,168, 83, 77, 40,111,194,170,218, 78, 8,249,125,250, +244,233, 51, 1,208,233,211,167,207, 44,123,191,116,233, 82, 21,128,100,163, 12, 86, 89,166, 42,116,207,141,250,132, 74, 69,146, + 83,219,215,207,148,158,141,162, 88,123,234, 22,186, 54,119,128,144, 79, 32, 49,177,199,157,216, 92,156, 61,123,184,224,210,149, +107,197,132,209, 85, 59, 44,202,196,193,195, 91, 42,183, 12,255,225,231, 45,196,210,210,146,110, 57,155, 17,159, 85,100,120,101, +254,168,171, 71,214, 57, 66,107,104,157,151,241, 56,198, 8,183, 44, 92,250,195,111,160,148, 2,172, 1, 44, 88,240,132, 98,185, +107,179, 33,105, 32,128,193,192, 74,248, 60,166,248,101, 59, 72,201,173, 41, 49,254,218,174, 42,155, 14, 9, 0, 83,153, 0,191, + 92, 72, 68, 94,118,114,102, 15,155, 19,127,148,153,171, 19, 15,197, 79, 3, 3, 3,242,154, 53,107,150, 43, 22,139,193,227,241, +106, 83,192,111,100,174, 42,175,156,183,116, 0,150, 57,250,180,238,217, 69,238,223, 76, 68, 4, 8,244,113, 64,248,169,131,236, +149,227,155,250, 40,211,162,142, 26, 27,226, 45, 44,214, 35, 57, 91,133,164, 76, 21, 82,114, 74, 35, 88,217,106, 16, 2, 20,107, +222,108,250, 26,101, 90,212, 17, 19,167, 6, 63,170,117, 24,211,170, 99,111, 76,158,247,173,199,142, 31,151, 95,146,219,122, 6, + 23,165, 71,223, 55, 70, 35, 46, 46, 78,109,103,103,119,187,160,160,160,195,170, 85,171, 10,125,125,125, 69, 82,169, 52, 11,128, + 36,250,201, 19,225,185, 99,251,158,103, 36, 39,143,214,106,181, 55,140, 77, 87,221,176, 97, 98, 31,211,236, 81,174,178, 22,157, +234,219,203,224, 42, 43,234,228, 99,114,247, 27,219,247, 38, 46, 73, 63,187, 38, 61, 69,173, 63,157,173, 68,227,164, 66,193, 25, +163, 46, 54, 90, 77,252,160,209,211,193, 99, 8,180,106,205,203, 62, 25, 54,102, 98,204,219,241, 8, 10,169, 0, 38, 82, 1, 20, + 82, 62, 66,125,173, 80,131, 0, 17,213,233, 41, 84, 26, 61, 84,106, 3, 84,106, 61,172,235,152,227,231,237,251,241, 34, 67,133, +223,110,100,226,113, 92, 62,188, 92,228,160,180,250,184, 19, 75, 13, 69, 31,142,154,165,224, 49, 12,120, 4,140,143, 71, 93,100, + 23,106, 32,228, 51, 16,137, 68,144, 73,248, 48,149, 9, 32,224, 11,112,253,222, 61,168,213,106, 52,107,214, 76, 82, 93,131,131, +194, 68, 10,207,122,142,208,234,244, 56,118, 49, 18,139, 38,246, 65,135,214, 65,248,146, 39,194, 99,117, 0, 20,150, 10,176,132, + 7,173,158,133, 90,103, 0, 64, 84, 85,156, 51, 45, 74,251, 69, 20, 83, 74,175,166, 60,254,245,133,109,131,222,163,142,159, 58, +183,163, 71,215,142,184,125,247, 33, 14, 28,252,237, 82,166, 85,222,148,114,223,105,136,210, 81,112,148,210,135,181,188, 24, 19, +185,157,207,196,144,208, 48, 20,230,164, 35, 45,225,185,209, 23,117,191, 58, 10,124, 49,113,188,167,183,183,183,167,129,165, 96, + 89, 10, 63, 87, 5, 70,143, 29,235,233,238,225,229,201,150,142, 34,244,113, 81, 84, 29,241,183,243, 30,183,120,213, 15, 31,185, +184,184,224,196,229, 71, 88, 58,107,204,109,153,204,196, 45,200, 82, 97,206,122, 55, 70,236,131,211,176,172,155, 11, 83, 59, 79, +231,158, 29,134, 58,119,233,214, 27,247,239,222,194,154,111, 22, 94, 41,226, 73,151, 24,245,224,107, 87,223, 38, 32,184,245, 32, + 83, 75, 59,228,228, 21,194,196,194, 22,190,141,130, 6,153,216,213,159, 86,152,246, 44,163,182,231, 58, 75, 41,212, 90, 22,217, +133, 90, 36,102,168,240, 60, 77,137,231,169, 74,176,236,159, 77,193,213,213, 80, 2, 66,228, 98, 62,223, 82,247,180,206,189, 51, +231,168,171,139, 29, 89,190,112, 42, 79, 75,197, 72,207,211, 32, 35, 95,131,140, 60, 53, 50,242, 75, 12,150,133, 9, 31, 44,101, +107, 60, 58, 35,187, 80, 11,133,148, 15, 51,185, 16, 6, 67,237,251,124,207, 91,189,187, 69, 98, 70,225,123,223, 44,154, 37,188, +243,188, 8,247, 98,243, 32, 22, 50, 37,209,171, 82,131,101,108,179, 48,143,207,140,239,214,190, 25, 18, 50,138,193,231, 49,224, +243, 24,120, 52,104, 2,107, 25,139,247,250, 79, 7, 0,244,232, 90, 50, 13, 73,108, 74, 17,142, 92, 77, 1, 0,161,177,105, 77, +207,204,151, 28, 60,125,251,243,221, 63, 47, 23, 21, 27, 4,248,225,104, 28,138, 53, 6,136,133,165,205,238,162,154,221,223,244, +134,146, 8, 86, 66,134, 22, 69,106, 3,242,149, 90, 80, 10, 92,127, 90, 0,165,218,128, 60,165, 22,205,189, 45,171,187,255,144, +106, 62,239,254,102,247, 73,218, 29, 37,125,181,108,140,141, 96, 45, 93,186,244,225,210,165, 75, 43,140,136, 85,107,176, 42, 53, + 87, 66,201,169,109,235,102, 74,207, 60,161, 8,191,151,133, 15, 90, 57, 35, 43, 61, 17, 27,191, 95,203, 82, 10,136, 37,162, 84, +131,158, 61, 94,204,234,167,230,222, 61, 82,101,187,175,194,209,203, 83, 34,181,188,176,116,213,143,172,149,181, 61,246, 70,228, +164,228, 42, 13,186,215,111,236, 84,207, 10, 11,140, 48, 87,165, 77, 27,218,121,227,251,128,165, 20,115,215,238,197,210,201, 3, + 96, 34,225,203, 8, 33,178,162, 98, 61, 38, 46,220,132, 85,179,135, 43,100, 98,126,169, 49, 48, 96,204,248, 47,141, 42, 4,149, +218,128,162,156,212,172,134,133,171, 95, 51, 87,129,121,193,193,193,185, 22, 22, 22,144,203,229, 53, 54, 88, 21,153, 43,123,123, +123, 71,153, 76,102,233,233,233, 89,250,212,199,131,193, 96, 40,138,142,142,174,213,164,111,249,185,153,135,146,159, 63,104, 22, + 26,214, 13, 23, 78, 29, 98,175, 28,219,216,167, 38, 67,204,205,205, 76, 19,110, 69,198,251, 2, 38, 72,202, 42, 70,106, 78, 49, + 82,178,213,208,234, 89,184,218,201,144,152,240, 2,114,169, 56,193, 88, 61,153,189,103,103,134,242, 70,179, 4, 63, 43, 83, 31, + 31, 3,128,194,164,135, 99,101,182, 94,247, 31, 62,188,187,166,251,128,241,162, 14,239,143, 21,110, 88,246,233,116, 0, 3,140, +213, 77, 75, 75, 83,218,218,218, 94,113,116,116,236, 62,119,238, 92, 53, 0,145, 90,173,150, 13, 31, 62, 92, 22, 31, 31,255, 5, +165,212,168, 52,182, 26,190,197,154, 72,104,231,250,222,129, 3, 93,101, 69, 29,219,181, 14, 65, 11,127, 23, 36,182, 14, 1,128, + 9,241, 74, 19,175,150, 99, 54,254, 82,207,198,226,248, 15, 91,143, 45, 29,217,191,221, 23,142, 61,230,175, 74, 62, 50,183,202, +136,216,147,139,155, 58, 85,228,222, 5,165, 29,223,203, 27, 44,189,129,214,164, 9,142,234, 12, 44,148,106, 61,148,106, 61, 10, +139,117, 56,123, 39, 29,105,185, 26,228, 20,105, 81,172, 54,128, 2,208,234,104,217,172, 34, 85,155,213,136,173,230,101,255, 59, + 7, 14,200, 91,187, 96,188,233,129,203,137,144,139, 75,250, 99,153,201, 69, 48,149, 9, 0, 80,132,135,135,163,108,120,124,117, + 79,241, 7, 78, 92,199,170,173,231,112, 98,211, 84, 72, 68, 60, 52,238,189, 0, 67,123, 55, 3,203, 82,196, 60,121,144,230,233, + 27, 96,199,152,200,192, 48, 40,235,147, 82,213,241,180,162,148,254, 70, 8,233, 78, 8,233, 86, 98,225,144,115,200,144, 85,116, +238,232,110,121,145, 74,173,207,137,127,244, 45,138, 50,219,148, 52,193,131, 45,125, 64, 15, 39,132,180,174,165,185, 98,164,182, + 94,107, 63, 25, 59,241, 3,119,247,250,216,187,107, 51, 40, 37, 7,140,253,254,142, 35, 87,176,122,205,171, 35, 6, 71,143, 29, +235,185,225,135, 31, 94,217,246,209,240, 81,158, 85, 25, 60,103,255,118, 83,189,125,252,112,245, 97, 34,150,127, 53,238,118,113, +122,236, 64,141,137,213,104,109, 81,202, 36, 63,255, 0,216,219, 89, 33, 53, 37, 13,109,123,117, 64,151, 78,157,112,255,238, 45, + 44,154,243,229, 21, 40, 53, 29,171,139,218,254,105,132, 4, 99,194, 58,245, 22, 40,213, 90,172, 95, 62, 7,163,167, 44, 70,243, +182, 61, 4, 15,238, 92, 27, 3, 96,129,177,121,214,232, 88,180,109,100, 3,141,206, 0,173,142,197,111,177, 60,254, 95,243, 4, +240,121, 12, 19, 80,191,164,121, 55, 95,165,171,250, 58,207, 39,169, 57,249, 5,117,191, 93,252, 57,175, 72,109, 64, 70,158, 26, +233,185, 26,100,228,171,145,153,167, 46, 49, 87,121, 26,100,230,169,193,231, 17, 68,199, 38,129,199, 35, 53,238,127,151, 91,164, + 69, 83, 47, 11, 0, 4, 76, 45,155, 67, 50,245, 54, 93,238, 70, 37,190,183,124,225, 44,225,157,216, 66,220,123,158, 95,106,172, + 24,136,202, 25, 44,214,136, 46, 88,182,126, 61, 91,124, 52,160, 87, 3, 83,185, 4, 73, 79, 10,192,103, 8,248, 60, 2, 83, 27, + 23,152, 73,138, 49,126,220,104, 88, 89,154,225, 69,102, 49,214, 30,140,194,189,200,167, 96, 85, 53,203,246,247, 59, 79,244,249, +104,112,127, 49, 35,144, 96,199,169, 88,136,132, 60,240,161, 65,228,181,139,234,180,196,231,218,130,252, 92, 57,159, 47, 48, 74, +148, 0, 84,111, 96, 65, 41,197,146,249, 51,176,103,235,247, 56,113, 51, 13, 20, 37, 83, 53,252,241,235, 74, 76,156,190, 8, 25, +249, 26, 0,228, 77, 70, 45, 30, 5,208,237,117, 35,244,186, 73, 42, 23,129,170,136, 27,229, 53,202,246,175,204,192,149,239,147, + 5,192,168, 72, 59,255,117,167, 88,246,222,166, 81,159, 80,137, 72,116,106,235,218, 25,210,179, 81,120,105,174, 84,133,153,216, +190,105, 67, 33, 5,219, 62,237,193,225,235,198, 30, 13, 83, 27, 31,119,177,194,244,242,212,249,171,116,214,246,117, 12,199,238, +228,231, 20, 20, 27,244, 21,100, 2,166,182,206,122, 43,183,166, 51,179,227,164,203, 95, 31,245, 86, 81,145,178,148,226,200,181, + 84,128, 45, 41,196,189, 23,147, 74,230,241,225, 17, 24,216,146,118,238,211,183,211, 95,110, 51,238,194, 10,252,114,234,118,102, +101,230,202,220,220, 28,230,230,230, 48, 49, 49,169,233, 5,187,194,200,149, 76, 38,179, 60,121,242,164,196,212,212, 20, 60, 30, + 15,106,181, 26, 29, 58,116,168, 85,205,147,219,121, 15,104,254, 94,223,165, 45,219,118,195,249,147,191,178, 87,142,109,233,171, + 76,175,193,252, 61, 0,186,180,110,116,100,249,202,245,245,166, 76,159, 37,150, 75,248,200, 41,212,130,199, 16,184,218, 74, 97, +101,194, 67,196,217, 35,197, 33, 94, 86, 70,155, 63, 23,231,186,219, 87,174,253,209,106,213,215,243, 59, 90, 88,212,179,203,201, +137,205, 7, 0,101,122,212,143, 38,246,222, 79,156,235,156,186,208,184,117, 31,216, 58,121,116,173,105,126,211,211,211,211,253, +253,253, 31,249,249,249, 5,245,237,219,151, 46, 89,178,196, 34, 49, 49,113,159,177,230, 10, 0,218,117,106, 49, 81, 46,208,133, + 88, 73, 25,191,250,246, 50,180,240, 47,105,253,236,223,173, 37,156, 93,234,224, 89,170, 50, 32, 75,197, 10,139,116,130,250, 63, +252,184,249,134,171, 37,127,164,190, 80, 21, 9,224,112,141,111,218, 40,189, 72,202, 74,205,149,132, 15, 19,169, 0, 44, 45,249, +204,248, 8, 22, 11,141,150,133, 82,163,135, 82,109, 40, 49, 91, 26, 3, 88,182,164,179, 50, 33, 4, 90,157,161, 44, 32, 91,147, + 4,194,212,194, 26,245,234,150,164,241,229, 75, 42, 0, 33,128,141,141, 13,172,172,170,159,119,148,101, 89,104,180,250,210,155, +174,225,229,160, 14,141, 86, 15, 74, 41,162,162,162,167,198,197,198,245,242,240,116,111,237,215, 40,192, 82, 42, 98, 0,160,184, +154, 96,210, 64, 0, 58, 74,233,203, 65, 17,117, 27,180, 44, 62,248,235, 1,121,247, 30, 61,114, 52,133, 25,251,203,237,204, 3, +208,185,212,140,169,106,120,158, 18,185,141, 87,111, 23,159, 22,139,135, 12, 27,237,213,182,125, 39,132,159, 61,141,223,126,221, +189,173, 40,253,201, 41, 99,117,188,189,189,255, 50,138,208,221,195,235, 47,163, 8,235,214,243,172,212, 96,153,153, 53, 50,109, + 20, 28,230, 18,159,169,197,241,227,199, 80,148,151,250,149, 70, 83,168,132,128,110, 60,243,235, 79, 35, 6,142,153,107,218, 60, + 56, 8,230, 10, 25,172, 45, 76,112,235,230, 21,124,189, 96,214, 21, 40, 53, 29, 51, 50, 34,141,234, 23, 75,252,252,132, 30,117, +234,126,238, 90,191, 1,110, 93,187,140,152,168, 7, 15,239,220,184,210,192,195,191, 25,108, 28, 93, 63, 39,126,126,203,104,100, +100,181, 43, 85, 80, 3, 77,252,120,212,164,210,123, 73,201,182,230,141,235,137,254, 90, 9, 9,244, 58,173, 97,199,134,175,211, +203,143, 34,172, 76,183,184, 32,119,255,165,107,247,191,236,217,169, 21, 41,107, 10, 44, 51, 85,175,191,247,112,146, 35,230,254, + 99, 86, 87,148,119,160,102,103, 38, 77, 27, 59,110,130,180, 36,237, 44,104,201,196,106,170,154,158,223,197, 6,225,160, 31,230, +207, 36,119,227,138,112,255,121,126, 73,179, 96,169,193, 18, 11,121, 16,149,254, 53,106,106, 50,134, 89,254, 81,191, 78,200,204, +211,128,165,180,116, 46, 61, 2, 62, 95,128,248,124, 32, 33,191, 16, 25,185,105,136,125, 30,135,188,212, 88, 48, 12, 15, 86, 78, + 30, 80,190, 48, 46,173, 5, 6, 19, 47, 29, 11,247,126,221, 91,241, 14, 69,164, 64, 42,230,163, 32, 51, 1,151, 79,238, 85, 81, +131,225, 71,141, 78,179,199,150,138, 30, 68,222,223,167, 53,242,210,145,145, 95,164,177, 19, 11,121,216,187,229, 91,124, 56,116, +236,203,104, 54, 0,124, 57,107, 33, 8, 33,200,201, 43, 4, 64, 50,170,139, 92,189,246, 62,163, 92,228,233, 47,239,203,153,162, +138,222,147,210,247,154, 74, 52, 52,175,153, 42,205,107,219, 53,175,233, 25, 53, 57,114,165, 17, 44, 1,195, 59,189,101,205, 76, +201,195,116, 49,174, 63, 78,197, 7,173,156,161,204,207,196,134,239, 86, 23, 22,235,180, 93, 50,238, 27,111,174, 0,192,192,160, +107,239,143, 39,223,119,117,115,215, 93,136, 44, 72,200, 83,234, 42, 45,176,230,125,166, 75,111, 29,253,118,128, 94,247,116,154, +169,147, 63,171,215,107, 87, 40,211,162, 22, 87,124, 17,167,162,185,107,247,150,152, 43,150,197,180,175,183,131,178,134,210, 9, +252, 12,160, 6, 22,159,125,245, 61,244,165,255, 27, 88, 3,136,206, 32,171, 54, 92, 46, 17,158,106, 88,184,218,236,117,115,213, +164, 73,147, 92,115,115,115, 88, 89, 89,193,194,194, 2,101,134,232, 77,155, 5, 61, 61, 61, 97, 98, 98,130,240,240,112,152,152, +152, 64, 46,175,221, 4,249, 38,118, 62, 31, 54,107,215,103,103,219, 30,195,153, 51, 7, 55, 24,174,133,255,254,129, 42,253,177, +209, 38,192, 96, 48, 16,157, 78,135, 78, 97,129,241,119,158,188, 56,177,112,254,252,206,193,237,222, 23,183,240,182,133, 74,163, + 71, 98, 66, 2, 34,206, 29, 46,182, 53, 19,156,240,170,103,157,104, 48, 24, 96, 48, 24,170,189,129,171,213,154, 44, 70, 32,177, +234, 63, 96,144,248,198,245,235, 59,229,118,222,187, 25, 30,123,151, 26,120,141, 0,250, 97,163,134,190,208,234, 89,168,148,249, +217,181,201,247,195,135, 15,111,172, 92,185,210, 91, 32, 16, 56,239,223,191, 63, 51, 39, 39,167, 70,203, 5,157, 62,122,125, 45, +223, 68, 23, 45,164,197, 3, 93,101, 69, 29, 19, 90,133, 96, 64,247,150,216,115,244, 50,206, 95,188,130,120,165,201,157, 34, 13, +239, 80, 98, 98,178,218,207, 34,239,215,222,161,110,188, 3,219,243, 15,216,182,157,214,143, 82,233,233,140,240,185, 69,198,223, +188,129,124,149,174, 92, 4,171,164,127, 19,195, 16,163, 35, 88, 4,136,189, 24,113,203, 63,208,203, 23,119,158,229, 35, 35, 71, + 13,165,166,164,222, 83, 80, 88,153, 10, 33, 22,242, 16,255, 60, 22, 44,213, 62,175,217,125, 6, 25, 93, 62, 24,205, 47,125,124, +225, 11, 4,124,208,210, 27,164, 84, 34, 42,180,181,181, 53,202, 96,233, 12, 6,244,237,212, 12,205,131, 27,161,215,152,149, 0, +128,179,219,166,193,194, 68,136,253,251,247,227,197,229,213, 59,234,183, 24,123,234,193,253,200,247, 31,222,142, 24,212, 37, 80, + 26, 96,207, 79, 17, 86, 17,214, 63, 76, 8, 17, 1,104, 75, 8,233, 0, 32,156, 82,170, 51,232,217, 23,157, 59,119, 98, 13, 6, + 54,185,220,185,102, 1, 32, 4, 64, 54,128, 91,148,210, 42, 67, 36,114, 91,159,246, 96,176, 27,132, 72, 76,164,178,248,144,246, + 3, 28,131,155, 55, 51,235,221,183, 31, 68, 66, 17,206,156, 62,137,117,171,151,237, 45, 76,121, 52,188, 70,205, 99, 70,118,104, +175,170,185, 40, 47,207,172, 40, 42,242, 78, 78,108,154,198,130,111,238, 9,129, 88, 49,154,152, 57,174,229,137, 77,230, 58, 53, + 31,106,122,246,242,117, 60,188, 19, 1, 71,107, 41, 98, 99,158, 42, 31,220,189,253,189,146, 8,230,211,140, 72,165,177,233,148, +101, 25,222,111, 62,164,179, 69,177,214,128, 75,231,142, 22,179,122,182,243,213, 11,199, 98, 92,188,130, 37,254,193,239, 89,100, + 30,222,216, 23,192,158,234,116,158, 95,219,241,151,174, 23,245,155,125,152,124,236,244, 69, 19,199, 58, 30, 60, 16, 6,106, 85, + 17, 50,226, 31,232,139,243,211,148,105,247, 15, 57, 26,147,190,120,125,210, 87,115,150,253, 56, 46,176,113, 3, 57,165,162, 87, + 34, 86,101,255,103, 21,104, 74,250,204, 22,229,226,217,253,203,197, 25, 79,243,102, 84,125,173,211,201,178,178,178, 95, 14,205, +151, 22,154,215,205, 51,203, 19,151,157, 96,224, 1,102,121,230, 47, 35, 21, 89, 89,217, 34,131, 65, 39, 51,230,244, 52, 87, 72, +112,255,121,242,203, 14,237, 98, 33, 83,218,247,234,207, 72,150,145,231,121, 32, 95, 36, 71, 82, 86, 49, 24, 74,193,178,122,232, +117, 26, 20,230,231, 35, 57, 41, 21,105,105,233, 40, 44,200,131,212,196, 28,254, 1, 65, 80, 40, 20,120,116,243, 60, 0,114,196, + 40, 51,200, 10, 61,131,131,130, 4, 15,227, 10,160,213,177, 16, 64,139, 75, 39,126, 41,214,235, 52, 61,210,238, 31, 58, 87,211, +235,176,158,165,103, 30, 60,137,111,224, 98,237, 64,110, 63,203,197,246,159,214,151,140, 38,213,151, 68, 51, 31,190, 40, 66,114, + 86, 17,146, 18,226, 41, 88,195,153, 26,202,223,168,230,125,109,120, 27, 26, 53, 55, 88,122,189, 94, 82,199,181, 46, 6,140, 30, +130,239,191,255, 1, 81,207,226,241,211,119,107, 74,204,213,189,131,127, 24,105, 40, 94,174,182, 93,148,246,120,205,176, 31, 99, +211, 78, 62, 84, 50,106,109,213,195, 39,132, 22,142, 8,249,104,233,203,131,191,243,179,122,123, 43,210, 4, 0, 30, 67, 52,165, +205,130, 32,132,160,172, 89,240,251, 5, 35, 33, 19,243, 64, 8,129, 82,173,199, 71, 95,172,194,182, 85, 37, 79, 86,159,140,155, +172,172, 44,157,229,140, 16, 25,214,185, 94,207, 69,155, 34, 15, 95,142,179,122,214,173, 91,155,188,128,128,128, 92,169, 84, 10, +185, 92, 14, 83, 83, 83,152,154,154,194,220,220,188,218,188,151,190,183,171,174,207, 21,195, 48, 48, 53, 53,133, 84, 42,173,208, +184, 85,183,122,185,137,189, 87,191,166,109,251,236,110,215,115, 4,115,230,224, 79,236,205,240, 35,253, 84,233, 79, 14, 25, 91, + 70,165, 81,135,187,125,251,246,109, 56,122,244,104,225,204,113,125, 79,158, 12,191, 21,245,235,233, 3, 61,178,115, 11, 92, 12, + 6, 3,228, 82,113, 66,176,135,197, 17, 63,119,219,248, 7, 15, 30,176,225,225,225,106, 0,247,171, 75,103,102,102,250,150,179, +103,207,125,221,186, 77, 24,126,218,186,187, 91,100,228,163,110, 49, 79,163,225,226, 90, 31,110,245, 61,161, 36,230, 56,123,225, + 18, 10,178,211,182, 24,147,206,242, 52,108,216,208,169,113,227,198,206,185,185,185,197, 95,125,245,149,183,193, 96,248,205,223, +223, 63,168, 65,131, 6, 41, 15, 31, 62, 76, 52, 38,239, 17,219,135,100, 0,216, 94, 55,108,216,190,100,109,238,231, 0,150,185, +212,169,131,243, 23,175,224,234, 31,215,126,200,148,213,153, 63,108,208,199, 35,235, 90, 9, 70,246,106, 81,151,103,107, 33,195, +174,159, 86,242, 14, 71,196,173,142,203,210,253, 12, 96,145, 49,101, 84, 70,118,129, 22,161,126, 86,208,235, 41, 12,148,130, 33, + 4, 10, 41,191, 66,131, 85,145, 38, 95, 35, 30, 62,118,204,232, 24,255, 70, 1, 19, 7, 13, 29, 45, 12,112,175,131,235,209, 57, + 0, 8,172, 76,101, 72, 78, 78,193,165,223,126,214,231, 36, 61,254,129,199, 99, 23,212,228,120, 38,222,218,227, 81,246,191,131, +131,195,168, 59, 15, 30, 32, 60, 60, 28, 86, 86, 86, 40, 51, 87, 21, 53, 17,190,174,153,147, 83,240,199,194,149, 63,135,142, 28, +220, 11,221,195, 26,224,194,141, 24,104,116, 44,180,122,246,101, 39,215,216, 43, 63,138, 62,239, 95, 95, 51,174,175, 87,190, 82, + 39,138,155, 27,151,127,161,252, 36,178,175,107, 82, 74, 53,132,144,147, 0,154, 1,232, 69, 8, 57, 69, 41, 13, 42, 31,121, 2, +208, 16, 64, 3, 0, 87, 40,165,177, 70,229,157,193,174, 91, 55,110, 90,105,245, 44, 46, 93,187,235,219, 46, 52, 0,148,165,184, +113,227, 38, 54,110,222, 88,124,255,222,157, 21, 69,105,246, 11, 42,155,220,182,178,227,105,236, 40,194,138,182,149,105, 82, 26, +174, 55,177,243,249, 33,226,242,133, 89, 98,199, 32,248,116,157,217, 51,233,238,111, 61,237,253, 58,193,218, 61, 20,201,119, 15, +225,246, 31,187,142,221,212,235,167, 75, 88, 38,190, 40,227,113,145,177,231,123, 25, 98,137,108,124,131, 38,109,144,240, 34, 14, +207,163, 31,108, 83,101, 69, 39,155,216,251,108, 75, 74,140, 31,227,230, 23,138,203, 39,247, 76,168,204, 96, 85, 87,231,173, 69, +121, 63,132, 95,142, 24,144,180,239, 55,187,130, 66,149,148,207,103,148, 98, 30,210,132,202,152, 95,140, 77, 39,141,140,212,218, +186,183,232, 59,104,244,236,163,171,191,254, 74, 96,107, 46, 70,106, 78, 49,242,149, 58,228,171,116,224, 17,192,195,209, 4,170, +162,124, 92, 61,182, 93, 71,181,217,125, 75,251,163, 86,168,105,211,160,215, 34, 66,240,217,236,217, 51,192, 19,153, 58,214,123, +111,166,150,169,103, 15, 11,188, 54,153,185, 37, 80,239,189,153, 80, 23,164,245,152, 61,123,134, 55,165,244, 61,155, 6,189, 10, +202,214, 34,172, 44,239, 89, 5, 90, 12,110,235, 2,141,174,100,254, 48,131,161,164,175, 29, 91, 58,171, 57,170,136, 43,151,215, +164,128,112,239,209, 43, 72, 74,203,129, 74,173,131, 70,171,135, 70,111, 0,195,240, 96, 97, 97, 1,143,122, 77, 96,110,102,138, +244,204, 44,220,184,114, 25, 87,163,238,196, 82, 96, 81,166,101,222, 78, 99,202,136,240,229, 30,118,182,214, 36,173, 64, 3,137, +152,135,171,225, 23,116, 0,182, 24, 99,174, 42,210,204, 83,230,174,154,190,112,237,192,239, 87,206,181,111,228,102,138,132,204, + 98, 36,102,168, 80, 80,172, 7, 64,161, 55, 80,104,138,243,240,228,198,137, 84, 61,148,171,240,142, 83,121, 4, 75, 32, 80,223, +184, 23, 37,158, 62,239, 27, 60,122, 26,139,141, 63,172, 47, 82,215,192, 92, 85,196,150, 49,245,126,249, 59, 50, 81, 81,179, 32, + 75, 41,142, 92, 77,125,185,236, 71, 89, 83,225,173,167,185,213, 85, 26,193, 55,227, 3,166,150, 25,161,117, 7,147,174,138,197, +153,236,139, 23, 47,114,118,238,220,249,210,244,240,120, 60,148,141, 30,212,104, 52,213,142, 42,178, 48, 21, 53, 24,210,165,110, +255,202,204, 21,143,199, 3,203,178, 47,163, 87, 53,109,122,148,219,122,119,104,218,174,207,158,118,189, 62, 97,206, 30,250,153, +189, 25,254,219, 7,133,233, 79, 14,214,244, 88,230,228,228, 60, 36,132, 68,175, 88,177, 34, 96,227,198,141,245,166, 76,153,242, +236,231,165, 99,214, 1,192,201,147, 39, 1, 0, 49, 49, 49,116,253,250,125,106,173, 86, 27, 91, 88, 88,120,203,152, 69,174,149, +105, 79, 86,108,249,126,185,119, 66, 82,202, 80,247, 6,205, 96,237,214, 20,246,238,205,144, 93,168,197,181,167, 73,120, 22,121, + 22,143, 34,246,255,162,202,176, 91, 82,147,244, 6, 4, 4,212, 17, 8, 4, 61, 40,165, 94,114,185,220,141, 82, 42,226,243,249, +253, 8, 33,209,122,189, 62,210,207,207,239,108,100,100,164,209,107,134,197,133,111, 81,215, 13, 27,182, 54, 94, 41, 15,123,150, +170,108, 18,175,148,223, 86,138,205, 38,165,159, 93,163,182,235,184, 98, 53,116, 89, 15,247,111,203,251,117,215, 79, 43,121,131, + 71, 77, 54, 60,200, 54,253,156,111, 34, 61,189,108,152,209, 35,247,193, 16,146, 50,101,202,151,127, 78,211, 64, 74, 26, 6, 75, +167,108, 72, 54, 70,163,116, 61,197,105, 82,199, 6,223, 62,152, 56,102, 97,195,224,208, 33,109, 58,247,103, 76,132,114,156, 62, +248, 35,141,189,119,126, 31,159, 26,102, 41,211, 99, 98,223,244,252,210,104, 52,175, 24, 43, 99,162, 87, 0,144, 97,149, 23,118, +244, 84,248,208,223, 79, 92, 88,218,165, 67, 75,171,239,190,250, 16,203, 55, 28,134,137, 76, 12,202, 26,208,191, 93,157, 15, 30, +237,238,212,195,197, 78,226,116,224,124,226,197,207, 86, 63,152,166, 84,106,163,170, 91,247,174,116,126,161,171,132, 16, 15, 0, + 61, 8, 33, 44, 0, 57,128, 34, 0,133,165, 13, 18,135, 40,165, 69, 53,201,167, 86,207,226,121, 90, 49, 14,255,186, 31,119,175, +157,197,163, 71, 79, 10, 30, 69, 62, 90, 79,248,116,117, 97,106, 84,173, 34,171,134, 10, 71, 12,162,226,145,133, 85, 80,196,147, + 46,185,253,251, 55, 97,158,237, 38,132, 88,185,135,194,194,181,196, 83,230, 37, 62, 64,194,141,253,135, 11,146,133,253, 40,125, +160,171,109, 25, 59,186,212,243,100,121, 34, 68,132, 31, 3,101,217, 31, 0,128,178,236, 15,119, 46, 31, 27,211,172,203, 8, 88, +218,186, 54, 46, 27,218, 85, 83,109, 41, 95,159,119,116,235,146,125,207,159, 63,199,227,199,143,241,244,233, 83,100,103,103, 99, +215,174, 75,121, 53,234, 10, 16, 19,113,218,206,171,117,167,129,195, 38, 30,233,243,126, 31, 73, 29, 55,119,198,219,217, 20, 86, + 10, 62,158,196, 36, 33,230, 65, 52,251,244,222,197, 98,170, 74,239,157,254,244,143, 74,163, 35, 54,126,253,236, 24, 30,153,126, +246,183,146,181, 5,219,247, 26,238, 61,245,179, 41,205, 45,173, 44, 42,188,142,103,103,229,136,230,205,155,227, 93,182,127,117, +107, 17, 50, 60, 94,193,168, 49,227,229, 12, 97, 94, 54, 3,210,178, 54, 50,250,178, 14, 3, 4, 16, 10,248,213,214,209,161,125, + 90, 66,207,178, 40, 84,105, 81,168,212, 34,183,176, 24,169,153,185,120, 24, 25,131,235,151,142,227,121,204,211, 2,189, 94,127, + 30, 20,191,102, 88,229,253,242,250,196,186, 85, 70, 88,193,171, 99,105,161,192,243,156, 98, 72,133,124, 36,191,120,170,215,234, +139,107, 61,201,122,230,157,223, 82,236,252,123,117, 28, 54,110,230,137,214,173, 91,153, 54,106, 18, 36,183, 54, 85, 64,200, 39, +136,121,145,134,251,183,111, 20,197, 71,221,201, 55,232, 84,157, 51, 31,252,150,242, 63,107,176,180, 6,125,251,201, 51,151,157, + 50, 24, 12, 82, 62,143,167,210, 81,182,243,155,152,171,191, 11, 74,217,196,113,159,127,249,202, 3,129,206,192, 74, 63, 25, 55, + 69, 85,254, 1,129,232, 12,178,178,200, 85, 53, 35,245,120, 25,185,234,130, 25,223,223,221,246,245,182,200,253, 0, 34,223,116, +100, 31, 0,228,228,107,238, 90,117,216,219,171, 64,169, 39, 0, 30, 85,160, 89,212,174, 93,187,151,102,171,180,185,206,232, 27, +132, 72, 34, 27,211,182,199,112,230,236,225,141,236,141,243,135,251,213,198, 92,149,187,129,105, 1, 92, 35,132, 60,152, 53,107, + 86,176,157,157,157,221,156, 57,115, 36, 73, 73, 73,130, 19, 39, 78, 20,231,229,229,165, 42,149,202, 43,148, 26,223, 63,161,244, +166, 57, 76,106,231,251, 35,217,191,169,163,133,173, 83, 39,115,107, 23,175,156,140,196,152,252,172,196, 19,132,197,233,130,244, + 39, 87,106,154,214, 59,119,238,188,104,216,176,225, 33, 30,143,231,108, 48, 24,172, 9, 33, 38,148,210, 28,189, 94,159,195,178, +108, 74, 77,204, 85,121,147,213,250,211,205,187,179, 84,172, 72, 75, 36,187,227,194,183,168, 1, 32,237,212, 20, 37,128,223,236, +218, 78,235,115, 56,226,249,250,135, 57,166,227,211,195,191, 62, 82, 83,253,164,219,191,120,188,173,250,175, 74,126,152, 8, 96, +168,220,206,123,229,131,219, 87,230, 18, 10,129, 1,250, 69,202,180,232,155,111, 67, 95, 32, 16, 20, 7, 5, 5, 85, 56, 90, 80, + 44, 22, 87, 57,191, 86,233,133,126, 35, 9, 11,219,122,226,236,165,161,199, 79, 95, 94,218, 60,164,165,149, 68,236, 8, 87, 11, + 45,182,126, 25, 56,225,236,237,140,235, 61,191,188,248,253,179,228,226,123,148,210,226, 26,214,211,167,132,144, 60, 0,189, 40, +165, 63, 17, 66, 70, 1,120, 4,224, 65,141,141, 0,139, 65, 33, 33, 77,119, 17, 66,248, 84,207, 46,191, 34,224,237, 46, 78,121, +148, 88, 27, 67, 81,158, 70,110,166, 24, 53,102,140,103,125,247, 63, 71, 17, 54,168,171,192,224,161, 35, 61, 93,235,121,190,220, +230,237, 82,245, 3, 21, 77,190,165, 34,118, 13, 59, 60, 57,181,226, 43,171,152, 63,198, 73, 45,157, 77,138, 50,227,178,115,226, +110,174, 80,166,219,173,168,190,175,106, 53, 77,123, 79, 31,174,222,180,114,218,148,148,164,152,141, 69,233, 81, 37,173, 14,233, + 81, 15,100,118, 94, 95,101,166, 38, 78,201, 74,127,182,162,182,199,162,168,168, 40,121,231,206,157,230,161,161,161,140,157,157, + 29, 50, 50, 50,112,254,252,121,150,101,217,164,154,106,165, 69, 93, 60, 79,220,221, 45,119,111,205, 91,206,151, 42,186,234, 13, +112,164,148,130,207,144, 20,173, 58,239, 68,134,185,234, 75,122,239, 74,213,245,146, 53, 16,202, 80,166,108,109, 65,150,101,201, + 55,223,110,143,227, 9, 68, 21, 54,169, 26,116, 26, 25,203,178, 70,175, 69,152,198,139,183,242,215,249, 84, 63,138,143, 2, 15, +200,227,106, 30, 78,233,201, 22, 93, 62,234,164,215, 27,116, 40,233,159, 88,246, 74,167,148,156, 3, 49,156,202,180, 44,184, 82, + 19, 83,245,202,125, 94,171, 53, 7, 35,132, 66,166, 3, 3,130,252,188, 60,177,141, 65,244,232, 77,234, 82,218,131,195, 15, 73, + 88,152,171,230,204,185,143, 47, 92,250,163, 31,101, 89, 55, 3, 5, 64,201,115,141,182,120, 95,186,105,230,182,218,166,247,191, + 6,121,195,235, 71,141, 67,136,255, 5, 77, 66,136, 16,128, 53, 0, 67,249,229,111,222, 70, 58,171, 90, 91,240, 77,242,174,112, +240,109, 41,150,200,190, 84, 42, 11, 54, 42,211,162,142,188,205,227, 73, 8, 49, 19,139,197, 77,132, 66,161,160,160,160,224, 26, +165, 52,239, 93, 44,247,242,180, 26,190,197,186, 93,167, 22, 19, 79, 31,189,190,182,180,249,240, 37,206,253, 86, 75, 6,119,109, + 61,105,251,175,191,175,126,125, 20,225,187,144,247,191, 75,147,132,133,241,109,115, 76,135, 26, 12,236,162,118,158, 5,202,212, +216, 39, 99, 47,221,207,184, 70, 41, 45,120,195,250, 57,176, 44,130, 69, 41,221,253,111,201,187,173,127,239, 5, 32,240, 53, 90, +132,226, 81,250,131, 67,115,170,189,134,248,249, 9,101, 25,176, 80,102, 90,103,213,212, 88,253, 35,229, 78, 8,175, 97,195,134, +173,132, 66, 97, 29,131,193, 32,211,104, 52, 74,149, 74,245, 60, 46, 46, 46,162,178, 5,201,255,238,116,218, 53,236,189, 90, 32, + 16,124, 14, 0, 58,157,110,109,218,253, 67, 95, 84,245,221,202,246,255,127,185, 31,245,235,199,163,251,246, 25,254,142, 50,114, +106,242, 65,174, 78,167, 55, 43,123, 47, 20,240,243, 18,111,239, 55,255,167,234, 18,103,176,254, 7,111, 12,156, 38,167,201,105, +190, 93,205,170, 23,235,230,142, 39,167,249,247,107, 58,250,245,112, 1,128,228,200, 35, 70,141, 54,174,104,127,238,120,254, 31, +123,231, 29, 30, 69,213,182,241,251,204,214,108,122, 79,118, 83, 32,141, 16, 66, 40, 9,161, 35, 32, 32, 29, 4, 65, 84, 4,177, +160,116, 4,165,136,136, 8, 8,175, 40, 2,162,136,162,136,162, 72, 71,122, 15,130,212,132, 14, 33,144,158,236, 38,155, 94,183, +207,204,249,254, 72,121, 3,166,108, 2,150,143,119,126,215,149, 43,187,179,179,247,158,115,166,156,123,158,211, 4,131, 85, 31, + 98,161, 8, 4, 4, 4,254,110,172, 49, 87, 2, 2,127, 37,214, 26,171,166,238, 47, 32, 64,240,208, 82, 43, 53,110,128, 86, 59, + 83, 66, 72, 68, 19,110,176, 55, 5, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,223,210,108, 72,251, 73,137,140, 9, 77,132, +130,166,160, 41,104, 10,154,130,166,160, 41,104,254,227,154, 79, 26,140, 80, 4,117,158, 60, 94,132, 16,175,199,189,175,192, 99, + 59, 62, 62,132, 16,159, 70,238,175,252,171,207, 5, 1, 1, 1, 1, 1, 1,224, 31,232,131, 85, 85, 81, 53, 52, 58,207,218,253, + 30,247,119, 43,191,191,156, 16,204,169,124,253, 9,165,116,254, 35,238,219,224,252,220,161,161,161,118, 10,133, 98, 20,199,113, + 65, 60,207,131, 16,146, 72, 8,217,126,227,198, 13, 61,170,103, 79,169, 31,127,127,255, 0, 27, 27,155, 87, 8, 33,173, 42,243, +127,199, 96, 48,252,144,158,158,158,242, 24,142, 27, 1, 48, 81, 46,151, 63,239,236,236, 28, 82, 88, 88,120,223,100, 50,109, 7, +176,161, 41,195,183, 85, 42, 85, 40,128,241, 60,207,139, 25,134,249, 69,163,209, 92,251, 43,142, 79,229, 62,171, 8, 48, 19, 4, +212,154,253, 31,229,183, 30,243, 3,140,208, 79, 73, 64, 64, 64,224,127,193, 96,169, 84,170, 73, 0, 62,172,172,240, 23,107, 52, +154,245,127,133,113,121,148, 74,237,161,239,126, 78, 41,125,167,241,209, 10,204,225,121,202, 0, 0,195,144,185, 94, 94, 94,174, + 98,177,248, 79,115, 62,177, 44,171, 32, 4,175,243,124,197,122, 73, 12, 67,230, 16, 66,214, 52,214,216,133,134,134,218, 57, 58, + 58,190,191,126,253,122,199, 86,173, 90, 17, 0,136,139,139,115,158, 54,109, 90,139, 54,109,218, 44,185,113,227, 70,131, 75, 94, + 4, 5, 5, 61,219, 62, 50,122,250,219,239,206,245,242,116,115,119, 96, 57,214,172, 86,103,169, 86,127,254,159,206, 65, 65, 65, + 95, 37, 37, 37,237,177, 50,255, 4,192, 68,177, 88,252,188,141,141, 77,176,193, 96, 72,100, 89,118,135, 72, 36,234,191,116,233, +210,136,193,131, 7,219, 20, 23, 23,203, 88,150, 13,217,178,101,203,172,239,191,255,126, 32, 33,100,120,125,157,150,171, 34, 77, +148,210,154,243,222,188,120,241,226,197, 62, 98,177,152,116,236,216, 81, 65, 8,153, 86, 99,246,238,218,246,175,243,248, 16, 66, +214, 82, 74,179,253,252,252, 58,112, 28, 55, 14, 0, 68, 34,209,143, 25, 25, 25,177,132, 16,111, 27,185,124,166,222, 96, 32, 0, + 72, 99,142, 81,109,191,101,111,111,255, 99, 89, 89,217,221,199, 97,228, 5, 4, 4, 4, 4, 4,131, 85,197,210,196,196, 68, 23, + 74, 41, 66, 66, 66,150, 0,176,218, 96,213, 86, 89,245,233,211, 39, 82,161, 80, 60, 48, 39,148, 94,175,151, 17,130, 62, 77, 49, + 45, 85,191, 97, 50, 25, 25,137, 68, 6,145,136,153,221,174, 93,187, 14,121,121,121, 39, 56,142,251, 58, 59, 59,187,209,171,171, + 19, 66,240,221,119,223,181,242,242,242,250,211,132,112, 90,173, 86, 58,116,232,144, 71, 62, 8, 10,133, 98,212,215, 95,127,237, + 24, 22, 22, 70,116, 58, 29, 44, 22, 11,252,253,253,153,247,223,127,223,105,217,178,101,163, 1,108,170,239,251,126,126,126,129, + 81,209,157,166,255,176,105, 83,167,226,130, 2,195,198, 85,235,175, 24,197,114, 93,179, 86,161,210,133,139,150, 58,125,244,193, +252, 55,253,252,252,110,102,100,100, 36, 55,144, 87, 6,192,238,153, 51,103,182, 30, 50,100,136,172,180,180,212, 70,167,211, 53, +223,178,101,203,251,209,209,209,246,145,145,145,178,173, 91,183,146,162,162, 34, 80, 74,109,195,194,194,232,232,209,163, 13,219, +182,109,155, 10, 96,109, 99,204, 50,199,113,146,170,192, 23,203,178,178,202,115,209,220,132,232, 20,113,115,115,123, 5,192,114, +150,101, 95, 63,117,234, 84, 36, 0,244,238,221, 91, 10, 32,214,209,209,177,155,217,100, 34,143,227, 98, 25, 60,120, 8, 0,124, +163, 84, 42,127,207,205,205,245, 37, 4, 99,155, 24,217, 18, 16, 16, 16, 16, 16, 12,214, 3,216, 0, 64, 76, 76, 12, 0, 40,154, +240,123,164,166,113,153, 49, 99, 6,148,202, 7,187,197,100,101,101, 33, 38,230,212,163,228,233,129,202,116,217,178,101, 78,249, +249,249,195,190,251,238,187,254,222,222,222,239,103,103,103,199,212,247,101, 74,169,150, 16,242, 73,101,100, 4, 50,153, 60,229, +205, 55,223,140,173,252, 44,104,223,190,125,182, 67,135, 14,213, 17, 66,146, 0, 64, 38,147,123,138, 68, 76, 0,173, 88, 99,234, +147,166, 68, 51,204,102,115,112, 88, 88, 24, 41, 43, 43,131,201,100, 66,106,106, 42,114,115,115,225,225,225, 65, 88,150, 13,110, +232,251,182,182,182,175,205,124,251, 29,143,226,130, 66,189,165,180,212,108,207,115,172,163,141,132,148,228,230, 23,165,100, 56, +234, 94,155, 52, 93,252,193,188, 89,175, 1,120,175, 1,169,169,111,191,253,118,171,142, 29, 59,250,252,250,235,175,164,184,184, + 24, 98,177,216,190,125,251,246,232,208,161, 3,119,226,196, 9, 18, 24, 24,136,136,136, 8,156, 61,123, 22,127,252,241, 7,137, +140,140,180,221,189,123,247,203,181, 25,172,135, 77,181, 72,196,204, 27, 51,102,204, 64, 91, 91, 91, 75,175, 94,189,240,198, 27, +111,160,188,188, 28,173, 90,181,106,219,171, 87,175,243, 35, 71,142,148, 48, 12,137,224,184,138, 96, 88,109,230,250,161,227, 67, + 94,121,101,130,214,222,222,126,164, 74,165,186, 75, 8, 17, 75,165,210,170,223, 22,121,121,121,121,180,109,219,118,146,171,171, +107,142,136, 97, 60,105,197, 34, 43, 86, 31,163,170,223, 26, 58,116,200, 92,128,224,233,167,159,206,159, 62,125, 58,119,231,206, +157, 94, 35, 71,142,232,124,239,222,253, 71,138, 92, 10, 8, 8, 8, 8, 8, 6,171,138,248, 51,103,206, 68,230,229,229, 1, 64, +188, 21, 21, 84,205, 69, 90,181, 34,145,232, 43,134, 33,147, 9, 33,136,136,104,147,188,122,245,234,218,102, 52, 55, 69, 68,180, + 73, 22,137,152, 64, 74, 41, 8, 97,214,243, 60,167,173, 77,179,174, 10, 81, 38,147,207, 1, 0,165, 82,165,221,191,127,191,101, +212,168, 81, 88,185,114,165,108,222,188,121, 75, 85, 42,213, 24,141, 70,147, 89, 87, 58, 43,223,207,247,242,242,114,253,238,187, +239, 90,189,249,230,155,177,106,181,122, 38, 0,248,248,248,172, 6,208,134, 16,146, 84, 99, 27, 54,108,216,208,225,181,215, 94, +187,163,213,106,231, 91,147,206,154, 4, 7, 7, 7, 12, 29, 58, 84, 14, 0, 22,139, 5, 25, 25, 25,200,200,200, 64,126,126, 62, + 44, 22, 11,234, 75,103, 13, 35, 19,230,226,236, 98,183,241,179,245,177, 30,114, 17,113,247, 83, 17,169,163,179,152,177,119,144, + 83,145, 72,223,204, 79,229, 64, 8, 9,107,232, 24, 73,165,210,151,251,247,239,111,187,117,235, 86, 18, 17, 17, 1,103,103,103, +252,254,251,239,184,122,245, 42, 10, 11, 11, 25,150,101, 17, 29, 29,141, 79, 62,249, 4,126,126,126, 40, 46, 46, 70,106,106,170, +187, 84, 42,245,168, 39,157, 15, 24,222, 57,115,230,192,211,211, 19, 28,199, 33, 43, 43, 11,101,101,101,176,179,179,131,147,147, + 19, 52, 26, 13,246,238,221, 99,205,185, 52, 95, 46,151,127,215,172, 89,179, 85,211,167, 79, 87,186,185,185,193,104, 52,190,159, +159,159,143, 57,115,230, 0, 0, 58,118,236,216,150, 82,122,232,181,215, 94, 67, 64, 64,128,186,160,160, 32, 61, 46, 46,238,141, +242,242,242,155,141, 57, 70, 62, 62, 62, 71,115,114,114,123,244,238,221, 27, 69, 69, 69,230, 69,139, 22,161,125,251,246,104,209, + 34,180,193,116, 62, 46, 4, 77, 65, 83,208, 20, 52,255, 23, 52,159, 72,131, 85,185,134, 39,121,248,117, 45, 36,217,219,219, 71, +234,116, 58, 0, 72,106,236,143,113, 28, 55,213,221,221, 61,103,254,252,249,221, 67, 67, 67, 77, 83,167, 78,189,153,146,146,178, +160,230, 62, 1, 1, 1,203,214,173, 91,135,132,132,132,212,229,203,151,159,205,203,203, 91,210,200,131, 62,143, 16,178, 26, 0, + 52, 26, 77,222,190,125,251, 58,158, 62,125,122,222,234,213,171,149, 83,167, 78,149, 77,159, 62,125,146, 21,145, 28,136,197, 98, +125,109,205,130,181,225,229,229,101,174,173,143, 86,125,244,234,213, 75,148,158,158,222, 74,161, 80,188, 48,107,214, 44,133,217, +108,134, 70,163, 65, 70, 70, 6,138,138,138,192, 48, 12, 18, 18, 18,120, 66,200, 93, 43,228,202, 76, 22,139,209,206, 79,101, 25, + 58,188,127,155, 27,151,174, 38, 40, 92, 93,153, 54,209,237,195,227,239,167,198, 17,192,132,138,191,122,113,114,114, 10,205,203, +203, 67, 73, 73, 9, 60, 60, 60,176,102,205, 26,120,121,121, 65,167,211,225,214,173, 91,212,215,215,151,156, 57,115, 6, 42,149, + 10,185,185,185, 48,153, 76,208,233,116, 57, 38,147, 73, 95,151,225, 21,139,197, 27, 25,134,188, 65, 8, 65, 72, 72, 11,237,218, +181,107, 45,148, 82,132,133,133, 97,196,136, 17,248,253,247,223,113,235,214, 45, 80, 74,193,243,188, 37, 32, 32, 80,203, 48,196, +179,226,235,117, 71,155,140, 70, 99,146,151,151,215,235,179,103,207,222,242,245,215, 95,187,188,247,222,123,160,148,130,227, 56, +112, 28, 7,158,231,193,243, 60, 40,165,216,189,123, 55, 18, 19, 19,151,213, 52, 87, 13,225,235,235,107,195,113,220, 91, 45, 91, +182, 28,242,226,139, 47,154,165, 82, 41,116, 58, 93, 85, 89,152, 7, 12, 24,144, 63,116,232, 16,183, 3, 7, 14,208,166, 70, 46, + 5, 4, 4, 4, 4, 30, 8, 22, 88,235, 69,254,127, 69,176,254,174,204,136, 68,162, 13, 71,143, 30,109,255,212, 83, 79,137,251, +244,233, 19,225,235,235, 27,145,153,153,121,179,178, 82,139, 24, 48, 96, 64,132,167,167, 39,214,172, 89,163, 19,137, 68, 27,154, +232,172,107, 86,118,231,125,124,124, 22,238,218,181,235,187, 55,223,124, 19, 94, 94, 94,237,255,169,194, 94,188,120, 49,249,226, +139, 47, 86, 41, 20,138,145, 50,153,204,209,195,195,163,120,224,192,129,247, 29, 28, 28,146, 83, 82, 82, 64, 41,133,171,171, 43, +202,202,202,144,144,144,192, 31, 61,122,180,200,222,222,126,103, 67,186,102,179,249,114,122, 90, 90,104,183, 30,221,148,191,199, +222,190, 50,242,217, 33,189, 25, 49,195,164,164,101, 93,246,112,115,181,251,227,220,217, 18,179,217,124,185, 33,157,242,242,242, + 20,150,101, 93, 41,165, 30, 49, 49, 49,112,119,119, 71, 97, 97, 33, 44, 22, 11,204,102,179, 73,167,211,217,196,199,199,195,104, + 52,194,104, 52,194,209,209, 17, 55,110,220,208,178, 44,123,178, 46, 77,150,101, 39, 18, 66, 62,162,148,226,238,221,187,106, 0, + 80,169, 84, 45,156,157,157,127,102, 89, 22, 26,141, 6, 49, 49, 49, 99, 53, 26, 77, 66,141,115,177,206, 78,238, 53,209,106,181, +185, 62, 62, 62, 83, 39, 78,156,248, 81,203,150, 45,131, 42,251, 6,162,127,255,254, 56,120,240, 32,238,221,187,135,242,242,114, +238,194,133, 11,191,104, 52, 26,171,215,103,244,244,244,140,176,179,179,155, 63,109,218, 52,175,214,173, 91,195, 96,168, 88, 59, +214,222,222, 30, 58,157, 14,142,142,142,232,218,181,235,157, 37, 75,150,152, 41,197, 43,148,210,108,225,214, 40, 32, 32, 32,240, +120, 77,214, 19, 17,193,170,172,204, 8, 33,132,254,213, 63,168,213,106,115,125,125,125, 15,199,197,197, 13,121,254,249,231, 17, + 19, 19,243, 10,128, 89, 0, 32,151,203, 95,121,254,249,231, 17, 23, 23,135,248,248,248,195, 90,173, 54,247, 49, 29, 48,157,201, + 84, 17,192,177,177,177,105, 84,223, 49, 74,105, 80,101,211, 32, 40,165, 65,117,109,179,198, 92,173, 91,183,238,222,204,153, 51, +155, 77,155, 54, 77,236,232,232,136,162,162, 34,251,205,155, 55,123,142, 31, 63, 94,181,100,201,146, 51,217,217,217,216,180,105, +147, 62, 62, 62,222, 32, 18,137,226,101, 50,217,238,243,231,207, 27, 27,210, 54, 24, 12,223, 45, 91,178,176,247, 79, 91,182,133, +181, 12, 11,113, 57,120,244,212, 21, 55, 55, 71, 69, 64, 64,144,188,184,168,200,184,110,245, 74,113,121,121,249,247, 13,233,232, +245,250,221, 39, 78,156,120,214,207,207,207,227,230,205,155, 48,153, 76,224, 56, 14,125,251,246, 5,165, 84, 14,128, 23,139,197, +184,115,231, 14,204,102,115,206,189,123,247,212,137,137,137,114, 0, 43, 26, 40,195, 7,140, 18,195, 48, 99,134, 12, 25, 2,150, +101,209,191,127,127,236,217,179,231,121, 0,139,235,218,191, 62,212,106,245,125, 0, 99,194,195,195,165, 69, 69, 69, 29,250,245, +235,183,166, 95,191,126,184,114,229, 10,206,158, 61,251,130, 92, 46,207, 49,155,205,172, 82,169,156, 72, 8,113, 52,155,205, 63, +231,229,229,101,213,165,167, 84, 42,187,135,134,134, 46,254,244,211, 79,136,151,151, 18, 28,199,194, 98, 49, 35, 55, 55, 31,165, +165,165, 8, 15, 15,135,191,191, 63, 86,172, 88, 1, 0,123, 4,115, 37, 32, 32, 32,240,248,248,187,188,200,223,106,176, 26,202, + 88,104,104,168, 24,128,183,201,100, 2,203,178, 0,160, 82, 42,149,210,172,172, 44,115, 99,127, 84,167,211,109,219,178,101,203, + 51,171, 86,173,146, 14, 26, 52, 40,216,215,215,183, 35, 0,140, 28, 57, 50,216,193,193, 1, 91,182,108, 49,235,116,186,109,143, + 43,147, 60,207,247,143,142,142, 70, 65, 65, 1, 82, 83, 83, 99, 27,243,221,125,251,246,217, 2,104,211,208,182,134,248,226,139, + 47,214,204,156, 57,179,217,252,249,243,197, 6,131, 1, 37, 37, 37,144, 72, 36,152, 48, 97,130,180,180,180, 52, 96,245,234,213, +154, 11, 23, 46,196,154, 76,166,141,137,137,137,141,154,183, 74,163,209,232, 85, 42,213,244,165,203,150,254,252,233,202,149,158, + 5,249,133, 9, 82,153,194, 96,171,144,187,206,125,103, 9,213,106,181,179,181, 90,173,206, 10,169, 21, 63,255,252,243,128,103, +158,121,230,186,159,159,159,103, 94, 94,158,119, 73, 73, 9, 45, 40, 40, 32,168,232, 75, 69, 0,224,250,245,235, 72, 75, 75, 99, + 57,142, 59, 3,224, 35, 74,169,201,218,180,250,250,250,186,116,236,216,113,128,155,155, 91,117, 83,100,100,100,228, 0, 95, 95, +223, 47, 50, 51, 51, 11,155,122,140,139,139,139,135,119,237,218,117,246,164, 73,147, 96,177, 88,240,236,179,207, 34, 51, 51,243, +179,148,148,148, 95, 85, 42,213,216, 9, 19, 38,120,184,185,185,225,157,119,222, 81,212, 52,115,181,152,241,113, 99,198,140, 33, + 10,133, 29, 88,150,133, 92, 46,133, 92, 46,135,189,189, 35, 92, 93, 93,145,150,150,134,167,159,126,154, 79, 78, 78,222,107,107, +107,187, 73,184, 29, 10, 8, 8, 8, 8, 38,171, 65,131, 85,207, 83,125, 59, 87, 87,215, 31,167, 76,153, 18,222,174, 93, 59,136, +197, 98, 52,111,222,188,219, 7, 31,124, 16,239,235,235, 59, 54, 51, 51,243, 98, 99,126,180,176,176,176, 68,169, 84,238, 61,127, +254,252,232,145, 35, 71,226,216,177, 99,227, 43, 13, 22,206,159, 63,143,228,228,228,189,133,133,133, 37,143, 35,131, 62, 62, 62, +207,245,238,221,123,124,199,142, 29,177,111,223, 62,112, 28,119,178, 49,223,175, 57, 98,176,182, 81,132, 85,219, 26, 44,104,177, +120,212,180,105,211,196, 6,131, 1,148, 82, 72,165, 82,148,148,148, 32, 59, 59, 27, 61,122,244,144,206,156, 57, 51,164,188,188, +252,221,180,180,180, 38, 77, 10,170,209,104, 50, 67, 67, 67, 19,245, 6,131,196,197,205, 85,231, 96, 39,163, 37,165,165,204,245, +235, 87,178,180, 90,109,170,149, 39,181,137, 16,210,243,200,145, 35, 31,136, 68,162,231,125,124,124, 48,122,244,104,210,167, 79, + 31,200,100, 50,232,245,122, 20, 21, 21, 97,223,190,125, 96, 89, 54, 16, 0, 60, 60, 60,188,154, 55,111,190,147, 97, 24,109,114, +114,242,107, 13,253, 6,199,113, 35,135, 15, 31, 46,182, 88, 44, 88,178,100, 9, 62,252,240, 67, 12, 28, 56, 80,124,249,242,229, +145, 0,190,109, 74,222,125,125,125, 39,190,242,202, 43, 19, 71,143, 30,141,210,210, 82,156, 63,127, 30,221,186,117,195,138, 21, + 43,148,103,207,158,157, 21, 29, 29, 13,177, 88,140,211,167, 79,131,101,217, 58, 23,108,237,213,171,151, 88, 36, 18, 5,249,248, +248, 32, 53, 53, 21,182,182,182,240,242,242,130,179,179, 51,220,221,221,177,106,213, 42,124,254,249,231,215, 68, 34,209,122,141, + 70,147, 40,220, 6, 5, 4, 4, 4, 4,234, 53, 88, 53,219, 59,107,190,246,244,244,148,137,197,226, 69,189,122,245,154,211,191, +127,127, 81,113,113, 49,120,190, 98, 8,189,141,141, 13, 54,110,220, 24, 24, 19, 19,115,222,207,207,111, 45,165,116, 65,102,102, +166,206,218, 31,230,121,126,247,207, 63,255, 60,168, 75,151, 46,182,189,123,247, 14, 2, 0,185, 92,110,250,249,231,159,117, 60, +207,239,110,108, 70, 30,158,244,209,215,215, 55, 90, 36, 18,189, 50,116,232,208,232, 87, 95,125, 21,183,110,221,194,150, 45, 91, +238,132,134,134, 30,107,164,110, 82, 3,163, 8, 87, 91, 19,205, 98, 89,214,217,209,209, 17, 37, 37, 37,144, 74,165, 96, 89, 22, +249,249,249,184,123,247, 46,220,220,220, 80, 92, 92,236,216,188,121,243, 91,143,114, 48, 21, 82, 62,234,253, 57, 19, 67, 12, 6, +125,120,113,113, 49, 43, 22,139,197,114, 9,151,220,200, 39, 7,163,191,191,255,112,142,227,220, 77, 38,147,197,203,203, 75,114, +252,248,113,200,100, 50, 84,140,254,140,128, 76, 38, 51,249,250,250,150, 2,128,155,155, 27,179,124,249,114,201,219,111,191,221, + 96,218,163,162,162, 36,205,155, 55, 31, 19, 26, 26,138,115,231,206,225,246,237,219, 73,231,206,157, 11,138,138,138,130,159,159, +223,152,168,168,168, 31,226,226,226, 44,141, 73,111,120,120,184,180,125,251,246,227, 71,143, 30,141,164,164, 36, 44, 95,190, 60, + 47, 43, 43,235,212,145, 35, 71,158,155, 52,105,146,168, 91,183,110,200,203,203,195, 15, 63,252,192,198,198,198,126,159,157,157, +253, 99, 93, 90,167, 79,159,230, 85, 42, 21, 8, 33, 16,137, 68,208,233,116, 72, 78, 78, 70,215,174, 93,241,253,247,223, 99,245, +234,213, 63,102,101,101, 9, 81, 43, 1, 1, 1,129,191, 40,114, 85,219,235, 39, 46,130,165, 82,169, 38,217,218,218,174, 30, 57, +114,164, 52, 56, 56, 24,105,105,105, 72, 72, 72,192,151, 95,126,121, 91,161, 80, 24,167, 79,159, 30,213,173, 91, 55,180,111,223, +158,108,220,184,113,198,194,133, 11,167,168, 84,170,119, 52, 26,205, 26,107,126, 88,171,213,234,148, 74,229,142,201,147, 39,175, +184,122,245, 74, 32, 0, 92,186,116, 41, 89,163,209,204,179,178, 57,171,166, 9,170,154,156,146,216,218,218, 94, 15, 9, 9,201, + 31, 48, 96,128,203,136, 17, 35,224,238,238,142, 43, 87,174, 96,249,242,229,183, 12, 6,195,212,152,152, 24,246, 31, 41,104,177, +184,168,160,160,192, 83, 38,147,161,184,184,184,218, 92,149,151,151,163,160,160, 0,148,210,146,152,152, 24,174,169,250,190,190, +190, 61, 7, 13,232, 25,241,233,170,181,208,235,202,112,233,252,126, 20, 22,228, 97,195,183,187,218,248,250,250,246,204,204,204, + 60,109,173, 22,203,178, 65, 59,118,236, 0, 0,200,100, 50,124,244,209, 71, 80,169, 84,112,116,116, 68, 89, 89, 25, 38, 78,156, + 40,155, 49, 99, 6, 0,224,246,237,219,176,183,183,183, 74, 55, 43, 43,171,247,155,111,190,233,104,177, 88,112,232,208, 33, 35, +199,113,211,143, 29, 59,182,187, 93,187,118,242,167,158,122,202,241,167,159,126,122, 26,192,145,198,228,155,101, 89,153,173,173, +173,140,227, 56,236,216,177, 3,105,105,105,175,230,229,229,101,123,121,121,237,122,247,221,119,223,105,209,162, 69,192,189,123, +247,210, 74, 75, 75, 63,209,106,181, 41, 13, 92,220,188, 74,165, 74, 63,122,244,168,255,232,209,163, 33,149, 74, 81, 88, 88, 8, + 7, 7, 7,124,250,233,167,212,108, 54,239, 20,110,129, 2, 2, 2, 2, 2,143,100,176, 0,124,180,119,239, 94, 41,207,243,248, +230,155,111, 16, 27, 27,107,202,202,202, 90,160, 84, 42, 87,199,197,197,241, 11, 22, 44,120,171,119,239,222, 43, 39, 76,152, 96, + 27, 25, 25,137, 3, 7, 14,136,219,182,109,187, 16,192,154, 26,198,167,222,213,182,139,139,139, 47,107,181,217,129, 53,102,109, + 15,148,203,109, 46, 55, 96,166, 30,208,172,101, 50,203,118,203,150, 45,187,233,233,233,105,185,121,243, 38,214,175, 95,207,199, +197,197, 29, 0,240,169, 86,171,213, 91,163,249, 56,120, 88,147,101,217, 29, 43, 87,174,124,115,222,188,121,146,172,172, 44, 36, + 36, 36,160,188,188, 28, 22,139, 5, 7, 15, 30,100,117, 58,221,238,198,106,214, 36, 51, 51,243,116,139, 96,127,252,240,237, 42, +152,205, 70,100,169,211, 0, 0,121,249,197,168,207, 92,213,166,201, 48, 76,209, 43,175,188, 98,107, 50,153,200,152, 49, 99, 36, + 57, 57, 57, 8, 14,174,152,239,180,164,164, 4, 7, 14, 28, 64, 88, 88,197,180, 90, 55,110,220,168,126,221, 80, 58,109,109,109, +159,239,222,189, 59, 82, 83, 83,113,235,214,173,131, 90,173, 54, 87,169, 84, 30, 76, 75, 75, 27,217,161, 67, 7,236,222,189,123, +116, 93, 6,171,190,188, 87, 77,207,192,243, 60, 92, 93, 93,203, 43, 13,124, 10,128,201,141, 45, 79,150,101,231,238,222,189,251, +205,243,231,207,247,156, 53,107, 22,233,211,167, 15, 0,160,188,188,156,203,203,203, 43,123,148, 99,244,184,206, 37, 65, 83,208, + 20, 52, 5,205, 39, 81,243,127,201, 96,113, 60,207,227,228,201,147, 56,120,240,160,153,101,217, 48,141, 70, 83, 51, 2,176,222, +215,215,119,223,249,243,231,147, 47, 94,188, 40, 43, 41, 41, 1,128, 70, 69, 96, 12, 6,131,133,144, 63,111,123,212, 76,125,255, +253,247,200,206,206, 54,165,165,165,253,102, 54,155,183,212, 55,106,172, 33, 30,215, 40,194,105,211,166,205, 88,183,110, 93,255, +210,210, 82,255,145, 35, 71, 74, 92, 93, 93, 81, 80, 80,128, 67,135, 14,177, 87,174, 92, 73,155, 54,109,218,172, 71,201,115,101, + 4, 11,175,188,254, 54,244,250, 50, 92, 56,183, 31, 69, 5,121, 56,127, 57, 1,141,141, 96,137,197, 98,127,139,197, 34,103, 89, + 86, 77, 41,197,184,113,227,192,113, 28, 12, 6, 3, 74, 75, 75, 81, 80, 80, 96,152, 54,109, 26, 83,105,154,240,204, 51,207,200, +172,209, 13, 10, 10,242, 23,139,197, 56,114,228, 8, 68, 34,209,206, 10, 67, 44,218,121,226,196,137,145, 99,198,140,129,143,143, + 79, 40,169, 28,163,219,152,188,243, 60, 15,150,101,209,132, 53,167,255, 68, 78, 78, 78, 14,128,143, 84, 42,213,246, 57,115,230, + 76,234,216,177, 99,196,226,197,139, 1, 64, 36,220, 46, 4, 4, 4, 4, 4, 30,135,193, 90, 60,104,208,160, 69,168, 24, 57,246, +225, 67,230,170, 42,106,162, 81,169, 84,111,183,109,219,118, 81,213,119, 26,105, 94,180,132,144,255, 48, 12,153, 83,241,190,241, + 19, 54,214, 88, 58,101, 14, 0, 34, 22, 75,182, 92,188,120,241, 61,141, 70,147, 77, 41,229, 30,181,128, 30,215, 40,194, 69,139, + 22, 81, 0, 45,190,248,226,139, 53,187,119,239, 30,165,215,235,157, 21, 10, 69, 17,203,178, 59,166, 77,155, 54,163,242,243, 38, +147,153,153,121, 58, 56,200,247,232,168,145,131,158, 9, 10, 80, 1, 0,146, 82, 52,200, 43, 40, 62,218, 24,115, 5, 0,169,169, +169, 70, 0, 70,165, 82, 57,114,219,182,109, 59, 42, 77, 79,117,255, 59, 0, 70,177, 88,220, 2, 0, 74, 75, 75,155,237,222,189, +251,103,177, 88,156,217,144,238,237,219,183,183, 46, 90,180,104,108,114,114,242,111,153,153,153,137,149,233, 78, 84,169, 84,235, + 53, 26,205,216,180,180,180,159, 26,107,174, 76, 38,147,197,104, 52,178, 28,199,137,205,102, 51, 53,153, 76,150,199,113, 97, 84, +206,203, 53, 67,165, 82,117,233,223,191,255, 43,148,210, 28,225,118, 33, 32, 32, 32, 32, 96, 45,228,113, 60,245,215, 41,110,101, + 8,241,225, 14,234, 77,209,108,140,134, 53,154, 42,149,106, 42, 33, 36,200, 90, 13, 74,105,146, 70,163, 89, 87,135,230,163,118, +214,163,141, 41,207, 22, 45, 90,208,251,247,239, 91,213, 73,176, 33, 77, 95, 95, 95, 27,177, 88,252,112,132,202, 88,105,194,170, + 52, 8, 0, 17,165,148,109, 76, 58, 31,215,185, 20, 16, 16, 48, 37, 60, 60,252,229,171, 87,175,254,170, 86,171, 87, 63,238,243, +243, 17,210,201, 60,162, 28,255, 79,148,167,160, 41,104, 10,154,130,230, 63,161,105, 5,209, 0,170,150,102,171,154, 39,211,227, +161,215, 38, 0, 53,235,172,170,247,185, 0, 46,215,208,168,185,189,161,239, 2, 64, 30,128,235,176, 98, 85, 20,107, 34, 88,127, + 27,143, 99,153,145,199,189, 84, 73, 77,179,244, 56,178,248,119,150,231,189,123,247, 30,219,232,139,204,204, 76, 3, 0, 67, 3, +101, 79, 1,176,255,212,249,147,146,146,242,101,175, 94,189, 54,168,213,106, 22,255, 46,120,225, 25, 78, 64, 64, 64,224,241,153, + 43, 66,200,254,202,122,103, 72,165,209,219,255,240,235,170,125,170,246,171,185, 79,149,198,195,219,235,251, 46, 0,204,155, 55, +239,189,229,203,151,219, 2, 56,101,109,130, 25,225,152, 9, 60, 9,252, 83,163, 67, 5, 4, 4, 4, 4,254, 22,170,141,209,195, + 70,168,150,135,254, 33, 53,255,215, 71,109, 58, 85,191, 81,243,253,138, 21, 43, 62, 6,208,168,149, 96,196,132,144,136, 58, 18, +104,117,232,175, 46,141,250, 62,107, 72, 95,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205, 39, 79,243,113,125,255,113, 80,155, + 89,123, 40,226, 5, 66,200,254,121,243,230,189,135, 70, 52, 15, 86,137,255,101,127, 0, 34, 4, 77, 65, 83,208, 20, 52, 5, 77, + 65, 83,208, 20, 52, 31,241,111,112,133,101,161,131,107,190,174,109, 91,125,175, 27,250,174, 21,251, 90,157,230,127, 69, 31, 44, + 1, 1, 1, 1, 1, 1, 1,129,122,200,173, 25,109,170,140, 48,113,243,230,205,123,175,102, 63, 41, 0, 70, 0,242, 90,162,101, + 15,244,221,106, 32,178,102,245,190,245, 33, 24,172,191,135, 6,251,186,245,232,225,237, 42,210,151,125,206,241, 92, 55, 0, 32, + 96,126,151, 72,156,103,157,184,164, 46,130,149,157,165, 91, 5,147, 86, 54, 98,188,203,243,104, 75, 8, 64, 8,174, 27, 88,172, +188,147, 72,239, 60,106, 6, 8, 33,164,117, 32, 38,202,228,182, 99,156,156, 93, 66, 10,243,243,238,153,205,198,237,183, 83,176, +129, 54, 97, 40,106, 88, 48,105, 15, 14,115, 57, 30, 18, 49,131,207,239,164,208,179,194,105, 34, 32, 32,240,111,185, 39, 55, 64, +109,247,228,199, 50, 90, 92,160, 78, 46, 3,136,174, 97,122,114, 1,220, 88,190,124,121,225,242,229,203,107,110,187, 6,160, 93, +229,126,185,181, 24, 37, 83,229,123, 83, 45,251,152,172,217,247, 47, 49, 88,173,253,200, 36, 80,124, 8, 2, 10, 96,241,173, 12, +186,190, 81,223, 15, 33,125,109,196,162,141,160, 16, 25, 44,220,108,202,225,247, 90, 43,115, 17,158,178,145,136, 62, 3, 1,111, + 96,185,215,110,221,167,199,173,253,141,136, 22,100,128,152, 48, 63,241, 60,149,112, 60,221, 12, 30,251,237, 45,248,227,124, 38, + 53, 52, 38,173,237, 67, 68, 75,252,253, 61, 59, 84, 22, 60,104,229, 28, 80,124,229, 53, 80,109, 42, 40, 15,202, 83,104,178,138, +226,174, 39,209,133, 77, 57,107,122,244,240,118, 85,240,252,245,245,223,253,228,237, 31,210,133, 80,222,136,251, 87, 15,189, 52, + 99,206,130,222,125, 58,250,180, 61,113, 73, 93,208,144, 70,187, 22,228,245,224,230, 45,223,125,123,193, 42, 70,165,242,181,231, + 89, 19,155,149,113, 59,234,139, 85,139,118,182,107, 65, 62,187,118,143,110,180,214, 72,133, 7,224, 77,177, 68, 54, 90, 97,107, + 23,162,211,149,222,231, 44,150,237, 17,193,226, 1, 43, 63, 89,221,190,103,239,129,246,188, 49,155,177,176, 36,252,215,109,191, + 52, 91,247,213,250, 65,132,144, 97,148,210,198,141,152,227, 48,243,198,222,137,163, 36, 98, 17, 9, 27,252,173, 29, 33,164,127, +163, 53, 0, 68, 4,146,214, 20,152,210, 96,190,128, 47,111, 38,211, 38,173,245,216, 42,144,124, 71,128, 80, 0, 59, 8,197,214, + 91, 41,194,156, 88, 2, 2, 79, 26, 62, 62, 62,167,212,106,117,239,199,172,217, 73,173, 86, 95, 20, 74,247,177,154,172,135,185, +100,229,126,127, 59,141,141, 96, 45,189,117, 63,195, 5,188, 25,173, 67,131,150, 0,104,148,193,178, 17,139, 54, 95,190,174,245, + 6, 53,227,219, 85,147,127, 53, 89, 0,150, 53,131, 99, 45,224, 88, 75,197,107,206, 2,158, 53, 96,209,231, 49, 0, 91,138, 14, +237, 91,108, 6,160,180,246, 55, 36, 96,126,138,251,227,168, 43, 97,139,241,235, 15,203,167,165,105,202,166, 29,191,164,201,107, + 29, 64,230,223, 78,197, 38,107, 43,113,127,127,207, 14,123,142,103, 61,115,106,235,116,116,106, 31, 2,202, 91, 0,202,194, 54, +236, 93,156,248,113, 28, 58,181,241,175,216,198, 91, 96, 31,249, 25, 6,118,119,106,242,211,135, 72, 95,246,249, 87,223,110,242, +246,111,214,140, 88, 82,150, 2, 22, 35,252,252, 7,137, 22,188,253,186,114,241, 39, 95,174, 2, 48,190,222,104, 80, 16, 9, 15, +109,209,106,246,230, 95,207,249,151,151,229,152, 78, 30,120, 47,145, 80,106,113,119, 15,147,126,180,244, 83,197,251,243,223,158, + 21, 22, 68, 46,198, 39,209,219, 13,152, 43,166, 85, 0,246,126,252,241,202,182,125,250, 13,181,231, 76,185, 34, 67, 89,105,232, +198, 77,223,125, 24,214,186,163,109,247, 72, 95,105,238, 31,111, 17, 93,105, 1,204, 84, 33,127,186, 67, 31, 71,221,203,207, 91, +190,251,241,151,169, 0,214, 54,202, 95,177,255,157,107,196,204,194, 6,128, 4,141,237, 64, 88,241,200, 55,229,234,249, 83,111, +178,133,151, 1,222, 92,121, 76,204, 0,111, 1,173,241,191,243,139,155, 0,224,173, 38, 61,234, 18, 60,115,252,248,101,165, 86, +155, 21,253,249,231, 31,207, 15, 15, 36,135, 64,240,211,157,100,156,110,138, 41, 20, 16, 16,248,119,162, 82,169, 56,141, 70,243, + 88, 87,109,240,241,241, 25,164, 86,171, 15, 62, 98,186,222, 5,240,122,229,219,141, 26,141,102,229,163,166, 43, 58, 58,218,151, + 82,234, 93,121,239,207,190,124,249,114,166,112, 6,252,179, 6,203, 6,148, 7,254,120, 22, 32,141, 27,174, 88, 89, 25,218,128, +136, 0, 75, 25,134, 15,233, 11,119, 55, 37,192,149, 3,156, 30, 96,117, 0, 87,241,151,151,155, 6,176,229, 64,238, 33,176,148, +202, 27,157, 43, 75, 49,144,179, 29,207,116,241,135,179,131, 13,102,188, 16,238,254,205,158,132,141, 27,247,220,237, 11, 96,140, +181, 50,167,182,206,192,150,157, 7, 51,215,124,187, 45,158, 7,133,139,189,188,229,203, 35,111,249,253,184,243, 84,198,234,239, + 13,241,148,167,112,118,144,183, 28, 63,236,190,255,163, 28, 4,142,231,186,251, 7, 71, 18, 54,253, 19, 48, 76, 33,202,202,242, +144,145,244, 3,220,189,250, 51, 44,207, 63,213,208,247, 21, 98,204,155,241,238, 10,113,121,153,214, 68,217, 28,222,203, 62, 79, + 42, 1, 17,241,229,103, 76,250,236,162,178,153, 83, 94,102,103,207,251,120, 30,128,177,245,233,132, 7, 98,234,103,159,172,110, +211,173, 99, 75,207,236,179, 51, 72, 89,177, 22, 22,170,144, 15,235,217, 13, 46,205,194,121,237,213,207,136, 92,217, 23, 46, 1, + 65,200,188,177, 5,105,215,119,145, 30, 29, 71,202, 55,255, 44,125,185, 46,131,213, 66, 73,186,247,127,166,227,175, 65,205, 84, + 74, 74,121,240, 60, 15, 74,121,140, 31, 51, 0,243,215, 37,162, 92,207, 98, 72,223,206,221,220,156, 68,198,229,179,123,129, 82, + 30, 25,154,124,221,201,115,241,125, 18,213,180,193, 39, 63, 2,124,217,174, 75,239,238,215, 47,157, 15, 51,107,246, 35,122,196, +242,120, 2,156,173,113,206,117,191,114, 98, 83, 24,176,169, 73,199,134, 16, 66, 90, 5,128, 75,191,176, 2,190,145, 19, 69, 27, + 54, 29,246, 40,206, 87,143,223,181,237,171, 81, 95,125,179, 97, 75, 83, 77,155,128,128,192,191, 15,141, 70,243,216, 77,214,185, +115,231, 52,143, 98,178,162,163,163,159, 2,240,137, 70,163,169, 50, 91,159,116,234,212,233, 3, 0,181, 45, 15, 86, 76, 41, 29, +123,249,242,229,223,235,211,156, 53,107,150, 10, 64, 64,108,108,108,213,111, 4, 68, 71, 71, 7,212,182,175,173,173, 45,215,174, + 93,187,212, 85,171, 86,105,132, 51,228,175, 53, 88,241,217,103,102, 70,154, 10,116, 0, 16,223,160,161,122,104,168,165,193,194, +173,248, 97,245,248, 21,173, 67, 93, 80, 82,106,194,177, 51,169,149, 17, 44, 22, 28,103,169,254,223,191,139, 59,186,178,111, 97, +237,214,187, 96, 57,126,121,125,154, 15, 99,230,249, 23,219, 63,245,252, 54,158, 82,153,173, 45, 83, 28,236,231,230, 57,251,229, +118,204,140, 23, 90, 67,111, 96,159, 15, 15, 32, 39,111,167,208,111, 27,210,164,148,162, 83,100, 8,214,124, 91, 30,255,219,169, +156,254, 0, 48,184,151,251,225, 78,109,154,249,173,254,222, 16,127,224,116,193, 0, 0, 24,216,221,233, 80,199, 8,111,127,254, +161, 19,221,218, 97,166,237, 90, 42, 58,141, 24,216,195, 17,150, 2,112,229, 41, 48,113, 60,178,178,202,145,172,145,194,137,215, + 90,165,201,243,104,235,237,173,180, 61,119,116,110,138,167, 67,161,212, 77,193, 73,165,132,167,140,133,138, 76,166,120,131,139, +170,175,132,231,209,182,161, 99,164, 80, 56,140,235,209,123,176, 83,250,137,215,137,194,111, 32, 60, 3,125,145, 18,247, 3,114, +110,238, 71,126, 78, 26,113,162,133,176,109, 17,132,129, 35, 95,192, 39, 83, 59,160,164,164, 12, 36, 55,201, 73, 38,147, 59,215, +165, 73, 25,140,253,236, 63,203,148, 98, 49, 3,240, 44, 64, 89,128, 90, 0,106, 65,105,153, 17, 38,147, 9, 54, 82, 10, 59, 27, + 10, 84, 70, 9, 57,206,100,219,182,207,188,201, 0, 46, 54,148,247,155,201,244, 86,235, 64,114, 22,148, 13,163,156, 30, 4, 56, +123, 43,153, 86,155,158,136, 64,210, 58,170,207,132, 41, 4,248,178,161,243,179, 54, 34,154, 99, 72,135, 48,123, 59, 5, 27,143, +204,152,105, 72,228,108,168, 87,155,215,241,194,216,169,182, 27, 54,126, 51,148, 16, 50,169,102, 31,180,191, 98,120,177,160, 41, +104,254,127,213,116,114,114, 10,108,222,188,249, 7, 22,139,229, 41,169, 84,234,101, 54,155,193,243,124,182, 76, 38, 59,147,154, +154,250, 81,113,113,113,242,191, 45,239,135, 14, 29,178,218,100, 89,163, 41,145, 72,112,240,224,193,251,214,154,172,135, 53, 25, +134,249,105,199,142, 29,216,182,109, 91,197,131,255,169, 83,104,209,162,133, 93,109,223,205,200,200,176,123,238,185,231,126, 2, +224, 87,159,230,189,123,247, 2,151, 45, 91,134, 29, 59,118, 0, 0,126,252,241, 71,132,134,134,214,154,158,107,215,174,137,222, +127,255,253, 64, 0,154,191,250, 24, 61,177, 6,171,114,141,221,134, 58,233, 37,121, 59, 72, 34, 97,177, 0, 64, 82, 99,127,236, +118, 34,253, 79,187, 80,201,128, 19,187,190,124,202, 70,198,224,195,207,103,103,228,230,150,118, 22,139, 42, 58, 12,178, 28, 24, + 23,103,217,249,229,211,218,249, 23, 22, 27,240,219,105,245,239,183,146,104,163, 66,161,183, 18,233, 49, 0,206,255,173, 32, 73, +232,248, 5,199,182,110,253,207,128,182,111,143,109,139,189, 49,169,111, 3,248,214, 42, 49,158,173,229,228,175,101, 27,223,248, + 37, 15, 23, 47, 30, 45,222,187,117,247, 0, 59,185,248,139,183,222,120,211,209,146,127, 27,197, 69, 28,178,243,202,145,150,235, + 12, 78, 17,140,132, 91, 23, 57, 17,195, 52,216,255,140, 48, 40,161,150,114, 7, 23,133,130, 9,239, 56, 89, 89,124,243,189, 18, +185,200, 34,114,110,191,204, 65,123,227,179,116,214,152, 83, 70, 24,152, 27,210,113,116,114,106, 97, 44, 77, 21, 21, 23,229,195, +185, 77, 56, 6, 14, 27,138, 15, 95,107,133,210,210,114,228,230,159,163, 33,205,156,136,225,202,207, 88, 48, 46, 12,249,121, 89, + 48, 89, 0,166,196, 80, 96, 48, 25,202,234,190, 89, 96,195,204,217,115, 94,108,230,235, 97, 87,213,151,141,242, 28,218, 69, 4, +161, 95,239, 78, 56,118,254, 28, 46, 95, 73, 0, 79,249,202,190,110, 28, 50,115,138,180, 6, 51,247, 67,163,110,158, 60, 91, 17, + 9,173,197,128, 53, 37,202,212,166, 13,177,229,202,177,176,115,184,195,107,115,199, 53,115,112,144, 17, 24, 20, 28, 12, 6, 11, + 74,227,215,193,205,183, 13,108,109,108, 72,100,164, 94, 12,192, 34,220, 74, 4, 4,254,203,232,209,163,109,180, 90,109,204,224, +193,131,195,251,246,237,107,251,212, 83, 79,161,188,188, 28, 71,142, 28,129, 78,167,107,230,231,231,215,236,232,209,163, 35, 59, +117,234,116,219,207,207,175,215,246,237,219, 13, 77,248,153,170,250,234,177,118, 14,151,201,100, 56,127,254,252, 99,141,100,201, +100, 50, 92,186,116,233,126, 83, 34, 89,229,229,229, 82,111,111,111,184,185,185,129,227, 56,148,151,151, 99,207,158, 61, 40, 41, + 41, 1,207,243, 80, 40, 20,248,236, 80, 49, 12,119,119, 96,227, 23,203, 80, 92, 92, 44,109, 72, 51, 47, 47,143,180,108,217, 18, + 70,163, 17, 44,203,194, 96, 48,224,248,241,227,213,239,197, 98, 49,150,236,208,194,152,176, 21,155, 55,124,134,188,188, 60,242, +119,157, 59, 86,122,145,255, 63, 6,171, 42, 67,127, 71,198, 56,142,157,255,205, 15, 91,207,207,159, 54, 6, 83,199,245,241,251, +104,237,238,190,183,147,232,102, 0, 8, 15, 34,227, 95, 30, 20,226,239,108, 39,193,226,175, 99, 1,208,249,143,250,123, 55, 83, +105, 66,235, 96,242,246,238,152,180,152,247, 94,139, 68,144,159, 99,139,224, 96, 34, 75, 76,164,166,250, 43,108, 30,148,178,213, +157,218, 43, 55, 86,246,233,249,239, 54,158, 82,128, 90, 64,173,188,198, 59, 70,200,223, 80, 72,152, 55,236, 28,156,253,103,190, +245,178, 98,240,224,231, 20,118, 50,138,252,219, 7, 81, 66, 91,195,100,103, 7,170, 43, 66,242,189,155,220,161,211,177,106,185, +155,242,157, 6,125, 32,135,223, 53, 25,119, 70, 52, 15,233,235,156, 27,187, 32, 39,176,207,207, 1, 12, 56,166,252,252,200, 28, + 59,135,112,233,217,107, 55, 89,158,195,185,134,116, 74, 75, 74, 82, 45,102, 40, 13, 22,137, 67,226,165, 77,152,247,114,107, 20, + 21,230,194, 96,100, 81, 84,206,154,149,238,102,185,161,240, 6,140, 38, 22, 70, 51,133,196, 86,133,163,231,111,230,241,172,229, + 80, 93,154,137, 26,122, 21,128,125,205,109,193, 42,210,110,174,139,226, 42, 56, 61,210,210, 53,216,188,243,124,100,229,126,143, +240,120,202,130,178,255,189, 71, 87,117,126,111, 74,231,246, 86,205, 73, 71,133, 66,242,197,226,121,131,195,123,181,230,228,196, +144, 5, 2,192,214, 70, 12,163, 13, 7, 39,155, 32, 80,115, 41,213, 25, 12, 69,183,110, 66,152, 65, 94, 64,160, 6, 97, 97, 97, +222, 78, 78, 78,183,102,207,158,237, 58, 98,196,136,106, 51,240,195, 15, 63, 96,245,234,213,248,240,195, 15, 97,177, 88,240,205, + 55,223,216,238,220,185,179,227,151, 95,126,153,217,172, 89,179,214,105,105,105,217, 86,154, 42,105,101,221,197, 84,154, 43,110, +241,226,197,244,195, 15, 63, 68,205,109,148, 82,115, 83,210, 47,147,201, 32,147,201, 16, 31, 31,255, 88, 76,150, 68, 34,129, 84, + 42,133, 76, 38,195,221,187,119, 27,109,178, 88,150, 21,101,102,102,162,164,164, 4,253,134, 14,197,234, 21, 43,240,212, 83, 79, +161,111,223,190,160,148,226,196,137, 19,232,234,146, 0,215,161, 61,113,231,206, 29, 88, 44, 22,171, 90,166, 50, 51, 51,145,159, +159,143, 1, 67,135,226,219,175,190, 66, 84, 84, 20, 90,182,108, 9, 0,136,137,137, 65, 31,159, 84,216,183,236,139,132,132,132, +191,237,220,249, 59,189,200,223, 26,193,250,187,184,153, 72, 47,132, 7,146,253, 47, 12,142, 30, 50,244,233,112,124,187,245,228, +178,240,112,178, 21, 0,220,156,228, 75,199, 13, 14,194,237,164, 66,156,184,164,217,127, 59,153, 94,120, 28,191,201,115,112,119, +115,182, 5, 24, 25,116, 38,142,117,116,180,114,141, 56,222, 2, 23,123,121,203,193,189,220, 15,131,242,112,182,151,135,129,114, +112,118,144,183, 28,216,221,233, 16, 79, 41,156,237,164, 97,148,183,174,142,237,209,222,230,232, 59,211,167,117, 25, 60,244, 5, +133,212,214, 13,188, 62, 3,150,130,235,200, 79, 62, 5,163,162, 61,114, 51, 83,176,117,239,111,197,241,201,218, 18,145,136, 57, + 38,118,242,154,115,252,120,114, 89, 67,186, 6, 17,150,127,248,193,252,193, 91,183,252,226,164, 80,245,192,189,189,131,138,100, + 34,139,220,211, 39, 20,122,214,129,251,244,251,253,206,229,192,138,134,116,116,229, 37,187,142,159, 56, 60, 38, 68,217,221, 33, +229,230,126,232,116, 38, 24, 45, 64, 68, 84,111,112, 60,149, 17,134,240,142, 34, 17,209,106, 11, 64, 44,188,246,204,149,148,172, +179,151,147, 68, 70,166, 97,237, 7, 78, 58,169,104,250,208,190,237, 0, 78,143, 97,253, 34,240,249,247, 39,166, 1,152,240,104, + 6,203, 2,202,233, 65,129,238,173, 3,201,215, 20,232, 30,119,232,243,176, 14, 3,223, 70, 99, 34, 88, 17,129,100, 96,155, 48, +213,166,207,151,205,119,117,245,244, 19,129,211,131,176, 37,148, 47,184, 0,113,249, 61, 56,250, 14, 6,231,212, 13, 27,190,250, +180,140,231,233, 86,250, 87,174,150, 46, 32,240,255, 16,131,193,176,107,197,138, 21,174, 67,134, 84,140,118, 47, 43, 43,195,185, +115,231,176,113,227, 70,216,217,253,183,101,139, 82,138, 65,131, 6,129, 82,234,186,104,209,162, 93, 0,186,212,165,217,173, 91, +183,161,171, 86,173, 74,143,142,142,190,135,138, 57,142,164, 0, 68, 0,232,241,227,199, 25, 0,232,216,177, 35,119,233,210, 37, + 30, 0, 29, 59,118,172,196,222,222,190, 69, 89, 89,217,233,166, 26, 44,153, 76, 6,181, 90,253,200, 38, 75, 34,145, 84,235, 73, +165, 82,168,213,234, 70,153, 44,150,101,197, 7, 14, 28,192,149, 43, 87,176, 56, 50, 18, 51,148, 74,184,185,185,225,244,233,211, +160,148,194,206,206, 14, 5, 5, 5,216,186,117, 43,122,247,238, 13,150,101,165,214,232,238,217,179, 7,113,113,113, 88,210,161, + 3,166,217,217,193,217,217, 25, 49, 49, 49, 0, 0,185, 92, 14,181, 90,141,227,199,143,163, 87,175, 94,194, 73,253, 87, 27,172, + 94,132,136,137, 31,188, 45,102, 61, 40, 75, 1, 2, 85,120, 56,145,222,190,221,248,167, 4, 6, 88,176,230,251,253,131, 63,159, + 63,140, 76, 28, 21,169,250,232,203, 83,147, 0,224,181,231, 67,125,108,229, 98,172,217,122,155, 50,192,130,199,145,193,240,112, + 34,101, 24, 76,234,215,173, 37, 52,121, 38, 36,165, 23,159,188,157, 76, 27,108,210,225, 65, 97,219,106, 30, 94, 30,113,199,175, + 83, 27, 63, 63, 74,217,202, 17,131,171, 48,126,216,125,255,232,214, 94,254, 21,125,138, 44,112,236,250, 51,192,219, 53, 24,185, +154,251,246,219, 93,134,191, 52, 71, 97,201,220, 13, 99,234, 1,128,211, 65, 87, 78, 80,194,134, 32, 43, 61, 19,139, 63,255, 37, +195,104, 97, 94,140,189,109,104,148,177, 76, 72,160,101,225, 65,100,196,138,255,124,112,236,227,197,139,236,229,234, 19, 37, 18, + 49,202, 25,183,167, 36, 75, 63, 88, 47, 46, 45, 54, 61,151,152, 70, 75, 27,210, 49, 50, 88,241,159,207,214, 14,126,253,229, 17, +241,161,126,189,220,184,236, 36, 55, 93,113,113,206,207,135,226,188, 43,159, 28, 9, 0, 36,166,228, 35,183,160,156,229, 88,203, +105, 7, 51, 62,186,149, 73,173, 30,253, 23,228, 69, 60, 70, 12,110,251,146,135,179, 12,250,242, 66,120,186, 72,209,191,123,240, + 75, 65, 94,100,110,146,150,230, 54,245, 56, 87, 53, 17,158,223,248,116, 24,120,115, 24,229, 45, 48,165,253,212,120, 29,224,237, +183,199, 52,115,114,181, 51, 49,132, 43, 7, 36, 46,128,204,131, 48,138, 0,136, 20,254, 72,189, 31,203,190, 61,121, 76,126,106, +106,246,119,238, 20, 43,133, 91,136,128,192,131,164,165,165,141,123,239,189,247,206,118,234,212,201,203,221,221, 29, 17, 17, 17, +216,183,111, 31,222,121,231,191,193,248,246,237,219, 3, 0,242,243,243,241,159,255,252, 39, 91,163,209,140,171, 79,243,214,173, + 91,241, 63,253,244, 83,247,182,109,219,154,164, 82,105, 97,149,201, 74, 75, 75, 19,151,151,151, 19,147,201, 68,237,236,236,120, +185, 92,110, 25, 61,122,180,249,210,165, 75, 45,202,203,203,211, 30, 37,130,213,161, 67,135, 27, 69, 69, 69,197,132,144, 71,158, +194,161,202, 92,133,133,133,121,152, 76, 38, 14, 64, 65, 83,166,112, 96, 89, 22, 29, 58,116,192,241,223, 99,113,232,247, 27, 40, +203, 77,194,216,231,250, 35, 44, 44, 12, 71,142, 28,105,242, 49,235,208,161, 3,142, 31, 63,139,152,216,187,208,166,221,198,203, + 47, 60,139,150, 45, 91,226,248,241,227,194, 9,253,168, 6,171,161,144, 92,171,102,164,157, 87,132,236,199, 5,195,130,195,197, + 17, 31,130,136, 21,216,189,105, 95,183,249, 31,127, 29,223,198,135,140,189, 97,197,104,175, 7,162, 88, 21, 29,147,127,185,118, + 59,236,165, 97, 79,249,225,219,237,182, 11, 1,224,249,126,129,184,116, 59, 23, 23,111,230,252,114,171,137,115, 22,213,164,141, + 23,177,133, 29,126,249,207,156,225,189,154,249,122, 99,227,182,179, 32, 20,187,172,253,254,137,205, 47,227,199, 93, 49, 25,171, + 55, 61, 56, 98,112,211,158,184,244,207, 54, 27,226, 41, 40,156, 21,146,176, 9,195,186, 54, 56,138,208, 70,194, 76, 28, 56,108, +156,130,213, 30, 1, 95,176, 29, 18,153, 20,250,114, 14, 89, 57, 70,232,109, 21, 56,121,230,180,190, 76,199,190,125,253, 62,219, +164,168,221,237, 36,154,212, 62,148,164,151,235,245, 74,123,215,224,114,134,128,150,153, 36, 52,238,182,186,252, 86, 26,189,107, +141, 70, 98, 34, 53,117,241, 37, 61, 54,108,222,254,129, 68, 34,123, 94, 36, 2,241,116,182,243,248,122,205, 18, 56, 56,216,131, +178,165,160,198, 60,140,120,237,227,220, 27,247,204,129, 0, 16, 26, 74,236,159,106, 39,221, 44,102, 72,230,201, 43,166,247, 27, + 12, 1,139,240,214,216, 97,237, 36,188,165, 28,211, 23,253,138, 13, 75,135,225,229,161,173, 36, 7, 78, 38,188, 5,224,163,166, +135, 41, 43,154, 8,187, 76,252, 61,158, 0,103, 41,208, 61,118,255,210, 48,192,250,150,199,168, 40, 34, 17,139, 73,171, 86, 62, + 38, 9,151,185, 21,196,198,135,138,220,123, 1,118, 45, 8,181,143,192,186, 53, 31,148,125,187,113,227, 81,158, 96,113,124, 74, +253, 83, 94, 8, 8,252,175, 66, 41, 77,114,118,118, 30, 48,104,208,160, 19, 71,142, 28,113,141,136,168, 88,110, 46, 46, 46,174, +242, 58,171,104,138,210,106,181,120,241,197, 23,243,178,178,178, 6, 80, 74,235,237,211, 91, 90, 90,154,188,123,247,110, 47,189, + 94, 31,253,254,251,239,107,155, 55,111, 94,106,177, 88,104,105,105, 41, 88,150,165, 30, 30, 30,146,168,168, 40,210,186,117,107, +253,137, 19, 39,220, 50, 50, 50, 74, 1,164, 54, 37,253,175,191,254, 58,118,238,220, 9, 0,120, 28,243, 98, 73,165, 82, 12, 26, + 52,200,231,220,185,115,234, 74,205,139,143, 80,182,184,126,253, 58,206,220,231, 32,179,115, 65,106,124, 9,142,255,182, 23, 99, + 39,190, 9,150,109,122,111,133,107,215,174, 97,235,241,107,240,242, 9, 70,177,241, 58,246,236,217,131, 73,147, 38, 61,146,102, + 19,243, 71,158,184, 62, 88, 85, 25,123,248,195,224, 96, 34,147,155,176,168,127,103,159, 57,163,251, 4,139, 88,157, 6, 60,207, + 67, 4,192,221,129,193,247,223,110, 8,220,190,251,224,249, 54,254,162,181, 48,241, 11,110,104,169,174, 17, 97,172, 69,171,126, +248,227,249,159,150,244, 20, 79, 26, 21,230, 10, 0, 82, 9,131, 53,191,220, 98,193, 96,209,163,100,170,139, 47,177, 41,147, 98, +162,119,128,211,194,249,147, 7,187,246,234, 20,138,211,231,111, 98,237,150,243,191,203, 92,240,163,149, 7,154,118,106,235,143, +213,155, 30, 30, 49,168,244,255,108,179, 33,254,200, 31, 37, 3, 1,224,153, 46,118,135,162, 91,185,250, 55,212, 84,196,241,212, + 91,102,235, 14, 67,234, 65,136,101,114,176,172, 25,185, 90, 29, 82,178,121,216,168, 36,184,116, 61, 77,255,236, 75, 35, 14, 52, + 53,207,132, 16,210,189,189,141,106,209,210, 79,125,245,250, 82,182,164, 40,143, 21, 75,207,139,109, 21,242,236,198,232,156,207, +164,134,158,237,165, 81,160,188, 72, 46,162,186,249,111,191, 98,167, 78, 56,130, 16, 15, 13, 8, 40, 20,170,193,112,176, 19, 73, +123,180,147,166, 3, 64,128,155,147,236, 63, 31,189,227, 52,115,238,226, 51,214, 68, 19,219,132,122,207,140, 8,113,197,233,139, +119,240,251,229,180, 91,191, 95, 72,104,221,187,163, 10,161,129,206, 51,194,195,201,138,166, 68, 68, 43, 14, 88, 69, 19, 97,213, + 40,194,136, 64,210, 58,122,200,251,181,142, 30,172,139,128, 43,224, 19, 2, 41, 8, 17,129,130, 0, 6, 53,216,140,159, 32, 10, +156, 70,119,237, 93,170,223,248,237,198, 37,183, 83,168, 16,181, 18, 16,104,128,162,162,162,235,182,182,182,253,219,181,107,247, +195,244,233,211, 29, 94,122,233, 37,213,235,175,191,206, 0,128, 86,171,229, 87,175, 94,173,249,226,139, 47,138,243,242,242, 38, +152,205,230, 27,214,220,143, 9, 33,231,190,255,254,251,220,179,103,207,182,238,220,185,179,109,116,116, 52,239,233,233, 41,213, +233,116, 92, 70, 70,134,254,252,249,243,220,253,251,247,157,138,138,138,238, 3, 72,108, 74,243,189, 74,165, 2,195, 48, 31,249, +249,249,125,160, 86,171,219, 60,142, 62, 88, 33, 33, 33, 42, 0,247,125,124,124, 66, 26,219, 60,248,167, 10, 91, 44, 70, 97, 97, + 33, 74, 51, 19,161,203,207, 67, 75,145, 14,237, 93,221,225,224,224,240, 72,102,168,184,184, 24, 98,163, 22, 73,215,211, 80,148, +157,138,240,102, 29, 96,103,103, 7,163,209,248, 79, 24,116,242,164, 92, 7,117, 54, 17,182,246, 35,147, 92,100, 88,253,202,232, + 64,105, 96, 51, 95,152,114,227,112, 53,177, 12,239,127,215,241,182, 72,234, 96,156, 58,190, 95, 84,239,190, 30,232,217,171, 35, +105,222,204,121,198,138, 21,235,167,180,246, 39,239,220, 74,167,107,172,249,225, 91,137, 52,185, 85, 32,217,120,234,178,250, 45, + 95, 15, 61, 40, 40, 78,197,102,225, 70, 98,225,198, 59,201, 52,185, 49,153,104, 29, 66,250,138, 9,243, 43,229,168,141,147,131, + 93,105,251,167,194,220,251,118,111,203, 12,232, 29, 13,169, 24, 56,123,241, 26,222, 94,186,235, 2, 47,163,131,227,226,168,213, + 35,190, 40,207, 62,208,161,189, 98, 91, 45, 95,167, 13,159,216, 34,134,100,151,107, 99,189,101, 14,225, 48,231,159,132, 86, 91, +134, 91, 73,102,148,193, 15,133,153,153,160,148, 75, 95,180,104,123,147,175, 16,119,119,119,207,192, 22,161,193, 95,124,187, 3, +102, 99, 49,146,110,111, 66, 89, 73, 54,150, 46,255, 45,216,215,215,183,103,102,102,230,105,171,205, 26, 72,232,137,147,191,120, +130, 2, 34,177, 28, 7,190,217,134, 60,177, 2,238, 78, 82,240,134, 28, 76,124, 99,172,211,160,193, 99,157, 0, 32, 61,241, 26, +252, 93,173,243,213,230, 34,140,124,126, 66, 75,103,112, 58,252,184,231,154,129, 33, 24,240,227,111,183, 18,123, 71, 57,219, 60, +223,175,153,203, 71, 27,138,158, 3,240, 75,147, 46, 74,158,123, 96, 20, 97, 83, 70, 15,110,167,148,107, 21, 72, 18,127, 57,158, +107, 63,122, 80,164, 66, 42, 38,132, 26,212,224,137,148,172,249,242,251, 82, 25,193, 55, 66,213, 41, 32, 96, 29, 58,157, 46,142, + 16,210,230,221,119,223,125,241,189,247,222,123,202,206,206, 46, 16, 0,202,203,203,147, 45, 22,203,239, 0,126,161,148, 90, 61, + 4,187,210, 48,221, 39,132, 36, 39, 38, 38,122,253,248,227,143,206, 0,108, 42, 63, 54, 0, 40, 2,160,109,140,230,195, 84,153, + 41,149, 74,245,193,227, 42,135, 42, 51,229,227,227, 19,210,148,239,139, 68, 34,142, 97, 42, 86,246,145,203,229, 56,115,230, 12, + 6,118,239,129,107,199,211, 16,230,229,135,222, 99, 95,193,158, 83,167, 32, 18,137,170,246,111, 84, 61, 34, 22,139,113,246,236, + 89,140, 26,210, 11,123,246,236, 65, 80,135,118,152, 54,109, 26, 14, 31, 62, 12,177, 88, 88, 77,239, 47, 49, 88,160,248,232,216, +175, 31, 75,193, 91,176,227,231, 79,112,236,178,206,116, 87,141, 5, 45, 51,177,122, 7, 74,249,156,188,157,111, 29,136, 73, 90, +249,234,132, 33,182, 79,247,236,135,167,159,234, 45,110,221,174,231, 66, 0,107,106, 68, 85, 34,234,155, 43,131,179, 96,201, 55, + 59,227,223,252,245, 96, 2, 1, 91,138, 49,195,162, 41,103,193,146, 6, 34, 53,127,210,116,178,181,255,245,236,153,243, 46,224, +202,144,157,114,202,198,219, 43, 16,160, 22,220,187,151,128,117,223,239,225, 99,206,223,253,201, 36,194,244,196,219,180,220, 90, + 77, 80,254, 79,198,169, 98,196, 32,251,192,136, 65, 74, 41, 5,207,226,225, 9,189, 31,214, 52, 88,248,111,126,218,252,237,167, +175,189,246,186, 93,190, 81,141,132,140, 91, 48,136,124, 32,178, 13,198,173,216, 35,122,189,133,111,112,234,136,250,202, 51, 47, + 47, 47, 39, 46,182, 0,191,254,176, 28, 22,139, 17, 57, 89, 21, 30, 53, 75, 91, 2, 71, 71,159,243,141,209, 52,179,124,241,200, + 17, 19,165, 10, 27, 40,198, 62, 63, 88,150,168, 49, 34,178,165, 67, 69,126,205,121,136,143, 57,131,222,158, 21,157, 33, 19,227, + 69,240,239,172,178, 42,157, 14, 14,210,233, 3,123,248, 32, 57, 45, 27,103,226,212,155,147,212, 84, 19,228, 67, 54, 39,166, 23, +189, 53,188,183, 63, 62,255,233,246,180,186, 12, 86, 93,154,149,163, 5,187,131, 90, 64, 89, 3, 40,208, 61, 34,144,180,182,102, +228, 96,109,154, 98, 6, 47,173,250, 53,245,253, 29, 49,185,195,231,188,222,195,177, 91,151,129, 50,240, 22, 90,170, 51, 90,110, + 39,211,146, 71, 57, 70,143, 16,157, 20, 52, 5,205,255,151,154,149,102,231,167,202,191,199,169,169,193, 67,243, 50, 61,106,222, +107, 54, 7,106, 52, 26,145, 74,165,226, 26,234,228,110,133,230,197,154, 70,171, 50,122, 85,111, 20,171, 22, 77, 77,167, 78,157, + 92,135, 14, 29, 10,150,101,113,255,254,125,164,165,165, 97,232,171, 19,224,226,226,130,139,183,111,227,254,253,251,248,224,131, + 15,192,178, 44, 46, 93,186,148,217,144,166, 68, 34, 49,183,107,215, 78,250,236,179,207,130,101, 89, 36, 37, 37, 33, 53, 53, 21, +211,166, 77,131,147,147, 19,110,223,190,141,164,164, 36,124,240,193, 7, 48, 26,141, 72, 78, 78, 54,255, 29,231,210,255,142,193, + 34,224,192, 91, 80,124,121, 17,190,222, 15,179,153, 69,216,173, 12,154, 82, 99,143,245,109,125,201,190,235,183,226,147,227, 46, + 62, 45, 67,201, 13, 0,104,212,147, 67, 66, 6,205,138,110, 41, 46, 5, 91,234,136,220, 67, 72, 81,151,150, 37,100,208,172, 38, + 68, 47, 8, 56, 29, 80, 28,139, 61,251, 99, 32,183,185,138,203, 87,226,185,115,113, 9,191, 50, 20, 75,110,167,208,123, 77, 42, + 29,158,133,147,189,236, 79, 35, 6,157, 21,146,176,103,186,216, 29,162,148, 82, 7, 91, 73, 24,181, 34,130,117,233,166,241,219, + 30,237,109,158, 43, 45,201,235,212,175,119, 47, 59,143,208,231, 81,124,239, 54,110, 93, 57,166,143,189,145,112,254,210, 77,227, +183,143,114, 32,125,124,124,158,234,211,167, 37,198,188, 50, 31,102, 99, 17,146,110,125,143,210,146,108,156,249,195, 30,241,233, + 37, 93, 0, 88, 29,193, 58,119,211,210, 26, 0,186,183,145,166, 59,202, 76,222,227, 70, 13,129, 92,108, 0,111, 41, 5, 49,231, + 33,177,192, 92,252,220,162, 76, 14, 0,108,109,136,216, 78, 92,236,104,141,110,120,144, 91, 11, 91,169, 5, 63,238,189, 5,158, + 84, 44,179,196, 19,172,255,113, 95,226, 91, 75,166, 70, 34, 60,200,165, 93, 85, 3,188,213,199, 30,152, 18,251,219,226, 48,195, +173,133,160,188, 5,103, 87,186,132,245,120,183,112, 10,154, 56,195,250,141, 68,170, 6,240, 86,171,102,100,195,140,101,135, 23, +118,136,184,221,125,246, 91,195, 29, 65,132,133,209, 5, 4, 4,254,145, 72,224,155,115,231,206,221, 32, 18,137, 60, 0, 16, 74, + 41,140, 70,163,120,227,198,141, 18,150,101, 25,145, 72,196,217,216,216,176,113,113,113, 22,158,231,115,205,102,243,155, 13,105, +154, 76,166,196,117,235,214, 5, 91, 44,150,234, 17,135, 70,163, 17, 63,253,244, 19,140, 70, 35,228,114, 57,236,237,237,145,148, +148, 4, 66,136,153,227,184, 68,225, 72, 60, 78,131, 5, 44,238, 54,114,209, 34, 80, 16, 16,124,248,144,185, 2, 0, 92,207,164, +154,214,126,228,237,214,237,123, 46,170, 52,101,139, 27,155, 0, 3,199,141,138,142, 10,221, 10, 0, 70,158,123,185, 41,153, 40, + 49,232,159,111,223,177,203,175, 60,165, 98,150,163, 27, 25, 6, 59, 13,192,157,196,228,134, 71,206,213,109,218, 40,236,163, 86, +227,149, 97,137, 21, 35, 6,169, 5,148,103,225,212,237, 23, 76, 24,214,213, 63, 58,204,217, 31,188, 5,148, 90,224,210,231, 20, +240,190, 77,131,154,103,174, 26,158,233, 24, 33,127,227,200,233, 43, 19, 57,158,122,139, 24,146,109,176,240,223, 60,170,185, 2, +128,204,204,204,211,225, 65,228,232,245,238, 94,207,184, 87, 78,179,154, 87, 4,228, 21,227,104,102,102,233,233,166,104, 22,234, + 45,195,223, 91,185,247, 55,153, 88, 36, 6, 40,248,202, 5,175, 13,102,174,160,202,132,181,109, 65, 84,239,110,100,183,138, 68, + 36,173, 33,189,139, 55,178, 62, 31,243,238,241,119,110,221, 47,220,152,146, 89,241,228,147,146, 73,111,134,248,144,133,137, 25, +165,239,220,188, 95,248,105, 99,251, 77, 16,224,203,232, 97,139,254,180,237, 81,203,243, 78, 26,189, 6, 96, 68,235, 0,210,111, +204,164, 47,102, 19, 2, 97,153, 8, 1,129,255, 33,170,162, 88, 12,195,124,244,184, 52,171,162, 88, 0,238, 55,226, 59, 23, 1, +180,121,156,121,139,139,139,203, 7,144, 47, 28,229,191, 22,242, 87, 78,227,243,255, 57,196,221, 54,136, 44, 81,122, 59, 70, 86, + 45,129, 83,221, 44, 88,105, 50, 40,165, 15,172,243,155,151,111,188,122, 61,137, 46,172, 67,147,121,196, 36,242,141,201,123,139, + 22, 45,232,253,251,247,173,234, 44, 40, 52,109, 8,154,130,166,160,249, 63,168,249, 87,220,147, 31,181,115, 54,253, 95, 63, 70, + 79, 26, 66,179, 71, 29,212, 52, 75,143, 1,254,239, 76,251,189,123,247,136,112, 4, 5, 4, 4, 4,254,214,123,178, 48,233,176, +192, 3, 48, 66, 17, 8, 8, 8, 8, 8, 8, 8, 8, 60, 94, 8,128,136, 90,173,120, 35, 66,127,132,144,136, 70, 91,253, 6,244, + 5, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,124,242, 52, 27,210,126, 82,154, 30,133, 62, 88,130,166,160, 41,104, 10,154,130, +166,160, 41,104,254,227,154, 79, 26, 66, 19,161,128,128,128,128,128,128,128,128, 96,176, 4, 4, 4, 4, 4, 4, 4, 4, 4,131, + 37, 32, 32, 32, 32, 32, 32, 32, 32, 24, 44, 1, 1, 1, 1, 1, 1, 1, 1, 1,193, 96, 9, 8, 8, 8, 8, 8, 8, 8,252,107, +248, 75, 71, 17, 10, 8, 8, 8, 8, 8, 8, 8,252, 47,194, 0, 0, 33,132, 86,254,245, 20,138, 68, 64, 64, 64, 64, 64, 64,224, +239,230, 73,243, 34,213, 75,229, 80, 74, 9, 33,132,226,209,215, 83, 18, 16, 16, 16, 16, 16, 16, 16,104, 52, 79,146, 23, 97,106, + 58, 71, 0,189,132,195, 43, 32, 32, 32, 32, 32, 32,240, 79,240, 36,121,145, 7, 34, 88,194,161, 21, 16, 16, 16, 16, 16, 16,248, +167,120,146,188,136, 48,138, 80, 64, 64, 64, 64, 64, 64, 64,224, 49, 35,140, 34, 20, 16, 16, 16, 16, 16, 16, 16,120,204, 8, 17, + 44, 1, 1, 1, 1, 1, 1, 1,129,255, 79, 6,139, 16, 18, 33,104, 10,154,130,166,160, 41,104, 10,154,130,166,160, 41, 24, 44, + 1, 1, 1, 1, 1, 1, 1, 1, 1,193, 96, 9, 8, 8, 8, 8, 8, 8, 8, 8, 6, 75, 64, 64, 64, 64, 64, 64, 64, 64, 48, 88, + 2, 2, 2, 2, 2, 2, 2, 2, 2,130,193, 18, 16, 16, 16, 16, 16, 16, 16,248,135, 32, 0,106, 29, 9, 64, 41,189,105,181, 72, + 19, 70, 19, 52,164, 47,104, 10,154,130,166,160, 41,104, 10,154,130,230,147,167,217,144,118, 99,252,199,191,218, 96,253,149, 19, +141, 18, 66, 34, 30,119, 65, 9,154,130,166,160, 41,104, 10,154,130,166,160,249,228,105, 62,105, 8, 77,132, 2, 2, 2, 2, 2, + 2, 2, 2, 79,138,193, 34,132, 48,132, 16,113,229, 31, 67, 8, 33,255, 70, 77, 1, 1,129,127, 39,228, 33,132, 18, 17, 16,104, + 58,177,177,177, 52, 47, 47,143, 42,149,202,120, 66,200, 36,161, 68, 30, 29,241,227, 20,107,233,169,232,220,220,207, 99,240,161, +216,180, 5, 13, 25, 33, 31, 31,159, 21, 30, 30, 30,147,116, 58,157, 1, 0,101, 24,134,182,106,213, 10,132, 16, 84,221, 43, 57, +142,203,141,143,143,183,170,253,247,113,106,134,134,134,198, 50, 12,227, 91,243,158,221,208,107,158,231, 51,111,223,190,221,161, +161,116, 42,149,202,254, 12,195,204,107,104, 63,158,231, 87,100,101,101, 29,169,111,159, 54,109,218, 92,177,179,179,243, 98, 24, +166,206,202,165,102, 19, 48,203,178, 84,167,211,105,111,221,186, 21,217,216, 99,235,227,227,243, 29,128, 80, 0, 59, 24,134,217, +154,145,145,145,227,227,227, 3,158,231,145,149,149,213,232,115, 69,165, 82, 77, 2,240, 33, 0, 10, 96,177, 70,163, 89,223,152, +239,183,104,209, 34, 86, 42,149,250,138, 68, 34,242,240, 49,169,237, 61,207,243,212,100, 50,101,222,189,123,183,131,112,217, 63, + 25,230,202,207,207,175,189,151,151, 87,128, 94,175,231, 0,160,117,235,214, 84, 36, 18, 61,176,159,217,108, 54,199,199,199, 31, + 20, 74, 76, 64,160,126,142, 29, 59,134,137, 19, 39,226,198,141, 27, 45, 15, 30, 60,248,149, 74,165,154,146,149,149,213,155, 82, +154, 43,148,206, 63,108,176, 66,148,246, 45,189,221,221,246,255,103,217, 98, 0, 88, 80,159, 17, 82, 42,149,255,233,209,163,199, +171, 91,182,108,177,219,189,123,183, 93, 64, 64, 0,164, 82, 41, 68, 34, 17, 68, 34, 17, 24,134,129, 72, 36,194,240,225,195,173, +122, 42,125, 88,243,196,137, 19,118,161,161,161,213,149, 44,165,180,218,100, 13, 26, 52,168, 65, 77,134, 97,124,175, 92,185,226, +105, 99, 99, 83,253,125,158,231, 31,248,163,148, 86,255,113, 28,135, 30, 61,122, 88, 85, 78, 12,195,204,187,115,231,206, 83,229, +229,229, 15,104, 84,253, 70,213,235,167,158,122, 10, 0,142, 52,160,165,250,227,204, 9, 79, 98, 78, 6,216, 2, 80,145, 43, 32, + 11, 4, 24,121,173,251, 23, 20, 20,160,119,239,222,162,166, 28, 95,134, 97,158,185,126,253,186,178,180,180, 52,122,229,202,149, +243,125,124,124, 14, 1,248, 41, 59, 59,251, 52, 0,190, 9,146, 75, 19, 19, 19, 93, 40,165, 8, 9, 9, 89, 2,160, 81, 6, 75, + 36, 18,249, 30, 59,118,204, 83, 38,147, 85, 31,231,186,254,115, 28, 7,179,217,140, 1, 3, 6,176,194, 37,255,228,152,171,129, + 3, 7, 54, 91,191,126,189,248,206,157, 59,226, 86,173, 90,129,227,184,234, 63,158,231, 27,117, 93, 10, 8,252, 47,210,108,228, +198,175,120,214, 92, 25,173,114, 6,240, 13, 74, 75, 75,241,250,235,175, 99,239,222,189,173, 58,119,238,188, 2,192,171, 66, 73, +253,131, 6, 43,216, 71,225,227, 32,183, 59,186,225,235, 47,136,165, 84,235, 82,159, 17,242,246,246, 94,218,163, 71,143,151,183, +108,217,226, 66, 8,193,137,105,175,193,217,108,128,234,131, 79,224,226,238, 1,211,188,137,112,224, 88,180, 57,121,205,218,155, +237,159, 52,239,222,189,139,130,130, 2,120,120,120,192,214,214, 22,114,185, 28, 82,169, 20, 50,153,204, 90, 77,216,216,216,224, +216,177, 99, 16,139,197,213,127, 34,145,168,214,247, 94, 94, 94, 86,151, 21,207,243, 43,194,194,194,218, 38, 36, 36, 56, 22, 22, + 22,162, 75,151, 46, 37,132,144,235, 53, 34, 78,109,175, 95,191,238,104,117,101, 99, 78, 70, 89,250,215,160,133, 59, 1,231,145, +224, 28,199,192,128,192, 7, 42,153, 42, 83,200,113, 92,147, 43, 52,149, 74,197, 93,185,114, 5,173, 91,183, 22,125,254,249,231, + 30,203,150, 45, 27,127,226,196,137, 81, 51,103,206,220, 2,224,173, 38,200,218, 0, 64, 76, 76, 12, 0, 40,154,146, 46,153, 76, +134, 11, 23, 46,128, 82, 90,109,202, 25,134, 1,195, 48,216,119,223, 29,229, 38, 6, 58,237, 77, 76, 31,218, 12, 1, 1, 1, 16, + 90,145,158, 12,115,165, 84, 42,219, 62,243,204, 51,126,235,215,175,151, 2,192,205,155, 55,145,149,149, 5, 79, 79, 79,216,216, +216, 64, 34,145, 64, 36, 18, 65, 42,149, 10, 5, 38, 32, 80, 95,125,196,154, 39,181,235,208,181,250,253,230, 99,107, 97,116,138, +132,250,195, 15,177,122,245,106,180,104,209,162,163, 80, 74,255,160,193,138,240,119,114,150, 19,201,209,141,235, 87,201, 96, 46, +119,185,123,249, 15,180, 30,248,102,149, 89,184, 89,243,198, 8,128,241,242,242,154,252,203, 47,191, 56, 86, 85,118,161,132,131, + 51,204,104, 30, 30, 14, 91, 39,103,104, 89, 51,168,197, 12,153, 84, 90,107,133,104,141, 38,195, 48,144, 72, 36, 15,252,201,100, + 50,212,140,118,212,165,249, 64,225, 84,154,168, 99,199,142,193, 98,177, 96,212,168, 81,181,154,173,218,168, 75, 51, 43, 43,235, +136,143,143,207,117, 74,233, 83, 60,207,131, 16,114, 93,173, 86,247,172,250, 92,169, 84,246,111,215,174,221, 60,158,231, 87, 52, +164, 73, 41, 5,216,124,208,130, 95,224,208, 37, 15, 37,231,221, 65,236,250,130, 67, 51,220,188,159,141, 19,177,169,200, 43, 40, + 67, 84,168, 39,158,233, 18, 4,158,231,173, 78,103, 77,252,252,252,134,180,107,215,206,174,164,164, 4, 39, 79,158, 4, 33,132, + 70, 69, 69,161, 95,191,126,182, 34,145,104, 40, 33,100, 18,173,209, 22,105,229,200,146,248, 51,103,206, 68,230,229,229, 1, 64, +124, 67, 59,215,166, 73, 8,193,143, 63,254, 8,131,193,240,167,253, 93,122,126,140,119, 70, 54,195,132,105,155,241, 73,194,118, +124,249,229,151,120,120,196,236, 95, 49, 2, 70,208,252,235, 53,149, 74,101,224, 55,223,124, 35,169,185, 77, 42,149, 86, 71,193, +107, 70,195, 31,110, 50, 20,202, 83,208, 20, 52,255, 11, 35,150,174,191, 22,123,110, 18, 0,148,220,217,133, 25, 47,118, 69,105, +233,125,188,245,214, 66,168,213,106,220,187,119, 47,238,239, 76,231, 19,107,176, 8, 33,148, 82,218,168, 71,124, 95, 95, 98,227, +192, 41,246,127,245,249, 10, 39, 7,123, 91,143,216,163,123,144,150,150, 93,239,119,116, 58,157,105,239,222,189, 56, 58,229, 85, +180, 32, 44, 92, 62, 88, 9, 79,149, 10,197,175, 14, 71,153,197,140,224, 67,151, 32,183,183,135,204,206,222,234,136,131, 78,167, + 51,157, 58,117, 10,183,110,221,130, 88, 44,134,189,189, 61,236,236,236, 32,151,203,171,141, 85,213, 13,216, 90, 77, 74, 41,196, + 98, 49,110,222,188,137,180,180, 52, 56, 59, 59,227,143, 63,254, 64,223,190,125, 31, 48, 87, 34,145,232,129, 62, 94,141, 56,225, +107,141, 40, 85,246,187, 58, 98,181,144,196, 29,112,125, 25,165, 23, 84,128,203, 88, 88,168, 19,120,202,227,234,253,124,188, 57, +118, 48, 0, 96,242,251, 95,163,111,167,128,234, 38, 72,107,241,247,247,183,229, 56,110, 97,135, 14, 29, 94,123,245,213, 87, 29, +100, 50, 25, 44, 22, 11,204,102, 51,174, 92,185,130,126,253,250,193,193,193,129, 52,111,222, 92, 12,192,210,200,115, 47,201,222, +222, 62, 82,167,211, 1, 64, 82, 19,163, 25,216,182,109, 91,173,159,189,178,234, 54,196, 21,221,179,176,126,253,122,176, 44,139, +198,158,223, 2,255, 78,116, 58, 29,119,231,206, 29,201,181,107,215, 32, 18,137,224,232,232, 8, 91, 91, 91, 72,165, 82,200,229, +242,106, 99, 37, 68,176, 4, 4,234, 39,109,215,235,147, 9, 33, 75,252,253,253, 79,127,189,124,121, 72,159, 62,125, 0, 0, 39, + 78,156,192,247, 47,190,136, 15,129,113,107, 9,201,154, 78,233,252,191, 43, 77, 77,241, 34,255,106,131, 85,149,161,198,100,140, + 16, 66,130,189, 28,182, 47,126,111,106,128,127, 96,144,247,197, 3,219,144,156,172,134, 86, 91, 88,151,161,160,132, 16,158, 16, +194, 7, 6, 6,194,209, 98,128, 19, 53,193, 83,169,130,131,171, 27, 10, 45,149,145, 43, 59, 59,200,236,236,173,186, 57,214,212, + 12, 15, 15,135, 86,171,133, 84, 42,133,189,189, 61, 28, 28, 28,170, 13, 86,149,185,178,246,134, 75, 8, 1,207,243, 16,139,197, +184,126,253, 58,186,119,239, 14, 63, 63, 63,252,250,235,175,232,223,191,255,159,162, 88, 77,105,122,170,234,115, 85, 51,114,197, + 48,204, 60,107, 58,183, 63,128, 44, 24,172,195,243, 96,108,251,192, 76, 29, 97,164,202,202, 38, 65,138, 3,151,180, 72, 72,203, +123,160,185,208, 90,124,124,124, 58, 42, 20,138, 47, 62,253,244,211,112,149, 74, 37,215,233,116, 32,132,160,202,100, 41,149, 74, +176, 44, 75, 75, 75, 75,139, 50, 50, 50,254,246,190, 77, 85,101,126,244,232, 81, 16, 66,170,141,110, 85, 83, 97,121, 86, 6, 38, + 76,223, 2,153, 24,184,126,253, 58,194,194,194,132,187,233, 19, 68,104,104, 40,114,114,114, 32, 18,137,224,224,224, 0, 59, 59, + 59,180,108,217, 18, 25, 25, 25, 15, 68,177, 4, 4, 4,234, 71, 36, 18,173,216,179,103, 79,136,141,141, 13,150, 45, 91, 6, 7, + 7, 7, 92, 88,178, 4,223, 75,165, 80, 0, 88,111, 54,207, 3,240,183, 24,172,166,120,145,255, 23, 17,172,198,226,235,235,251, + 89,231,110,157,158, 10, 12,143,182,185,120,120, 23,238,223, 75, 67, 94, 94, 49, 40,160,175,207, 87, 16, 66,168, 68, 34,129,231, +156,143,224,223,166, 13,116, 19,159, 67,161,197,140,160, 3, 23, 32,183,183, 71,124,191, 72, 80,147, 9, 61,238,104,173, 53, 46, +148, 16, 66, 1,192,221,221, 29, 82,169, 20, 54, 54, 54,176,177,177,169,238,123, 85,243,207, 90, 51,196,243, 60, 74, 74, 74,144, +146,146,130,137, 19, 39,194,214,214, 22,132, 16,104,181, 90, 52,107,214, 12, 34,145, 8,106,181, 26, 39, 79,158, 68, 96, 96, 32, +100, 50, 89,163, 78,134, 26,157,218,219,250,248,248,156, 38,132,180,141,141,141,117,236,208,161, 3, 26, 21,193, 34, 82, 24,209, + 12, 28,124,193,211,255,246,181,178,176, 15,122,158, 42,147,101, 13,126,126,126, 3, 59,118,236,184,233,211, 79, 63,117,117,112, +112, 16,113, 28, 7,150,101,105, 97, 97, 33, 74, 74, 74,224,239,239, 15, 39, 39, 39,236,218,181,171,140,227,184,173,244,175,156, +173,182, 1,147,197, 48, 76,117, 4,177,170,255, 21,195, 48,152, 62,204, 31,133,133, 14, 16,137, 42,222, 91,155,119,129,127, 55, +148, 82, 26, 17, 17, 65, 69, 34, 17, 60, 61, 61,171,205,148, 68, 82,209, 98,232,229,229,133,146,146, 18,136, 68,162,234,109, 2, + 2, 2,117,211,162, 69,139, 40, 31, 31, 31,204,156, 57, 19,134, 95,126, 65, 25,128, 33, 0,246,152,205, 0, 0, 7, 96,182, 80, + 74,127,163,193,242,245,245,157,218,174, 93,187,215,191,253, 97,139,253,127, 22,206, 41, 41,188,115, 67,100,210,155,237,140, 22, +139, 41, 49, 43,127,109,125, 55,199,176,176,176,138,167, 78,103, 23,216, 58, 58,193,248, 80,228,138,154, 76,224,205, 38, 72,173, +188, 57, 86,105, 82, 74,161, 80, 40, 32,147,201,106,141, 92, 53, 38,130, 5, 0, 69, 69, 69,216,182,109, 27, 58,118,236, 8, 91, + 91, 91,136, 68, 34,180,109,219, 22,119,238,220, 65, 80, 80, 16, 0, 96,207,158, 61, 24, 57,114, 36,238,223,191,143, 86,173, 90, +217, 55,214, 96,113, 28,135,163, 71,143, 58, 82, 74,159,162,148, 34, 55,183,105,163, 97, 57,142, 67,121,121, 57,142, 30, 61, 10, +141, 70, 3,111,111,111, 20, 23, 59,192, 81,197, 87,155,197,170, 63, 43,121,123,220,184,113, 78, 98,177,152,225, 56, 14, 18,137, + 4, 82,169,148,216,216,216, 32, 48, 48, 16, 57, 57, 57,236,152, 49, 99,242,227,227,227,191,115,114,114, 90,217,132,232,131, 24, +128,183,201,100, 2, 91, 97, 4, 85, 74,165, 82,154,149,149,101,110,172, 22,195, 48,213,255,171,254, 8, 33,144, 74, 68,240,246, +242,168,238,248, 94, 25,189, 19,154, 8,159, 16, 56,142,195,229,203,151,241,251,239,191,227,236,217,179, 72, 73, 73,169,254,204, +209,209, 17,199,142, 29, 67,239,222,189,133,130, 18, 16,104,128,123,247,238, 93, 74, 75, 75, 11, 91,184,112, 33, 54,249,248,192, +193,193, 1,179, 22, 45, 58,207,178,108, 87,161,116, 30,131,193,106, 76, 72,206,215,215,119,132, 82,169,252,207,150, 45, 91, 20, + 26,141, 6,170, 22,173, 29,247,237,216,102,244,180,151,234,179, 10, 10,199, 95, 85,151,237,180,166, 82,100,151,204, 66, 62,107, + 66,192,190,115,144,219,219, 35,161,127, 7, 80,147, 9, 93,227, 82, 33,183,183,135,216,166,241, 3,203,106,139, 88,213,252,171, +170,140, 27,194,100, 50, 57,247,237,219, 23,125,250,244,193,115,207, 61, 87,221, 20,216,190,125,123,108,221,186, 21, 35, 70,140, +192,181,107,215,160, 82,169,208,178,101, 75,180,108,217, 18,167, 78,157,106,236,147, 56,120,158, 71,255,254,253, 75, 8, 33,215, + 41,165,109, 47, 93,186,228,216, 88,141, 42, 3,117,244,232, 81, 12, 30, 60, 24, 65, 65, 65,184,114,229, 10,142,125,180, 18, 98, +123,119,128,241, 4,229,105,117,100,171,161, 96, 83, 64, 64,128,132, 97,152, 86, 78, 78, 78,146,180,180, 52,216,218,218,210,202, +209,152, 68,161, 80, 96,239,222,189,101,179,103,207, 62, 74, 41, 93,172,209,104,110, 55,246, 24, 41,149,202,118,174,174,174, 63, + 78,153, 50, 37,188, 93,187,118, 16,139,197,104,222,188,121,183, 15, 62,248, 32,222,215,215,119,108,102,102,230,197,198, 68,176, + 76, 38, 19, 68, 34, 17,246, 36,120,160,220, 68, 80,146, 25,135, 25,195,154, 85,155,173,170,166,222,170,233, 47, 4,158, 28,131, + 85,117,140,107,163,174, 14,238, 2, 2, 2,127,186,150,230, 13, 31, 62, 60,122,217,178,101,173,102,205,154, 5, 0, 80,169, 84, + 93, 84, 42,213,237,191,123, 30,172, 39,169,121,240,129, 8, 86, 67, 25,235,213,171,215,183, 22,139,229, 89, 59, 59, 59,151,215, + 95,127,221,156,151,151,135,221,187,119,227,251,239,191,215,149, 91, 68,177, 69,249,236,184, 36, 77, 89,166, 53,149, 34,195, 48, +144, 90, 44,160,236,127, 35, 87,188,209, 88, 29,201,146, 40,108, 27,149, 9, 66, 8, 40,165,181,154,170,170, 72, 86, 99,110,182, +114,185,188,232,236,217,179,158,153,153,153, 15,116,104, 15, 8, 8, 0, 0, 92,186,116, 9, 23, 46, 92,192, 11, 47,188, 0,177, + 88, 12,169, 84,138,235,215,175,151, 54, 38,205, 85,134,167,106, 20,161, 82,169,236,223,169, 83,167, 90, 71, 15, 90,163,149,158, +158,142,160,160, 32, 24,141, 70, 56, 59, 59, 35, 63, 43, 5,233, 41,201,208, 25, 19, 16,232,109,131,156,156, 28,200,229,242, 6, +181,188,188,188,120,181, 90, 93, 29, 9,210,233,116, 72, 77, 77, 69,112,112, 48,189,116,233,146,254,221,119,223, 93,162, 86,171, + 27, 29,181,242,244,244,148,137,197,226, 69,189,122,245,154,211,191,127,127, 81,113,113,113,117, 68,205,198,198, 6, 27, 55,110, + 12,140,137,137, 57,239,231,231,183,150, 82,186, 32, 51, 51, 83,215,208, 49, 7,128, 77,155, 54, 1, 0,108, 59, 47,194,188,209, +205,241,242,228,205,248,236,179, 93, 15,228, 85, 36, 18, 97,241,226,197,194,157,244, 9,163,111,223,190,232,223,191,127,117, 51, +161,187,187, 59,204,102, 51, 88,150, 21,204,149,128,128, 21, 52, 27,185,241, 43,223,161, 95, 78, 2,128,217,107, 78, 96,193,146, +207, 49,246,185,254,152, 48, 97,194, 63, 54, 15,214, 19,219, 7,171, 30,115,245,138,139,139,203,139,175,190,250,170,226,210,165, + 75, 88,178,100,137,248,216,177, 99,230,203,151, 47,179, 28,199,205, 86,171,213, 27, 26,243,163, 12,195, 32,112,203, 1,168,188, +189,113,111, 64,244, 3,145,171,211,109,125,193, 27,141,232,151, 92,220,232,204, 84, 54,101, 85, 27,171, 42,115, 85,215, 84, 10, +245, 81,245, 4,252,240,188, 87,111,189,245, 22,190,253,246, 91,116,237,218, 21, 33, 33, 33, 16,139,197,213,102,164, 41, 17,172, + 42, 26, 61,122,240,161,167,121,127,127,127,220,184,113, 3, 78, 78, 78,248,241,199, 31,225,231,235,131,113,207, 4,192,100, 50, +193, 98,177,160,188,188,188, 42,130, 85,111, 66,207,159, 63,207,249,248,248, 36,158, 59,119,206,190,111,223,190, 10,134, 97,136, + 94,175, 7, 33,132,188,243,206, 59,165, 98,177,248,155,198,166, 79,165, 82, 77,178,181,181, 93, 61,114,228, 72,105,112,112, 48, +210,210,210,144,144,144,128, 47,191,252,242,182, 66,161, 48, 78,159, 62, 61,170, 91,183,110,104,223,190, 61,217,184,113,227,140, +133, 11, 23, 78, 81,169, 84,239,104, 52,154, 53, 13,153,172,173, 91,183, 2, 0, 94, 91, 19, 15,147,169, 98, 32,227,250,245,235, +225,237,237,253,192,190,137,137,137,194, 40,194, 39, 44,130, 85,115,180, 96,149,161, 18,204,149,128, 64, 35, 30,206,107,206,131, +213,161, 43,254,216,181, 18, 91, 19,252,161, 94,178,228, 31,157, 7,235, 73,185, 87, 55,216,102,214,169, 83, 39,135,162,162,162, + 53,227,199,143, 87,148,151,151, 35, 47, 47, 15,249,249,249,184,120,241,226, 49,147,201,212,186, 62,115, 69, 8,137,168,173, 82, + 20,137, 68,112,245,240,132,220,222, 1,212,100,170,142, 92, 73,109,237,192, 27,141,224,205, 38,160,142,230,156,186, 52, 9, 33, +127,138, 90, 89,107,174, 30,214,172,138,136,213, 54,169,168,159,159, 31, 62,254,248, 99, 12, 27, 54,236,129,105, 26,172, 73, 39, + 80, 49, 90,144, 82,218,182, 42,242, 68, 41,109,171, 84, 42,251, 91, 25,169,139,168, 43,130,213,179,103, 79, 28, 59,118, 12, 11, + 22, 44, 64, 74, 74, 10, 6, 14, 28, 8, 66, 8,156,156,156,224,237,237, 13, 23, 23, 23,216,216,216,160,106, 64, 64,125,154, 34, +145,232,165,117,235,214,253, 60,117,234,212,188,204,204, 76,147, 82,169, 4,165,148, 22, 23, 23, 91, 82, 82, 82, 74,154,144,206, +143,246,238,221, 43,125,233,165,151,112,253,250,117,236,219,183,207,116,250,244,233,119,236,237,237,219, 94,187,118, 45,122,193, +130, 5,147, 23, 47, 94,172,203,201,201, 65,100,100, 36, 14, 28, 56, 32, 6,176,208,154,188, 95,188,120, 17,177,177,177, 96, 11, +238, 96,242,188, 79, 96,111, 43,193,221,187,119,113,235,214, 45,220,190,125, 27,119,239,222,197,189,123,247, 26, 85,158,143,130, +160,249,247,105,214, 52, 87, 18,137, 4,122,189,222, 42,115, 37,148,167,160, 41,104, 86, 26,128,138,121,176,112, 45,246, 28, 78, +255, 48, 11, 83,134, 4, 96, 68,243,251, 88,184,176,225,121,176,254,138,116, 62,105, 52,232, 62,116, 58,221,146,208,208, 80,217, +157, 59,119,144,152,152,136,132,132, 4,112, 28,119, 63, 51, 51,115, 72,147, 93, 29,195,192,201,201, 9, 50,153, 12, 93,110,168, + 33,147, 74, 33,179,171,232, 35,222, 47,185, 24,160, 20,140, 76,222,104,205,135,231,188,122,148, 81, 68, 28,199, 85,207,208, 94, +101,224,106, 27,173,214,216,200, 21,195, 48,243,206,159, 63,239,152,150,150, 6, 74, 41,118,237,218,229,248,220,115,207,205,107, + 74,244,138, 82,138,252,252,124,240, 60, 15,137, 68,130,167,159,126, 26,145,145,145, 40, 43, 43, 3,199,113,213,205,151, 82,169, +180, 81,163, 8,211,211,211,213, 0,222,242,241,241,217, 48,117,234,212,133,221,187,119,239, 62,115,230, 76, 71, 52,125,212, 41, +199,243, 60, 78,158, 60,137,131, 7, 15,154, 89,150, 13,211,104, 52, 41, 53, 62, 95,239,235,235,187,239,252,249,243,201, 23, 47, + 94,148,149,148,148, 0, 0,103,197,185,137,144,144, 16,112, 28,135,255, 76,246, 69,105,105, 27, 84,142,120,132,173,173,237, 3, + 75, 16, 9,179,184, 63,121,212, 52, 87, 66,159, 43, 1,129,198,147,182,235,245,201, 0, 38, 19, 66, 94, 88,180,104,209, 47,147, + 39, 79, 6,207,243,136,137,137,193,151,115,231,226, 67,142, 27,183,150, 16,221,116, 74, 39, 11,165,245, 24, 13, 86,199,142, 29, +155,151,151,151,255,104,177, 88,218,243, 60, 47, 59,125,250, 52, 12, 6, 3,238,220,185,163,231,121,126,199,163, 28,211,129, 3, + 7, 50, 15,175, 23, 87,135,201,177,182,115, 93, 90,223,190,125, 31,155, 38,207,243,153, 53,215, 48,171, 75,183,230,123,150,101, + 51,173, 73, 40,207,243, 43,186,116,233,242,167,109, 77, 41, 72,158,231,147,251,244,233, 99,126,216,116,213,246,186, 70,254, 51, +173,213, 87,171,213,215, 0,140,240,243,243,235,119,246,236,217,217, 12,195,104,154,120,204, 23, 15, 26, 52,104, 17, 42, 70,241, +125,248,144,185, 2, 0,100,102,102,106, 84, 42,213,219,109,219,182, 93, 84,245,157,134,242,222,175, 95, 63,115, 67,139, 60,215, +236, 4,205,243,124,166,112,201,255,255,135, 16, 82,246,240, 53, 84,207, 67,136, 65, 40, 49, 1,129,250,145, 75,165,227,166, 76, +153,130,159,126,250, 9,187, 87,175, 70,255,204, 76,108,149, 74,161,144, 74,177,222,108,158, 4, 64, 48, 88,143,211, 96,149,150, +150,126, 92, 80, 80,208,185,164,164,132, 77, 78, 78,214, 19, 66, 88, 66,136,158,231,249,143,120,158,255,186,169, 63,120,251,246, +237, 46,143, 59, 19,143, 91,243,246,237,219, 29,254,170, 2,127,148,190, 86,181,164,243,111, 25, 70,155,145,145,113, 12,192,177, +166,126, 95,163,209,172,135, 21,139, 57, 91,187, 31, 0,196,199,199, 11, 67,136,255, 71,185,113,227,198, 73,161, 20, 4, 4, 30, + 31,215,110,220,232, 15, 0, 3, 7, 14,132,126,118,197,180, 87,155,255, 59, 15,214,250,127, 73, 50,163, 1,120, 84,190,206, 3, +112, 23, 64, 20, 42,214,178, 53, 2, 40, 3,224, 94, 99,255,252,202,207,170, 62,255, 29,141, 95,113,228,145,168,179, 15,214,221, +187,119, 95,200,205,205, 21,155, 76, 38, 57,199,113,182, 44,203, 58, 90, 44, 22,111,142,227,214, 83, 97,188,187,128,128,128,128, +128,192, 19, 65,104,104, 40,113,119,119, 39,161,161,161,228,125, 74, 31,248,251, 23, 53, 15,122, 16, 66,246, 19, 66,246,207,159, + 63,191, 55,128,174,243,231,207,239, 88,249,190, 3, 0,247,170,207, 9, 33,251, 1,184, 61,244,121,187,191, 59,193,140,112,106, + 9, 8, 8, 8, 8, 8, 8,252,127,128, 82, 58,100,197,138, 21, 31, 3, 16,173, 88,177,226,227, 26,239, 65, 41, 29, 82,243,255, + 67,159,123,252,221,105, 37, 0, 34,234,200,132,213, 43,101, 55,101, 52, 65, 67,250,130,166,160, 41,104, 10,154,130,166,160, 41, +104, 62,121,154, 13,105,215,241,253,193,132,144,253,148,210, 33, 53,255,215, 52, 94,149,154,251,107,190,126,232,243, 3,127,183, + 27,252,203,254, 0, 68, 8,154,130,166,160, 41,104, 10,154,130,166,160, 41,104, 62,226,223,224, 10,203, 82,247,255,186, 94,215, +216,246,119,166,183,158, 97,247, 59,118,136,212,173,224, 40, 83,216, 74, 1,192,164,215,153,125,238,160, 4,163, 70,113, 16, 16, +104,108,168,148, 16,175, 74, 67,175,125,156,251, 10, 8, 8, 8, 8,252, 79,213, 37,251,231,205,155,247,222,255,135,180,138,235, + 50, 87,121, 29,108,221,197,198,194, 80,142, 53,135, 1,128,152,161,241,121, 29, 92, 18,220,119,236,200,123,220, 38,107,224,192, +129,239, 81, 74,189, 36, 18,201, 1,111,111,239,152, 13, 27, 54, 88,158,208, 19,195, 42,227,240, 40, 6,227, 17,205, 73,131,147, + 69,133,134,134,218, 41, 20,138, 81, 28,199, 5, 85,206, 47,149, 72, 8,217,126,227,198, 13, 61, 0, 90, 71,154,150, 19,130, 57, +149,175, 63,161,148,206,175, 39,253, 86,239, 91, 19,127,127,255, 0, 27, 27,155, 87, 8, 33,173, 42,243,127,199, 96, 48,252,144, +158,158,158,242,191,118, 3, 82,169, 84, 10, 74,233,179, 18,137,100,188,171,171,107,199,220,220,220, 15,213,106,245,231, 77, 60, +103,197, 0,102, 59, 59, 59,191,224,236,236, 28, 88, 80, 80,144, 84, 82, 82,178, 13,192,103,148,210, 6,175,211, 37, 83,125, 58, + 63, 53,168,231,194,223, 15,158, 94,178,112,157,250,194,195,159, 47,126, 71,229,246,116,159,110, 11, 15, 29, 56,247,209,199,235, +212, 5,141, 76, 27,131,255,246, 35,229, 43,159, 82,233,191,248,184,180, 7, 48,151,227, 56, 9,195, 48,159,103,101,101,157,253, +183,159, 75, 97, 97, 97,115,100, 50,217, 36,134, 97,146,180, 90,237,171, 26,141, 38,243, 49,221, 11,153,102,205,154, 57,164,165, +165,149, 82, 74,121, 8, 88, 69,151, 46, 93,180,102,179,217,179,190,125,164, 82,105,206,249,243,231,189,158,192,236,231, 85, 53, +253, 1,200, 1, 32,170,124,111,170,252,175,173,177, 77, 91,199,231,255,188,193, 82,183,130,163,216, 88, 24,154,175,189, 61, 38, + 55,235,234,243, 0,224,161,108,191,205,205, 43,252, 87,117, 43,153, 57, 58,108,164,189,196, 86,252,149, 72, 36,105,111, 48, 25, +221, 37, 98, 73,158,153,181, 92,101, 76,116,114, 86,252,174,116,107,126,120,232,208,161,161, 0,156, 34, 35, 35, 47,155, 76,166, +142,159,127,254,185,114,231,206,157,109,227,226,226, 94, 28, 54,108,216, 62, 74,233,145,125,251,246,233, 27,117,209,246,234, 37, +246, 44,114, 29, 39, 18,139,135, 2,104, 75, 41, 0, 34,186,206, 91,204, 7,114, 92,242,127,160, 49, 49,108,147, 79,236, 40,183, + 80,194,155,223,149,136,104, 15, 11, 71,206, 80, 70,186,242,124, 92,126, 66, 35,110, 40, 86, 25,135,166, 26,140,135,191, 43, 18, +137,190,224, 56,110,230,227, 60, 89, 66, 67, 67,237, 28, 29, 29,223, 95,191,126,189, 99,171, 86,173, 8, 0,196,197,197, 57, 79, +155, 54,173, 69,155, 54,109,150,220,184,113, 67, 87,155,225, 35, 4,115,120,158, 50, 0,192, 48,100,174,151,151,151,171, 88, 44, +254,211,177,101, 89, 86, 65, 8, 94,231,249,138,101, 18, 24,134,204, 33,132,172,105,200, 44, 6, 5, 5, 61,219, 62, 50,122,250, +219,239,206,245,242,116,115,119, 96, 57,214,172, 86,103,169, 86,127,254,159,206, 65, 65, 65, 95, 37, 37, 37,237,105, 66, 5, 64, +124,125,125,199, 72, 36,146, 33, 0, 90, 85,110,190, 99,177, 88,246,103,102,102,254,106,109, 69,222,174, 93,187,223, 25,134,105, +222,152,223,230, 56, 46,253,250,245,235,221,155,114,140,124,124,124, 70,251,248,248,124,223,185,115,103,219,246,237,219, 67, 42, +149,226,147, 79, 62,153, 13,224,115,107,140,148,173,173,237, 24, 59, 59,187,160,178,178,178, 68,189, 94,191, 83, 38,147,245, 93, +179,102,141, 95,183,110,221, 28,180, 90, 45, 17,137, 68, 94,251,246,237, 27,247,197, 23, 95,244, 39,132,244,161,148,214,123, 77, + 21, 38,241, 11,229,146,176, 30,133,137,167, 22, 2, 24,248,167, 99,110,176, 25, 47,146,248, 13, 17,209, 43, 25, 0, 62,107, 76, + 5,237,235,235,187,198,203,203,107,130, 94,175, 55, 16, 66, 40, 33,132,182,105,211,166,234,115, 0,128,201,100, 42,188,123,247, +110,203,250,180, 2,186,184,198,138, 24,145,111,157,199,131,231, 50, 83,206, 23, 60,242,212, 45,148,210,153,215,174, 93, 27, 37, + 22,139, 73,187,118,237,236, 8, 33,253,173, 53, 23, 42,149, 42,148, 16,178,128, 82,122, 57, 43, 43,235, 43, 74, 41,231,227,227, +211,155, 82, 90,125,175, 80,171,213,167, 42,207,129,175, 66, 66, 66,134,221,191,127,127,189, 90,173, 94,218,212,244,182,104,209, + 98,242,140, 25, 51, 22, 77,154, 52, 73,145,159,159,223,236,153,103,158,249, 25, 64,143, 71, 41,131,168,168, 40, 73,118,118,246, +236,182,109,219, 78,139,142,142, 86,222,190,125, 59, 91,165, 82,173,245,246,246,254, 44, 46, 46,174, 65,195,222,182,109, 91,149, + 88, 44,158, 0, 96, 92,101, 5,186, 21,192, 15, 87,174, 92, 73,250, 95, 48, 88,102,179,217,243,248,210,133, 32, 34, 17,108,122, +244, 5,207,243,200, 91,185, 8,108, 65, 30,220,151,174, 5,203,178,232,219,183,175,231, 19,154,253, 75,255,223, 18, 92,171,193, +146, 41,108,165, 28,107, 14,203,205,186,250,124,199, 1,107,157, 0,224,210,225,233,207,187,249,180,190, 41, 19,219, 38,200, 29, +109,118,141, 28,218,183,253,168, 33, 61,137,175,210, 19,153, 89, 57, 94,223,109, 61, 50, 96,255,145, 83,187, 80, 49, 47, 69,131, +148,148,148, 44,107,214,172,153,199,137, 19, 39, 82,101, 50,153,194,198,198,134,140, 30, 61, 90,241,226,139, 47,134,159, 60,121, + 50,232,240,225,195,163,134, 15, 31,126, 88, 42,149, 30,216,190,125,123, 97, 67,122, 94,109, 70,132,123,139,189,119, 12,127,118, + 96,243,193,253, 60,101,205,188, 61,192,243, 54,184,155,108,246, 63,118,230,202,128,131,135,143,190,235, 25, 62, 98,116,206,237, +221, 55,172, 45,156,136, 8, 39,103, 5, 67,103, 41,100,244,133, 1, 61,194, 3,134, 14,236, 74, 2,131, 3,145,112, 39, 33,232, +212,233,203, 19,122,119,116, 72,209,155,200, 86, 61, 79, 86,221,188, 89, 92, 84, 95, 84,233, 97,147,209,167, 79,159, 72,133, 66, + 97,170,185,159, 94,175,151, 17,130, 62,141, 53, 24, 53,127,195,100, 50, 50, 18,137, 12, 34, 17, 51, 35, 58, 58,186,139, 86,171, + 61, 97, 48, 24,214,229,229,229,101, 61,234,201,162, 80, 40, 70,125,253,245,215,142, 97, 97, 97, 68,167,211,193, 98,177,192,223, +223,159,121,255,253,247,157,150, 45, 91, 54, 26,192,166,202,138,228,102, 61,233,196,119,223,125,215,202,203,203,203,252,240,103, + 90,173, 86, 58,116,104,227, 22, 8,240,243,243, 11,140,138,238, 52,253,135, 77,155, 58, 21, 23, 20, 24, 54,174, 90,127,197, 40, +150,235,154,181, 10,149, 46, 92,180,212,233,163, 15,230,191,233,231,231,119, 51, 35, 35, 35,217, 90, 77,165, 82,233,223,188,121, +243, 93,239,189,247, 94, 68,247,238,221, 37,158,158,158,208,106,181,184,123,247,110,196, 31,127,252,241,236,158, 61,123,102, 43, +149,202,145, 89, 89, 89, 13, 62, 76, 80, 74, 91,236,253,228, 99, 79,185,155, 59,120,139, 5, 46,109,218, 87,127,166, 57,121, 4, +188,197, 2,222, 98,129,223,224,103,171,246, 71,239,222,189,155, 52, 37,185,175,175,175, 42, 52, 52,244,167,121,243,230, 73,141, + 70, 35,174, 94,189,138,243,231,207,243, 57, 57, 57, 43, 26, 50, 87,132,144,163,139, 22, 45,242,237,222,189,187, 67, 94, 94, 30, + 56,142,115,223,179,103,207,228,200,200, 72, 71, 95, 95, 95,217,230,205,155,171, 86, 8,112, 13, 10, 10,114,125,241,197, 23, 77, + 63,254,248,227,108, 0,255,169, 43,114, 85,148,200, 47,204, 22, 7, 13,104,217,225, 21,100,139,143, 12,152,213, 95,121,200, 57, +136,169,142,100, 13, 12, 14,118, 8, 12,179,157,107,239, 24,225, 90,172, 62, 54,119, 96,112,240,183,135, 18, 19, 75,173, 56,215, + 25, 31, 31,159, 53,131, 6, 13,122,105,253,250,245,182,119,238,220,177,109,213,170, 21,120,158, 7,203,178,224, 56,174,106,221, + 77,212,156, 48,184, 46, 68,140,200,247,143, 93,183, 60, 21, 10, 69,245, 34,236, 85,255,203,203,203,209,127,124,231,199,114,179, +229,121, 94, 86,229,203, 89,150,181, 1, 32, 1, 96,178,242,235,139,207,157, 59, 55,250,208,161, 67, 99,151, 46, 93,218, 2,192, + 84,158,231, 23,222,185,115,167, 39, 0,180,106,213, 74, 6,224,148, 74,165,122,117,210,164, 73,147,166, 76,153,130,241,227,199, + 47, 36,132, 44,107,106, 84, 79, 38,147,125,240,214, 91,111, 41, 44, 22, 11, 20, 10, 5,204,102,115,240,163,228, 63, 60, 60, 92, +170,211,233,118, 46, 94,188,120,200,240,225,195, 33, 22,139,193,243,188,247,239,191,255,190,252,157,119,222,233, 26, 21, 21, 53, +162, 46,147, 21, 21, 21,213, 30,192, 71, 33, 33, 33,253,199,143, 31, 47,234,214,173, 27,202,202,202,112,244,232,209, 5,187,118, +237, 90, 16, 21, 21,117, 14,192,194,184,184,184,152,199, 85, 57, 70, 69, 69,165, 1,240,175,124,155, 30, 23, 23,215,236,223, 80, +105,139,236, 29,112,119,100,111, 4,221,201, 7, 0,100,127,181, 18, 0,224,248,193,167, 66,136,239,255,131,193,106, 8,157, 78, + 23, 57,127,250, 56, 48, 76,197, 83, 98, 72,160, 63,150,191, 55,145,236,221,127, 36,178,129,240,230, 42,142,227, 90,184,186,186, +190,107, 48, 24,108, 86,175, 94,109,163, 86,171,195,118,238,220, 73,175, 93,187, 6,169, 84, 10, 39, 39, 39, 60,253,244,211,242, + 1, 3, 6, 4,159, 59,119,206,127,215,174, 93,195, 7, 15, 30,252,195,129, 3, 7,246,213,165,235,222,102, 88, 11, 47, 15,239, +211,159, 46,125,195, 53, 34, 48, 8, 38,139, 5,153, 57,106, 80,200,224,237,105,135,177,207,182,147,118,235, 32, 13,249,236,203, + 19, 49, 94, 17,195,159,210,222,220,123,171,161, 60,246,136,178,187, 52,162,103,112,212,176,254, 93,153,144, 86,225,144,202,109, +171, 63,107, 19, 25,137, 54,145,145,100,226,196,210,192,107, 87,174,189,127,248,196,197,247,122, 68,217,197,157,137, 43,175,111, + 97, 76, 82,211,100,204,152, 49, 3, 74,165,242,129, 29,178,178,178, 16, 19,115,234,145, 34,239, 53,223,124,248,225,135,178,242, +242,242,126, 27, 55,110,236,173, 82,169, 62,214,104, 52,251, 30,241,233, 41, 56, 44, 44,140,148,149,149,193,100, 50, 33, 53, 53, + 21,185,185,185,240,240,240, 32, 44,203, 6,215, 97, 48,180,132,144, 79, 24,134,204, 37,132, 64, 38,147,167,188,249,230,155,177, +149,159, 5,237,219,183,207,118,232,208,161, 58, 66, 72, 82,197, 77, 93,238, 41, 18, 49, 1, 21,157, 4,241, 73, 67,230,210,214, +214,246,181,153,111,191,227, 81, 92, 80,168,183,148,150,154,237,121,142,117,180,145,144,146,220,252,162,148, 12, 71,221,107,147, +166,139, 63,152, 55,235, 53, 0, 86,181,217, 43,149, 74,255,176,176,176, 75,223,126,251,173,167,155,155, 27,138,138,138,144,159, +159,143, 75,151, 46,129,231,121, 12, 24, 48, 64, 30,217,182,109,228,103,171, 86,157, 87, 42,149, 93,172, 49, 89,114, 55,119,236, +236, 89,113,105,140, 78,202,175, 62, 7, 14,191, 48,180,122,159, 23,211,138, 1,160,106,189,200,166, 70, 72,186,116,235,214, 77, + 10, 0,179,103,207, 46, 41, 47, 47, 95, 78, 8,249, 89,163,209,168, 27,248,234,236,247,223,127,223, 39, 48, 48,176,217,207, 63, +255,140,178,178, 50, 0,240, 12, 12, 12, 68,139, 22, 45,184,211,167, 79, 35, 52, 52, 20, 14, 14, 14, 56,125,250, 52, 46, 92,184, +128,246,237,219, 59, 72,165,210,231,235, 50, 88, 79, 13,234,185, 80, 46, 9,235,209,178,195, 43,176,119, 84,226,219, 95,126,197, +221,216, 31,122, 24, 45,241, 11,223,155,234,243,178,136,202, 95,241,105, 97, 63, 47,160, 67, 47,183,144,214,195,209, 60,234,170, +187,145,251, 61,121,225,148,160, 21, 98, 27,195,230, 69,159,106,242,235, 50, 87,222,222,222, 43, 7, 14, 28, 56,122,253,250,245, +206, 0,112,227,198, 13,100,103,103,195,195,195, 3, 54, 54, 54,144, 72, 36, 16,139,197,141, 90, 42, 75,161, 80, 32, 43, 43, 11, +230,202,201, 21, 57,142, 67,105,105,105,245,162,225,139, 23, 19,102,209, 34,235,162, 77, 74,165,178,123,100,100,228, 22, 95, 95, + 95,191,154,219, 7, 14, 28,136,137, 19, 39,162,188,188, 28,237,219,183,239,230,229,229,101,124,227,141, 55,192,243, 60,180, 90, +109,217,141, 27, 55,250,169,213,234,139,117,228, 91,159,157,157,141, 73,147, 38, 33, 61, 61,125,138, 74,165, 74, 99, 24,198, 70, + 38,147, 85,125, 46, 83,169, 84,161,161,161,161,107,222,120,227, 13,164,166,166, 34, 33, 33,225,210,163, 52,153,202,229,242,114, +142,227, 60, 89,150,133, 94,175,199,128, 1, 3,108,194,194,194,180, 18,137, 36,190,168,168,104,108, 70, 70,134, 85, 15,109,132, + 16,177, 82,169,244,150, 72, 36,235,167, 79,159, 62,168,103,207,158,136,143,143,199,225,195,135, 49,108,216, 48,244,234,213, 11, + 11, 22, 44, 24,188,112,225,194,217, 0,234,122, 24,216,177,115,231,206, 0, 95, 95,223,234, 37,145, 28, 29, 29,241,218,107,175, + 97,220,184,113, 56,120,240, 96,215,143, 63,254,120,103,175, 94,189, 60, 99, 30,161,165,226, 33,252,227,226,226,170,204,150,255, +191,165,210,150,119,232,138,160, 59,249, 72,106,229, 86, 17,193,175, 52, 90, 85,239,225, 19, 41, 56,155,127,179,193, 50,233,117, +102, 49, 67,227, 61,148,237,183, 93, 58, 60,189,186,137, 16, 44,141, 55,153,117,230,138,176, 57, 69,137,142,133, 66,206, 32, 53, +171, 20, 55,147,242,106,187,225,223,124,200,152,189,189,118,237, 90,124,242,201, 39, 3,245,122,125, 89,114,114,114, 86, 89, 89, + 89,249,216,177, 99,137, 68, 34,193, 31,127,252,129,148,148, 20,180,105,211, 6,206,206,206,232,222,189,187,244,153,103,158,241, +123,245,213, 87, 95, 6,176,175, 54, 77, 50,122,180, 72, 41,147,255,182,114,233, 24, 87, 34, 74, 64, 66,122, 17,130,125, 59,194, +205,201, 15,234,220, 50,196,221, 62,136,132,196, 3, 8,246,245,199,196,151,130,157, 63,255, 58,119, 63,137,122, 51,152,198,253, +183,159, 87,109, 17, 23, 27, 41, 23,253,225,218,107,224,202, 19, 65, 45,233,160,230,236, 63, 87,238,206,126, 8,107,231, 5, 91, +153, 7,115,227,206,231,209,117,229,157, 82,170, 21,137, 68, 95, 49, 12,153, 76, 8, 65, 68, 68,155,228,213,171, 87,215,246,228, +106,138,136,104,147, 44, 18, 49,129,148, 82, 16,194,172,231,121, 78, 91, 95, 58, 31, 50, 50,159,202,100,242,119, 42,162, 25,126, + 57, 39, 78,156,176, 60,251,236,179,248,248,227,143,197,139, 22, 45, 90,224,235,235,123, 55, 51, 51, 51,177,190, 99, 84, 23,193, +193,193, 1, 67,135, 14,149, 3,128,197, 98, 65, 70, 70, 6, 50, 50, 50,144,159,159, 15,139,197,210, 80,197, 63,223,203,203,203, +245,187,239,190,107,245,230,155,111,198,170,213,234,153,149, 77, 25,171, 1,180, 33,132, 36,213,216,134, 13, 27, 54,116,120,237, +181,215,238,104,181,218,249, 13,165,147, 16, 18,230,226,236, 98,183,241,179,245,177, 30,114, 17,113,247, 83, 17,169,163,179,152, +177,119,144, 83,145, 72,223,204, 79,229, 64, 8, 9,171, 35, 93, 55, 31,210, 34,205,155, 55,223,181,105,211, 38, 79,137, 68, 2, +142,227,224,225,225,129,228,228,100, 20, 21, 21,161,180,180, 20,201,241,119, 16,224,235,139, 25, 19, 95, 87, 46,254,116,213, 46, + 66, 72,135,154,149, 88,109,233,228, 31, 42,159,186, 12, 84, 93,219,173, 61, 70, 60,207,167,104, 52, 26,216,218,218,162, 85,171, + 86,246,151, 47, 95, 62,163, 86,171,213, 13,105,218,216,216, 60,223,173, 91, 55,135, 95,126,249, 5, 81, 81, 81,112,114,114,194, +169, 83,167,112,227,198, 13,152,205,102,166,180,180, 20,246,246,246, 88,177, 98, 5,252,253,253, 81, 92, 92,140,180,180, 52, 55, +137, 68,226, 94,151,230,239, 7, 79, 47, 41, 76, 58,181, 48, 91,116,100,192,183,191,252,138, 55, 94, 28, 3,111, 54,233,140, 75, + 48,179,100,224,224,174, 31,136, 36,126, 67,236, 28, 34, 92, 90, 68, 12,135, 84,102,143,169,115, 62, 66,194,205,223, 92,116,165, + 55,166,112,150, 12, 63, 0, 51, 30,214, 36, 21, 5,196,168, 84,170,215, 55,108,216,224, 80,181,157, 97, 24, 72, 36,146, 7,140, + 85,213, 34,237,181,149,105,109,229,201,113, 28,204,102, 51,204,102, 51,120,158, 71,110,110, 46, 74, 75, 75,225,226,226, 82,177, +195, 34,128,128, 16, 90,199, 42,244, 53, 53, 25,134, 25,251,235,175,191,250,217,218,218,254,105,191,140,140, 12, 20, 23, 23,195, +206,206, 14,206,206,206,176, 88, 44, 96, 89, 22, 70,163,209,190, 87,175, 94,147, 1, 92,172, 77, 83, 36, 18,205,154, 52,105, 82, +183,253,251,247, 7, 45, 93,186, 20,102,179,121,101,110,110, 46,170, 12, 90,247,238,221, 59, 83, 74,239, 78,159, 62,189,210, 16, + 46,182,148,149,149,189,213,212,115,201,203,203, 43,124,232,208,161, 46,199,143, 31, 71,247,238,221, 97, 52, 26, 49,121,242,100, +199,215, 95,127,221,241,220,185,115, 30,171, 87,175,222, 12,160,111,125,154, 81, 81, 81, 18,173, 86, 59,119,236,216,177,179,251, +246,237,235,148,151,151, 7,185, 92,142,109,219,182, 97,227,198,141,135,204,102,243,251, 59,119,238, 92,246,205, 55,223, 12, 24, + 62,124, 56,190,249,230,155,233,149,221, 34,248, 90, 52, 85,126,126,126,184,126,253, 58, 92, 92, 92,224,238,238,142,226,226, 98, + 92,184,112, 1,151, 46, 93, 66, 88, 88, 24, 8, 33, 46,149,117, 26,219,152,235,232, 81, 34, 85,141,153,206,232,113,105, 86,175, +177, 90,227,220, 5, 42, 22,111,165,143,144, 78, 66,136, 88,165, 82, 13,119,118,118,158, 66, 41, 21, 23, 22, 22,110,176,181,181, +221,145,152,152,104,250,187,242,254, 68, 26, 44, 66, 72,213,113,233, 69, 41, 61,237,115, 7, 37,121, 29, 92, 18,220,188,194,127, +117,243,105, 93, 81,136, 44,141, 23,201, 93, 18,188, 98,117, 37, 0, 96,182, 80,156,139, 47,196,245,251, 90, 92,191,151, 13,123, +155,134,159,186,221,220,220,208,181,107, 87,236,221,187, 23, 25, 25, 25,246, 43, 86,172,104, 97, 54,155,205, 67,135, 14,213, 52, +111,222,188,176,123,247,238,144, 72, 36,184,120,241, 34, 74, 74, 74, 32, 18,137, 32,147,201,192,243,124,157,145, 54,207,123,220, + 43,227, 39, 70, 6,185, 59, 51,216,247,199, 17,116, 14, 27, 1, 91,185, 4,185,133,122, 48,132, 32, 49,229, 56, 56,206, 14,215, +226,211,209, 37,194, 14, 61, 58, 57,249,150,157, 40,152, 8,224, 75,171,162, 54,234, 24,200,154,143, 4,108, 90,131,154, 18,193, +155,212,160, 18, 79,148,235,108,144,151,154,134,248, 11, 59, 64, 89, 93,131, 58, 28,199, 77,117,119,119,207,153, 63,127,126,247, +208,208, 80,211,212,169, 83,111,166,164,164, 44,168,185, 79, 64, 64,192,178,117,235,214, 33, 33, 33, 33,117,249,242,229,103,243, +242,242,150, 52,242,194,156, 67, 8, 89, 5, 0, 82,169,180,104,219,182,109, 79,157, 58,117,234,157,207, 62,251,204,101,218,180, +105,162,137, 19, 39, 78, 2, 48,171, 49,154,189,122,245, 18,165,167,167,183, 82, 40, 20, 47,204,154, 53, 75, 97, 54,155,161,209, +104,144,145,145,129,162,162, 34, 48, 12,131,132,132, 4,158, 16,114,183,222, 19, 77, 44,214,215,214, 44, 88,199,205,221, 92, 91, + 31,173, 58, 40, 51, 89, 44, 70, 59, 63,149,101,232,240,254,109,110, 92,186,154,160,112,117,101,218, 68,183, 15,143,191,159, 26, + 71, 42,154, 96,172,106,134,241,245,245, 29,179,104,209,162, 54,142,142,142,224,121, 30, 78, 78, 78,200,205,205,133,217,108, 70, +113,113, 49, 76,165, 37, 48,151, 20,227,122, 90, 50,186,247,122, 26,207,116,233,220,234,128,197, 50, 6,192,214,250,116, 93,219, + 70, 86, 71,174,182, 7,185, 85,111,127, 33,181,168,218, 0, 28,236, 24, 2,185,189, 29, 34,102,206,111,242,197,156,149,149,117, +165, 89,179,102, 7, 7, 12, 24, 48,104,226,196,137, 76,118,118,246, 97, 47, 47,175,110, 90,173,246,118,125,223,179,183,183, 15, +206,203,203, 67,105,105, 41,156,156,156,176,122,245,106,120,122,122, 66,167,211,225,242,229,203,212,215,215,151,156, 58,117, 10, + 62, 62, 62,200,207,207,135,217,108,134, 78,167,203, 54,153, 76,117, 30,163,202,102,192,129,179,158, 81, 30,186, 27,251, 67, 15, + 31, 36, 95, 30,245,110,143,123,215, 46, 37,100,156, 60,241,199, 18,214, 96,147, 81,148,121,108,110, 96,244, 53,247, 41,239, 46, +198,186,149,139,112,247,226,233, 2, 47,255,210, 47, 57, 98,252,161, 91,255,122, 35,232,134, 59,119,238, 56, 92,187,118, 13, 12, +195,192,209,209, 17,118,118,118,213, 11,155, 87,153, 43,177,216,250, 0,125, 85,147, 98,149,185,202,205,205, 69, 98, 90, 2,118, +158,220, 12, 11,107,113,223,212,201, 49, 59, 72, 42,189,238, 94, 76,222,203,187, 73,175, 52,112, 29,110,120,225,133, 23,198,248, +248,248, 56,212,220,222,174, 93, 59,188,244,210, 75, 56,124,248, 48, 98, 99, 99,193,243, 60,120,158, 7,165, 20,185,185,185, 89, + 28,199,253, 80,151,102,122,122,122,145,175,175,239,128,215, 95,127, 61,110,247,238,221,142,159,126,250,105,245,194,230, 85,205, +162, 85,255,127,249,229, 23,196,197,197, 45,204,206,206,142,111,202,121,228,237,237, 29, 54,116,232,208,223,191,252,242, 75,103, +173, 86,139,188,188, 60,148,151,151, 67, 34,145,128,101, 89,132,132,132, 16,142,227, 2, 26,106, 14,100, 24,230,183,147, 39, 79, +246,111,209,162, 5,170, 30,204,254,248,227, 15, 76,156, 56, 49,223,214,214,246,249,212,212,212,114,149, 74,181, 96,255,254,253, + 3,218,181,107,135, 54,109,218,120,231,228,228, 56, 0, 40,174,227, 1, 2, 28,199, 85, 31,159,239,190,251,174,250, 51,131,161, + 98,201, 73,147,201, 68,162,163,163, 3, 46, 95,190,220,152,193, 45,117, 69,170,210,107,188, 79,255,183, 84,218,105, 63,125,139, +212,247,166,161,217,153,138, 91,110, 92,120, 69,151,171,102,167,239, 84,236, 48,110, 92,163,244, 84, 42,149, 27,165,244,141,190, +125,251,206, 28, 48, 96,128,135, 82,169,132,155,155, 27,110,220,184,209,237,200,145, 35, 95,248,250,250,126,205,113,220,215,214, + 68,235, 31,149,135,189,200, 19, 19,193,162,148,146,202,204, 17,140, 26,197,185,239,216,145,167,110, 37, 51,203,196,182, 9, 0, + 96, 50,235,204, 94,177,186,138,105, 26,150,252, 2, 10, 10,142,175,184, 33,241,148,130,179,114, 28,136, 33,254, 57,240, 69,191, +193,211,101, 56,190,249,102, 55,114,114,114,164,171, 87,175,110,190,123,247,110,223,177, 99,199,166,135,132,132, 20, 63,253,244, +211,216,188,121, 51,188,189,189, 97, 50,153,192,243,124,157,238,205,193,149, 27,213,169, 77,136, 40, 33,237, 6, 58,180,120, 14, + 1,202,238, 72, 84, 23,163,176,212,136,252, 98, 61, 66, 67,223,133,182, 64,135,146,114, 3,110,220,253, 25,190,202, 64, 70, 36, + 73, 28, 96,173,193, 50, 38,110,129, 49,249, 87, 72,149,189, 33, 11, 28, 3,137,123, 23,100,220,141,193,213,227,171,144,121,239, + 44, 40,207,193,203, 47,204,170,188,139, 68,162, 13, 71,143, 30,109,255,212, 83, 79,137,251,244,233, 19,225,235,235, 27,145,153, +153,121,179,178,114,143, 24, 48, 96, 64,132,167,167, 39,214,172, 89,163, 19,137, 68, 27,154,248,244, 83,179, 73,237,152, 74,165, + 42,255,237,183,223,214,142, 31, 63, 30, 62, 62,214,197,142, 23, 47, 94, 76,190,248,226,139, 85, 10,133, 98,164, 76, 38,115,244, +240,240, 40, 30, 56,112,224,125, 7, 7,135,228,148,148, 20, 80, 74,225,234,234,138,178,178, 50, 36, 36, 36,240, 71,143, 30, 45, +178,183,183,223,249, 79,156,192,102,179,249,114,122, 90, 90,104,183, 30,221,148,191,199,222,190, 50,242,217, 33,189, 25, 49,195, +164,164,101, 93,246,112,115,181,251,227,220,217, 18,179,217,124,217, 26, 45,137, 68, 50,164,123,247,238,226,194,194, 66,168, 84, + 42,228,230,230, 66,173, 86,195, 98,177,192, 80, 92, 8,115, 73, 9,204,197, 69,160,186, 50, 36, 93,190,136, 86,126, 62,242,163, + 21,157,224,183, 54,244,196, 89, 91,132,138, 16, 82,189, 77,238, 96, 15,133,131, 67,117,243, 71, 35,110,142,195, 29, 29, 29,231, +150,150,150, 30, 84,171,213, 75, 77, 38,211,212,229,203,151, 71,127,244,209, 71,238,115,231,206,117,156, 59,119,238,246,230,205, +155,183, 79, 77, 77, 53,214,233, 80,203,202, 18, 45, 22,139, 27, 0,175, 19, 39, 78,192,195,195, 3, 37, 37, 37,176, 88, 44,208, +235,245, 38, 23, 23, 23,155,252,252,124, 24, 12, 6,152, 76, 38, 56, 58, 58, 34, 46, 46,174,128,101,217, 6,155,156,157,131,153, + 37, 70, 75,252, 66,215,112, 59, 53, 71,221,122,150,234,249,194, 69,159,106,150, 0,248,108, 96,112,240,183, 38,254,116,114,194, +205,189, 46,201,151, 79, 21,104,238,233,130,190, 61,144, 84, 90, 79, 57, 82, 66, 8, 79, 8,161, 45, 91,182, 68,110,110, 46, 68, + 34, 17,236,236,236, 96,111,111,143,176,176, 48,100,100,100, 52,217, 96,213, 52, 87,199,207,239, 71, 94, 89, 22,190, 93,249, 11, +124,188,253, 24, 0, 30,234,236,140,126,175,206, 30,221, 41,176,187,203,242,228,179,133,117,246,107,211,104, 52, 87, 1, 56,214, +220,230,227,227,211,219,197,197,229,164,217,108, 70,106,106, 42,142, 30, 61,218, 43, 51, 51,179, 81, 21, 72,102,102,102,146,143, +143,207,128,103,159,125,118,115,155, 54,109,130, 41,165, 8, 11, 11,195,240,225,195,177,115,231, 78,220,190,125, 27, 37, 37, 37, +252,153, 51,103, 54,101,101,101, 53,169, 67,142, 82,169,108, 57,120,240,224,179,235,214,173,115,201,203,203,131,193, 96, 64, 89, + 89, 25,118,236,216,129,110,221,186,193,198,198, 6,107,215,174, 45, 97, 89,118, 93,125,230,138, 82,186,119,247,238,221,253,131, +130,130, 16, 31, 31,143, 51,103,206,192,195,195, 3, 10,133, 2, 67,135, 14,117,251,245,215, 95,167,134,135,135,175,146, 72, 36, + 75, 6, 13, 26, 4,142,227, 16, 27, 27,155,149,150,150, 86, 90,223, 49,170,179, 94, 49, 24, 64, 41,133,197, 98, 89,205, 48,204, +243, 81, 81, 81,207,196,197,197, 61, 82,167,232,127, 75,159,171,202,250,161,181, 68, 34,153,225,226,226,130,220,220, 92, 20,241, +128,125, 65,197,160,219,226,202,186,183,160,160,160,250, 94,211,162, 69,139, 3,122,189,254,189,170,250,165, 54,124,124,124,218, +218,218,218,206, 28, 58,116,232,216,193,131, 7,139,204,102, 51,246,239,223,143,117,235,214, 97,192,128, 1, 8, 9, 9,193,187, +239,190,235,100, 52, 26,231, 29, 62,124,120,110,171, 86,173, 14,151,150,150,206,175, 79,243, 49, 69,240,254,235, 69,158, 20,131, + 85,153,161, 94,213,159,140, 26,197,249, 0,133,149, 79, 52,238,174,174,174,235, 56,142,235,141, 15, 62,128,131,216, 9,169,137, +247, 80, 90,200,195, 98, 50,130,231, 41, 40,111, 93, 89,240, 69,191,193,241, 41,138,146,223, 9,204,102, 51, 60, 61, 61,177, 98, +197, 10, 20, 23, 23,139, 95,125,245,213,128,197,139, 23, 95, 53, 24, 12, 40, 47, 47,135, 94,175,135, 94,175,175,215, 96, 73,109, +140,109,154,121,181, 64,169,190, 35,108,101, 50,228,151, 24, 81, 88,106, 68, 94,145, 1,187,246,190, 8,163, 94, 7,214,100, 2, +103,102, 97,239, 53, 2, 33,174,189, 1,220,143,176,242, 64, 87, 38,154,133, 89,125, 12,102,245, 49,216,182, 91,128,189,107, 95, +126, 96, 63,150,181,174,201, 95,171,213,230,250,250,250, 30,142,139,139, 27,242,252,243,207, 35, 38, 38,230,149,170,136,146, 92, + 46,127,229,249,231,159, 71, 92, 92, 28,226,227,227, 15,107,181,218,220,199,116,178, 22, 25,141, 21,117,171, 92, 46,151, 17, 66, + 72,125,253, 50, 22, 47, 94, 76,214,173, 91,119,111,230,204,153,205,166, 77,155, 38,118,116,116, 68, 81, 81,145,253,230,205,155, + 61,199,143, 31,175, 90,178,100,201,153,236,236,108,108,218,180, 73, 31, 31, 31,111, 16,137, 68,241, 50,153,108,247,249,243,231, +141, 86,166, 39,168,178,105, 16,148,210,160,186,182, 89,139,193, 96,248,110,217,146,133,189,127,218,178, 45,172,101, 88,136,203, +193,163,167,174,184,185, 57, 42, 2, 2,130,228,197, 69, 69,198,117,171, 87,138,203,203,203,191,183, 82,174,149,187,187, 59,178, +179,179,113,255,254,125, 24,141,198,138, 38, 28, 93, 25, 76, 69, 69, 48, 23, 23, 2, 6, 61,100, 28, 7, 99,158, 22, 1, 65, 1, +192,127, 71, 24, 54,244,100, 86,171,193,170,250,175,112,114,132,204,206, 14, 34,137,216,234, 62, 88, 74,165, 50, 42, 50, 50,114, +219, 55,223,124, 35,157, 53,107, 86,167,230,205,155,175,203,206,206, 78,243,245,245,237,179,114,229,202, 75, 75,151, 46,149,143, + 29, 59,182,229,134, 13, 27,198, 3,216, 80, 79, 25,110, 59,120,240,224, 75,254,254,254, 94, 55,111,222,132,193, 96, 0,207,243, + 24, 56,112, 32, 0,216, 84,237,119,247,238, 93,189, 94,175,215,222,186,117,171, 52, 45, 45,205, 12, 43, 70,253, 45, 92,167,190, + 48,107,180,239, 72,165, 82,117, 94, 38,111, 22,200,232,226, 70,204, 26,237,251,233,170,237,153,134, 67,137,137,165, 11,167, 4, +173,208,149,222,156,226,226, 91,254,229,151,251,146, 74,173, 57,133, 42, 71, 12,194,221,221,189,186, 73, 80, 42,149, 86, 69, 63, + 81, 92, 92, 92,111, 19, 97, 93,149,119,113,113, 49,138,139,139,113, 47, 37, 30,185,165, 89, 56,182,245, 60, 56,142,171,142,142, +168,188,124,113,124,235, 37,135, 94,163,162,223,115,107, 75, 78,229, 95,167,151,173, 61, 79, 25,134,153,249,220,115,207,193,108, + 54, 99,248,240,225,248,229,151, 95,102, 2,104,244, 19,186, 90,173,190, 64, 8,105,113,255,254,125, 71,139,197, 50,108,232,208, +161, 63, 12, 26, 52, 8,231,207,159,199,137, 19, 39,122,153, 76,166, 4,142,227,244, 74,165,114,185, 82,169,244, 36,132, 44,215, +104, 52,245,142,118, 14, 13, 13, 29,235,224,224,176, 76,161, 80,148, 14, 26, 52, 72, 85, 21,185, 42, 47, 47, 7,203,178,200,204, +204,196,161, 67,135,178, 14, 30, 60,152, 69, 41,181, 45, 43, 43, 91,148,158,158,190,163,174,102, 65,139,197,178,231,183,223,126, + 27, 16, 20, 20,132,211,167, 79,227, 63,255,249, 15,130,131,131,177,105,211, 38,116,237,218, 21, 1, 1, 1,112,117,117,157, 81, + 82, 82,210,229, 63,255,249,207,160,200,200, 72,236,222,189, 27, 57, 57, 57, 95,212, 55,170,178,190,251,172, 94,175, 7,165, 20, + 79, 63,253,244,196, 89,179,102, 97,232,208,161, 71, 59,116,232,208, 49, 54, 54,246,158, 21,197,250,175,140, 84,213,120,136, 90, +209,183,111,223,185,109,219,182,197,150, 45, 91, 96,236,208, 29,118,155,246,225,230,144,110,160, 0, 84,155,246, 2, 0,110, 14, +171, 24,208, 17,208,103, 20,230,206,157, 59,104,196,136, 17,254, 0, 90,215,161,249,233,203, 47,191, 60,251,229,151, 95,198,149, + 43, 87,176, 97,195, 6, 92,189,122,181,186,206,179, 88, 44,184,115,231, 14,238,220,185, 3,165, 82,137, 33, 67,134,144, 55,223, +124,115,224,192,129, 3, 61, 0,116,248, 43,243,251, 39, 47,242,196, 69,176, 30, 12, 23,187,187,184,184,220, 90,183,110,157, 91, +167, 78,157, 68, 44,203,226,196,201,147,120,103,218,171, 24, 48,100, 10, 12, 70, 25, 88, 3, 1, 39,181,183,238, 23, 29,135,160, +228,119, 2,222,126, 16, 76, 38, 19, 38,254, 34,133, 51,209, 98,245, 43, 94, 0, 64,244,122, 61,140, 70, 35,244,122, 61,202,203, +203, 81, 94, 94, 14,142,227,234,188, 75,150, 22,217,153,205, 22, 30,234,156, 52,100,102,221,132,147,189, 63, 40,227, 7,109,129, + 14, 4,158,176, 24,238,130,175,188, 48,141,250, 76,148, 27, 31,205, 20,115,165,201,181,132,174,173,239, 83,169,211,233,182,109, +217,178,229,153, 85,171, 86, 73, 7, 13, 26, 20,236,235,235,219, 17, 0, 70,142, 28, 25,236,224,224,128, 45, 91,182,152,117, 58, +221,182,199,120,178, 14,233,220,185, 51, 74, 75, 75,145,148,148, 20,215, 80,167,215, 47,190,248, 98,205,204,153, 51,155,205,159, + 63, 95,108, 48, 24, 80, 82, 82, 2,137, 68,130, 9, 19, 38, 72, 75, 75, 75, 3, 86,175, 94,173,185,112,225, 66,172,201,100,218, +152,152,152,216,232, 57,166,246,237,219,103, 11,160, 77, 67,219,172, 69,163,209,232, 85, 42,213,244,165,203,150,254,252,233,202, +149,158, 5,249,133, 9, 82,153,194, 96,171,144,187,206,125,103, 9,213,106,181,179,181, 90,173,206, 90,189,194,194, 66, 36, 39, + 39, 67,161, 80, 64, 42,149,130,211,149,129, 47, 47,135,177, 48, 31,140,201, 8, 57,199,193,213, 86, 14, 63, 47, 47,248,123, 90, +183,180, 85,214,169,163, 56, 52,102,200, 3,205,130,132, 16, 28,238,218, 18, 50,123, 59,216,216,219,163,251,158, 51, 21, 15, 12, + 82, 41,176,250, 27,107,154,113,220, 85, 42,213,111, 95,124,241,133, 52, 47, 47, 15,183,110,221,186,150,154,154, 90,236,234,234, +234, 32,145, 72,248,123,247,238, 29,191,123,247,238,144,128,128, 0, 80, 74, 27, 26,253,245,217,174, 93,187,250,117,235,214,141, + 13, 8, 8,176,203,205,205,245, 47, 44, 44, 36, 89, 89, 15,246, 97,190,124,249,178, 77,122,122,186,142,231,249,221,168,152, 7, +171,193, 19,127,214,104, 95,155,115, 87, 48,189,167,123, 64, 91, 39,143,182,200,179, 92,109,123,225, 90,246,244, 89,163,125,215, +174,218,158,105,224,136,241, 7,206,146,225, 39,182, 49,108,182,210,160,211,240,240,112, 80, 74,113,249,242,101,156, 57,115, 6, +103,206,156, 65,106,106,106,245, 62, 78, 78, 78, 56,118,236, 24,122,247,238,221,152,235, 18, 74,165, 18,206,206,206,216, 29,243, + 35, 54,126,250, 75,117, 71,247, 42,242,242,242, 96,107,107,139,101,239,172,178,127,117,206,168, 37, 0,158,177, 70,219,207,207, + 47,176, 91,183,110,131,189,188,188, 80, 88, 88, 8, 15, 15, 15, 68, 71, 71, 15,245,242,242, 10,208,106,181, 77,154,167,205,100, + 50, 77,238,221,187,247,210,217,179,103,195, 98,177, 96,204,152, 49, 72, 78, 78,222,150,148,148,180,186, 89,179,102,211,167, 76, +153,226,229,238,238,142,201,147, 39,219, 1, 24, 89,151, 78, 88, 88,216,219,243,230,205,251,120,220,184,113,114,139,197,130, 19, + 39, 78, 32, 53, 53, 21, 70,163, 17, 44,203, 34, 45, 45, 13,139, 22, 45,202, 42, 41, 41,233,249,112,255,205,218,200,206,206,158, +189,103,207,158,129,161,161,161, 56,124,248, 48, 38, 77,154,116,192,222,222,190,245,224,193,131,253,237,236,236,112,237,218, 53, +152,205,102, 40,149, 74,175,121,243,230, 13,233,223,191, 63,142, 31, 63,142, 37, 75,150,236,247,246,246,254,172, 33, 19, 44, 22, +139,255,212,231, 83, 36, 18,225,234,213,171,120,250,233,167, 49,119,238, 92, 0,192,241,227,199, 29,159,121,230,153,155,189,122, +245,114,140,137,137, 49, 54, 37, 82,245,111, 25, 69,104,103,103, 55, 97,211,166, 77,184,127,255, 62,206,158, 61,139,252,252,124, +152, 76, 38, 20,243, 21,125,174,228,149,145, 43,234,211, 12, 93,103,191,135, 23,134,140, 68, 86, 86, 22, 24,134,113,175,167, 94, + 24,251,222,123,239,225,208,161, 67, 88,177, 98, 5, 74, 74, 74,106,221, 79,161, 80, 32, 58, 58, 26,237,219,183, 71,114,114, 50, + 0,184,255,213,249,125, 34, 35, 88,117,225,226,226,178,250,171,175,190,114,235,214,173,155,168,188,188, 28, 60,207,163, 75,231, +206, 24,255,202,120, 28,217,189, 3,202,192,222, 16, 25, 20, 96, 29,108,173, 51, 40,126, 63,160,160,160, 0,114,185, 28, 54,149, + 29, 74,175,103, 86,135,119, 97, 48, 24,170,205, 85,213,255,250, 96, 77,178,184, 59, 73,156, 95, 73,217, 85, 92,140,251, 9, 22, +147, 9, 1, 45,230,195,200,186,195,206,243, 53,232,205,191,193, 92, 84, 49,114, 87,230,216, 11, 90,109, 30, 0,114,211,202, 3, +253,103, 51,165,255,115,103,119,158,179,222, 96, 21, 22, 22,150, 40,149,202,189,231,207,159, 31, 61,114,228, 72, 28, 59,118,108, +124,165,193,194,249,243,231,145,156,156,188,183,176,176,176,228,113, 28, 92, 31, 31,159, 87, 6, 13, 26, 52,186,117,235,214, 56, +118,236, 24, 88,150,109,112,136,162, 88, 44, 30, 53,109,218, 52,113, 85,200, 93, 42,149,162,164,164, 4,217,217,217,232,209,163, +135,116,230,204,153, 33,229,229,229,239,166,165,165, 53,169, 98,168, 57, 98,176,182, 81,132, 85,219, 26,105,178, 50, 67, 67, 67, + 19,245, 6,131,196,197,205, 85,231, 96, 39,163, 37,165,165,204,245,235, 87,178,180, 90,109,106, 35,164,238,220,186,117, 43, 66, +173, 86, 35, 45, 45, 13,156,174, 12,140,209, 8, 98,212,163, 79,151,206, 80,128, 66, 14, 30, 82,222, 2,137, 72,140,210,210, 50, + 0,184,211, 96,212,182, 70,133, 80,101,174, 8, 33,176,177,183,135,204,193, 30,114,123,251, 7, 34, 90,214, 12,252, 82, 40, 20, + 63,111,216,176, 65,169, 84, 42,241,249,231,159, 67,169, 84,134,245,237,219, 87,215,179,103, 79,133,187,187, 59, 66, 67, 67,209, +161, 67, 7,156, 58,117, 10,132,144,196, 6,206,115,150, 16,242,204,217,179,103,103,159, 59,119,110,180, 74,165, 34,227,198,141, +195,128, 1, 3, 32,151,203,161,215,235, 81, 88, 88,136, 3, 7, 14, 16,142,227, 34, 43, 13, 94,179,230,205,155,255, 66, 8,201, + 76, 73, 73,121,254, 97,205,175,151,181, 85,149,234,249, 87,149,222,170,145, 61,251, 7,180,121,186,127, 95, 4,182,232,131,167, +251,103, 0,192, 10,119, 73,202,152, 79, 22, 68,236, 14,240,115,221,116,110,207,241, 15,186, 15,236,253,254,226,233,174, 75, 22, +173, 45,176,102,154,134,234,202,150, 97,152, 90,163, 84, 34,145, 8, 12, 99,221, 90,246, 28,207,101, 14,120,165, 75,245,123, 11, +107,118,247,241,246, 99,170, 34, 87, 0, 80, 82, 82,130,244,244,116, 88, 44, 22,184,185,185,193, 98, 49,183,109, 68,243,227,244, + 49, 99,198, 16,131,193,128,217,179,103, 99,229,202,149, 24, 62,124, 56,185,120,241,226,116, 0, 51,155, 16,209, 88, 57,121,242, +228,217, 19, 38, 76, 64, 81, 81, 17, 78,158, 60,137,222,189,123,227,171,175,190,242, 56,121,242,228,199, 93,187,118,133, 72, 36, +194,177, 99,199, 96, 54,155,235,237, 27, 41,147,201,166,141, 27, 55, 78,158,145,145, 1,169, 84,138, 14, 29, 58, 32, 51, 51, 19, +229,229,229,200,201,201,193, 71, 31,125,148, 93, 92, 92,220, 75,173, 86, 39, 90,113, 92,152, 30, 61,122,204, 8, 9, 9,193,137, + 19, 39, 48,121,242,228, 67,118,118,118, 35, 11, 11, 11,223, 52, 26,141,107,135, 12, 25,130,174, 93,187,226,238,221,187, 24, 58, +116, 40,162,163,163,113,242,228, 73,204,157, 59,247,128,173,173,237,115, 13,204,131,117, 47, 38, 38, 38,162, 67,135, 14, 40, 47, + 47, 71,105,105, 41, 36, 18, 9,156,157,157,113,231,206, 29,180,104,209, 2,115,231,206,197,170, 85,171, 48,107,214, 44,254,153, +103,158, 97,205,102,179,180,106,148,101, 19,249, 87,140, 34, 44, 47, 47,167, 89, 89, 89,112,116,116,196,246,237,219,113,227,248, + 17, 28,156,246, 26,108,222, 95, 9, 74, 41, 50,151,206,195,211,115,222, 71,231,107, 73,200,202,202,194,230,205,155,193, 48, 76, +245,136,216,186,234,182,226,226, 98,180,111,223, 30,151, 47, 95,198,230,205,155,241,249,231,159, 87, 71,107, 37, 18, 9,122,245, +234,133,126,253,250,225,222,189,123,216,176, 97, 3, 28, 29, 29, 33,208, 4,131, 69,105,197,188, 75, 85,255, 31,140,206,240, 79, + 71, 71, 71,139,202,202,202, 96, 48, 24,160,213,106,145,146,146, 2,133, 66, 1,117, 78, 58, 58, 6,151, 33,155,152,112,235,106, + 2, 71, 68,146,171, 13, 61,129,152,205,102,152, 76, 38, 92,191,126,189, 98,232,123,139,229,224,121,190, 58, 44,169,215,235, 97, + 48, 24, 16, 19, 19, 67, 21, 10, 5,236,236,236, 72,125,109,239, 60,107, 60,116,234,143,107,131, 94, 30,241,180,236, 88,204, 70, + 88,140, 44,202,140,206, 40, 55,152, 80,170,151,192, 36,239, 15, 66,206,128, 17,201,209,181,125, 48, 78,158,189,103,224, 44,230, +195,214, 89,105, 14, 34,215,182,224, 10,174,215, 48, 88, 15, 62,213, 75,229,246,224,216,198,141, 10,230,121,126,247,207, 63,255, + 60,168, 75,151, 46,182,189,123,247, 14,170,108,190, 51,253,252,243,207, 85,209,129,198, 70,169,170,103,111, 39,132, 16, 47, 47, +175, 30, 54, 54, 54,175, 61,255,252,243, 97, 47,190,248, 34,146,146,146,176,101,203,150,116, 91, 91,219,131, 13,105,177, 44,235, +236,232,232,136,146,146, 18, 72,165, 82,176, 44,139,252,252,124,220,189,123, 23,110,110,110, 40, 46, 46,118,108,222,188,249,173, +166,158,112, 15,141, 24, 92,141, 63,143, 34, 92,221,148,104,150, 66,202, 71,189, 63,103, 98,136,193,160, 15, 47, 45, 45,101,197, + 98,177, 88, 46,225,146, 27,163, 97,177, 88,246,159, 57,115,230,217,238,221,187,203, 19,174, 95,133,185,184, 24,150,146, 34, 72, + 57, 22,174, 81,237,193,152, 12, 32, 38, 11,124, 90, 81,232,139,236,240,199,149, 36,139,197, 98,217,111,173,193, 98, 68,162, 7, +251, 93, 57, 58, 64,102, 95, 97,176,106,110, 39, 13,180,107,121,121,121,217, 14, 28, 56,176, 79,100,100, 36, 40,165, 88,185,114, + 37, 76, 38,147,204, 98,177,192, 98,177,192,108, 54,163,180,180, 20, 59,119,238,196,143, 63,254,248,135,147,147,211, 38, 43, 30, + 38, 88, 95, 95,223,169, 60,207,123,178, 44,107,246,240,240,144,110,219,182, 13, 54, 54, 54, 96, 24, 6,237,219,183,135,141,141, +141, 81,165, 82,153, 43,211, 96,249,236,179,207,196,175,191,254,186,180, 54,189,118, 29, 67,223,225,168, 91, 79,153,188, 89,128, +147, 71, 91, 4,182,232, 3, 0,232, 55,228, 85, 4,134,248,161, 56,247,122,160,201,152, 54, 66, 68,242, 93,126, 58,175,190,211, +195, 54, 98, 66,126,102, 76, 2,128,239,172,188,134,208,167, 79, 31, 60,243,204, 51,213,205,129,158,158,158, 48,153, 76, 96, 89, +214,106,115, 5, 0, 85,147,136, 46, 94, 76, 24, 44, 2, 54,117,114,200, 6, 80, 29,158, 44, 46, 46, 70, 70, 70, 6,210,210,210, +170,239, 83, 60,181,238,233, 90,165, 82, 41, 2, 3, 3, 95,105,221,186, 53, 78,158, 60,137,235,215,175,171, 79,159, 62,237,211, +177, 99, 71,248,250,250, 78, 80,169, 84,239,105, 52, 26,171, 39, 84,246,240,240,176,235,209,163,199,180, 9, 19, 38,224,238,221, +187,152, 59,119,110,126,118,118,246,238,253,251,247,191,254,246,219,111, 51, 61,123,246, 68, 78, 78, 14,190,254,250,107,238,210, +165, 75,159,186,184,184,124,212, 64, 57, 38,107, 52,154,230, 6,131, 1,249,249,249,168,154,146,225,240,225,195, 56,114,228,136, +182,168,168,168,151, 70,163,185,111, 77,218,154, 53,107,230, 16, 21, 21,229,149,144,144,128,173, 91,183,194,108, 54,191,159,154, +154,106,118,114,114,218,242,229,151, 95, 46, 10, 10, 10,114,125,234,169,167,208,181,107, 87, 80, 74,177,111,223, 62,124,248,225, +135, 7, 20, 10,197,200,219,183,111, 55, 52, 0,102,196,146, 37, 75,150,184,187,187, 63,255,210, 75, 47, 49, 81, 81, 81,136,141, +141, 5,199,113,232,211,167, 79,181,185, 58,124,248,240,207,135, 15, 31, 30, 5, 64,106,111,111,111,211, 80,244,170,242,122, 27, + 10,160,234,161, 78, 71, 41,221,247,111,171,168, 13, 6, 3, 18, 18, 18,224,229,229,133,144,142, 93, 48,247,102, 10,206,156, 59, + 15, 74, 41,186,223, 74, 65, 89, 89, 57, 54,109,218,132,184,184, 56,136, 68, 34, 4, 5, 53,220,211,194,108, 54,227,254,253,251, +200,205,205,197,240,225,195, 49,118,236, 88,124,242,201, 39, 48,155,205, 88,176, 96, 1, 10, 10, 10,240,205, 55,223,224,254,253, +251, 16,139,197,176,183,183,255,203,243, 89,159, 23,121, 34, 35, 88,149,149, 46,120,158,135, 70,163,193,229,203,151,145,146,146, + 2, 59, 59, 59,232, 89,158,255,226,194, 53,158, 33, 18, 53, 71,113,150,178, 21,179,136,215,231,196, 45, 22, 11, 17,139,197, 56, +119,238, 28, 18, 19, 19,225, 24, 66,171,163, 87, 22,139, 5, 70,163, 17, 58,157, 14, 18,137,164,236,252,249,243,169,177,177,177, +129, 98,177,184,206, 81, 96, 57, 45, 68, 63, 28, 59,126,226,157,168,246,225,161,125,123,126,136,253,251, 63, 64, 81, 73, 9,202, +141, 98,148,233,205, 40, 55, 80,168, 28,130,209,169,109, 36,114,243, 77,184,119, 43, 46, 51, 79,234,218, 96, 27,140,133, 99,138, +127, 94,247,166,211,176, 81,147, 97,227,253, 20, 76, 41,219,192,235,181,213, 6, 75,106,227, 0, 71,119,127,148,148,233,241,199, +157,100, 88, 56,166,216,218, 66,215,106,181, 58,165, 82,185, 99,242,228,201, 43,174, 94,189, 18, 8, 0,151, 46, 93, 74,214,104, + 52,243, 26,211,156, 85,121,115, 88, 78, 8,230, 2,128,189,189,253,157,238,221,187, 23,182,111,223,222,118,200,144, 33,112,114, +114,194,157, 59,119,176,108,217,178, 20,163,209,248,102,122,122,122,131,163,233,196, 98,113, 81, 65, 65,129,167, 76, 38, 67,113, +113,113,181,185, 42, 47, 47,175,234, 68, 89, 18, 19, 19,243,175, 90,143,210,215,215,183,231,160, 1, 61, 35, 62, 93,181, 22,122, + 93, 25, 46,157,223,143,194,130, 60,108,248,118, 87, 27, 95, 95,223,158,214,118, 38,206,204,204,252,117,215,174, 93,179,219,181, +110, 29, 25,228,231,135, 27,105, 41,144,242, 28,100, 28, 7,145,201, 0,134, 51,194, 55,130,130, 97,236,161,205, 46,197,250,163, + 39,111,102,102,102,254,218, 96, 36,113,224, 48,188,152, 86, 12, 66, 8,142,246, 8,135,141,189, 61,164,246,118,232,186, 51,166, +218, 84,165,174,120, 23, 82, 59,123,184, 68,247,176,234,252, 9, 9, 9,137,141,143,143,143,110,217,178, 37, 22, 47, 94,140,140, +140, 12, 80, 74,145,147,147, 99,200,205,205, 85,231,231,231,167, 18, 66,118,107, 52,154,111,173,157, 45,156,231,121,207,125,251, +246, 1,128, 20, 0, 78,156, 56, 1,149, 74, 5, 39, 39, 39,148,148,148, 96,220,184,113,242,133, 11, 23, 2, 0,174, 92,185, 34, +177,177,177,169, 83,235,214,213,187,159, 21,150,208, 66,166, 60,110,100, 30,123,181,205,211,253, 51,209,111,200, 4, 28,219,191, + 9, 39,143, 28,135,187, 36, 37,153, 83,148, 29,202, 77,206, 43,205, 42,111,241,117,120,135,215, 69,154,178, 35, 27,166, 12,119, + 17,251, 42,249,237,243,190,170,123,226,222,170, 39,112,145, 72,244,167, 14,237,141, 53, 87, 53, 89,180,136,242, 4,132, 4, 74, +196, 87,213,217, 25,253, 85, 94,190,200,201,201, 65,122,122, 58,210,211,211,145,145,145,129,144,144, 16,164,164, 37, 65, 38,147, + 94,181,178,194,120,105,200,144, 33, 14, 38,147, 9,123,246,236, 97, 9, 33, 67,246,237,219, 23,219,174, 93, 59,113,239,222,189, + 29, 54,109,218,244, 18,128,111, 27,211, 98,100,111,111, 47,181, 88, 44,248,225,135, 31,160, 86,171,123,102,103,103,223, 81,169, + 84, 95,191,245,214, 91, 95,181,106,213, 42,228,206,157, 59,247,244,122,253,100,141, 70,115,189, 33,177,162,162,162,241, 3, 6, + 12,216,206,243,124,179,110,221,186,217,189,248,226,139,142,148, 82,180,106,213, 10, 7, 15, 30,212,104, 52,154,123,214, 38, 44, + 45, 45,173,244,204,153, 51,218,240,240,112, 47,165, 82, 9,169, 84,186, 66,169, 84, 46,181,183,183,255,116,232,208,161,174,219, +182,109,195,142, 29, 59, 96,103,103,135,228,228,100, 77,124,124,252,106,111,111,239, 53,214,204,224, 30, 23, 23,151, 12,224,197, +142, 29, 59,126,248,249,231,159,191,207, 48,204,203, 71,143, 30,173,158,235,172,202, 92, 5, 4, 4,140,223,190,125,251,216, 70, + 30,122,219,170, 41, 7, 8, 33, 53,251,231,254, 91,250,102, 89, 76, 38, 19,220,220,220,144,155,155,139,156,156, 28,248,251,251, +163, 75,151, 46,176, 88, 44,216,187,255, 0,206,156, 57, 3, 74, 41,220,221,221,225,232,232,136,107,215,174, 1, 64,125,163,135, + 45,102,179, 25,174,174,174, 40, 42, 42,194,181,107,215,224,233,233,137, 89,179,102,193,100, 50, 97,219,182,109,184,122,245, 42, + 24,134,129,135,135, 7, 28, 28, 28,112,245,234,213,134, 52, 5, 26,107,176, 68, 34,209,169, 83,167, 78,141,106,219,182,173,248, +222,189,123,184,119,175,226,122,211,235,245,172, 88,132, 29,218,235,123, 94,172,167,242,143,168, 57, 87,134, 76, 38, 91, 63,106, +212,168,201,175,190,250, 42,166, 76,153, 2,134, 97,240,221, 21, 35,210,211,121,152,205,102,104,181, 90,220,184,113,131, 70, 71, + 71, 19,158,231,205,189,122,245,122, 35, 46, 46,174,163, 72, 36, 42,169, 75,147,110,223,206,185,183, 25, 54,252,203,245,223,158, +123,229,149, 87, 92,135, 13,255, 18, 87,110,223, 66, 81,121,197,208, 85,149,187, 29, 58,181,124, 23, 57,249, 70, 28, 57,180,191, +144,103, 13,207,209,155, 91, 45,245,165, 19, 0,114,117,122,207,175, 55,239, 90,185,117,231,238, 55, 38,142,127,209,166, 87,175, +241,144,148,222, 0,151, 31, 7, 85,139,110, 32, 34, 91, 92,188,118, 5,215,239,103, 24,116, 6,209,183, 37,102,253,187, 13,105, +214,164,184,184,248,178, 86,155, 29, 88, 99,214,246, 64,185,220,230,114, 3,102, 42,226,161,121,129,188, 8,193,220, 42, 13,145, +136, 9,159, 55,111,222, 77, 79, 79, 79, 75, 74, 74, 10,190,249,230, 27, 92,184,112,225,140, 76, 38,251, 48, 61, 61,189,212, 26, + 77,150,101,119,172, 92,185,242,205,121,243,230, 73,178,178,178,144,144,144,128,242,242,114, 88, 44, 22, 28, 60,120,144,213,233, +116, 13, 70,216, 26,202,123, 19, 35, 95,117,106,102,102,102,158,110, 17,236,143, 31,190, 93, 5,179,217,136, 44,117, 69,164, 33, + 47,191, 24,245,153,171, 63,157, 75,148, 82,165, 82, 57,242,243,213,171, 47, 76, 26,255,178,119,143,167,251, 32,227,250, 53,152, + 10,114,193,112, 44, 36, 84, 12, 93,142, 2, 90,109, 25, 62, 62,120, 60, 71,111, 48,140,124,184, 79, 91, 93,233,172,110, 22,116, +116,128,220,222, 30,178,202,168, 85,213,103, 50,123, 7, 72,236,236, 33,146, 74,107,235, 12, 31, 81,203,156,114,207, 77,156, 56, +241,250,193,131, 7, 93, 94,124,241, 69, 12, 27, 54,236, 74, 81, 81, 81,239,130,130,130,210,166,150, 39,195, 48, 57,131, 6, 13, +242, 52,153, 76,236,152, 49, 99,196,121,121,121,168, 26, 98, 95, 90, 90,138, 67,135, 14,161,101,203,138, 85,103,110,221,186,133, +240,240,240, 58, 53, 95,159,115, 67, 13, 96,201,172,209,190,159, 94,184,150, 61, 29,192,138,192, 16, 95,156, 60,114, 28,103, 78, +158,155,215, 57,130, 95, 59,248,165,142, 31,217, 60,253,252,187,225, 81,175,139,236, 29,149,216,188,107,167,232,118,220,198,101, +134,242,155, 65, 0,222,173, 43,157,132,144,138,149,234,107,152, 43,177, 88, 12,157, 78,103,149,185,170,239, 92,162,160,212,189, +132,188,255,202,172,209, 93, 78,108,189,232, 96,103,103, 87,221,231, 39, 56, 56, 24, 98,137, 24,223,237,254,162,188,168, 40,111, +161, 53,154,118,118,118, 83,123,247,238,141,164,164, 36, 92,191,126,125,167, 70,163,185,174, 82,169,118, 38, 39, 39,143,233,216, +177, 35,126,253,245,215,169,117, 25,172,186, 52,171,102,172,167,148,130,227,184,130,202,102,242,107, 0, 58, 55, 54,239,149,147, +133,118, 3,128, 86,173, 90,101,140, 24, 49,194,145,101, 89, 84,154,103,183,198,156, 75,148, 82, 94,165, 82,173,185,116,233,210, +242,246,237,219,227,133, 23, 94,232, 23, 27, 27,219,175, 93,187,118, 8, 10, 10, 66, 97, 97, 33, 98, 98, 98,126,226,121,254,173, +172,172, 44, 67,125,253, 65,235,202,251,165, 75,151,238, 3, 24, 23, 21, 21,245,188, 88, 44,134,163,163,163, 72,173, 86,139,142, + 30, 61, 10, 0, 19,183,111,223,206, 61,174,251,146, 53,125,174,254,142,123, 29, 33,100,193,248,241,227,191,126,243,205, 55,109, + 58,118,236,136,226,226,226,106,211,127,240,224, 65,240, 60, 15, 55, 55, 55,184,185,185,225,254,253,251,216,189,123,183,169,184, +184,120,181, 84, 42, 93, 81,159,230,184,113,227, 30,208,172, 50,111,251,247,239, 71,213, 32, 18, 55, 55, 55,220,187,119, 15,187, +118,237, 50, 20, 23, 23,175, 50,153, 76,159,252,149,121,255,159, 51, 88, 5, 5, 5, 51,230,207,159,223,251,181,215, 94,115,211, +235,245, 34,119,119,119,104, 52, 26,246,200,145, 35, 5,165,165,165, 51, 26,243, 99,231,206,157,155, 50,100,200,144,213,223,127, +255,253, 55,223,124,243, 77,207, 23, 94,120, 1,227, 6, 13,194,228, 46,118, 48, 26,141, 32,132,224,200,145, 35,119, 79,157, 58, + 21, 40,149, 74,141,139, 22, 45,226, 1, 92,104, 72, 55,239,198,111,247,188,218,140,232,185,246,139,175,118, 68,118,232,220,172, +121, 64,115,121, 55, 63, 39,152, 45, 28,180, 57,249, 56,125,238,182,241,222,237,107, 25,188,217, 52, 58,231,246, 94,171,154,183, +110,223,166,102, 0, 51,194,195, 29, 23,127,178,254,231,245, 63,110,223, 57,226,141, 23, 70,138,163,218,244, 70, 74,246, 94,252, + 30,123,138, 45, 44,165,187, 75, 77,162, 73,183,111,151, 20, 54,182,224, 13, 6,131,229,225,134, 32,131,193,240,200,139, 92,111, +221,186, 21, 57, 57, 57,124,124,124,252, 9, 0, 63,168,213,234,251,141,249,254,180,105,211,102,172, 91,183,174,127,105,105,169, +255,200,145, 35, 37,174,174,174, 40, 40, 40,192,161, 67,135,216, 43, 87,174,164, 77,155, 54,109,214,163,164,239,113,143, 34,172, + 17,193,194, 43,175,191, 13,189,190, 12, 23,206,237, 71, 81, 65, 30,206, 95, 78, 64, 99, 34, 88, 0,144,149,149,149,174, 84, 42, + 59, 47, 93,189,118,215,128, 78,209,173, 66, 85,222,114,183,128,230,176,243,240, 70, 65,126, 62, 46, 92, 75,180,172, 59,118,250, +166,222, 96, 24,105,237,188, 48, 60,207, 87,143,114, 11,159, 62, 15, 12,195, 84,175,130, 80,245,185, 99,135,238, 96,196, 18,112, + 20, 48,155,205, 13,118,194,210,104, 52,153, 62, 62, 62,207, 77,155, 54,237,196, 15, 63,252,192,244,234,213,171,253,111,191,253, +246, 72,139,230,102,102,102,250, 86, 54,107,149, 56, 58, 58,138, 39, 76,152, 0,139,197, 2,157, 78,135,146,146, 18,228,231,231, + 27,103,206,156, 41, 7, 0,169, 84,106, 25, 48, 96, 64,131,247,143, 85,219, 51, 13,179, 70,251,174,117,151,164,140, 41,206,189, + 30,232, 46, 73, 73,238, 28,193,175, 93,181, 61,211,240,159, 55, 93,150,170,115, 99, 18, 52,101, 71, 54,108,222,181, 83, 52,126, +196,115,156,210,254,222, 60,119, 63,108,239, 61,204,138,155,215, 67, 6,171,169,145,171, 63,221, 79,110,210, 43,129, 93,156,150, +247, 30,221,241,189,165,179, 63,179,119,247,112, 7,203,178, 72, 78, 79,194,247,187,214,149,151, 26, 11,151,229,223,166,177,214, +104, 5, 6, 6, 6,136, 68, 34,236,221,187, 23, 0,170,166, 54, 88,119,232,208,161, 49, 47,189,244, 18,252,253,253,195,155, 55, +111, 46,175,111, 26,141,218,162,119, 22,139, 5,143,123, 93,107, 66, 72,210,181,107,215,124,124,124,124,200,214,173, 91,203,204, +102,243,135,141,213,240,246,246,254,236,192,129, 3, 61, 40,165, 3, 34, 35, 35,209,172, 89,179,202,251,233,109,156, 57,115,230, + 23,181, 90,253,202, 99, 90,220,153, 18, 66, 80, 82, 82, 82, 53,175,137,217,222,222,190,169,186,186, 26,145, 43, 29,254,101,168, +213,234, 31,189,188,188,142,124,248,225,135, 31, 4, 7, 7,191, 53,113,226, 68, 81,104,104, 40,138,139,139,225,232,232, 8,165, + 82, 9,181, 90,141, 31,127,252,145,203,201,201,249,158, 97,152,197, 26,141, 70,211, 84, 77, 23, 23, 23, 40,149, 74,100,102,102, + 86,105,126, 99,177, 88, 62,202,205,205,213, 66,160,113,215,148, 53, 23,105,229, 52, 13,107, 56,142,235, 93, 21,213, 42, 40, 40, +152,145,157,157,157,215, 84,119, 63,100,200,144,224,188,188,188,111,204,102,115,207, 97,195,134,225,133, 23, 94,192,208,161, 67, +241,194, 11, 47,136,170,162, 86,123,247,238,141,111,140,102,213, 98,207,140, 72, 58,132, 82,218, 22, 0, 33, 12,211,224, 98,207, +214, 56,241,200,112,199, 32,133,156,255, 86, 33,227,187,235, 77,204, 89,189,145,121,227,202,237,146,164, 71,121,178,169,185, 56, +115,229,178, 48,243, 27, 91,158, 53,155, 8,197, 98,201,118, 55, 55,183,197,132,144,116,107,251,117, 60,164, 73,128,234,121,176, +214,136,197,226, 81,122,189,222, 89,161, 80, 20,177, 44,187, 99,218,180,105, 51, 22, 45, 90, 84,223, 9, 67,235, 74,167,143,143, +207,234,223,126,251,205,234,190, 85,195,134, 13,187, 81,213, 47,203,154,242, 12, 14,242, 61, 18, 20,224,243, 76, 80,128, 10, 0, +144,148,162, 65, 82,138,250,104, 98, 82,102,255,166, 28,163,154,139, 61,147,202,169, 24,168, 21,139, 61, 63,172,217,186,117,235, + 88,145,168,238,133,132,235, 48,100,154,155, 55,111, 70, 90,147, 78,149, 74,245,162,159,159,223, 10,141, 70,179, 43, 35, 35,227, +237,199, 17, 17, 84,169, 84, 93, 25,134, 57,200,243,188,226,225, 8, 87,149, 9,243,246,246,110, 38,151,203, 31,232,228, 94,159, +230, 39, 11, 34, 22,118,235,217, 99,196, 31,167,207,236,158,179,236,230, 3, 19,232, 78, 29,225,250,234, 75, 83,102,124,242,243, +151,107,230,172,219, 93,240,125, 67,233,108,219,182,109, 12,128, 22, 85,209,172,250,224, 56, 78,115,243,230,205, 14, 77,137, 58, +184,181, 37,209,206,118,238, 75, 76,102,115, 59,134,128, 74,164,210,107, 69, 69,121, 11,107, 51, 87,117,105,250,250,250,174, 8, + 9, 9,153,145,152,152,248, 75, 70, 70,198,107, 53,202,248,211,230,205,155, 79,201,200,200, 88,151,145,145,241,174,181,199, 40, + 48, 48,208,177, 93,187,118,133,139, 23, 47,102, 22, 45, 90,132, 75,151, 46,185,102,102,102, 22, 62,142,227,222,172, 89, 51,111, + 27, 27,155,205, 60,207, 7,113, 28,247,101, 82, 82,210,103, 77,209, 12, 15, 15,151, 22, 21, 21,205,240,243,243,155,229,229,229, +229,165,213,106,211,210,211,211,151,103,103,103,111,180,214, 92, 89,115,140,162,162,162,140, 0,100, 0, 96, 77,127,171,191, 59, +178,254, 87,104,250,250,250, 6,241, 60,191,172, 93,187,118,163, 94,125,245, 85,114,231,206, 29, 28, 59,118, 12,169,169,169,187, + 41,165,239,213,213,164,219, 88,205, 35, 71,142,208,180,180,180,237, 12,195,188,159,153,153,153,244,119,229,253,127,210, 96,253, +149, 39, 95,149,209, 50, 26,141, 79, 1, 40,191,126,253,186,195,191,249, 34,233,213,203,195, 46, 38, 38,183,252,113,105,214,236, +160,222, 84,205,198,104, 88, 99,176, 30,229,169,178,174,116,170, 84,170,169,132, 16,171,163, 83,148,210, 36,141, 70,179,174,177, +229,217,162, 69, 11,122,255,254,125,171, 58, 73, 62, 9, 55,220,255, 47,154, 95, 47,107,171,106,215, 49,244,157, 91, 87,239,126, + 86,217,124, 88,205,226,233,174, 14,221,158,238,245,254, 31, 39, 99,150, 62, 60,138,240, 73,200, 59, 33,132,169,205, 88, 52, 52, + 39, 93, 93,154,254,254,254, 95, 71, 70, 70,190,113,229,202,149,239,210,211,211, 39,254, 91,243, 78, 8, 33,205,154, 53,147, 53, + 38, 58, 39, 92, 71,214,105,122,123,123,119, 96, 24,102, 97,229,131,207,178,204,204,204, 75,143, 81,147,163,148, 46,205,202,202, +186,242,119,231,253, 73, 67,252, 79, 39, 96,255,254,253,137, 0,122, 13, 27, 54,204, 83, 36, 18,177,255,246, 2,179,198, 92, 53, +202,145, 52,193, 20,253, 21, 26, 53, 13,210, 95, 65, 77,179,244, 87,114,239,222, 61, 34, 92,214,255, 62,222, 90,112, 93, 3,224, +237,142,125,254,252, 89,165,169,154,243,244,176, 39, 51,239,117, 69,109,154,186, 16,115,122,122,250, 91, 42,149,106, 86, 99, 70, + 31,254, 67,249,166, 0,140,194,217,255,248,201,206,206,142, 5, 48,244,223,174, 41, 24,172,127, 9,191,253,246, 91,142,112, 56, + 4, 4, 4, 4,172,122, 96,209, 11,165, 32, 32,240,239,134, 0,136,168,227,233,195,234,208,223, 67, 67, 91,173,125,186,185, 41, +104, 10,154,130,166,160, 41,104, 10,154,130,230,255,150,102, 67,218, 79, 74,211,227, 63,222, 7, 75,208, 20, 52, 5, 77, 65, 83, +208, 20, 52, 5, 77, 65,243, 73,131, 17,138, 64,224,175,230,139, 55,136,207, 23,111, 16,159,191,106,127, 1, 1, 1, 1, 1,129, +127, 27,226, 39, 45, 67, 29, 58,116, 8,167,148,190, 68, 8, 25, 5, 0,148,210, 29,132,144,159, 99, 99, 99,173,154,129, 86,161, + 80,100, 27, 12, 6, 79, 0,176,177,177,201, 49, 24, 12, 74, 84,142,174, 27, 53,106, 20,201,203,203, 35,101,101,101, 4, 0,236, +237,237,233,233,211,167, 41, 0,190,190, 14,171, 54, 54, 54, 90,163,209,232,249,240,118,169, 84,106,118,113,113, 41,244,244,244, + 44, 84, 42,149,133,205,154, 53, 43, 12, 10, 10,202, 85, 42,149, 23,162,162,162,118, 6, 5, 5,149, 90,155,239,126,253,250,189, +101,103,103,183, 80,175,215,127,114,228,200,145, 53,127,117, 57, 19, 66, 58,249,169,188, 55, 89, 88, 51,159,157, 83,176,128, 82, +186,183,182,253,190,122,141, 44, 23,147,138, 73, 35,191,122,141,172,156,252, 93,253, 83, 81, 52,118,255,122,210,215, 65, 34,145, + 76,245,242,242, 26,152,153,153, 25, 11, 96, 14,165, 84,152,133, 88, 64, 64, 64, 64,224,223,103,176,186, 68,185,133, 18,222,252, +174, 68, 68,123, 88, 56,114,134, 50,210,149,231,227,242, 19, 30, 37, 1, 42,149,202,143, 16,210,139, 82,218,138, 97,152, 27, 60, +207, 31,213,104, 52,249,141,209,136,138,138,242, 3,240, 2,128, 23, 59,119,238, 28, 49,105,210, 36,132,132,132,192, 96, 48,224, +210,165, 75,243,182,108,217, 50, 47, 42, 42,234, 38,128, 95, 0,108,141,139,139,203,168, 75,203, 96, 48,120, 86,121, 37, 66,136, +231,196,137, 19,185,154,139,240,186,184,184, 84,205,189,115,132, 16,114, 56, 44, 44,236,240,151, 95,126,153,212,210, 83,209,185, +185,159,199,224, 67,177,105, 11, 30,214, 52, 26,141,158,218,184,139,160, 44,135, 50,117, 58,124, 6, 14, 7,199,113,224,121, 94, +122,168,111, 39, 47, 94,159,231,165,180,117, 65,171,197,139, 77, 6,131, 97,187,201,100,202, 13, 10, 10, 42,173, 79,243, 97,218, +183,111,255,209,135, 31,126,232, 62,108,216,176,169, 0,234, 52, 88,141,209,172,199,188,200, 59,119,104,123,106,223,206,173, 54, + 32, 12,158, 29, 49,234, 23, 66,200, 56, 74,233,206, 7,204,210, 4,226, 69, 68,120,119,210,204, 73, 34, 0,248,106,245,250, 57, +171, 95, 38,107,103,254, 68,179,125,124,124,122, 83, 74,231, 84,234,125,162, 86,171, 79,125, 53,129,120,129,193,220, 73, 51, 39, + 17, 0, 88,191,122,253,187, 95, 77, 32,107, 38,111,106,220, 40, 73, 66,200,228, 87, 94,121,101,237,178,101,203, 68,149,147,240, + 13, 8, 15, 15, 15, 37,132,132, 83, 74,133,206,193, 2, 2, 2, 2, 2,255,188,193,138,136,112,114, 86, 48,116,150, 66, 70, 95, + 24,208, 35, 60, 96,232,192,174, 36, 48, 56, 16, 9,119, 18,130, 78,157,190, 60,161,119, 71,135, 20,189,137,108,213,243,100,213, +205,155,245,175, 31,182,246, 93, 98,177,176, 21,191, 41, 21,131, 91,185,205,119,119,223,190,125, 3, 94,125,245, 85, 68, 70, 70, + 34, 54, 54,182,247,246,237,219,103,248,249,249, 93,182, 88, 44, 7,229,114,121, 76, 67,115,168, 68, 69, 69,173,240,241,241,153, + 51,123,246,108,210,161, 67, 7,200,229,242,234,207,236,237,237,209,167, 79, 31,244,233,211, 7,217,217,217, 17, 49, 49, 49, 17, + 63,255,252,243,242,168,168,168, 79,226,226,226,230, 89, 83, 64, 83,167, 78,173,109,243, 17, 66,200, 97,134, 97, 14,135,133,133, + 37,133, 40,237, 91,122,121,184,237,255,207,178,197, 0, 80,167,113,217,211,191, 43, 0, 96, 84,226,127,231,103,165,101, 69,240, +109,215, 6,174,173,194,121,131,193,176,211, 96, 48,236,108,209,162,197, 1,107, 53, 1,160, 87,175, 94,114, 7, 7, 7, 66, 41, + 69,199,142, 29, 93,251,247,239,159,192, 48,204,154, 67,135, 14,173,175,185, 95, 99, 52, 27,160,211,135,239, 78,145,230, 37, 93, + 69,252,185,163, 24, 30,229, 99,115,229,214,221,165, 0,118,214,111,124, 24,230,135, 88,247,121, 51,129, 25, 60,207, 47,188,115, +231, 78, 79, 0,104,213,170,149, 12,192,169,205,151, 92, 6,189,210,181,184,201,211, 44, 16, 66,164, 34,145,232,203,205,155, 55, +191, 62,110,220, 56,164,165,165,225,236,217,179,176,183,183,199, 71, 31,125,212,124,246,236,217,203, 1,204, 16, 46,123, 1, 1, + 1, 1,129,127,212, 96,245,136,178,187, 52,162,103,112,212,176,254, 93,153,144, 86,225,144,202,109,171, 63,107, 19, 25,137, 54, +145,145,100,226,196,210,192,107, 87,174,189,127,248,196,197,247,122, 68,217,197,157,137, 43,239, 88,151,158,133,133,120,246,107, +147,174, 0, 64,204,185,245,145, 9, 9, 9, 1, 10,197,127, 39,139,238,217,179, 39,122,246,236,201, 44, 95,190,188,211,169, 83, +167, 58,109,221,186,213,236,227,227,179, 90,173, 86,111,175, 39,153,115,182,111,223, 78, 68, 34, 17, 68, 34, 81,157, 59,121,123, +123,163, 95,191,126,240,246,246, 38,239,190,251,238, 28, 0,181, 26, 44, 27, 27,155, 28, 66,136, 39, 0,184,185,185, 97,237,218, +181, 64,141,249,161, 56,142, 59, 2,224,176, 68, 34, 57,188, 97,195,134,228, 96, 31,133,143,131,220,246,232, 55, 95,127, 1, 75, +137,214,181,174,223,215,105, 50,107,221,238, 31, 29, 5,151, 86,173,121,137,171,219,239, 6,131, 97, 71,139, 22, 45,246, 89,171, + 89,101,174, 20, 10,197,239, 95,127,253,181, 11, 0, 76,155, 54,205, 89,167,211, 57,191,241,198, 27,243, 0, 84, 27,172,198,104, +214, 99, 96,156,123,116,233,144,186,118,197, 7,142,145,157,186,227,194,142,175, 80, 84, 84,142,242, 82, 29,120,158,255,211,202, +191,147, 55, 81,237, 87,175,145,149, 95,125,190,126, 46, 97, 24,210,174,255, 28,244,119,165,211, 85, 42,213, 45, 66,136, 68, 38, +147, 85,233,138,125,125,125, 85,161,161,237, 87,134,116,111,137,245,107,190, 4,229,121, 10, 96,165,181,209, 43, 66,136,167,131, +131,195,222,163, 71,143,118,138,142,142,198,133, 11, 23,144,148,148,132, 41, 83,166,152,166, 76,153, 34, 29, 63,126, 60,153, 53, +107,214, 52, 66,200, 14, 74,233, 31,194,165, 47, 32, 32, 32, 32,240,143, 25, 44, 27, 41, 23,253,225,218,107,224,202, 19, 65, 45, +233,160,230,236, 63,237, 99,235,236,135,176,118, 94,176,149,121, 48, 55,238,124, 30, 93,243,179,134, 70, 24, 84,153,171, 29,159, +169, 90,235,203,179,164, 0,160,176, 83,154,159,155,165,190, 21, 29, 29, 13, 15, 15, 15,233,185,115,231,102, 1,216, 94,143, 38, + 49, 93,143, 69,252,208,110, 8,142, 47,128,173,173, 45,170, 42,238, 42, 18, 18, 18,240,251,239,191, 35, 45, 45, 13, 65, 65, 65, +192, 67, 51,150,215,212,212,235,245,222,227,199,143, 47,127,231,157,119, 20, 95,127,253, 53, 46, 93,186,228, 28, 23, 23, 87, 82, +107,116,207,223,201, 89, 70, 37, 71,191, 93,255,185, 4,166,114,215,187,151,255, 64,235,129,111,214,154, 78,239,190,131,170, 35, + 87, 59,130,221,225, 17, 20, 0, 85,219, 54, 8, 94,249, 61,111, 52, 26,183, 27, 12,134,237, 45, 66, 66,126,179, 86,243,233,167, +159,158, 32, 22,139, 23, 0,112,218,176, 97,131,179,179,179, 51,179,119,239, 94,243,215, 95,127, 93, 42,149, 74, 77,132,144,143, +155,146,206,250,144,136, 68, 75, 62,253,240, 93, 71, 91,134,197,149,131, 63, 33, 51, 45, 29,215,239,171, 45,191,158,185,205,153, + 44,220,171,181,149,231,228,239,232,252,217, 35,228,155, 98,179,130,246, 13, 89, 52,165,197,210, 97, 94, 48,155,205,223,230,230, +230,226,141, 55,222, 0,207,243,232,222,189,123, 55, 74,169,122,250,244,233, 8, 10, 10,194,183,191,221,211,137, 75, 46,246,218, +114,162, 36,214,154,115,137, 16, 18,209,172, 89,179,163,167, 78,157,242,242,241,241, 65, 76, 76, 12,178,179,179,161, 84, 42, 49, +101,202, 20,217,138, 21, 43, 54,151,148,148,140, 94,182,108,153,205,205,155, 55,183, 18, 66,252,104, 5,143,125, 4,140,160, 41, +104, 10,154,130,166,160,249,151, 16, 13,192, 3, 64, 46,128,203, 15,189, 71,229,107,212,242, 62,175,178,206,175,185,120,121, 94, +101,224,196, 3, 0, 7,224, 18,128,194,199,157, 96,113,101, 5,213, 19, 64, 12,128,197,148,210, 15, 31,222,201,172,142,129,172, +249, 72,192,166, 53,168, 41, 17,188, 73, 13, 42,241, 68,185,206, 6,121,169,105,136,191,176, 3,148,109,120,141, 76,137, 24,236, +238,195,235, 35,157, 29, 0,145,204,195, 92, 90, 90, 10, 59, 59, 59,232,203,179,164,227,199, 87,116, 27,218,188,121,134,244,212, +169, 83,136,139,139,131, 74,165,106,208, 4, 2, 0, 53, 85,180, 34,154, 76, 38,152, 76, 38,100, 15,234, 8,187,206, 79,161,240, +229, 41, 56,126,252, 56,114,115,115, 33,149, 74, 33,149, 74,193,178, 13, 79, 22, 79, 8, 97, 42, 79, 32,200,229,242, 90,103, 97, +246,245, 37, 54, 14,156, 98,255, 23,171, 62,118,116,180,183,245,138, 61,186, 7,105,105,217,117,106,242,252,127,101,148, 97,161, + 80,182,137,128, 75,235, 54, 48, 26,141, 59,141, 70,227,206,144,144,144, 61,141,209, 20,137, 68, 31,237,220,185,211,199,104, 52, + 66, 42,149, 98,199,142, 29,230, 31,126,248,225, 86,121,121,121,143,184,184, 56,125, 83,211, 89, 31,110, 30, 30, 7, 70,142,125, +115,202,210,215,250, 65, 95,110,192,238, 51,183,113,226, 70,202, 48, 0,103, 41,165,117,206,112,255,217,110,227,125, 31, 31,159, + 62,111,188,241,198,213, 93,187,118,185,127,250,233,167,224, 56, 14, 44,203,130,101,217,234,215, 28,199,225,151, 95,126,193,217, +139,183,167,107, 52, 37, 86, 45,166, 75, 8, 81, 5, 4, 4, 28,191,120,241,162,135,173,173, 45,142, 29, 59,134,162,162, 34, 76, +158, 60,185, 58,114, 85, 84, 84,244,194,250,245,235,159, 75, 77, 77,253,244,204,153, 51,249, 0, 68, 0,254,245,171, 6, 8, 8, + 8, 8,252, 47,209,128, 23,241, 32,132,236,167,148, 14, 1,208, 23,128,172,198,123, 16, 66,246, 87,214,219, 15,188,159, 55,111, +222,123,203,151, 47,191, 85,245,190,106,159,249,243,231,183, 94,177, 98,197,199, 93,186,116,217,122,238,220,185,228,191,204, 96, + 1,136,169,111,237, 54, 99,226, 22, 24,147,127,133, 84,217, 27,178,192, 49,144,184,119, 65,198,221, 24, 92, 61,190, 10,153,247, +206,130,242, 28,188,252,194, 26,252,177,233, 43,169, 68,165, 82,197,105, 52, 26, 92,185,114, 5,137,137,137,176,177,249, 83,203, + 18, 78,156, 56, 1, 0,240,242,242,178, 42, 19,178,232,110,240,187,150,133,140,118, 74, 0,128,223,181, 44, 0,192,199,243,231, + 67, 38,147, 65, 42,149, 86,239,203,113,156, 53, 7,153, 84, 25,172,178,178,178, 90,215, 16, 11,246,114,216,190,104,222,212,102, + 1, 65, 33,170,139, 7,182, 33, 57, 89, 13,173,182,246,227,227,224,224, 80,202,243,124,245, 26,139, 62, 81,145,112, 14,111, 3, +145,187,215, 41,147,201,180, 51, 56, 56,120, 87, 99, 53, 1,108, 27, 61,122,244,132, 17, 35, 70, 40, 58,119,238, 44,255,238,187, +239,138, 30, 54, 87, 77,208,172, 19,165, 82,217,127,240,224,193, 7, 38, 78,156,136,225, 3,250,226,165,238,173,104,102, 78,177, + 30,192, 49, 74,105,131,133,170, 86,171,213, 62, 62, 62,253, 70,142, 28,185,165,117,235,214,173, 40,165, 8, 11, 11,195,240,225, +195,177,115,231, 78,220,190,125, 27,165,165,165,230, 51,103,206,172,214,104, 52,223, 91,121, 49,218,186,184,184, 28, 62,121,242, +164,135,173,173, 45,142, 30, 61, 10,157, 78,247,167,200,213,199, 31,127,108,147,146,146,178,238,200,145, 35,205, 1, 48,148, 82, +193, 92, 9, 8, 8, 8,252,251,136,105,104, 29,217, 42, 83, 85,211, 48, 61,108,180,170, 94, 87,237,183,124,249,242, 33, 53,205, + 23, 0,172, 88,177,226,227, 26,239,117,127, 69,102,170, 12, 86, 47, 66, 8, 5,208,139, 82,122,250,161, 48, 96,101, 8,134,133, + 89,125, 12,102,245, 49,216,182, 91,128,189,107, 95,126, 64,200,154,200, 80,109, 24, 12, 6, 72,100,110,230,205,155,103, 72, 1, +128,163,118,230, 63,253,118, 67, 17,172, 70, 76,150,106,101, 58,171, 13,150, 94,175,103,255, 28,189,242,253,172, 75,183, 78,221, + 67,218,116,180,189,120,120, 23,238,223, 75, 67, 94, 94, 49, 64, 97,168, 77,204,195,195, 35,255,228,232,129, 14, 50, 78, 15,175, + 54,109,224,191,112, 53,244,122,253, 46,179,217,188, 61, 40, 40,104, 71, 83, 52,143, 29, 59,246, 78,151, 46, 93, 22,238,216,177, + 67, 19, 20, 20, 36, 23,139,197,230,154,230,170, 41,154, 15,163, 82,169,186,137,197,226,163, 12,195, 40, 6, 12, 24,128,233,211, +167, 99,205,154, 53, 44, 47,177, 25,178,254,112,236,232, 50,163,121,129, 53,230,170,134,201,186, 14, 32,188,121,243,230,114,150, +253, 63,246,174, 59, 62,138,226,143,190,217,189, 94,210,251, 37,244, 16, 8, 33, 4,146, 64,232, 93,148,162,160, 2,138,116, 16, + 1, 1,145, 34, 69,144, 42, 65,144, 42, 82, 84,164, 11,130,128, 8, 82,165,132, 78, 10,161, 4, 72, 72, 40, 41,151,222,203,245, +221,253,253,145, 92, 12, 49,229, 18, 80,208,223,190,207,231, 62,119,123,187,247,110,118,118,118,230,237,155,239,204,152,186,189, +249,230,155,191,247,233,211, 7, 87,175, 94,197,153, 51,103,188, 12, 6, 67,114,201,255, 46, 6,224, 66, 81,212,138, 42, 86,114, +167, 68, 34,209,222, 51,103,206, 52, 87,169, 84, 56,125,250, 52,138,138,138, 74,157,171,145, 35, 71, 62,227, 92, 93,185,114, 37, +147, 23, 87, 60,120,240,224,241, 74,163, 82, 45, 82,214,125,170, 72,100, 89,248, 80,110, 22, 95,154,217,179,103,207, 37,132, 28, + 45,113,184, 52, 0,212,127,139,192, 42, 57, 17, 82,114, 98,213,142,226, 98,242, 31,253,229, 59,150,173,125,187,229,213,243,228, + 93,153, 76,134, 77,155, 54, 65, 46,151,215, 88, 56, 21,254,126, 16, 9, 31, 15, 45,117,174,204, 78, 22, 94, 31, 81, 43,129, 85, +198,193, 58,217,178,101, 75, 83, 57,209, 50,201,207,207,111,204,119,219,119, 91, 45,159,255, 89,110,222,253,187, 2,109,145, 78, +161, 51,154, 12,177,169, 25,235, 42, 17, 42, 89,118, 78,214, 13,172,220,154,194,182, 89, 11,232,116,186,195, 37,221,130,191,212, +150, 19, 0,174, 94,189,170,237,209,163,199,182,101,203,150,181,101, 89,118,251,243,166,179,188,184,114,112,112, 56,185, 97,195, + 6,153, 76, 38,131, 78,167,195,138, 21, 43,240,199, 31,127,244, 75, 78, 78, 62, 9,224,100,109,175,183,193, 96, 24,219,179,103, +207, 53, 51,102,204,128,209,104,196,123,239,189,135, 39, 79,158,156,122,248,240,225, 58, 15, 15,143, 25, 19, 39, 78, 84, 57, 58, + 58, 98,194,132, 9, 34, 0, 35, 43,161,249,106,207,158, 61,253, 90,182,108,137, 11, 23, 46, 32, 55, 55, 23,110,110,110,152, 52, +105,146, 56, 56, 56,120, 71,126,126,254,160,224,224, 96,222,185,226,193,131, 7,143,127, 9, 44,213, 34,101,157,168, 26,242,155, +127, 39, 12, 14, 14,190, 27, 28, 28,252,140,195,245,183, 8,172,146,147, 1,128,174,150,184, 67,172,230,175, 49, 60, 44, 99,170, +201, 73, 90,116,156, 37,221,121,192,159, 49, 88, 21, 8,165,191,108,215, 64, 96,157, 36,132,156, 56,112,224, 0, 91, 70,180, 12, +112,117,117,253,106,207,158, 61, 50,181, 90, 13,143, 38,190, 54,199,126,217,167,115, 81, 72,180,137, 89, 89, 35, 34,147, 10, 14, + 84,196, 87,175, 94,189, 76,219,186, 74, 88,123,251,130, 56,171,254,208,106,181, 7,146,147,147,127,105,220,184, 49, 91, 91, 78, + 51,254,248,227,143,233, 21, 56,108,207,197,169, 82,169, 58, 56, 58, 58,158,220,176, 97,131, 92,173, 86, 67, 36, 18, 65,169, 84, +226,236,217,179, 40, 17, 87,181,134,135,135,199,194,201,147, 39, 47, 24, 57,114, 36,178,179,179,113,230,204, 25,116,235,214, 13, + 27, 54,108,168,119,246,236,217, 53,237,219,183, 7, 77,211, 56,125,250, 52,140, 70, 99, 76, 37,215,231,237,113,227,198,205,120, +247,221,119,113,227,198, 13, 36, 39, 39, 99,194,132, 9,250, 73,147, 38,149,198, 92,109,220,184,241,221,199,143, 31,243,206, 21, + 15, 30, 60,120,252, 75, 80,149, 22, 41,135, 99, 0,250,150,119,181,202,139, 47,179, 67, 85,118,187,252,241, 37,251,181,127,199, +249,152, 29,172,202, 93, 43,142, 1,109,239, 7, 38,235, 86, 25,129,149,252,204, 33, 34,137, 18,140, 5,194,101,253, 76, 98,252, +102, 42, 4, 23,190,163, 64,137, 28, 12, 10,223,147,119, 43, 59, 86,169, 84, 62, 19, 24, 94,149, 14, 19,245,121,151,246,124,125, + 0,226, 90,184,130, 51, 26, 74,157, 44,204,157,251,140,184, 18,137, 68,208,235,245, 64,241,168,129,170,112,154, 16,114,138,166, +233, 19, 28,199,113, 93,187,118,253,222,104, 52, 14, 80, 42,149,118, 31,126,248,161, 33, 35, 35, 3,135, 14, 29,194,182,109,219, + 52, 5, 6, 65, 88,118,166,113, 88,156,186, 32,177, 50,178, 38, 77,154,100,185,142, 29, 11,189, 94,255,155, 86,171,221,159,159, +151,247,203,162, 69,139, 54,205,155, 55,175,214,156, 21,225,121,211,105, 22, 87,206,206,206,165,226, 74, 34,145, 64,169, 84, 34, + 41, 41, 9, 2,129,224,185, 38,233,172, 95,191,190, 36, 40, 40,104,214,136, 17, 35,112,255,254,125,204,158, 61, 59, 89,173, 86, + 31,252,245,215, 95, 39, 76,155, 54, 77,208,165, 75, 23,164,165,165, 97,243,230,205,198, 27, 55,110, 44, 75, 73, 73, 89, 89, 97, +161, 21, 8,198, 46, 89,178,132, 83,171,213, 36, 46, 46,238, 25,231, 42, 47, 47,111, 80,112,112,176,244,209,163, 71,188,115,197, +131, 7, 15, 30,255, 46, 7,171,170, 30,180,140, 18,241,148, 90,193, 54, 93, 70, 88,149,223, 78, 43,183, 13, 0,250,114,251, 35, +255, 54,129, 85, 25,140, 12,149,187,103,195, 71, 54,111, 13,156, 8,169,107,103,232, 31,255, 12, 86,147, 90, 42,176, 68, 82, 43, + 88, 59,214, 69, 94,129, 6,151,239, 61,130,145,161,114,171,228, 51, 65,240,246, 27,127,206,131,101,107,107,139,220,220,220,103, + 28, 45,185, 92, 14,149, 74,133,188,188, 60, 28, 56,112, 0,213,205, 89,196,113,220,146, 17, 35, 70,124, 49,113,226, 68,202,115, +200,104, 20, 92,187,248, 23,215, 74, 42,149, 66, 38,147, 33, 41, 41, 9, 15, 30, 60, 96, 57,142, 91, 82, 77,190,156,162, 40,234, +196,183,223,126, 27,215,181,107,215,145,118,118,118, 67, 70,143, 30, 45,187,113,227, 6,150, 44, 89, 34, 56,125,250,180, 33, 52, + 52,212,196, 48,204,244,164,164,164,205,213,101,114,171, 86,173, 50,117, 58,221, 49,157, 78,247, 11,128, 95,102,204,152,241,193, +243,114, 86, 32,174,158, 59,157, 42,149,170,189, 74,165, 58,185,110,221, 58,121, 74, 74, 10, 36, 18, 9,172,172,172, 16, 31, 31, +143, 37, 75,150, 20,154, 76,166, 55,158,179,188, 73, 20, 10,133,196,104, 52, 98,251,246,237, 72, 74, 74,106,151,156,156, 28,239, +234,234,186,121,252,248,241,235,155, 53,107,230,253,224,193,131,152,130,130,130,143, 83, 82, 82,238, 87, 70, 98,107,107,219,206, +201,201,137, 92,189,122, 21, 19, 38, 76,208, 79,158, 60,185, 52,230,138,119,174,120,240,224,193,227, 63,137, 27,213,108,191,114, +168,114,177,231,244, 34,141,243,230, 29, 7,215,191, 55,184,135,246,228,217,179, 64,189, 17, 16,186,191, 14,208, 82,168,188, 58, +192,169,126, 91, 68, 62, 76,193,161,139,119,181,209, 73,250,245,233, 69, 26,231,114,226,198,183, 42,254,220,220, 92,212,175, 95, + 31,154,168, 62,205, 83, 47,122,251, 15,104,246,141,127,144,243,170,230,103,207,158,197,170, 85,171, 10,162,163,163, 87,123,121, +121,205,168,138, 51, 34, 34, 98, 81, 66, 66, 66,171, 57,115,230,156,248, 60, 49, 15,217,139,191, 69,222,212, 17, 72,233,209, 2, +114,185, 28,142,142,142, 40, 44, 44, 68, 72, 72, 8, 34, 35, 35, 79,104,181,218, 86, 17, 17, 17,139,170,226, 44, 89, 2, 39, 46, + 40, 40,200, 42, 55, 55,119,221,136, 17, 35,100,133,133,133,200,200,200, 64,102,102, 38,174, 95,191,126, 90,175,215, 55,175, 74, +180,148,229,244,246,246, 14,215,235,245,191,100,100,100,252, 50,116,232, 80,241,139,224, 44,139, 23,149, 78,133, 66, 49,243,208, +161, 67,114,138,162, 32,145, 72, 96, 99, 99,131,132,132, 4, 44, 94,188,184, 80,163,209,188,161, 86,171, 45,154,160,179,170,235, +206,178, 44, 76, 38, 19, 56,142,131, 88, 44,206, 3,128,148,148,148,251,113,113,113, 61,142, 28, 57,226,246,240,225,195,174, 21, +137,171,178,156, 25, 25, 25,231,159, 60,121, 2,133, 66,129,201,147, 39,139,151, 45, 91,182,115,221,186,117,218,224,224, 96, 81, +207,158, 61, 55,156, 60,121,178,169, 70,163,233, 92,157,184,170,174,124,214, 6, 60, 39,207,201,115,242,156, 60, 39,143,106, 29, +172,168, 40,206, 0,224, 19, 31, 31,235, 69, 43, 54,237,217,180,115,255, 47,111,127,248,254, 59,130,128, 22,221,240, 56,229, 87, +132,132,157, 51,101,231,115,135,242,245,244,132,168,168,188,106,199,254, 11, 5, 48,173,218,186,201, 31, 0, 68, 66,152,150, 47, +238,119,190,121,243,230, 29, 63,236,158, 38,122,103, 96,113,220,245,193, 3,159,136,206,159, 63,191, 95, 34,145,108,121,244,232, + 81,158, 37, 39,113,243,230,205,219, 0,122,183,110,221,186,243,140, 25, 51,190,234,211,192,163,205,219,237,186, 66, 40, 20, 34, + 52, 52, 20, 89, 89, 89, 55, 40,138,154, 21, 17, 17, 17, 98, 9,223, 15, 63,252, 16, 7, 0, 69, 69, 69, 75,188,188,188,196,247, +238,221, 67,108,108, 44,162,163,163,193, 48,204,195,196,196,196, 26, 5,196,153, 76,166,179,185,185,185, 89,109,219,182, 53, 22, + 21, 21, 45,127, 17,156,101,241,162,210,169,209,104,150, 45, 93,186,180,215,162, 69,139, 36, 86, 86, 86,184,121,243, 38, 22, 45, + 90, 84,168,213,106, 45, 22, 87,213,129,227, 56, 24,141,198, 26,141,252,172, 0,179, 90,182,108,217,116,233,210,165, 94, 37,177, + 92,188,115,197,131, 7, 15, 30, 60,254, 61, 2,235, 79,161,149,151, 13, 96,176,191,143,117,163,101,223,238,254, 94, 38,102, 59, +106,244,212, 37,141,142,250, 48, 34, 42, 47,206,210, 63,155,178,146, 19,150,221,158,188, 2,240,241,241, 81,132,223, 71,193, 59, + 37,223,133,223, 7,212,106,245,138,218,156, 76,104,104,104, 8,128, 32,127,127,255,183,127, 39,100, 46,240, 8, 28,199, 45,139, +136,136, 56, 84, 19,158, 54,109,218,212, 47, 44, 44,220,105, 48, 24, 90,177, 44, 43,190,112,225, 2,180, 90, 45,238,221,187,167, + 97, 89,246, 64, 77,211, 85,175, 94,189,212,193,131, 7,191, 80,206,191, 35,157,137,137,137,161, 42,149,170, 39, 33,228,204,172, + 89,179, 36,139, 23, 47,126,161,226,202,222,222,190, 40, 37, 37, 37, 83,171,213, 58,164,166,166,234,237,237,237,107, 53,247, 8, +199,113, 15, 9, 33, 45, 62,253,244,211,197, 51,102,204,152,249,213, 87, 95,137,248,152, 43, 30, 60,120,240,224,241,175, 19, 88, +102,148,136,169,174, 93,187, 58, 41, 46, 93, 73, 47,124, 17, 9,136,138,138, 42, 92,248, 17, 49,205, 89,244,137, 0, 0,196,162, +231,159, 97,187, 68, 80, 29,170,237,239,243,243,243,151,101,101,101,181,205,203,203, 51, 61,126,252, 88, 67, 8, 49, 17, 66, 52, + 44,203, 46,102, 89,118,243,127,153, 83,173, 86, 95,118,117,117,237,116,249,242,229,105,133,133,133, 27,212,106,245,149, 23, 85, +216,194,195,195,141,110,110,110, 67,223,124,243,205,209, 44,203,110, 78, 74, 74, 50,214,150,139,227, 56, 61,128, 89,132,144,131, +183,111,223,254,249,202,149, 43,201,188,184,226,193,131, 7, 15, 30,255, 74,129,101,198,249,243, 47, 70, 92,153,177,112,203,179, +206,214,203,198,131, 7, 15,222, 7,240,254,255, 35, 39, 0,164,164,164,132,253, 29,188, 0,144,156,156,124, 10,192,169, 23,197, +199,113, 92, 40, 33,164, 1,138, 71,137,240,226,138, 7, 15, 30, 60,120,252,123, 5, 22, 15, 30,175, 18,184,226,128, 46, 94, 92, +241,224,193,131, 7,143, 87, 6, 4,128,111, 37,141,150,197, 43,101,215,102, 52, 65,117,252, 60, 39,207,201,115,242,156, 60, 39, +207,201,115,254,247, 56,171,227,174,137,254,120,165, 5,214,115,142,230,170, 54,243, 94,116, 70,241,156, 60, 39,207,201,115,242, +156, 60, 39,207,249,223,227,252,175,129,226,179,128, 7, 15, 30, 60,120,240,224,193,227,197,162,198, 49, 88,109,218,180,105, 12, + 0, 55,110,220,120,248,119, 37,138, 16, 50,201,205,205,237, 67, 63, 63,191,102, 34,145,136,202,205,205, 93,116,254,252,249, 69, + 21, 29,219,178,101,203,176, 94,189,122, 53, 58,119,238,156,190,228,183, 40,251,206, 48, 76, 98, 88, 88, 88, 32,127,169, 95, 14, +220,220,220, 78, 74,165,210,122,197, 19,140,114, 48,177, 12, 24,150, 3,195,176, 48, 50, 28, 12,122,237, 83, 93, 97,238,235,181, +226,110,245, 78, 93,134, 97,131, 57,112,155, 8, 71, 38,112,132,219, 68, 56, 50,158,163,200, 38,194,114, 31, 65, 96,250, 26, 38, +193, 12, 1, 43,252, 92, 29,181, 63,225,191,144,159,139, 22, 45,122,174,135,162, 5, 11, 22, 84,184,254,148,191,191,255, 81,169, + 84,234, 89,217,239,138,138,138,146, 35, 35, 35,187,253,151,203,170,171,171,107,103,138,162,190, 1,208,188,220,174,251, 0, 62, + 81,171,213,127,188,106,105,118,118,118, 14,161,105,218,171,176,168,168, 48, 63, 47,175,145,149,149, 85,156, 76,174, 80, 48, 38, + 38, 38, 35, 35,173, 51, 95, 3,241,224,241, 10, 11,172,128,128,128, 38, 0,186, 16, 66,186,112, 28,215,217,219,219,219,165,168, +168, 8, 1, 1, 1,169,132,144,144,146,213,175, 47,132,135,135, 71,191,136, 4,209, 52,189,114,221,186,117,211, 39, 79,158, 92, + 42,146,238,220,185, 83,213,241, 30,203,151, 47,183,137,143,143,135, 72, 36,130, 88, 44, 46,125,209, 52,141,182,109,219,214,232, +255,237,237,237,173,156,157,157, 23, 17, 66, 6, 81, 20, 69, 87,119, 60,203,178, 12,199,113,251,211,210,210, 22,100,101,101,229, +215,228,191, 90, 7,250, 25, 1, 82,201,127,112, 76,104,216,173, 42, 71, 87, 54,109,218, 52, 76, 32, 16,120,148, 21,148,101, 68, +106,133,159, 25,134, 73,188,123,247,110,160,165,121, 33,149,203,103, 18, 74,208, 19, 28,235, 93, 76, 70,221,231, 88,211, 25,109, + 81,209, 74, 75,206, 87, 34,145,212, 11,143,136,240,138,122,240, 8,141, 26,214,133,222, 96,130, 78,111,196,175,103, 66,209,178, + 89, 3,188,213,231,181, 90,151, 21, 19, 75, 22,126, 62,105, 88,247,101,223,252,212,122,238,228, 33,202,101,223,252, 20, 56,119, +242, 16,171,101, 27,126, 10,252,124,202, 7, 86, 75,191,217, 19,248,249,148, 15,108,190,252,102,143, 30,192,216,218,252,199,152, + 22,245, 10, 41,198, 36,169,240,218,211, 2,221,214,219, 79, 21, 47,227,198, 93,182,108, 89, 19,131,193,112,111,228,123,129, 75, +188, 27, 59,167, 85,116, 76,110,110,154,115,236,253,176,249, 16,138,154, 53,107, 51,183,202,251, 83, 36, 18, 53, 12, 9, 9,241, + 50,207,180,207, 48, 12, 24,134,129,201,100,130, 94,175,199,187,239,190,251, 66, 6,196, 4, 6, 6,142,230, 56,238,203,226, 98, + 73,150,134,133,133,109,120,142, 7, 49,165, 64, 32,248, 84, 44, 22,119, 49,153, 76,205, 0, 64, 40, 20,222,211,233,116, 23, 76, + 38,211, 26,142,227, 10,106,194, 71, 81,212,218, 27, 55,110,248, 88, 89, 89,193, 96, 48,148, 46, 12, 79,211,180,119, 80, 80,208, +183, 0,188, 44,229,242,240,240, 8, 35,132,120,212,228,255, 57,142, 75, 76, 76, 76, 12,172, 97,125,233,245, 36, 94,237, 92,191, +174, 10, 0, 32,151, 43, 20,161,119, 30, 59, 7, 52,175,207,183,110, 60,120,188,170, 2, 43, 32, 32,224,119, 0, 93,188,189,189, +101,175,189,246, 26,252,253,253, 81,175, 94, 61, 72,165, 82, 0, 64, 86, 86,150, 75, 84, 84,212,224,155, 55,111, 14,190,122,245, + 42, 2, 2, 2, 52, 0, 46,133,135,135, 87,232, 70,244,124,179,203,100,133,149,108, 29, 0,164, 38,165, 39, 39,196,166,124,147, +156,156,188,146,227, 56,182, 76,133,217,104,228,200,145,211,166, 76,153,130,163, 71,143,226,167,159,126,130, 78,167, 67,110,110, + 46,206,159, 63, 95, 97, 58, 25,134, 73, 28, 62,124,184, 32, 58, 58,218, 84,153,131, 85,195, 39,194, 69, 99,198,140,153, 26, 24, + 24, 88,218,184,232,245,122, 24, 12, 6,232,245,122,164,165,165, 97,202,148, 41,230, 10, 17, 44,203,226,204,153, 51,147,103,207, +158, 13, 0,159, 86,196,249, 90, 23,207, 48, 1, 33, 30,236,159,162, 44,241,116, 72, 92, 32, 64,232,208,176, 72, 82,174,146, 5, + 0,180,105,221,170, 90,113, 39, 16, 8, 60, 34, 34, 34,156, 69, 34,145, 69,231,198,178, 44,252,253,253, 45, 58,214,221,221,189, +155, 66,105,253,211,219,239,143,177,107,229,239, 47,244, 80,185,193,104, 50,225,209,227,248, 54,145, 55,195, 91,157,250,109,223, +135,238,238,238, 67,146,146,146,206, 85,197, 99,100, 88, 68,222,125,136,211,151, 34,240,166, 72,138, 34,173, 30,249, 69,122,236, + 60,114, 25,137,105,185,181, 46,184, 65, 65, 65,238, 10,129, 99,208,148,177, 3, 20, 95,111,220,161,152, 50,118, 0, 86,109,218, + 89,250, 62,121, 76,127,172,220,184, 67, 57,101, 76,127,124,179,121, 91,187,160,160, 32,247,235,215,175, 39, 85,198, 87,217, 53, +162, 24,147,228,251,168, 36, 26, 0,210, 55,111,134, 33, 53, 21,170, 5, 11, 0, 0,227,154,123, 72,106,146,102, 95, 95,223, 82, + 65, 92,165,112, 52,153, 18,239,220,185, 19, 88,157,184, 50,153, 76,156, 64, 32,152,127,241,248,162, 3,237,219, 52,121, 38, 51, +163, 99,162,109, 22,126,177, 96,224,207, 39,242,185,193,111, 88,221,187,119, 99, 89,149, 34,139,101, 89, 74,167,211, 33, 38, 38, +166,194, 89,246, 41,138, 98,106,115,157,186,118,237, 42, 41, 44, 44,220,163, 84, 42,253, 10, 11, 11, 71,115, 28,247,197,249,243, +231, 93, 40,138, 66,207,158, 61,191, 8, 12, 12,124, 44,145, 72, 54,106,181,218,155, 74,165,114,200,249,243,231,117, 22,138,171, +206, 86, 86, 86, 59, 15, 31, 62,108,231,239,239, 79,101,100,100,160, 65,131, 6,200,202,202,106, 19, 18, 18, 18, 48,102,204,152, + 49,132,144,225, 28,199,133,212, 32,185, 77, 21, 10, 5, 55, 98,196, 8,194, 48,127,158,238,214,173, 91, 17,224,153,234, 57, 97, +160,172, 72,107,224,114, 47,222,146,142,231, 40,238,210,147, 39, 57,185, 85,164,207, 99,209,247,159, 56,139,197, 98, 24,141,198, +210, 23,199, 2,224, 0,142, 5, 56,150, 3,199, 1,224, 8, 88,134,197,170, 57,223,215,250,126,144, 43, 20,114, 87, 87,183, 84, +153, 92, 46,231,248,118,141, 7,143, 87,222,193,234,125,254,252,121,152, 76, 38, 88, 89, 89,129,166,233,242,238, 6, 58,119,238, +140,160,160, 32,244,236,217, 19, 15, 30, 60,144,125,245,213, 87,149,218, 17,163,103,190,139,122, 94,238,102, 17,225,118,254,183, +235,193, 27, 23,238,118, 4, 80,118,173,193,209,227,198,141, 35,153,153,153, 24, 52,104, 80,136, 78,167,235,207,113, 92,149,203, +229, 68, 70, 70,190,208,238, 63, 66,200,160, 22, 45, 90, 96,227,198,141,208,104, 52,127,217,111,109,109,141,187,119,239,150,125, +130, 68, 96, 96, 32, 77, 8, 25, 84,153,192,162, 8,241, 56,126,254, 97,233, 58,141,239,189,213, 74,212,171,139,103,170,128, 18, +115, 0,200,231,159,127, 94, 42,174, 56,142,195,226,197,139, 45, 78,175, 72, 36,194,253,251,247, 65,211, 52,226, 58, 54, 41,110, +200, 35, 18, 64,211, 52, 34,253,138,159,106,219,197,100, 67, 32, 16, 64,169, 84, 90, 42,174,186,186,184,121, 28,158,179, 32,216, + 74,107,228,112,236,236, 13,196,171, 79,131,227, 56,184, 57,219,163,125,128,191,176, 89, 11, 63,231, 31,191, 93,121,216,221,221, +189,127, 82, 82,210,249,202,197, 2,131,102, 77, 26, 98,251,225, 16,124,185,241, 0, 50,243,180,200, 47,210, 23,139,238,118, 62, +216,186,170,246, 78,167,119,195,134,117,182,255,124, 18,237,219,182,193,246,159, 79,160, 93,219, 54,216,190,191,120,123,199,254, +147,232,212, 46, 8, 59,246,159,132,111, 51,175,186,153, 79,114, 87,162,138,185,189,254,114,141,250, 23, 95,163, 6,180,136,152, +175,205,147, 9, 19, 0,160, 84, 96,213,248,102, 43, 17,196,213, 29, 87,149, 8, 46, 35,174,144,150,150, 70,114,114,114, 56, 91, + 91,219,129,101, 69,150, 89, 92,237, 59,158, 7, 77,244, 55,100,247,238, 11,236,208,161, 93,238,221,187,177,172, 25,176,160,194, + 69,180, 13, 6,195,227, 94,189,122,113, 0,160,215,235,221,197, 98,177,168,156, 0, 83,117,232,208,225, 47, 2,173,186,174,195, +194,194,194, 61,251,247,239,127,219,197,197, 5,253,251,247, 63,229,227,227, 35,150,203,229, 56,126,252, 56, 60, 60, 60, 28,173, +173,173,127, 15, 14, 14,198,234,213,171,235,158, 58,117,234, 39, 0,111, 91,112,143,246,236,214,173,219,222,163, 71,143, 74, 69, + 34, 17, 52, 26, 13,238,222,189, 11, 27, 27, 27,136,197, 98,244,239,223,159,110,223,190,189, 67,183,110,221,126, 33,132, 12,225, + 56,238,140,165,215, 72,163,209,112,115,230,204,129, 92, 46,135, 66,161, 40,125,201,196, 12,217,180,176,161,108,234,242, 20,217, +231,159, 13, 93,254,221,143,191,157,171, 91,215,230,139,248,248,220,156, 74, 93, 44,186, 5,102,207,152,109, 22,168, 16,139,197, +207,184,236,230,207, 34,145, 8,173, 90,181,170, 54,109,205,154, 53,219, 76,211,180, 83, 57,225, 75,207,159, 55,215,116,251,238, + 3,133,209, 4,133, 86,111,196,210,197, 95,152,104,138,166,125,125,125, 15,113, 28,151,126,247,238,221,241,124, 83,199,131,199, +171, 37,176,160, 84, 42, 17, 26, 26, 10, 66, 8,172,172,172, 96,109,109, 13, 27, 27, 27,228,229,229, 33, 42, 42, 10,247,239,223, +199,227,199,143, 65, 81, 20, 26, 53,106, 4, 20, 79,251, 80,214,141, 41,237,219,251,113,229, 47, 80, 88,201, 64, 8, 65,187,215, + 2,208,166, 71, 32,110, 93,139,249, 68,165, 82,125,175, 86,171, 99, 8, 33, 2, 95, 95,223, 49,109,219,182,197,234,213,171,161, +211,233,214, 84, 36,174, 42, 26,181, 48,254,109,225, 69,145,128,170, 99, 48,177, 9,155, 15, 25, 59,181,106,213, 42,204,223,223, +191,193,237,219,183,141,102, 55,171,124, 55, 89,217,184,172,242,156,133,133,133, 96, 89,214,162, 12,228, 56, 14,121,121,121,168, + 42,157,229, 29,129,165,193,171,109,243,115,211,176,100,197, 46, 24,141, 70, 76,159, 62, 29, 44,203,130,101, 89, 48, 12,131,236, +236,108,128, 3,170, 59,119,243, 57,209, 52,253,140, 0,174,110,187, 42, 78, 39, 39, 39,133, 68, 42,255,105,198,231, 75,172,110, + 69, 39,226,232,217, 27,224, 56, 14,191,126,247, 5, 0,160,255,184,197, 72, 74, 78, 71,251, 0,111,140,252,232, 83,171,181,193, +159,255,228,228,228,228,153,158,254,231,228,179,101, 57,141, 38, 22, 7, 78, 92, 69,114,102, 1,134,191,221, 29, 58,189, 17,105, +169,201,216,182,241,107, 76, 28,117, 16,118, 74,153,107,163, 70,141,162,203,230,145,149,149, 21,173,213,106, 67,162,163,163,199, + 86,150, 78,163,209,216,123,206,212, 15,177,246,251, 3,104,222,200, 5, 71, 79, 95, 67,107,223,122,248,253,236, 13,180,107,209, + 0, 39, 46,132,161,125,203, 70, 56,119,245, 14, 62, 25, 63, 20, 51, 63, 9,233, 93,163,107,180,108,181,109,126, 94, 26,142, 45, +219,129,180, 13, 27,240,116,242,100,180, 46, 41, 19,161, 20, 5,145,187, 59, 96, 93,125,126, 86,132,251,247,239, 67,167,251,171, + 81, 35,145, 72,224,237,237, 93, 37,167,217,185, 74, 77, 77, 37,169,169,169, 80, 40, 20,228,222,221, 59, 76,179,230,190, 3,153, +172,159,191, 7,128, 98,231, 42, 15, 69, 15,214, 67, 19,243, 13, 68, 57,183,169,239, 22,127,164, 31,247,197,150,123,230,123,180, +124, 58, 35, 35, 35, 75,243,167,109,219,182,247, 47, 93,186,212,180,140, 11, 12,147,201, 36, 50,153, 76, 94,230,110, 67,147,201, + 4,157, 78,135, 33, 67,134,208, 85,157,187, 76, 38,243,115,113,113,193,245,235,215,177,112,225, 66,113,243,230,205, 17, 19, 19, + 3,138,162, 48,122,244,104,248,248,248, 32, 61, 61, 29,173, 91,183,198,197,139, 23, 91, 89, 80,230,173, 20, 10,197,143,191,253, +246,155,148,162, 40,228,231,231,131,101, 89,116,232,208, 1,132, 16,220,190,125, 27,243,230,205,195,193,131, 7,113,248,240, 97, + 89, 64, 64,192,143,132,144,102, 28,199,229, 91,112,141, 56,157, 78,199, 73,165, 82, 72,165, 82, 72, 36, 18, 72, 36, 18,136, 68, + 34,104,244, 52, 62, 90,240, 88, 39,148, 40, 89,191, 22,141, 60, 39,142,123,155, 90,178,124,219, 89, 0,191, 86,198,169,230,238, +194,190, 57,193,169,109, 97,232, 63,161, 51, 68, 66, 49, 68, 66, 17,196, 34, 49,132, 37,159, 69, 66, 17,196, 66, 9,104, 71,109, +181,101, 73, 40, 20, 58, 70, 68, 68,216,150,189,151, 77, 38,211,189,201,147, 39, 55,122,251,173,126, 46, 63, 31, 60, 74, 15,123, +175, 63,227,234,226,156,145,144,240,244, 33, 0,219,128,128, 0,174,166,229,179,166,224, 57,121,206,127, 8,173, 1,148,125,192, +208, 3, 16,151,124,206, 40,169,219, 28,202,125, 15, 0,233,230,230,173,146,237, 12, 0, 81, 0,154,149,124,199, 0,184, 1, 32, +251,121, 19, 44, 40,169,180,184, 50,153, 70, 42, 19, 17,121,121,121, 72, 72, 72,192,166, 77,155, 32, 20, 10, 33, 16, 8, 32, 16, + 8, 64, 81, 84,105,188, 66,101, 56,243,219,133,111, 0,124, 19, 16, 16, 32,140,188,178,235,247, 37, 59,102,247,104,215, 43,136, +190,118, 58,124, 32,128,165, 0,122,143, 24, 49,194, 17, 0,118,236,216,145, 1,224,184,197, 46,142,128,170,179,126,221,174,186, + 83, 62, 25,102, 22, 20, 30,223,127,255,189, 93, 98, 98,226, 51, 79,137, 34,145,168,218,184, 44,142,227,246,135,134,134, 78,237, +213,171, 23,140, 70, 99,105,215,160,249, 85, 84, 84, 4, 91, 91,219,210, 70, 70,171,213, 98,235,214,173, 38,142,227,246, 87, 37, +194,162,239,254,129,152,187,231,192, 48,236, 51, 98, 74,171,213, 98,225,194,133,165,238, 21, 0, 76, 40,113, 74, 44, 69, 85,206, + 21, 77,211,184,212,168, 88, 9,244, 73,231,254, 18,171, 85, 30, 66,177,116,122,159,119,134,218,155, 56,186, 84, 92, 21,159, 67, +177,184, 16, 11, 5,144, 73,132,136,137, 75, 64, 3,247, 0,244,120, 99,128,221,153,223,127,153, 14,160,194, 65, 8, 70,134, 69, +159,174, 1,216,184,247, 28,242, 10,180,200,203,201, 66, 70,194,125,220,187,117, 3, 98,177, 24,215,174, 93,179,178,177,177,181, +106,216,176, 1, 24,134,197,165,107, 97,144,203,101,216,251,211,238, 6,245, 26, 52,196,211,199,143, 42,140,157, 98, 89, 86,208, + 62,176, 25,242, 50,226, 33, 16, 8,208,222,223, 19, 2,129, 0, 29, 2,188, 64,211, 52, 58,182,110, 10,154,166,209, 37,200, 7, +158,158,158, 96, 89, 86, 80,157, 80,142,190,243, 7,162,163,206,129, 99, 89, 48,108,113,247, 47, 7,192,144,156,252,215,243, 74, + 73, 1,103,237, 92,155, 74, 9,179,102,205,202, 81,171,213,134,242,251, 84, 42,149,232,224,193,131,182, 85, 77,157, 34, 18,137, +154, 9, 4,130,123, 89, 89, 89,172, 92, 46,167, 24,198,196, 54,107,238, 75, 95, 60,190,168,116,237,201,133,139, 23, 29, 24,252, +134,245,192, 93,219,126,227, 68, 78, 29, 8,161, 37,166, 15,191,216, 34,134, 80,212,204,146, 52,154,187, 11, 31, 60,120, 80,237, +162,220, 21,213, 23,229, 30, 86, 70,246,239,223,255,212,248,241,227,165, 0,144,145,145, 1,129, 64, 80, 42,250, 99, 99, 99, 65, + 81, 20,190,251,238, 59,232,116,186,106, 11,190, 64, 32,152,250,203, 47,191,216,136,197,226, 82,113,197,113, 28,104,154,198,253, +251,247,177,106,213, 42,140, 24, 49, 2,241,241,241,112,115,115,195,244,233,211,149,203,151, 47,159, 10,192, 18, 91,248,150, 94, +175, 15,148,201,100,144, 72, 36, 48, 11, 45, 0, 8,143,117,185,243,232,209,163, 22,245,234, 57,186, 54,240,185,125,164,107, 71, +191,150, 14, 14,182,237,204, 2,171,194, 7,212,130,186,200,143, 22,160, 75,151, 46,184,112, 33, 4,253,250,245, 3, 35, 18,129, + 21,139,193,138,197,224, 68, 34, 64, 44, 6, 17,139,193,201,229, 22, 21, 31,154,166,145,146,146,242,204,119,227,198,141,123, 58, +116,232, 80,103,128,131, 90,157,196,125, 58,117, 74, 82, 70, 70, 6,231,226,226,194, 91, 8, 60,254, 85,168, 70,139, 56, 17, 66, +142,150,217,223,207,188, 61,123,246,236,185,193,193,193,119, 9, 33, 71,203,126,111, 62,174,132,251,104, 69,219, 37,191,117,152, + 51,103,142,239,242,229,203,151,181,107,215,110,239,149, 43, 87, 30,189, 48,129,197,113, 28, 33,132,112,213, 85,150,229,157,147, +103,187,130, 44,155, 72, 59, 60, 60,220,232,238,238,254, 67, 84,216,195, 30,222,129,205, 32, 83,200, 94, 35,132,124, 35,145, 72, + 62, 29, 62,124, 56,174, 93,187,134, 59,119,238,108,173,201,178, 39, 6, 19,155, 48,229,147, 97, 48,152,216, 4,179, 67, 53,125, +250,116,209,165, 75,151, 12,149, 57, 88,149,113,165,165,165, 45,248,245,215, 95, 81, 85,144,251,153, 51,103,202, 54, 70,165, 65, +238,149,214,138, 44, 7,131,193,136,194, 66, 77,177,176, 42,105,188, 25,134, 65, 97, 97, 33,222,123,239,189, 82,209,197,178, 44, +210,210,210,106,117, 49, 41,138,178,216,185,170,148,131,166, 95,247,107,233, 47, 60,123,229,214, 51,141,235,128,143,150, 66, 44, + 42, 22, 87, 50,169, 8, 50,137, 16, 9,234, 84,120, 55,107, 46,186,112,250,232,235,149, 10, 44, 19,131,111,118,159, 6, 8,193, +129,163,103, 17,216, 64,142, 69,243,102, 97,208,160, 65, 16,139,165,248,229,151,253, 88,249,237,118, 76,168, 87, 15, 28,128,160, +192, 86, 88,177,121, 47,150, 44, 94, 76,237,255,249, 64,199,234,210, 43, 20, 10, 65,211,116,105,163, 93,254,157,166,105, 88, 50, +215, 27,199,114, 48, 24,141, 40, 42,212,128, 97, 89,176, 44, 7,142,101, 1,142,131,251,151, 95,194,253,203, 47, 17, 74, 21, 15, +224,243, 41, 44, 44,238, 62,238,234, 87, 99,113,165,215,235,161, 86,171, 13,145,145,145,127,105,253, 90,182,108,153,170,215,235, +171, 76,239,220,185,115,163,151, 45, 91,214,204,222,222,254,222,173, 91,145, 70, 63,191,150,194,242, 49, 88, 77,188,154,228, 46, + 92,188,232,192,176, 81,111, 14,220, 60,239,125,211,248, 5, 59, 5,150, 4,186,151,113,201, 30,247,236,217,211,162, 80, 30,141, + 70,147, 82,217,190,192,192,192,209,132,144, 47,155, 52,105, 34,233,222,189, 59, 66, 66, 66,240,229,151, 95,178, 38,147, 41, 3, + 0,218,183,111,239,180,100,201, 18, 18, 21, 21, 5, 91, 91, 91,164,165,165,109, 15, 12, 12, 92, 82, 85,224,187, 88, 44,238,218, +186,117,107, 74,167,211,149, 62,148, 80, 20,133,251,247,239, 99,249,242,229, 24, 50,100, 8,154, 52,105, 82,122,111,117,235,214, + 77,184,126,253,250,174,150, 8, 44,138,162, 62,233,209,163,199,215, 40, 30, 69, 88,182,146,187, 7, 96, 38, 0, 60,125,154,145, + 50,228,221,246,119,123,116,241, 15,244,108,224,238, 86, 21, 95,166, 48, 22,110,254, 50,136,132, 34,140,248,236, 45, 28, 61,122, + 20, 31, 47, 28, 90,226,100, 21, 59, 88, 66,161, 8, 34,161, 24, 98,167,218, 45, 68, 80, 82,143, 16,107,107, 27, 0,128,141,141, +141,185,142, 35, 0, 56,138,162,248,144, 44, 30,255, 26, 88,162, 69,204, 2,169,188,208, 10, 14, 14,238, 87,254,187,178, 98,170, +162,207,101,127,187,124,249,242,101,101,184,139, 94,196,249,188,176,165,114,140,198,170,215,237,237,222,189,251,100, 43, 43,171, +117, 37, 21, 47, 98, 46, 61, 66,204,165, 71,104,214,180, 89, 7,255,150,254, 57, 67,134, 12,129,131,131, 3,102,206,156,201, 1, +248,177, 38,255,189,249,144,177, 83,217,237,155, 55,111,214, 58, 46,171,100,100,220,167,168, 36,158,170,150,133, 6, 70,131, 17, +133, 69, 90, 24, 12, 6, 24,141, 12, 76, 38, 6, 1, 62, 86,216,185,101, 22,244,122, 3,140, 76,241,119, 70,163, 17, 38, 19, 3, +137, 72,135, 46,109,235, 24, 65, 40,205,133,171, 79,173,171,226,111, 30, 30, 15,154,166,113,171,165,123,133,206,213,107,106,131, +197, 66,139, 99,153,166, 46, 46,206,136, 63,113,189,248, 41, 92, 46,197,201, 29, 75,160,144, 23, 63,201,247, 30, 49,183, 88,100, + 73, 68, 48, 24,244,112,118,169, 15, 19, 99,108, 90, 25,159,201,104,208,251,121,185,195,214, 74,134,200,208,171,248,116,210, 88, +140, 30, 61, 6, 34,169, 21, 46, 92, 56,135,120,117, 26, 98, 19,179, 49,105,193, 70, 24,141, 12, 12, 38, 6, 70, 19,139,181,219, +142,194,192, 84,175,140, 68, 34, 17,166, 79,159, 46,171,108,255,222,189,123, 53, 22, 9, 44,174, 68, 4, 23,105,160,211,234,160, + 55, 20, 95, 11,166,161, 16, 75,231, 13,133,209,104,132,230,253,118, 48, 24,141, 96, 62,121, 27, 6,131, 1, 9,114, 1,213, 49, + 80,101, 4,161, 52,151, 66, 19,173, 45, 21, 88,149,165,135,227,184, 10,187, 14, 43, 19, 89,126,126, 45,239,141,120, 47, 48,248, +242,149,208,244,203, 87, 66,255,114, 92,195, 38,129,113,227,151,238,157, 83, 19,113, 5, 60,219, 93,248,156,229,254,139,243,231, +207,187, 40,149, 74, 68, 71, 71,131,166,105, 16, 66, 50,195,195,195, 93, 0, 96,225,194,133, 25, 66,161,208,129,166,105, 76,157, + 58, 21, 52, 77, 59,125,252,241,199,243, 1, 84, 42,176, 76, 38, 83, 51, 43, 43, 43,228,231,231,151,230,163, 88, 44,198,236,217, +179, 49,108,216,176, 82,113, 37, 22,139,177,125,251,118, 4, 4, 4, 64,175,215, 91,228,220, 37, 38, 38,134, 2,232,100,129,168, + 41,238,102,101,217, 42, 11,150,178,176, 14,180,143,197, 96, 68, 34,236,253,245, 87, 12, 27, 54, 12, 98,177,164,212,185,130, 72, + 4, 34, 22,131, 18,137,192,208,146, 26,231, 47,203,178,200,203,203,163,183,111,223,222,176,121,243,230,132, 3,224,237,237, 67, +142, 30, 59, 86, 87,169, 84, 62,178,183,183, 55,240, 77, 54,143,255,160,203,117,180,188,200,122, 30,174,217,179,103,207, 5,192, +205,158, 61,123,174,121, 59, 56, 56, 88, 3, 64,253,202, 8,172,234, 28,172,213,171, 87,163, 69,139, 22, 85, 54, 62,235,215,175, +199,206,157, 59, 87,115, 28, 23, 87,147,255,254,104,128,240,186, 92, 38,114, 43,210, 24,146,183, 28, 54, 6,181,108,217, 50,172, + 93,187,118, 13,195,194,194, 42,117,176, 42,155, 27,235,239,152,166,129,227, 56,232, 13, 70, 20, 21,105,160,213,235, 49,109,214, +183, 22, 93,123,131, 62, 95,208,247,141,206,178,234,156, 68, 75, 98,176,170,235, 26,124, 86, 44,155, 96,214, 0, 5, 69, 90,116, + 27, 50, 27,161, 71,214, 1, 64,169,184,146, 73,132,144,138,133,160, 8, 64, 80, 57,183, 81,147,247,214,103,147,199, 94,220,180, +117,167,199,128,206, 31, 98,202,148, 41, 16,136,229,176,115,112,130,137,225, 80, 87,229,140,216,196,108,252,178, 97, 86, 73,216, + 25,135,206, 31, 44,196,234,121, 31, 98,229,194,234,159,234,105,154,198,134, 13, 27, 52,229, 93,171,178, 78,150,165, 34,216,236, + 50,106,116,122,204,152,179,209,242,107,244,122, 39,153,165,121,171,215,235,107, 45,192,202,139, 44, 0, 52, 0, 84,214,138, 74, + 28,128,102, 29,250,204,123,153,149, 33,203,178, 56,118,236,216, 95,220,213,242,215,208, 82,183,149,101, 89, 60,125,250, 20,119, +238,220, 65,187,118,237,144,155,155, 11, 1,128,233,183,111,195,103,248,112,232, 74, 66, 23,196, 98, 49,198,141, 27,247, 55,213, +240, 37,113,108,164,234, 11, 85, 40, 79,132,139,175, 4, 63, 46, 63,132,201,139, 71,192,201, 91,138, 85,115,190, 43,221,191,242, +135,133, 37,113, 88, 98, 72,149, 53, 79, 70, 94, 94,158,224,235, 85,171,252,130,218,180,149, 13, 27, 49,154,210,155, 88, 44,253, +106, 29,253,243, 79, 59, 28,118,236,216, 37,147, 74,165,247,248,230,152,199,127,208,229,234,247, 34,185,204, 14, 86,112,112,240, +221,224,224,224,191,184, 97,127,171,192,162,105, 26,101,135, 44, 87,212,200, 91, 18,131, 53,109,218, 52, 88, 89, 89, 85,184,207, + 96, 48,112,183,110,221,138, 74, 78, 78,254,158,227,184, 26,207,139, 35, 22, 82, 46,171,191,222,230, 49,229,147, 97, 44, 80, 60, + 90,235,219,111,191,181, 53,199, 96,149,141,195,170, 46, 6,203,217,217,121,209,138, 21, 43,166,244,238,221,155,162, 40,234,153, +198,207, 60, 45, 67,217,151,209,104,196,111,191,253, 54, 37, 56, 56, 24,149,185, 94, 28, 87,220,253, 84, 88,164,129, 86, 87,220, +192,198,222, 57, 96,105, 9,168,246, 16,179,115,213, 54, 58,171, 66,231,234,132, 75,113,195,213, 39,189,122, 46, 66,209,209,143, +159, 38,180,113,117,180, 69,118,110, 1, 36, 37,221,130,102,152,197,149, 76, 34,130,157,141, 18, 89,153,105, 16, 10,133,209, 85, + 20,224,167,132,144, 78,239,189,221,231, 20, 69, 11,164,101,247, 9,101,214,242,211,151,111,219,165,102, 23,129, 45,115,158, 44, +199, 97,242, 18,203, 76, 76,161, 80,136,143, 63,254,184, 82,129,243,235,175,191,106,106, 46,176,116, 53,187, 70, 53,112, 50,171, +115,176, 44, 21, 88,229, 97, 30, 93, 40, 18,137,154,149,136, 47,139,209,178,101,203,227,114,185,188,129,165,199, 91, 58,233, 40, + 33,100,113,247,238,221,191,244,240,240,112, 30, 63,126, 60, 17, 8, 4, 8, 12, 12,116,252,226,139, 47,114, 1,160, 89,179,102, + 86,230, 58,102,237,218,181,184,119,239, 94, 58, 33,100, 73,149,247,186, 88,124,223,198,198, 38,176,123,247,238,200,205,205, 69, +124,124, 60,148, 74, 37,124, 86,173,194,237,137, 19,209,114,243,102, 80,221,187, 23, 11, 76,137, 4,183,111,223,134, 68, 34,185, + 95, 25,159,187,187,123, 16,199,113, 43, 0,116,192,159,221,130, 28,128,203,132,144,207,146,146,146,174,255,229, 71, 20,161,138, + 31,212,170,190, 80,226, 92, 23,232, 18, 36, 24, 57,114, 36, 68, 34, 49, 32, 22, 99,198,140, 25,101,234, 35, 49,232,146,120, 44, +150, 17, 91,242,180,205,149, 19,235, 68, 34, 22, 75, 70,140, 26, 67,125, 54,227, 83,214,104, 50,177, 2,129,144,154,254,249, 50, + 42,230,193, 29, 73, 97, 97, 33, 69,106,242,100,197,131,199,191,196,193, 42, 43,180,202,184, 80,149, 33,189,108, 92, 86,101, 2, +173,108, 76, 22, 0,221,139, 72,171,160, 76,229, 94,254, 70,140,137,140,140,244,106,222,188, 57,226,227,227,145,147, 83,241,104, +100,133, 66, 1,153, 76,134,135, 15, 31, 2, 64, 76,101,127,116,246,236,217,111, 0,124, 99,222, 86,169, 84,237,122, 14,126,237, +114, 64,247, 54,248,105,245,174,220,228,228,228,150,230, 57,177, 8, 33, 68,165, 82, 13, 19,138, 5,131,155,248, 54,236, 98, 98, +217, 21,103,142, 84, 60,147, 59,240,215, 24, 44,147,201, 84,235, 24, 44, 66,200,160,222,189,123, 83, 81, 81, 81,120,239,189,247, +176,107,215,174, 74, 51,111,216,176, 97,216,187,119, 47, 94,127,253,117,106,249,242,229,131, 42, 23, 88,128,209, 96, 66, 97,145, + 22, 90,173,238,111, 43,120,207,235, 92, 1, 0,199,154,206,220,190, 25,222,170, 69, 64, 59,225,227,132, 20, 72,197,194,103, 4, +150, 92, 34,130, 84, 82,252,157,171,147, 29,110, 92,185, 96, 48,153,140,103,170, 17, 22, 79, 81,193, 36,141, 18, 43,199,232,215, + 58,180,176,171,208,241,156, 51, 2, 45,246,173,182, 72, 96,109,221,186, 85, 83,153,123,101,105, 30,112, 28, 74,187, 8,139, 52, + 47,246, 26,185,184,184, 56, 57, 59, 59,111,178,181,181,149,154, 99,135, 42,219, 95,149,195, 85,157,184, 42,153, 23,235,222,178, +101,203,106, 36,178,196, 98,113,131,203,151, 47,123,153,227, 2,171,122,215,235,245, 24, 60,120,176, 69,182, 96, 88, 88,216,143, +254,254,254,177, 78, 78, 78,167,219,183,111, 47,137,138,138,194,210,165, 75,137, 80, 40,180, 54,223,151,249,249,249, 16, 8, 4, +200,206,206, 6, 33,100,100, 88, 88,216,137,170, 56,117, 58,221,249,243,231,207,183,122,235,173,183,232,123,247,238, 65, 32, 16, +128,101, 89,232,218,182, 69,203,205,155,113,231,211, 79,209,249,241, 99,232,140, 70, 72,165, 82,156, 56,113,194, 80, 84, 84,116, +190,138,115,255,238,234,213,171,205,165, 82, 41, 12, 6, 3, 88,150, 5, 69, 81,132,166,233,142,205,155, 55, 95,143,226,145, 75, +165,104,208,192,217,249,227,177,125,154, 50, 44,203, 36,169,211,211,171,116, 43,173,210,225,212, 76, 82, 26,111, 37, 18,138, 32, + 18, 20, 11, 43,179,115, 37, 18,138, 32, 18,137, 33, 17, 91,212,133,207,149, 47, 59,230,216, 43,133, 66,206, 54,110,220, 56, 42, +230, 97,172, 15, 0,202,198,198,214,226,184, 88, 30, 60, 94, 49,135,138, 84, 37,148,202,222, 98,101,182,211, 81,188,182,114,191, +146,207, 40,243, 57, 20, 64,235,114,199,154,247,235,203,189,155,247, 71,254,221, 14, 86,159,177, 99,199,110,238,213,171, 87,143, +233,211,167, 67,169, 84, 34, 57, 57,185,244,166, 21,139,197,168, 83,167, 14, 52, 26, 13, 66, 66, 66,144,147,147,115, 22,192, 71, +150,254,113,114,114,242,181, 7, 17,209,153, 93,250,119,114,240, 13,106,102, 27, 31,253,180, 45,128, 43,132, 16,226,238,238,254, +195,240,105, 3, 70,189,246,110, 71,136,196, 66,196, 63, 76,174,146,171,124, 12,214,243,204,141, 69, 81, 20, 77, 8,193,123,239, +189,103,209,241,239,191,255, 62, 46, 92,184,128,170,186, 19,139,187, 8, 13, 40, 42,212,160,232, 5, 10, 44, 66, 8, 24,134, 41, +117,174,204,175,215,212, 6, 80, 20, 85, 42, 44,122,167,177, 22,115,106,139,138, 86, 94, 60,243,235,184,166, 62,126, 78,237,252, +155, 32,230, 81, 2, 86,206,253,179,171,101,198,132,247,177,125,239,111, 80,185, 58, 64,167, 41,192,201,223,127,203,205,203,203, + 91, 89,219,115,216,126,232, 2, 0,160,211, 7,207,142, 17,120,111,234, 90,203, 10,176, 64,128,209,163, 71, 87,234, 96,157, 62, +125, 90, 83,214,137,172,238, 26, 21, 22,106, 81,164,209,188,176,107,164, 82,169, 90,182,109,219,246,244,150, 45, 91, 28, 28, 29, + 29,161, 86,171,159, 17, 88, 42,149,170,101, 80, 80,208,233, 45, 91,182, 56, 56, 57, 57, 33, 62, 62,222,226, 41, 66,202,137, 43, +164,167,167,147,236,236,108,214,206,206,174, 70, 34,139,162, 40,232,116, 58,220,187,119,207,210,123,196,226, 73, 71, 27, 52,104, +176,107,221,186,117,146, 39, 79,158,192,104, 52, 34, 42, 42,234, 47,131, 16,104,154,198,236,217,179,241,249,231,159,111, 2, 80, +175, 42, 62,147,201,180,102,248,240,225, 99,147,146,146,236, 92, 92, 92,144,156,156, 12,145, 72, 4,142,227, 64,186,117, 67,167, + 71,143, 96, 96, 24,200,100, 50, 60,120,240, 0,223,127,255,125,161,193, 96, 88, 83, 17,151,167,167,167,152,162, 40, 47,145, 72, +132,161, 67,135, 62,179,111,199,142, 29,104,215, 44, 59,240,163,119,196, 5, 12, 39,210, 21,160,217,113,138,162,200,164, 15,251, + 52,233,216,174,133,239,221,168,199,177,234,180,172,203, 85,138,255, 92, 7, 24,212, 18, 64, 36,250, 51,222,170, 36,230,138, 22, +139, 75, 71, 20,114, 98, 49, 88,177,101,147, 5,151, 21, 77,132, 16, 56, 56, 56,232,214,174, 89, 41, 81, 40, 20, 12, 0, 88, 41, + 21,204,207, 59,190,133,131,189,189,142,171,141, 21,202,131,199,171,139,208,151,244,219, 23, 47,176,194,195,195, 31, 1,232,233, +239,239,255, 65, 72, 72,200,234,105,211,166, 57,117,236,216, 17, 89, 89, 89,168, 87,175, 30,220,220,220, 16, 22, 22,134,200,200, +200, 12,142,227,166,135,133,133,237,170, 64, 0, 84,186,218, 54,199,113,156, 74,165,218,175, 47, 42,156,232,223,185, 5,254, 56, +112, 46,216,205,205,237, 35, 15, 15,143, 79, 62,156, 59,120, 84,143,183,219,227, 94, 68, 44,174,156, 12, 71,210,211,116,188,215, + 97, 98,165,156,150,196, 96,149,125, 47, 31,131, 85,150,147,101, 89, 70,175,215, 99,223,190,125, 22,137,172,159,126,250, 9, 90, +173, 22, 44,203, 50,149,157, 59,195, 50,196,202,218, 9,238,117,155,193,160, 47, 4,203, 90,254,100,201, 85,147,159, 38,147, 9, +139, 22, 45,194,204,153, 51,177,100,201,146, 42,133,200,183,223,126,139,234,174, 81, 86, 86, 86,190, 74,165, 26,182,119,235,186, + 3, 31,124, 56,197,202,163,125, 75,252,248,243,239, 48, 26,140,144, 74, 4,176,179, 86,162,113, 3,119,232,181, 69,216,248,205, +234, 60,173, 86, 51,172,124,236, 89, 77, 86, 89, 31,249,118, 23,124,245,253, 17, 92,220,243,167, 65,217,233,131, 5,216,253,245, +100,248,251,111,171,146,147, 97, 24, 8,133, 66,236,217,179, 71, 83,217,104, 66,154,166, 81,153,192, 42,127,141,172,173,157,224, + 81,223, 7,122,109,193, 11,187, 70, 14, 14, 14, 51,127,248,225, 7, 7,141, 70,131,251,247,239,227,254,253,251, 32,132,220, 43, +191,191,176,176, 16,119,238,220, 49,139,156,123,150,230,167,217,185, 74, 79, 79, 39,201,201,201,144,203,229,212,173, 91,183,180, +126,126,126,247, 80, 18,163, 85,221,185,235,116,186, 39, 61,122,244,168,204, 49,114,151, 72, 36,207, 44,217,100,158,116,180,124, + 87, 97, 69,233, 76, 72, 72,184,185,110,221,186,186, 77,154, 52,193,119,223,125,167,179,178,178, 18, 79,155, 54, 13, 52, 77,147, +181,107,215,114, 89, 89, 89,134,217,179,103,139, 47, 93,186,132,194,194,194,155,213,149, 79,142,227,242, 9, 33,227,218,183,111, +191,243,248,241,227, 50, 47, 47, 47,228,230,230, 22,139,245,237,219, 49,105,210, 36,200,100, 50, 68, 71, 71,163,127,255,254, 69, + 69, 69, 69,227,202,206,129, 85,150,211,100, 50, 17,161, 80,200,177, 44,139,121,243,230, 61, 51,177,168, 92, 46,135, 76,204, 96, +203,226, 70,138, 79,191, 74, 81, 76,153, 56,124,120,113, 57, 97,153,187, 81,143, 99,183,252,120,228, 28,128,144,170,206,157,181, +201,133,163, 87,177,131, 37, 52,207,121, 37,146, 60, 51,122,176,120, 30,172,226,121,177,170, 59,247,242,161, 24,246,246,246,166, +128, 0,255, 40,141, 70, 67,155,181,148,163,163,227,157,146, 99,185, 58,117,234,232,203, 21,207, 26,221,155, 53,120,208,227, 57, +121, 78, 30, 53,116,176, 0, 0, 17, 17, 17,123,124,125,125,143, 47, 95,190,124,249,161, 67,135, 62,156, 50,101, 10,177,182,182, +198,254,253,251,185,172,172,172,109, 98,177,120,230,213,171, 87,107, 53, 95, 4,199,113,219, 67,142, 92,156, 48,124,218, 64, 50, + 99,213,248, 14, 97,231,111,222,107,213,161, 25, 90,117,104,134,235,127, 68, 98,205,156,109,187, 76, 70,211, 23,201,201,201,241, + 85,241, 88, 18,131,101,126, 9, 4,130,106,231,193, 58,116,232,208,148, 62,125,250, 80, 55,110,220,248, 75,204, 85,217, 56,172, +211,167, 79,195, 96, 48, 96,255,254,253,108, 85,243, 96,177,192,175,107,190,254, 98,196,214, 29,199,196, 20, 49,224,106,200, 47, +200,205, 78,169, 50,111, 68, 34, 33,118,255,244,171, 65, 32,160, 31, 84,145,214,167,225,225,225, 14, 95,125,245, 21, 77, 81, 20, +190,253,246,219,103,156,171,242,184,125,251, 54,107, 52, 26,171,189, 86,106,181,250,180,171,171,235,251,155,215, 44,222,222,237, +245,183,108,189,189,155, 11,156,157,235, 66, 64, 81,200,201, 74, 71,232,181, 75,166, 19,199, 14,231,232,245,250,145,106,181,250, +244,243, 20,192,224, 45,135, 43,252,254,221, 41,171,171,115, 81, 76, 70,163, 81,160, 80, 40, 96, 50,153, 42, 20, 87, 61,122,244, +144, 93,190,124, 89, 99, 48, 24, 64,211,116,149,138,169,248, 26, 45, 24,177,117,231,139,189, 70, 12,195, 52,203,206,206, 70, 97, + 97, 33,194,194,194,184,111,191,253, 54, 61, 39, 39,103,110,217,253, 89, 89, 89,200,207,207, 71,104,104, 40,247,221,119,223,165, +231,229,229,205,181, 52,255,204,243, 98,101,103,103,179,114,185,156, 50, 26,141, 70, 63, 63, 63,169, 72,100,217,156, 87, 0,112, +243,230,205, 55, 42,219,215,161, 67,135,152,203,151, 47, 55, 46,187, 54,161,201,100, 18,233,116, 58,175,254,253,251, 87, 91,127, +200,100,178, 33,191,252,242,203, 30,169, 84,218, 66,171,213,142, 77, 75, 75,219, 14,160, 46, 77,211,120,248,240, 97,134,201,100, + 26, 52,111,222,188,173,133,133,133,183,149, 74,229, 7, 22,214, 27, 39, 8, 33, 31,248,248,248,252,184,112,225, 66, 69,215,174, + 93,133, 42,149, 10, 1, 1, 1,136,142,142,198,177, 99,199, 12, 27, 55,110, 44, 42, 42, 42, 26,205,113,220,233, 42, 30, 58, 56, + 0,196,100, 50, 61,179,134,169, 88, 44,134, 80, 40, 68,145,142,194,135,243,226, 52, 44,132,154,101, 43,119, 29,227, 56, 16,117, +114, 70, 70, 74,106,206,117,129,209, 24,242, 68,157,159, 91, 85, 58,153, 12, 57,234, 91,251,150, 62,220, 17, 66, 64,177, 20,136, +129,128,102,104,208, 70, 26, 68, 32, 40,118,183, 44, 91,238,138, 51,153, 76,232,215,175, 31,142, 30, 61,138, 1, 3, 6,112,168, + 34, 86,228,232,209,163,176,196,189,229,193,131,199, 75, 18, 88, 0,112,231,206,157, 28, 0, 31,181,110,221,122,199,228,201,147, +143,178, 44, 43,100, 89,182,239,205,155, 55, 47, 62,207,159, 39, 39, 39,135,171, 84,170,185,206,238,118,193,253,134,118, 71,139, + 54,141,192,152, 24,132, 28,187,129, 45, 95,238,221,155,152,144, 56,170,236, 90,133,149,193,146, 24,172,242, 14, 86,101, 92,105, +105,105, 11,150, 46, 93,138, 47,191,252,178,198,163, 8, 43, 59,230, 74,104,210, 71,237, 2,221, 60,222,125,171,195,235, 20, 33, +156,174,138, 56, 27, 66,192,153, 35, 45, 4, 2,250,193,133,107, 9,126,149, 29,155,146,146,210, 99,226,196,137,127, 80, 20, 85, +175,204, 83, 5,170,104,236,147, 51, 51, 51,123, 89,114,109, 82, 82, 82,142,123,120,120, 52,185,112,226,200,156, 75,103,142,119, +101, 24,131, 39, 1,129, 72, 36,138, 53, 50,166,243, 70,189, 62, 56, 49, 49,241,185, 39, 98,155,243,209, 0, 60, 85,103, 64, 32, +160,139,231,158, 42,185,220,191,172,159, 6,127,255,221,149,254, 78, 34,145, 28,255,241,199, 31,251, 13, 31, 62,156, 8, 4,130, +210,110, 55,243,249, 83, 20,133,107,215,174,105,244,122, 61,182,109,219,198,201,100,178, 42, 39,174,253,187,174, 81, 65, 65,193, +232,254,253,251,111, 7, 32, 1,240, 48, 55, 55,119,188, 90,173, 78, 44,187,127,192,128, 1,219, 1, 72, 8, 33,127,217, 95, 29, +204, 83, 54,216,217,217,221, 43,113,174,164,181, 9,116,175,162,124,211,149,117, 31, 90,210, 85, 88,178,182,224, 59,230,237,192, +192,192,197, 19, 38, 76, 40,187,216,115, 8,128, 70,181,120, 56, 59, 77, 8,105, 62,111,222,188, 79,100, 50, 89, 55,141, 70,227, + 13, 0,114,185,252,126, 81, 81,209, 57,131,193,176,142,227,184,156,170, 56, 98, 99, 99,245, 13, 27, 54,140, 54,153, 76,190,206, +206,206,165,163, 15,197,226, 98, 55,233,218,125,251,176,164,164,164,214,181,124,120, 76,172,202, 81,174,236, 55, 85,237,215,235, +245,233, 87,174, 92,177, 63,115,230, 12,205, 48, 12, 78,156, 56, 81,250,208, 87, 81,111, 96, 92, 92, 28,244,122,189,150,111,230, +120,240,120, 57, 32,127,103, 55,189,165, 22,162, 74,165,122, 79,174,144, 78,172,223,212,195, 47,225, 81, 74, 84,126,118,193,238, +228,228,228, 45, 28,199, 49,188,125,250,223,229, 20,203,173, 79, 18, 90, 84,175,210, 6,135, 49, 60,213, 23,229,189, 94, 17,103, + 80, 80,144,187, 72, 36, 90,169,211,233,122, 87, 53, 75, 59, 77,211, 38,153, 76,118, 92,171,213,206, 44,191,216,243,191, 49, 63, + 23, 45, 90, 84,161, 37, 97,233, 40,194, 5, 11, 22,176, 53, 73,103,203,150, 45,207,201,229,242, 10, 39,212, 44, 42, 42,138,143, +140,140,236,245, 42,228,167,121,180,156, 37,113, 71,101, 57,107, 53,138,240, 37,221, 71, 30, 30, 30, 82,107,107,235,149, 20, 69, +185, 89, 40,142,245,105,105,105,211, 50, 50, 50, 82,248,122,137,231,228,187, 8, 95, 81, 7,235,239,134, 90,173,222, 7, 96, 31, +127, 57,254,191, 96, 22, 79,181, 65,137, 88,122,255,255, 45,207,204, 2,169,130,239,239, 3,120,225, 67,242, 45,153,142,225, 85, + 64,109, 3,186, 75, 4, 84,167,127,195, 57, 38, 38, 38,106, 1, 76,226,107, 14, 30, 60,254, 29,224, 59,232,121,240,224,193,131, + 7, 15, 30, 60, 94, 48, 8, 0,223, 74,158, 8, 45,182,254, 8, 33,190,181,120,226,188,195,115,242,156, 60, 39,207,201,115,242, +156, 60,231,255, 23,103,117,220,255,149,174,199, 87, 34, 6,139,231,228, 57,121, 78,158,147,231,228, 57,121, 78, 62, 6,235,191, + 4,190,139,144, 7, 15, 30, 60,120,240,224,193,227,101, 9, 44,165,107,179,102, 78,245, 91,110,183,175,227,119,203,190,142,223, + 45,167,250, 45,183, 43, 93,155, 53,251,127,204, 52,149, 74, 37,115,115,115,251,160,110,221,186,167, 91,181,106,149,231,238,238, +254, 41, 95,148,106,142,174,132, 8,222, 39,228,227, 17,132,196,143, 32, 36,254,125, 66, 62,238, 74,136,224,191,118,158, 75, 38, +185,183,189,120, 98,232,241, 37,147,220, 43,156,128,109,209, 12,149,195,229,147,131,215,205,157,228,110,255,130,158, 44,173, 92, + 92, 92,190,115,117,117,125,226,226,226,242,212,197,197,229, 71, 66,136, 13, 95,226,120,240,224,193,227,159,131, 69,141,153,125, +189, 22, 99,155,121, 55,157,185,120,193, 28,226,238,234, 36, 55,154, 24,195,227, 39,137, 62, 11,150, 46, 63, 96, 95,175,197,234, +172,167,183,127,168, 69, 35, 64, 60, 60, 60,222, 19, 10,133,253, 0,152,133,218, 61,163,209,120, 52, 49, 49,113,159,165,163,130, +252,252,252, 46,209, 52, 93,183, 38,255,205,178,236,147,200,200,200,206,181,201, 48,119,119,247, 65,238,238,238, 63,182,109,219, + 86,222,170, 85, 43,136, 68, 34,172, 88,177, 98, 58,128, 53, 22,159,123,215,174, 2,231, 28,251,225,180, 64,240, 38, 0, 63,142, + 3, 64,232, 91,172,209,112, 44,205, 46,115, 59,119,254,188, 69,211,136,187,185,185,205, 37,132,140, 68,241,176,242, 31,212,106, +245,202,191,163,144,168, 84,170, 58,132,144,110, 28,199,121, 83, 20,117,155,101,217, 83,106,181, 58,243,121,121, 93,128,143,218, +119,236,184,110,196,244,233,180, 38, 36, 4,235,126,252,113, 45,242,242, 0,224,219,154,150,165,160,160, 86, 3,173,172,208,143, + 0,254, 32, 32, 20,184,155, 89, 57,212,239,161,161, 17,251, 44,153, 75,173, 50, 4, 4, 4, 28, 3,208,167,100,243,247,240,240, +240,190, 53,229,200,142, 99,231, 75,132,222,157,178, 99,207,205, 7,208,187,252,126,147, 86, 58,130, 22,214,233, 71,115, 17, 9, + 0, 86, 61,167,184,146, 59, 57, 57,221, 58,124,248,176, 71, 80, 80,144, 0, 0,194,194,194,134,247,235,215,175,123,137,165,159, +247, 50, 42,154,118,237,218,217,153, 76,166, 29, 52, 33,109, 89,150,181, 5, 0,138,162,114, 24,142,187, 38, 16, 8, 70,212,118, +178, 98, 30, 60,120,240,248,215, 10, 44,165,139,183, 79,243,230,205,166,159, 56,180,163, 78, 78, 86,142,246,219,149,219, 35, 52, + 2,113, 81, 3, 31, 47,209,250,213, 95,217, 78,154, 58, 99,170,210,197,251,122, 65,234,253, 40, 75,255,212,205,205,173,110,253, +250,245, 15,206,157, 59,215,183, 99,199,142, 66,103,103,103,164,166,166,226,193,131, 7,190,151, 47, 95, 30,112,248,240,225,233, +110,110,110,239, 84, 55,131, 59, 0, 40,196,162,134,251,190, 90,230, 42,182,181, 3,199,152, 96,219,188, 37, 0,128, 99, 89, 36, +159, 63, 13,214,104, 4,199, 50,240,120,227,173,226,239, 57, 14,109,218,180, 17,213, 38,179, 60, 60, 60, 84, 77,154, 52,217, 53, +123,246,108,145, 78,167,195,205,155, 55,113,245,234, 85, 54, 45, 45,109,185,197,162,162,197,219, 62,174, 2,215, 3,253, 7,244, +174,223,247, 53,103,113, 61, 87, 39,176,172, 20, 15, 30, 25,234,158,190, 24,241,198,239, 39, 78,205,116,246,121,123, 80, 90,212, +161,219, 85,241,248,250,250,182,165, 40,234,203,164,164, 36,179, 8, 90, 17, 20, 20,244, 69,217, 99,202,107, 84,150,101, 33, 16, + 8, 82,139,138,138,222,187,115,231, 78, 68, 69,188,235,102, 8, 82, 77, 12,227, 92, 82, 60,242,215, 29,116, 61,213,179,103,207, + 6,163, 71,143,134,191,191, 63,194,194,194,186,237,223,191,255,147, 58,117,234,132, 26,141,198,223, 37, 18,201,249, 39, 79,158, +212,106,129, 69, 17,240,217,136,233,211,105,229,147, 39, 80,222,188,137,161,121,121,130,175,128,207,106, 34,176, 2, 2, 2, 26, +246,234,233,127, 96,192, 59, 93,154,185,186,250,136,132, 66, 71,112, 28, 7,163, 49,171, 73,122,250,189,129, 54, 54,152,221,166, + 77,155,119,111,220,184,241,208, 18,190,214,173, 91,187,176, 44,187,153,227, 56, 17, 33,100, 50,128, 62, 39, 78,156, 0,195, 48, +232,219,183,111,159,128,128,128,134, 28,199,125,163, 84, 42, 57,141, 70, 51, 38, 52, 52, 52,181, 42,231, 42, 39,150,157,159, 34, +104,244, 70,211,192,145, 72, 17,156,124, 99,218,235,110,199,109, 27, 81, 75,230,111, 72,186, 6, 0,189, 61, 61,173, 26,122,203, +103, 41,173,125,237,115,147, 78,207,234,237,233,249,253,241,216,216,252,231, 16,195, 43,119,236,216, 81,167,109,219,182,165,147, +228,182,106,213,138, 94,177, 98,133,251,180,105,211,214, 2, 24,101, 33, 79, 19, 7, 7,135,147, 44,203,234,238,222,189,219,196, +252,189,115,203,119,218, 59, 88, 41,122,164,103,231,135,100,220, 61,124,193, 18,174,192,192,192,209, 34,138,250,110,245,188, 73, +116, 51, 63, 63,200, 29,157, 97, 80,171, 81,104, 50,218, 95,139,188,219,247,171, 53,223,165, 7, 6, 6,142, 11, 11, 11,251,145, +175,146,121,240,224,241,127, 35,176, 36, 18,241,236, 5,159,207, 34,217,153, 57, 26, 67,126,158, 65,206,233, 77,214,114, 41,201, + 75, 75,207,121,108, 45, 47,154, 54,117,138,116,214,236,207,103, 3, 24,106,169,184,242,246,246,190,241,253,247,223, 59,219,219, +219, 35, 55, 55, 23,153,153,153,184,113,227, 6, 56,142, 67,239,222,189, 37, 45, 91,180,240, 95,189,102,205, 85, 55, 55,183,118, +213,137, 44,129, 80, 64,132, 10, 5,126,233,226, 15, 74, 36,194,187,247,139, 23,134,230,140, 6,156,120,255, 77, 0, 0, 45, 22, + 99,112, 76, 26, 0, 64, 42,149,214, 58,179, 56,142,107,215,161, 67, 7, 17, 0, 76,159, 62, 61,175,176,176, 48,152, 16,178, 71, +173, 86, 39, 89,242,123,199, 22,111,121,185, 56,185, 94,248,122,233,135,246,190, 13, 27, 65,111, 52, 34, 49, 45, 9, 28,196,112, +117, 86, 96,232,128,150,162, 14,129,162,198,171,190,253,227,188,139,111,255,206,169,119,126,189, 91,169,176, 84, 40,118,172, 93, +187, 22, 63,255,252, 51, 0,224,220,185,115,240,242,242, 82, 84,151,134, 7, 15, 30, 52, 26, 57,114,228, 94, 0,141, 43,218,111, + 98, 24,231,233, 99, 38, 0, 0, 86,109,221,100, 21, 29, 29,221, 64, 38,251,115, 45,229, 46, 93,186,160, 75,151, 46, 84,112,112, +112,208,185,115,231,130,246,238,221,107,112,119,119, 95,155,148,148,180,191, 54,121,170, 9, 9,129,242,230, 77, 32, 36,164,198, +191,109,213,170, 85,221,230,205,157,174,174,250,250, 11,167,223,142,222,197,215, 95,255,136,216,216, 88, 0, 64,163, 70,141,240, +193,144, 65,194, 61,187, 55, 55,159, 61,123,225,149,128,128,128,142,225,225,225,213,206,110,206,178,236,230,224,224,224,183,148, + 74, 37,102,207,158, 29,221,176, 97, 67, 88, 91, 91, 99,203,150, 45,176,179,179,131,209,104,140, 94,177, 98,133, 64,173, 86, 99, +253,250,245, 91,203,184, 91,127, 65,231, 62, 93,230, 75,132,222,157,154, 6,142,132,210,218, 13,223,255,180, 15, 15,194,182,119, +210, 25,239,207,159, 59,201,125, 24,205, 73, 70,186,123, 41,103, 55, 8,236,234,208,184,121,127,212, 15,184,233,168, 99, 66, 30, +205,255,184,209,114,129, 84,187, 99,193,215,127,117, 9,201,160, 3,180,111, 94,168,253,157,211,138, 76,142, 43,157, 52,148,160, +100, 14, 44, 87, 55,213,155, 93,186,116,161,205, 2,251,201,147, 39,208,235,245,240,241,241,161,244,122,189, 69,115, 90,169, 84, +170, 38,157, 59,119,190,180,107,215, 46,135, 78,157, 58,165,151,221,231,234, 96,251,250,133,131,107,167,124,185,110,183,183,179, +207,219, 57,213, 61, 8, 4, 6, 6,142,110,209,164,209, 15,107, 87, 44, 32,116, 97, 34, 4,182,153, 0,155,137,228,189, 91, 1, +185, 61,250,142,159,134,214, 65, 65,244,148,169,115,127,104,221,186, 53, 23, 26, 26,186,141,175,150,121,240,224,241,127, 33,176, + 88,142,245,115,114,178,151,174, 95,185, 61,204, 77, 74, 17, 87, 15, 21, 17, 91,219, 10,160, 84, 72, 40, 90,168,105,212,200, 67, +196,114,172, 95, 37,130,228,153, 17, 6,132, 16, 82,191,126,253,131,219,182,109,115, 22, 10,133, 96, 89, 22, 78, 78, 78,120,244, +232, 17,178,179,179, 81, 80, 80,128,216,123,247, 80,191,142, 7,166,140,251,208,109,201,215,171, 14, 18, 66, 2,203,118, 23,150, +231,228, 88, 14,172,233,217, 30, 53, 66, 8, 42,234, 95,172,108, 25, 25, 75, 71, 66,176, 44,251, 88,173, 86, 67, 46,151,163, 89, +179,102,202,208,208,208,139, 73,102, 11,169,186,115, 31, 52,136,118, 19, 75,142,172, 92,250,158, 61,161,163, 17, 29,159, 3, 79, +143, 54,112,176,169,131,164,244, 2,132, 71,253,142,232,216, 99,240,244,168,139,113, 31,120,218,174,217,156,126,148, 4,124,228, +201,133,111, 49, 86,196,153,159,159,175,172, 91,183, 46,220,221,221,193,178, 44, 24,134,193,221,187,119, 75, 63,155,215, 75, 52, +127, 94,187,231, 50,236,232, 12,188,247,118, 31,100,101,101, 41, 45, 61,119,179,184,218,185, 76,213,188,168, 32, 89, 4, 0,114, +165,155, 97,216,156,164,187,173, 91,183,134,147,147,147,232,202,149, 43,211, 0,236,175,105,126, 26,128, 21,235,182,109, 91, 63, + 52, 55,151, 2,128, 31, 8, 97, 13,197,179,106, 91, 84,150,122,189,214,234,208,154, 53,243,157, 8, 23, 5,123,155,175,112,227, +198, 83, 24, 12,197, 87, 62, 51, 51, 13,147, 63,206,131, 64, 96,133, 85,171, 22, 56, 12,126,111,194, 47, 37, 93,100,108, 85,233, +228, 56, 78,116,255,254,125, 52,111,222, 28,123,247,238, 21,208, 52,141,235,215,175, 67, 38,147, 97,228,200,145,240,245,245, 21, +200,100, 50, 92,188,120, 17,121,121,121,164,170,116,134,252,126, 97, 73,118,220,185,249, 41,244,201, 55,190,255,105, 31, 62, 28, +242, 30, 92, 77,113, 23,237, 60,169, 37,189,251,182,255,130, 22,214,233,167,176,242,181,243,242,237, 15,145, 88,137, 73,159, 45, + 70,244,157, 35,118, 69,249,183, 63,102,140, 9,117, 0,124, 82,158,147,219, 63,144, 89,189,221, 57,224, 76,221,136,122,170,128, +143,174, 39, 71,124,119,235,207,127,111, 38, 0,165,177, 53,139,171,135, 15, 31, 34, 54, 54, 22, 52, 77, 67,163,209, 60,179, 80, +112, 89, 78,127,127,255,143, 24,134,249, 2, 0,244,122,253,118, 23, 23,151,209,223,124,243,141, 3, 77,255,185, 82,148,217,185, +202,202,201,203,190, 18,122,247,193,180,143, 6,118, 13,185,118, 39,193,182,229,128,248,156,200,195,185, 21,229,103,187,118,237, +236,196, 52,253,221,186,175, 23, 17, 38,238, 15, 72,154,117,133, 64,233, 5,198,152, 4,109,118, 1, 52,143, 82, 96,216,178, 1, +141,198, 79,197,202, 21, 95,146, 33,195,198,124,231,233,233,121, 48,182,140,131,247,119,140, 82,226, 57,121, 78,158,243,213,228, +252,191, 19, 88,132, 80,121, 6,131, 81,104, 93,199,221,248,238, 59,157, 91, 68, 92,191, 19,173,180,183,161, 90,182,105,225,115, + 39, 58, 49, 28, 38,198, 64, 8,101, 81, 92,135,135,135,199,123, 11, 22, 44,104, 97,109,109, 13,150,101, 97, 99, 99,131,244,244, +116, 24, 12, 6,228,229,229, 65, 87,144, 15, 67,126, 30, 34,227,159,160, 99,215,174,120,173, 93,187,102,191, 27,141,239, 1,216, + 91, 25, 39, 67,209,156,131,127, 27, 12,138,203, 4,107,208, 99,127, 35,135, 82,215,234,253, 39, 57, 32,132,128,209,235,240,123, +155,198,144, 40, 21,240,155,185,160,214,153,149,156,156, 28, 81,175, 94,189,227,111,188,241, 70,239,113,227,198, 81, 41, 41, 41, + 39, 92, 92, 92, 58,164,166,166, 86,219, 61,234, 28,195,140, 28, 49,206,191,145,163, 45,133,223, 46,159, 68, 91,239,183, 33,151, + 8,145,158,173, 1, 69, 8, 98, 31,159, 1,195, 40, 16,121, 63, 30,237,124, 21,232, 20,100,227, 81,240, 71,214, 56, 84,222, 93, + 70,178,179,179,145,150,150, 6,163,209, 8,147,201,132,129,131, 6, 97,199,246,237, 40, 44, 44,132, 86,171,133, 94,175, 7,203, + 22,235,137,148,244, 2,220,136, 60,129,192, 22, 77,128, 42,102,252, 22,208,116,218,170,173,155,156, 1, 64, 38,183, 55,230,231, +231, 67,161, 80,160,168, 32, 89, 52,225,131, 98,103,107,211,158, 77,162,115,231,206, 33, 60, 60, 28, 42,149,202,162,114, 84, 17, + 98,129,239, 30, 51,204,188,222,135, 14, 57, 95, 62,116,136,189,246,219,111,137,146,252,252, 45,150,252, 54, 40,168,213,192, 73, +147,250, 54,147, 73,101, 72,140, 95, 11,111,111, 17,166,127,234,128,224,175, 50, 0, 0, 83, 38,121, 32, 48,208, 1,121, 57, 7, +224,232, 60, 23,211,167, 13,240, 44, 40,224,134, 3,216, 94,117,121, 39,147,119,239,222, 29,221,171, 87, 47, 65, 68, 68, 4, 36, + 18, 9,100, 50, 25,164, 82, 41,100, 50, 25, 82, 82, 82,160,215,235,177,127,255,126, 83, 73, 23, 98,165, 40,233, 6,236, 61,173, +151,219,241, 7, 97,219, 59,185, 83,143, 34, 7, 76,107,255, 56,226,122,100,193,217, 63, 46, 47, 49,105,165, 9, 57,137,167,103, + 53,108, 29,233,248,241,204, 69,216,176,114, 1, 30, 92,191,144,229, 82, 55,255, 91,134,232,182,119,168, 96,158,251,174, 93, 23, + 9, 38,206, 27, 98,156, 56,250, 93,155,163,110, 87, 62, 60, 42, 64, 70,106,214,237,175, 17,119, 67, 35,241,106, 62,172, 73, 67, +162, 63,123,246,172,172,115,231,206,208,104, 52,197,247, 2, 77, 99,247,238,221,172,201,100, 58, 87, 81, 58,141, 70,227, 23,225, +225,225,110, 69, 69, 69, 24, 50,100,200,148,133, 11, 23, 42,132, 66, 97,241,253,197, 48,207, 56, 87, 75,215,236, 60, 57,245,139, +111,207,157,220,251,149,106,233,236,209, 93,135, 78,250,242, 28,128, 19, 21,186,161, 38,211,142, 53, 95,205,161, 37,182, 6,144, +214,189, 96, 72,211,224,233, 15,227,160,207,213,160,201,146,197, 0, 68,208, 27,104, 28, 29, 48, 8,180,189, 10, 99, 59,119, 16, +108,185,112,105, 7,128, 1,124,213,204,131, 7,143,114,104, 13,192,169,228,115, 70, 73, 59,230, 0,192,236,178, 59, 1,208, 3, + 16,151,249, 77,249,237,178,199,150,223, 46,251, 57, 3,197,177,205, 78, 0, 24, 0, 55, 0,212, 56, 78,148, 42,105, 84,184, 50, + 13, 12, 87,206,181, 9,137,141,123,162,233,218, 37,208,237,220,141,152,136, 55,222,126,173, 77,231,238, 65,109, 83, 51,243,226, + 92,157,172, 21, 87,174, 95,147,176, 44,107, 81,255,142, 80, 40,236,215,177, 99, 71, 65,118,118, 54,228,114, 57,210,211,211,145, +148,148, 4,131,193, 0, 77,110, 14,116, 57,217,208,100,103,193,152,159,131,216,208,235,104, 90,215, 93, 82, 18, 4,111, 17,202, + 59, 84,230, 21,236, 9, 69, 65,106,109, 5,153,181, 53,104,186,102, 51, 83,168, 84,170,254,222,222,222,215,220,221,221,231,149, + 60,225,127, 28, 28, 28,156,193,113, 28,102,205,154,101,109,109,109,189,191,126,253,250,146,234,120,172,236,153,129, 65, 45, 26, +211,209, 79,111, 35,208,235, 93, 52,112,235,140,216,164, 92,164,231,106,145,146, 85,136, 38, 77,102,194, 73,245, 33,108, 92,199, +227,246,131, 4,184,185, 54,160,104,161,232,141,170, 56, 83, 82, 82,158,217,254,105,207, 30, 20, 21, 21,161,113,227,198,120,255, +253,247,241,217,103,159,225,189,247,222,131, 74,165, 66,167,198, 2,140, 30, 54, 16,105,105,105, 85,166,243,147,175, 77, 46,171, +247,187, 69, 76, 95,195, 69,180, 30,112,234, 78,108,108, 44,162,163,255,218,179,246,199, 31,127, 32, 55, 55,183,180, 1,182, 4, + 46, 46, 46,115,220,220,220,110,185,185,185,221,117,115,115,251, 61, 85,165,186,111,108,212,200,165,195,128, 1,196,103,240, 96, + 58, 65,161, 32,143,235,212, 81, 90,194,101,109,141,190,129,129, 29,197, 57,217, 63, 2, 40, 22,145,163, 71, 57,225,210,133,230, +184,124, 49, 0,147, 39, 53, 2, 69,164, 32,148, 8, 69,133,127,192,167,185,175,200,202,138,171,178, 44,149, 4,180,199, 53,111, +222, 92, 48, 97,194, 4, 72, 36, 18,236,216,177, 3,155, 54,109,194,234,213,171, 17, 29, 29,141,122,245,234,193,205,205, 13, 46, + 46, 46, 2, 0,113, 37,191,169, 18,182,158,212, 18,157,241,254, 69, 59, 47, 69, 28,161,156,219,235, 76,210,119, 23,124,173,206, + 92,242,109,220,170,199, 15, 52,141,238, 95,191,144, 25,125,231, 87,246, 81,232,185, 12,117, 76, 65,163, 37,223,198,173, 90,182, + 33, 41,171, 34,174, 11, 23, 22, 48,135,127,191, 96, 40, 44, 40, 18,244,239,221, 67, 51,126,212,251, 77,236,229, 77,119,195,189, + 87,171,250,117,220,134, 45, 88,182, 94, 63,118,194, 84,195, 15, 91,127,228,242,243,243,145,151,151,135,117,235,214,153,126,251, +237,183, 36,134, 97,166, 86,146, 68,186, 68, 16, 97,208,160, 65, 10,153, 76,134,132,132,132, 82, 23, 20, 0,146,211, 51,111, 95, + 14,189,115,127,218,248, 65, 93, 10,117, 58,221,201,243, 97,247,124,188,234,121, 16,194,213,175,236,188,105, 66,218, 54,247,243, + 3,199,229,128, 18,212, 69,226,206,175,161, 73,201, 66, 81,122, 22, 40,161, 2, 70, 72, 97,224,196,144,250,181,193,211,240,155, +112, 81, 90, 67, 64, 72, 7,190, 29,225,193,227,255, 19, 85,105, 17, 0, 78,132,144,163,132,144,163,115,230,204,233, 6,192,129, + 16,114,180, 68, 4, 57,149,124, 22,155,143,169,100,219,169, 44, 79,185,223,150,253,236, 56,103,206,156,238,132,144,163,237,219, +183, 31, 86, 34,228,106,140,106,213, 6,173,213, 7,207,153,183,128,178, 86,138,173,124,154, 53,176,251,237, 84, 72,196,229,107, + 55,239, 89,201,165,146,130,194, 66,241,234,111, 54,213, 37, 69, 26, 75,131,188,155, 57, 58, 58,194, 96, 48,224,225,195,135, 72, + 76, 76,132,193, 96,128,169,168, 16,186,156, 28,104,179,179,193, 22, 21, 64,196,176,208,100,164,195, 78, 42, 6,254, 28, 97, 88, +149, 85, 89, 42,166, 42, 18, 92,132, 16, 72,173,173, 32,182, 82,130, 18,208, 22,103,142,155,155, 91, 64,171, 86,173,126, 62,123, +246,108, 80,199,142, 29,151,212,175, 95,223, 38, 37, 37,229,105,106,106,106,143,149, 43, 87,234,156,156,156, 48,116,232,208,166, + 70,163,113, 68,117, 92, 34,169,174, 69, 61, 23, 47,212,117,233, 15,149, 67, 91,100,230,233,144,158,163, 65, 74,102, 17,246,253, +242, 62, 78, 31,127, 31, 55, 47, 14,195,195,235,163,145, 89,104, 13,169,125, 55, 0, 92,149, 51,232, 94,187,118, 13,155, 55,111, + 46,125,109,216,176, 1, 89, 89, 89,104,222,188, 57, 18, 18, 18,112,226,196, 9,164,164,164,192,201,201, 9, 55,111,222,196,150, + 45, 91,112,253,250,245, 26, 23, 18,173, 86, 11,145,196,193,176,105,207, 38,108,218,179, 9, 12, 20,134,178,121,111,113, 97,163, +168,145,201, 3, 6,180, 72,182,181,245,241,243,243,235, 61,120,240,224, 70, 65, 65, 65,165,251, 61, 61, 61,235, 10, 4,130, 20, +149, 74,245,131, 74,165,106, 85, 37, 25,203,249,219,217, 55,131, 94,119,191,228, 26, 11, 64,136, 4,221, 95,187,135, 14,157,194, + 97, 48,138, 65, 40, 9, 40, 34,133,201,148, 9,107, 43, 23,112, 92,181, 51, 18,247, 57,113,226, 4, 54,111,222,140, 71,143, 30, +149,118,143,246,235,215,111,242,144, 33, 67, 14, 50, 12,131,163, 71,143,226,240,225,195,104,216,176, 33, 90,181,106, 5,131,193, +208,167,186,243,158,191, 33,233,218,158,213,199,223, 23,154,108, 91,137, 37,245, 26, 82,249,242,254, 31,119,117, 82, 0,192,241, +216,216,124,151,186,249,203,139,242,239,196,219,121, 20,126, 85, 93,128, 59,199,129, 11,139,190,123,125,239, 47,167,114, 83, 51, + 50,133,254, 45,125, 53, 95, 46,154, 41,170,223,160,241,138, 5,179, 38,186, 36,229, 73,115, 95,155,114,252,254,193, 19, 55, 10, +134,143, 30,103, 26, 51,110,146,246,228,169, 63, 14,177, 44,235, 87,217, 8, 66,150,101,145,156,156,140, 59,119,238,224,209,163, + 71,200,200,200, 64,122,122, 58,242,243,243, 75,187, 21,229,249,121,199, 54,108,251, 45, 82, 33,147,201,131, 90,120,213,189, 30, + 17,149,166,144,201,228, 94, 13,234, 54, 33,164,226, 5,168, 89,150,181, 45,206, 67,130,252, 59, 33,208,102,229, 67,147, 83, 0, + 77, 86, 1,116, 6, 26, 90, 29, 5,173,129,130, 99,167, 94, 40, 40,212, 64,155,149, 3,150,227,236,248,102,134, 7, 15, 30, 85, +180,247,253,150, 47, 95,190,172,170,253,101,222,245,229,182, 65, 8, 57,202,113, 92, 63,142,227,250,149,136, 41,179, 78, 56, 90, +150,103,249,242,229,203, 56,142,235,119,229,202,149,159, 0, 20,213, 38,173,213,118,237,100,100, 68, 23, 88, 59,249,188, 51,117, +214, 23,191,239,254,126,189,115, 86, 86,118,180, 72, 42,211, 74,165, 98,251,207,102, 45,178, 45, 44,202,125,167, 32,203,242, 81, + 79,217,217,217,165,141,151, 72, 36, 2, 83, 84, 8, 70, 83, 4,109,118, 38,136, 65, 7, 17,195,192, 94, 46, 71, 93,149, 11,234, +187,184, 86,203, 71,179, 12, 81,159,254, 29, 39,135,189,253, 76,183, 32,107,208,227, 68,251,166, 16, 43, 21,144,217,218,161,227, +225,139,197, 66, 71, 36, 2, 22,124, 85, 45,175,171,171,171,163, 74,165, 58,242,205, 55,223,136, 50, 50, 50,112,247,238,221,200, + 39, 79,158,228,218,219,219, 91, 9,133, 66, 54, 38, 38,230,204,131, 7, 15,250, 53,104,208, 0, 28,199,121, 86,199,151,159,163, + 48, 24,140, 44,146,210,158, 34, 49,249, 14,108,148,117,193, 81,117,144,154, 85, 4, 2,103, 24,181, 15, 74, 99,201,116,154, 68, + 20,234, 44, 91,183,215, 96, 48,192,104, 52,194,104, 52, 66,175,215, 99,248,240,225,184,114,245, 42,246, 28, 62,143,132,132, 4, + 52,116,149,227,253,247, 6,161,101,203,150, 8, 11, 11,171,117,161,246,235,123,242,174, 76, 38,195,166, 77,155, 32,151,203, 81, + 83,129,229,230,230,182,202,219,219,187,241,131,194, 66, 68,221,191,143, 54,131, 6, 1, 0, 46, 93,186, 84,122,140, 70,163,193, + 7, 31,124, 32,126,244,232,209,152,251,247,239,143,113,115,115, 91,157,156,156, 60,189, 50,206, 99,199,174, 98,252,248, 40,164, +167, 23, 59,187,251,126,242, 41,221,247,248,145, 1,111,244, 45,238,185,178,181,181,197,170, 85,150,173,246,192, 48, 12,182,108, +217, 2,153, 76, 86, 42,176, 68, 34, 81,135,105,211,166,189, 83,209,241, 62, 62, 62,213,114, 78, 27,228, 33,189,249, 84,246,177, + 77,227, 6,190, 54, 78,126,200, 48,221,108, 17,145,148, 50,121,218, 32,143,181,171,247, 39,106, 25,162,219,206, 24, 19,234, 8, +164,218, 29,150,164, 49,246,248,122,189, 93,195,143,118,164,164,229,126, 62,105,220, 80, 7, 91, 59,151,130, 31,190, 9,182,165, + 40, 10,191,133,235,179,155, 55,114,176,235,223,118, 93,193,248, 79,231, 71,232, 77, 79, 39, 35,225,232,131, 18,187, 27,149, 9, +172,164,164, 36,100,100,100, 32, 62, 62, 30,233,233,233, 32,132, 32, 61, 61,189, 70, 14,101, 69,142,178, 62, 49, 9, 41,135,182, +194,245,131,161,104,178,120, 49, 88, 86, 8, 77,145, 9, 7, 58,245, 64, 94,174, 6,122,150,192, 54,160, 61, 94, 59,122, 17, 20, +107, 2,174, 94,225, 91, 16, 30, 60,120, 84, 85,175, 28,157, 61,123,246, 92, 11, 15, 63, 3,192,162,169,117,202, 11,174,217,179, +103,207, 53,255, 87,112,112,176, 6,128,250,133, 11, 44, 0,200, 75,143,138,115,168,231,151, 92, 80,164,145,218,217,219, 21, 89, + 41,197, 92,110, 78, 46,125,255, 97,180,182, 32,249,225,131, 26,252,223,189,187,119,239,250, 38, 37, 37, 33,254,233, 83, 24,139, + 10, 65,244, 58, 64,171, 65,207, 78, 29, 32, 5, 32, 37,128,136, 53,128,166,197, 40, 40,200, 3,128,123,213,145,178, 70,227, 51, +149,122,105,183,160,149, 21,196, 74, 5, 36,214, 86,207, 56, 90,150, 64, 38,147,237,217,178,101,139,155,155,155, 27,214,172, 89, + 3, 55, 55, 55,239,158, 61,123, 22,117,233,210, 69,230,232,232,136, 38, 77,154, 32, 48, 48, 16,231,206,157, 3, 33, 36,182, 58, + 62,147, 94, 28,126, 47,142,169,147, 87,112, 19,215,195,119,193,168,215,163,129,215, 28,232, 76,142, 80, 56,143,129,198,112, 4, +134,156,243, 0, 0,177,117, 87,164,166,102, 0, 32,119,170,115,238,202,111,223,186,117, 11,219, 15, 93, 66,221,102, 93,145,146, +117, 2,119,238,132,193,197,238, 20,188,124,154,195, 88, 38,159, 44,113, 5, 45, 21, 36, 22,222, 20, 31,204,153, 51, 7,185, 50, + 25,208,183, 47, 68,113,113, 48, 24, 12,104,219,182, 45, 90,183,110, 13, 0,104,219,182, 45,104,154, 70,227,198,141, 97,111,111, +143,131, 7, 15,126, 0,160, 66,129,197, 17,114,147,101, 50,189, 27, 53,106, 84, 42,176,118,236, 76, 71, 68, 88, 79, 16,136,177, +126,195,159,151,164,110,221,186, 72, 73,121, 4, 66,170, 13,202,252,189,111,223,190,125,236,236,236, 48,106,212, 40,200,100, 50, +188,253,246,219,208,104, 52,131, 75,158,104, 48,103,206, 28, 0,192,130, 5, 11,176,112,225, 66, 20, 21, 21, 85, 58, 69,197,230, + 47,253, 84,249, 26,118,180,155,155,234,237,110,142, 13,252,186,191,222, 19, 13,189,122,160,251,235, 9, 0,176,204, 81,248,120, +208,138,207,125, 15, 53,168, 99,191,237,202,225, 51, 95,116,236,221,109,222,162, 41,246, 75, 22,172,207,170,246,129, 37,231,241, +119,249,247,133,111,174, 93,191,217,180,102,193,220,105,146,167, 25,134, 44,117, 54, 91,160,144, 8,172, 60, 93,160,156,252,217, +146, 71,106,245,195, 25, 72, 56, 21,109,201, 53,124,244,232, 17,116, 58, 29, 24,134,129, 78,167, 67, 65, 65, 1, 18, 19, 19, 75, +175,175, 70, 97,253,198,164, 81,111,182, 44,212,104,138,174,223,142,137,159, 55,101,104,187, 66,141,166, 40,230,113,124, 52,199, +173, 99, 43,185,230, 57, 69,249, 5,246,250,124, 35,114, 34,163,225,216,189, 30,244, 38, 2,157,137, 70, 86, 70, 62, 12, 12, 96, +164,132,240, 24, 56, 28, 38, 34, 64, 94,122, 10, 40, 66,248,249,176,120,240,224, 81,173, 16, 10, 14, 14,238,247,119,113, 3, 64, +112,112,240,221,224,224,224,231,250, 47,179,192,234, 90,166,191,179,107, 5, 21, 37,105,229, 87,215,125,217,220,119, 84, 70,163, +222,187,160,160,128, 17, 8,196,130, 58, 54,154,148,154,252,153,209,104, 60,122,241,226,197, 1,157, 58,117,146,196,220,142,132, + 46, 55, 23,186,220, 28,136, 88, 19,236,165,129,160,140,122, 16,189, 14,238, 77, 89,104,242,164,184, 26,250,192,104, 52, 26,143, + 86,153, 33,224, 56,214, 84, 44, 28, 40,138,126,166,171, 80, 98,165,132, 88,169,132, 68,105, 85, 97, 23, 98,101,112,113,113,145, +247,238,221,187,135,191,191, 63, 56,142,195,202,149, 43,161,215,235,197,102,167,200, 96, 48, 32, 63, 63, 31,191,252,242, 11,118, +238,220,121,217,198,198,166,218,161,229,172, 73,119,252,220,229,200, 62,195,222,238, 46, 62,125,254, 7, 24,117, 38, 20,232,108, + 81,168,213, 35, 95, 35,132, 94,242, 58, 8,185, 8,138,150,160,125, 43, 79,156,189, 20,163,101,140,134, 19, 53, 17, 67,132, 16, +232,116, 58,164,165,165, 35, 43,255, 28,144,159, 4, 71, 67, 62, 10, 30,199,162,213,240, 17,208,235,245,213,114,173,155, 33, 72, +157, 54,136,113, 94, 61,141,130, 84,102,103,108,243,246,233, 74, 69,137, 82,169, 44,141,209,177, 72,168,231,229, 97,215,174, 93, +104,219,182, 45,186,116,233,130,164,164, 36,196,197,197,161, 79,159, 63,123,217, 34, 35, 35, 17, 17, 17, 1, 79, 79,207,106,184, +184,223,179,178, 30, 14,234,223,191,191,232,218,181,107,224, 56, 14, 94, 94, 54,176,182, 82,130, 80, 18, 52,107,230, 4,224, 1, + 8, 33,232,218,181, 43, 12, 6,181,169,176, 16,191, 87,197, 25, 30, 30,222, 55, 32, 32,160,161,209,104,140,246,245,245, 21,164, +164,164, 96,224,192,129,216,183,111,159,249,137, 6,179,103,207,126,230, 55, 5, 5, 5,218,202,248, 90,182,105, 50,131,225, 28, +186,136, 37,245, 26,218, 56,249,161,161, 87, 15, 0,192,107,253, 70,163, 97,227, 58,200, 77,191,213, 80,175,123,250, 54, 77, 50, +237,118, 95, 75,138,234, 36,247, 29,149,145,112, 62, 6,192, 15, 22, 92,115,142, 16,146, 26, 47,180,254,249,192,175, 71, 63,122, +243,205,183, 4, 70,134, 53,249,214, 21,216,236, 59,120, 44, 45,233,105,252, 58,196,159,186, 91,246,248, 42, 4, 22,147,147,147, + 3,165, 82,137,184,184, 56,221,155,111,190, 41,209,104, 52,136,137,137, 41, 21, 88,206,142,246, 62, 29, 90,251,122, 47, 93,179, +243,164, 66, 34,145,188,222, 53,176, 89, 84,204,211, 68,142, 35, 79, 42,229,229,184,107, 49,247,238,245,117,114,172,139,228,243, + 87,160,232,216, 27, 58, 29,129,214,192, 66,207, 0, 38, 90, 4,155,150,109, 32,107,212, 12, 44, 7,220,187, 29, 9, 19,199, 93, +230,155, 16, 30, 60,254,111, 81,165, 22, 49, 59, 88,237,218,181,219, 91,214,101, 50,127, 6,160, 3, 80, 85, 76,116,122, 89, 17, +101,238, 54,172,236,127,202,241,214, 78, 96,113, 28,119, 1, 85,140, 44,115,116,116,116,110,214,180,121,163,239,183,254, 0,131, + 46, 23,113, 81,219, 80,152,159,138,249,203,174,122,122,120,120,116, 73, 76, 76,188, 96,201,159, 37, 38, 38,238, 59,120,240,224, +244,150,205,155,251,215,247,240,192,173, 39,143, 33,226, 24,136, 24, 6,148, 65, 7, 1,163,135,135, 15, 11,138, 82, 32, 37, 37, + 31, 91, 78,252,113, 39, 49, 49,113, 95,149, 79,223,132, 70,157, 55,223,197,144,215,250,130, 51, 26,112,170,147, 15,164, 74, 37, + 36,182,182,104,255,203,249,226, 41, 27, 76, 70, 60, 89, 62, 19, 34,133, 18,246,109,187, 86,155,206,212,212,212,162,198,141, 27, +135,221,191,127,191,117,211,166, 77,177,104,209, 34, 36, 36, 36,128,227, 56,164,165,165,105,211,211,211,147, 50, 51, 51,159, 16, + 66, 14,169,213,234,239, 45,153, 41, 60,205,139,222,126,250,204, 31, 51, 2, 90,249, 52,233,217,101, 33,142, 30,253, 2, 57,121, +121, 40,212, 9, 80,160, 49,160, 80,203, 65,101,229,137, 32, 63,127,164,103,234, 17,115, 55, 60, 49, 67,100,255, 93, 13,173, 83, + 68, 70, 70,162,158, 61, 65, 84,116, 4, 28,181, 89,104,106,171,132,127,199, 78,120,244,232,145, 69,206, 84,185,121,176,132,182, +182,182,200,205,205,125,230,119,114,185, 28, 42,149, 10,121,121,121, 56,112,224, 0, 56,203, 26, 69,163, 94,175,135,183,183, 55, + 66, 67, 67,113,230,204, 25,116,239,222, 29,157, 59,119,198,249,243,231, 17, 22, 22,134,136,136, 8, 16, 66,224,224,224, 96,118, +219, 42,181,220,110,220,136,220,175, 84,146, 57,163, 70, 77,240, 29, 58,116, 40,126,249,101, 47, 70,143,106, 10, 66, 73, 64,136, + 4,111,189,233,141,197, 75,194, 16, 20,212, 21,142,142, 34,156, 57,115,247,145, 64, 96,179,211, 2,225,242,205,138, 21, 43, 4, + 82,169, 20,122,189, 30, 5, 5, 5,200,204, 44,158,142,170, 34, 7, 75,163,209, 84, 58,177,218,221,155, 15, 86,101,231,113,217, + 84, 81,248,219, 25,198,155,126,221, 95, 79,196,107,253, 70,225,244,209,109, 56,123,242, 12, 28,133,143, 31, 49,178,130,227,233, +143, 50,242,213, 5, 94, 91,124, 2,199,210,201,133, 39, 55,127,220,223,142,246,112, 99,247,207,222,152,155, 83, 93,122,179,162, +118, 29, 57,194,225,173,142,109,219,120,182,168,171, 18,103,101,166,225,224,175,199,239, 26, 30,255,114, 20,197,221,130,150, 88, +145,139,215,175, 95,255, 5, 0,176, 44,187,125,205,154, 53, 99,103,204,152,225,148,148,148, 84, 42,176,210, 50,178,206,182,239, + 59,153,201,204,201,213,255,184,230,179,129, 50,169, 68, 60,111,249,143,231,141, 52,174, 85, 90,185, 8, 4, 35,230,110,220,157, +126, 96,255, 54,218, 73, 42,194,165, 89, 11, 16,247,199, 57, 24,136, 8,175,159,186, 14,189,129, 65, 94, 90, 38,206,142,154, 8, + 59, 55,123,252,158, 25,195,228,230,231,141,224,219, 24, 30, 60,254,111,221,169,170,180, 72,122, 25, 65,148, 5,224, 73,112,112, +112, 70, 25,119, 41, 29, 64, 36,128,150, 37,199,165,151,251, 93, 58,128, 80, 0,173,203,240,164,151, 17, 90,101, 63,235,203, 29, + 19,249, 60, 14, 86,149,200,200,200, 72,187, 17,118, 7,151, 79,111,130,201,168, 67,110, 86,241,220,159,234, 84, 45,172,173,173, +175, 86,209,224, 63,179,218, 54,199,113,156,155,155,219, 59,107,214,174,189,246,209,136, 97,174,157,123,244,192,211,219,183,160, +203,202, 0,205, 48,160,137, 16, 5, 25, 82,164,166,228, 33,248,200,241, 52,141, 86,251, 78,249, 39,239,138, 86,240, 54, 7,185, +115,132, 64,106, 99, 13,137, 66, 1,137,141,245,159,142, 21, 33, 16, 43,173, 32, 84, 40, 65,139,196,213,166, 19, 0,138,138,138, +222, 29, 55,110,220,173,223,127,255,221,110,200,144, 33,120,235,173,183, 34,114,114,114,186,101,101,101, 89, 20,111,246,151,115, +223,191,159,113,108,241, 86,255,111, 55,125,127,101,228,200,145,246,111,245,255, 22, 17, 81,119,145, 83, 88, 60,105,186,202, 81, +129,160,166, 51,145,150,169,195,201,227, 71,179, 89,147,246, 93,238,206, 94, 99,101,156, 28,199,113,142,142,142,207,184,114, 52, + 77,227,252,249,243,248,228,147, 79,224,104,117, 30,249, 79,226,208,162, 83, 23,188, 54,116, 4, 70,143, 30, 13,154,166,225,224, +224,128,178,141,110,117, 43,162,231,230,230,162,126,253,250,216,183,202,211, 87, 83,148, 37,172, 75, 3,162, 66,107,227,217,179, +125,239,132,132,132, 20, 0,248,222,203,203,107,127,117,249, 73, 8,249,124,217,178,101,155, 58,116,232, 32, 83, 42,149,240,242, +242,194,229,203,151,113,249,242,101, 92,188, 88, 28, 31,231,224,224, 0,123,123,123,228,228,228, 32, 33, 33, 65, 67, 8,249,188, +138,178,196,182,110,221,122,192,233,211,135,174,191,249,230, 59,142,111,188,209, 14,174,174,249, 48,153, 50, 64, 40, 17, 36, 82, +103,124,255,253,114,164,165,102,225,202,213,171, 89, 5, 5,130,119,195,194,158, 93,130,168,146,116, 26, 78,156, 56, 1,169, 84, +138, 95,126,249,197,228,226,226, 34,176,181,181,173,212,193,210,106,181,146,202, 56,199,126,118, 59, 9,192,146,105,131, 60,190, +190,114, 55,117, 0,128, 61, 13, 27,123,224,236,201, 51,184,120,246,202,236,182,190,236,250,190, 31,180, 89, 44,237, 62,120,166, + 79,192, 88, 90,105,237,134, 29, 7,127,161,163,194,127,248, 82, 91,120,167, 17,128,153,213, 92, 35, 14, 0, 10,210, 82,231, 4, +175,222,176, 61,120,209, 23,178,149,235, 54,170, 53, 25, 41,115, 81, 60,180,146, 43,123, 92,101,233,140,139,139,219, 2,160,116, +122, 12,149, 74,181,107,249,242,229, 33,195,134, 13,115, 50, 59,148,105,119,127,189, 10,224,170,111,183, 49,243,219,183,110,222, +244,203,117,187, 79,198, 39,164,238,206,137, 42,158, 3,171,162,116, 94,189,122, 53, 59, 48, 48,112,220,204, 89, 11,127, 88,180, +120, 1,241,158, 58, 27,209,151, 67,161,211, 24, 96,224,104, 24, 65, 16,190,116, 53,172,156,172,113,137,203,226,116, 52,245, 97, +108,185, 32,255,234,202,103,109,192,115,242,156, 60,231,171,201, 89, 13, 66, 43,242, 67, 44, 56, 46,212, 2,158,191, 5, 22, 9, + 44,119,119,247,206,175,245,104,139, 14,175, 77,128, 65,151,131,184,187, 63,162, 32, 63, 21,238,174, 18,196,197,231,181, 3,112, +193,210, 63, 76, 78, 78,142,119,115,115,107,251,229,218,245, 7, 95,111,211,186,153,151,187,155,196,182,126, 61, 40,156, 93,144, +145,158,142,235,225,209,198,141, 39,207,222,209,104,181, 22, 45,149,195,178, 44,199,113, 28, 68, 34, 17, 56,154,134,207,228, 89, +160, 40,170,220,104, 65, 2,235,192,142,160, 4, 66, 24, 45,140, 25, 82,171,213,137,238,238,238,239, 78,158, 60,249,143,237,219, +183, 83, 93,187,118,109,117,228,200, 17,246,121, 50, 59,227,246,145, 24,151, 22,111,119, 89,255,205,198, 3,254,129,109,235,213, +111, 80, 95,210,161,142, 13, 12, 70, 6,169,105,153,184,112, 37, 74, 23, 19, 21,153,192, 26,244,131,210,162, 42,159,197, 29, 0, +140, 70, 99,188, 74,165,114, 89,184,112, 33, 76, 38, 19, 24,134,129,201,100, 66, 70, 70, 6, 34, 34, 34, 16,208,182, 29,188,199, +140, 69, 86, 86, 22,182,110,221, 10, 15, 15, 15,244,233,211, 7,249,249,249, 8, 9, 9,169, 52, 95,203,206,131, 69, 40, 65, 78, +191,126,253,206, 55,111,222,188, 99,207,166, 89,194,178,206,214,249,243,231,247, 75, 36,146, 45,143, 30, 61,170,114, 14, 52, 79, + 79, 79,177, 86,171,109,197,113,156, 32, 47, 47,111,173, 78,167, 27, 57,109,218, 52,183, 21, 43, 86,192,207,207, 15, 25, 25, 25, +176,183,183,135,155,155, 27, 10, 10, 10,240,232,209, 35,198, 96, 48,108,102, 24,102,113,106,106,106,122,149,119, 91,104,232, 99, +127,127,255,118,169, 41,155, 14, 78, 24,223,203,203,104, 12, 20, 91,219,116, 2,199,153,144,147,157, 0,194,221, 50, 28, 58,252, + 71,108, 78, 14,253, 78, 88, 88, 88,140, 37,215,136,162,168,241,191,253,246, 27,204, 75,229,168,213,234, 56,138,162, 42,117,176, + 44,193,234,253,137, 90, 0, 63,125,253,105,187,169,185,233,183,154, 56, 10, 31, 63,106,235,203,174, 95,189, 63, 81,251,213, 71, +118, 75,147,210,207, 71,171, 11, 78,110,217,113,240, 23,122,196,219,239, 50,110,202,152,217,142,117,176,191,219, 91,213, 62,237, +113, 45, 91,182,172, 75, 81, 89, 13,210, 50, 31,132,141,254,240,163,193, 54, 34,205,239,126,238, 25,141, 77, 46, 62,210,168,168, +168, 39, 37,135,113, 53, 41,167,106,181, 58, 90,165, 82,117, 94,181,106,213,201,242,214,120, 90, 70,214,217,118,253, 38,113, 57, + 57,185, 55,211,162,126,189, 93, 29, 87, 88, 88,216,143,129,129,129, 24, 62,108,244,119, 31,142, 25, 71,251, 78,249, 12,137,231, +254, 0, 76, 70, 36, 95,188, 0,185, 21,131,163, 25, 79,152, 34,154, 26, 23, 22, 22,198,207,226,206,131, 7,143,255, 12,136,165, +117,175,103, 35,143,147,141, 26,184,247,106,212, 64, 5, 0,136,123,172, 70,220,227,164, 83,177,113,137,175,215, 70,225,150, 93, +236,153,148, 76,197,192, 89,176,216,115,121, 78, 95, 95,223, 8,138,162, 84, 53, 57,105,134, 97, 18,239,222,189, 27,104, 73, 58, + 85, 42,213,144, 58,117,234, 44, 87,171,213, 7, 19, 18, 18, 62,125, 17,234,222,188,216, 51, 69,139,250,113, 28,231, 7,128, 16, +138,170,118,177,231,178,156,238,238,238, 45,100, 50,217, 22,129, 64, 80,215,108,169,154,179,204, 96, 48,208,185,185,185, 82,189, + 94, 79, 3, 32, 34,145,200,164, 84, 42,181, 66,161,208,196, 48, 76,188,209,104,252, 40, 41, 41,233,182,165, 79, 33, 62, 62, 62, +138, 81, 61,239, 21,148, 17, 88,152,190,134, 35,150,156,251,195,135, 15,155,216,217,217,189, 71, 8, 25,200,113, 92,211,252,252, +124,221, 23, 95,124,113,243,194,133, 11,121,117,235,214,125,163, 83,167, 78,228,214,173, 91,120,242,228, 9, 87, 80, 80,112,128, +162,168,207, 19, 19, 19,227,106, 88,150,168,246,237, 91,189,111,165, 68, 95,150, 67, 75,128, 35,132,144,219, 5, 5,228,119, 55, +183, 6,187,247,239,223,207,212,246, 9, 44, 32, 32,224, 88, 65, 65, 65,159,152,152,152,202,206, 21, 28,247,103, 94, 84,197,249, +245,231, 45, 62,111,215,165,227,187,151, 47, 92, 60,244,217,151,119,150,148,221, 55,233,109,251,209, 31,124,252,201,138, 61,223, +174,251,108,195,161,172, 31, 45, 73,103, 64, 64, 64, 67, 0,239,115, 28,215,156, 16,226,197,178,144, 18,194,101, 17, 66,162, 88, +150,141,100, 89,246,183, 91,183,110,169, 95,133, 39,218,178,139, 61, 19,134,177,101, 8,177,104,177,103,222, 33,224, 57,121, 78, +222,193,250,183,194,226, 25,184,205, 66,202,203,203,139,123,248,240,225, 51,141, 74,109, 80, 34,160,246,162,138, 89,218, 45,193, +157, 59,119,252,255,206, 12, 82,171,213, 63, 1,248,233, 69,114,150, 8,168, 31, 75, 94,181, 66,137, 64, 10,250, 39, 10, 73, 84, + 84, 84,225,186, 25,130, 82,103, 75, 64,211,105,150,254,182, 87,175, 94, 79, 13, 6,195, 25, 0,137, 0,108, 1,100, 25,141,198, + 19,233,233,233,169,174,174,174,129, 79,159, 62,157, 95,226, 68, 46, 73, 73, 73, 9,171,101, 89, 98, 1,236, 41,121,189, 80,132, +135,135,247, 85,169, 84, 17, 14, 14, 14,158, 90,173, 86,172,213,106,133,101,203,190, 76, 38, 75,183,148,203,198, 26, 59,104,146, +233, 96,103, 77,254,226,212, 56,186,227, 23, 77,225,157, 38,142,238,248,165, 6,105,123,212,170, 85,171, 93, 20, 69, 53, 96, 89, +214, 5,128, 53,199, 33,131,227,184, 12,134, 97, 18,111,223,190,173,126, 85, 42,154, 18, 1,213, 15, 60,120,240,224,193, 11,172, +138, 17, 19, 19, 67,248,108,251,255,195, 39, 95,155, 92,106,243,187, 39, 79,158,232, 0, 92, 41,121, 61,131, 18, 65,245,230,171, +126,238,106,181,250,133,136,248,146,152,172, 79,219,244,248,235,190,146,169, 25, 62,235,254, 86,205, 56,111,222,188, 25, 15, 32, +158, 47,161, 60,120,240,224,241,106,129,226,179,128, 7, 15, 30, 60,120,240,224,193,227,197,130, 0,168,112,138,235,154,244,173, + 18, 66,124,107,250,199,213,241,243,156, 60, 39,207,201,115,242,156, 60, 39,207,249,223,227,172,142,251,191, 18,219, 69,106, 56, +192,168,102,228,124, 0, 32,207,201,115,242,156, 60, 39,207,201,115,242,156,255,135,224,187, 8,121,240,224,193,131, 7, 15, 30, + 60,120,129,197,131, 7, 15, 30, 60,120,240,224,193, 11, 44, 30, 60,120,240,224,193,131, 7, 15, 94, 96,241,224,193,131, 7, 15, + 30, 60,120,240,224, 5, 22, 15, 30, 60,120,240,224,193,131,199, 43,131,191,117, 20, 33, 15, 30, 60,120,240,224,193,131,199,255, + 35,120, 7,139, 7, 15, 30, 60,120,240,224,193,227,239, 16, 88,132, 16,174,236, 59, 15, 30, 60,120,240,224,193,131,199, 63,137, +255,154, 22,225, 29, 44, 30, 60,120,240,224,193,131, 7, 15, 94, 96,241,224,193,131, 7, 15, 30, 60,120,252, 59, 4, 86,215, 18, + 75,174, 43,159, 37, 60,120,240,224,193,131, 7,143,151,128,255,148, 22, 41, 29, 69, 72, 8,225, 56,142, 35,252,245,229,193,131, + 7, 15, 30, 60,120,188, 20, 81,242, 31,210, 34,252, 52, 13, 60,120,240,224,193,131, 7, 15, 30, 47, 24,127,107, 12, 22, 33,196, +151,231,228, 57,121, 78,158,147,231,228, 57,121, 78,158,147, 23, 88, 60,120,240,224,193,131, 7, 15, 30, 60,120,129,197,131, 7, + 15, 30, 60,120,240,224,193, 11, 44, 30, 60,120,240,224,193,131, 7, 15, 94, 96,241,224,193,131, 7, 15, 30, 60,120,240,224, 5, + 22, 15, 30, 60,120,240,224,193,131,199, 75, 2, 1, 80,225, 72, 0,142,227,238, 88, 76, 82,139,209, 4,213,241,243,156, 60, 39, +207,201,115,242,156, 60, 39,207,249,223,227,172,142,187, 38,250,227,149, 22, 88,127,231, 60, 88,132, 16,223, 23,157, 81, 60, 39, +207,201,115,242,156, 60, 39,207,201,115,254,247, 56,255,107,224,187, 8,121,240,224,193,131, 7, 15, 30, 60,120,129,245,242, 65, + 8, 25, 78, 8, 57, 65, 8,185, 67, 8, 57, 73, 8, 25,254, 28, 92, 50, 66,200,236, 50,124,199, 9, 33,159, 17, 66, 36,124, 78, +191,210,101,128,230,115,129,199,171, 4,149, 74,213,196,199,199, 39, 92,165, 82, 53,225,115,131, 7,143,151, 15, 65,101, 59, 60, + 61, 61,175, 80, 20,213,144,162, 40,115,131, 82,182,113,169,240,157,227,184, 71, 81, 81, 81,237, 43,227,108,216,176, 97, 41, 39, + 69, 81, 32,132,128,162, 40, 24,141, 70, 43,154,166,243, 43,226,100, 24, 38,241,193,131, 7,129,175, 80,195,186,203,206,206,206, +184,113,227,198,111,253,253,253, 27,103,101,101, 21,142, 27, 55,238,117, 66, 72, 79,142,227,134,213,144,203,151, 16,178,179,117, +235,214, 7, 39, 77,154,180,223,199,199,199,170,176,176, 80,178,111,223, 62,215,205,155, 55, 95, 36,132,140,230, 56, 46,138, 47, +166,175, 14,220,220,220,252, 9, 33, 27,188,188,188, 2, 85, 42, 85, 40,128,143,213,106,117, 36,159, 51,255,232, 61, 56, 86, 44, + 22,191,225,229,229,213, 70,167,211,101, 63,122,244,232, 6,195, 48, 95,112, 28,151,242,130,248,109, 0,124, 33,145, 72,130, 60, + 61, 61,235,196,196,196, 36, 24, 12,134,235, 0, 22,115, 28,151,251,170,138,171,160,160,160, 75,203,150, 45,115,152, 51,103,206, + 37,149, 74,213, 81,173, 86, 71,243,165,133, 71,117,168, 91,183,174,109, 97, 97,225, 15, 20, 69,249, 75,165, 82, 87, 43, 43, 43, + 40,149,202, 20,137, 68,114, 83, 46,151,143, 57,118,236, 88, 14,159, 75, 47, 88, 96,209, 52,237,113,227,198, 13,103, 43, 43, 43, + 48, 12, 3,150,101,193,178, 44, 56,142, 43,125, 55,131,227, 56, 48, 12,131,110,221,186, 25,170,252, 51,129,160, 78,120,120,184, +179, 82,169, 44,253,206, 96, 48,192,207,207,143,141,136,136,112,150, 74,165,207, 28,175,215,235, 17, 16, 16,240,202, 44,150, 72, + 8, 25,234,224,224,160,127,250, 52,190,157, 86,103,104, 63,113,230,146, 47,222,123,171,139,205,213,171, 87,169, 55,223,124, 83, + 72, 8, 25,206,113,220, 78, 11,185,100,132,144,173,243,230,205, 91, 46, 16,201,157, 15,252,126, 69,240,205,150, 61, 9,190,205, + 26,144,169,147, 39,202,167, 76,153,114,195,219,219,251, 71, 66, 72, 39,142,227,116,124, 81,125, 37,174,191,160, 78,157, 58,191, + 6, 7, 7,187,167, 36, 39, 99,245,154, 53,109, 1,108, 4,208,150,207,157,127,236, 26,204, 94,180,104, 81,240, 7, 31,124, 0, +147,201, 4,141, 70,163,138,141,141,109, 62,111,222,188,183, 9, 33,109, 56,142,139,123, 78,126, 39, 47, 47,175,251, 83,167, 78, +181,111,211,166, 13, 40,138, 66, 78, 78,142,234,210,165, 75,109,183,110,221, 58,156, 16,226,205,113, 92,250,115,240, 83, 14, 14, + 14, 83, 0,116, 99, 89, 86, 2,224,122,118,118,246, 82,142,227, 12,207,147,110, 59, 59,187,221, 95,127,253,181,131, 68, 34,193, +182,109,219, 28, 6, 15, 30,124, 81,165, 82,117,226, 69, 22,143,170,224,232,232, 56, 54, 63, 63,255, 91,185, 92, 46,178,181,181, +133, 76, 38,131, 72, 36,130, 88, 44,174,107,103,103, 87, 87,169, 84,246, 25, 50,100,200,199, 63,253,244,211, 15,124,110,213, 28, +149,118, 17, 82, 20, 5,153, 76,134,125,251,246,225,208,161, 67, 56,126,252, 56,206,158, 61,139, 75,151, 46, 33, 44, 44, 12,183, +111,223,198,253,251,247, 17, 27, 27,139,132,132, 4,208, 52,109, 73,229, 2, 0, 56,114,228, 8, 66, 66, 66,112,235,214, 45, 16, + 66, 64, 8,129, 68, 34,193,153, 51,103,112,225,194, 5, 92,185,114, 5,161,161,161, 16,137, 68,207, 56,103,255, 8, 82, 22,113, +131,122, 18,174,162,119, 87, 7,236, 90,182,108,217,137, 34,157, 81,200,112, 68,151,146,109,204, 90,188,242,219,203, 25,105,105, + 23,126,254,249,231, 60, 0, 67,106,240, 79,159,180,105,211,230,136, 9, 98,151,225, 35, 71,141,218,176,106,241, 71,156,204,209, +116, 41, 34, 54,205,199,199,127,143,173,173,173,233,155,111,190,137, 6, 48,165, 38,201,111,221,186,117,124, 64, 64, 0, 23, 16, + 16,192,181,105,211, 38,189,107,215,174,130, 87,164, 97, 84, 17, 66,126, 34,132,236, 32,132,120,151,219,215, 68, 44, 22,255, 70, + 8,217, 70, 8,169,243,170,222, 44,238,238,238,222,195,134, 13,115,204, 76, 79,199,234, 53,107,204, 95, 7,190,140,238,194,128, +128,128,134, 29, 59,118, 60,212,177, 99,199,248,192,192, 64, 38, 48, 48,144,233,220,185,115,124,167, 78,157,214, 4, 4, 4,200, +158,227, 58,213, 33,132,244, 33,132,244,173,228,213,103,229,202,149, 13, 95, 6, 39, 33,164,190,139,139,203,178, 65,131, 6,225, +216,177, 99,152, 60,121,178,113,225,194,133,156, 80, 40,196,199, 31,127,108, 7,160,207, 11,200,218, 62,139, 22, 45,178,239,208, +161, 3,126,253,245, 87,204,159, 63, 95,115,252,248,113,248,251,251, 99,220,184,113,246, 0,122,215, 34, 79, 37, 37,221,254, 39, +105,154, 46, 28, 57,114,228,226,136,136,136,158,183,111,223, 14, 26, 53,106,212,155,214,214,214, 81,142,142,142,202,231, 73,116, +118,118,246,210, 37, 75,150,228, 91, 91, 91, 35, 62, 62, 30,139, 22, 45,114,116,115,115,187,192,119, 23, 86, 13,154,166, 13,132, + 16,206, 28,146, 81,221,246,127, 9, 14, 14, 14, 19,178,178,178,190,119,114,114, 18,213,175, 95, 31, 86, 86, 86, 16, 8, 4, 96, + 89, 22,133,133,133, 72, 76, 76,132, 94,175, 23,121,123,123,127, 63,105,210,164, 9,124,105,169,133,131, 69, 8,233,194,113,220, +133, 50,149, 65, 23,142,227, 46, 16, 66,192,178, 44,132, 66, 33,104,154,134, 64, 32,128, 80, 40,132, 80, 40,124,230,179,249, 85, +145, 16, 42, 63,194,128,162, 40,146,159,159, 15, 27, 27, 27, 88, 91, 91,195,198,198,166,212, 9, 51, 26,141,127,225,100, 24, 6, + 20, 69,113, 85,113,190, 8,148,229, 28, 52,124, 33,246,159,225, 8, 0,236, 63,179, 0,101,223, 83, 50, 23, 70,119,232,208,161, +206, 39, 75,183, 5,103,102,230,164,249,120, 56,153,134,124,208,165,158, 56, 35, 53,195,161, 65,131,126, 0,210,106,144,206,142, +227,199,143, 63,112,224,220, 67,133, 68, 34, 22,211, 20,232, 38,141, 26, 10,221,173, 27,219, 59,189,222, 70,252, 36, 46,238,226, +240,225,195,199, 79,156, 56,209, 1,192, 10, 75,207,157,227, 56,183, 83,167, 78, 65, 32, 16,160,103,207,158,118, 37, 46,165,201, +146,115,255, 59,242,179, 12,230,165,166,166,190,175,213,106, 17, 24, 24,248, 22, 33,164, 27,199,113, 55, 9, 33, 45,250,247,239, +127,113,255,254,253, 86, 17, 17, 17,104,219,182,173, 12,192,224,151,152,206,191, 64,165, 82,157, 2,240, 26, 77,211,208,107,181, +250,149,171, 86,149,221, 29,198,113, 28,243, 79,166,179, 85,171, 86,222,114,185,252,202,170, 85,171,172,125,124,124,136, 80, 40, +132,201,100, 66, 76, 76, 76,157, 93,187,118,125, 20, 26, 26,218, 59, 32, 32,192, 39, 60, 60,220, 88,139,115,111,126,241,226,197, +194, 70,141, 26, 49, 21,237, 44, 42, 42,162, 27, 53,106,212, 21,192,163,151,192,153,152,154,154, 58,224,181,215, 94, 27,159,146, +146,114,223,100, 50,205, 2,224,235,232,232, 24,241,238,187,239, 66, 38,147,117, 3,176,238,121,174,187,179,179,115,255,246,237, +219, 99,195,134, 13,248,234,171,175,122,114, 28,247, 7, 33,164, 71, 94, 94,222,153,183,222,122, 11,182,182,182, 3, 0,108,183, +148,147, 16,226, 35,145, 72,182,255,244,211, 79,202, 70,141, 26, 53, 18,137, 68, 84,163, 70,141,144,149,149, 5,173, 86, 43, 89, +186,116,105, 11,169, 84, 26,185,110,221,186,237, 0,222,169,101,249,108,210,166, 77,155,239,167, 77,155,102,117,244,232, 81,120, +121,121, 33, 47, 47, 15,163, 71,143,118, 94,191,126,253,121,149, 74,213,213,236,100,253,211,247, 17, 33, 36, 23,128, 53, 0,219, +154,116,175, 86,145,159,185, 0, 74,197,142, 80, 40,132, 68, 34,129, 84, 42,133, 84, 42,197,163, 71,143,126,161,105,122, 20, 0, +163, 37,156,228,207,134,171, 37, 33,228, 6, 77,211, 85,110,115, 28,199,190,236,122,137, 16,226, 65, 8, 89, 11,160, 91,137, 73, +114,193,217,217,249,147,148,148,148,167,150,114,170, 84, 42,135,130,130,130,117, 42,149, 10,206,206,206,102,177,137,192,192, 64, +104,181, 90,220,189,123, 23, 44,203, 34, 54, 54, 22,214,214,214,104,209,162,197,186, 69,139, 22, 29, 88,176, 96, 65,230,223,117, +238,149,105,145,127,187,131,117,222,124, 50, 37,223,157, 55,239,100, 24,230, 47,162,167, 34,145, 37, 16, 8, 64, 8, 1,199,113, +164,154, 12,164,244,122,125,169,184,178,182,182, 46, 21,103, 38,147,169, 66,129, 85, 91,216,217,217,157, 36,132,244,170,233,239, +246,239, 92, 88,213,238,216,180,180, 52, 67,255,142, 77, 36,162,130,172,204,225, 29,155,218,248,121,122,248,186,168,220, 7, 23, + 21, 21,133, 2, 72,174,137, 33,226,227,227, 99,149,153,154,156,241,193,148,149,139,103, 46,221,188,164,181,151,139,117,231,102, +245,221, 58,182,244,105,224,192,153, 40,185, 92,222, 28,128,123, 77,207,193,198,198, 6,103,207,158,125,213,202,154,157, 70,163, + 65, 86, 86, 22, 54,111,222,108,237,224,224,112,142, 16, 50,162,127,255,254,151, 15, 28, 56, 96,149,155,155, 11,131,193, 0, 0, +154, 87,240, 62, 89, 98,103,103,167, 31, 48, 96, 0,246,254,252,179,152,101,217, 66, 0, 5, 0,146, 57,142,155,244, 79, 39, 70, + 42,149,206, 88,186,116,169,181,143,143, 15,201,200,200,128, 90,173, 70, 70, 70, 6, 28, 29, 29, 49,115,230, 76,105,227,198,141, +221,197, 98,241,220,218,214,115,149, 9, 33, 0,144,203,229, 12,106, 62, 56,166, 66, 78,147,201, 68,130,130,130, 62,243,245,245, +221,105, 9, 39,199,113, 38,142,227,142, 36, 36, 36,188, 97, 52, 26,167,115, 28,103, 2, 16,121,255,254,125,141, 64, 32, 64,131, + 6, 13,130,158, 55,111,155, 52,105,210, 78, 40, 20,226,250,245,235, 58, 0,230,202,253,194,173, 91,183,116, 2,129, 0,117,234, +212,105, 87, 19,231, 74, 34,145,108,127,248,240, 97,211, 55,223,124,179,113, 94, 94, 30,165, 82,169, 96,190,102,241,241,241,184, +117,235, 22,198,140, 25,227,204, 48, 76,123, 75,197, 84,151, 46, 93, 18, 6, 14, 28,152,249,238,187,239,102,190,243,206, 59,153, +125,251,246,189,177,109,219, 54,135,146, 60,197,156, 57,115, 16, 23, 23, 7, 91, 91, 91,140, 26, 53,202, 69, 38,147,237,126, 5, +238,161, 28,161, 80,200,217,218,218,218, 60, 39,143, 4,128, 24,128, 88, 32, 16,136, 37, 18,137, 88, 42,149,138, 37, 18,137, 88, + 34,145,136,255,235,142, 8, 33,196,157, 16, 18, 37, 20, 10,251,218,218,218,218,216,219,219, 91,213,173, 91,247,117, 79, 79,207, +187,195,135, 15,175,111, 41,143, 86,171,221, 41,147,201,132, 78, 78, 78, 0,128, 94,189,122, 97,247,238,221,120,255,253,247,217, + 94,189,122,177,131, 6, 13,130,139,139, 11, 0, 32, 50, 50, 18, 98,177, 88,104,111,111,191,243,111, 62,189, 74,181,200,191,214, +193, 42,119,114,207, 8, 36,150,101, 65,211,116,149,206, 85, 89, 7,171,186,238, 60, 66, 8, 24,134,129,171,171, 43,228,114, 57, +228,114, 57,170, 18,115, 28,199,213,186,139,176,113,227,198,221,229,114,121, 39, 66,200, 91, 28,199,157,177,244,119,197, 14,214, +130,202,118,255, 58,117,234,212, 62,215,174, 93,211,182,243,107,200, 74,212, 9,153,114, 59, 71, 63,226,228,220,115,226,135,227, +174, 2,248,169, 6, 73, 84,107,181, 90, 73,125, 87, 74,163,206,205,211, 55,180,182,177,109,104,163,148,215,119,180,113,176,147, +138, 41,133,139,179,202,104, 52,230, 0, 80, 87, 71,212,186,117,235,120,150,101,235,148, 52,190,122, 66,136,192,214,214, 22, 54, + 54, 54,134,236,236,108,109, 64, 64, 0,196, 98,113,134, 72, 36,114, 59,127,254,188,201,146,196,181,105,211, 38,149, 97, 24,231, +170,142, 17,137, 68,105, 87,175, 94,117,177,240,124, 63,111,217,178,101,151,141, 27, 55, 58,121,121,121, 97,243,230,205,214, 7, + 14, 28,216,190,123,247,110,228,228,228,224,241,227,199, 24, 61,122,116, 30,128,149,175,218, 77, 98,111,111,127,105,224,192,129, +248,225,135, 31,184,146,135, 8, 5, 33,196,207,198,198,230, 65, 84, 84,148,225,159, 78, 15, 69, 81,175, 55,109,218,148,228,230, +230,130,227, 56,208, 52,253,204,107,230,204,153,178, 49, 99,198,204,107,215,174,221, 76,161, 80,152,103, 50,153,246, 22, 20, 20, +124,121,231,206,157, 87, 42, 88,181, 83,167, 78,159, 38, 36, 36,244,171, 87,175,222,111,207,241,180,207,181,110,221, 90,207,113, +156,140,166,105,225, 11,104,192,232,146,250, 72, 91, 34,224,192,113,156, 41, 32, 32, 64, 91,210,184,215,164, 59,120,202,254,253, +251,173,220,220,220,100, 26,141, 6,113,113,113, 8, 8, 8, 64,126,126, 62, 10, 11, 11, 81, 84, 84, 4,131,193,128,220,220, 92, + 91,134, 97,244, 22,150,197,221,187,118,237,242,240,240,240,128,209,104,132,209,104, 68, 97, 97, 33, 46, 92,184, 0,157, 78, 7, +163,209,136,166, 77,155, 98,249,242,229,218,143, 63,254, 88,250,243,207, 63,167,105, 52,154,161, 47,251, 90,211, 52, 13,137, 68, + 2,161, 80,152, 83,183,110, 93, 80, 20, 37,125,242,228, 73,109, 98, 75,173, 1,228, 9, 4, 2,177, 84, 42,133, 68, 34, 41,117, +176,238,220,185,179,175, 50,247,170,170,242, 83,147,237, 87, 64, 96,173, 21, 10,133, 18, 7, 7, 7,145,249, 59,131,193, 32,178, +179,179, 67,189,122,245, 54,192,194,110,114, 66, 72, 43, 7, 7, 7, 16, 66, 32, 18,137,240,225,135, 31,226,198,141, 27,135, 18, + 19, 19,135,167,165,165,161,160,160, 96,167,181,181,245,219,105,105,105, 96, 24, 6, 79,158, 60, 65,203,150, 45, 91,253, 67,167, +249, 23, 45,242,175, 22, 88,102,197, 88, 70, 57,154, 29,169,106,157,171,170,186, 8,203,195, 96, 48, 40,251,245,235,199,154,197, +152,121, 20, 33, 0,194, 48, 12, 68, 34,209, 51,156, 37, 2,171, 86, 5, 92, 34,145,160, 79,159, 62, 82,185, 92,126,184, 68,100, + 89,100,233, 84,228, 96, 53,117,149,214, 19, 82,194,125,253,186,119,106, 53,110,234, 76, 97,215,174, 93,127, 59,124,248,176,191, + 99,199,238,125,115,114,114,194, 39,142, 24,121,113,223,190,125,249,150, 6,184,151,224,242,161, 67,135,220,102, 76,158, 40,234, +210,165,203, 47, 35, 90, 76, 19,184,137, 89, 43,123,137,136,150,211, 2, 74, 82,167,254, 27,127, 92, 8, 73, 6, 16, 98, 65, 37, +225,118,230,204, 25,216,218,218, 2,128, 88,175,215,195,214,214, 22,155, 55,111,150, 90, 91, 91,195,218,218, 26,237,219,183,183, + 19,137, 68, 85,118, 23,150, 5,195, 48,206,231,207,159,135, 82,169, 68, 97, 97, 33,116, 58, 29, 76, 38, 19, 56,142,131, 64, 32, +128, 68, 34, 65,215,174, 93,157,107, 80,145,197, 17, 66, 58, 79,156, 56, 49,100,227,198,141, 78,158,158,158, 88,188,120, 49, 50, + 51, 51, 17, 31, 31,143,161, 67,135,230, 61,122,244,168, 27,199,113,247, 95,165, 27,164, 69,139, 22,220,229,203,151,113,252,248, +113,188,249,230,155,228,200,145, 35, 6,134, 97, 68, 73, 73, 73,183, 95, 86,154, 76, 38,147,149, 88, 44,134,209,104,132, 64, 32, + 40,237,194, 55, 11, 44,119,119,119,156, 62,125, 90, 80, 84, 84, 36,200,204,204,148,111,221,186,117,114, 88, 88,152, 27,106, 22, + 35,248,194,177,105,211,166,122, 31,126,248, 97,188, 64, 32,224,222,120,227,141, 97, 79,159, 62, 29,224,230,230,246,199,185,115, +231, 86, 1,168,113,172,144,175,175,111, 24, 77,211, 30, 0, 68,135, 15, 31, 54, 50, 12, 35,106,209,162, 69, 42,199,113, 48,191, + 74,242, 43, 49, 58, 58, 58,208, 18, 62,169, 84, 42,250,238,187,239,140, 90,173, 86,228,231,231,151, 90,134, 71,244,235,175,191, + 26,141, 70,163,168,105,211,166, 97, 22,142,108,238, 26, 20, 20, 84, 47, 39, 39, 7, 54, 54, 54, 40, 40, 40, 64, 88, 88, 24,124, +124,124,160, 86,171, 65, 81, 20,108,109,109,177,105,211,166, 34, 66, 72,150, 37,231,156,149,149, 53,116,234,212,169, 23,247,237, +219,231, 72,211, 52,158, 62,125,138,172,172, 44,216,218,218, 98,215,174, 93,168, 95,191, 62,206,156, 57,147,197, 48,204,216, 31, +126,248, 97,158, 70,163, 25,250,178, 3,221, 41,138, 42, 21, 66,101, 4,145,182,109,219,182,184,124,249,242,158,154,136, 34,142, +227,244,230,110,193,178, 93,131, 18,137, 4, 52, 77,215,184,203,131, 97, 24, 17, 33,164,149,185, 65,175,110,251, 21, 64, 23,133, + 66, 33, 42,255,101,118,118,182,168,105,211,166,157,106,208, 62, 58,200,100,197,161,154, 93,186,116, 65, 90, 90, 26,211,168, 81, +163,247, 6, 15, 30,108, 4,128,143, 62,250,232,189,244,244,116,173,209,104,164, 5, 2, 1,210,211,211,209,176, 97, 67,135,127, + 64, 64,254, 69,139,252,171, 5, 22,199,113,132, 16,194,149,125, 47,235, 96, 85,231, 92,153,247,153,133, 82, 53, 55, 90, 78,120, +120,184, 66,161, 80,148,126,103, 52, 26,209,170, 85, 43,150,101, 89, 82,254,191,158,199,193,146, 72, 36,176,181,181,197,144, 33, + 67,228, 73, 73, 73,219, 1,120,212,198,193,106,234, 42,173,231,238,228,114,229,171, 47, 23,185,197, 30,223,134,239,215,173, 52, +221,184,113,227,144,155,155,219,187, 0,242, 92, 29,208, 55, 37, 19,195, 56,142,219, 93,131, 66, 68, 1,216,119,245,234,213,155, +189,122,245,186,250,248,241, 99,187,167, 15, 31, 94,178,214, 23, 20, 40,235, 52, 48,137,156, 93,250,107, 12, 70,193,192,129, 3, + 93, 0,172,183,128, 15, 44,203,226,216,177, 99,176,178,178,130,181,181, 53,108,109,109, 97, 22, 87,181,197,163, 71,143,144,152, +152, 8,133, 66, 1,133, 66, 1,165, 82, 9,165, 82, 9,177, 88,252,140,251, 88, 3,145, 21, 77, 8,249,228,224,193,131,123,131, +131,131,145,157,157,141,194,194, 66, 44, 88,176, 0,113,113,113, 83, 57,142,187,249, 42,221, 28,126,126,126,220,213,171, 87,113, +233,210, 37, 20, 22, 22, 98,195,134, 13,112,115,115,235, 14, 96,254,203, 76, 23,203,178, 34,243, 84, 39, 20, 69,253,197,193, 50, +139, 45,153, 76, 6, 71, 71, 71,204,153, 51, 71,212,191,127,255,126, 47, 51,205, 43, 86,172,104,188,118,237,218,173, 59,118,236, + 56, 62,116,232,208,159,239,220,185, 51,202,198,198,230,246,217,179,103,151, 74, 36, 18,182, 86,149,151, 64,224,113,243,230,205, +178, 34, 95,200, 48,140,156, 97, 24,152, 76, 38, 24,141, 70, 20, 21, 21,161,103,207,158, 22,243,221,184,113, 67, 14, 0,243,231, +207, 23, 2,144,179, 44,139,178,124, 26,141, 70,216,163, 71, 15, 15, 11,147,168,178,179,179, 19,198,199,199,195,100, 50,193,223, +223, 31,155, 54,109,194,224,193,131,209,188,121,115,228,231,231, 35, 42, 42, 10,219,183,111,183, 19,137, 68,239, 90,100,123,171, +213,209, 42,149,170,211,123,239,189,119,101,239,222,189,118,245,234,213, 67, 98, 98, 34,212,106, 53, 60, 61, 61,177,126,253,250, + 66,142,227, 58,148,136,170, 95, 95,246, 61, 68, 81, 84,169, 8,170,232, 85,203, 7, 12,107,169, 84,154, 87,210, 53, 8,137, 68, +130,208,208,208, 26,187, 87,101,234,165,155, 53,217,126,153, 48,215,193, 70,227,179,167,169, 80, 40,224,229,229,101, 49,143, 66, +161, 32,230, 54,214,104, 52, 34, 57, 57,153,185,115,231, 14,227,239,239, 15, 0,112,115,115, 99,174, 93,187,198,232,116, 58,218, +202,202, 10, 0, 96,107,107,251,183,138,204,170,180,200,191,218,193, 42,227,146,132,148,119,176,204,130,167,170, 32,119,129, 64, + 96,169,192, 2, 77,211, 56,113,226, 4,148, 74, 37,172,172,172,224,237,237,109,206,220, 10, 93,177,218, 10, 44,177, 88, 12, 27, + 27, 27,156, 58,117, 74, 27, 25, 25,249,161,165,191, 43,235, 96,153,197,213,170, 21,193,110,153,247,174, 34, 81,157,140,152,168, +164,211, 28,199,237, 0,176, 3, 0,144,178,136,131,235, 2,139,197, 85, 51, 39,121,203,182, 94,174,191,118,123,237, 13,247, 1, + 35, 38, 82, 31,127,252,113,187,145, 35, 71,102, 13, 27, 54,108,138, 76, 38,107,110, 50,153,178,207, 92,184,240,100,208,160, 65, + 14,185,185,185, 35, 57,142,171, 54, 38,137,166,233,228, 94,189,122,213, 1, 0, 43, 43, 43,253,143, 63,254, 40,182,181,181,197, + 7, 31,124,160, 77, 73, 73,145,150,228, 71,182,165,238, 85, 73, 99,147, 54,118,236, 88,231,106,242, 56,173,134, 79, 39,173,250, +245,235,247,253,190,125,251,144,153,153,137,194,194, 66,136, 68, 34,172, 92,185, 18,241,241,241,235, 8, 33,119, 94,149,202,172, +101,203,150,220,245,235,215,113,251,246,109,232,116, 58,124,248,225,135,101, 99, 12,123,189,228,228,145,164,164, 36,236,218,181, + 11, 12,195, 96,232,208,161,168, 95,191,126,169,192, 74, 73, 73,193,143, 63,254, 8,134, 97, 48,118,236, 88,212,173, 91, 23, 70, +163, 81,218,181,107, 87,129,165, 93,196, 47, 26,211,166, 77,139, 61,116,232,208,241,132,132,132,222, 95,125,245, 85, 23, 66, 8, + 59,115,230,204,229,214,214,214,204,243,240,102,231,230,227,193,195,167, 48,153, 76, 21,190,156, 28,237,107,204, 23, 19, 23, 15, +147,137, 41,229, 96,152, 63,249, 28,236,107,196,151,148,149,149,229, 69,211,180,232,225,195,135,168, 87,175, 30,218,180,105,131, +101,203,150, 33, 61, 61, 29, 38,147, 9,206,206,206,172,209,104,140,208,235,245, 33,150,146, 38, 39, 39, 23,101,102,102, 22,142, + 29, 59,214,246,251,239,191, 39, 94, 94, 94,120,252,248, 49,132, 66, 33,172,172,172,138,238,223,191,255,202, 76,205, 80,222,185, + 50,191, 74,156, 43, 10,192,111, 0,106, 36,176, 57,142,211,215,169, 83,167,212,193,170,173,123,245,119,129,166,105, 3,203,178, + 66, 0, 82,142,227,116,213,109,215,132,219,203,203,235,130,181,181,117,191,251,247,239, 63,227, 98, 13, 25, 50,196,224,233,233, +121,209, 82, 30,107,107,235,108,177, 88,236,160,213,106,113,245,234, 85,120,123,123,139,114,115,115,131, 9, 33,179, 75, 30, 46, +131, 83, 83, 83, 69,238,238,197, 33,192, 77,155, 54, 69,110,110,110,118,157, 58,127,251, 32,239,191,104,145,127,189,192,226, 56, +174, 75,217,247, 50, 5,217,162,238,193, 50, 14, 86,181, 78,139, 70,163, 41,117, 68, 20, 10, 5, 88,150,125,166, 59,178,188,192, + 42, 63,138,176, 38, 55,246,185,115,231,180, 91,182,108, 25,200,113,220, 73, 75,127, 87,214,193,114,117,114, 58, 97, 22, 87,183, + 46,157,198,254,200,180, 36, 2,246,227,170, 28,175,170,224,227,164,240,115,117,113, 60,191,122,229,114,235,164,235,199,241,243, +150,213,220,173, 27, 55, 90, 79,184,113,227,221, 9, 19, 38,216,163, 56,222, 42, 9,192, 37, 0,235, 44, 17, 87, 0,112,237,218, +181,186,230,207,109,218,180, 49, 90, 91, 91, 67,169, 84, 34, 61, 61, 93,164, 84, 42,165,231,207,159,175,113,172,195,245,235,215, + 93, 94,100, 65, 35,132, 52,121,243,205, 55, 67,126,249,229, 23, 69, 78, 78, 14,158, 60,121,130,207, 62,251, 12,223,126,251, 45, +172,173,173,113,236,216, 49,171,126,253,250,157, 39,132,180,127,217,147,171,182,106,213,138, 11, 13, 13,197,147, 39, 79, 96, 50, +153, 48, 96,192, 0,188, 74, 79, 83, 44,203,114, 83,167, 78,197,247,223,127, 15,138,162, 48, 98,196, 8,228,229,229,149,238,183, +183,183,175,104, 31,141,106, 70,148,254,173, 21,141, 64,192, 93,184,112,225,171, 46, 93,186, 32, 33, 33,161,119, 64, 64,192, 55, +163, 70,141, 74,122, 94, 94, 59, 27, 43,180,244,105, 4,157, 78, 7,157, 78, 7,149, 74,133,252,252,124,196,198,198, 66,167,211, +193,197,217,182,198,124,173,154, 55,134, 94,175,135, 78,167,131,179,179, 51, 10, 11, 11,241,248,241, 99,232,116, 58, 56, 57,217, +213,132,238,194,165, 75,151,234,245,236,217,179,105, 84, 84, 20, 66, 66, 66,160,215,235,209,170, 85, 43,196,196,196,160, 93,187, +118,200,203,203,187, 30, 26, 26,122,164, 6,247, 81,157,215, 95,127,253,220,158, 61,123, 28,118,239,222,173,127,231,157,119,196, +139, 23, 47, 38,214,214,214, 72, 77, 77,197, 43, 22, 50,244, 23, 97, 21, 22, 22,182, 79, 36, 18,113, 0,106,229, 54,153,145,144, +144, 32,105,209,162,133, 78, 34,145,136,175, 92,185,178,167,182,238,213,223,242,244,243,156, 35, 19,171, 66,227,198,141,167,122, +120,120,244,244,247,247, 71, 84, 84,148, 72, 34,145, 96,216,176, 97,134, 62,125,250, 24, 4, 2,129,197, 3,110,164, 82,233, 61, + 43, 43,171,206, 58,157, 14,122,189, 30,103,206,156,129,189,189,253,103,253,250,245,251, 36, 57, 57, 25,106,181, 90, 44,145, 72, + 74, 93,242,110,221,186, 33, 43, 43,235,222,223,157,119,149,105,145,127,187,131, 85,161, 24, 42,235, 96, 85, 55,146,208, 18,129, + 69, 81, 20,244,122, 61,228,114,121,169,192, 42, 59, 83,124,109, 56, 43,195,205,155, 55,175,196,197,197,173,226, 56,238,247,154, +252,206,236, 96,121, 58,219, 52,108, 93,207,170,137,250,250,239,120,112, 43, 12,251, 34, 82,147, 10,140,250,142, 15, 82,180, 79, + 43,115,188,170, 66, 19,103,133,175,187,139,195,249,213, 43,151, 91,103,222,187,138,135,183,195,240,251,245,196,112, 29,199,197, + 0,248,242, 69, 94, 84,115,223,250, 43, 86,209, 78, 61,112,224,128, 34, 39, 39, 7,113,113,113, 24, 58,116,104,206,147, 39, 79, + 38, 14, 24, 48,224,219,147, 39, 79,218,217,217,217,225,212,169, 83, 86,117,234,212, 9, 6,208,239, 37, 86,142, 28,195, 48,200, +204, 44, 30,141,220,161, 67, 7,188,106, 86,117, 88, 88,152,232,205, 55,223,252, 3, 64,247,123,247,238,129,101,217, 43,225,225, +225, 29,204,251,171,218,103,137,126,203,207,207, 23, 90, 89, 89, 85,216, 88,137, 68, 34, 81, 77, 29,135,178,156,151, 47, 95, 94, +190,106,213,170, 67,211,167, 79,127,248,156,156, 21, 58, 88,253,250,245,131, 86,103, 68, 98,106, 46, 76, 38, 19,138,244,169,207, +229, 96,245,235,215, 15, 26,173, 30,241,201, 89, 48,153, 76, 40,208,214,200, 40, 89, 63,100,200,144,129,151, 47, 95,206,106,218, +180,169,125,104,104, 40,210,210,210, 96, 52, 26,209,189,123,119, 72, 36,146,167,193,193,193, 34, 88, 16, 6, 80, 82, 54,229,175, +189,246,218,201,189,123,247,186, 94,185,114, 5,122,189,158, 13, 11, 11,123, 60,110,220, 56,235, 49, 99,198, 56, 20,103,227, 43, +119,223, 67, 34,145,224,222,189,123,102, 97, 53,226, 69, 9, 33,179,131,245,255,132,221,187,119, 39,109,219,182,205,199,205,205, +109,237,176, 97,195,186,169, 84, 42, 74, 44, 22, 95, 16, 8, 4,159, 0,120, 90,131,188, 27,101,103,103, 23, 75,211, 52,157,148, +148,132,135, 15, 31,130,166,105,112, 28, 39,214,104, 52,112,113,113, 41,157,219,114,200,144, 33,240,240,240, 96, 98, 98, 98, 70, +129,199,139, 17, 88,102, 44, 89,178, 4, 91,182,108,193, 71, 31,125, 84,229,113, 71,142, 28, 1,202,117, 17,150, 95,109,219, 60, +138,112,225,194,133,207,252,206,220, 21, 56,113,226,196,103, 56, 15, 31, 62,252,151, 46, 66, 75, 87,240,142,141,141,181, 88, 1, +151,229, 52, 59, 82,177,105,185,143, 90,168,172, 46,110, 63,242, 71,167,199, 89,154, 71,133, 70, 67,143,242,226,170, 42, 7,171, + 44,103, 51, 87,101, 51, 15,103,135, 11,171, 86, 46,183, 49,187, 97,123, 35, 82,114, 97,226, 62,170, 97,227, 95,237,185, 11,133, +194,228,246,237,219,215, 1, 44,235, 22,252,167, 86, 89,215,233,116,184,118,237, 26, 0, 96,244,232,209, 57, 79,158, 60,233,204, +113,220, 93, 66,200,189, 55,222,120,227,194,137, 19, 39,236, 74,158,190, 51, 95,102, 58,129,226, 17,173, 2,129, 0, 94, 94, 94, + 53, 22, 87,255, 84, 58,147,147,147, 63, 26, 63,126,252, 22,157, 78, 39, 40, 44, 44,252,200,210,125,213,165,115,255,254,253, 15, +189,188,188,186,160,242,105, 19, 88, 0, 87,159,135,115,237,218,181, 0,208,244,121, 56, 43,115,176,246,237,219, 7,134, 97,224, +225, 98, 3,157, 78,135,178,241,158,150,112,150,119,176,126,254,249,103,176, 44,139,186,110,246,208,233,116,149,198, 30, 86,196, +201,113,156,142, 16, 50,170,125,251,246, 59,151, 46, 93,250,200,219,219,187, 78,251,246,237,237,178,178,178,210,110,222,188,249, +100,203,150, 45, 74,147,201, 52,170,178,110,162,242,156, 14, 14, 14,171,119,236,216,225,113,239,222, 61, 36, 37, 37, 97,205,154, + 53, 79,211,211,211,251, 8, 4, 2,201, 55,223,124,115,190,111,223,190, 46, 38,147, 73,247, 42,148, 79, 51,212,106,245, 17, 0, +194,154, 10, 43, 75,210,121,227,198,141,159, 75,184,127,183,132,251,159, 58,247,231, 29,153, 88, 93, 58, 71,141, 26,149,136,114, +115,166,213, 52,157,167, 78,157,122,242,254,251,239, 47,241,245,245, 93,168, 84, 42, 17, 29, 29, 93, 58, 45,146,249, 1,157, 16, +130, 65,131, 6, 97,194,132, 9, 56,117,234,212,146,129, 3, 7, 62,249,187,243,243,255, 70, 96, 49, 12,147,240,228,201, 19,183, + 29, 59,118,208,132, 16,236,218,181, 11,229, 3,107,205,239, 0,112,237,218, 53, 19,199,113,177, 85,253, 25,195, 48, 9, 97, 97, + 97, 46,219,182,109, 19,202,100, 50, 72, 36, 18,168,213,106,176, 44,203,166,166,166, 82,123,246,236,121, 38, 88,247,234,213,171, + 38,131,193, 16,255, 79,102, 72, 89, 71,234,182, 58,191,179,167,187,204,221, 90,173, 77,123,192,113,198,234,142,175, 12, 10, 43, +235,229,171, 86, 46,183, 53,139,171,125, 17, 41, 57, 90, 29,211,237, 94,122,209,173, 23,157,254,203,151, 47,215,125, 69,203,218, +130, 46, 93,186,176, 0, 28, 1,204,227,138,157, 59,148,136,172,182, 94, 94, 94,211, 1,200, 0, 44,120, 89, 9, 36,132,112, 44, +203,150, 58,167,175,114,144,101,120,120,248, 35, 0, 61,106,186,175, 58, 12, 28, 56, 48, 14, 64,220,139, 76,235,223,193,105, 70, + 86, 78, 30, 98, 31, 39,149, 44,229,197,128,121,154, 82, 38,126,202,136,172,188,204, 26, 59, 88,177,143, 19,193,178, 92, 49, 31, +147, 84, 26,228,110, 50,153,144,145, 83,179,105,218, 56,142,139, 34,132,180,155, 53,107,214, 20, 0, 29, 1,212, 5, 16,143,226, + 48,128,245,150,198,224, 8,133,194,142,107,215,174,237, 67, 81, 20,117,237,218, 53,221,202,149, 43, 19,210,211,211,251,115, 28, + 23, 15, 0, 42,149,170,235,225,195,135,119,191, 10, 83, 50,148,195,136,127, 41,119,173,241,111, 25,153,184,119,239,222, 69, 19, + 39, 78, 20, 4, 5, 5,205,109,221,186, 53,245,248,241, 99,164,165,165,149, 62, 92,190,254,250,235,168, 87,175, 30,251,251,239, +191, 47,123,251,237,183, 23,241,114,233, 5, 10,172,140,140,140,215, 71,140, 24,113,154,162,168, 6,149, 45,238, 92,214, 93, 98, + 89,246, 73,106,106,106,149,203, 72,100,100,100,188,190, 96,193,130,211, 2,129,160, 65,153,197,156,117,153,153,153, 19, 7, 13, + 26,180, 81, 40, 20, 74,202,186, 93, 44,203, 62, 77, 78, 78,254, 71, 3,138,203, 59, 82,177, 73,154,164,154, 28, 95,161,192, 18, +163, 81,194,181, 99,120,120, 59, 28,251, 34, 82,178,243,245, 76,215,232,244,194,255, 43,229,207,113, 92, 26,128,137,149,236,123, + 8,224,163, 87, 32,141,255,153,209, 43,255, 15, 48,153, 76,137, 61,187,119, 69,249,105, 25,202,111, 51, 12,147,104, 41, 95,143, +110, 93, 42,229, 49,127,182,148,175,172,147,133,226,213, 24, 86,212,246, 92,105,154,158, 30, 20, 20, 68, 79,159, 62, 61,245,248, +241,227,127,100,103,103, 79,227, 56,174,168,140, 83, 20, 13, 32,128, 47, 21,175, 76,125,247,175, 24,153,184,113,227,198,249,159, +125,246,217,118,149, 74,181,171, 99,199,142, 77, 61, 61, 61,173,173,172,172,144,151,151,151,159,149,149,245,224,216,177, 99, 67, + 71,140, 24,241,136,191,162,181, 47, 8,127,219, 11,128,239,191,142, 51,121, 33, 55,176, 7,184,154,188, 87,199,217,196, 69,209, +165, 77, 93,235,240, 22, 42,171,208,166,206, 10,159,255,171,252,228, 57,121, 78,158,243,185, 57, 1,212, 21,139,197,191, 10, 4, +130,142,124,126,242,156,127, 23,231,192,129, 3,233,129, 3, 7,210, 47, 43,157,213,188, 90,115, 28,215,183,228,221,252,185,103, +153,239,240,170,189, 4,188,196, 44, 7,215, 5,164,252, 26,132,213,189, 87,135, 7, 41, 5, 23,248,167, 75, 30, 60,120, 60,199, +131,112, 60,128,254,124, 78,240,248, 59,177,127,255,126,230, 21, 78,158, 19, 33,228, 40,199,113,253, 0,192,252,185,236,119,175, + 26, 40,190, 72,241,224,193,131, 7, 15, 30, 60,120,188, 88, 16, 0,190,149, 60, 49, 89, 28, 35, 68, 8,241,173,197, 19,217, 29, +158,147,231,228, 57,121, 78,158,147,231,228, 57,255,191, 56,171,227,174,228,247,125,171,113,176,142,189,114, 2,235,239,156,152, +238,159, 30, 18,204,115,242,156, 60, 39,207,201,115,242,156, 60,231,191,147,179, 26,252,235, 4, 22, 31,131,197,131, 7, 15, 30, + 60,120,240,120,213,161,153, 61,123,246, 92, 66,200, 81, 0,152, 61,123,246,220, 87, 61,193,188,192,226,193,131, 7,143, 50, 80, +169, 84,111, 2, 88,132,226, 16,138, 96,181, 90,253, 51,159, 43, 60,254, 75,112,114,114, 82, 56, 56, 56,252, 65, 81, 84, 61,224, +217, 41,151, 42, 90,255,151,101,217,228,172,172,172, 94, 41, 41, 41, 25,255, 36,103, 57, 92, 9, 14, 14, 46, 10, 14, 14, 54, 7, +180,167,163,184, 23,174, 95,201,231,127,191,192,154,221,171, 65, 39,149,187,251,158,156,204,204, 8, 93, 81,254,152,101,127, 36, +101,213,230,143, 9, 33, 14, 98,177,248, 61,133, 66,209,147,227,184, 70, 52, 77,223,207,205,205, 61, 99, 52, 26,247,114, 28, 87, +192,223, 2, 60, 94, 54, 90,181,106,213, 66, 44, 22,127, 70, 8,105,107, 50,153, 60,132, 66,161, 26,192,117,157, 78,183, 50, 34, + 34, 34,130,207,161,255, 6, 8, 33,148,155,155,219, 58, 91, 91,219,160,156,156,156,161, 0,230, 70, 71, 71,251, 81, 20, 5, 31, + 31,159,185, 42,149, 42,214,202,202,234,135,252,252,252, 43,201,201,201,159,212,100,237, 56, 30,175, 46, 60, 61, 61,195, 40,138, +242, 40,187, 92, 91,121, 65, 80,254,157,227,184, 71, 81, 81, 81,237, 43,227,244,240,240,104,100,109,109,189, 17, 64,235,138, 68, + 69, 89,148,132,231,132,230,229,229, 77, 76, 76, 76,172,112, 34, 94,123,123,123, 43,103,103,231, 69,132,144, 65, 20, 69,209,213, +157, 19,203,178, 12,199,113,251,211,210,210, 22,100,101,101,229, 87,118,156,131,131,195,153,144,144,144,214,142,142,142,213,206, +249,103, 50,153,144,152,152,232,212,175, 95,191, 16, 0,222,255, 36,103, 57,232, 1,220,248, 55,149,177, 26, 11, 44,194, 96,216, +152, 15, 71,184,231, 36, 68,187,239,216,123,162,201,231,175,215,235,250,229,201,167, 41, 53,225,144,201,100,239,249,250,250,174, + 95,191,126,189, 67,131, 6, 13,136, 76, 38, 67,114,114,178,119,100,100,228,219, 11, 23, 46, 92, 32, 20, 10, 71, 25,141,198,211, +207, 89,105,218,218, 43, 5,159,101,230, 27,231,240, 85, 9,143,154, 96,208,160, 65,116, 66, 66,194, 66, 71, 71,199, 25,179,102, +205,146, 52,108,216, 16, 74,165, 18,105,105,105,117, 99, 98, 98,234,108,220,184,241,205,246,237,219,127, 35, 18,137, 62, 63,127, +254,188,137,207,177,127, 55,220,220,220,214,133,132,132, 76, 82,169, 84,232,208,161,195,149, 86,173, 90, 89,203,229,114, 28, 63, +126, 28,141, 26, 53,106,110, 99, 99,115,125,243,230,205,194, 69,139, 22,181, 60,120,240, 32, 0, 76,230,115,237,223, 15,138,162, + 60, 34, 34, 34,156,229,114, 57, 24,134, 41, 89, 13,128, 5,199,113,165,239,101,197, 16,195, 48,232,214,173,155,161, 42, 78,169, + 84,250,237,237,219,183,123,154, 87, 56, 41, 35,164, 42,132, 90,173,238,217,173, 91,183,111, 1, 84, 56,161,182,179,179,243,162, + 49, 99,198, 76, 13, 12, 12,132,201,100,130, 94,175,135, 94,175,135,193, 96,128, 94,175, 71, 90, 90, 26,166, 76,153, 82,250, 63, + 44,203,226,204,153, 51,147,103,207,158, 13, 0,159, 86,113,238,245, 28, 29, 29, 73,117, 75,224, 45, 92,184, 16, 11, 23, 46,196, +250,245,235,137, 64, 32,176,173, 38, 63, 95, 56,231,191, 29, 53, 23, 88,224,126,255,253,192,207, 99,250,117,105, 74, 70,246,247, +247,218,125, 36,236,234,236,158, 13, 59, 47, 63,243, 40,193, 66,113, 53,101,252,248,241,203, 23, 47, 94, 44,125,240,224, 1,162, +162,162, 96, 50,153,160, 84, 42,209,162, 69, 11,234,247,223,127,119,155, 50,101,202, 1,177, 88, 60, 90,175,215, 31,172,237,137, +185,218,209, 43, 21, 50,250, 3,177, 64,112, 93,111, 50, 29,121, 21, 51, 63, 40, 40,232,148,209,104,252, 42, 34, 34,226,220,191, +165,192, 4, 4, 4,116, 16,137, 68, 11,196, 98,241, 27,255, 85,113,241,244,233,211, 5,157, 58,117,154,177,112,225, 66,201,227, +199,143, 17, 29, 29,141,228,228,100, 52,104,208, 0, 13, 26, 52, 32,235,215,175,151,126,243,205, 55,147, 35, 35, 35, 41, 0, 51, +107,226,148,184,186,186,142,237,209,163,199,187,142,142,142, 54, 73, 73, 73,185,151, 47, 95,254, 53, 57, 57,249, 59,142,227,106, +149,151,132, 16,202,209,209,113,100,191,126,253,222,181,183,183,183, 79, 78, 78,206,250,227,143, 63,126, 77, 75, 75,251,225,121, +156, 22, 66,136, 27, 0, 63, 0, 14, 37, 95, 37,215,175, 95,255,238,227,199,143,211, 94, 32,167,186,126,253,250, 81,181,225,116, +114,114, 82, 8, 4,130,159, 9, 33,170, 42, 28, 2,181,201,100, 26,156,158,158, 94, 88, 21,151,181,181,117, 91, 55, 55, 55, 92, +191,126, 29,243,230,205,179,239,214,173, 27, 98, 98, 98, 64, 81, 20,102,204,152, 65,124,124,124,132, 41, 41, 41, 8, 12, 12,196, +153, 51,103,218,243,210,164, 70,215,124, 63, 0, 91, 0, 67, 56,142,203, 40,243,189, 35,128,195, 0,210, 56,142,123,231,101,165, + 79, 38,147,225,167,159,126,130, 80, 40,132, 72, 36, 66,118,118, 54,220,221,221, 33, 18,137, 32, 20, 10, 75, 95, 34,145, 8,117, +234,212,169,150,143,101,217, 54, 52, 77,163,160,160, 0, 12,195,148, 46,179,148,155,155, 11,142,227, 32, 22,139, 75,191, 55,239, + 99, 89,182, 77, 21,249, 55,168, 69,139, 22,216,184,113, 35, 52, 26, 77, 69,101, 23,119,239,222, 45,221,166,105, 26,129,129,129, + 52, 33,100, 80, 85, 2,139, 16,194, 1,192,135, 31,126,248,204,242,116,229, 95,230,181,131, 57,142, 43, 93, 66,236,159,228,252, + 79, 11,172, 57, 61, 26, 78,108,238,223,114,165, 88, 44,148,177,140, 17,172,201,136,230,190, 94, 96, 89, 19, 30, 61, 77, 70, 35, +103, 49, 70,247,246,172,183,243, 84,204,157,185,189,188,130,150,157,138,137, 46, 87,193,221, 41,119, 1,234,183,110,221,122,209, +210,165, 75,165,127,252,241, 7, 30, 60,120,128,101,203,150, 1, 0, 20, 10, 5,142, 31, 63, 14,134, 97,176,122,245,106,171, 55, +222,120, 99, 35, 33,228, 2,199,113, 89, 85,113, 86,114,161,235,117, 14,244,232,127,240,235,206,146,230,111, 31, 88, 75, 8, 57, +198,113, 28, 83, 69, 69,252,194, 71, 66, 88,194,105, 50,153, 94, 19, 10,133,237,253,253,253,223,180, 68,100,189,172,116,150, 21, + 87, 66,161,240,132,193, 96,144,139,197, 98, 1, 42, 89, 72,250,101,167,243,121, 56, 91,181,106,213,194,222,222,126,198,130, 5, + 11, 36,215,174, 93, 67,118,118, 54,210,210,210,240,201, 39,159, 96,211,166, 77,104,222,188, 57, 20, 10, 5, 38, 79,158, 44,253, +248,227,143, 39,182,110,221,122,127,104,104,104, 88,117,233, 36,132, 80, 93,186,116,249,105,215,174, 93, 13, 76, 38, 19, 5, 0, + 70,163,209,238,233,211,167, 35,230,204,153,211,133, 16, 50,164, 50,145, 85, 21,103,251,246,237,119,237,222,189,219, 83, 44, 22, + 83, 37,149,181,211,240,225,195,199,124,254,249,231,221, 8, 33, 31, 84, 86,238,171,202, 79, 66, 72, 43,185, 92,222,108,226,196, +137, 25,253,251,247, 79, 2,128,240,240,112,114,243,230,205, 14,139, 22, 45,122,178, 96,193,130,155,181,224, 12,144,203,229, 77, + 39, 77,154,148,222,167, 79, 31,181, 72, 36, 98,175, 93,187, 70,223,185,115,167,227,178,101,203,226,230,206,157,123,171, 38,156, + 66,161,112,223,193,131, 7,187,184,187,187, 51, 0, 56,115, 5, 79, 8,225, 40,138,226, 40,138, 66, 92, 92, 92,253,129, 3, 7, +238, 1,240, 86, 85,156, 57, 57, 57, 35, 58,118,236, 24, 50,111,222, 60,123, 0, 8, 9, 9,129, 64, 32, 40,109, 16, 30, 60,120, + 0,157, 78,135,245,235,215, 27,242,243,243,199,254,215,202,252,223,204, 89, 7, 64, 27, 0,103, 9, 33,221, 57,142,203, 40, 17, + 87,231, 0,248, 0,184,252,178,210, 73, 81, 20, 24,134, 41, 21, 81,167, 79,159,198,166, 77,155,176,119,239, 94,184,187,187, 63, + 35,176,132, 66, 97,133,113, 68, 21,180,113,230,186, 29, 12,195,224,198,141, 27,248,225,135, 31,224,236,236, 12, 71, 7, 7, 56, + 58, 57, 33, 40, 40, 8,102,215,140, 97,152,191,240,150,231, 44, 44, 44, 4,203,178,150,158, 35,242,242,242, 44,206,207,170,132, + 80,217, 87, 77,174,209,243,112,254, 95, 9, 44, 55, 87,199,207, 7,190,251,154, 12,140, 9, 48, 20, 2,134, 34,112,134, 34,112, +250, 66, 16,177, 12,156, 81, 11, 5,157,137,143,122,184, 88, 31,184,154,122,111,118,247,122,125,151,159,125,122,162,138, 39,197, +249, 91,182,108,177,185,125,251, 54,162,163,163,177,102,205, 26, 44, 94,188,184,244,201,225,173,183,222,194,149, 43, 87,160,215, +235, 49,111,222, 60,251, 89,179,102, 77, 66,113,176,105,205,220, 43, 7,193,166,159,119,174,183,183,151,101, 96,116,255, 80,135, +111,127,126, 50, 17,192, 55,175,226, 5,152, 53,107,150,124,197,138, 21,191, 89, 42,178, 94,166,115, 37,145, 72, 78,204,159, 63, + 95, 49,127,254,124,230, 5,113, 54, 23, 8, 4,251,140, 70,227,244,136,136,136,147,175,194,121, 74, 36,146, 41, 51,102,204,144, + 38, 38, 38, 34, 39, 39, 7, 18,137,228,153,202, 77, 34,145,128,162, 40,136,197, 98, 12, 31, 62, 92,186,117,235,214,105, 0,222, +175,182, 76,186,186,142,221,185,115,103, 3,131,193, 64, 21, 22, 22, 66, 36, 18, 65, 36, 18,161, 69,139, 22,244,204,153, 51,235, + 76,157, 58,117, 60,128, 13, 53, 73,171,157,157,221,136, 93,187,118,121,138,197, 98, 42, 57, 57, 25, 29, 58,116,192,245,235,215, + 17, 20, 20, 68,207,156, 57,179,238,228,201,147,199, 1,216, 84, 83,151, 73, 46,151, 55, 15, 9, 9, 73, 80,169,254, 52,135, 26, + 52,104,192,245,238,221, 59, 43, 58, 58,186,105, 68, 68, 68,166,191,191,127, 66, 13, 56,221,229,114,185,247,201,147, 39,147, 23, + 47, 94,220, 99,211,166, 77,253, 1,160, 77,155, 54, 71,150, 45, 91,246, 71,102,102,166,207,141, 27, 55, 50,219,180,105,147, 84, +131,164, 58,184,186,186,154, 38, 78,156,104, 85,126,199,130, 5, 11,176,104,209, 34,108,223,190, 61, 19,128,115, 85, 36, 42,149, +234, 77,138,162, 22, 53,111,222,220,186,123,247,238, 8, 9, 9,193,228,201,147,117, 70,163, 49, 6, 0,122,246,236,217,100,225, +194,133,226,136,136, 8,216,217,217, 9,147,147,147,127, 84,169, 84,124,224,187,229,232, 15,224, 60,128,230, 37, 34,107, 48,128, + 3, 0,154, 1,136, 6, 48,240,101, 38,206, 44,176,146,146,146,176,117,235, 86, 44, 91,182, 12, 94, 94, 94, 48, 24, 12, 16, 8, + 4,165,226, 74, 32, 16,128, 16, 98,241, 2,240, 12,195, 32, 52, 52, 20, 59,119,238,196,188,207, 63,135,149, 85,113, 49, 53, 24, + 12,200,202,206,134, 84, 42, 45, 21, 97,213, 8,166,253,161,161,161, 83,123,245,234, 5,163,209, 88,218, 53,104,126, 21, 21, 21, +193,214,214,182,116, 49,114,173, 86,139,173, 91,183,154, 56,142,219, 95,205, 61, 89, 42,134, 62,253,244, 83,232,116,127,174, 57, +238,231,231, 7, 0,168, 95,191, 62, 90,182,108, 89,186,109,118,168, 44,225,252,161, 67, 11,104,202, 28,221,116,225,215, 0, 0, + 15, 15, 15, 52,109,218, 20,110,110,110, 22,113,254, 39, 4,150,121,129,219,242, 11,221,166,164,164,125,181,125,243,143, 95,139, +133,148,176,103,251,166,176,147,152, 64,228,246, 16,117,153, 13, 98, 91,175,184, 0,100,197, 65,127,114, 54, 6,183,204,160,118, +234,232,195,139,122,123, 58, 45, 56, 30, 91, 97,112, 29, 69, 81,109,235,214,173,139,144,144, 16, 52,104,208, 0,243,231,207,135, +183,183, 55,228,114, 57, 82, 83, 83, 81, 88, 88, 8,133, 66, 1,134, 97,224,239,239, 79, 91, 89, 89,117,171,169,192, 34,132,248, +143, 29, 28,212, 70, 96,237,141, 14,111,180,195,169,141, 93, 20,219,143,170,231, 16, 66,126, 44,187, 56,234,171,130, 1, 3, 6, + 32, 53, 53, 85,190,107,215,174, 90,139,172,160,160,160, 83, 38,147,233, 53, 11,236,240,115, 23, 47, 94,236, 94, 91,113,181,117, +235, 86,133,173,173, 45,170, 11,222,172,129,184,186, 52, 98,196, 8,235, 93,187,118, 29,242,247,247,127,251, 85, 16, 89,132,144, +246, 13, 27, 54, 68,124,124, 60, 82, 83, 83,161,211,233,144,154,154, 10, 0, 72, 76, 76,132,135,135, 7,236,236,236,224,225,225, +129, 38, 77,154, 16,138,162,130, 44,225,237,214,173, 91,127, 0, 84, 92, 92, 28,210,211,211, 97, 99, 99, 3,133, 66, 1,119,119, +119,116,239,222, 93,224,233,233,217,167,166, 2,171,119,239,222,239,202,229,114,234,233,211,167,120,242,228, 9,116, 58, 29, 98, + 98, 98, 96, 99, 99,131,158, 61,123, 10, 61, 61, 61,251,213, 84, 96, 1,240, 29, 55,110, 92, 90, 89,113,101,134, 66,161, 32, 77, +155, 54,205,178,181,181, 13, 4,144, 80, 19,206,201,147, 39,167, 6, 7, 7,119, 62,115,230,204, 44,243,151,103,206,156,249, 12, + 0, 54,108,216, 16, 98,111,111, 31, 8,160, 38, 2, 11, 28,199,177, 99,198,140,121, 40, 22,139, 97,126,153,133,235,215, 95,127, + 13,138,162,108, 44,160,153, 27, 29, 29,237,167, 84, 42, 17, 29, 29, 13,154,166, 65, 8,121,168, 86,171,253, 74, 30,128, 98,181, + 90,109, 35,173, 86,139,129, 3, 7,146,190,125,251,182, 88,179,102,205,231, 0, 94, 9,129, 69, 8,105, 13, 96, 53,138, 3,128, + 63,231, 56,238,250,171, 84,191,113, 28,151, 74, 8,233, 90, 70,100,221, 4, 32, 41, 17, 87, 93, 57,142, 75,125,137,121, 7,150, +101, 33, 16, 8,240,245,215, 95,195, 96, 48, 96,247,238,221, 56,112,224, 0, 40,138, 2, 33, 4,132, 16, 88, 91, 91, 99,221,186, +117,165,219,150,192,100, 50, 97,219,182,109,152, 61,107, 86,169,184, 2, 0,145, 72, 4, 87, 23, 23, 56, 56, 58, 34, 46, 46,174, + 90,129,149,150,150,182,224,215, 95,127, 69, 85, 65,238,103,206,156, 41,253, 92, 54,200,221,146,116,210, 52, 13,157, 78,135,215, + 94,251,179,249,152, 52,105, 82,233,231,236,236,108,243, 61, 1, 98,225,201,211, 52, 13, 13, 7, 12,144,254,249, 93,159,233,211, + 75, 63,103,100,100, 84,202, 89,153, 22,249, 79, 58, 88,226,142, 79, 55, 60,190, 66,181, 28,212,175,221, 72,123,107, 25,216,124, + 53, 68, 61, 22,226,118,150, 28,107, 55, 23,183,133, 83, 7,250,195,247,181,165,208,253,216, 11,221,235,235,197, 63, 70,200,102, + 2,152, 95, 17,159,163,163,163,163,201,100, 2, 69, 81, 80, 40, 20,176,183,183,135, 76, 38, 67, 70, 70, 6,166, 76,153,130, 19, + 39, 78, 64,175,215, 67, 36, 18,161, 97,195,134, 48, 24, 12,141,106,236, 94,217, 9,126, 88,243,245, 50,219,204,184, 61, 8,127, +144, 3,185,141, 7, 62, 31, 23,104,183,112, 99,216, 2, 0,159,189,138, 23,193,199,199, 7,159,124,242,137,252,155,111,190,169, +149,200, 50,153, 76, 75, 4, 2, 65,135,233,211,167,203, 6, 14,252,235, 3, 97, 84, 84, 20,198,143, 31,175, 41, 42, 42,250,178, + 54,226, 74, 44, 22,159,248,225,135, 31, 20, 54, 54, 54,136,143,143,127, 97,226,106,253,250,245,214,141, 26, 53,130, 80, 40,148, +110,219,182,237,149, 16, 89, 38,147,169,174, 92, 46, 71, 70, 70, 6,166, 78,157,250, 76,128,170,185, 59, 27, 0,162,163,163,225, +225,225, 1,173, 86,235,110, 9,175,189,189,189, 29,199,113,248,240,195, 15,145,144,240,167, 54,113,119,119, 71, 66, 66, 2, 76, + 38,147,125, 77,211,106,103,103,103,111, 52, 26,209,165, 75, 23,104,181, 90, 0,192,224,193,131, 33, 20, 10,145,150,150, 6,131, +193,224, 80,139, 44,112,236,219,183,175,186,178,157, 10,133,194,104,103,103, 87,191,134,156, 14,253,250,245, 75,218,178,101,203, + 91,229,119,220,184,113,227, 45, 27, 27,155, 51,246,246,246, 77,107,145, 86, 86, 34,145, 64, 34,145, 64, 40, 20, 66, 44, 22, 67, + 34,145, 64, 44, 22, 67, 40, 20,130,166,105,139,250, 85, 88,150,197,177, 99,199, 64, 81,212, 51, 93, 23,243,231,207,255,200,214, +214,214,229,194,133, 11,165, 15,128, 5, 5, 5,104,220,184,113,195,158, 61,123, 70,166,164,164, 60,137,138,138,122,251, 37, 87, + 31, 43, 1,152,227,194, 54, 1,104,249,170,213,111, 37, 34,107, 16,128,176, 18,113,165, 7,240,238,203, 20, 87,101,175,189, 64, + 32, 40,189,207,165, 82, 41,252,253,253, 75,197, 20, 33, 4, 69, 69, 69,165, 93,132,150, 54,250,185,185,185,112,115,115,131,149, +149, 21, 26,123,121,225, 97, 76, 12, 0,148,126, 22,139,197,165, 66,172, 42,148,140, 4,252, 20, 85,196, 83,213, 82, 92,114, 0, + 32, 16, 84, 29,134,237,230,230, 6,150,101,205,194,146,123, 17,156,142,142,142, 40, 40, 40,176,136,243, 63, 33,176, 42, 82,140, +139, 22, 17, 74,119,165,193,214, 65,125,218,140,108,230,161,128, 46, 35, 14, 98,165, 3,136,109,125,172,221,124, 18,247,158, 20, +135, 70,173, 61, 16,129,237,115, 94, 7,145,219,195, 77,243, 0, 86, 82,201,219,149, 9,172,204,204,204, 2,131,193, 96, 47,147, +201, 32, 16, 8, 32, 18,137,144,145,145,129, 47,190,248, 2, 63,255,252, 51,234,215,175, 15,147,201, 4,177, 88,140,244,244,116, +136, 68,162, 26,141, 78, 20, 8, 72,223,133,159,244,110,160,112,240, 66,102,196,226,226, 47,173,253, 49,110, 48, 45, 94,181,243, +238, 8, 66,200, 42,142,227,210, 94,181,139,160, 84, 42,209,178,101, 75,124,240,193, 7,242,221,187,119,239, 0,224, 81,147,223, +135,135,135, 95, 14, 8, 8,232,181,122,245,234, 83,201,201,201,178, 86,173, 90, 65,169, 84, 66,169, 84, 34, 46, 46, 14,139, 23, + 47,214,234,116,186,126,181,113,199, 4, 2,193,182, 49, 99,198, 40,172,173,173, 17, 23, 23, 7,123,123,251,231, 58,215,128,128, +128,230, 66,161,240,210,250,245,235,173, 61, 61, 61,113,255,254,125, 4, 4, 4,192,213,213, 85, 26, 28, 28,252,210, 69,150, 72, + 36, 74, 76, 79, 79,247,172, 83,167, 14,182,110,221, 10,138,162,160, 86,171,241,249,231,159, 35, 56, 56, 24, 65, 65, 65,176,178, +178, 66,157, 58,117,240,240,225, 67, 72,165,210,100, 75,120,147,146,146,178, 0, 56,159, 56,113, 2,233,233,127, 78,217, 82,175, + 94, 61,100,101,101, 65,167,211,101,214, 52,173, 73, 73, 73,153, 0, 92, 34, 35, 35,241,228,201, 19,188,241,198, 27, 56,124,248, + 48, 2, 3, 3,193, 48, 12,140, 70, 99,102, 45,178,128,161,105,154,171,162, 18, 37, 0,236,106,170, 91,171,226, 68,241,124, 83, + 53,229, 4,199,113, 92,101,226, 74, 44, 22,163,154,255, 44,213,205,222,222,222,139, 26, 54,108,216,236,243,207, 63, 23, 10, 4, + 2,116,236,216,177,201,204,153, 51,159,202,100, 50,135,217,179,103,203, 43, 50,131, 1,248, 53,107,214, 76,241, 10, 84, 31,101, + 93,186, 87,114,208, 9, 33,196,185,196,241, 19, 3, 48,148,188,239, 53,199,100,189,108, 7, 75, 36, 18, 97,225,194,133,152, 48, + 97, 2, 92, 92, 92, 48,107,214, 44, 8, 4,130,210,151,217,149, 49,187, 90, 22,150, 77,184, 56, 59, 87,125,163,149, 4,185, 87, +243, 96,246,183, 76,211, 96, 22, 67,150,196, 66,149,113,155, 44, 18,109,207,195,249, 95,114,175, 74, 5, 86,121, 91,174, 84, 92, +189, 17, 48,210,219, 67,134,155, 17,119,224,235,106, 4, 39, 20, 86, 81, 90,140, 32, 34, 5,108,101, 2,143, 42, 46, 64,196,147, + 39, 79,234,217,218,218,194, 96, 48, 64, 44, 22,195,215,215, 23, 87,175, 94,133, 78,167,131, 94,175,135, 68, 34,129, 72, 36,194, +221,187,119, 97, 48, 24, 66,106,112,179,208, 46,118,244,250,207,230, 46,182, 66,210, 86,216, 90,137,209,173,173, 39,160,104, 6, +186,240, 1, 86,207,235,103,255,209,231,135,215,194,130,120,153,151, 33,176,158, 62,125,138,159,126,250,169, 72,167,211,141,168, + 13,135, 89,100,253,252,243,207,167,108,109,109,101, 65, 65, 65,136,137,137,193,151, 95,126,169,213,233,116,125,107, 27,223,101, + 50,153, 70,125,255,253,247, 39, 76, 38,147,194, 44, 46,158,215,185,154, 50,101,138, 85,227,198,141, 17, 27, 27, 11, 27, 27, 27, + 88, 89, 89,161, 65,131, 6,112,115,115,147, 78,153, 50,229,165,138, 44,150,101,175,196,198,198, 54,242,246,246, 38, 77,154, 52, +129, 88, 44,134,187,123,177, 73,229,231,231, 7,111,111,111,136, 68, 34, 0, 64,108,108, 44, 96,225,188, 44, 23, 47, 94,252, 53, + 58, 58,122,108, 96, 96, 32,237,234,234,250,204,232,164,224,224, 96,195,211,167, 79,107,188,204,195,217,179,103, 15,223,185,115, +231,195,142, 29, 59, 10,236,236,236, 32,145, 72,224,235,235, 11, 55, 55, 55,124,249,229,151,134,199,143, 31,215,102,233,136,248, +200,200, 72,169,151,151, 23, 83, 73, 89,181, 2, 80, 83,231, 33, 49, 60, 60, 92,212,182,109,219, 35,199,143, 31,111, 94,118, 71, +155, 54,109,142, 40,149, 74, 27, 0,201,181,185, 92,101,187, 6,203,118, 21,138,197, 98, 8, 4,130,106, 29, 44,181, 90,253,155, +171,171,235, 35, 23, 23,151,203,237,219,183,183, 9, 11, 11,195,252,249,243, 69, 58,157,174,174,185,235,165,146,224,102, 20, 22, + 22, 74, 95,129,234, 99, 42,128, 53, 0,228, 0,102,189,130,226,202, 5,197, 1,237, 77, 81,220, 45, 56,184, 68,108,153, 99,178, + 94,170,200, 98, 89, 22, 66,161, 16, 77,155, 54,197,167,159,126,138,175,190,250, 10, 19, 39, 78, 68,227,198,141, 75,175,189, 57, + 6,171,100,196,155, 69, 13,191, 72, 36,130,139,171, 43,140, 70, 99,169,123, 5, 0, 15, 99, 98, 32, 16, 8,192,178, 44,116, 58, + 93,181, 93,132,206,206,206,139, 86,172, 88, 49,165,119,239,222, 84,217, 17,119, 28,199,149, 78,203, 80,246,101, 52, 26,241,219, +111,191, 77, 9, 14, 14,134, 37,174, 23, 77,211,240,243,243,123,166, 91,112,195,134, 63, 35, 21,252,253,253,209,179,103,207, 26, +141,246,163,105, 26, 77, 23,126,253, 76,183,224,239, 78,127,102, 91,157,225,227,208,248,203,245, 21,114,254,215,186, 8, 43,204, + 53,195,213,122, 75, 7,190,222,114,164,183,187, 4,145, 17,119,113,244, 70,242,131,140,140, 28,176,169,119,192,166,223,199,212, +129,254,104, 86,223, 30,205,234,219, 99,234, 64,127,176,105,119,193,101,199,129,147,218, 33,173,144,168,171,176, 59, 87, 46, 89, +178, 36,219,206,206, 14, 82,169, 20, 98,177, 24,137,137,137,240,241,241, 41,221, 46,121,242,196,252,249,243,211,211,211,211, 55, + 91,122, 34, 10, 25, 53,238,171,207,223,119, 17, 73,172,128,172, 16, 88, 91, 43,177,117,243,215,128, 78, 13, 80, 98,188,217,179, + 37,237,230, 98,219,157, 16,210,228, 85,187, 8,241,241,241, 88,184,112, 97,145, 70,163,121,174, 64,247,240,240,240,203, 6,131, +161,215,230,205,155, 53, 71,143, 30,125,110,113,101,230, 52, 26,141,111,236,216,177,163, 48, 62, 62, 30, 74,165,242,121,220,161, +217, 38,147,201,122,205,154, 53,236,107,175,189,198,124,252,241,199,204,168, 81,163,152,119,222,121,135,233,217,179, 39, 51,126, +252,120, 70,167,211, 73,228,114,249,138,151,117, 45,116, 58,221,134, 77,155, 54,105, 41,138,130, 82,169,132, 88, 44,134,147,147, + 83,169, 16, 54, 55,228, 6,131, 1, 27, 55,110,212,104, 52,154,181,150,240,102,102,102,110,157, 57,115,230,227, 83,167, 78, 25, +205,163,124,212,106, 53,190,252,242, 75,195,230,205,155,147,114,114,114,190,171,105, 90,243,242,242,182,125,246,217,103, 79,142, + 29, 59,102,164, 40, 10,217,217,217,176,181,181,197,151, 95,126,105,248,238,187,239,146,242,243,243,107,204,217,174, 93,187,216, +164,164, 36, 43,157, 78,247, 23,247, 71, 40, 20, 18,169, 84,218, 6,192,217,154,112, 6, 6, 6,198, 62,121,242,196,122,233,210, +165, 23,122,246,236,249,149,149,149, 85,140,149,149, 85, 76,207,158, 61, 87,108,220,184,241, 92, 9,231,153, 26, 87, 94, 20, 85, + 42,176,204, 93,133,102, 23,171,196,201,178,168,139,208,219,219,123,207,206,157, 59,109, 98, 98, 98,144,151,151,135,155, 55,111, + 34, 34, 34,162,180, 43,215,220,152,149,125, 1, 64, 81, 81,145,236,101,215, 29, 28,199,157,231, 56,206,143,227, 56, 79,142,227, + 94,197, 65, 50, 7,202,136,171,174, 37, 35,207,186,150,108, 55, 7,240,235,203,116,176, 56,142, 43,125,216,121,255,253,247,113, +230,204, 25, 52,110,220,184, 84, 84,149, 29, 69, 88, 19,145,193, 48, 12,124,125,125,161,211,235,159, 17,232, 2,129, 0, 78, 78, + 78,136,141,141, 45, 13, 76,175, 38,141,131,122,247,238, 77, 69, 69, 69,193,219,219, 27, 17, 17, 17,136,136,136,192,205,155, 55, + 17, 25, 25,137,219,183,111,227,238,221,187,184,119,239, 30, 2, 2, 2,240,244,233, 83,188,254,250,235, 84, 73,151,108,149, 69, +167, 38,110,147,133,238,221,223,193,249,239,119,176,204, 74,209,252,238, 98,167, 24,213,204, 77,128,200,200,123, 56, 18,158,181, +157, 16,234, 96,196, 99,221,209,215, 27,230,195,240,243, 16,248, 14,218,133,237,115, 94, 47,126, 2, 72,187, 11,195,254, 97, 32, +114, 71, 60,204, 83, 64,163,207, 57, 86, 69,101,112,195,206,206,110,223,206,157, 59,199,140, 28, 57, 82,204,178, 44,100, 50, 25, +166, 77,155, 86, 58, 71, 8, 77,211,152, 56,113, 98, 65, 90, 90,218, 26,142,227, 98, 45,188, 81,100,238, 78,226,121, 67, 63,156, + 47, 69,194, 22,128, 18, 33, 3,173,224,215,121, 12,210,158, 92, 5, 10,239, 1, 68,132,205,203,199, 58,190, 53,106,213,119, 0, + 58,189, 42, 23,224,254,253,251, 88,176, 96,193,115,139,171,242, 78,214,145, 35, 71,118,232,116,186, 15, 95, 32,231, 27, 95,125, +245,213, 9,103,103,231, 90,119,139,184,187,187, 15,207,200,200, 24, 99,137,113,246,178,174, 71, 68, 68, 68, 68,219,182,109, 55, +173, 89,179,102,226, 39,159,124, 34,149,201,100,176,182,182, 70,116,116, 52,234,214,173, 11, 0,208,104, 52,152, 51,103,142,198, +104, 52,110, 15, 13, 13,189,106, 97, 67,200, 18, 66,134,142, 31, 63,126,108,147, 38, 77,222, 98, 89,214, 65,175,215,103, 62,125, +250,244, 88,126,126,126,173,230,193, 42,225,252, 96,194,132, 9, 35,189,188,188,222, 53, 24, 12, 14, 38,147, 41, 51, 33, 33,225, + 72, 94, 94,222,214,218,112, 94,185,114, 37,253,135, 31,126,136, 75, 73, 73,241,113,115,115,203,181,177,177,209,235,245,122, 90, +169, 84, 90,137,197,226, 0, 0, 87, 1,220,171, 9,103,104,104,104,234,230,205,155,159,232,116,186, 38,223,127,255,125,136, 66, +161,248,131, 16, 66, 68, 34,145,157, 66,161,232, 6,224, 2,128,135,181, 17, 88,101, 5, 85, 89, 23, 75, 36, 18,129, 16, 98,145, +192,138,141,141,189,188,100,201,146, 22, 13, 27, 54,196,230,205,155,179,148, 74,165,213,187,239,190, 43,200,205,205, 37, 85, 57, + 88, 26,141, 70, 10, 30,213, 62, 91,148,184,188,253,205, 49, 87,101, 2,223, 15, 0,200,121,201, 2,245, 25, 33, 85,183,110,221, +103, 68, 85,217,125, 53, 17, 88, 38,147, 9, 34,145, 8, 2,129, 0,174,110,110,165, 98,142,227, 56,196, 60,124,136,236,236,236, +210,105, 26,170, 41,227, 52, 33, 4,239,189,247,158, 69,255,251,254,251,239,227,194,133, 11,168,174, 59,177,236,136,191,250,245, +235, 87, 43,134, 74,210, 98,241, 40, 66, 15, 15,143, 90,113,150,215, 34,255, 9,129,245, 23,219, 60,171,104,233, 15,135,110,206, + 81,231,153, 14, 74,218, 63,253,116,225, 66,112,115,122,212, 63,229,161, 16,247,106, 70, 37, 65,247, 93, 71, 16,235,226,198,134, + 43, 80,131, 40, 92,145, 45,172,139,223, 34, 82, 82, 40, 33, 93,165,251,144,147,147, 51,117,221,186,117,244,137, 19, 39, 6, 45, + 91,182,204,182,105,211,166, 24, 58,116, 40,244,122, 61,110,223,190,141,241,227,199,103,165,167,167,111,201,201,201,249,202,210, +147,112,180, 22,124,177,118,110, 47, 7,138, 45, 0,242,194, 1,129, 13, 28,237,173,112, 43, 44, 4,200, 13, 3, 40, 17, 64,137, + 17,216,202, 27,126,205, 61,189, 9, 33, 29, 57,142,187,244, 42, 92,128,143, 62,250,232,133,137,171,178,130, 8, 64,195, 23,153, + 78,179,200,154, 62,125,250, 9,150,101,229,181,225,216,191,127, 63, 3,128,121,213,111, 10,163,209, 56, 39, 42, 42, 10,147, 38, + 77,154, 48,108,216, 48, 89,211,166, 77, 81,175, 94, 61,196,196,196, 32, 58, 58, 26,155, 54,109,210,178, 44,187, 53, 39, 39,103, + 70, 13, 43,115, 6,192,150,146,215,139,106, 32, 88, 0, 63,150,188, 94, 8,198,142, 29,123,231,225,195,135, 89,238,238,238, 65, + 52, 77,183, 64,241, 68,145,201, 37,255,241,176, 54,156,227,199,143,143,140,139,139,203,112,117,117, 13, 18,137, 68,158, 37,156, + 73, 0,182,214,146, 51,243,214,173, 91,158,109,218,180, 97,105,154,230,132, 66, 33, 87,210, 24,114, 2,129,128, 35,132,112, 39, + 79,158,148, 2,168, 54,230, 50, 49, 49,113,202,246,237,219, 57,165, 82, 25, 84, 80, 80, 48, 20,192, 14,141, 70,211, 38, 39, 39, +167,180, 17,174, 8, 90,173, 86,194,235,167,106,203,231,128, 74,190, 79, 5,208,241, 85, 72,227,146, 37, 75,176,101,203, 22, 84, + 55, 3,249,145, 35, 71,128,106,186, 8,205,101,197, 28, 95,165,215,235, 17, 21, 21, 5, 66, 72,233,118,217, 73, 70, 25,134,169, +114,166,119,150,101, 25,189, 94,143,125,251,246, 89, 36,178,126,250,233, 39,104,181, 90,176, 44,107, 81, 61, 75,211, 52, 90,182, +108,137,236,236,236,210,169, 19,252,253,253, 75,247, 27, 12,134, 26,231, 39, 77,211,104,218,180, 41, 50, 50, 50,224,232,232, 8, +160,184, 91,176, 84,124, 22, 22,254,223,148,127, 82,213,197, 45,139, 69, 93,235,219,104, 5,212,161,150,238,108,215,192,122, 18, + 56,218, 74, 65, 11, 37,200,211, 18, 68,169,181,184,116, 47, 47,129, 49,113,253,190,252,227,177, 69, 19,196, 17, 66,218,186,185, +185,205,101, 24,166, 57, 69, 81,114,142,227, 10,104,154,190,169, 86,171, 23,113, 28,119,183, 38, 39, 97,107, 69, 63,180, 83,208, + 54, 66,177,152, 99, 76, 44, 0, 10,160, 40,128, 80, 0,232,146,247,226,109,141,198, 32, 98, 88,114, 48, 53, 61, 99,236,203,206, +252,206,157, 59,159, 42, 44, 44,252,215,205,228, 46,147,201, 22,208, 52,253,198,127,125,153,152,214,173, 91, 7,202,100,178,185, + 44,203,182,214,106,181,174, 50,153, 44,149, 16, 18,150,159,159,191,252,230,205,155,215,248,230,243,229,225, 69,206,228, 94, 30, +230,197,158, 29, 29, 29,189,110,221,186, 37, 45,235, 96,149,173, 47,107, 50,170,140,199,171,135,102,205,154, 93,223,179,103, 79, + 96,221,186,117, 41,115,192, 53, 69, 81,165, 47,115, 55,150,217,109,185,118,237,154,233,227,143, 63,190, 26, 25, 25,217,185, 50, +206,198,141, 27,159, 58,115,230,204,107,101, 29, 42,179,144, 42,255,153, 97, 24, 20, 21, 21, 97,193,130, 5,167, 31, 62,124, 88, +225, 82, 57,222,222,222,107,230,205,155, 55,165, 79,159, 62, 20, 69, 81,127,137,185, 42, 31,135,101, 48, 24,112,240,224, 65,118, +219,182,109,235,239,223,191, 95,105, 12, 86,171, 86,173, 18,110,222,188,233, 97,158, 50,161,252,171,252,136, 90, 0,104,219,182, +109,242,245,235,215, 85,255, 36,231,255,141,192, 42,169, 80,200,172,238,245, 6, 19, 80,131, 40,194,250,130, 16, 49,203, 33,154, + 0,167,196, 82,253,198, 5,191,169, 53,229,142,247,125,209, 51,242,242,156, 60,231,203,224, 36,132, 80,150, 44, 61,195,231,231, +127,135,179,113,227,198, 15, 31, 62,124,232, 89, 5, 79,169,192,226,243,243,223,199,233,228,228,244,191,246,238, 30, 53, 66, 32, + 12,227,184, 12, 46,196, 33,245,116,194, 6,182,181, 53,123,128, 64, 72,145,206, 91,228, 60,185, 67,142,144, 34, 23,176,178, 13, + 4, 76, 10,133, 33,136, 77,136, 99,161,147, 20, 49,224, 74, 22,242,225, 46,113,253,255,192,246, 65,223,198, 7, 81,223, 99,165, +212,157, 16, 98,185,109,185,115,191, 92, 91,107, 31,181,214,103, 90,235,215,109,153,190,239,175, 60,207,187,182,214,158,126,103, +217,179, 16, 34, 54,198, 92,245,151, 61,247, 51,199,250,138,112,120,158, 65, 16, 60,196,113,188,146, 82,110,188, 87, 56,188,230, + 79,105,154, 58, 81, 20, 61, 37, 73,114,178,203,204, 67,243,163, 93,132,111, 31, 19,187,233, 14, 96, 54,254,178,215, 15,211, 84, + 85, 85,169,148,122, 49,198, 44,234,186, 94, 52, 77,179,113,131,147, 82, 62, 51,165,233,234,158,108,174,199,204,236,138,210,249, + 88,121,187,250, 15, 86, 89,150,151, 97, 24,222,186,174,123, 52, 44, 63, 95,149,161,182,109, 77, 81, 20, 23,251,206,156, 85,193, + 2,128,185,200,178,108,205, 20,112,136,242, 60,191,119, 28,103,249,223, 51,167, 78, 48, 2, 0, 0, 0, 10, 22, 0, 0, 0, 5, + 11, 0, 0,128,130, 5, 0, 0,128, 95,123, 7, 33,229,185,104,177,201,171, 49, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index 4062ea1851d..100b26b198b 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -213,7 +213,7 @@ typedef enum { ICON_OBJECT_DATA, ICON_MESH_DATA, ICON_CURVE_DATA, - ICON_MBALL_DATA, + ICON_META_DATA, ICON_LATTICE_DATA, ICON_LAMP_DATA, ICON_MATERIAL_DATA, @@ -239,11 +239,11 @@ typedef enum { ICON_IMAGE_DATA, ICON_FILE, ICON_FCURVE, - ICON_FONT, + ICON_FONT_DATA, ICON_RENDER_RESULT, - ICON_BLANK080A, - ICON_BLANK080B, - ICON_BLANK080C, + ICON_SURFACE_DATA, + ICON_EMPTY_DATA, + ICON_SETTINGS, ICON_BLANK080D, ICON_BLANK080E, ICON_BLANK080F, @@ -319,7 +319,7 @@ typedef enum { ICON_BLANK127b, /* OUTLINER */ - ICON_BLANK128, + ICON_OUTLINER_DATA_EMPTY, ICON_OUTLINER_DATA_MESH, ICON_OUTLINER_DATA_CURVE, ICON_OUTLINER_DATA_LATTICE, @@ -355,7 +355,7 @@ typedef enum { ICON_MOD_SOFT, ICON_MOD_SUBSURF, ICON_HOOK, - ICON_MOD_PARTICLEINSTANCE, + ICON_MOD_PHYSICS, ICON_MOD_PARTICLES, ICON_MOD_BOOLEAN, ICON_MOD_EDGESPLIT, diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 239eb042a64..8f3053f5312 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -90,7 +90,7 @@ int UI_GetIconRNA(PointerRNA *ptr) else if(rnatype == &RNA_Curve) return ICON_CURVE_DATA; else if(rnatype == &RNA_MetaBall) - return ICON_MBALL_DATA; + return ICON_META_DATA; else if(rnatype == &RNA_MetaElement) return ICON_OUTLINER_DATA_META; else if(rnatype == &RNA_Lattice) @@ -142,7 +142,7 @@ int UI_GetIconRNA(PointerRNA *ptr) else if(rnatype == &RNA_Brush) return ICON_BRUSH_DATA; else if(rnatype == &RNA_VectorFont) - return ICON_FONT; + return ICON_FONT_DATA; else if(rnatype == &RNA_Library) return ICON_LIBRARY_DATA_DIRECT; else if(rnatype == &RNA_Action) @@ -204,7 +204,7 @@ int UI_GetIconRNA(PointerRNA *ptr) else if(rnatype == &RNA_BooleanModifier) return ICON_MOD_BOOLEAN; else if(rnatype == &RNA_ParticleInstanceModifier) - return ICON_MOD_PARTICLEINSTANCE; + return ICON_MOD_PARTICLES; else if(rnatype == &RNA_ParticleSystemModifier) return ICON_MOD_PARTICLES; else if(rnatype == &RNA_EdgeSplitModifier) @@ -233,6 +233,8 @@ int UI_GetIconRNA(PointerRNA *ptr) return ICON_MOD_CLOTH; else if(rnatype == &RNA_ExplodeModifier) return ICON_MOD_EXPLODE; + else if(rnatype == &RNA_CollisionModifier) + return ICON_MOD_PHYSICS; else return ICON_DOT; } diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 234a1cc0ea4..a7e2ce34443 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -405,7 +405,7 @@ static int object_add_mesh_exec(bContext *C, wmOperator *op) void OBJECT_OT_mesh_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Mesh"; + ot->name= "Mesh"; ot->description = "Add a mesh object to the scene."; ot->idname= "OBJECT_OT_mesh_add"; @@ -479,7 +479,7 @@ static int object_add_curve_invoke(bContext *C, wmOperator *op, wmEvent *event) void OBJECT_OT_curve_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Curve"; + ot->name= "Curve"; ot->description = "Add a curve object to the scene."; ot->idname= "OBJECT_OT_curve_add"; @@ -537,7 +537,7 @@ static int object_add_surface_exec(bContext *C, wmOperator *op) void OBJECT_OT_surface_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Surface"; + ot->name= "Surface"; ot->description = "Add a surface object to the scene."; ot->idname= "OBJECT_OT_surface_add"; @@ -574,7 +574,7 @@ static int object_add_text_exec(bContext *C, wmOperator *op) void OBJECT_OT_text_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Text"; + ot->name= "Text"; ot->description = "Add a text object to the scene"; ot->idname= "OBJECT_OT_text_add"; @@ -619,7 +619,7 @@ static int object_armature_add_exec(bContext *C, wmOperator *op) void OBJECT_OT_armature_add(wmOperatorType *ot) { /* identifiers */ - ot->name= "Add Armature"; + ot->name= "Armature"; ot->description = "Add an armature object to the scene."; ot->idname= "OBJECT_OT_armature_add"; @@ -637,7 +637,7 @@ static int object_primitive_add_invoke(bContext *C, wmOperator *op, wmEvent *eve uiPopupMenu *pup= uiPupMenuBegin("Add Object", 0); uiLayout *layout= uiPupMenuLayout(pup); - uiItemMenuEnumO(layout, NULL, /*ICON_OUTLINER_OB_MESH*/0, "OBJECT_OT_mesh_add", "type"); + uiItemMenuEnumO(layout, NULL, ICON_OUTLINER_OB_MESH, "OBJECT_OT_mesh_add", "type"); uiItemMenuEnumO(layout, NULL, ICON_OUTLINER_OB_CURVE, "OBJECT_OT_curve_add", "type"); uiItemMenuEnumO(layout, NULL, ICON_OUTLINER_OB_SURFACE, "OBJECT_OT_surface_add", "type"); uiItemO(layout, NULL, ICON_OUTLINER_OB_FONT, "OBJECT_OT_text_add"); diff --git a/source/blender/editors/space_buttons/buttons_header.c b/source/blender/editors/space_buttons/buttons_header.c index 50fb24c8ac4..ca8787f0c48 100644 --- a/source/blender/editors/space_buttons/buttons_header.c +++ b/source/blender/editors/space_buttons/buttons_header.c @@ -156,16 +156,16 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) if(ob) { switch(ob->type) { - case OB_EMPTY: dataicon= ICON_OUTLINER_OB_EMPTY; break; - case OB_MESH: dataicon= ICON_OUTLINER_OB_MESH; break; - case OB_CURVE: dataicon= ICON_OUTLINER_OB_CURVE; break; - case OB_SURF: dataicon= ICON_OUTLINER_OB_SURFACE; break; - case OB_FONT: dataicon= ICON_OUTLINER_OB_FONT; break; - case OB_MBALL: dataicon= ICON_OUTLINER_OB_META; break; - case OB_LAMP: dataicon= ICON_OUTLINER_OB_LAMP; break; - case OB_CAMERA: dataicon= ICON_OUTLINER_OB_CAMERA; break; - case OB_LATTICE: dataicon= ICON_OUTLINER_OB_LATTICE; break; - case OB_ARMATURE: dataicon= ICON_OUTLINER_OB_ARMATURE; break; + case OB_EMPTY: dataicon= ICON_EMPTY_DATA; break; + case OB_MESH: dataicon= ICON_MESH_DATA; break; + case OB_CURVE: dataicon= ICON_CURVE_DATA; break; + case OB_SURF: dataicon= ICON_SURFACE_DATA; break; + case OB_FONT: dataicon= ICON_FONT_DATA; break; + case OB_MBALL: dataicon= ICON_META_DATA; break; + case OB_LAMP: dataicon= ICON_LAMP_DATA; break; + case OB_CAMERA: dataicon= ICON_CAMERA_DATA; break; + case OB_LATTICE: dataicon= ICON_LATTICE_DATA; break; + case OB_ARMATURE: dataicon= ICON_ARMATURE_DATA; break; default: break; } } diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c index 3cbf060905a..2013c3d72a9 100644 --- a/source/blender/editors/space_buttons/space_buttons.c +++ b/source/blender/editors/space_buttons/space_buttons.c @@ -237,6 +237,7 @@ static void buttons_area_listener(ARegion *ar, wmNotifier *wmn) case NC_SCENE: switch(wmn->data) { case ND_FRAME: + case ND_OB_ACTIVE: ED_region_tag_redraw(ar); break; } diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index 9c8586f4541..fc25f4c0bf9 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -3564,7 +3564,7 @@ static void tselem_draw_icon(float x, float y, TreeStoreElem *tselem, TreeElemen case eModifierType_Boolean: UI_icon_draw(x, y, ICON_MOD_BOOLEAN); break; case eModifierType_ParticleSystem: - UI_icon_draw(x, y, ICON_MOD_PARTICLEINSTANCE); break; + UI_icon_draw(x, y, ICON_MOD_PARTICLES); break; case eModifierType_ParticleInstance: UI_icon_draw(x, y, ICON_MOD_PARTICLES); break; case eModifierType_EdgeSplit: @@ -3593,6 +3593,8 @@ static void tselem_draw_icon(float x, float y, TreeStoreElem *tselem, TreeElemen UI_icon_draw(x, y, ICON_MOD_CLOTH); break; case eModifierType_Explode: UI_icon_draw(x, y, ICON_MOD_EXPLODE); break; + case eModifierType_Collision: + UI_icon_draw(x, y, ICON_MOD_PHYSICS); break; default: UI_icon_draw(x, y, ICON_DOT); break; } From 22c2827d2de6cccf272cadeaa7632fc27f229a32 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 4 May 2009 10:04:46 +0000 Subject: [PATCH 38/60] Cycles F-Curve Modifier: 'Mirrored' Option Using this cycling mode option, the keyframe range will be repeated in reverse order every second repeat. Thanks for the idea mfoxdogg :) --- source/blender/blenkernel/intern/fcurve.c | 15 +++++++++++++-- .../blender/editors/space_graph/graph_buttons.c | 2 +- source/blender/makesdna/DNA_anim_types.h | 1 + source/blender/makesrna/intern/rna_fcurve.c | 7 ++++--- 4 files changed, 19 insertions(+), 6 deletions(-) diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index 3bc80d64329..0585717e13e 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -1736,6 +1736,7 @@ static float fcm_cycles_time (FCurve *fcu, FModifier *fcm, float cvalue, float e /* find relative place within a cycle */ { float cycdx=0, cycdy=0, ofs=0; + float cycle= 0; /* ofs is start frame of cycle */ ofs= prevkey[0]; @@ -1748,13 +1749,16 @@ static float fcm_cycles_time (FCurve *fcu, FModifier *fcm, float cvalue, float e if (cycdx == 0) return evaltime; + /* calculate the 'number' of the cycle */ + cycle= ((float)side * (evaltime - ofs) / cycdx); + /* check that cyclic is still enabled for the specified time */ if (cycles == 0) { /* catch this case so that we don't exit when we have cycles=0 * as this indicates infinite cycles... */ } - else if ( ((float)side * (evaltime - ofs) / cycdx) > (cycles+1) ) { + else if (cycle > (cycles+1)) { /* we are too far away from range to evaluate * TODO: but we should still hold last value... */ @@ -1768,7 +1772,14 @@ static float fcm_cycles_time (FCurve *fcu, FModifier *fcm, float cvalue, float e } /* calculate where in the cycle we are (overwrite evaltime to reflect this) */ - evaltime= (float)(fmod(evaltime-ofs, cycdx) + ofs); + if ((mode == FCM_EXTRAPOLATE_MIRROR) && ((int)(cycle) % 2)) { + /* when 'mirror' option is used and cycle number is odd, this cycle is played in reverse */ + evaltime= (float)(lastkey[0] - fmod(evaltime-ofs, cycdx)); + } + else { + /* the cycle is played normally... */ + evaltime= (float)(fmod(evaltime-ofs, cycdx) + ofs); + } if (evaltime < ofs) evaltime += cycdx; } diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c index ee10e4ef3b3..16628f31b63 100644 --- a/source/blender/editors/space_graph/graph_buttons.c +++ b/source/blender/editors/space_graph/graph_buttons.c @@ -545,7 +545,7 @@ static void draw_modifier__generator(uiBlock *block, FCurve *fcu, FModifier *fcm static void draw_modifier__cycles(uiBlock *block, FCurve *fcu, FModifier *fcm, int *yco, short *height, short width, short active, int rb_col) { FMod_Cycles *data= (FMod_Cycles *)fcm->data; - char cyc_mode[]="Cycling Mode%t|No Cycles%x0|Repeat Motion%x1|Repeat with Offset%x2"; + char cyc_mode[]="Cycling Mode%t|No Cycles%x0|Repeat Motion%x1|Repeat with Offset%x2|Repeat Mirrored%x3"; int cy= (*yco - 30), cy1= (*yco - 50), cy2= (*yco - 70); /* set the height */ diff --git a/source/blender/makesdna/DNA_anim_types.h b/source/blender/makesdna/DNA_anim_types.h index 755569fe0cb..f30cd63242a 100644 --- a/source/blender/makesdna/DNA_anim_types.h +++ b/source/blender/makesdna/DNA_anim_types.h @@ -144,6 +144,7 @@ enum { FCM_EXTRAPOLATE_NONE = 0, /* don't do anything */ FCM_EXTRAPOLATE_CYCLIC, /* repeat keyframe range as-is */ FCM_EXTRAPOLATE_CYCLIC_OFFSET, /* repeat keyframe range, but with offset based on gradient between values */ + FCM_EXTRAPOLATE_MIRROR, /* alternate between forward and reverse playback of keyframe range */ } eFMod_Cycling_Modes; diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index 5b8e05f840b..6c58c521535 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -325,9 +325,10 @@ static void rna_def_fmodifier_cycles(BlenderRNA *brna) PropertyRNA *prop; static EnumPropertyItem prop_type_items[] = { - {0, "NONE", "No Cycles", ""}, - {1, "REPEAT", "Repeat Motion", ""}, - {1, "REPEAT_OFFSET", "Repeat with Offset", ""}, + {FCM_EXTRAPOLATE_NONE, "NONE", "No Cycles", "Don't do anything."}, + {FCM_EXTRAPOLATE_CYCLIC, "REPEAT", "Repeat Motion", "Repeat keyframe range as-is."}, + {FCM_EXTRAPOLATE_CYCLIC_OFFSET, "REPEAT_OFFSET", "Repeat with Offset", "Repeat keyframe range, but with offset based on gradient between values"}, + {FCM_EXTRAPOLATE_MIRROR, "MIRROR", "Repeat Mirrored", "Alternate between forward and reverse playback of keyframe range"}, {0, NULL, NULL, NULL}}; srna= RNA_def_struct(brna, "FModifierCycles", "FModifier"); From e4e70bfb913a0d50abfc5b6320290c90543372af Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Mon, 4 May 2009 10:24:53 +0000 Subject: [PATCH 39/60] 2.5 - Bugfixes * Loading files saved with 2.5 works again now without crashing. Was crashing when trying to load Grease Pencil data (even though there was none) * Fixed some msvc compiler warnings in own code --- source/blender/blenkernel/BKE_fcurve.h | 2 +- source/blender/blenkernel/intern/fcurve.c | 9 +++++---- source/blender/blenloader/intern/readfile.c | 4 ++++ 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/source/blender/blenkernel/BKE_fcurve.h b/source/blender/blenkernel/BKE_fcurve.h index 3d33b615809..9b8a2990fe5 100644 --- a/source/blender/blenkernel/BKE_fcurve.h +++ b/source/blender/blenkernel/BKE_fcurve.h @@ -127,7 +127,7 @@ void copy_fcurves(ListBase *dst, ListBase *src); struct FCurve *list_find_fcurve(ListBase *list, const char rna_path[], const int array_index); /* test if there is a keyframe at cfra */ -int on_keyframe_fcurve(struct FCurve *fcu, float cfra); +short on_keyframe_fcurve(struct FCurve *fcu, float cfra); /* get the time extents for F-Curve */ void calc_fcurve_range(struct FCurve *fcu, float *min, float *max); diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index 0585717e13e..3d780ee97d5 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -175,15 +175,16 @@ FCurve *list_find_fcurve (ListBase *list, const char rna_path[], const int array return NULL; } -int on_keyframe_fcurve(FCurve *fcu, float cfra) +short on_keyframe_fcurve(FCurve *fcu, float cfra) { BezTriple *bezt; - int i; + unsigned i; bezt= fcu->bezt; - for (i=0; itotvert; i++, bezt++) - if(IS_EQ(bezt->vec[1][0], cfra)) + for (i=0; itotvert; i++, bezt++) { + if (IS_EQ(bezt->vec[1][0], cfra)) return 1; + } return 0; } diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c index 450161854ec..fd9da2059e1 100644 --- a/source/blender/blenloader/intern/readfile.c +++ b/source/blender/blenloader/intern/readfile.c @@ -4090,6 +4090,10 @@ static void direct_link_gpencil(FileData *fd, bGPdata *gpd) bGPDframe *gpf; bGPDstroke *gps; + /* we must firstly have some grease-pencil data to link! */ + if (gpd == NULL) + return; + /* relink layers */ link_list(fd, &gpd->layers); From 56fcb7d20f63416a4f13b4dbc8ebdea6ad0f8e3c Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 4 May 2009 15:19:11 +0000 Subject: [PATCH 40/60] 2.5 RNA: *Added missing notifiers for resolution and aspect ratio, so camera border updates while changing the values in camera view. --- source/blender/makesrna/intern/rna_scene.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 330cc5f4ca2..2f732138643 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -262,13 +262,13 @@ void rna_def_scene_render_data(BlenderRNA *brna) RNA_def_property_int_sdna(prop, NULL, "xsch"); RNA_def_property_range(prop, 4, 10000); RNA_def_property_ui_text(prop, "Resolution X", "Number of horizontal pixels in the rendered image."); - RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); + RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS|NC_OBJECT, NULL); prop= RNA_def_property(srna, "resolution_y", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "ysch"); RNA_def_property_range(prop, 4, 10000); RNA_def_property_ui_text(prop, "Resolution Y", "Number of vertical pixels in the rendered image."); - RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); + RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS|NC_OBJECT, NULL); prop= RNA_def_property(srna, "resolution_percentage", PROP_INT, PROP_PERCENTAGE); RNA_def_property_int_sdna(prop, NULL, "size"); @@ -291,13 +291,13 @@ void rna_def_scene_render_data(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "xasp"); RNA_def_property_range(prop, 1.0f, 200.0f); RNA_def_property_ui_text(prop, "Pixel Aspect X", "Horizontal aspect ratio - for anamorphic or non-square pixel output"); - RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); + RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS|NC_OBJECT, NULL); prop= RNA_def_property(srna, "pixel_aspect_y", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "yasp"); RNA_def_property_range(prop, 1.0f, 200.0f); RNA_def_property_ui_text(prop, "Pixel Aspect Y", "Vertical aspect ratio - for anamorphic or non-square pixel output"); - RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS, NULL); + RNA_def_property_update(prop, NC_SCENE|ND_RENDER_OPTIONS|NC_OBJECT, NULL); prop= RNA_def_property(srna, "quality", PROP_INT, PROP_NONE); RNA_def_property_int_sdna(prop, NULL, "quality"); From eaf717c500784de1492b07ef7fe90bb8815e591f Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 4 May 2009 15:53:55 +0000 Subject: [PATCH 41/60] 2.5 Data Buttons: * Added camera buttons. * Added poll to check on active object type. ToDo: * Lens Unit "lens" and "angle" don't update each other. Needs RNA fix. * Buttons only work for default camera now, needs better context. --- release/ui/buttons_data.py | 81 +++++++++++++++++++++++++++++++++++++- 1 file changed, 80 insertions(+), 1 deletion(-) diff --git a/release/ui/buttons_data.py b/release/ui/buttons_data.py index b141b3fb8c3..011741653fc 100644 --- a/release/ui/buttons_data.py +++ b/release/ui/buttons_data.py @@ -9,6 +9,10 @@ class DataButtonsPanel(bpy.types.Panel): class DATA_PT_modifiers(DataButtonsPanel): __idname__ = "DATA_PT_modifiers" __label__ = "Modifiers" + + def poll(self, context): + ob = context.active_object + return (ob and ob.type == "MESH") def draw(self, context): ob = context.active_object @@ -52,5 +56,80 @@ class DATA_PT_modifiers(DataButtonsPanel): layout.itemR(md, "b_bone_rest") layout.itemR(md, "multi_modifier") -bpy.types.register(DATA_PT_modifiers) +class DATA_PT_cameralens(DataButtonsPanel): + __idname__ = "DATA_PT_camera" + __label__ = "Lens" + + def poll(self, context): + ob = context.active_object + return (ob and ob.type == "CAMERA") + + def draw(self, context): + cam = context.main.cameras[0] + layout = self.layout + + if not cam: + return + + layout.row() + layout.itemR(cam, "type", expand=True) + + layout.row() + if cam.type == 'PERSP': + layout.itemR(cam, "lens_unit") + if cam.lens_unit == 'MILLIMETERS': + layout.itemR(cam, "lens", text="Angle") + if cam.lens_unit == 'DEGREES': + layout.itemR(cam, "angle") + if cam.type == 'ORTHO': + layout.itemR(cam, "ortho_scale") + + layout.column_flow() + layout.itemL(text="Shift:") + layout.itemR(cam, "shift_x", text="X") + layout.itemR(cam, "shift_y", text="Y") + layout.itemL(text="Clipping:") + layout.itemR(cam, "clip_start", text="Start") + layout.itemR(cam, "clip_end", text="End") + + layout.row() + layout.itemR(cam, "dof_object") + layout.itemR(cam, "dof_distance") + +class DATA_PT_cameradisplay(DataButtonsPanel): + __idname__ = "DATA_PT_cameradisplay" + __label__ = "Display" + + def poll(self, context): + ob = context.active_object + return (ob and ob.type == "CAMERA") + + def draw(self, context): + cam = context.main.cameras[0] + layout = self.layout + + if not cam: + return + + layout.split(number=2) + + sub = layout.sub(0) + sub.column_flow() + sub.itemR(cam, "show_limits", text="Limits") + sub.itemR(cam, "show_mist", text="Mist") + sub.itemR(cam, "show_title_safe", text="Title Safe") + sub.itemR(cam, "show_name", text="Name") + + sub = layout.sub(1) + subsub = sub.box() + subsub.row() + subsub.itemR(cam, "show_passepartout", text="Passepartout") + subsub.row() + subsub.itemR(cam, "passepartout_alpha", text="Alpha") + sub.row() + sub.itemR(cam, "draw_size", text="Size") + +bpy.types.register(DATA_PT_modifiers) +bpy.types.register(DATA_PT_cameralens) +bpy.types.register(DATA_PT_cameradisplay) From b753d6fd2da339b0b80888036a1e3787501ebf77 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Mon, 4 May 2009 18:45:58 +0000 Subject: [PATCH 42/60] 2.5 Buttons: * Tweaked the scene buttons to be more consistent with the Layout Guidelines. http://wiki.blender.org/index.php/BlenderDev/Blender2.5/UIlayoutGuide * Modifier panel is now also visible on non mesh objects, like curves, text etc. --- release/ui/buttons_data.py | 2 +- release/ui/buttons_scene.py | 136 +++++++++++++++++++++--------------- 2 files changed, 79 insertions(+), 59 deletions(-) diff --git a/release/ui/buttons_data.py b/release/ui/buttons_data.py index 011741653fc..6eb11a76823 100644 --- a/release/ui/buttons_data.py +++ b/release/ui/buttons_data.py @@ -12,7 +12,7 @@ class DATA_PT_modifiers(DataButtonsPanel): def poll(self, context): ob = context.active_object - return (ob and ob.type == "MESH") + return (ob and ob.type in ("MESH", "CURVE", "SURFACE", "TEXT", "LATTICE")) def draw(self, context): ob = context.active_object diff --git a/release/ui/buttons_scene.py b/release/ui/buttons_scene.py index b03f288da4c..cae02666abe 100644 --- a/release/ui/buttons_scene.py +++ b/release/ui/buttons_scene.py @@ -14,22 +14,25 @@ class RENDER_PT_shading(RenderButtonsPanel): layout = self.layout rd = scene.render_data - - layout.column_flow() - layout.itemR(rd, "render_shadows", text="Shadows") - layout.itemR(rd, "render_sss", text="SSS") - layout.itemR(rd, "render_envmaps", text="EnvMap") - layout.itemR(rd, "render_radiosity", text="Radio") - layout.row() - layout.itemR(rd, "render_raytracing", text="Ray Tracing") - layout.itemR(rd, "octree_resolution") - - layout.row() - layout.itemR(rd, "alpha_mode") - layout.row() - layout.itemR(rd, "free_image_textures") - + layout.split(number=2) + + sub = layout.sub(0) + sub.column_flow() + sub.itemR(rd, "render_shadows", text="Shadows") + sub.itemR(rd, "render_sss", text="SSS") + sub.itemR(rd, "render_envmaps", text="EnvMap") + sub.itemR(rd, "render_radiosity", text="Radio") + + sub = layout.sub(1) + subsub = sub.box() + subsub.column_flow() + subsub.itemR(rd, "render_raytracing", text="Ray Tracing") + if (rd.render_raytracing): + subsub.itemR(rd, "octree_resolution", text="Octree") + sub.row() + sub.itemR(rd, "alpha_mode") + class RENDER_PT_image(RenderButtonsPanel): __label__ = "Image" @@ -44,22 +47,17 @@ class RENDER_PT_image(RenderButtonsPanel): layout.itemR(rd, "resolution_y", text="SizeY") layout.itemR(rd, "pixel_aspect_x", text="AspX") layout.itemR(rd, "pixel_aspect_y", text="AspY") - - layout.row() - layout.itemR(rd, "quality") - layout.itemR(rd, "color_mode") - - layout.row() - layout.itemR(rd, "image_type") - - layout.row() - layout.itemR(rd, "placeholders") - layout.itemR(rd, "no_overwrite") - layout.itemR(rd, "file_extensions") - - layout.row() - layout.itemR(rd, "crop_to_border") + sub = layout.box() + sub.row() + sub.itemR(rd, "image_type") + sub.row() + sub.itemR(rd, "file_extensions") + sub.itemR(rd, "color_mode") + if rd.image_type in ("AVIJPEG", "JPEG"): + sub.row() + sub.itemR(rd, "quality") + class RENDER_PT_antialiasing(RenderButtonsPanel): __label__ = "Anti-Aliasing" @@ -71,16 +69,18 @@ class RENDER_PT_antialiasing(RenderButtonsPanel): layout.row() layout.itemR(rd, "antialiasing", text="Enable") - layout.itemR(rd, "filter_size") - layout.row() - layout.itemR(rd, "pixel_filter") - layout.itemR(rd, "antialiasing_samples", text="Samples") - - - layout.row() - layout.itemR(rd, "save_buffers") - if (rd.save_buffers): - layout.itemR(rd, "full_sample") + if (rd.antialiasing): + layout.row() + layout.itemL(text="Samples:") + layout.itemR(rd, "antialiasing_samples", expand=True) + layout.row() + layout.itemR(rd, "pixel_filter") + layout.itemR(rd, "filter_size") + + layout.row() + layout.itemR(rd, "save_buffers") + if (rd.save_buffers): + layout.itemR(rd, "full_sample") class RENDER_PT_render(RenderButtonsPanel): __label__ = "Render" @@ -97,11 +97,11 @@ class RENDER_PT_render(RenderButtonsPanel): layout.row() layout.itemR(scene, "start_frame", text="Start") - layout.itemR(scene, "end_frame", text="End") + layout.itemR(rd, "fps") layout.itemR(scene, "current_frame", text="Frame") layout.row() - layout.itemR(rd, "fps") + layout.itemR(scene, "end_frame", text="End") layout.itemR(rd, "fps_base",text="/") layout.itemR(scene, "frame_step", text="Step") @@ -117,23 +117,43 @@ class RENDER_PT_render(RenderButtonsPanel): layout.itemR(rd, "dither_intensity") layout.itemR(rd, "parts_x") layout.itemR(rd, "parts_y") - - layout.row() - layout.itemR(rd, "threads_mode") - if (rd.threads_mode == 'THREADS_FIXED'): - layout.itemR(rd, "threads") - layout.row() - layout.itemR(rd, "fields", text="Fields") - layout.itemR(rd, "field_order", text="Order") - layout.itemR(rd, "fields_still", text="Still") - - layout.row() - layout.itemL(text="Extra:") - layout.row() - layout.itemR(rd, "border", text="Border Render") - layout.itemR(rd, "panorama") - layout.itemR(rd, "backbuf") + layout.split(number=2) + + sub = layout.sub(0) + subsub = sub.box() + subsub.column_flow() + subsub.itemL(text="Threads Mode:") + subsub.itemR(rd, "threads_mode", expand=True) + if rd.threads_mode == 'THREADS_FIXED': + subsub.itemR(rd, "threads") + + subsub = sub.box() + subsub.column_flow() + subsub.itemL(text="Distributed Rendering:") + subsub.itemR(rd, "placeholders") + subsub.itemR(rd, "no_overwrite") + subsub = sub.box() + subsub.column_flow() + subsub.itemR(rd, "fields", text="Fields") + if (rd.fields): + subsub.itemR(rd, "fields_still", text="Still") + subsub.itemR(rd, "field_order", text="Order") + + sub = layout.sub(1) + subsub = sub.box() + subsub.column_flow() + subsub.itemL(text="Extra:") + subsub.itemR(rd, "panorama") + subsub.itemR(rd, "backbuf") + subsub.itemR(rd, "free_image_textures") + + subsub = sub.box() + subsub.column_flow() + subsub.itemL(text="Border:") + subsub.itemR(rd, "border", text="Border Render") + if (rd.border): + subsub.itemR(rd, "crop_to_border") bpy.types.register(RENDER_PT_render) bpy.types.register(RENDER_PT_antialiasing) From 08df158672184a5459d517cc8841a66a92a07bce Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 5 May 2009 02:24:58 +0000 Subject: [PATCH 43/60] * More icon updates, thanks to Jendryzch. That's all the modifiers now, I think! --- release/datafiles/blenderbuttons | Bin 143645 -> 146052 bytes .../editors/datafiles/blenderbuttons.c | 9056 +++++++++-------- source/blender/editors/include/UI_resources.h | 6 +- .../editors/interface/interface_utils.c | 4 + source/blender/editors/space_file/file_draw.c | 13 +- .../blender/editors/space_outliner/outliner.c | 4 + 6 files changed, 4588 insertions(+), 4495 deletions(-) diff --git a/release/datafiles/blenderbuttons b/release/datafiles/blenderbuttons index 8b6e6f24b2325484d34d7bd2771e6a9e0623e4b6..219dacd887064ffe61413ae716dd03c061f20a97 100644 GIT binary patch literal 146052 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%0Dl)AGcz;OhX}c2hU+ae@$oez4O^KZC4R~c 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%0DUvG&#V4hM9vZIY5xQ?I`; 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 JUXyHY{4Y#`5sd%< diff --git a/source/blender/editors/datafiles/blenderbuttons.c b/source/blender/editors/datafiles/blenderbuttons.c index 42d1454a7ca..e3fdee554f7 100644 --- a/source/blender/editors/datafiles/blenderbuttons.c +++ b/source/blender/editors/datafiles/blenderbuttons.c @@ -1,4495 +1,4571 @@ /* DataToC output of file */ -int datatoc_blenderbuttons_size= 143645; +int datatoc_blenderbuttons_size= 146052; 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, 0, 8, 6, 0, 0, 0, - 94,187, 18, 70, 0, 0, 0, 9,112, 72, 89,115, 0, 0, 13,215, 0, 0, 13,215, 1, 66, 40,155,120, 0, 0, 10, 77,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,119, 88,147,247, - 22, 62,223,247,101, 15, 86, 66,216,240,177,151,108,129, 0, 34, 35,172, 8,200, 16, 89,162, 16,146, 0, 97,132, 16, 18, 64,197, -133,136, 10, 86, 20, 21, 17,156, 72, 85,196,130,213, 10, 72,157,136,226,160, 40,184,103, 65,138,136, 90,139, 85, 92, 56,238, 31, -220,167,181,125,122,239,237,237,251,215,251,188,231,156,231,252,206,121,207, 15,128, 17, 18, 38,145,230,162,106, 0, 57, 82,133, - 60, 58,216, 31,143, 79, 72,196,201,189,128, 2, 21, 72,224, 4, 32, 16,230,203,194,103, 5,197, 0, 0,240, 3,121,120,126,116, -176, 63,252, 1,175,111, 0, 2, 0,112,213, 46, 36, 18,199,225,255,131,186, 80, 38, 87, 0, 32,145, 0,224, 34, 18,231, 11, 1, -144, 82, 0,200, 46, 84,200, 20, 0,200, 24, 0,176, 83,179,100, 10, 0,148, 0, 0,108,121,124, 66, 34, 0,170, 13, 0,236,244, - 73, 62, 5, 0,216,169,147,220, 23, 0,216,162, 28,169, 8, 0,141, 1, 0,153, 40, 71, 36, 2, 64,187, 0, 96, 85,129, 82, 44, - 2,192,194, 0,160,172, 64, 34, 46, 4,192,174, 1,128, 89,182, 50, 71, 2,128,189, 5, 0,118,142, 88,144, 15, 64, 96, 0,128, -153, 66, 44,204, 0, 32, 56, 2, 0, 67, 30, 19,205, 3, 32, 76, 3,160, 48,210,191,224,169, 95,112,133,184, 72, 1, 0,192,203, -149,205,151, 75,210, 51, 20,184,149,208, 26,119,242,240,224,226, 33,226,194,108,177, 66, 97, 23, 41, 16,102, 9,228, 34,156,151, -155, 35, 19, 72,231, 3, 76,206, 12, 0, 0, 26,249,209,193,254, 56, 63,144,231,230,228,225,230,102,231,108,239,244,197,162,254, -107,240,111, 34, 62, 33,241,223,254,188,140, 2, 4, 0, 16, 78,207,239,218, 95,229,229,214, 3,112,199, 1,176,117,191,107,169, - 91, 0,218, 86, 0,104,223,249, 93, 51,219, 9,160, 90, 10,208,122,249,139,121, 56,252, 64, 30,158,161, 80,200, 60, 29, 28, 10, - 11, 11,237, 37, 98,161,189, 48,227,139, 62,255, 51,225,111,224,139,126,246,252, 64, 30,254,219,122,240, 0,113,154, 64,153,173, -192,163,131,253,113, 97,110,118,174, 82,142,231,203, 4, 66, 49,110,247,231, 35,254,199,133,127,253,142, 41,209,226, 52,177, 92, - 44, 21,138,241, 88,137,184, 80, 34, 77,199,121,185, 82,145, 68, 33,201,149,226, 18,233,127, 50,241, 31,150,253, 9,147,119, 13, - 0,172,134, 79,192, 78,182, 7,181,203,108,192,126,238, 1, 2,139, 14, 88,210,118, 0, 64,126,243, 45,140, 26, 11,145, 0, 16, -103, 52, 50,121,247, 0, 0,147,191,249,143, 64, 43, 1, 0,205,151,164,227, 0, 0,188,232, 24, 92,168,148, 23, 76,198, 8, 0, - 0, 68,160,129, 42,176, 65, 7, 12,193, 20,172,192, 14,156,193, 29,188,192, 23, 2, 97, 6, 68, 64, 12, 36,192, 60, 16, 66, 6, -228,128, 28, 10,161, 24,150, 65, 25, 84,192, 58,216, 4,181,176, 3, 26,160, 17,154,225, 16,180,193, 49, 56, 13,231,224, 18, 92, -129,235,112, 23, 6, 96, 24,158,194, 24,188,134, 9, 4, 65,200, 8, 19, 97, 33, 58,136, 17, 98,142,216, 34,206, 8, 23,153,142, - 4, 34, 97, 72, 52,146,128,164, 32,233,136, 20, 81, 34,197,200,114,164, 2,169, 66,106,145, 93, 72, 35,242, 45,114, 20, 57,141, - 92, 64,250,144,219,200, 32, 50,138,252,138,188, 71, 49,148,129,178, 81, 3,212, 2,117, 64,185,168, 31, 26,138,198,160,115,209, -116, 52, 15, 93,128,150,162,107,209, 26,180, 30, 61,128,182,162,167,209, 75,232,117,116, 0,125,138,142, 99,128,209, 49, 14,102, -140,217, 97, 92,140,135, 69, 96,137, 88, 26, 38,199, 22, 99,229, 88, 53, 86,143, 53, 99, 29, 88, 55,118, 21, 27,192,158, 97,239, - 8, 36, 2,139,128, 19,236, 8, 94,132, 16,194,108,130,144,144, 71, 88, 76, 88, 67,168, 37,236, 35,180, 18,186, 8, 87, 9,131, -132, 49,194, 39, 34,147,168, 79,180, 37,122, 18,249,196,120, 98, 58,177,144, 88, 70,172, 38,238, 33, 30, 33,158, 37, 94, 39, 14, - 19, 95,147, 72, 36, 14,201,146,228, 78, 10, 33, 37,144, 50, 73, 11, 73,107, 72,219, 72, 45,164, 83,164, 62,210, 16,105,156, 76, - 38,235,144,109,201,222,228, 8,178,128,172, 32,151,145,183,144, 15,144, 79,146,251,201,195,228,183, 20, 58,197,136,226, 76, 9, -162, 36, 82,164,148, 18, 74, 53,101, 63,229, 4,165,159, 50, 66,153,160,170, 81,205,169,158,212, 8,170,136, 58,159, 90, 73,109, -160,118, 80, 47, 83,135,169, 19, 52,117,154, 37,205,155, 22, 67,203,164, 45,163,213,208,154,105,103,105,247,104, 47,233,116,186, - 9,221,131, 30, 69,151,208,151,210,107,232, 7,233,231,233,131,244,119, 12, 13,134, 13,131,199, 72, 98, 40, 25,107, 25,123, 25, -167, 24,183, 25, 47,153, 76,166, 5,211,151,153,200, 84, 48,215, 50, 27,153,103,152, 15,152,111, 85, 88, 42,246, 42,124, 21,145, -202, 18,149, 58,149, 86,149,126,149,231,170, 84, 85,115, 85, 63,213,121,170, 11, 84,171, 85, 15,171, 94, 86,125,166, 70, 85,179, - 80,227,169, 9,212, 22,171,213,169, 29, 85,187,169, 54,174,206, 82,119, 82,143, 80,207, 81, 95,163,190, 95,253,130,250, 99, 13, -178,134,133, 70,160,134, 72,163, 84, 99,183,198, 25,141, 33, 22,198, 50,101,241, 88, 66,214,114, 86, 3,235, 44,107,152, 77, 98, - 91,178,249,236, 76,118, 5,251, 27,118, 47,123, 76, 83, 67,115,170,102,172,102,145,102,157,230,113,205, 1, 14,198,177,224,240, - 57,217,156, 74,206, 33,206, 13,206,123, 45, 3, 45, 63, 45,177,214,106,173,102,173,126,173, 55,218,122,218,190,218, 98,237,114, -237, 22,237,235,218,239,117,112,157, 64,157, 44,157,245, 58,109, 58,247,117, 9,186, 54,186, 81,186,133,186,219,117,207,234, 62, -211, 99,235,121,233, 9,245,202,245, 14,233,221,209, 71,245,109,244,163,245, 23,234,239,214,239,209, 31, 55, 48, 52, 8, 54,144, - 25,108, 49, 56, 99,240,204,144, 99,232,107,152,105,184,209,240,132,225,168, 17,203,104,186,145,196,104,163,209, 73,163, 39,184, - 38,238,135,103,227, 53,120, 23, 62,102,172,111, 28, 98,172, 52,222,101,220,107, 60, 97, 98,105, 50,219,164,196,164,197,228,190, - 41,205,148,107,154,102,186,209,180,211,116,204,204,200, 44,220,172,216,172,201,236,142, 57,213,156,107,158, 97,190,217,188,219, -252,141,133,165, 69,156,197, 74,139, 54,139,199,150,218,150,124,203, 5,150, 77,150,247,172,152, 86, 62, 86,121, 86,245, 86,215, -172, 73,214, 92,235, 44,235,109,214, 87,108, 80, 27, 87,155, 12,155, 58,155,203,182,168,173,155,173,196,118,155,109,223, 20,226, - 20,143, 41,210, 41,245, 83,110,218, 49,236,252,236, 10,236,154,236, 6,237, 57,246, 97,246, 37,246,109,246,207, 29,204, 28, 18, - 29,214, 59,116, 59,124,114,116,117,204,118,108,112,188,235,164,225, 52,195,169,196,169,195,233, 87,103, 27,103,161,115,157,243, - 53, 23,166, 75,144,203, 18,151,118,151, 23, 83,109,167,138,167,110,159,122,203,149,229, 26,238,186,210,181,211,245,163,155,187, -155,220,173,217,109,212,221,204, 61,197,125,171,251, 77, 46,155, 27,201, 93,195, 61,239, 65,244,240,247, 88,226,113,204,227,157, -167,155,167,194,243,144,231, 47, 94,118, 94, 89, 94,251,189, 30, 79,179,156, 38,158,214, 48,109,200,219,196, 91,224,189,203,123, - 96, 58, 62, 61,101,250,206,233, 3, 62,198, 62, 2,159,122,159,135,190,166,190, 34,223, 61,190, 35,126,214,126,153,126, 7,252, -158,251, 59,250,203,253,143,248,191,225,121,242, 22,241, 78, 5, 96, 1,193, 1,229, 1,189,129, 26,129,179, 3,107, 3, 31, 4, -153, 4,165, 7, 53, 5,141, 5,187, 6, 47, 12, 62, 21, 66, 12, 9, 13, 89, 31,114,147,111,192, 23,242, 27,249, 99, 51,220,103, - 44,154,209, 21,202, 8,157, 21, 90, 27,250, 48,204, 38, 76, 30,214, 17,142,134,207, 8,223, 16,126,111,166,249, 76,233,204,182, - 8,136,224, 71,108,136,184, 31,105, 25,153, 23,249,125, 20, 41, 42, 50,170, 46,234, 81,180, 83,116,113,116,247, 44,214,172,228, - 89,251,103,189,142,241,143,169,140,185, 59,219,106,182,114,118,103,172,106,108, 82,108, 99,236,155,184,128,184,170,184,129,120, -135,248, 69,241,151, 18,116, 19, 36, 9,237,137,228,196,216,196, 61,137,227,115, 2,231,108,154, 51,156,228,154, 84,150,116, 99, -174,229,220,162,185, 23,230,233,206,203,158,119, 60, 89, 53, 89,144,124, 56,133,152, 18,151,178, 63,229,131, 32, 66, 80, 47, 24, - 79,229,167,110, 77, 29, 19,242,132,155,133, 79, 69,190,162,141,162, 81,177,183,184, 74, 60,146,230,157, 86,149,246, 56,221, 59, -125, 67,250,104,134, 79, 70,117,198, 51, 9, 79, 82, 43,121,145, 25,146,185, 35,243, 77, 86, 68,214,222,172,207,217,113,217, 45, - 57,148,156,148,156,163, 82, 13,105,150,180, 43,215, 48,183, 40,183, 79,102, 43, 43,147, 13,228,121,230,109,202, 27,147,135,202, -247,228, 35,249,115,243,219, 21,108,133, 76,209,163,180, 82,174, 80, 14, 22, 76, 47,168, 43,120, 91, 24, 91,120,184, 72,189, 72, - 90,212, 51,223,102,254,234,249, 35, 11,130, 22,124,189,144,176, 80,184,176,179,216,184,120, 89,241,224, 34,191, 69,187, 22, 35, -139, 83, 23,119, 46, 49, 93, 82,186,100,120,105,240,210,125,203,104,203,178,150,253, 80,226, 88, 82, 85,242,106,121,220,242,142, - 82,131,210,165,165, 67, 43,130, 87, 52,149,169,148,201,203,110,174,244, 90,185, 99, 21, 97,149,100, 85,239,106,151,213, 91, 86, -127, 42, 23,149, 95,172,112,172,168,174,248,176, 70,184,230,226, 87, 78, 95,213,124,245,121,109,218,218,222, 74,183,202,237,235, - 72,235,164,235,110,172,247, 89,191,175, 74,189,106, 65,213,208,134,240, 13,173, 27,241,141,229, 27, 95,109, 74,222,116,161,122, -106,245,142,205,180,205,202,205, 3, 53, 97, 53,237, 91,204,182,172,219,242,161, 54,163,246,122,157,127, 93,203, 86,253,173,171, -183,190,217, 38,218,214,191,221,119,123,243, 14,131, 29, 21, 59,222,239,148,236,188,181, 43,120, 87,107,189, 69,125,245,110,210, -238,130,221,143, 26, 98, 27,186,191,230,126,221,184, 71,119, 79,197,158,143,123,165,123, 7,246, 69,239,235,106,116,111,108,220, -175,191,191,178, 9,109, 82, 54,141, 30, 72, 58,112,229,155,128,111,218,155,237,154,119,181,112, 90, 42, 14,194, 65,229,193, 39, -223,166,124,123,227, 80,232,161,206,195,220,195,205,223,153,127,183,245, 8,235, 72,121, 43,210, 58,191,117,172, 45,163,109,160, - 61,161,189,239,232,140,163,157, 29, 94, 29, 71,190,183,255,126,239, 49,227, 99,117,199, 53,143, 87,158,160,157, 40, 61,241,249, -228,130,147,227,167,100,167,158,157, 78, 63, 61,212,153,220,121,247, 76,252,153,107, 93, 81, 93,189,103, 67,207,158, 63, 23,116, -238, 76,183, 95,247,201,243,222,231,143, 93,240,188,112,244, 34,247, 98,219, 37,183, 75,173, 61,174, 61, 71,126,112,253,225, 72, -175, 91,111,235,101,247,203,237, 87, 60,174,116,244, 77,235, 59,209,239,211,127,250,106,192,213,115,215,248,215, 46, 93,159,121, -189,239,198,236, 27,183,110, 38,221, 28,184, 37,186,245,248,118,246,237, 23,119, 10,238, 76,220, 93,122,143,120,175,252,190,218, -253,234, 7,250, 15,234,127,180,254,177,101,192,109,224,248, 96,192, 96,207,195, 89, 15,239, 14, 9,135,158,254,148,255,211,135, -225,210, 71,204, 71,213, 35, 70, 35,141,143,157, 31, 31, 27, 13, 26,189,242,100,206,147,225,167,178,167, 19,207,202,126, 86,255, -121,235,115,171,231,223,253,226,251, 75,207, 88,252,216,240, 11,249,139,207,191,174,121,169,243,114,239,171,169,175, 58,199, 35, -199, 31,188,206,121, 61,241,166,252,173,206,219,125,239,184,239,186,223,199,189, 31,153, 40,252, 64,254, 80,243,209,250, 99,199, -167,208, 79,247, 62,231,124,254,252, 47,247,132,243,251, 37,210,159, 51, 0, 0, 0, 4,103, 65, 77, 65, 0, 0,177,142,124,251, - 81,147, 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, 38, 58, 73, 68, 65, 84,120,218,236,157,119,120, 20,197, 31,198, -223,217,221,235,119,233,164, 7, 2,161, 67,168, 1,148, 38,189, 55, 65, 80, 64, 44,216, 64, 69,127, 88, 40, 22,164, 40,160,168, - 40, 42, 34, 88, 80, 16, 16, 84,154,116,164,119,130,148,208, 91, 32, 13, 72, 66,250,245,219,157,223, 31,201,157,151,227,146,187, -131, 80,157,207,243,220,115,101,119,223,155,221,157,153,125,247, 59,101, 9,165, 20,183, 11, 66, 72, 3, 74,233, 49,166,201, 52, -153, 38,211,100,154, 76,147,105, 50,205,255, 18,220, 77, 28,212, 10,119,100,132, 16, 90,242,106,119,175,107,222,198,125,167, 21, -168,217,174, 68,115,226,125,146,206,118,247,170,166,125,127, 43, 82,215,249, 24, 86,212,241,116, 74, 39,173,232,116,222, 46,205, -138, 46,151, 21,153, 71,221,156,247,137,247, 73, 58,219,221,107,154,174,249,167, 34,116,221,229,201, 91, 61,158,110,210, 73, 43, - 58,157,183, 75,179,162,175,151, 21,149, 71,203, 57,247, 21,118,109,186,151, 17,238,182,193, 0, 0, 74, 41,113,210, 39,247,170, -166,243,113,176,235, 87,100, 90, 43,144,173, 21,173,233,114, 60, 43,138,137,148, 82, 66, 8,217, 6,160, 93, 69,238,123, 69,156, -119,151,125,173, 16,221,219,105,174, 42, 50,223,223,110,205,138, 42, 75,174,154, 21,145,239,221,157,247,219,120,142, 42, 42,157, - 21, 82,150,110, 71,158,119,147,127,110, 89,215, 85,179, 34,202,146,171,102, 69,228,251, 59,161, 89, 17,101,201,157,102, 69,228, -251,178,206, 61,139, 96,221, 25, 35,224, 90,176,219,223,203, 70,232, 54, 71,177,218,221, 15,154, 21,124,142, 38,150,104, 86,228, -221, 76,251,138, 58, 71,174,121,167, 34,238,186,156, 53, 43, 42,111,186, 73,231, 45,159, 39,119,154,183,154,222, 50,210, 89,225, -251,126,171,249,254, 78,105, 86,240, 57,170,144,178,228,162,217,190,130,111, 2,218, 87,100, 89,114,214,172,168,178,228, 38,157, -183,124,158,220,105,222,106,122,203, 72,103,133,239,123, 5, 70, 68, 43, 92,247,129,139, 96,221, 78,115,117, 59,204,155,253, 46, -169,162, 47,100, 21,105,178,110, 87,164,173,162,162, 56,110,116,183, 85,160,220,214,138, 78,103, 73,250,200,237, 48,194,148,210, -137,132,144, 15,238,229, 2,205,202, 18, 43, 75,247, 90, 89,114,151,111,110,181, 44,221,174,155,103,103,205,138, 50, 66,110,246, -253,150,202,146,235,182, 21, 81,150, 60,104,146,219,177,255, 21, 93,158,238, 69,184,123, 37, 33,183,161,127, 15,189, 29, 81,177, -219,184,223, 21,153,206,246,247,195,190,223,142,116, 18, 66, 38,222,166,125,191, 95,142, 41, 43, 75,172, 44,221,115,101,201, 37, - 79,182,175,168,200, 80, 69,223, 72,185,106, 86,100, 63,164,138,204,163,183,123,223, 43,178, 44,221,142,115,127,191,224,115, 4, -235,118,221, 29,223, 15,154,183, 67,251, 54,237,251,182,219,113,119,112, 27,250,117, 85,120, 58, 41,165, 19, 81,129, 77,142,246, -125,174,200,180,222,206,102,194,219,145, 55,111,103,126,175,200,126, 30,183,105,223,239,151,243, 94,225,233,172,168,178,228,230, -156,223,114, 90,221, 29,191,138,110,194,174,200,188,121, 59, 53, 43, 66,251,118,164,243,118,157,251,251, 9,114, 59,167,105, 96, - 48, 24, 12, 6,131,193,248, 47, 82,102, 4,171,105,211,166,171, 85, 42, 85,141,178,150,235,245,250,140,195,135, 15,119, 96,135, -144,193, 96,120,188,147, 35,132,195,191, 93, 18,164,226,155, 89,118,119,199, 96, 48,254,131, 6, 75, 46,151,199,109,223,190,189, -150, 36, 73,176,217,108, 16, 69, 17,162, 40,194,102,179,193,108, 54,227,177,199, 30,243,185,121,177,113,227,198,219, 57,142,171, -234,203, 54,162, 40, 94, 62,114,228, 72,155,178,150,135,135,135,239, 6, 16, 71, 8,113,174,204, 97,255,238,252, 59,199, 57,186, -156,165,167,164,164, 52, 45, 79,147, 16, 18,231,172,231,170,229, 70,183, 92,205, 58,117,234, 28, 20, 4, 33,198,221,246,101,105, - 75,146,116,225,216,177, 99,173, 88, 54,189, 51, 52,110,220,120, 59,207,243, 62,231,207,195,135, 15,151,153, 63, 27, 52,104,240, - 15,199,113, 81,238,206,113, 25,249,137, 23, 69,241,244,145, 35, 71,218,148,101, 64, 34, 35, 35,119, 83, 74,227,188,204,151,118, - 82, 83, 82, 82,154,121, 42, 71,229,165,211,141,118,185,154,206,230, 42, 58, 58,122,122,104,104,232, 72,189, 94,111, 4, 64, 57, -142,163,245,234,213, 43,165, 47,138, 98,230,201,147, 39, 27,176,156,200, 96, 48, 30,104,131, 37, 73, 18,103, 50,153,112,230,204, - 25,184,171,231, 57,142, 19,125,253, 51, 74,105,173,205,139, 22,132,169, 67,195, 33, 90,204, 80, 86, 10,115,104,231,158, 56, 6, -209, 98,129,100,181,160, 82,179,135,237,105, 64,251,246,237,121, 15,178, 49,163, 71,143, 14,243,243,243,131,209,104,132,209,104, -132,201,100,130,201,100,130,217,108,134,217,108,134,197, 98,129,197, 98,129,213,106,133,201,100,194,177, 99,199, 68, 15, 23,132, -152,215, 94,123,205,161,105, 50,153, 96, 52, 26, 29, 90, 38,147,201,161,105, 54,155, 97, 50,153,112,252,248,241,114, 53, 5, 65, -136, 57,116,232, 80,152, 92, 46, 7,165, 20,146, 36,129, 82, 90,234,229,114,172,208,186,117,107, 11,203,162,119,148, 90,203, 63, -254, 40, 76, 25, 82, 9,146,213,138,144,198, 9,142,115,145,182,121, 29, 36,171, 21,146,213,138,216, 62, 3, 28,191,183,107,215, -206, 83,254,140,253,125,194,248, 64,185,159, 31,108, 70, 35,170,245,238,239, 88,144,244,237, 76, 80,171, 21,212,102, 65,195, 55, -222, 3, 0,100,101,101, 25,234,214,173,155,142,226,126, 10,101, 69,120, 98, 46, 94,188, 24,102, 79,131,171, 81,231, 56,174,212, -107,231,206,157, 24, 54,108,152,167,125,143,121,247,221,119,195,236,101,196, 57,175, 91,173, 86, 71,249,177,217,108,176, 90,173, - 48,155,205,248,231,159,127,188,138, 92, 69, 70, 70,126,220,182,109,219,225, 11, 23, 46,212,254,249,231,159,218,106,213,170, 65, - 46,151,131,231,121,240, 60, 15,142,227,192,243, 60,250,245,235, 71, 88, 22,100, 48, 24, 15,188,193,178, 88, 44, 23,187,118,237, - 74, 1,192,108, 54, 71, 43, 20, 10,185,139, 1,139,106,221,186,245,105,215,237, 60, 53, 29,170, 67,195,241, 99,181, 96, 0,192, -160,243,217,142,139,194,178, 71,154, 56,214, 25,114, 41,175,120, 93,181, 26, 28,199, 17, 15, 21, 56,116, 58, 29,186,118,237, 10, -133, 66,129,132,132, 4,200,229,114,200,100,178, 50, 95,222,160,213,106, 49,105,210, 36,187, 57,130, 86,165,196,203,109, 31,134, -138, 80,252,120,228, 20, 76,162, 4, 65, 16, 32, 8, 2,100, 50,217, 13, 17, 41,119,200,229,114, 28, 59,118, 12, 60,207, 67, 16, -132, 82,239, 60,207, 99,213,170, 85, 24, 56,112, 32,120,158,135, 70,163, 1,254, 67,157, 1,239, 21,148, 33,149,240,123,187,226, - 64,228,147, 41, 5,142,223,215, 13,238,227,248,252, 84, 90, 17, 8, 33,144,203,229,222,157,119, 63, 63,172, 25,216, 3, 0, 48, -224,204, 53, 71,158, 57, 58,243, 35,200, 20, 10, 8, 50, 57, 26,140,126, 23, 89, 89, 89,134, 1, 3, 6,236, 84,169, 84,235,189, -184, 89,193,229,203,151, 29, 90, 50,153,236,134,124,207,113, 28,126,250,233, 39, 92,186,116,201,171,125, 55, 24, 12,152, 58,117, -170, 99,223,220,233, 58,127,246,180,239,132, 16, 46, 34, 34,226,195,182,109,219, 14, 91,184,112, 97, 16, 33, 4,179,103,207,134, - 32, 8,232,213,171, 23, 66, 66, 66,176, 97,195, 6,200,229,114,188,253,246,219, 44,243, 49, 24,140,255,134,193, 58,124,248,112, - 15,251,231,135, 31,126,248,228,206,157, 59,235, 56,133,242, 97,179,217,228, 54,155,173,150,189,217,208,102,179,193,100, 50, 97, -200,144, 33,229,222,209,139, 22,243, 13, 6,169, 44,227,228, 45,102,179, 25,131, 6, 13,114,152,152,242,204,149,151, 23, 6,152, - 76, 38, 8,130,128,234, 85, 66,241,222,160,102,104,205, 83, 24,178, 1,100, 21,225,153, 72, 1,135, 99,106,225,171,203,217,184, -148, 95, 8, 65,240,174,181, 84,146,164, 82,134,202,245,243,156, 57,115, 48,120,240, 96,240, 60,127, 67, 19, 18,227,206, 32, 89, -173, 30,243,161,175,231,198,102, 52, 2, 0,120, 39, 67, 46,147,201,160, 80,169,192,203,100, 16, 20,114,100,101,101, 25,186,116, -233,178, 87,173, 86,255, 28, 17, 17,145,150,154,154, 90,110,254,164,148, 66, 38,147, 65, 16,132, 50,243,252, 79, 63,253,132, 5, - 11, 22,160, 69,139, 22, 94,229,121,179,217, 12,185, 92,142,159,126,250,233,134,229,239,191,255,254, 13, 6,203,131, 30, 1,192, -133,135,135,191,188,104,209, 34,127,251,255,135,132,132, 64, 38,147, 33, 62, 62, 30,126,126,126,216,185,115, 39, 68, 81,244,218, -172, 50, 24,140,255, 44, 50, 0,141, 1,132, 2, 16, 1, 20, 0, 8,116, 90,158, 89,242, 30,234,244,253,128, 27,157,230, 37,235, -216,151,219,191,155, 1, 40,220,252,158, 13, 64, 93,242, 50, 1,216, 13, 32,222,233,127,236,219,193,245,127,133,146,202,176, 29, -128,173, 0,218,187,155,252,206,222, 92,120,234,212, 41,120,234,151,234,105,120,167,178, 82,152, 35,114,181,180,122,136,227,247, -193,201,185,142, 10,118, 77,139,154, 80,234,180,104, 54,113,134,199, 35,110,191, 48, 92,187,118,237,134, 59,239,155, 53, 88, 0, - 96,181, 90,161, 86, 43,177,229,187, 71,144,113,193,134,143, 86,167, 96,197,254,139, 16, 4, 1,189,235,212,196, 99, 54, 96,122, -176, 10, 47,217, 68, 88, 36,234,213, 5,140, 82,122,131,185,114, 54, 89,132, 16,199,111,236, 98,115,119, 8,105,156,224,136, 92, - 45,172,236,119, 67,212, 10, 0, 86, 52,169, 10,149,159, 14,241,175,143,243, 42,127, 86,235,221,223, 17,185,250, 43, 33, 14,130, - 92, 14,153, 82,129,199,142,164, 0, 40,110, 22,236,216,176,222,182, 92, 94, 49,255,233,167,159,190,176,121,243,102,141, 55,105, -149,203,229,165, 12,155, 59,115, 37, 8, 2,172, 46,166,177,188,155,138,178,140,147,189, 92,249, 18,193, 2, 0,189, 94,111, 94, -177, 98, 5,190,250,234, 43,132,132,132,160,107,215,174,136,136,136,192,178,101,203, 64, 41,197,171,175,190, 10,181, 90, 13,181, - 90,205,242, 60,131,241, 31,199,131, 23,121,100,252,248,241,205,166, 79,159, 62,181,101,203,150,139,119,239,222,189,136, 16,178, -218,201,123,244, 46,209, 88,237,244,189,185,139,201,146, 1, 8, 37,132,172,182,175,239,252,221,233,247,206, 0, 20,246,239,227, -199,143,143,159, 62,125,250,212,113,227,198,189, 51,109,218, 52,249,248,241,227, 27, 78,159, 62,125,170,253,127,220,165,195, 57, -130, 85,238, 44,192, 22,139,229, 98,231,206,157,189, 26,241, 99, 48, 24,174,120, 48, 96,110, 35, 3,206, 81, 1,165,159, 14,106, - 63, 63, 16,206,187, 10,215,106,181, 66, 16, 4,112, 28,135,141, 27, 55, 66,173, 86,163,103,207,158, 55,221, 68,104, 55,109, 10, -133, 28, 66, 32,135,167, 63, 63,136,204, 28,189,163, 73,112, 83,114, 10,246,171,213,120,175, 94, 67,232, 10,147,145,111, 50,223, - 82, 4,107,240,224,193, 48, 26,141,224, 56,206,241, 27,199,113,248, 47, 61,179,233, 30, 44,232,110,191, 19, 66,160,242,247,131, - 74,167, 3, 47,240, 94,105, 81, 74,255, 53, 66, 10, 5,100, 74, 5, 4,185,220, 97,174,186,116,233,178, 55,151, 87,204, 79, 75, - 75,219, 11, 64,229,173,193,178, 71,176,202, 51, 87,130, 32,192, 98,177,120,101, 94, 76, 38, 19,228,114,185,215, 6,203,195, 62, - 83, 66,136, 68, 8,145,226,226,226, 28,219,132,135,135, 35, 48, 48, 16,146, 36, 65,146, 36,168, 84, 42,168,213,234, 50,255,151, -193, 96,252,167, 40,207,139, 40,167, 79,159, 62,213,217,192,184, 26, 26,103,227,228, 98,162,156, 77, 90,188,135,186,127,181,171, -105,178,255, 47, 33,100,245,180,105,211,122,123, 72, 71,166,171,193, 42,119,154,125,231,230,194,138,186,120,149,119, 1, 83, 7, -248, 67,161,213,162,164,251, 21,245,164,101,177, 88, 28,125, 78, 70,142, 28, 89,230, 93,189,115,223, 20, 79,152,205,102,240, 28, - 15, 40,171, 65,194, 62,199,197,202,241,146,203,145, 92,165, 17,200,149, 52, 8,130,119,253,253,237, 17, 44,187,137,122,245,213, - 87, 49,111,222, 60, 71,199,100, 0,224,121, 30,181,107,215,198,249,243,231, 89, 81,187, 11, 80, 74, 61, 54, 91,171,252,253,160, -212,233,192,123, 17,105,180, 47,119,244, 97, 82, 41,193,203,229, 16,228,197,205,130,125,251,246,221,150,155,155, 59,191,126,253, -250,103, 81, 60,141, 1,241,182,252,184,203,231,243,231,207, 47,101,174,124,137, 96,217,203,145, 51,189,122,245, 42,245, 14, 0, - 3, 6, 12,240, 54,130, 69, 9, 33, 84, 38,147,161,115,231,206,104,216,176, 33, 86,172, 88, 1, 73,146,240,202, 43,175, 64,173, - 86,227,139, 47,190,128,205,102,195,244,233,211, 89, 4,139,193, 96,148,231, 69, 12,227,198,141,123,135, 16,178,186, 36,146,148, - 84,142,145,114, 71,115, 23,147,150, 89,198, 53,160,183, 59,147,229,252,217,206,248,241,227,227,221,164,227,192, 13, 6,203,201, - 53,222, 86,114, 79, 28,115,116,104,183, 55, 11, 18, 66,176,174, 85, 29, 40,116, 90,168,116, 58,180, 89,190,195,113,215,140, 15, - 63,243, 42,130,101, 55, 78,217,217,217, 30,155, 8,189,141,138,241,114, 25,246,234,100,160, 50,190,212, 5, 75, 38,147,129, 19, -100, 72, 14,173, 5, 34,108,128, 32,218,188,186, 56,216, 35, 25,206,163,167,158,126,250,105,112, 28,231, 48, 89, 77,154, 52, 41, -149,215, 88,113,187,179,164,255,189, 30,107,159, 40, 46,171,206,205,130,171, 91,212,128,210, 79, 7,165, 86,139,118,171,118, 59, -154,115,241,197, 92,143,154,167,126,248, 6, 73, 95, 78,131, 32,147,161,255,161,100, 71,228,170,117,157,154,123,205, 90,255,249, -151, 47, 95,222, 11,128,123,226,137, 39, 2,155, 54,109,202,123, 89, 9,149,234,120, 46, 8,130, 91,115, 37, 8, 2,108, 54,155, - 87,251,110,177, 88,188,138, 36,217,163, 88, 94,228,119, 90,183,110, 93,240, 60,143,128,128, 0,248,249,249, 57, 70,208,218, 35, - 87,246,254,155,222,150, 75, 6,131,241,192,223,228,150,229, 69, 76,211,166, 77, 75,154, 54,109,154, 35,146,228, 26,193, 42,131, - 94, 37,102, 42,212,110,206, 80,220,151,234, 64, 57,105,232, 93,150,241,114,254,109,250,244,233, 83,221,164,195,209, 44,233,182, -119,118,227,198,141,215,106, 52,154,106,222, 30, 16, 95, 38, 29, 21, 45,150, 27,238,196, 9, 33, 80,233,116, 80,248,233,160,212, -233,202,140,114,149,117,161,177, 55, 17,242, 60,239,184,232,252,252,243,207,208,233,116,120,246,217,103,111,170,147,123,177,193, -226,177, 82,126, 6,144, 11, 55, 92,180,120,153, 12,151, 3, 42,131,147,201, 32,136,222, 69, 8,242,242,242,192,243, 60, 62,248, -224, 3, 76,159, 62,221, 49,140,222,121,104,189,115,212,131,113,231,113,238,228, 94, 42,170,234,231,231,200,159,206,191,123,234, -147, 72, 8, 1, 68, 91,241,104, 65,165,194, 97,174,250,246,237,187,205,172,245,159, 95,167, 78, 29,123,228,138,211,104, 52, 30, - 71,205, 58,151, 13,187,209,113, 53, 87,246, 40,169,253,179,213,106,245, 42,207,219, 13,214,164, 73,147, 28,101,197, 57,114,229, -106,176,188,205,167, 28,199, 97,251,246,237, 56,116,232, 16, 70,142, 28, 9,181, 90,141, 89,179,102,193,102,179, 97,242,228,201, - 80,171,213, 80, 40, 20, 44,243, 49, 24,140,242, 8,178, 27,156, 18,147, 84, 42,178, 68, 41,237,237,108,130,202,106, 42, 44,137, - 56,109,247,240, 95,127,149, 24, 51,183,216, 35,105, 46,117,232,106, 87,115, 38,216, 29,163,243,187, 66,161,168,182,107,215,174, - 90,146, 36, 65, 20, 69,148,247,110, 54,155,241,248,227,143,123, 61,233,168,100, 45, 54, 88,156,203, 72, 57,165,191, 31, 20,186, -127, 47, 96, 78, 23, 49,143,181,184, 61,130,229,108,176, 62,248,224, 3, 8,130,128,121,243,230, 1, 0,222,122,235, 45,159, 35, - 88, 84, 2,118,139, 91, 17, 53,187, 17,232,124, 21,174,110, 63, 9,153, 76,134,136, 22, 93, 32, 53,123, 12,217, 10,127,104, 75, -250, 85,121,211,236,152,157,157,141, 75,151, 46,129, 16,130, 55,222,120,163, 92,115,181,113,227, 70,214, 7,235, 46, 26, 44,142, -231, 75,157, 15,231,252,233, 98,190, 60,183,147,217,108,144, 41,149,165, 70, 11,230,230,230,206,191,124,249,242, 62, 0,100,216, -176, 97,129, 26,141, 6, 63,252,240,131, 30,128,124,249,242,229,106, 79,154,206,253,248, 92, 35, 87,174, 6, 75, 20, 61, 55, 97, -219,111, 42,188,137,246,250, 98,176,236,249,155, 16, 2, 81, 20, 29,145, 43,171,213,234,248,174, 84, 42, 89,198, 99, 48, 24,158, -158, 43,154,233,210,207,137,184, 68,154, 50,221, 25, 43,231,230, 64,167,207, 86, 55,186,102,151,166, 67,215,223,237,239,217,211, -166, 77,219, 98,143, 92, 57,253, 94, 42, 29,101, 70,176, 56,142,131,201,100,194,137, 19, 39,188,189, 67,245,122,210,209,144,132, -135, 48,228, 82, 30, 8, 33,216,208,182, 62, 84, 58, 29,228, 58, 45, 90,253,190,213, 81, 97, 39, 79,127, 27,114,173, 14, 33,109, -186,120, 85,129,139,162,120,131,193,202,205,205,133, 76, 38,195,135, 31,126, 8,142,227,240,241,199, 31, 35, 58, 58, 26, 25, 25, - 25,104,215,174,157, 87, 23, 27, 78,226,160,122, 38, 24,170,151,252,192,141,172,129,248, 62, 47, 33,175,160, 42,142,154,181,168, - 91,116, 6, 65,127, 79,132, 69,178,121, 53, 77, 3, 33, 4, 54,155, 13, 91,182,108,129, 76, 38,131,205,102,115, 92,124, 40,165, -142, 89,242,237,147, 58,126,252,241,199,172,180,221, 5, 42,247,122, 20, 79,167,235, 1, 0,107, 91,213,129, 82,171,133,194, 79, -135, 54,127,110,119,228,207, 11, 83,223,132, 92,171, 67, 96,243,182, 94,105,214,123,229, 45,212,125,249, 77,100,101,101, 25, 58, - 55,137,223,158,199, 43,127,106,208,160,129,163,207,149, 70,163,129, 74,165, 34,246, 72,150,183,166,133,227, 56,143,230,202,254, -217,219,155, 10,215, 81,184,229, 25, 44,111,225, 56, 14,207, 62,251, 44, 34, 35, 35,241,213, 87, 95,149,138, 92,189,243,206, 59, -176, 90,173,248,226,139, 47, 88,230, 99, 48, 24,229,113,192,135,117,155, 59,153,165, 3, 55,169,123,224, 86, 19,236,182,230, 53, -153, 76,201,157, 58,117, 66, 25,203,162,149, 74,101,169,218,213, 62,233,168,107, 83, 33, 33,164, 1,165,244,152,139, 67,253,183, - 89,176,164,179,176,194,165,217, 69,161,243,131, 76,171, 3,231,166, 18,119,167,233, 46,130,101,111, 58,201,203,203,131, 76, 38, -195, 87, 95,125, 5,127,127,127,152, 76, 38,119, 29,236,221,106,242, 60, 15,253, 37, 61, 46,190,127, 20, 74,237, 57,212,238,226, - 7, 63,217,121,212,220,177, 28, 54,155, 25,112,106, 50,244, 70,179,118,237,218,248,224,131, 15,110,152,158,161, 44, 18, 18, 18, - 60,106,222, 42, 76,211,189, 38, 33, 4, 74, 63, 29, 84,126,126,101,230, 79,193,205,220, 77,174,154,246,229,246,200, 85,161, 92, -243,211,229,139, 23,247, 1,224,134, 13, 27, 22,160,209,104, 48,103,206, 28, 61, 0,110,202,148, 41,154,216,216, 88,222,155,116, -114, 28,135,159,127,254,249,134, 62, 87,101, 25, 44,111,210,105,179,217,110, 48, 88,131, 6, 13,186, 97,162,209,178, 34, 88,238, -210,105,239,171, 86,169, 82, 37,104, 52, 26,199, 99,183, 84, 42, 21, 84, 42,149, 99,118,248,178,154, 90, 89,254,100,154, 76,243, -191,163,121,151,204,216,109,195,173,193,250,231,159,127,186,151,181, 65,235,214,173,207,236,218,181,171,166,243,179, 9,109, 54, -155,220,100, 50,213,234,215,175,159,199, 91,101, 73,146,160, 84, 42, 65, 41, 69,227,247,166, 23,223,194,115,255, 54, 9, 82, 74, - 17,216,186, 51, 8,207, 67, 20, 37, 88,173, 86,143,163, 8,141, 70, 99,169, 14,232,238,134,175, 23, 22, 22,150, 59,207,143,171, -166,193, 96, 40,213,175,139,136, 20, 23, 54, 45,187,113, 52, 97,201,255,120,139, 74,165, 42,213,108,226, 41, 41,236,166,229,206, - 98,159,192,147, 82,138,248,215,198, 21, 71,138,120,174,212,242,128,230,109, 65, 4, 25,164,226,126, 75,158, 6,134,144,204,204, - 76, 67,223,190,125,183, 81, 74,127,236,215,175,223,105, 20,119,176,164, 58,157, 78, 41,147,201, 36, 0,215, 1,208,156,156,156, -128,180,180, 52,201,104, 52, 86,241,148,206,237,219,183,227,220,185,115,104,218,180,169, 35,242,105,127,217,155,239,111, 38,130, -229,110, 70,248,178,102,114,247, 37,130, 21, 16, 16, 0,133, 66,129, 15, 63,252, 16,114,185, 28,106,117,113, 43,232, 23, 95,124, -225, 56,230, 12, 6,131,241, 32,225,243, 3,155, 37, 73,226,203,106, 62,244,212, 84, 40,138, 98,234, 67, 15, 61,228,235,255, 93, -245,112, 65, 76,221,177, 99,135,220,245,129,180,238, 30,128,235,244,155, 71,205, 3, 7, 14,200,203,217,222,221,231,171,190,236, -187, 55,253, 87,108, 54, 91, 26,203,162,119, 14,155,205,150,218,162, 69, 11,247, 11, 63,248,184,172,243,122,213,131,105, 57, 91, -171, 86,173,116,157, 78,247, 87,120,120,120,246,174, 93,187, 66,154, 55,111, 30,226,188, 78,243,230,205, 35, 93, 54, 51,163,156, -233, 73, 8, 33,169, 79, 63,253,180,220, 67,126,116,253,156,234,225,166, 34, 53, 41, 41, 73,238, 46,191,151,245, 78, 41, 77,245, -226,176, 94,234,209,163, 7,231,174, 12,185, 57,150,153, 44, 23, 50, 24,140,255,172,193, 50, 26,141, 41,157, 58,117,114, 59,238, - 91,175,215, 95, 46,111,219,164,164,164,102, 21,189, 3,169,169,169,173,238, 7,205,219,177,239,140,123,255, 28, 37, 37, 37,181, -168,104,205,203,151, 47,183,186, 31, 52, 1,224,248,241,227, 45, 89,206, 98, 48, 24,204, 96,121,129,183,211, 49, 48, 24, 12, 6, -131,193, 96,252, 87,225,216, 33, 96, 48, 24, 12, 6,131,193,168, 88, 8,128, 6,238, 22,248, 50, 58,128, 16,210,192,215, 63,246, -164,207, 52,153, 38,211,100,154, 76,147,105, 50,205, 7, 79,211,147,246, 61, 60, 58,209, 55,131,229,105, 38,234, 91, 18,103, 67, - 88,153, 38,211,100,154, 76,147,105, 50, 77,166,249, 31,132, 53, 17, 50, 24, 12, 6,131,193, 96, 84, 48, 2, 59, 4,119, 7, 66, - 8, 79, 41, 21, 43, 80, 50, 16, 64, 89, 15,116, 51, 3,200,189, 73, 93, 5, 0, 89,201, 11, 40,126,196,128,181, 68,147,193, 96, - 60, 64, 52,107,214,108, 56,165,244,163,226, 42,138,124,120,240,224,193,175,217, 81, 97, 48, 42,216, 96,213,168, 81,227, 32,199, -113, 49,238, 30, 64, 92,214,188, 56,162, 40,166,158, 60,121,210,171,161,238,132, 16, 33, 50, 50,114,144, 86,171,237,192,243,124, -235,146,237,119, 21, 21, 21,109,201,200,200, 88, 74, 41,181,221,204, 14,197,197,197,249, 27,141,198,199, 9, 33, 67, 1,128, 82, -250,171, 74,165,250,237,194,133, 11,249, 55,105,132,106, 68, 68, 68,252, 42,147,201,248,148,148,148, 14, 0, 80,185,114,229, 45, -102,179, 89,188,118,237,218, 80, 74,233, 57, 31,245, 56,185, 92, 62,189,109,219,182,109, 8, 33,191, 80, 74,191,173,160,115,169, -228, 56,238,146,187, 5,146, 36,197,222,132,158, 28, 64,192, 23, 95,124, 17,188, 96,193,130, 38, 25, 25, 25, 13, 1, 32, 50, 50, -242,232,176, 97,195,254,249,223,255,254,119, 29, 64, 30, 0, 11, 43, 70,247, 55,181,106,213, 58,200,113, 92,140, 47,115,201,149, - 60,162, 42,245,248,241,227,205,202,210,228,121, 62,198,195,124,116, 55,124,150, 36,233, 66, 82, 82,146,219, 41, 35,106,215,174, -189,135,231,249,106,158,210,230, 46,157,101, 77,193, 81,187,118,237,131, 60,207,199,248,170, 41, 73,210,133, 99,199,142,181,170, - 72,205, 59,157, 78, 0,104,223,190,189,178,168,168,232, 87,157, 78,215,168,168,168,104, 56,165,116,194,214,173, 91,195, 57,142, - 67,231,206,157, 39, 52,107,214,236,162, 82,169,156,109, 52, 26,255,209,233,116, 67,182,110,221,106, 98, 37,134,193,184, 69,131, -197,113, 92,204,161, 67,135,194,180, 90, 45, 74,140, 10,236,179,183, 75,146,228,120, 81, 74, 65, 41,133,205,102, 67,251,246,237, -189,250,211,152,152,152, 6,181,107,215, 94,246,234,171,175, 86,233,211,167,143, 34, 60, 60, 28,132, 16, 92,185,114,165,214,234, -213,171,159,252,234,171,175, 62,136,137,137, 25,152,154,154,234,109, 71, 57, 46, 50, 50,178, 19,128,103, 26, 52,104, 48,224,173, -183,222,146,183,110,221, 26,162, 40,226,239,191,255,110, 59,115,230,204,175,162,162,162,254, 0, 48, 63, 35, 35, 99, 51,165, 84, -242, 82,183, 73,181,106,213,126,219,190,125,123,181,228,228,100,177,127,255,254,191, 0,192,174, 93,187, 26, 81, 74, 73,235,214, -173,215, 18, 66, 30,167,148,254,227,195, 49,239, 55,106,212,168,129,175,188,242, 74,232,240,225,195,135, 1,248,182,228,191,236, - 15,185,244,181, 83,156, 35,114, 69, 41,149,151,179, 94,184, 15,145, 44,237,133, 11, 23, 2, 91,183,110,253,202,181,107,215, 70, - 59,235, 94,189,122, 21,135, 15, 31,182,124,252,241,199, 51,119,237,218,245, 77, 92, 92, 92, 46,128, 34, 86,148,238, 95,120,158, -143, 62,120,240, 96,152, 70,163,113, 60,200,221,185,156,219,203,184,115,214,164,148,226,145, 71, 30, 41, 79, 51, 38, 49, 49, 49, - 76,173, 86, 59,234,142,242,244,156, 52, 45,229,212, 73,177, 7, 14, 28, 8,211,104, 52,160,148,122,212, 35,132,128, 82, 90,238, -179, 71,237,233, 84,169, 84, 94,105,218,105,221,186,181, 88, 81,154,246,116,182,108,217,146,150,167,121,232,208,161, 48,251, 83, - 48,124, 72,103,185, 55, 64, 69, 69, 69,191, 46, 93,186,180,127,120,120, 56,250,245,235,183,161,126,253,250, 10,141, 70,131,181, -107,215, 34, 38, 38,166,146,191,191,255,154,105,211,166,225,179,207, 62,171,178,113,227,198, 69, 0,250,179, 18,195, 96,220,186, -193,130, 86,171,197,226,197,139,221, 62,126,198,245,115,108,172,119, 65,146,136,136,136,102, 85,171, 86,221,182,124,249,114,117, - 88, 88,152,227,119,139,197, 2,127,127,127, 60,251,236,179,138,206,157, 59,215,124,242,201, 39,247, 70, 68, 68,180,187,114,229, -202,193,242,244, 34, 35, 35, 7,196,199,199,127, 61,122,244,232,240,190,125,251, 34, 40, 40,168,212,242,222,189,123,163,103,207, -158,242, 11, 23, 46, 12, 94,186,116,233,224, 95,126,249,229, 74,100,100,228,168,140,140,140, 63,202,117, 24, 90,109,231,198,141, - 27,255,176,121,243,230,152,192,192, 64, 68, 69, 69,113,239,191,255,126,131,234,213,171,171, 35, 35, 35,185,244,244,116,252,241, -199, 31,213,135, 13, 27,182, 66,165, 82, 13, 55, 26,141,155,189, 48,108,138,224,224,224,183, 95,122,233,165,144,130,130, 2,219, -161, 67,135,206,217,127, 87, 42,149, 19, 30,126,248,225,166,132,144, 37,148,210,249, 55, 19,185,162,148,230,227,223,166, 60, 59, - 86,251,114, 47, 35, 89,138, 67,135, 14, 5,181,110,221,250, 79,147,201,212,244,249,231,159, 79,155, 49, 99,134,194,223,223,223, - 31, 0,201,205,205,205,153, 52,105,146, 56,107,214,172,177,245,235,215,239,180,107,215,174,254, 77,155, 54,101, 77,134,247, 57, - 26,141, 6,171, 86,173,114,251,152, 41,119,101, 62, 48, 48,208,227,211, 8,212,106, 53, 54,110,220,232,216,206,249,209, 82,238, - 62, 7, 6, 6,130, 82, 90,174,168, 74,165,194,206,157, 59, 29,143, 1, 42,171, 94,178,191,107, 52, 26, 16, 66, 56, 79,154,219, -182,109,243,168,101,127,215,233,116, 0,192,123,147, 78, 79,251,108,255,172,213,106, 61, 30, 79,165, 82,233,208,116,214, 40,235, -123,201,205, 49,241,112,142, 26,133,135,135, 99,223,190,125,152, 56,113,162, 34, 62, 62, 30,103,206,156, 1,199,113, 24, 62,124, - 56,234,215,175,143, 43, 87,174,160,126,253,250,216,185,115,103, 19, 86, 82, 24,140, 10, 48, 88,118,202,170, 96, 93, 63,219,239, -196, 92,238, 72, 75, 69,160,170, 86,173,170,212,233,116,191,175, 90,181, 74, 29, 18,242,239,211, 66,204,102, 51, 10, 10, 10, 80, - 88, 88,136,130,130, 2,104,181, 90,204,158, 61, 91, 61,116,232,208,223,171, 86,173, 90, 43, 57, 57,217, 84,150, 38, 33,100,230, -225,195,135,195,109, 54, 27, 20, 10, 69,153,102,177, 70,141, 26, 24, 53,106, 20,218,180,105, 19, 49,120,240,224,153, 0,254, 40, - 75,179,196,184,125,179,107,215,174, 24,133, 66,129, 51,103,206, 32, 53, 53, 21, 35, 70,140,136,149, 36, 9, 41, 41, 41, 56,115, -230, 12,210,211,211, 49,119,238,220,152,161, 67,135,206, 6, 80,179,188,125, 47,225,133, 55,222,120,163,102, 80, 80, 16, 55, 99, -198,140,188,194,194,194,185, 37,191,143,255,226,139, 47,134,180,107,215, 46,244,249,231,159,167,132,144,197,148,210, 27, 12,139, -139,166,187,200,149, 72, 41, 61,233,178, 89, 93,151,200, 86, 56,138,159,133,151,231, 70,147, 0,240,239,222,189,251,155, 38,147, -169,233,142, 29, 59,206,181,105,211, 38, 22, 64, 6,165, 52, 19, 0,130,130,130,180, 95,126,249,101,120,239,222,189, 79,119,238, -220,185,105,247,238,221,223,204,204,204,252, 8, 64, 22, 74, 30,239,114, 59, 70,150, 48,205,219,167, 89,210,148, 4, 65, 16,208, -163, 71, 15, 16, 66,220, 62,111,115,207,158, 61,232,212,169, 19,100, 50, 25,158,123,238, 57,175, 53,187,117,235, 6,155,205,118, -131,158,171, 1,177, 63,163,179,188,125,167,148,150,122, 70,168, 59,115,225,252,114,213,115,167, 41, 73,146, 91,173,178, 76,150, -253, 97,245,222,236,187,183,230,210, 83, 58,157, 53,101, 50, 25, 90,181,106,133, 67,135, 14,149,107,182, 60,165,179, 36,130,245, - 76,191,126,253, 54,140, 24, 49, 66, 5, 0, 89, 89, 89,165, 30, 68,127,234,212, 41,152, 76, 38, 44, 92,184, 16, 38,147,105, 36, - 43, 71, 76,243,118,106,122,178, 35, 0, 26, 3, 8, 5, 32, 2, 40, 40,185, 14,154, 75,174,133,217, 0,212, 37, 47, 19,128, 66, - 0,149, 74,182,205, 42,185,190, 57, 63,166, 44, 19,165, 31, 10,221,188, 68,219,254,200,174, 80,167,101,246,255,112,253,238,250, - 94, 74,155, 43, 41,188,180,228,213,206, 53,108,237,141,185,178, 87,142, 94,156,144, 87,199,143, 31, 31,238,108,174, 76, 38, 19, -242,243,243, 81, 80, 80,224,120, 63,115,230, 12, 20, 10, 5, 6, 13, 26, 20, 78, 41,125,213,131,172,156,231,121, 28, 58,116, 8, -203,151, 47,199,197,139, 23,111, 88,225,252,249,243,248,242,203, 47,241,217,103,159, 33, 63, 63, 31, 40,238, 95,228,150,198,141, - 27, 79, 28, 58,116,232,222,246,237,219, 43, 5, 65,192,225,195,135, 81,171, 86, 45,236,222,189, 27,151, 47, 95, 70, 78, 78, 14, - 78,157, 58,133, 6, 13, 26,224,220,185,115,200,207,207, 71,124,124,188, 50, 33, 33, 97, 71,213,170, 85, 39,150, 19,189,146, 71, - 71, 71,191,243,210, 75, 47, 41, 51, 50, 50,164,159,127,254,121, 23,165,116, 55, 33,100,196,187,239,190,251, 84,183,110,221, 66, - 79,158, 60,153,127,224,192,129,131,238,204, 85, 25,145,171,203, 28,199, 93,162,148,230, 83, 74, 13, 40,238,124, 94,234, 98,100, -179,217, 76, 6,131, 33, 47, 59, 59, 59,139,227,184, 75, 28,199,157, 1,160, 44, 75,115,216,176, 97,213,179,178,178, 94,249,223, -255,254,119,177, 77,155, 54,177,148,210, 83,148,210,236,146, 12,107,178,217,108,217,185,185,185,167, 91,183,110, 29, 57,100,200, -144,115, 89, 89, 89,175, 12, 27, 54,172,122, 57,154,140,123, 31, 42,138, 34,100, 50, 25,182,110,221,138,157, 59,119, 98,231,206, -157,216,181,107, 23,118,239,222,141, 61,123,246, 96,207,158, 61, 16, 4, 1,187,119,239,198,238,221,187, 49,106,212, 40,143,101, - 94, 20, 69, 8,130,128,109,219,182, 97,255,254,253,142,215,129, 3, 7,176,127,255,126,168,213,106,143,102,200,165, 12, 57, 52, -221,189,190,249,230, 27,135, 57,180,215, 77, 28,199,149, 27, 21,115, 53, 46,174,134, 37,182,106,213, 27,150,121, 74,167,221,180, - 9,130,128,239,191,255, 30,105,105,105,248,234,171,175,112,254,252,121,124,242,201, 39, 72, 74, 74,194,228,201,147,113,224,192, - 1,140, 31, 63, 30, 59,118,236,176, 63,252,157,122,210,180,155, 43,139,197,226, 72,207,169, 83,167, 48,117,234, 84, 28, 62,124, - 24, 19, 38, 76,192,158, 61,123,240,246,219,111,131,231,203, 13,178,161, 89,179,102,195, 9, 33, 75,107,215,174,173,236,216,177, - 35, 4, 65,192,212,169, 83,165, 9, 19, 38, 92,123,247,221,119,175,173, 94,189,154, 86,175, 94, 29,102,179, 25,126,126,126,160, -148,206,111,214,172,217,171,172,184, 48,110, 23,238,188,136, 19,143,140, 31, 63,190, 35, 33,100,117,171, 86,173,134, 1, 8, 36, -132,172, 6,160, 40,121, 15, 25, 63,126,124, 11, 66,200,234,241,227,199, 55, 3, 80,137, 16,178,186,228,123, 7, 0, 33,246,239, - 37,235,135,186,152,183, 80,167,223, 67, 93,214, 85,184,251,238,250,238,170, 45, 56, 93,140, 73, 73, 1, 39,206, 21,164, 47, 6, -203, 83,133,171,211,233,122,118,239,222, 93,238,108,174,156, 35, 87,246,247,130,130, 2,156, 62,125, 26, 13, 26, 52,144,235,116, -186,158, 0, 62,245, 24,138, 19, 4, 68, 69, 69, 33, 43, 43, 11,199,142, 29, 67,108,108, 44,172, 86, 43,214,175, 95,143,220,220, - 92,200,229,114,200,229,114,152,205,229,123,151,186,117,235,246, 88,176, 96, 65,179, 95,126,249, 37, 71, 16, 4,156, 58,117, 10, -191,254,250, 43, 40,165,168, 84,169, 18,244,122, 61,174, 93,187,134,153, 51,103,194, 98,177, 64,167,211, 33, 58, 58, 90,245,234, -171,175,182,153, 52,105,146, 12, 64, 89, 38,235,161, 1, 3, 6,248,251,249,249,225,245,215, 95,151, 44, 22,203,103,132,144,135, - 7, 12, 24,240,206,168, 81,163,130,147,147,147,205, 47,188,240,194, 65,139,197, 50,179, 36,163,201, 40,165, 86, 15,134,181,204, -200,149,205,102,179, 31,211,139, 5, 5, 5, 8, 11, 11,171, 66, 41,149,123, 56, 71,242,221,187,119,183, 2,192, 79,153, 50, 69, - 69, 41,189,234,108,218, 44, 22,139, 93,211,150,151,151,119,237,237,183,223,182, 45, 90,180,136, 47,217,230, 4, 0, 35,171, 34, -238,203, 74,205, 81,214,123,244,232, 81,202, 80,108,223,190, 29,221,187,119,119,148,119,185, 92,238, 88,207,147,166,115, 84,204, - 30,121,178,235,110,217,178,229,134,200,139,151, 55,105,142, 8,139, 59,227,227,106,186,236, 55,138,222,152, 33,119, 38,203, 94, -183,184, 70,134,188, 73,167, 76, 38,195,168, 81,163, 32, 8, 2,222,126,251,109,200,100, 50, 52,110,220, 24,130, 32,160,101,203, -150, 16, 4, 1, 29, 58,116,240,250, 6,213,158,206, 61,123,246, 32, 33, 33,193,145,158,198,141, 27,163,121,243,230, 16, 4, 1, -109,219,182,133, 32, 8,232,218,181,171, 71, 77,123,135,118,157, 78,135,211,167, 79,131,231,121, 16, 66,178, 19, 19, 19,195, 1, - 96,226,196,137, 89, 70,163, 49,196,104, 52,162, 83,167, 78,104,213,170, 85,232,162, 69,139,222, 7,192, 70, 22, 50,110,223,221, -158, 27, 47, 98, 15, 0, 76,159, 62,125, 42,165,180,119, 89,219,218,151, 19, 66, 86, 79,155, 54,173,119,137,222, 13,223,157,162, - 76,206,230, 45,222, 57, 2,101,223,206,249,255,202,251,111,151,245, 51, 75, 25,172,146, 29,106,239,174,210,117, 23, 42,119,253, -236, 77, 5, 97, 52, 26, 27,219,163, 87, 70,163,177,148,161, 42, 44, 44, 44,101,180,204,102, 51,226,226,226, 96, 52, 26, 27,251, -122,177,136,140,140,132,197, 98,193,188,121,243, 28,198,202,217, 36,148,199,241,227,199, 47,238,221,187,183,105, 66, 66, 66,208, -159,127,254,153,217,185,115,231,208,110,221,186, 65,165, 82,193,104, 52,194,102,179,225,161,135, 30, 66,221,186,117,113,237,218, - 53,172, 93,187, 54,171, 86,173, 90,149,246,237,219, 39, 93,185,114,229, 82, 57,210,157, 58,117,234, 4, 66, 8,214,174, 93,123, -157, 82,154,168, 86,171,255,152, 58,117,106,160,201,100,146,158,122,234,169,148,235,215,175,191, 13,192,170, 84, 42, 63,237,210, -165,203, 67, 60,207, 47, 17, 69,209,231,202,204,100, 50,149, 58,182, 5, 5, 5,208,104, 52,222, 76, 9, 33,203,205,205,109, 8, - 0, 26,141, 38, 24,128, 99,132,164,193, 96,112,156,163,146,243, 99, 12, 14, 14,214, 2, 64,201, 54, 50, 86, 53,220,191,216, 47, -222, 91,183,110, 45, 85,190,237, 17, 40,215, 50,175, 80, 40,176,106,213, 42,175, 52,157,205,148, 23,205,121,229, 70,155,236, 6, - 75, 16, 4,204,157, 91,220,194,254,250,235,175, 59,182,119,253, 15,111,234, 11,187, 25, 18, 4, 1,117, 63,144, 0, 88,144,250, -185, 10, 50, 89,113,150,118, 77,179,253, 34,224,141,185,252,234,171,175,208,187,119,111,172, 94,189,186,220,247,158, 61,123,122, -149, 78, 65, 16,160, 84, 42, 75, 25,191,195,135, 15,187,213,157, 51,103,142,199, 62,109,146, 36,225,175,191,254, 2,199,113,165, - 34, 94,239,191,255,254, 75,254,254,254,186,109,219,182,225,234,213,171, 40, 42, 42, 66, 97, 97, 33,130,130,130, 2, 59,119,238, -124,248,202,149, 43,201,199,143, 31,103, 29,222, 25,183, 37,138,229,236, 69,156, 48,140, 27, 55,238, 29, 66,200,234,113,227,198, -189, 51,109,218,180,164,146,245, 87,187,108,191,218,131,190,221, 4,217,155, 7,155,187,152, 55,123,211, 97,175,114,182, 53,187, - 24, 42,215, 38,194, 3, 30, 35, 88,174,125, 19,202,251, 92, 18,226,246, 84,225, 10,132,144, 27, 12,128,187, 8,150,213,106, 69, -118,118, 54, 36, 73,170,208,185,186, 60, 25,172, 99,199,142, 61, 59,124,248,240,244,128,128,128, 70,217,217,217, 25, 74,165,178, -237,246,237,219, 43, 91,173, 86,248,251,251,195,223,223, 31,107,214,172, 65, 64, 64, 0,254,247,191,255, 93, 54, 24, 12,187,181, - 90,109,184,193, 96, 56,114,229,202,149,247,202,116, 46, 50, 89,167,182,109,219, 34, 49, 49, 17,185,185,185,127, 19, 66, 26, 61, -255,252,243, 93, 43, 87,174, 76, 62,250,232, 35,227,185,115,231,190, 6,144,169,213,106,191, 95,176, 96, 65,187,166, 77,155,234, -158,122,234, 41, 16, 66,126,160,148,122, 29, 25,210,235,245,165,140,149,253,152,250,249,249,121, 53,231, 86,201,241,166,132, 16, -199,128, 70,103, 99,229,100,128, 41,207,243, 18, 0, 90,209,231,136,113,231, 35, 88,246,178,222,167, 79,159, 27, 58,183,203,229, -114,108,216,176, 1,143, 62,250,168,227,134, 37, 33, 33,193,235,104, 83,223,190,125, 29,134, 96,195,134, 13,101, 26, 44, 79, 77, - 90,174,209,166,215, 94,123, 13, 50,153, 12, 95,127,253, 53, 70,143, 30, 13,158,231,241,249,231,159,131,227, 56,188,255,254,251, - 62,155, 75,153, 76,134,139, 31, 23,191,199,188,145,143,236,111,195, 1, 0,126,254,254,197,251, 35, 73, 94,107,218,247,221, 83, -228,202,217, 88,121,106, 34,116,142, 2,158, 57,115,198,241,185,101,203,150,165, 34, 87,130, 32,120, 52,108, 37,255, 55,185, 99, -199,142, 31,197,196,196,132,141, 24, 49,130, 8,130,128,102,205,154, 85,154, 48, 97, 66,158, 76, 38, 83,189,245,214, 91,238,186, - 82,200, 0, 52,170, 87,175,158,150,149, 28,198, 29,142, 96,153,166, 77,155,150, 52,109,218, 52,183, 17, 42,215, 72, 82,121,145, - 38, 39, 99,117, 0, 37,205,129,227,198,141,123, 7,197, 93, 97, 14,120,177,173,194,110,174, 92,163, 92,206,184, 70,176, 38,185, - 86, 60,222, 24, 44,111,250, 79,148, 68, 69,142,102,101,101,181, 84, 42,149,200,207,207,191,225,162,237,108, 10,120,158,199,181, -107,215,160,209,104,142, 86,228,201,243,212, 68, 88, 98,102,222,116, 58, 46,205, 7, 13, 26,180,104,201,146, 37,113,155, 54,109, -194,190,125,251, 80,169, 82, 37, 76,157, 58,245, 66,114,114,242, 16, 74,233, 1,111,254,183,122,245,234,245,117, 58, 29,118,237, -218, 5, 0, 59, 0, 60,243,242,203, 47, 19,139,197,130,217,179,103,235, 1,108, 10, 8, 8,248, 99,217,178,101,141, 26, 53,106, -164,220,180,105, 83,193,190,125,251,182,122,105,174, 68, 74,169, 91, 99, 85, 80, 80,128,162,162, 34,232,116, 58,111, 12,150,205, -223,223,255, 88, 65, 65,193,227, 6,131, 33, 95,169, 84,250,229,231,231,155,156, 35,140,133,133,133, 40, 42, 42,130, 32, 8,178, - 51,103,206,164, 3,168,238,239,239,127, 12,128,141, 85, 13,247, 39, 28,199, 81,187,201,216,180,105,147,219,178, 46,147,201,176, -126,253,250, 82,229,125,237,218,181, 30, 77,155, 32, 8,142,145,132,158, 34, 88,246, 77, 61,134, 89,101, 50,240, 60,143,111,191, -253, 22,148, 82, 71,228,138,227, 56,140, 27, 55, 14, 74,165, 18, 31,126,248, 33,198,141, 27,231, 85, 20,203, 57, 42, 86,109,172, -225,223,202,177,100, 91,139,217, 92, 28,165,231, 56,103,147,229, 85,164,205, 83, 7,119, 95, 76,176,115,164, 77,169, 84,150,217, -185,221,117,211,178, 52, 15, 30, 60,248, 99,211,166, 77,207,133,134,134,110,108,213,170,149,242,224,193,131, 24, 53,106, 20, 49, -153, 76,254,155, 54,109,114,252,175,187,227, 85, 84, 84,164, 98, 37,135,113, 27, 35, 88,147,220, 44, 10,178, 27,167, 18, 51,228, -173,222,106,231,245,237, 26,174,166,168, 36, 34,182,221,147,150,187,109,203, 66, 40, 43,220,237, 90, 73,120, 50, 90,222,220,125, - 26, 12,134,205, 91,183,110,109,254,232,163,143, 10,229, 53, 15, 22, 22, 22, 34, 60, 60, 28,231,207,159,183, 25, 12, 6,143,211, - 31,136,162,247, 19,162,123,138, 96,185,169, 76, 14,196,199,199,219, 44, 22, 11,106,214,172,137,232,232,104, 24, 12, 6,124,249, -229,151, 54,111,205, 21, 33, 68,222,172, 89, 51, 30, 0,242,242,242,128,226,209, 14,181,106,213,170,133,196,196, 68,228,228,228, -172, 0,208,105,210,164, 73, 77, 30,126,248, 97,249,146, 37, 75,244, 35, 71,142, 92, 97,181, 90, 63,242,242, 14,220,108,179,217, -170,113, 28,103,201,205,205, 77,115, 54, 86,225,225,225, 65, 58,157,142,187,118,237,154,213,155,195,211,176, 97,195,253,169,169, -169,152, 50,101, 74,230,212,169, 83,107, 21, 20, 20,228,228,229,229,217,236,198, 42, 63, 63, 31, 6,131,129, 11, 13, 13, 85,206, -153, 51, 71, 3, 0, 13, 27, 54,220, 15, 54,225,232,253,126,215,120, 67,211,160,187,105, 26,188,189,153,114, 54, 46,253,250,245, -187, 33, 34,102,127, 45, 91,182,172, 84,191, 38, 79, 77,111,118,205,111,190,249, 6,175,191,254, 58,148, 74, 37,190,248,226,139, - 82,125,176,220,109, 90,158,166,221,180, 85, 27,107,192,149, 89,193,144,201,100, 8, 25,121,181, 84, 19,161,187,187,108,111,140, -224,212,169, 83, 43,164,137,208,217,244,217,167,196,153, 55,111, 30, 6, 13, 26,132, 29, 59,118,220,116, 19, 97,181,106,213, 22, -124,249,229,151,202, 19, 39, 78, 32, 63, 63, 31,153,153,153, 48, 26,141, 72, 73, 73,113,156,195, 50, 34,229,106, 86,106, 24,183, - 35,122, 85,206,226, 76,151,254, 83,196,185,185,174,156,119,215,245,225,244,155,179,110, 38, 74, 15, 20,115,254,221,213, 84,185, -254,135,243, 58,153, 55, 68,176,202,184,112,123, 61, 77, 67, 73, 7, 73, 79, 70, 96,230, 7, 31,124,240, 74,155, 54,109,130,253, -253,253,145,158,158,238, 54,130,229,239,239, 15,139,197,130,173, 91,183,230, 75,146, 52,211,195, 57,177, 90,173, 86,132,133,133, - 33, 43, 43, 11, 82, 25, 97,124,142,227,160, 86,171, 81, 88, 88, 8,151,131,232,213,133,194,106,181,194, 98,177,192, 98,177,192, -106,181,250,154,111,212,246, 9, 91,139,138,138, 0,160, 40, 42, 42,170,186, 74,165,178,143,122, 60, 3,160, 99,183,110,221,100, -217,217,217,244,133, 23, 94,216, 67, 41, 29,229, 97, 54,123,243,214,173, 91,171, 2,128, 90,173, 62, 3, 0, 41, 41, 41,214,220, -220, 92, 20, 22, 22, 58, 34,132,106,181, 26,253,251,247,143,160,148, 98,235,214,173, 85,229,114, 57, 45,199, 12,153, 86,175, 94, -125, 60, 32, 32, 96,209,244,233,211,135,244,234,213, 43,169, 97,195,134,213, 10, 11, 11,175,233,245,122,131,193, 96,160,130, 32, -200, 67, 66, 66,148, 27, 55,110, 60,183,103,207,158, 46,254,254,254,139, 86,175, 94,125,188, 36,180,202,184, 63,239, 24, 75, 69, -113,220,153, 42, 95, 70,208, 57, 27, 23, 65, 16,176,126,253,250,114,163, 56,222,106, 58,155,140, 55,223,124, 19,179,102,205,186, - 33,130,245,209, 71,197,247, 36,239,190,251,174, 79, 17, 34, 65, 16,112,101, 86, 48, 34, 94,187,126, 67, 4,139,148,164,207,151, - 38, 66,251,246,147, 39, 79,134, 76, 38,115, 52,225,117,233,210,165, 84,211,160,183,198,202, 89,243,218,181,107, 16, 4, 1,193, -193,193, 24, 50,100, 8,186,118,237,122,131,158,183,186, 41, 41, 41,255,124,246,217,103, 85,162,163,163,177,100,201, 18,179, 86, -171, 85,116,236,216,145,230,229,229,145,242, 34, 88, 6,131,129, 69,176, 24,119,154, 3,119, 88,247,150,255, 79,240, 84,233,222, -202, 52, 13,174, 79,219, 78, 78, 78,206,139,140,140, 28, 58,120,240,224, 63,191,253,246, 91,117,245,234,213,113,234,212, 41,228, -228,228,192, 98,177, 64, 46,151, 35, 42, 42, 10,133,133,133,248,253,247,223,245,122,189,126,104, 70, 70, 70, 94,121,154,132,144, -119,123,244,232, 49,231,189,247,222, 83,213,175, 95, 31, 57, 57, 57, 40, 44, 44,116,220,121, 17, 66,224,239,239, 15,141, 70,131, - 99,199,142, 97,207,158, 61, 6, 66,200,187,229,105,186, 51,154,118, 99,101, 55, 90,158, 70, 38,185,104,106, 53, 26,141,253,206, - 15, 0,108, 85,170, 84, 9, 7, 96, 55, 88,151,226,226,226,222,171, 81,163, 6, 89,176, 96, 1,165,148,110,114,103,174, 92, 52, -115,218,181,107,151, 11, 32,220,108, 54,203, 1, 32, 63, 63,223, 18, 18, 18, 18,166, 84, 42, 37,165, 82, 41,169, 84, 42, 41, 35, - 35,195,102,179,217,228, 0,208,174, 93, 59, 51,128,171, 40,153,175,202,141,166, 4,160, 96,246,236,217, 19,159,121,230,153,150, -173, 91,183,142,127,225,133, 23, 78,140, 28, 57, 18,209,209,209, 65,133,133,133,198, 51,103,206,228,126,251,237,183,198,253,251, -247,119,145,201,100,151,102,207,158, 61, 17,197,243,145, 72,222, 30,207,155, 52, 1, 76,243, 54,105,218,251,254,184, 51, 86,206, -223,189,152, 70,161, 84, 58,237,166,237,241,199, 31,119,140, 62,116,141, 92,249,170, 9,192, 49,130,112,204,152, 49,165,210,247, -222,123,101,118,129, 36,229,236,187, 35,218, 36, 8, 2,242,230, 69,151, 50,127,222,154, 42,119,154,130, 32, 96,194,132, 9, 94, - 71,176, 92,251, 96,149,151,206,118,237,218,161,168,168, 8, 50,153, 12, 27, 54,108, 40, 51,130,229,233,120,170,213,234, 33, 43, - 86,172,248, 85,169, 84, 54, 52,155,205,207,101,101,101,253,172,215,235,171,228,230,230,150, 27,193, 50, 26,141, 74, 86,142,152, -230, 93,152, 11,235,190,162,220, 91, 60,155,205,134,202,149, 43,151,122,182,149,189, 51, 59,207,243,142,145, 39,222,140, 32,180, -147,145,145,177, 33, 50, 50,114, 64,255,254,253, 23, 62,243,204, 51,126,117,235,214,149,197,198,198,194, 96, 48, 32, 57, 57, 25, -201,201,201,182,191,255,254, 59, 95,175,215, 63,153,145,145,177,193,147, 94, 90, 90,218, 47,225,225,225,235,135, 13, 27, 54,161, - 73,147, 38, 35, 70,143, 30,205,199,197,197, 33, 47, 47, 15, 65, 65, 65, 8, 13, 13, 69,114,114, 50,126,255,253,119, 49, 55, 55, -119,142, 40,138,147,175, 94,189,154,233,203, 65,178,217,108,188,213,106,197,224,193,131, 33, 73, 18,190,248,226, 11,216,108, 54, -222, 7, 9,139,197, 98,161, 0, 72, 86, 86, 22, 0,232,237,134,235,236,217,179, 0,112,185,106,213,170, 58, 0,216,188,121, 51, - 1,176,219,219,224,154,115, 36,171,110,221,186,201,174,149,162, 61,114,101,143,122, 57,155,171, 50, 48, 14, 25, 50, 36,211,100, - 50,117,123,227,141, 55, 38,204,155, 55,111,200,188,121,243,110, 88,201,223,223,127,209,231,159,127, 62,121,200,144, 33,153, 96, -211, 51, 60, 24,149,129, 75,180,202,215, 46, 0,101,105,174, 92,185,210,235,201, 53, 61, 69,197, 8, 33,110, 71, 36,150, 87, 7, -121,243,244,169,178, 38, 20,189,149,168,160, 32, 8,152, 49, 99,134, 35,114,229,220,249,252,102, 34, 88,118,205,224,224,224,226, -187, 54,173, 22,146, 36,161,103,207,158, 55,173, 91,242,108,193, 1,246,239,205,154, 53,155,188,120,241,226,143, 40,165, 33, 0, - 4,231, 99,224,251, 83,188, 24, 12,102,176,220, 34,138, 98,170,253,217,130,222, 60, 4,182,196,136,164,122,105,178,214,199,197, -197,197,205,155, 55,239,117,173, 86,219,217,104, 52, 54, 4, 0,149, 74,117,180,168,168,104, 19,199,113, 95,102,100,100,120,253, -112,230, 18,195,244,106, 76, 76,204, 23,195,134, 13,251,168, 85,171, 86, 3, 95,120,225, 5, 34, 8, 2,150, 46, 93, 74,211,210, -210,150,113, 28,247,110,122,122,250,249,155, 57, 72, 26,141,230,244,178,101,203,170,175, 92,185, 18, 86,171, 21,115,230,204,129, - 82,169, 60,237,237,246,148,210, 76, 65, 16, 22,182,110,221,122,200,158, 61,123, 22, 81, 74,143, 41,149,202, 95, 31,121,228,145, -161,187,119,239,254,141, 82,122, 66, 16,132, 95, 91,181,106, 53,116,255,254,253,127, 80, 74,143,248,144, 60, 71, 36,203,102,115, -223,162,232, 46,114,229,129,252,225,195,135, 91,134, 15, 31,254,198,192,129, 3,231, 37, 38, 38, 62,100,159,190, 33, 48, 48,240, -104, 66, 66,194,190,101,203,150,157, 42,137, 92, 49,115,117,159, 99,239,144, 30, 20, 20, 4,142,227, 28, 47,251,108,222,190, 26, - 33,187, 38,165, 20, 65, 65, 65,110,111,204,202,209, 36, 30,202, 18,116, 58,157, 67,211,203,209,203, 30,195, 80, 58,157,174, 84, - 26,189,188,185, 41,119,223, 93,211,233,205, 49,243,164,169,213,106, 97,177, 88,188,214,132, 23,131, 6,156, 57,120,240,224,143, - 0,126,172, 89,179,230, 89, 0, 53,152,169, 98, 48,110,131,193, 58,121,242,100,179,219,249,199, 23, 46, 92,200, 7, 48,185,228, - 85, 33,164,166,166,158, 7,240,120, 68, 68,196,167,187,119,239,126,191,164,114,157,226,233,121,134,158, 56,114,228,200,163, 50, -153,108,246,252,249,243, 91, 81, 74, 17, 16, 16,176,251,220,185,115, 47,251, 24, 5, 27, 65, 8, 25,109, 31, 21,104, 50,153, 70, - 16, 66,222,162,148, 22, 57, 45,119,124,247, 17,138,226,206,118,145,101, 44,247, 38,114,117, 67, 36, 11,128,121,217,178,101,133, - 0, 14,227,223,121,174,172, 37, 47, 19,156,154, 5, 25,247, 47, 54,155, 45,173,125,251,246,130,167, 27, 40, 55,219,165,150,119, -131,214,182,109, 91,220,132,102, 90, 57, 73,189,212,170, 85, 43,206, 91, 45, 59, 86,171,245, 90, 57,230, 43,181,101,203,150,110, -211,233,225,152,149,187,239, 45, 91,182,244, 41,141, 37,105, 73,171,104, 77, 15,199,179, 76, 12, 6, 67, 78,104,104,104,161,209, -104,148,153, 76, 38,153,107,196, 94,173, 86,103,178,146,195, 96,220,164,193,186,159, 41, 49, 84,125, 42, 74,175,164, 63,212,139, - 21,160, 99,116,249, 94, 84,222,119, 31,201,185, 13,135, 82, 2, 96, 96,197,228,193,230,216,177, 99, 15, 85,180,230,241,227,199, -155,221,134,116,182,172,104,205,164,164,164,102,255, 85,205,242, 72, 75, 75,123,136,149, 12, 6,227,214,224,216, 33, 96, 48, 24, - 12, 6,131,193,168, 88, 8,128, 6,238, 22,248, 50, 58,128, 16,210,192,215, 63,246,164,207, 52,153, 38,211,100,154, 76,147,105, - 50,205, 7, 79,211,147,246,131, 50, 58,145,220,206, 78,140,108, 8, 43,211,100,154, 76,147,105, 50, 77,166,201, 52,255,139,176, - 38, 66, 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, 61, 3, 97,143, 66, 96, 48, 24, 12, 6,131,193,168, 88, 28, 17, 44, - 66,200, 54, 66,200, 54,118, 72, 24, 12, 6,131,193, 96,220, 13, 30, 36, 47, 34,148,236, 16, 5,208,158,157, 90, 6,131,193, 96, - 48, 24,119,201, 92, 61, 80, 94,132, 80, 74, 65, 8,161,148, 82,194, 78, 47,131,193, 96, 48, 24,140,187,101,176, 30, 36, 47,194, - 58,185, 51, 24, 12, 6,131,193, 96,220, 38,131, 53,137,245,193, 98, 48, 24, 12, 6,131,113, 23,121,160,188,136, 99, 20, 33, 33, -164, 29, 0, 80, 74,153,201, 98, 48, 24, 12, 6,131,113,231, 77,201, 3,228, 69,216, 52, 13, 12, 6,131,193, 96, 48, 24, 21,204, -109,237,131, 69, 8,105,192, 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,113,151, 32, 0,220,142, 4,160,148, 30,243, 90,228, 38, 70, 19,120,210,103,154, 76,147,105, 50, 77,166,201, 52,153, -230,131,167,233, 73,219, 23,255,113, 79, 27, 44,111,230,193, 34, 37, 15, 8,242, 89,156,144, 6, 21,125,160,152, 38,211,100,154, - 76,147,105,222, 30,205,155,169,235,221,105, 18, 66,136,211, 77, 60, 0,208,146, 11, 39,189,151,210,121,191,236,251,127, 69,243, - 65, 67,240,112, 0, 57, 20, 55, 35, 18, 66,136, 4, 64,170,136, 3, 85,114, 18,184,138,210, 99,220, 6,231, 93,124,142,200,191, - 55, 20,236, 60, 49, 24, 15,112,121,175,176,186,222,169,238,224,237,154, 0, 68, 0, 34, 33,228,150, 46,182,183,227,154,116,175, -239,251,127, 89,243,129, 52, 88,246, 3, 21, 26, 26,186, 33, 44, 44,172, 67, 86, 86,150, 84,242, 59,162,163,163,193,113, 28, 4, - 65, 48, 92,188,120,209,223,215, 63, 12, 15, 15,255, 33, 62, 62,254,153,236,236,108,137,227, 56, 84,174, 92, 25,132, 16,240, 60, - 15,158,231, 13,231,206,157,243,191,219, 7, 37, 33, 33, 33,199,108, 54,235, 92,127, 87, 40, 20,198,196,196, 68,191,255, 64,101, - 43,212,170, 85,235, 9,141, 70,163,182,255,214,180,105, 83,231, 85,232,161, 67,135,230,121,171, 87,173, 90,181,253,106,181, 58, - 80, 16, 4,240, 60, 15, 65, 16, 80, 84, 84,148,123,226,196,137, 22, 37,203,119,169,213,234, 16,158,231,237,121, 11, 70,163, 49, -251,248,241,227,173,217,165,239, 70,218,183,111, 47,120,186, 57,114,131,109,235,214,173,182, 59,152, 76,206,156,232, 87,131,216, - 12,141, 8, 71, 3,168, 68,242,168,160, 62,162, 72, 40, 56,231,229,246,210, 93, 46, 3, 85, 0,216, 40,165,233, 55,179,177,155, -138,182,187, 8, 12, 46,249,106,228,128,108, 2,156, 9, 1,126,191, 10, 24, 74,173,124, 7, 47, 68,246,186, 62, 38, 38,230,203, -240,240,240,103, 11, 10, 10,244, 60,207,131, 16, 66,227,227,227,111,216, 29, 66, 8, 36, 73, 74, 77, 74, 74,106,230,225, 34, 43, -171, 82,165,202,231,161,161,161, 79,235,245,122, 61, 33, 4,132, 16, 74, 8, 65,195,134, 13, 29,154,246,119, 81, 20, 83,143, 29, - 59,214,236, 78,165,243,110,237,123,131, 6, 13, 28, 90,118,109, 73,146,202,220,119,103,205,152,152,152,207,195,195,195,159, 46, - 44, 44,212,115, 28,231,208,140,143,143,191,233,116,222,203,154, 15,114, 4,139, 11, 11, 11, 91,209,162, 69,139,246, 43, 87,174, -228, 78,158, 60,201,213,173, 91, 23,162, 40, 66,146, 36, 80, 74,145,144,144,160,241,245,207, 34, 34, 34,126,110,222,188,249,224, - 85,171, 86,113, 43, 86,172,224,154, 55,111, 14, 66, 8, 68, 81,132, 40,138,232,212,169,147,250, 22, 43, 11,157, 32, 8,163, 21, - 10, 69, 59,155,205, 86, 15, 0,100, 50,217, 9,147,201,180,205,102,179,205,164,148, 22,122,163, 99,181, 90, 53, 73, 73, 73, 55, - 28,155, 22, 45, 90, 40,110, 54,109,181,106,213,218,205,113, 92,156,115,161,245,244, 78, 41,189,144,148,148,212,170, 44,205, 58, -117,234,120,212,116,253, 77,146,164, 11,199,142, 29,107, 85,158,185,170, 89,179,230,224,250,245,235,171,150, 46, 93,138,148,148, - 20,104,181, 90, 72,146, 4, 81, 20, 97,181, 90,241,232,163,143, 18, 95,246, 93,173, 86,251,255,253,247,223, 53,194,194,194,112, -237,218, 53,100,101,101, 97,196,136, 17,103,156,150,135,108,217,178,165, 86,112,112, 48,244,122, 61,242,242,242, 48,116,232,208, -251,190,112,117,125,164,250,135, 4, 8,182,127, 23, 37, 92,223,180,243,252,123,183,170,107, 50,153, 50, 68, 81, 12,242,112, 77, - 47, 5,207,243, 57, 0, 66, 61,148,159,170, 0,250,240, 60, 95, 83, 38,147,213,161,148, 86,181,217,108,225, 0, 32,151,203,175, -242, 60,159,108,181, 90, 79,153,205,230,179, 0, 86, 81, 74,147,203,210, 50, 39,250,213, 16, 77,250,129, 69, 38,169,167, 68, 17, -193, 17, 92,209, 42,245,107,204,137,126,203,124, 48, 89,119,203, 92, 85,139,138,138,154, 81,242,249,109, 74,233,197, 91,213, 20, -129,193,148,210, 0, 0,200,203,203, 11, 72, 73, 73,137, 88,181,106, 85,252,212,169, 83, 59, 42,140,198, 79,204,192,137,242,182, -239,210,174,198, 65,129,144, 24,135, 91,166, 82,234,198,109,231, 43,226,194,196, 69, 71, 71,127,217,163, 71,143, 97,115,230,204, -209,236,219,183, 79,211,176, 97, 67, 20, 95, 24,225,168,239, 41,165,142, 60,246,240,195, 45,203, 61,124, 0,132,168,168,168, 47, -122,244,232, 49,100,246,236,217,154, 83,167, 78,105,170, 85,171,230,208,116,206,179, 37, 23, 96, 52,110,220,228, 78,167,243,182, -238,123,183,110,221,134,204,153, 51, 71,115,244,232, 81, 77,173, 90,181, 28,154,174,222,153,227, 56, 52,107,214,220, 43,205,238, -221,187, 15,249,238,187,239, 52,137,137,137,154,122,245,234,149,152, 52, 56,210,120, 51,233,188,199, 53, 31, 60,131, 69, 8,225, - 66, 67, 67, 23, 52,107,214,172,219,202,149, 43,121, 0, 72, 76, 76, 68,118,118, 54,162,163,163,161,211,233,160, 82,169, 96, 52, - 26,125,186,203, 10, 15, 15,255,161, 69,139, 22,131, 87,174, 92, 41, 3,128, 63,158,124, 20, 23,100,192,168,107,102,200,229,114, -156, 59,119, 14, 60,207,223, 74,232,248, 17, 63, 63,191, 95,150, 47, 95, 30,212,180,105, 83, 46, 43, 43, 11,213,170, 85,195,245, -235,215, 91,108,223,190, 61,225,185,231,158,123,142, 16,242, 20,165,116,187,183,154,127,253,245, 23,180, 90,173,227,101,177, 88, -200,205,166,143,231,249,152,125,251,246,133,233,116, 58,136,162, 8, 74,105,169, 2,236, 90,240, 36, 73, 66,219,182,109, 45,229, -158, 60, 65,136,217,183,111, 95,152, 90,173,190, 65, 75, 20, 69, 40, 20, 10,112, 28,103,191, 67,132,205,102, 67,171, 86,173, 44, -229,221,209,213,170, 85,235, 9,187,185,226, 56, 14, 75,150, 44, 65, 68, 68, 4,194,194,194,160,213,106,161, 86,251,238,129, 5, - 65, 64, 72, 72, 8, 94,121,229, 21, 60,241,196, 19, 88,184,112, 33,100, 50, 89,169,229,193,193,193, 88,183,110, 29,252,253,253, - 17, 27, 27, 91,106,249,125, 27, 9, 4,130,215,111, 63,239,136,200, 14,236,221, 88,232,220, 54,110,182,163,114, 45, 94,137, 74, -197,235, 82, 73, 20,115, 54,239,186, 52,193,139, 27,128, 74,187,118,237,130, 82,169,244,238,226, 46,138,104,209,162, 69, 37, 15, -229,167,103,131, 6, 13,254,120,229,149, 87,228, 53,106,212, 32, 50,153, 12,130, 32, 64, 16, 4,123,126,140,165,148,198, 74,146, -212,254,234,213,171,244,171,175,190,250,132, 16,210,159, 82,186,198,173,158,205,208,168,200, 36,245,164, 20, 17,225,157,105,149, -107,155, 8,138, 76, 82,207, 0,193,112, 14,192, 61,107,176, 8, 33,254,106,181,250,253,165, 75,151,202, 1,160,115,231,206,239, - 19, 66,254, 71, 41,205,175,168,255, 8, 8, 8, 64, 64, 64, 0, 26, 52,104,128, 1, 3, 6, 4, 54,105,210,228,173,170, 38,211, -136,100,192, 92,102, 25,226,184,152,181, 91,206,132,217,191, 15,121,180,169,188, 91,251, 26, 87,139, 59,184,184,174, 77, 33,137, - 52,117,211,206, 11,205, 60,236, 43, 23, 17, 17,241,105,247,238,221, 31,159, 51,103,142, 31, 0,252,240,195, 15,232,217,179, 39, - 34, 34, 34,160, 86,171, 33,151,203, 33,151,203, 33,147,201, 28,239, 30, 34, 66,124, 68, 68,196, 39,189,122,245, 26, 56,123,246, -108, 63, 0,248,249,231,159,209,187,119,111,132,132,132,192,223,223, 31, 74,165, 18, 10,133,162, 68,139,192, 83,188,206, 93, 58, - 95,232,218, 17,113,106, 37,250,124, 52, 3,129,129,129,248,251,205,151, 33,227, 56,188,188,110, 27,252,253,253, 61,214, 31,238, - 52, 19, 19, 19,113,245,234, 85,183,251,206,243,124,185,229,205,121,223,123,246,236, 57,208,174,249,243,207, 63,163, 91,183,110, - 8, 9, 9,129, 78,167,115,236,251,191,218,156, 87,154,221,186,117, 27,248,221,119,223, 57, 52, 59,117,234,132,224,224, 96,248, -249,249, 65, 46,151, 59,142,167, 47,231,232, 94,214,124, 32, 13,150,189,111, 84, 88, 88,216,227,171, 87,175,118,156,121,153, 76, - 6,165, 82,233,200, 28,206, 23,110,111,195,208,241,241,241,207,172, 92,185,210,177,145,217,165, 80,169, 84, 42,159, 52, 93,244, - 59,119,232,208, 97,241,234,213,171, 85,114,185, 28, 6,131, 1, 73, 73, 73, 8, 8, 8,128, 66,161, 64,191,126,253,248, 86,173, - 90,133,116,232,208,225,119, 66,200, 16, 74,233, 38, 79,154,148, 82,232,116,186, 82, 6,235, 86, 34,247,132, 16,168,213,106,172, - 88,177, 2,130, 32,148,202,100,238, 42,177,240,240,112,143, 81, 9, 0, 80, 42,149,216,189,123, 55, 56,142,131, 76, 38,115,188, -254,250,235, 47,188,249,230,155,184,122,245,170, 99,153,159,159,199,214, 77,162,209,104,212,118,115,101, 63,247,106,181, 26, 50, -153,140, 8,130, 64,120,158, 7, 0,234, 75,135, 80, 65, 16,144,156,156,140, 39,159,124, 18,243,231,207,199,148, 41, 83, 48,100, -200,144, 82,203,243,243,243, 17, 20, 20,132,192,192, 64, 40,149,202,155,206, 11,247, 18,146,203,209,153, 60,229, 19, 77,113, 7, - 15, 9,144, 0, 10,234,248,156,145,113, 14,159,125, 58,139,247, 86, 91,169, 84, 98,215,174, 93,112,110,118,229, 56, 14,114,185, -188,212,111,130, 32, 32, 50, 50,210, 27,189, 73,203,151, 47, 87, 44, 89,178, 4,127,254,249, 39, 68, 81,132, 76, 38,131, 74,165, -130,191,191, 63,130,131,131, 29,175,216,216, 88,242,227,143, 63,202, 27, 53,106, 52, 9,128,123,131,197,209, 0,169,196, 92, 1, - 64, 88,103, 90,229,252, 74, 62, 40,208,175, 56,138,115,143,154, 43, 1,192,248,175,191,254, 58, 36, 33, 33, 1, 0,240,245,215, - 95,135, 12, 31, 62,124, 60, 33,228, 61, 74,233, 77, 55,177,242,192, 98, 66,200,224,146,136,173,170, 75,151, 46,138,111,190,249, - 6,117,234,212,193,107,175,189, 22,252,217, 39,159,244, 1,176,172,236,188, 84, 58, 51, 77,155, 49, 43,208,249,134,234,223, 23, -112, 61, 51, 25,239,191,255,161,199, 58, 25, 0, 23, 21, 21,245,220,220,185,115, 29,221, 33,130,131,131, 29,117,144,107, 29,101, -127, 47,167, 94, 34, 37, 81,161,225,115,230,204,113,104,134,134,134,150,210,144,201,100, 72, 62,241, 15,214,254, 48, 29,218,144, - 72, 12,125,115,154,207,233,140, 86, 42, 16,163, 86,160, 81,163, 70, 80,171,213, 72,148, 21, 95,202,236,230,170,188,116,150,165, -201,243,188, 35,141,148, 82, 24,141, 70, 20, 20, 20, 64, 20, 69,152,205,102, 36, 36, 36,120,181,239,223,125,247,157, 67,179, 82, -165, 74,142,250,221,185,158,183,191,236, 55, 48,229,105, 70, 69, 69, 13,255,254,251,239, 29,154, 33, 33, 33, 14, 45, 65, 16, 32, -151,203,241,243,207, 63,195,203,136,182,215,154,190,158,119, 87,205,139, 23, 47, 98,234,212,169,144,203,229,246, 46, 64,142,136, -101,116,116, 52,190,250,234, 43,175,174,113, 15, 84, 4, 11, 0,201,202,202,146, 78,158, 60,201, 29, 60,120, 16,114,185, 28,161, -161,161,104,209,162, 5, 0,192, 98,177, 64, 16, 4,168,213,106, 82,171, 86,173,171,246,131,102,127,119,110, 75,119, 26, 97,192, - 93,191,126, 93,218,176, 97, 3,183,112, 64, 55,152, 41,208,228,253,105,232,214,187, 55,214, 71, 43,192, 3,104,113, 50, 11, 10, -133, 66,136,140,140,180,218, 79,130, 93,215,185,111,150,155, 81, 11,126, 90,173,246,199, 85,171, 86,169, 56,142, 67, 65, 65, 1, - 36, 73, 66,235,214,173, 65, 8,193,209,163, 71,241,222,123,239,225,143, 63,254,192,242,229,203,213, 77,155, 54,253,145, 16, 82, -143, 82, 90,224,100,166,142,185,203,156,254,254,254, 80,171,213, 14,131,165, 86,171, 73,157, 58,117,174,218,219,207, 93,154,227, -210,146,146,146, 18,202,210,180, 71, 18,250,247,239,239,232,115,102,191, 0, 58, 23, 54,251,231,164,164, 36,119,166,239, 6, 77, - 73,146,208,166, 77, 27, 0,128, 86,171,133, 78,167,195,150, 45, 91, 28,203,155, 54,109, 10,179,217,140, 74,149, 42,225,196,137, - 19, 94,105, 94,185,114, 5, 11, 22, 44,128, 76, 38, 67, 72, 72, 8,100, 50,153,124,211,166, 77, 83,180, 90,109, 0,207,243, 8, - 12, 12, 68,239,222,189,231,244,233,211,199,158, 6,241,175,191,254, 18,202,210,228,121, 30, 42,149, 10, 63,255,252, 51,166, 78, -157,138,119,222,121,199, 53,186, 7,163,209,136,144,144, 16, 4, 5, 5, 33, 40, 40,200,171,116,222, 42,183, 91,147,130, 34,233, -208,122, 28, 63,188, 9, 34, 21, 33,137, 18,168, 68, 33, 74, 18, 14,109,220, 95, 43,227, 66,122, 52, 5,117,244, 54, 18, 11,139, -108,237, 43, 41,235, 0, 88,177, 53,203,244,133,167,116,242, 60, 15,139,197,130,245,235,215,227,220,185,115,216,176, 97, 3, 12, - 6, 3, 42, 85,170,132,192,192, 64,180,106,213, 10,195,135, 15,119,107,176, 92, 53, 69, 81,252, 57, 45, 45,173, 73,171, 86,173, - 72, 94, 94, 30,178,178,178, 80, 80, 80, 0,139,197, 2,139,197,226, 56,135, 90,173, 22, 17, 17, 17, 48, 24, 12,212,100, 50,253, - 92,230,190, 75, 36,143, 35,184,114,126,133, 80,169,122, 63,155,250,234,150, 16,147,193, 44,183,125,187, 66, 51,252,175,177,213, -187,114,148,163, 64,241,174, 19, 2, 42,137, 98,214,166, 29, 23, 94,185,203,231,125,196,232,209,163,235, 57, 55, 79, 15, 29, 58, - 20, 73, 73, 73,245,102,206,156, 57, 2,192,215,190,106,170,129,104, 0,176, 1,235, 80,252,194, 36,131,129, 76, 89,177,162, 63, -128,167,151, 47, 95,142, 33, 67,134,224,211, 79, 62,105,224,106,176, 74, 29, 79, 74,145,124,102, 59, 46,158,217, 5, 73,146, 74, - 94,180,204,207,212,187,116,146,194,194, 66,227,190,125,251,116, 63,253,244, 19,130,131,131, 81,181,106, 85,248,249,249, 65,169, - 84,222, 96, 6,236, 47, 79,251,174,215,235,141, 39, 79,158,212, 45, 94,188, 24, 33, 33, 33,136,141,141,133, 86,171,133, 74,165, -114,220,160,239,219,176, 28, 35,158,234,135,236,203,167, 48,235,127, 79,120,157,206, 23,186,116, 68,140, 90,129,126,147,167,161, - 94,189,122, 88,246, 68, 95,112, 4, 24,249,247, 94,200,100, 50,252,212,243, 17, 40,149, 10,140,252,251,128,215,154, 7, 14, 28, - 0,165, 20,177,177,177, 48, 24, 12,142, 40,155, 92, 46,199,166, 77,155,208,183,111, 95, 44, 92,184, 16, 15, 63,252,176,199,125, - 47, 44, 44, 52, 30, 61,122, 84,247,235,175,191, 34, 56, 56, 24,149, 43, 87,134, 70,163,113,232, 57,155,152,184,184, 56,228,230, -230,162,122,245,234,229,106, 22, 21, 21, 25, 19, 19, 19,117, 11, 23, 46, 68,112,112, 48, 98, 98, 98,160,209,104, 74, 69,194, 38, - 77,154, 84, 74,163, 81,163, 70,183,172,233,235,121,119,213, 28, 48, 96, 0,170, 87,175, 14,127,127,127,199, 49,112, 53,218, 62, -210, 28,165,187, 57,152, 1, 40,156,222, 51, 1, 28,112,179,158,253,119, 25,128,198, 37,203, 68, 0, 5, 0, 2,221,232,149,165, -147, 85, 18, 47, 14,117, 89,223,245,127, 74, 27, 44, 66,136,189, 60,182, 7,176, 19, 0,234,214,173,139,236,236,108, 40,149, 74, -180,104,209, 2,153,153,153,142, 48,159, 36, 73, 24, 52,104, 16, 63,118,236,216, 48,142,227, 96,181, 90, 65, 41, 5,207,243,176, -223,249,185,250, 0,142,227,208,170, 85, 43, 28, 47, 57,166,221,122,247, 70, 76, 76, 12,146,157,238,200,135, 12, 25, 66,222,124, -243, 77,193, 30,189,160,148,194, 96, 48,160, 81,163, 70,234,114,162, 35,255,251,253,247,223, 3, 20, 10,133,195, 92,217,211,114, -242,228, 73,124,246,217,103,120,250,233,167,113,249,242,101, 68, 70, 70,226,173,183,222,210, 77,159, 62,253,127, 0, 38,123, 58, -155, 58,157,174,148,193,122,234,169,167,132, 86,173, 90,133,105, 52, 26, 71,116,171,196, 84,162, 85,171, 86,196, 83, 4, 75,146, - 36,172, 91,183,206,237,221,161,235, 29, 67,201,168, 11,175, 52,247,237,219,231, 48,103,246,232,133,125,121, 82, 82,146, 35,130, - 85, 98, 4,203,211,164,118,163,102, 15,147,203,100, 50,249,190,125,251, 62,138,140,140,212, 61,245,212, 83, 40, 40, 40, 64, 84, - 84, 20,186,118,237, 10, 73,146, 96,177, 88, 48,106,212,168,114, 35, 47, 50,153, 12,251,247,239,199,244,233,211, 49,118,236, 88, -204,153, 51, 7,157, 59,119, 46, 21,193,178,223,233,250,251,223,245, 49, 14, 21, 24,194, 2, 44, 54, 43,244,122, 3, 40, 21, 33, - 74, 20,146, 40,225,232,214, 67,181, 46, 28, 62, 23,191,122,209, 2, 25, 0, 24,183, 45,119,222, 42,114,192,236,223,106,183, 15, -150,239,219,122,221,178,207, 67,179, 51, 94,126,249,101, 76,152, 48, 1,143, 63,254, 56, 54,110,220,136,119,223,125, 23,207, 61, -247,156,195,188,219,243,130, 23,205,142,115,135, 14, 29,250,210,178,101,203,234,188,241,198, 27,156,189, 76,106, 52, 26, 16, 66, - 96, 52, 26, 29,175,147, 39, 79, 74, 47,190,248,226,105,179,217, 60,183,204,140, 36,168,143,104,149,250, 53, 25,217, 92,205, 43, -127, 7,115, 68,240,183,132,198,182,207,235, 85,171, 51,237,252, 68,213, 32, 42, 21, 71,248, 40, 40, 76,198, 34,188, 51,246,109, -254,110,158, 42, 66, 72,207, 46, 93,186,116,253,232,163,143,110, 88,246,209, 71, 31,225,196,137, 19, 93, 9, 33,201,101, 53,137, -150, 97,174, 98, 2, 34, 34,102, 2,128,250,202,149,209, 6, 32, 21, 0,166, 0,221, 68,160,239,198,141, 27, 1, 0, 85,170, 84, -129, 4,212, 39,192, 47, 60,176,216, 6,172,117, 23, 81,183, 88,109, 48, 24,140,144,104,113, 62,146,168, 4, 73, 44,142,130,186, -154, 44, 79,237,110,148, 82, 74, 8,145,120,158, 71,131, 6, 13,208,173, 91, 55, 40, 20, 10,232,116, 58, 71, 61,239, 90, 39,121, -113, 81,164, 0, 36, 66, 8,226,226,226,208,181,107, 87,200,229,114,104,181, 90,248,251,251, 59, 12, 22,207,243,104,208,170, 35, - 22, 47,156,129, 97,221,226,241,212, 35,225,248,253,104,150, 87,233,140,213, 40, 16,171, 86,162,110,221,186,240,243,243, 3, 33, - 0,207,115,142,116,106, 53, 42,200, 29,205,143,222,237,251,149, 43, 87,144,156,156,140,228,228,100,112, 28,135,214,173, 91, 67, -161, 80, 64, 16, 4,156, 57,115, 6,147, 39, 79,134,217,108,246,106,223, 57,142, 67,205,154, 53,209,177, 99, 71, 40, 20, 10,216, -175, 21,206, 77,131, 50,153, 12, 5, 5, 5,168, 81,163, 6, 86,172, 88,129,182,109,219,122,212,172, 87,175, 30,218,183,111, 15, -185, 92, 14,181, 90,237,232,170,163,112,218,215,194,194, 66,199,113,104,210,164,137, 79,154, 27,246, 95,198,188, 13, 91, 96, 50, - 75,200,215, 91, 75,109, 16, 89,201, 31, 59,127, 29,235,213,190,219, 53,231,206,157,139,220,220, 92, 71, 61,196,113,156,227, 69, - 8, 65, 76, 76, 12,190,251,238, 59,119,229,208,225, 69, 40,165,219, 92, 22,135, 18, 66, 86, 59,157,199,222,132,144,213,206,239, -101,173, 87,242,241,145,241,227,199, 55,155, 62,125,250,212,150, 45, 91, 46,222,189,123,247,162,178,244,202,210, 25, 63,126,124, -252,244,233,211,167, 58,175,239,230,127,110,140, 96, 21,231, 57, 66, 1,112,246,200, 76,116,116,180,163,221, 89,167,211, 65, 46, -151, 59, 54,180,217,108,248,241,199, 31, 17, 22, 22,134,240,240,112,199,123, 89, 25,186, 74,149, 42,160,148,226,181,204,226, 46, - 64,235,162,228, 72, 6,208, 43,147, 58,244, 68, 81,196,178,101,203,224,231,231,231, 40,232, 58,157,174,220,230, 34,133, 66,209, -190,121,243,230,156,201,100,114,132,201, 57,142,195,201,147, 39, 49,125,250,116, 12, 25, 50, 4,181,107,215,134, 40,138, 40, 42, - 42, 66,135, 14, 29,100,179,102,205,106,239,173,193,210,104, 52,142,126, 71, 38,147, 9,155, 55,111, 70, 96, 96, 32,130,130,130, - 16, 18, 18,130,224,224, 96, 40,149, 74,231,140, 81,110,179, 99,255,254,253, 75, 69,174,156,163, 86,206, 21,154,189,217,207, 27, -205,135, 31,126,216, 17,189,210,233,116, 88,187,246,223,250,185, 69,139, 22,160,148, 34, 52, 52, 20,123,246,236,241, 88,233, 54, -109,218, 20,146, 36, 33, 44, 44, 12, 50,153,140,108,218,180,105, 74,137,185, 34, 50,153, 12,255,252,243, 15,146,146,146, 16, 26, - 26,234,184, 43,245, 68, 81, 81, 81,198,172, 89,179,196,111,190,249, 6, 0,208,169, 83, 39,228,229,229, 93,115, 90,158, 61,108, -216,176, 82,251,155,147,147,147,253, 0,248, 43,216, 44, 54,232, 13, 70, 20, 22, 20,193, 42,137,176,218, 68, 92, 75,203, 12, 28, -251,230,104,217,167,163,134, 3, 0,222,252,226,107, 20,124,247,111, 5,246,231,155,131,195,250,127,182,100, 28,128,126,229,233, -235,245,122, 24,141, 70, 84,169, 82, 5, 7, 14, 28, 64, 65, 65, 1, 58,119,238, 92, 42,250,235,161, 9,194,249,220,155, 9, 33, -173,123,247,238,125,224,243,207, 63,175, 94,191,126,125, 82, 84, 84,132,162,162, 34,232,245,122,216, 63, 31, 59,118,140, 46, 90, -180,232,130, 94,175,111, 69, 41, 45,179,207,144, 34,161,224,156, 57,209,111,217,142, 35,242,222,143, 13,232, 27,144,154,150, 98, -203, 54,168, 10,243, 12,167, 77, 34, 61, 1, 42, 82,136,148,130,138, 18, 68, 42,225,110,142,223, 38,132,196,212,170, 85,235,197, -133, 11, 23,186, 53,164, 60,207, 99,225,194,133,104,211,166,205,139,132,144,147,229,117,238,183, 83, 21, 80,216,100,178,177,191, -253,246,155, 28, 0, 58,118,236, 56,182,170,213,250,102, 50, 96,174,223,176,225,192,221,187,119, 7,104, 52,197,227,132, 2, 2, - 2, 64, 41,229,245,122,125, 64,171, 86,173, 6,194,157,193,146, 40,172, 86, 27, 12, 70, 19,114,243, 10, 97, 53, 91, 97,147,108, - 16,109, 18,108, 82,113,116,212, 38,138,144,108, 34,108,146, 8, 94,224,253,218, 63, 92,165,176, 56,150, 69,114,183,237,189, 92, -217, 93, 22, 45, 30,225, 5, 68, 68, 68, 56,154,132,157,251,202,120,138, 98,184, 65, 44,174, 11,169,163,110, 60,178,117, 53,174, -157,216, 9, 57,161,144, 68, 43, 36,155, 5,162,213, 2, 30, 18, 78,156, 79, 67,253, 40,143,117,136, 35,157,221,223,255, 16, 45, - 90,180,192,239,131,251,129, 16, 96,228,230, 61,144,203,229, 88,244,104,103, 40, 84, 10, 60,191, 97,175,183,233, 44,181,239,137, -137,137,120,237,181,215,240,241,199, 31, 67,173, 86, 59,110, 78, 78,157, 58,133, 37, 75,150,160, 75,151, 46, 94,239, 59, 33,197, - 77,173,246, 99, 56,126,252,120,164,167,167, 99,230,204,153,104,214,172, 25,100, 50, 25,114,115,115,209,170, 85, 43, 92,189,122, -213, 43, 77, 74, 37, 4, 7, 7, 59,186,235,184,246, 17,179,223,200,250,114,142,156, 53,159,125, 52, 18, 43,119, 45, 2, 1,193, -222, 95, 71,151,186, 30,125,187,100,135,207,154, 19, 38, 76, 40,149, 78, 95,162, 87, 78, 94,132,148,177,188,183,151,117,154,125, - 61,251, 65, 86, 78,159, 62,125,170,235,246,158,244,156,151,187,108,111,118, 49,101, 87, 61, 54, 17, 82, 74,105,116,116, 52, 36, - 73,130, 78,167,131, 66, 81, 28, 1,115,189,144,106,181,218, 82,142,220, 83,123, 50,207,243,160,148, 58, 14, 44,239,102,249,158, - 61,123,110, 48, 1,223,127,255,125,185,237,180, 54,155,173,158,159,159, 31, 10, 10, 10, 28,125,164, 20, 10, 5,198,141, 27,135, - 97,195,134, 57,204,149, 66,161,192,252,249,243,145,144,144, 0,179,217, 92,175,188, 3, 42,151,203,245, 13, 27, 54,228,236, 81, - 32,181, 90, 77,134, 12, 25,194, 91, 44, 22,168, 84,170, 82, 81, 39,123,223, 52, 79,102,200, 30,109, 90,191,126,189, 87, 17, 44, -111,251, 32, 81, 74,113,232,208,161, 82, 70,173,100,168, 49, 0,224,240,225,195,142, 11,173,183,237,221,162, 40, 66,173, 86, 19, -185, 92, 78,180, 90,109,192, 83, 79, 61,229,208,181,159,115,251,126,123,211,209,250,200,145, 35, 29,202, 91,126,244,232,209, 7, -114, 58, 6, 73,146, 96,177, 90, 97, 48, 24, 81, 80,164,199,164,105, 37, 45,106,147,176, 15,192,190,214, 35, 94,195,203,221,186, -116,132,135,209,125,101, 17, 28, 28,140, 63,254,248, 3, 50,153, 12, 43, 86,172,128,191,191, 63,250,246,237, 11,127,127,127,140, - 29, 59, 22, 79, 60,241,132,215, 6,171, 36, 47,229, 17, 66, 90,143, 30, 61,250,192, 39,159,124, 82,165, 74,149, 42,176, 88, 44, - 48,155,205,176, 88, 44, 56,127,254, 60, 22, 45, 90,148,162,215,235, 91, 83, 74,243, 60,233, 41, 18, 10,206,173,126,163,122, 70, -155, 1,143, 26, 79, 92,217,128,171, 87, 50, 97, 19, 83, 97, 19, 69,216,172,182, 98, 67, 32, 73,176, 89,108,224,121,206,191, 67, -203,216, 77,197, 29,254,137,121,235,158,228, 30,119,240, 84,209, 51,103,206,100,135,134,134,218,239, 32,253,205,102, 51, 41,169, - 75, 40, 0,123, 7,247, 34, 0, 22,111, 4, 83,128, 17,159,126,252,113,101,123,243,253,199, 31,127, 92,249,173, 55,222, 24, 1, -224,203, 19, 71,143, 46,120,246,217,103, 71, 47, 93,186,180,212, 54,207, 62,251, 44, 78, 28, 61,186,160,172, 16,129,213,106,133, -193, 96, 66, 86,214,117,188, 48,242,253,127, 67,206,160,142,142,238, 37,179, 58, 2,128, 10, 0,178,174,158,197,168,215,222, 82, -150,117, 67, 85,191,126,125,123,121,135, 76, 38,187,161, 19,178,115,253,238,169,254, 40,137, 12,149,234, 98, 33,151,203,113,110, -247,106,140, 30, 49, 16, 16,109,128,165, 8,176,232, 65, 45,122, 80,115, 17,136, 66, 13,106, 53,122,212,181,167,211,222,109, 67, -224, 57, 40, 21,255,214,155, 26,141, 26, 10,149,194,171,116,186,219,247, 75,151, 46,225,149, 87, 94,129,217,108,198,128, 1, 3, - 96, 52, 26, 97, 50,153, 96, 52, 26, 17, 23, 23, 7,131,193,224,245,190, 75,146,228,136, 2,142, 30, 61, 26,205,154, 53,195,228, -201,147, 49,102,204, 24,196,197,197, 97,196,136, 17, 88,188,120, 49,226,227,227,161,215,235, 61,106,218,235, 18,157, 78, 7, 65, - 16, 28,117,176,243,185,178, 27, 44,111,207,145, 59,205,226,233,192,112,195,121,127,253,169, 78, 62,107, 78,157, 58, 21, 89, 89, - 89, 55, 68,174,156, 35, 88,179,103,207,190,217, 27,162,213,222,152, 44,167,245, 18, 75,126, 50,140, 27, 55,238, 29, 66,200,234, -113,227,198,189, 51,109,218,180, 36,111,244,202, 88,254, 87,201,123, 47,167,223, 18, 61, 26, 44,160,120,232, 40,165,212, 17,214, -180, 31, 56,251, 50, 0,208,104, 52, 88,189,122, 53,150, 45, 91, 86,234,130, 82, 22, 28,199, 65,146, 36,172, 9, 45, 62, 17, 61, - 75, 34, 87,246,239, 61,174, 73,232,221,187, 55,226,226,226, 74, 69,175,212,106,117,185,102, 67,146, 36, 92,186,116, 9,199,142, - 29, 67,203,150, 45,145,151,151, 7, 1,192,155, 71,143,162,254, 83, 79,193, 84, 98,252, 20, 10, 5, 94,124,241, 69,175, 78,224, -129, 3, 7, 74,117, 2,170, 95,191,126,106,171, 86,173,162,247,236,217,227,136,104, 41,149, 74,168, 84, 42,135,201,240,178, 80, - 99,224,192,129,165,204,144,171,193,178, 23,158,117,235,214,121,213, 68, 72, 41, 69,187,118,237, 28,209, 43, 63, 63, 63,252,249, -231,159,142,117, 30,121,228, 17, 16, 66, 16, 22, 22,134,181,107,215,122,212,180, 31, 83,251,185,231,121, 30, 69, 69, 69, 72, 76, - 76,132, 66,161,112,244,207, 80,171,213,142,253,103,148,117,194, 37,152,173, 86,232, 13, 70, 20, 20, 20, 87,164,231,142,253, 94, -106, 21,139,233,230, 7,167,217, 35,161,249,249,249,216,188,121, 51,254,248,227, 15, 52,107,214,172, 84,243,160,183, 77,132, 78, -121, 52,147, 16,210,102,204,152, 49,123,167, 76,153, 18, 21, 18, 18, 2,139,197,130, 75,151, 46,225,199, 31,127, 76,215,235,245, -109, 40,165,153, 62, 8,194,102,181,193,168, 55, 32,175,160, 8, 19, 63,154, 95,102, 21, 1, 0, 22,115, 1,122,247,104,167,184, -163,167,137,210, 52, 0,207, 57,149,171, 5, 0, 2, 74,190,230, 83, 74,135,249,162, 39, 3,218, 15, 24, 56,176,227,232,209,163, - 29,191,141, 30, 61, 26,123,247,238,237, 40, 91,182,236,152, 21,216,202, 47, 91,214, 96,230,204,153,142,117,102,206,156,137, 63, -150, 45,251, 91, 4,182,150,117, 28,173, 37, 77,132,133, 69, 6,248, 7, 70, 34,237,226, 54,143,105,145,243, 38,208,114,234,101, -123, 29, 82, 86,191, 27,111,205,149,243,197,182, 97,195,134,176, 55, 49,203,229,114, 52,232, 56, 16,159,127,249, 61,148, 28, 69, -255,142,245, 17,170,150, 64, 52,193,144,183, 27, 7, 18, 24, 91,188,225,196,198,240,166,174,219,246,238,155, 56,175, 85,225,197, -141,187, 32,147,201,240,199,224,158,144, 43,228,120,250,175,237,197,131,123,134,247,135, 92,169, 64,215,111,151,120,115,161,118, -236,251,185,115,231,176,107,215, 46,212,173, 91, 23,103,207,158,117,244,177,181, 95,183,188,108, 77,160,246,121,174,236,245,248, -149, 43, 87,208,187,119,111,200,229,114,204,159, 63, 31,219,182,109,195,152, 49, 99,240,236,179,207,162, 67,135, 14,110,251,197, -186,106,198,199,199,151, 58, 71,101,245,143,242,229, 28,185,211,116,228,223,155, 60,239,206,154,246,206,237,238,204,250,173,118, -108,119,138, 22,185,107, 50,235,229, 38,242,212, 28,197,125,163, 76,211,166, 77, 75,154, 54,109, 90,111, 66,200,234,105,211,166, -245, 46, 39,130,213,203, 67,132,171, 23,138,251, 92,149, 95, 71,187,180,125,182,119, 54, 81,138,114,218,178,181, 90, 45,158,123, -238, 57,140, 29, 59,214,209,145,177, 60,236,206,181, 60, 86,175, 94,125,195,111, 43, 86,172,240,212, 68,120, 50, 32, 32,160, 89, -199,142, 29,145,151,151,135,203,151, 47, 67,167,211,161,254,103,159,225,232,203, 47,163,241,156, 57,224, 58,118,116, 20,248,163, - 71,143, 66,169, 84,158,244,245,164,234,116, 58, 4, 5, 5, 65,165, 82,193,207,207, 15,126,126,126,208,106,181, 14,163,229,169, -137,208, 94,152,255,250,235,175,114, 35, 87,206, 33, 95,111,204, 16,165, 20,123,246,236,185, 33,130,101,255, 79,251, 50,123, 36, -195, 27,205,146,136, 37, 85, 42,149,224,121, 30, 26,141,198, 17,238, 87,169, 84,142,151,183, 17, 44, 79, 19,137, 86,173, 90,181, -212, 68,164, 50,153,172,212, 68,164,247,127, 19,161, 9, 69,133, 69, 21,174,111, 54,155, 33, 8, 2,254,248,227, 15, 60,244,208, - 67, 14,115,101, 55, 86,206,231,221,199, 10, 44,149, 16,210,126,214,172, 89,251, 62,255,252,243,160,194,194, 66,204,159, 63, 63, -175,176,176,176, 61,165, 52,213, 39, 45, 0, 86,139, 13,122,147, 9,133, 5,197,199,224,124,210,239, 30, 77,217,253, 76,189,134, - 13,135,253,244,211, 79, 55,252,254,211, 79, 63,225,236,217,179,195,112,244,232,214,202,192,156,177, 99,199,214, 72, 72, 72,168, - 12, 0, 99,199,142, 77,169, 12,204, 41,175,156,219,155, 8, 11, 75,204,186,177, 40,171,194, 34,173,174, 55,124,183,122, 65, 36, -132, 56, 76, 70,151,199,159, 67,250,133, 83,168,171,201, 66, 88,160, 22, 82, 65, 58,228,157, 38,226,232,117, 13,190,152,179,222, -167,116,106, 20,114,168,212,255, 54, 55,169,212, 42, 40, 75, 90, 21, 8, 33, 80,105,212,144, 41, 20, 62,239,251,169, 83,167,160, -209,104, 32,138,226, 13,215, 27, 95, 71, 52, 83, 74, 29,215,206,207, 63,255, 28,111,191,253, 54,230,207,159,143,163, 71,143,162, -113,227,198,232,220,185, 51,174, 93,187,134, 35, 71,142,192,100, 50,121,157, 78,231,235,197,137, 19, 39,176,105,211, 38,156, 62, -125, 26, 41, 41, 41, 55,125,222, 93,155, 25, 75, 90,112,138,205,235,166,127,240, 88,151,166, 55,165, 57,113,226, 68, 92,187,118, -237,134,200,149,115,247,163,178, 34, 88,206, 94,164, 28, 18, 93,162, 71,176,247,135,178, 27, 34,215,239, 0,130,236,191,141, 27, - 55,238, 29,111,183,115,254,110,143,128,121,219, 84, 41,184,187,232,218,155,152,236, 7,221, 57, 50,101,255,172,209,104, 28, 81, -166,216,216,216,114,163, 87,246, 2,199,243, 60,218, 94, 40,128, 66,161,112, 52,231,245,184, 38,149, 10,145,199,197,197,149,234, -131,229,124, 82,220, 97, 50,153,182,110,221,186,181, 73,223,190,125,249, 19, 39, 78, 64, 16, 4, 72,146, 4,211,195, 15,163,241, -156, 57, 56, 54,122, 52, 30,185,120, 17, 38,171, 21, 42,149, 10,235,214,173,179,232,245,250,173,190,100, 26,142,227,136,221, 96, - 41,149, 74,248,249,249,193,223,223,223, 17,205,241,165, 18, 42,235, 14,209,249,229, 75,129,182,119,232,119,190,176,218,207,159, -193, 96, 40,101,184,188,197,185,201,192,110,138, 2, 2, 2, 74, 53,139,218,163,120,222, 24, 44, 79, 19,137, 42,149, 74,255,237, -219,183,215,240,247,247, 7,165, 20, 89, 89, 89, 24, 60,120,240,153,251, 62,128, 5, 90,220,201,221, 96, 68,161,193, 88,225,250, -191,254,250, 43,206,157, 59, 7,139,197,130,105,211,166,221, 96,172,110, 38,130,229,148,175,206, 53,109,218, 84,234,222,189, 59, -246,236,217, 3,165, 82,105,165,148,250, 60,127, 21,149, 36, 88,172, 54, 24, 13, 38, 20, 22, 21,225,191,192,241,163, 71,151,105, -181,218,193, 0,116,185,185,185,124, 64, 64, 0, 52, 26, 13, 12, 6, 67, 30, 95, 50, 82, 48, 25, 48,171,173,214,143, 31,127,252, -241,153, 0, 32, 88,173, 31,151, 55, 15,150,195, 96, 85,240,113,180,215, 91,101, 69,175,110,214, 92, 17, 66,138,135,231,115, 28, -230, 79,123, 27,117, 53,153,104, 90, 77, 11,227,181,115, 80,250, 87, 2, 9,172,138, 47,230,172,199,137,228,235, 62,165,115,200, -130,223, 81,185,114,101,172,126,186, 31,148, 74, 37, 6,255,190,169,184,147,246,136, 39, 32, 87, 41,209,233,235, 95,111,106,223, -245,122,125,153,145, 42,111, 35, 88,206,154,118, 3,216,180,105, 83,212,172, 89, 19, 91,183,110, 69,211,166, 77,113,246,236, 89, -156, 61,123, 22,201,201,201, 56,122,244, 40,114,114,114,124, 62, 71, 75,150, 44, 65,102,102, 38,228,114, 57,242,243,243,113,241, -226,197, 50,251, 63,251,114,222,237,212,233, 53, 17, 0, 16, 21, 26,224,147,193,114,214,156, 49, 99,134, 47,211, 60, 56,231,243, -242, 86,202,114,233,235,100,255,110,118, 49, 59,174,223, 93,215, 7,128,107, 0,120, 15,219,185,126,207,154, 54,109,218, 86,123, -228,171, 68,151, 47,171,255, 85,169, 8,150,139, 9, 48,212,169, 83, 71,237,220,126,202,113, 28,252,252,252,200, 91,111,189,197, - 19, 66,160,211,233, 16, 16, 16,128, 90,181,106,193, 98,241,220, 45, 65, 46,151, 27, 90,180,104,161,118, 14,189, 18, 66,160,213, -106,249, 49, 99,198,144,239,191,255,222,237,118, 43, 87,174, 44, 55,115,219,108,182,153, 79, 61,245,212,243,169,169,169, 65,225, -225,225,200,200,200,128, 92, 46, 47,158, 45,182, 67, 7,180,189,112, 1,150, 18,195,112,234,212, 41,204,155, 55,175,200, 98,177, -204,188,153, 8, 86, 72, 72, 8,148, 74,101,169, 81, 49, 78,161, 85,175, 34, 88, 21,105,174,236,154,206, 23, 86,251,231, 17, 35, - 70, 56,190,251, 82, 73,202,229,114,218,171, 87, 47,199, 51, 8, 3, 3, 3, 81,169, 82, 37, 92,189,122,245,223,145, 58, 37,145, - 59,111, 13,150,167,137, 68,101, 50, 25, 44, 22,139,163, 57,243,235,175,191,190,105, 99,112, 79, 25, 44,155, 68,116,186, 80, 68, - 69,213, 70,104,152, 17,146, 36, 86,152,182,205,102,195,200,145, 35, 75,205,121,101,191, 16,219, 39,177,181,143,240,117, 14,255, -251,122, 39,126,203,209, 17, 10, 88,109, 37, 81, 60,189,249,190, 59,135,177,177,177,254, 37, 77,134,174, 44,166,148,174,117,123, -110, 74,166,100,224,129, 15, 47, 95,190,220, 32, 32, 32, 0, 93,187,118,197,170,229,203, 87,190, 15, 56, 66, 54, 6, 32, 85,125, -229,202,255, 74, 62,167,121, 10,234,217,155, 8,139,244, 21,109,214,201, 13,209,171, 91,109,202,225,184,226, 27,179, 63,191,251, - 24,117,213, 87,209,184,138, 18,187,246, 30,193, 67,149, 41,168, 73,126,211,233,212,233,116,197,157,241, 53, 26, 40,149,255,246, -185, 82,106,212,144, 43,148, 55,189,239,206,145,170, 91,141, 96, 17,194,149, 58,142,207, 63,255, 60,198,142, 29,139,174, 93,187, -226,236,217,179,216,190,125, 59,206,156, 57,131,215, 94,123, 13,241,241,241,232,214,173,155, 79,231,232,207, 63,255, 68, 94, 94, - 30, 40,165,200,204,204,132,209,104,196,132, 9, 19,110,249,188,219,185,176,113, 42, 0,224,247,141,135,110, 90,115,252,248,241, -142, 57, 24,237,215,252,242,162, 86, 94,178,223,195,119, 95,183,191,237,184, 53, 88,167, 79,159,118, 59, 86,190, 94,189,122, 87, - 59,117,234, 20,118,250,244,105,232,116, 58,212,170, 85, 11, 38,147,169,204,102, 8,231,167,109, 39, 37, 37,185,213,172, 94,189, -186,165, 75,151, 46,178,136,136,136, 82,145, 43,251, 8, 27,103,103,236,170, 89,114, 17, 40, 32,132,188,216,186,117,235, 95,214, -174, 93,171,174, 85,171, 22,242,242,242, 0, 0,243,231,207,199,171,175,190, 10,181, 90,141,211,167, 79,163, 95,191,126,122,189, - 94,255,162,243, 28, 88,238, 52,221, 25, 25,185, 92,238,104, 38,179, 55,149, 41,202, 9, 69,151,241,164,113,204,154, 53,203,237, - 92, 80,174,204,153, 51,167, 56,183,122,145,206, 79, 63,253,180,194, 52,247,238,221, 91,234, 25,131,125,250,244,249,174, 91,183, -110, 72, 73, 73, 41,213, 44, 88,158,193,114,213,244, 52,145, 40,207,243, 8, 15, 15,199,148, 41, 83, 80,169, 82, 37, 68, 68, 68, -220, 96,176, 60,157,163,155,188,123,191,173,154,148,163,137, 95,126, 62,177,205,119, 63,252, 46, 83, 42, 56,236,217,254, 59,242, -115,174,148,142,192, 90,254, 29, 18,173,104,218, 9,230, 67,155,189, 74,167,201,100,194, 39,159,124,130,137, 19, 39, 98,226,196, -137,229,166,169,140,225,208, 30,247,221,217, 96,121, 99,182,220,105, 74,146, 72, 84,154, 32,104,180, 81,136,143, 15,130,228,197, - 92,157,210,221, 63,239,250,148,148,148,128,202,149, 43,227,204,153, 51, 4,255,246,199,250,247, 92, 41, 20,131,225, 52,218,207, -109,121, 7,142, 46, 90,180,168, 65,195,134, 13,241,245,215, 95, 3,192,211,159,108,216,240,196, 68, 67,113, 56,179,100, 74,134, -117,222,164, 83,164, 34, 81,105, 2,161,214,149, 28, 71,201,251, 57, 79,105, 57,251,110,191,248,221,226,141,222, 13,154,246,237, -207,239,249, 11,189,122,196, 96,247,190,163,216,156,170, 69,101,101, 58, 34,245,153,144, 50, 79,226,127, 3,155,226,139,101,197, - 23,241,163, 7, 61,107, 18, 66,176,243,173, 23,161, 83, 41,241,216,162, 53,144,201,100,216, 58,250, 25,200,229,114,180,251,188, -184, 73,246,216, 39,227, 33, 40, 21,168,251,218, 68,175,210,233,218, 82, 99,239,115,229,108,174,202,139, 96,149,183,239,133,133, -133,200,201,201,193, 47,191,252,130,225,195,135,227,218,181,107,184,120,241, 34, 78,159, 62,141,197,139, 23,151,186,198,193,135, -115, 52,110,220, 56,188,249,230,155,224, 56, 14, 13, 26, 52,192,196,137, 19,209,178,101, 75,159,207,145,235,121,119,197, 83,244, -170, 60,205, 47,191,252,210,231, 1, 91, 15, 34, 62,117,208,176, 71,178, 42, 85,170, 4,173, 86, 11, 0,165, 46,176,158,154, 9, -203,210,180,217,108, 80,171,213, 80,171,213,165,166, 69,232,219,183,175,199, 8, 86, 73,229,191,142, 16, 50,180,126,253,250, 63, - 78,156, 56, 81,219,190,125,123, 89, 84, 84, 20, 18, 18, 18,112,250,244,105,252,245,215, 95,150,217,179,103,235,245,122,253,112, - 74,233,198,155,169,147,237, 29,191,157,103,180,247, 5, 81, 20, 83, 46, 94,188, 24,249,233,167,159,242,132, 16,204,156, 57,179, -212, 4,173,174,251,184,119,239, 94,155,167, 38, 25,155,205,150,114,241,226,197,200,207, 62,251,172,148,166,253,229,106, 82,188, -209, 44, 11,251, 62,187, 30, 3,111, 10,143,167,137, 68, 5, 65,192,169, 83,167,240,193, 7, 31,128, 16, 82,106,224,196,253,204, -174,253,233,223,183,106, 22, 21, 52,120, 96,199,134, 4, 28,204,110, 34,189,124,118,174,195, 92,245,255,108, 9,254,124,243, 9, -111,206,197,197,109,219,182, 85,153, 58,117, 42,207,243, 60,102,204,152, 81, 42, 47,185,158,247,191,255,254, 91, 84,171,213,151, -111,118, 63, 44, 22,139,199, 81, 84,229, 20,240, 93,179,102,124,208,245,187,159, 86,201, 8, 49, 99,207,182,223,145,151,235,126, -104,186, 66, 38, 96,193,162,149, 54,129,231, 82,238,242,169,251,174,115,231,206, 19, 54,109,218, 36, 84,174, 92,249,166, 69, 98, -128, 85,179,102,205,234,241,212, 83, 79, 5,215,171, 87,207, 62,248, 68, 81,242, 66,201,204,238,235,188, 52, 73, 43,190,248,244, -131,167,231,254,180, 74,193, 17, 11,246,108,255, 29,121, 46,102,253,198,104,180, 12, 11, 23,173,176, 8, 2,127,202, 83, 29,124, - 51, 35,152,189,161, 73,175,225,248,102,205, 60,132, 53,236,129, 65,125,218, 96,231,215, 79,227,241,122, 6, 88,126, 27,130, 6, -131, 22, 96,254,248,226,232, 77,227,165,227,189,186, 86,248,235,254,157,176,146,227, 56, 40, 85,106,200, 20,255, 70, 95, 20, 26, - 13,120, 31, 34,182,246,125, 47, 47, 82,229,235,241,224,121, 30,113,113,113,168, 94,189, 58, 90,183,110,141, 38, 77,154,160, 67, -135, 14, 56,114,228, 8,142, 28, 57,130,215, 94,123,173, 76,115,229,205, 57,234,218,181, 43,186,119,239,126,203,231,198,245,188, - 87, 4,222,228,165,151, 95,126, 25, 0,110, 53,154,245,224, 26,172,208,208, 80, 40, 20,138,155, 50, 84,238, 52,205,102,179,195, - 88,169,213,106, 71,196,106,229,202,149, 94,103,112, 74,233, 70, 66, 72,252,123,239,189,247,186, 90,173,238, 96, 48, 24,234, 2, -128, 70,163, 57,169,215,235,183, 88, 44,150, 47, 41,165,185,183,146, 86,103,131,225,198,205,151,123,139,159,153,153,217,109,216, -176, 97, 27, 57,142,171, 86,222,131,153,157,204,106,242,213,171, 87,123,120,210,124,242,201, 39,221,106,186,211,245, 70,179, 12, -115, 88,202, 84, 57,143, 48,244, 42,147,121,152, 72, 84, 38,147, 65,167,211, 97,249,242,229, 8, 9, 9,121,160, 10,216,238,131, -233,159,148,183,188,125, 37,229, 54, 0,161,253, 63, 91,114,121,107,150, 57,182,125, 37,197,165, 63,223,124,162,138, 7,195,211, -106,250,244,233, 59,173, 86,107,172,151,249,246,146,201,100,106,227,107,218, 41,165, 56,117,234,148,244,252,243,207,103,101,102, -102, 14,186,153,253,223,190,231,210,231,109, 90, 68, 85, 26,216,175, 77,115, 16, 2,179,217, 84, 86,203, 2,165,148, 82,129,231, - 82,182,237, 77,121,254,110,158, 51, 74,233, 97, 66,200,228, 26, 53,106,188, 4,160,172, 43,225, 98, 79, 58,201,128, 89, 97, 50, -125,218,172, 89,179, 49,239,188,243, 78, 96,159, 62,125, 80,185,114,101, 4, 4, 4,248,156,166,157,251, 82, 95,106,217, 44, 50, -230,177,190,109,186,113,132, 80,147,217,228, 33,186, 80,114, 60, 5,254,212,182,189, 41,141,202,139,206,219, 77,249,237,136, 54, -116, 26,248, 44, 58, 13,124,214,145,159, 54, 47,107,143,196,180, 13, 72,224,210, 96,154,219, 6,196,223,158,213, 61, 79,115,195, -113, 28,250,252,180, 28,114,185,220,145,206, 86,211, 75,143, 11,168,245,138,247,207, 82,119,222,119,231, 8,150,155,186,216,167, - 62, 88, 60,207, 35, 43, 43, 11,167, 79,159,198,213,171, 87,161,215,235,113,226,196, 9,152,205,102,228,228,228,192, 62,210,240, -102,210, 89, 81,231,232,110,106,254, 23,140,213, 77, 25, 44, 74,105,234, 67, 15, 61,228,233, 98,236,211, 40, 35, 65, 16,140,109, -218,180, 33,238, 70, 27,216, 63,171,213,106,131,151,233,203, 5, 48, 17,192,196,146,231, 77,193,108, 54,223,114, 71, 18, 81, 20, -211, 91,180,104,193,151,215, 39, 65,146,164,171, 30,204, 80, 17,128, 10,125,116,248,237,208,116, 83,104,196,151, 94,122,169, 92, - 39,165,213,106,203,237, 92,228,105, 34, 81,189, 94,159, 49,108,216, 48,209,185,169,217,121, 34,210, 7, 26, 66, 47,245, 28,252, - 92,236,214, 44,115, 44, 0,216, 77, 22, 40,189, 84,214, 38, 7, 14, 28,184, 10,160,198,237, 78,218,133, 11, 23,204, 15, 61,244, -208,194,130,130,130,151, 41,165,250,155,213,217,185, 63,125,252,253,118, 90, 40,165,135, 1,140,184, 85, 29, 51,112, 34,220,104, - 28, 57,241,253,247, 31,251,224,253,247,107, 73, 64, 8, 74,230,168,226,189, 48,105,206,236, 57,152, 81,225,115,131,137,162,152, -218,170, 85, 43,159,183,241,180,188,156,153,196,241, 43, 42, 3, 7,125,215,188, 29,233,180,107, 54,108,216, 16,141, 27, 55,118, -188,219,113,254,189, 73,147, 38, 94,105, 54,109,218, 20,245,234,213, 43,115,134,118,215, 62, 87,119,123,223,237,216,111,125,155, - 52, 89, 95, 97,154,183,154,206,251,191,122,191,141, 67,162,239,199,126, 51, 76,147,105, 50, 77,199, 58, 60,165, 84,100,199,147, -105, 50, 77,166,121, 39, 52, 31, 52, 56,118, 8, 24, 12, 70, 25, 81, 28,145, 29, 5, 6,131,193,184, 73, 19, 10,160, 65, 25,149, -171,215,206,148, 16,210,192,215, 63,246,226,238,153,105, 50, 77,166,201, 52,153, 38,211,100,154, 15,152,166, 39,237, 7, 37, 50, -198,154, 8,153, 38,211,100,154, 76,147,105, 50, 77,166,121,215, 53, 31, 52, 88, 19, 33,131,193, 96, 48, 24, 12, 70, 5, 35,176, - 67,192, 96,252,183,153, 68,200, 45,221,104,125, 64,169,196,210,201, 96, 48, 24,165, 97, 17, 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,248, 79,113, 91, 71, 17, 50, 24,140,123, 31,214, 7,139,193, - 96, 48, 42, 30, 22,193, 98, 48, 24, 12, 6,131,193,168, 96, 4,160,244,131,138, 41,165,132, 29, 22, 6,131,193, 96, 48, 24,119, -146, 7,205,139, 8,204, 88, 49, 24, 12, 6,131,193,184, 23,120,144,188, 8,231,206, 57, 50, 24, 12, 6,131,193, 96,220,105, 30, - 36, 47,194, 61,136,174,145,193, 96, 48, 24, 12,198,253,199, 3, 27,193, 98, 81, 44, 6,131,193, 96, 48, 24,119,139, 7,201,139, - 8, 15,154, 99,100, 48, 24, 12, 6,131,113,255,241,160,121,145,219, 58, 77, 3, 33,164, 1,211,100,154, 76,147,105, 50, 77,166, -201, 52,153,230,127, 13, 54, 15, 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,252,167, 16,216, 33, 96, 48,254,219,220, 47,207,232, 99,207, 18,100, 48, 24,247, 19, 44,130,197, 96, 48, 24, 12, 6,131, - 81,193, 16, 0,110, 71, 2, 80, 74,143,121, 45,114, 19,163, 9, 60,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,193,211, -244,164,237,139,255,184,167, 13, 22,165,183,111, 62, 47, 66, 72,131,138, 62, 80, 76,147,105, 50, 77,166,201, 52,153, 38,211,124, -240, 52, 31, 52, 88, 19, 33,195,181,208, 8,132, 16,225,102,151,223, 41, 77, 6,131,193, 96, 48,238,101,216, 69,141,225,108,116, - 90, 2,232, 93,242,121, 53,165,116,143, 47,203,239,148,230,221, 34, 33, 33, 65,173, 82,169,186,254,253,247,223,242, 83,167, 78, - 97,239,222,189,244,215, 95,127,181, 26,141,198, 13,137,137,137, 6,150,131, 30, 12,154, 54,109,218,141, 16, 50, 22, 0, 40,165, - 31, 31, 58,116,104,253, 45,148, 41, 82,163, 70,141,215, 20, 10, 69, 79,153, 76, 22, 37,138, 34, 49,153, 76,233, 6,131, 97, 99, - 90, 90,218,103,244, 38, 58,238, 19, 66,154, 87,170, 84,105, 68,124,124,124,173, 11, 23, 46,164, 92,190,124,121, 1,128,245, 0, -186, 85,169, 82,101, 88, 92, 92, 92,229,164,164,164, 51, 89, 89, 89,115, 40,165, 7,238, 86, 58, 25, 12,102,176,188, 43,124, 92, - 80, 80, 80, 23,181, 90,253,122, 97, 97, 97, 83,127,127,255, 36,155,205, 54, 43, 35, 35, 99, 53, 43,120, 15,140,185, 18, 0,244, -166,148,202, 0,128,231,249,126, 45, 91,182,140, 37,132, 72,132, 16, 74, 41, 37, 28,199, 53, 17, 69,145, 43, 89,191, 55, 33,228, - 0,165,212,118,179,154, 54,155,205,103,205,219, 69,124,124,252, 84, 74,105, 84,121,235,104,181,218,102,155, 55,111,174,179, 98, -197, 10,219,130, 5, 11,114,159,120,226, 9,221, 51,207, 60, 35,204,159, 63,255, 27, 0,255,115, 93,191,126,253,250,159,115, 28, - 87,201,155,255,151, 36, 41,235,248,241,227,111,176,156,120, 79,148,133,177,207, 77,223,250,136, 68,129, 31,199,181,227, 74,204, -203, 77,209,164, 73,147,159, 31,125,244,209,193,181,107,215, 22, 36, 73,130,213,106,133,201,100,170,115,232,208,161,246,235,215, -175,111, 6, 96,144,143,105,235, 61,110,220,184,121,147, 39, 79, 14,149,201,100,196,106,181, 62,252,219,111,191,117, 31, 49, 98, -196,225, 57,115,230, 52,126,252,241,199,253,236,191,127,240,193, 7, 61, 8, 33,163, 41,165,139,239,116, 58, 25, 12,134, 7,131, -229,231,231, 87, 51, 52, 52,244,205,144,144,144, 30,205,154, 53,203,123,241,197, 23,207, 31, 57,114,228, 68,124,124,124,225, 79, - 63,253,244,145,213,106,157, 93,187,118,237, 13,249,249,249,159, 93,185,114,229,132,143, 21, 69, 77, 0, 47, 2,232, 1, 32, 6, - 64, 58,128,181, 0,230, 81, 74, 79,221,204,206, 68, 71, 71, 55,212,106,181, 99, 8, 33, 15, 23, 21, 21,197,104,181,218,116, 74, -233,190,130,130,130, 25, 25, 25, 25,135,110, 70, 51, 38, 38,166, 58,128, 81,130, 32,180, 21, 69,177, 26,207,243,151, 68, 81,220, - 33,138,226,215,233,233,233,103,110, 70,179,117,101,191, 62,146,206,255, 51, 43,175,174, 92,104,180,201,117, 74,193, 42,147,140, - 41, 82, 81,238,184,125,151, 11,127,191, 23, 50,134, 66,161,224, 22, 44, 88,208, 88,161, 80, 0, 0,204,102, 51,226,227,227,111, -233, 57, 81, 50,153,140,155, 49, 99, 70, 99,185, 92, 14, 0,176, 88, 44,232,216,177,227, 61,241,236, 41, 66, 72, 76, 98, 98, 98, -128, 61,109,174,136,162,136,126,253,250, 85, 85, 40, 20,152, 51,103,142, 45, 43, 43,171,233,143, 63,254,152,248,205, 55,223, 84, -250,249,231,159, 7,186, 51, 88, 28,199, 85, 42, 75, 83, 20, 69, 88, 44, 22,216,108, 54,152,205,102,116,232,208,129,213, 70,247, - 8,148,210, 88, 10, 96,237, 17, 35, 0,132,220,138,150, 90,173,174,219,191,127,127, 33, 51, 51, 19, 50,153, 12, 22,139, 5, 87, -174, 92, 65,245,234,213,121,179,217, 92,219, 87,189, 58,117,234,140,152, 54,109, 90,216,154, 53,107, 44, 11, 23, 46, 52,117,238, -220, 89, 62,124,248,112,255, 71, 30,121,164,109, 76, 76, 12,247,227,143, 63,154, 54,109,218,100,121,242,201, 39,149, 83,167, 78, - 13, 91,187,118,237, 96, 0,139,239,116, 58, 25, 12, 70, 57, 6,203,207,207,111,155, 78,167,171,241,194, 11, 47,156,122,249,229, -151, 55,232,116, 58, 17, 0,174, 92,185,162,236,215,175, 95,230,128, 1, 3,174,233,245,122,126,246,236,217, 85,190,250,234,171, -141,126,126,126,105, 5, 5, 5, 45,188,184,144, 17, 0,175,115, 28, 55,170,107,215,174,219,172, 86,107,230,242,229,203,151, 14, - 28, 56,176,141, 36, 73,218,191,255,254,251, 47, 66,200,119, 0, 62,245, 54, 58, 70, 8,225,227,226,226, 38,198,196,196,188,245, -237,183,223, 42,171, 85,171, 6,141, 70,131,130,130,130, 42,103,206,156,169,252,250,235,175,247,173, 94,189,250,172,128,128,128, -247, 18, 19, 19,173, 94,106,146,168,168,168,255,249,251,251,127,248,209, 71, 31,169,234,215,175, 79, 52, 26, 13,146,147,147, 27, -236,217,179, 39,254,135, 31,126, 24, 30, 19, 19, 51, 41, 45, 45,205,235,116,182, 39, 68, 48,213, 8, 93, 31, 88,167, 69,135, 57, -243,126, 32,149,180, 26, 8,132,192,106,177,200,174,234, 13,113,175,142,124,105,105,203, 90, 17,187, 10,100, 87, 59, 29, 63, 78, - 45,119,248,162, 98, 35,132,172,230,121,190,159, 66,161,224,250,245,235,135, 77,155, 54, 17,163,209, 40, 0,128, 74,165,178,245, -235,215, 15,106,181, 26,102,179, 89, 2,176,186,100, 27,101,201,246,166,242, 52,101, 50, 25,215,161, 67, 7,253,193,131, 7,179, -245,122,189,204,174,217,161, 67,135, 96,165, 82,169,177, 90,173, 94,105,222,102, 83,137,115,231,206,221, 96,132,174, 93,187,134, -236,236,108,152, 76, 38,146,147,147, 3, 81, 20, 97, 50,153, 50, 69, 81, 4,199, 21, 7,223,202,210,148,203,229, 56,125,250,244, - 13,191, 91, 44, 22, 24, 12, 6, 88,173, 86,228,231,231,171, 85, 42, 85,141,182,109,219,166, 2, 88, 81, 88, 88,248,217,225,195, -135, 47,177,234,233,174,113,249,175,127,140, 85, 0, 88, 0, 92,184, 69,227, 46, 1,192,142, 29, 59,112,245,234, 85,100,102,102, - 34, 51, 51, 19,149, 43, 87,198,205, 68,255, 79,157, 58,245,101,147, 38, 77,200,225,195,135, 87, 1,152,183,100,201,146,254,215, -175, 95,255,246,237,183,223, 14,158, 49, 99,198,245, 49, 99,198,140, 4,240,231,146, 37, 75,158,109,216,176, 97,159,163, 71,143, -126,113, 55,210,201, 96, 48,202,233,228, 78, 41,141,170, 89,179,230,245,153, 51,103,214, 25, 55,110, 92, 72, 97, 97, 33, 15, 0, - 81, 81, 81, 70, 0,208,235,245,252,216,177, 99, 67,167, 79,159, 94, 71,169, 84,230,216,108,182, 80, 55, 26,238, 70, 24,140,242, -247,247,239,123,254,252,249, 37,117,234,212, 9,158, 54,109,218, 63, 90,173,150,126,241,197, 23,135,170, 87,175, 30,121,233,210, -165, 95,252,253,253, 59, 2,120,171,140,116,221,160, 89,181,106,213, 15, 6, 14, 28,248,214,174, 93,187,148,141, 26, 53,130,159, -159, 31,120,158, 71, 96, 96, 32, 30,122,232, 33,178,125,251,118,101,207,158, 61, 95,203,203,203,155,225,173,102,116,116,244, 91, -221,187,119,255,232,224,193,131,234, 78,157, 58, 17,133, 66,129,220,220, 92, 40, 20, 10,180,108,217,146,124,251,205,215,234, 6, -245,235,125, 16, 19, 19, 51,217, 91, 77, 83,205, 74, 27,159,120,121,108,199,213,107,215,147,240,240,112,156,255,116, 50,118, 60, - 18,143,179, 83,198, 33, 50, 50, 18,171,214,172, 35,189,159,122,185,141,191, 53,252,111,111, 53, 43,192, 88, 29,115,250,188, 39, - 62, 62, 62,241,196,137, 19,104,219,182, 45,150, 46, 93,218,232,237,183,223,126,249,237,183,223,126,121,233,210,165,141,218,182, -109,139, 19, 39, 78, 32, 62, 62, 62,145, 82,186,135, 16,242, 50,128,235, 0,174,151,124, 46, 83,115,219,182,109,232,216,177, 99, -206,146, 37, 75,170, 79,152, 48, 97,234,132, 9, 19,166, 46, 93,186, 52,174, 99,199,142, 57,219,182,109,243, 73,243,118,236,187, -179,161,114,125, 81, 74, 33, 73, 18,194,194,194,174,173, 89,179,134,246,238,221,155,143,136,136, 72,239,215,175,159,114,223,190, -125,148, 16,178,218,151,116, 82, 74, 97, 48, 24, 96, 48, 24,112,225,194, 5,245,172, 89,179,218,188,245,214, 91, 53,127,251,237, -183,232,215, 94,123,109,164,191,191,255,161,198,141, 27,199,222,233,125,103,154,142,200,227,149, 18,115, 85,196,113,220,229,155, -213,124,236,177,199, 26,196,198,198,134,255,150, 20,132, 28,121, 29,136,178, 0, 72,242, 64,136, 33,205,113, 86,222, 29, 81, 81, - 81,225,177,177,177, 45,125,209,164,148,110,252,231,159,127,122, 80, 74,231, 80, 74, 69, 74,233,178, 49, 99,198, 60, 79, 8,249, -125,204,152, 49, 47, 81, 74,151,149,252,254,253,145, 35, 71,250, 80, 74,183,220,141,116,178,188,196, 52,111, 3,205, 1,244, 42, -121,181, 0,240,144,203,119,133,203,122,157,203,120,239,229,242,189,185,203,118,205, 43,212, 96, 17, 66,168,253,229,116, 71, 99, -253,228,147, 79,246,254,240,195, 15,155, 50, 50, 50, 34,227,226,226,122,245,239,223, 63, 54, 63, 63,159, 27, 48, 96, 64,213,200, -200,200,222, 91,182,108,137, 24, 48, 96,192,223, 3, 7, 14,220, 67, 8,241,216,111,134, 16, 82,157,231,249,209,135, 15, 31,222, - 89,181,106, 85, 75,122,122,186, 95,147, 38, 77, 10, 0,160, 86,173, 90,250,236,236,108,181,159,159, 31,214,172, 89,179,159, 16, -242, 34, 33,164,142, 39,205,168,168,168, 38,149, 42, 85,122,235,195, 15, 63, 84,242, 60,239,118, 29,165, 82,137, 15, 63,252, 80, -233,239,239,255, 66,116,116,244,195,158, 52, 35, 34, 34,234,250,249,249, 77,156, 53,107,150,202,108, 54,195, 98,177, 32, 60, 60, - 28, 58,157, 14, 25, 25, 25, 72,187,120, 17,215,146,147,241,218,115,207,169,181,106,245,232,168,168,168,198,158, 52,219, 86,245, -235,167,139,174,215,254,213, 81,175,227,248,235,207, 97, 83,180, 2, 17,163,198,162,209,214, 99,136,153,244, 25,182,196,249, 35, -113, 80, 23,140, 30,253, 38,228, 97,113,173, 90, 85,214, 61,113, 87, 66,154,130, 64,149, 74, 37,140, 70,163,176, 99,199,142,182, - 54,155, 77,102,179,217,100,219,183,111,111,191, 97,195,134, 30,211,166, 77,235,166, 86,171, 71,182,108,217,242,103, 66,200,151, -148, 82, 53,165, 84, 13, 96,134, 61,242,228, 78, 83, 38,147,193, 96, 48,200, 14, 30, 60,248,146, 40,138, 10, 81, 20, 21, 7, 15, - 30,124,101,203,150, 45,195,230,204,153,227,179,230,157,130,231,121, 8,130, 0,153, 76,134,198,141, 27,159, 95,180,104,145, 53, - 42, 42, 74,152, 59,119,110, 80, 88, 88,152,246,231,159,127,206,205,201,201,249,196, 23, 77,179,217, 12,147,201, 4,131,193,128, - 29, 59,118, 84,123,225,133, 23, 4,179,217, 44, 62,245,212, 83,215,173, 86,171,233,149, 87, 94,241,215,233,116,111,178,251,191, -187, 3,165, 84, 4, 80, 4,160,208, 30, 69,173, 90,181,170, 50, 58, 58,186, 97,213,170, 85,189,206,143,133,133,133,223,125,254, -249,231, 49,156, 50, 16, 59,205, 61,177,132, 78,198,198,192,111,144, 89,245,109,132, 87,174,137,238,221,187,135, 17, 66,190,174, -128,244,174,160,148, 14,164,148,254,113, 51,219,223,238,116, 54,111,222,188,109,179,102,205, 14, 38, 36, 36,100, 52,107,214,236, - 96,243,230,205,219,222,234, 62, 79, 30, 65, 58,127, 60,138, 79,157, 50,146,208,143, 71,241,169,147, 71,144,206, 44,231,222,255, -184,243, 34, 78,132, 18, 66, 86, 19, 66, 86,143, 31, 63,190, 3,128, 16,151,239,173,156,215, 3,160,112,247,110,127, 57,253, 30, - 90, 98,172, 66,157,190, 87,204,245,212,169,144,186,109,230, 8, 13, 13, 53,191,243,206, 59,135,141, 70,227,177,159,127,254,185, -198,203, 47,191,220, 36, 54, 54,246,244,128, 1, 3,254,210,104, 52, 54,123, 31, 29, 47,121,174,103,207,158,107,130,131,131, 73, - 86, 86,150,220,108, 54, 11, 87,174, 92,145,139,162, 72,120,158,167,122,189, 94, 56,123,246,172,204, 98,177, 72, 15, 63,252,240, -202, 61,123,246,188, 8, 96,116,121,130, 26,141,230,149,185,115,231,170,202, 50, 87,162, 40,162,176,176, 16, 54,155, 13,147, 38, - 77, 82,189,245,214, 91,175, 3,216, 91,158,166, 76, 38,123,109,230,204,153, 42,123, 19,144, 36, 73, 56,116,232, 16,178,174, 93, -131,169, 32, 31,230,130,124,152,243,114,192, 21,230, 97, 88,143,110,170, 57,127, 44,127, 3,192,176,114, 47,170, 74,221,244,159, -231,253, 0, 81, 20,145,190,220,125,151,136,235,187,182, 66,180, 89, 49,245,227, 25,100,244,115,143, 79, 3,176,228, 94,201,248, - 10,133,130,251,244,211, 79,235, 40, 20, 10, 16, 66,168,217,108, 70,253,250,245,201, 45,106,242, 95,126,249,101, 19,185, 92, 78, -236,154, 13, 26, 52, 32,247, 90,161,151,203,229, 80,171,213,168, 90,181,170,161, 79,159, 62,123,190,252,242,203, 42, 60,207,107, - 4, 65, 88,151,151,151, 55, 45, 41, 41,201,167,102, 36,147,201, 4,163,209, 8,163,209,136,203,151, 47, 71,212,168, 81,131,252, -239,127,255, 19,139,138,138,226,190,255,254,251,115, 75,150, 44,209,124,253,245,215, 3, 0,140, 98, 85,238,157,165, 70,141, 26, - 10,127,127,255,128, 42, 33, 66,145,140, 71, 81,134,205, 22, 30, 19, 19, 51, 22, 64,179, 90,181,106, 5,157, 61,123, 54, 39, 58, - 58,122, 47,199,113,139, 83, 82, 82, 50, 60, 24, 31, 98,179,217,240, 82,139, 92,140,124,152,131,205,102, 67,110,110, 46, 46, 95, -190,140,164,164, 36,236,219,151,116, 83,105,172, 86,173,218,115, 42,149,170,171, 66,161,168, 42,138, 34,167,215,235, 47,153, 76, -166, 77,233,233,233,223,209,155,152,216,240,118,165,211, 73,255,179,254,253,251, 71, 5, 4, 4,224,159,127,254,137, 58,114,228, -200,103, 0,154,221, 82,221, 33,227,126,124,234,249,175,163,131, 3, 3,145,124, 98, 85,244,138,181,191,253,136,226,190,188,140, -251,255, 6,167,172,107, 64, 38,165,212, 49,226,124,218,180,105,189, 75,214,239,237,252,221, 11,253,222,110,140,221,106,119,191, - 87,152,193,178,143, 20, 43,107, 69,149, 74, 37,142, 24, 49,226,244,202,149, 43,171, 54,107,214,236,100, 89,157,129, 61,208,186, - 78,157, 58,151,246,239,223, 79, 67, 67, 67,205,146, 36, 17,141, 70, 35,170,213,106, 41, 47, 47, 15, 86,171,149, 94,186,116, 73, -184,124,249,178,188, 82,165, 74,114,111, 66,117, 50,153,172,101,181,106,213,202,140, 20, 20, 22, 22,162,160,160, 0, 38,147, 9, -225,225,225,132,227,184,135, 60,134,245, 56,174, 77,157, 58,117, 72, 78, 78, 14,162,162,162,176,115,231, 78, 20,230,229,194, 84, - 80, 0, 83, 94, 46, 44,249,121, 16,243,115,145,123, 45, 3, 85, 35, 99, 72,201, 84, 3,229, 98,227,213,177, 97, 58, 45,206, 78, - 30,139,230,135, 46,129,200,228,216,223, 32, 18,212, 90,220,213,170,197,209,116, 16,185, 2, 39, 95,123, 6, 17, 67, 95,128,149, - 83, 70,223,141,204,109,179,217,136,201,100,130, 74,165,178,181,109,219,118, 7,207,243,237, 21, 10, 5, 55,114,228, 72, 92,185, -114,197,145, 93, 0, 96,228,200,145, 80,171,213, 48,153, 76, 54, 0,111,151,213,103,202,102,179, 17,171,213, 10,181, 90,109,109, -214,172,217,119, 60,207,191,162, 80, 40,248,218,181,107, 95,157, 62,125,122,186, 86,171,213, 94,190,124,249,186, 66,161, 72,173, - 90,181,106, 11,181, 90, 29,235, 73,243, 78,162, 84, 42, 33, 8, 2, 56,142, 67, 72, 72, 72, 81,118,118,246,190,243,231,207, 15, -185, 25, 45, 81, 20, 97, 54,155, 97,181, 90, 97, 52, 26, 33, 73, 18,142, 28, 57, 2,165, 82, 41, 19, 69, 49, 73, 20, 69,141, 76, - 38, 3,207,243,108,142,186, 59, 76, 66, 66, 66,251, 70, 17,254,159,141,140, 52, 5, 85,239,173, 45,212, 40,249,162,193,203,173, -205, 59,119, 30,212,237,237,183,199,234, 42, 85,170,164,184,120,241,162,241,139, 47,190,168,246,231,159,127, 18, 0,159,150,167, -151,158,158,254,251,244,233,211,131,219,183,111, 31, 39,147,201, 72,110,110, 46, 50, 51, 51,113,237,218, 53, 92,190,124,153, 38, - 39, 39,159,183,217,108, 75,125, 73, 99,163, 70,141,190, 31, 58,116,232, 83,245,235,215,151, 81, 74, 97,181, 90,161,215,235,155, -236,219,183,175,239,206,157, 59,219, 2,240, 57, 95,102,100,100, 44,253,248,227,143,181,237,218,181,171, 35,147,201,184,138, 72, -167,203, 5, 45, 74,167,211, 97,211,166, 77,240,247,247,135,167,209,186,222, 96,177, 73,209,193,129, 33, 48,158,249, 28, 81,254, -177,176,216,164,104,150,131, 31,156, 40, 86, 25, 94,228, 0,128, 94,183,106,134,110,151,153,186,169, 8,150,157, 43, 87,174, 40, - 11, 11, 11, 5, 73,146, 56,147,201, 36,147, 36, 9, 50,153,204,234,227,255,213,239,223,191,255,222,230,205,155,235, 75, 34, 24, -182,128,128, 0, 91, 94, 94, 30, 74, 12,150, 36, 8,130, 81,167,211, 25,227,226,226, 0,192, 99, 19,161,193, 96,168,162, 86,171, -111,248, 93,175,215,163,176,176,208, 97,176,244,122, 61,252,253,253, 81, 84, 84,228,177,112,139,162, 88, 85,163,209, 32, 61, 61, - 29, 0, 80,152,155, 3, 99,126, 62, 44, 5,121,176,228,230,192,154,151, 11,107, 94, 14, 56,131, 1,129, 49,149, 97,179,217, 42, -123,210, 44, 50,137, 10, 30, 20,215, 86,255,142,240, 87,222, 46,115,189,235, 59,182, 64, 87,163, 54, 12, 6,139,112, 23, 50,118, - 75,142,227, 18,234,213,171,135,126,253,250, 97,208,160, 65, 71,212,106,117,216,215, 95,127, 93, 63, 45, 45,237,134,245, 31,125, -244, 81,140, 26, 53, 10,253,251,247,255,229,159,127,254,153, 93,158,102,187,118,237,208,161, 67,135,224, 65,131, 6, 37,235,116, -186,196,121,243,230,181,152, 52,105,210, 85,189, 94,159,150,152,152,216, 48, 53, 53, 85, 83,171, 86,173,173,241,241,241,220,154, - 53,107, 98,203,211,188, 11,166, 19, 86,171, 21, 22,139, 5, 38,147,201, 99, 89,113,185,184,148,250,110,181, 90, 29, 35, 8,141, - 70, 35,172, 86, 43, 89,177, 98, 57, 86,173, 90,197,157, 56,113, 60,102,220,184,241,200,205,205,133, 40,138,172,166,189, 67, 52, -107,214,172,135, 64,165,185, 79, 70,216, 84, 79,134,219, 10, 5,142, 22,158,249,225,189,162, 35,129,130,201, 84, 68,252,222,125, -239,189,160,115,231,206, 89, 62,254,248,227,140,126,253,250,169,158,127,254,249,122,107,214,172,105, 91,165, 74,149, 31, 46, 95, -190,156, 91, 70,190,151, 63,247,220,115,123,131,130,130,170, 47, 92,184,240,106,122,122,122,176,213,106,213,152,205,102,139,217, -108, 62,103,177, 88,118,154,205,230, 77, 25, 25, 25,137,190,164, 85,167,211, 53,122,226,137, 39,100, 57, 57, 57, 16, 4, 1, 22, -139, 5,153,153,153,104,218,180, 41,191,121,243,230,250, 55,179,255,199,143, 31,255, 60, 42, 42,106,235,170, 85,171,186,106,181, -218, 4,133, 66, 17, 33,138,162,104, 52, 26,175, 26,141,198,195, 55,147, 78,151, 99,145,126,232,208,161, 40, 63, 63, 63,164,165, -165,129, 16,146,126,171,231, 76, 46,227, 82,146, 79,174,172, 28,229, 95, 13,167, 78,237,133, 92,198,165,176,156,252,192, 71,176, -154, 59, 71,172,202, 49, 73,134,113,227,198,189, 67, 8, 89, 61,110,220,184,119,202,137, 96,137,206,235, 57,173, 95, 97, 55,245, -229, 94,196, 11, 10, 10,132, 3, 7, 14,132, 92,190,124, 89, 23, 17, 17,161,143,143,143,207, 37,132, 80, 81, 20,185,235,215,175, -107, 83, 83, 83, 85, 65, 65, 65,166,202,149, 43,231,121,249,127,103, 94,125,245,213,118, 19, 38, 76, 72,236,210,165, 75, 22, 0, -228,228,228, 32, 51, 51,211, 62, 74, 11,233,233,233,220,193,131, 7,131,215,173, 91,215, 4, 94,140,224, 81,171,213,151, 11, 10, - 10,106, 7, 6, 6, 58, 46,104,118, 83,229,252,110,177, 88, 80, 80, 80, 0,173, 86,235,177,112,115, 28,151,150,150,150, 86,195, - 96,208,227,210,217,179, 48, 21,228,193,146,159, 7,107,126, 46,172,185,185, 16,115,175,131, 43, 44,128, 78,173, 70,193,245,108, -240, 60,127,197,147,166, 86,201,155,173, 54, 81, 17,218,189, 47, 64,202,190, 62, 7, 62,212, 6,180,110, 35,168,213,127, 88,239, -100,166,182,207, 89,101,159,147, 74,173, 86,227,163,143, 62, 66, 98, 98,162, 84, 94, 51,176, 66,161, 0,199,113,162, 55,154, 74, -165, 82, 61, 97,194, 4,245,225,195,135, 85, 10,133, 2, 58,157, 78,115,248,240,225,134,187,119,239,230,244,122, 61, 95,163, 70, -141,254,209,209,209,133,229,105,222,110, 35,229,238,183,194,194, 66, 71,191,169,235,215,175, 11, 42,149,170,214, 35,143, 60,178, -199,108, 54, 47,181,217,108, 63, 37, 38, 38,230,151,121,167,109,185,113, 48,168, 36, 73,176,217,108,176,217,108, 16, 4, 65, 90, -177, 98, 37,190,154,253, 37,150, 45,249,131,182,107,215,142,172, 89,179, 6,146, 36,165,178,170,246,206, 32, 73,210,103, 91,198, - 62,166,130, 40, 22,154,182, 46, 42, 90,159, 45, 20,253,112,108,203,193,108,171, 73, 89,179,102, 92, 93,127,191, 0,238,231, 5, - 63, 92,207,184,122,254,204, 87, 95,165, 86,158, 58,117,106, 96, 92, 92, 92,192,233,211,167,163, 1,228,150, 97,132,170, 62,243, -204, 51,195,175, 95,191, 46,155, 55,111,222,252,180,180,180,237,148,210,243, 46,229,163, 41, 33,100, 6, 0, 25,128,112, 0, 54, - 0, 27, 41,165,191,148, 83, 78, 37, 66, 8,182,110,221,122,195,104, 63, 73,146,110,122,180, 95, 70, 70, 70,206, 67, 15, 61,212, -232,204,153, 51, 43,114,114,114, 22,186, 46,215,104, 52,125,227,227,227, 7,239,223,191,255,125, 74,233, 57, 31, 47,152,163, 79, -156, 56,241,137, 36, 73,177, 28,199, 93,162,148,142,185,213,115,102,182, 72,207,175, 92,187,100,158,217, 42, 86, 81,200,248,203, -102,139,244, 2,203,201, 15, 60,246, 62, 82,112, 54, 78,110,140,209,238,105,211,166,169,167, 79,159,142,105,211,166, 37,185,139, - 96,217,141,214,180,105,211,146,236,235, 57,173,191,189, 66, 13,150, 59,199,104,179,217,116,227,199,143,111,221,164, 73,147,244, -246,237,219,103, 84,171, 86, 77,239, 84,216,204,129,129,129,102,147,201,164, 76, 79, 79, 15, 61,121,242,100, 53, 73,146,212, 94, -252,223,223,129,129,129,193, 7, 15, 30, 12, 89,188,120,113,205, 67,135, 14,197, 14, 29, 58,180,157,201,100,130,217,108,198,133, - 11, 23, 98,231,206,157, 43,201,229,242, 92, 66,200, 1, 0, 30, 47,178, 86,171,117,207,153, 51,103,106, 61,244,208, 67,196,106, -181,150, 50, 85,206,159, 21, 10, 5,210,210,210,168, 36, 73,251,188, 72,231,222,131,251,247,215,104, 80,175, 30, 76,121, 57, 48, -231,231,194,146,151, 11, 91, 94, 46,164,252, 92,112,133, 5, 8, 9,150, 65,173,214,226, 76,122, 6, 74,210, 90, 46, 50,155, 33, - 57, 45, 47,191,118,141,137,159, 98, 75,156, 63,168,213,226,104, 22, 4,224,104, 46,108,117, 50, 19, 59,118,239,129, 32,154,210, -238,102, 78, 54,155,205,210,128, 1, 3,246,115, 28,215,160,162, 52,173, 86,171,244,242,203, 47, 59, 52, 83, 82, 82,174,167,164, -164,168, 12, 6, 3,167,211,233, 10,239,118,233,181, 90,173,110, 13,146,217,108,134,193, 96, 64, 70, 70,134, 98,227,198,141,109, -247,236,217, 35, 63,126,252, 56,246,236,217,211,120,197,138, 21,227,235,214,173,219,232,228,201,147, 87,188, 49,109,146, 36,193, -126, 29,164,148,130, 82,202, 3,192,202, 63, 87,163,123,247,238,164,160,160, 0,171, 86,173,170,144,102, 20,134,215, 20,193, 38, -170,205,219, 22, 21,189,121, 86,145,159,164, 23, 62, 76, 76, 76, 92,223,179,103,207, 29, 81,225,113,254, 0,160,148,235, 66,121, -234,167, 11, 13, 13, 85, 2, 64, 84, 84, 84,130,213,106,157, 13,160,141, 59,193, 71, 31,125,180, 85, 88, 88, 88,147,181,107,215, - 30, 78, 75, 75,219,225,106,174, 0,160,118,237,218,147,142, 29, 59,214, 67, 38,147, 17,167,202,159, 2,112,107,176, 30,123,236, -177,218, 49, 49, 49, 33,107,206, 4, 32, 95, 94, 3, 18,151, 11,202, 43, 33, 6, 54,194, 37,121,125,132,135,159, 12,169, 81,163, - 70,227,115,231,206, 29,246,241,230,170,202,227,143, 63,254,215,247,223,127, 95,183,123,247,238, 10, 0, 55, 24,172,186,117,235, - 14,216,188,121,243,192,145, 35, 71, 54, 34,132,244,161,148,158,245, 86, 63, 49, 49,113, 23,128,150, 21,121,194, 38,204,161,155, - 0,196,178,172,251,159,137, 94, 1, 78,125,176, 0,100,162,248, 89,202,206,223,237,249,222,236,180,110,166, 83,212,202,236, 18, -245,114,183, 44, 19, 64,133, 5, 55,132,114,238,188, 55, 94,184,112,161,249,227,143, 63,158,233,108,174,156, 15,128, 78,167, 51, -249,251,251, 23,238,223,191, 63, 74, 20,197,173, 94,252,223,188,205,155, 55,111,153, 53,107,214,162,224,224, 96,235,176, 97,195, -184,177, 99,199,238,200,206,206,166,217,217,217,248,250,235,175, 31,105,219,182,237,142, 75,151, 46,137,137,137,137,207, 2,232, -238, 73, 80,175,215,127,243,202, 43,175, 12,222,177, 99,135,202,108, 54, 35, 55, 55,247,134,232,149,213,106, 5,207,243,152, 61, -123,182,169,168,168,232, 75, 47, 34, 25,223,125,243,205, 55, 3,231,126, 53, 75, 37, 88, 45,208,231,230, 64, 44,121,241,198, 34, -232, 84, 28,106, 52, 9, 69,110,186, 18, 11,214,238, 50,216,108,182,111, 60, 26, 44, 99,225,219, 35, 95,122,113,245,198,191,183, - 32,164, 77, 71,100,109, 89,119, 99, 52, 40, 52, 28,102,139, 5, 31, 78,158, 72,137, 33,119,236, 29,206,216,182,146,209, 21,246, - 12,184,250,159,127,254,217,211,164, 73,147, 30,102,179,185, 60, 35, 6, 73,146,248,155,209, 84, 42,149,169,181,107,215,254,187, -122,245,234,253, 1,160, 94,189,122,127,114, 28,215,177, 60,205,219,109,176, 38, 76,152,128,233,211,167, 99,220,184,113, 14,131, -100,191, 1, 48,153, 76,213,214,173, 91,167,216,181,107, 23, 93,176, 96, 65,214, 99,143, 61, 22, 56,116,232,208,192,133, 11, 23, -254, 15,192,216,178, 52,199,140, 25,131, 57,115,230, 96,196,136, 17, 55, 44,231,121, 94, 74, 75, 75,133,201,108,162, 43, 87,174, - 76, 23, 4, 33,232,139, 47,190, 80,191,245,214, 91,132, 85,183,119, 6, 81, 20,223,109,243,249,138,215, 1,181,213,102,179,125, -121,228,200,193,173, 0, 48,104,208,160,176,207, 63,255, 92, 1, 0,159,206,248, 84, 70, 41,149,217, 39,134,157, 50,101,138,234, -165,151, 94, 10, 43, 75,243,247,223,127,207,153, 50,101, 74,200,243,207, 63,223,125,203,150, 45, 42, 66,200, 58, 20,247, 33,201, - 42,185,113,172, 4, 96, 87,104,104,104,228,146, 37, 75,106,116,237,218, 85,235,209, 5, 22, 21,253,240,237,183,223, 86,253,108, -187, 31,214, 20,245, 71, 10, 29, 4, 26, 76, 17, 44, 47, 64, 61,221,101,180,139, 76,137, 90,184,112,225, 60, 0, 9, 62,152,171, -250,143, 61,246,216,242,239,191,255,190,218,139, 47,190,152,186,107,215,174, 20, 66,200, 36, 55,171,102, 63,243,204, 51,151,230, -207,159, 95, 67,146,164,245,132,144,238,148,210, 51, 44,247, 48,238, 32, 7,110,211,186,183, 13,161, 28,147,241, 28, 33, 36,126, -220,184,113,159, 68, 69, 69, 85,153, 56,113,226,197,122,245,234, 21, 57, 74, 91,118,182,110,219,182,109,113,249,249,249, 5, 54, -155,237, 41, 74,233, 17, 55,133,183,129,203,156, 72,151, 8, 33,159, 52,110,220,120,240,111,191,253,182,205,207,207, 47,127,239, -222,189,254,254,254,254,121,199,143, 31,215,242, 60,175, 63,127,254, 60, 54,109,218,244, 8,128,175,220,221, 37,185,106,166,167, -167,255, 83,173, 90,181, 79,223,122,235,173,183,222,127,255,125,149, 36, 73, 48, 24, 12, 40, 40, 40,128,209,104,116,116, 78, 94, -188,120,177,201,100, 50,205, 77, 75, 75,219,235,133,230,158,202,149, 43,207,249,242,139, 47, 95,126, 97,240,227, 10,154,155,141, -188, 12, 3,136,177, 8, 58,149, 2,245, 59, 70,163, 40,155,224,251,109, 7,205,215,205,150, 37,105,105,105, 91, 61,105,238,188, - 92,240,215,195, 53,195, 54, 77,153, 60,177,243,248,159,254,128, 36, 73, 56,249,202, 48,228,108,223, 4, 77,189,134,104,117, 50, - 19,102,179, 25,227,198,188, 5, 94,127,117,199,222,203,133,203, 60,105, 86, 4,206,154, 37,243, 80, 29,112, 50, 71, 47, 19, 66, -158,170, 91,183, 46, 70,142, 28,137, 71, 31,125,180,212,182,203,151, 47,199,183,223,126, 11,147,201,244, 20, 33,228, 16,165,116, -182, 47,154,213,170, 85,107, 81,191,126,125, 62, 42, 42, 74, 95, 98, 54, 58, 38, 37, 37, 53,175, 91,183,110,185,154,183,105,223, -115,206,158, 61,235, 63, 99,198, 12, 98,177, 88, 48,105,210, 36,216,141,165, 61,226,244,238,187,239, 70,249,249,249,225,179,207, - 62, 51,103,101,101,117,202,206,206,222, 60,107,214,172, 74,139, 23, 47, 30, 98, 55, 88, 46,154,215, 78,156, 56,225, 55,103,206, - 28,206,102,179,225,243,207, 63,191, 33,162, 53,122,244,104, 88, 44, 86,200, 4,153,217,100, 52,213, 87,171,213,231,130,130,130, -212,146, 36,209, 59,117,222,255,235,154, 71,142, 28,217, 8, 96, 99, 57, 55, 31, 0, 0,131,193,128,172,172, 44,100,101,101, 33, - 32, 32, 0,112,154, 96,214, 85,211, 96, 48, 28, 30, 51,102, 76,226,119,223,125,215,125,247,238,221,143,111,223,190,189,231,166, - 77,155,140,151, 46, 93,178, 89,173, 86, 26, 25, 25, 41,180,105,211, 70,213,179,103, 79,173, 82,169,228,222,125,247,221,172,143, - 62,250,168, 18,128,236,114,234, 79, 94,146, 36,188,209, 54, 31, 99, 58, 8, 48,153,138,111, 40,211,211,211,144,148,148,132, 61, -123, 78,129, 16,194,249,120, 60,191, 92,184,112, 97,156, 66,161, 32,139, 22, 45,170,178,104,209,162,215, 60, 29,191, 95,126,249, -165,234,162, 69,139,102, 19, 66, 58, 83, 74, 37,150,151,152, 38,195, 71,131, 85, 82,160,147, 0,116, 39,132,180,121,241,197, 23, - 63,174, 91,183,174,201,102,179,201,214,175, 95, 95, 39, 43, 43, 75, 97,179,217,198, 80, 74,125,106,175,164,148,206, 33,132,160, - 95,191,126, 99,170, 87,175,190,249,208,161, 67,141,122,245,234,181,126,249,242,229,109,108, 54,219,249, 99,199,142, 61, 5,224, - 75, 0, 95,121,171,153,156,156, 60,105,211,166, 77,100,239,222,189,111,142, 27, 55, 78, 25, 26, 26, 74, 2, 3, 3, 97, 48, 24, -144,146,146, 66,231,207,159,111, 50,153, 76, 95, 5, 4, 4,188,231,173,102,104,104,232,216,237, 7, 15, 42, 78,159, 59,251,236, -179, 61,186,168,170,212,170, 13, 29, 1, 10,175,103, 99,219,182, 12,252,180,239,176, 49,203,108,249,149,231,121,175,135,210,199, -156,203,236,190,113,201,247,107,183,254,253,119,231,169,211, 63, 33, 81, 79,190, 0,109,108, 53, 72, 85,107, 98,219,214,173,248, -104,202, 36,202, 23, 94,221,110, 61,119,181,203, 93, 12,209,218, 74, 10,143, 18,192, 12, 73,146, 4,160,184, 79,214,168, 81,163, -224,252,232,156,111,191,253, 22, 6,131, 1, 0, 4, 66,200, 12, 66,200,143,101,205,232, 94,134,102,229,191,254,250,171,178,179, -102,221,186,117,189,210,172,104,174, 94,189,250,222,115,207, 61, 55, 93, 38,147, 5, 72,146, 4,119,163,221,181, 90, 45,242,243, -243, 33,138,162, 45, 56, 56,248,148,213,106,133, 32, 8,101,150,163,162,162,162,247, 70,140, 24,241, 33, 33,164,204, 72,135, 90, -173,190,180,115,231,206,154, 67,135, 14,229,150, 44, 89,114, 97,200,144, 33,202,221,187,119,139, 0,254, 96,213,211,189, 9,165, - 20, 69, 69, 69, 0, 64,203, 89,231, 50, 33,100, 76, 98, 98,162,106,196,136, 17, 9, 79, 62,249,164,127,135, 14, 29,116,206,235, - 24, 12, 6,105,213,170, 85, 69,115,230,204,201,222,190,125,251,129,225,195,135,247, 71,113,243,134, 91,210,211,211,255,250,250, -235,175, 3,218,181,107, 87, 75, 20, 69,100,101,101, 57,250, 96,165,166,166,226,210,165, 75,151, 36, 73, 90,233,227,238,188, 50, -116,232,208, 53,243,231,207,143,125,241,197, 23, 83, 23, 47, 94,188, 18, 64,158,155,245,116, 3, 6, 12,232, 59,127,254,252,216, -151, 94,122,233, 50,128,215,216, 12,239, 12,198, 45, 24, 44,167,202, 98, 39,128,150,132,144,126, 60,207,191, 93, 88, 88,248, 57, -165,116,197, 45, 84, 80,115, 8, 33,235,207,158, 61,251, 60,128,102, 95,126,249,229,120, 0, 41, 37, 97,189,174,238,250, 43,120, -208, 19, 1,188, 31, 29, 29,253,251,196,137, 19, 43,228, 89,132, 37,143,212,121, 37, 42, 42,106,241,199,139,127,127,143, 82,218, -148,163, 82,136, 68,184, 28,142,227,254, 17, 69,241,163,212,212,212,109,190,104, 46, 45, 78,103,215,135,171,248,245, 30,243,210, -208, 79,108, 50,117,213, 66,163, 77,161, 85, 10,102,185,104,186,196, 25,114,222,221,123,169,240,158,188,176,154, 76, 38, 91,255, -254,253,127,224, 56, 78, 2, 0, 81, 20, 5,147,201,244,172,183,121,232, 78,105,222, 44, 89, 89, 89,133, 0, 94, 41,111,157,182, -109,219,254,178,118,237,218,161, 93,187,118, 21, 87,175, 94,125,181,119,239,222, 66, 98, 98, 34, 5,176,169, 12,227,111, 66, 25, - 79, 36,176,211,184,113,227,216, 31,127,252,241,208,243,207, 63,239, 63,123,246,236,224,253,251,247,139,223,127,255,125,126, 97, - 97,225,103,172,122,186, 55, 32, 37,131, 82,100, 50, 25, 52, 26, 13,252,253,253,145,153,153,233,113,164, 39,165,244, 28, 33,164, -215,219,111,191,221,246,237,183,223,238, 21, 19, 19, 83,191, 74,149, 42, 85, 56,142,227, 50, 50, 50, 50, 83, 82, 82,146, 45, 22, -203,102, 0,127, 1,144, 87,175, 94,253, 31, 0, 11,202,210, 59,126,252,248,135, 81, 81, 81, 91,254,252,243,207, 94, 74,165,178, -158, 66,161, 8,182, 90,173, 92, 81, 81,209,117,139,197,114,194,100, 50,173, 78, 79, 79,223,237, 99,221,121,154, 16,210, 65, 16, -132,191,190,255,254,251,186, 25, 25, 25, 85,183,109,219,214,199,117,189,132,132,132,249,243,231,207,143, 29, 57,114,228,185, 69, -139, 22,249,212, 7,139,193, 96, 6,203,187,194,184, 2,192,138,138,248, 99, 74,233, 37, 0,239,149,188, 42,132,180,180,180,163, - 0,134, 86,228, 1, 74, 79, 79,223, 5,160, 27, 80, 60,155,115, 74,241, 69,243,150,216,123,185, 96, 53,128,213,247,248, 93,186, -137, 16,242,118,201, 40, 39, 0,120,219,117,218, 4, 66,200, 17,231,229,158, 34, 77,183, 67,243, 78,146,147,147,243,191,159,126, -250,105,255,171,175,190,170, 28, 52,104, 16, 78,156, 56,129,217,179,103,155,114,114,114, 22,223,172,230,225,195,135, 47, 53,110, -220,184,233,188,121,243,222,156, 59,119,110, 63, 66, 8,123, 22,225, 61,130,217,108, 62,255,196, 19, 79,216,159,159, 74,237,143, - 78,178, 79,219, 97,179,217,206,123, 81,142,108, 0,182,148,188, 60, 49,195,139,250,104, 15,128, 61, 21, 92,214, 47, 19, 66,122, - 37, 39, 39, 79, 61,125,250,244, 58,119,235, 36, 37, 37, 45,239,218,181,171,102,207,158, 61,239,248, 58,138,144,193,248,207,222, -156,221,196,196,191,190,220,249,177,246,233,251, 92,211,211,131,151,221, 45,191, 27,154,236,188, 51, 77,166,201, 52,153,230,253, -173,249,160, 33,176, 67,192,240,112,119,107,186,149,229,119, 74,147,193, 96, 48, 24,140,123, 9, 2,160, 65, 25, 23, 57,175,157, - 41, 33,196,231,185,146, 60,233, 51, 77,166,201, 52,153, 38,211,100,154, 76,243,193,211,116,163,253,152,203,162, 52, 23,189,185, -247,165,193, 98, 77,132, 76,147,105, 50, 77,166,201, 52,153, 38,211,188,219,154,101,252,207,139,247,171,193, 98, 15,148,101, 48, - 24, 12, 6,131,193, 96, 6,139,193, 96, 48, 24, 12, 6,227,222,198,171, 78,238, 10,133, 34,158, 82, 58,156, 16, 18, 65, 8,185, - 66, 41,253,209,108, 54, 39,253,215, 14,150, 66,161,136, 39,132, 12,167,148, 70, 80, 74,175, 16, 66,238,238,113, 32,132, 76,154, - 88, 60,155,244, 7, 19, 65,113, 59,219,123, 25, 12, 6,131,193, 96,220,186,193,170, 90,185,242,227, 28, 79,102, 89,172, 98, 80, - 96, 96, 32,247,245,215, 95,115,125,250,244,193,170, 85,171,240,218,168, 81,175, 69, 71, 71, 73,114, 65,200,161,146,237,181,228, -148,244,223,188,249,179, 1, 3, 6, 92,181, 90,173,101,206,106,205,243,252,181,229,203,151,135,223,234, 78, 69, 39, 60,126,213, -106,177,148,249, 63,130, 32,187,150,254,207, 82,175,254,167,114,229,168,199,121,194,205,178,138, 82, 80, 80, 80, 16,247,213, 87, - 95, 57,142,195,171,175,190,250, 90, 76,116,180, 36,151,241, 57,146, 72, 95, 75, 78, 73,249,237,142,157, 57, 39,115, 5, 0,147, - 38,130,124, 64, 8,152,201, 98, 48, 24, 12, 6,227, 30, 54, 88,132,195,236, 69,223,205, 8,202,190,158,131,197,203,215,163,110, -221,186, 56,126,252, 56,234,214,173,139, 54, 45, 26,113,221, 90, 54,230,120, 14,161, 19,190, 90, 48, 27,128, 87,198,194,106,181, -134,253,249,231,159, 32,132, 56, 38,236,179, 79,218, 87, 80, 80,128,215, 95,127, 61,172, 34,118,202,106,177,132,157, 63,240, 7, -100, 60,129, 85,164,176,218, 40,172, 54, 9, 22,145, 34, 95,111, 67,199, 94, 67,189,254, 31, 14,220,236, 31,103,205, 8,202,205, -203,195, 31,107, 54,150, 58, 14, 29, 91, 55,231, 6,245,108,207,105,212,242,208, 23,199,126,236,245,113,168, 8,156,205, 85, 41, -147, 85,206,227, 59, 24, 12, 6,131,193, 96,220,101,131,101,182,138, 65,225,193, 1,248,233,199, 31, 49,102,220, 20,212,169, 83, - 7,148, 82, 16, 66,240,206,251,147, 49,115,202, 56, 60,209,227, 17, 88,109, 82, 80, 89, 26,238, 70, 24, 16, 66,112,241,226, 69, - 24, 12,134, 82,175,248,248,120,175, 18,236,237,168, 5, 25, 79,240,215,161, 2, 88,172, 18, 44,182,146,151, 85, 66,135, 6,126, - 62,105, 90, 69, 41, 40,208, 95,135,121,223,125,139, 49,147,103,148, 58, 14, 99,223,121, 31,223, 76,127, 15,163, 71, 62, 13,179, - 85, 12,186,153,116,250, 2,211,100,154, 76,147,105, 50, 77,166,249,160,106, 62,144, 6,139, 16,210, 14,192,214,146,131,230,136, -140, 88,205, 70,212,175, 28,130,111, 63,251, 16, 20, 28, 36, 74, 1, 10, 80,201,138,106,149, 52, 48,232,245, 62,255,161, 36, 73, -176, 88, 44,176, 90,173,152, 59,119, 46, 10, 11, 11, 33, 73, 18,234,214,173, 11, 0, 72, 72, 72,112,142,192, 92, 78, 76, 76,140, -245,164, 25,214,240,209, 75,160,168,226,252,219, 7, 51,126,192,174, 67,231, 65, 41,160, 84,107, 48,240,201,151, 32, 74, 20, 22, -171,239,207, 39, 53,234,245,136,212,201, 48,243,163,247,193,201,228,224, 64,192,113, 4, 28,145, 80, 39, 38, 8,166,226,135, 19, -223, 81, 62,152, 8,234, 26,197,250, 96, 34, 40, 62, 96,153,154,193, 96, 48, 24,247, 31,101,121,145,251,218, 96, 1,216,234,110, -103,204, 70, 3, 98,130,228,136,208, 5,192,102, 19,145,100,137, 68,129,222, 8,139,197,138, 75, 22, 11,206,253,147,129, 86,173, - 90,225,209, 71, 31, 21, 45, 22, 11,228,114,121,222,242,229,203,131, 61, 25, 44,171,213, 10,139,197,130,162,162, 34, 44, 92,184, - 16,130, 32, 64,146, 36,187, 43,118,188,183,110,221,186,138,119, 86, 26, 85,206,237,255, 29,126, 42, 30, 54,137,194,102,163,176, -138,128, 40, 81,232,205, 18, 6, 60,247, 30,108,146, 4,155, 36,193,236,133,193, 42,101,216,130,155,163,223,248,197, 0,116,142, -229,254, 74,138, 49,173, 57,200, 21, 74, 40,228, 60, 76, 6,253,157, 63,115,148,210, 15, 8, 1,235,228,206, 96, 48, 24,140, 7, -132,173, 15,130,177,114, 53, 88, 14,247, 72, 41,221,246,175,193,210,195,102, 21, 97,181,137,176, 89,109,200, 43, 52,224,147, 79, - 62,129, 82,169, 4, 33,196, 97,150, 36, 73,226,172, 86, 43,122,246,236, 25,228,233, 15, 69, 81,132,197, 98,129,197, 98, 1,165, - 20, 60,207,227,161,135, 30,186, 97,189,189,123,247,250,180, 35,126, 42, 30,213, 58,143,191,225,247,125,191,127, 8, 74, 41, 68, -177,248,229,141,193,242,100,216,154,180, 27, 4,147,217, 10, 74, 1,208,226, 8,215, 93,129, 82,234,232,115,197, 34, 87, 12, 6, -131,193,120, 0,112,245, 34, 15,132,193, 66,113,104,206,225, 30, 77, 6, 3,172, 86, 27,108, 54, 17, 86,107,177, 49, 82,171,213, -120,228,145, 71,236,215,119,199,251,250,245,235, 97,177, 88, 60,254,161,189, 83,123,137, 49, 3,165, 20,139, 23, 47,134, 76, 38, -115,188,228,114,185,207, 59, 98, 19, 41,198,143,125, 3,114,129,131, 76,224, 28,239, 34,165,160,180,216, 28,137, 18,133,201,234, - 93,144,167, 60,195, 6, 0,102,147, 5,160, 20, 20, 20,134,162, 34, 86, 34, 24, 12, 6,131,193,168, 24, 74,121,145,251,221, 96, -181, 39,132,220,224, 60,204,134,162,146,232,149, 8,171,205,230, 48, 80,159,125,246, 25, 4, 65,128, 66,161,128, 32, 8, 14, 67, -228,141,193, 50, 26,141,136,139,139,131,217,108, 70,221,186,117, 65, 41,197,224,193,131,111, 88,111,255,254,253, 62,237,136, 85, -164,152,246,241,231, 55,252,190,115,233, 20, 52,172, 87, 13, 45,106,106, 97,180, 72,200,215,219,110,217,176, 1, 40,142, 96, 1, -160, 20, 48, 20,233, 89,113, 96, 48, 24, 12, 6,227,214,112,235, 69,238,107,131, 85, 18,138,187,193, 45, 26,245,122,216,172, 54, -135,201, 50,155,205,144, 36, 9,163, 70,141,186, 65,104,243,230,205, 48,155,205,229,255,153, 32, 92,123,225,133, 23, 74, 77,145, - 64, 41,197,239,191,255, 14,165, 82, 89, 42,138, 69,136,111,230,213, 42, 82, 76,124,247, 45, 40,100,124, 41, 67, 36, 73,192,170, -191, 54, 96,213, 95, 27, 28,235,242,188,236,218,173, 24, 54, 0, 48,155, 75, 34, 88,148,162,168,176,128, 21, 11, 6,131,193, 96, - 48,110,129,178,188,200,125,109,176,202,194,104, 40,130,213,169, 15,150,197, 98,129,205,102,195,220,185,115, 75, 53,231,201,100, - 50,112, 28,231, 49,130,245,231,159,127,150,154,220, 51, 33, 33,129, 82, 74, 49,112,224, 64, 71,115,227,179,207, 62,139, 23, 95, -124,209,103,131,101, 19, 41, 38, 77,253,204,161,211,179,115, 91,244,235,209, 14, 82,137, 23,190,118,108,185, 79,130,229, 25, 54, - 0, 48,155,138,251, 96, 81, 0,250, 2,214, 68,200, 96, 48, 24, 12, 6,195, 11,131, 37, 19,184,188,115,151,174, 4, 84,210,170, - 96,147, 76,176, 73,197, 35,255, 68, 81,196,139, 47,190,232, 88,111,200,144, 33,120,234,169,167,220, 26, 44,111,158,182, 45, 73, - 18,118,238,220, 9, 66, 8, 56,142,115,188,202,162, 44,205, 34,147,132, 93,191, 77,134, 68, 41, 36, 10, 72, 37, 3, 17,204, 54, -207,209, 70,119,154,158, 12,155, 82, 23, 8,158,163, 32, 4, 56,151,122, 21, 2,207,229,249,186,239,190,194, 52,153, 38,211,100, -154, 76,147,105, 62,168,154,255, 25,131, 69, 69,250,218,156,213,123,103, 89, 69, 41,192,254, 91,253,250,245, 97,177, 88,176,110, -221, 58,135,241,224,121,222,209,164,231, 77, 31, 44, 23, 46, 63,242,200, 35,229, 77,197,112,217,187, 51,141,203,205, 58, 60, 94, -165,188,229,190, 38,204,147, 97,251,126,251,191,143, 32, 20, 56, 46, 15,148,190,198,178, 19,131,193, 96, 48, 24,140,114, 13,214, -229,180,180, 5, 0, 22, 56,255,214,171, 87,175,194,190,125,251,170,109, 54, 27,204,102, 51, 44, 22, 11,204,102,179,227,165, 84, - 42,125,154,113,211,155, 73, 68,189,225,218,209,229,177, 21,122, 84,188, 48,108,233,233,233,177, 44,251, 48, 24, 12, 6,131,193, -240,201, 96,185, 67,175,215, 7, 18, 66,132,244,244,244, 27,150, 93,185,114, 5, 0,108, 15,194, 65,169,112,195,198, 96, 48, 24, - 12, 6,131, 25,172,178,216,186,117,171,237, 65, 49, 81, 12, 6,131,193, 96, 48, 24,183, 11,142, 29, 2, 6,131,193, 96, 48, 24, -140,138,133, 0,104,224,110,129, 47,163, 3, 8, 33, 13,124,253, 99, 79,250, 76,147,105, 50, 77,166,201, 52,153, 38,211,124,240, - 52, 61,105, 59,111, 79, 8,121,145, 82, 58,247,190, 52, 88,183,243,249,192,108, 8, 43,211,100,154, 76,147,105, 50, 77,166,201, - 52,111,225,127,238, 91,131,197,154, 8,125, 57,209, 9, 47,201,216, 81, 96, 48, 24, 12, 6,131,225, 9,225, 78,253,209,164, 73, -147,110,201,204,125,240,193, 7,210, 93, 51, 86, 49,143,213,224, 5,124,210,180, 73,195, 30, 92,236,128, 53, 84, 36, 99,105,234, -239,231, 88,246,185, 57,122, 68,232, 42, 65,180,245,214,106, 85,253, 98,252,132,135, 47,102,233,119,155,173,210, 42, 73, 33, 95, -177, 62, 53, 63,135, 29, 33, 6,131,193, 96,252,231, 13, 86,243,230,205,171, 73,146,244, 52,128, 39, 41,165,135, 15, 29, 58,244, -216,205,232,108,222,188, 57,218,106,181, 54,183,217,108, 77, 1, 52, 85,107,116,141, 77, 38,227, 53, 2,250, 76,143, 30, 61,254, -241, 85, 47, 33, 33,225, 47, 0, 61,221, 26, 38, 66, 38, 29, 60,120,112,162,183, 90,188,128, 79, 54,172,248,190, 95,134, 94,141, -109,137,151, 30,253,241,211,113, 0,208,255, 94, 60,161, 81, 81, 81,106, 0,207,112, 28,215, 73,169, 84,214, 50, 26,141,201, 0, -142, 18, 66,102,167,166,166,166,223,148, 57, 38,132,219, 31,166,124, 78,169,210,116,175,164, 83, 52,205,204,201, 75, 51,217,164, - 29, 84, 38,159,225,171, 33,234, 81,131, 40, 66,253,130,183, 61,215,167, 99,221, 58,117,107, 64,186,116, 24,166,220,204,190,199, -175, 24,250, 46, 74,188,246, 70,143, 26,164,233,218,115,212,236,141, 86,229,202,149, 35, 69, 81, 20,210,211,211, 83, 0, 32, 46, - 46,206,223,100, 50, 53, 3, 80, 23,192, 73,165, 82,121,240,194,133, 11,249,183,114, 60,239, 23,205,152,152,152, 40, 73,146,158, - 15, 15, 15,239,117,245,234,213,191, 56,142,251,254,102,207, 55,227,191, 67,213,135,159,250,156,112,164,146, 47,219, 80,137,102, - 37,239,253,229, 13,118,244, 24,140,219, 96,176,234,215,175,175, 85, 40, 20, 3, 57,142,123,166, 81, 66,203, 54,125, 7, 61, 67, -172, 68,131,143,222, 26,226,243, 20, 14,135, 14, 29, 82,102,100,100, 76,169, 86, 39,225,127,237,187,246,227,234,213,173,131, 74, - 33, 65,144, 56, 5,230,175, 59, 19,178,245,187,103,191, 6,208,242, 38,146,217,243,183, 53,251,144,145, 43,130, 16,128, 16,128, - 35, 64,161, 81,194, 59,195,219,124, 0,192, 43,131, 69, 18, 94,146,197,215,175,219,227,204,117, 21,214, 29,179, 2,136,130, 38, - 40,188, 7, 73,120, 73, 70, 19,191,179,222, 75, 39, 51, 50, 50,178,105, 72, 72,200, 55,207, 62,251,108, 80,173, 90,181, 34, 21, - 10,133,198,104, 52,214,188,116,233, 82,181,153, 51,103,118,137,140,140,156,158,145,145,241,135, 79, 7, 49, 82, 85, 37,172, 81, -181,223, 38, 60, 63,172, 69,181,170,149,193,155,139, 64, 77,133,149, 51,146, 47,180,156,253,203,159, 47,116, 13, 83, 14,222,112, -205,180,201,107,193, 2,229,187, 35, 70, 63, 94, 55, 86, 75, 97, 62,190, 19, 2, 79,161,244, 11, 66, 3,158, 7, 40,173, 55,107, -167,237, 29, 0, 31,120, 97, 36, 39, 3,120, 7, 0,137,140,140,252, 77, 38,147,237,127,248,225,135,235, 60,241,196, 19,164, 97, -195,134,248,231,159,127,234,173, 90,181,234,177, 42, 85,170,156, 50,155,205,251, 66, 66, 66, 14, 31, 63,126,220,226,101,254,150, -103,103,103, 55, 86, 40, 20, 15,221,203,154, 81, 81, 81,106,179,217,252,116, 76, 76,204,139,125,251,246,109,216,167, 79, 31, 82, -187,118,109,156, 58,117, 42, 97,237,218,181, 31, 52,110,220,248,104,106,106,234, 92,133, 66,241,115,122,122,186, 87,147, 0, 15, -234, 76, 78, 45,221, 68,235,220,236,114,151, 27,153, 64, 0, 42, 74,105,134, 23,235,134, 3,208, 80, 74, 47,220,105,205,219, 65, - 76, 76,204, 9, 66, 72,112, 73, 58,236,233, 41,245,217,249, 93, 20,197,162, 75,151, 46, 85, 47, 79,179, 74,149, 42,245, 36, 73, -226,157,127,147,201,202,238,181, 96,179,217,164,148,148,148,227,229, 30, 35,142, 84, 90,243,219,236, 0,165,192, 65,148, 40, 36, -137, 66, 4, 32,138,128, 40, 73, 16, 69, 10,145, 2, 34,149, 32,137,128,193, 44,226,197, 87,152,183, 98, 48, 42,212, 96, 17, 66, - 72, 66, 66,194, 35,148,210,103,170,198,213, 24, 56, 96,232, 75,234,170, 53, 27,160, 80,242,199,197, 44, 9,135,182, 44, 2,128, - 37,190,252,249,250,245,235,155, 81,138,159, 70,142,251,188, 78,163, 38,205,113, 44,205,134, 93, 41, 34,138,206,137, 16,120, 3, - 36, 9,160,148,154,110,118,231, 82,115,108,216,113,202, 12,158, 3, 56, 14,224, 57, 2,222,199,231,116,211,196,239,172, 92,236, -128, 53, 27,246,167, 61, 10, 85, 56,244, 57,105,208,231, 92, 93, 75, 83,254,188,167,204, 85,116,116,116,199,184,184,184, 47, 94, -127,253,245,136,140,140,140,224,125,251,246, 65,169, 84, 34, 40, 40, 72,168, 84,169, 82,157,113,227,198,229, 77,157, 58,245,237, -240,240,240,127,174, 94,189,154,236, 85,180, 41, 66, 81,183,113,124,252,238,215,222,255, 32,192,120,112, 45,114,150, 45, 3,207, - 73,144,107,117, 8, 81,107,240, 94,151, 42,193, 51,182,164,254,209, 35, 88, 93,119,237,117, 67,154, 55,154, 17,161, 33, 93, 99, -107,212, 70,238,234,217,184, 92, 96,198,225, 76, 51, 58,183, 77, 64,149, 32, 53,234,218, 68, 4,171,100, 29, 61, 25,172,152,152, -152, 32, 0, 99,147,147,147, 57,185, 92, 78,170, 85,171, 54,120,238,220,185,180, 94,189,122,142,167,110,183,108,217, 18, 45, 91, -182, 36,133,133,133,117,119,237,218, 85,119,249,242,229,214,232,232,232,196,180,180,180,249,101, 71,150,170, 95, 54,153,140,149, -149, 42,181,113,230,204,153,191, 62,252,240,195,146, 66,161,192,173,104,150, 24,223,133, 49, 49, 49,154, 9, 19, 38,100, 53,111, -222,156, 86,132,102,181,106,213, 54,180,109,219,182, 67,215,174, 93,133,214,173, 91, 35, 42, 42,202,177,172, 82,165, 74,104,219, -182, 45, 73, 73, 73,105,180, 99,199,142,217, 27, 54,108,152, 85,173, 90,181, 45, 23, 47, 94,236,234,197, 41,170,125,139,203,157, -225, 1, 76, 35,132,204,163,148,238, 42,167,110,105, 10, 96, 8,128, 79,238,146,102,185,168,213,234,171, 70,163, 49, 12, 0, 84, - 42,213, 53,131,193, 16,238, 69,125,169,155, 57,115,102,152, 92, 46, 7,199,113, 16, 69, 17,162, 40, 66,146, 36, 80, 74, 29,239, -246, 65, 70,147, 39, 79, 22, 61,105, 74,146,196,125,254,249,231, 50,181, 90, 13, 0,176, 90,173,165,222,237,216,191, 79,158, 60, -217,171, 58, 74, 41,112,120,254,185,167, 91,112,162, 89, 5, 0, 18,175, 48,118,126,230,227,253, 0,176,105,254,216, 82,191,191, - 63,237,219,253,236,178,201, 96, 84,176,193,106,210,164,201,154, 30,253,159,234,254,240, 35, 93, 97,147,135,225,212, 53,130,148, -139, 20, 2,111, 3, 7, 9, 23, 14,172,160, 28,199,253, 92,202,156,148, 51,194, 96,205,154, 53,111, 84,169,209,120,250, 59, 19, -167,241,199,174, 42,240,211, 14, 3, 68, 83, 30, 12, 89,231, 80,116,237, 12, 10,174,156, 64,110,218,177,163, 28,199, 77,244, 86, -243, 6,115, 68, 1,137, 82, 16, 74, 0, 9, 0,104,113, 24,235,134,245,202,215,164, 34, 25,155,184,225,167, 71,155,244, 27,143, - 51, 59, 22, 0,148, 27,235,249,191, 43,126,116, 69, 89,154, 81, 81, 81, 93,170, 86,173, 58,227,165,151, 94,138, 57,114,228,136, -191, 94,175, 47,218,191,127,255,182,140,140,140,240, 74,149, 42,165, 60,241,196, 19,173,194,194,194,194, 30,121,228, 17,205,250, -245,235,223, 5,240,188, 39,205,158,225,138,248,198, 13, 27,239,121,115,218, 39,218,172, 63,102,193,124,241, 8,142,100,153,112, -250,186,145,134,235,242, 73,143,186,129,208, 40, 4, 12,108, 18,170,155,186, 49,229, 99, 0, 67,189,217,247,232,168,240,234, 86, -131, 1, 70,131, 5,219,206,231, 27,246, 95,205, 9,227, 2,210, 50, 95,232,209, 84,197,103,165, 35, 68, 39,212,244,245,120, 18, - 66,160,209,104,220, 46, 11, 8, 8, 64,203,150, 45, 81,189,122,117,217,144, 33, 67, 30, 6, 48,191, 44, 77,139,197, 18,153,150, -150,142, 90,181,107, 41, 59,117,234, 68,120,158,135,217,108,190, 37, 77, 0,208,106,181,125,154, 54,109, 42,252,242,203, 47,185, -201,201,201, 73, 3, 6, 12, 72,211,104, 52,165, 46,168, 26,141, 6, 85,170, 84,193,203, 47,191, 44,123,225,133, 23, 60,106,134, -135,135,119, 89,176, 96, 1, 8, 33,142,139,183, 43,177,177,177,136,136,136, 64,207,158, 61,133,199, 30,123,172, 75,121,199,115, - 80,103,114,202,110,158, 6,117, 38,212, 67,148,139, 2, 56,237, 26,201,114,213,164,148,102, 19, 66,230, 0,248,147, 16, 50,208, -157, 33, 34,132,180, 6,176, 12, 64, 15, 74,233, 53, 79,231,221, 89, 83,161, 80,200, 45, 22, 75,144,171,241,241, 85,211, 41, 45, - 52, 49, 49, 17, 9, 9, 9,112,126, 55, 26,141, 14, 35, 68, 8, 9,243, 54,127,242, 60,143,111,191,253, 22, 28,199, 65, 46,151, - 67, 38,147, 65, 46,151,223,240,106,210,164,137,215,229, 93, 38,147,225,219,111,191,133, 40,138, 92,114,114,242, 51,162, 40,246, - 51, 26,141, 97,106,181, 58, 83, 46,151,175,110,215,174,221,143, 74,165,210,230,139,166, 77,162,224, 68,179,106,211,250,149, 90, -147,201,132,222,253, 30,119, 44,115,253, 93,164,119,183,174, 99,154, 15,182,166, 7,154, 3, 8,117,250,110, 6, 96,191, 91,205, - 66,241,180, 83, 33, 46,191, 59,175,103,127,207, 44,249, 61,180,100, 59,234,164,155, 9,224, 64,133, 26, 44, 66, 8,165,148, 18, -251,123, 25,235,250,167, 26, 2, 81,120,177, 18, 4, 78,130,192, 19, 8, 60, 0, 16,100,167,158,128,185, 40,123,231,193,131, 7, - 47,122,243,167,235,214,173,107, 89,181, 94,139,143, 39,126,248, 41,247,227,118, 3,242,244, 70,100, 29, 95,137,140,253, 63,100, - 72, 54,203, 74,142,227, 14,114, 28,119,168,105,163,134,167, 34, 35, 35,197,155,221, 57,137, 2,162,179,177,146, 0, 2,223,167, -165,160,169,191,159,139,106,247, 94,169,239,247,138, 67,142,137,137,233, 81,163, 70,141,105, 47,189,244, 82,236,161, 67,135,252, - 10, 10, 10, 50, 55,109,218,116,202, 98,177,252,195,113,220,151,233,233,233,237, 22, 44, 88,160, 25, 51,102, 76,215,218,181,107, -215,222,176, 97,131,222,147,102,207, 80,109,163,158,131, 6,239,233,244,220,171,170,164,223,191,134,234,244, 33, 44, 59,155, 39, -158,184,102,126, 23,254,198, 47,232, 21,101,235, 2,179,184,113,248, 67,225, 92,152, 78,134, 8, 63, 89,123,111,211, 43, 19,228, - 2, 21, 84, 48,155,108,208, 91, 68,243,214, 76, 90, 52,165, 75, 67, 11,213, 86, 82, 1,128, 64,136, 71,211,159,154,154,154, 19, - 21, 21,245,113,213,170, 85,223, 35,132,208, 71, 30,121,228,120, 66, 66, 66,145, 36, 73, 48, 24, 12,176, 88, 44,144,201,100, 48, - 24, 12,184,116,233, 18,246,237,219,135,128,128, 0,159,142,107,110,110, 46,170, 86,173, 10,141, 70,115,203,154,146, 36,145,217, -179,103,171,146,146,146, 84,127,254,249,103,240, 27,111,188,145,215,164, 73,147, 19,143, 62,250,104, 74,112,112,176,229,240,225, -195,216,179,103, 15,114,114,114,208,162, 69, 11,175, 52, 45, 22, 11, 4, 65,128,193, 96,128, 82,169,132, 32, 8,176,217,108,144, - 36,201, 97,186, 10, 11, 11,113,253,250,117,200,100, 50,143, 15, 98,183,155,165, 65,157, 9, 93,186,108,247, 53,136, 18, 32,230, - 91, 97,201,179,194,150,103,133, 53,207, 10,107,174,117,208,235,159, 53, 90,186,137, 18, 31, 42,225,189,132,144,129, 0,150,185, -154, 44, 39, 35, 52,144, 82,122,216, 87, 77,139,197,178,211,110,124, 84, 42, 85, 24, 33,197,198, 80,169, 84, 90, 77, 38, 83, 7, - 95, 52, 1, 32, 49, 49, 17, 77,155, 54,229, 75, 52,169,253,189,228,229, 19,132, 16,240, 60, 15,153, 76, 6,158,231,209,180,105, - 83,244,233,211, 7,181,107,215, 70,106,106, 42,182,110,221,138, 51,103,206, 64, 46,151,151,106, 58,244, 88,126,100, 50,112, 28, -199,157, 62,125,250,199, 78,157, 58,213,120,237,181,215, 20, 85,170, 84,193,169, 83,167, 34,102,207,158,253,212,230,205,155,219, -245,239,223,255, 41, 0,182,242,154, 15,157, 17,165,127,119,239,196,137, 19,110,215,177,255, 46, 82, 48, 24,183, 13, 15, 94, 36, -148, 16,178,218,169, 30,232,109,255, 62,110,220,184,119,166, 77,155,150, 68, 8, 89,237,252,187,243,122,206,239, 37,255,181,154, - 82,218,123,252,248,241,241,211,167, 79,159,106, 95,247,174, 68,176,120,158, 31,112,108,221, 23,123,107, 90,104,108,120,124,175, -146, 58,135, 0,160,184,116,120, 29, 36, 73,154,239,141,206,158, 61,123, 84, 54, 9, 63,142,121,103, 50,247,221, 22, 3,174, 94, - 73, 71,250,182, 79, 96,184,118,226, 39,181, 90,253,102,167,238,189,243,111,117,167, 18, 18, 18,226, 3, 67, 34, 96,178,208, 18, -131, 85,218,100, 61, 40, 68, 69, 69,245,169, 81,163,198,228,149, 43, 87,198, 26, 12, 6,191, 93,187,118,229,110,220,184,241,172, -197, 98,249, 62, 35, 35, 99, 97, 73, 38, 90, 41, 8,194, 20, 74, 41,116, 58,157,192,243,188,218,158,123,221,105,118,173,164,105, - 58,224,201, 33, 59, 95,248,116,142,234,236,177,195,152,181,100, 13,194, 4,171,120, 41,223,244,232,218, 76,147, 61,211,254,253, -108,117,255, 52, 74, 81, 89,198, 17,248,171,101, 17,131, 98,136,106,105, 42, 53,122, 74,115, 72, 76, 44,103,139,142,195, 14,189, - 9, 50,141, 92, 1, 0,225, 53,235,243,135,243,109,216,181,255, 36,136, 50, 88,238,205,190,167,167,167, 79,136,142,142,174,186, -113,227, 70, 78,175,215, 23, 29, 57,114, 4, 33, 33, 33, 8, 11, 11,131,191,191, 63, 78,157, 58,133, 77,155, 54,225,244,233,211, -160,148,150, 25, 37, 40,139,171, 87,175, 34, 63, 63,191, 66, 52,109, 54, 27, 1,128,248,248,120,196,199,199, 43,210,210,210,194, - 86,175, 94, 29, 52,117,234,212, 43,145,145,145,235, 13,134,127,187, 71,185, 54,247,148,133,201, 84,220,114,110, 52, 26, 97, 50, -153, 32,151,203,161, 82,169, 32,151,203,145,159,159,143,171, 87,175,162,160,160, 0, 0, 16, 24, 24,232, 88,223,203, 43, 46,176, -183,205,193, 27,195,143,207,132,221,228,157,238,174, 18,147,245, 55, 33,196,126,126,175,150,188, 15, 44,175,169,207,131,102,169, -227,225, 20,101,146,221,140,102, 66, 66,130, 93,163, 84, 45,161, 82,169,174,217, 35, 87, 42,149,234,154, 55, 90,246,102, 65,133, - 66,129,248,248,120,188,249,230,155, 56,117,234, 20,118,238,220,137,176,176, 48,116,235,214, 13,130, 32, 32, 37, 37, 5, 28,199, -121,101,176,228,114, 57,172, 86, 43,206,158, 61,251, 76,199,142, 29,227,102,205,154,165, 72, 78, 78,198,169, 83,167,224,239,239, -143, 41, 83,166, 40,199,142, 29, 27,179,126,253,250, 23, 26, 55,110,252,173,215,199,210,135, 58, 81,180, 50,135,197,184,187,184, -154, 32,187,113,154, 54,109, 90,111,119,166,202,141,137, 43,245,251,244,233,211,167, 58,125,175,208, 81,236,156,179,115,244,112, - 23, 30, 25, 24, 26, 29,252,210,208,110,144, 36,192, 38, 1, 54,145,194,160, 47,194,149, 83, 91,244,102,179,121,153, 55,127,152, -157,157, 61,229,217,255, 77,175,113,240,178,128,140, 28, 51, 82, 55, 79,166,166,172, 83,143,245,233,211,231,249, 78,157, 58, 85, -136,185, 10,170, 20,181,245,253, 79,126,192,129, 11,102, 72,244,223, 72,150, 40, 21,127,126, 16,136,142,142,174, 25, 20, 20,244, -233,138, 21, 43,170, 42, 20, 10,191,115,231,206,137,219,182,109, 75,183, 90,173,179,237,230,170,196,132, 61,217,160, 65, 3,171, - 86,171,133,193, 96, 48, 90,173,214,194, 50,205, 85,148, 58,166, 65,227,122,219, 95,248,116,142,202,104, 54, 35,207, 96, 66,213, - 42,209,226,133,124,211,163,107,175, 58,204, 21,122,132,169, 91, 53,136,139,140,230,212,126,197, 87,202, 66, 75,186, 55,230, 10, - 0, 84,254, 1, 92, 76,179,246,104,246,250, 87, 48, 9, 1, 20, 0, 2,194, 34,185, 14, 47,127,132,238, 95,108,131, 85,208,249, - 98,129, 13,181,106,213, 42,114,202, 91, 56,113,226, 4,242,242,242, 48,107,214, 44,156, 58,117,202,113,209, 53, 26,141, 55,117, -156, 43, 66, 83,146, 36,226,114,238, 48,114,228, 72,153,193, 96,208, 58,155, 43, 95, 52,205,102,179, 35, 29,148, 82,152,205,102, -228,229,229,193,108, 54,227,236,217,179, 14,115, 5, 0,162, 40,186,109,234, 44, 59,193,121,238,195, 93,214,108,235, 45, 84,138, -187, 0,200,157,250, 29,133,223,172,185,114, 49, 62, 94, 71,127,188,137, 96,185,139, 86, 25, 12,134,112, 74, 41, 73, 76, 76,132, - 55,253,175,156,246, 25, 10,133, 2,125,251,246,197,201,147, 39,145,150,150, 6,158,231, 97, 50,153, 96, 50,153,208,180,105, 83, - 71, 4,203,199, 99,217, 99,212,168, 81,170,139, 23, 47, 34, 59, 59, 27, 28,199,193,102,179, 65, 20, 69,188,240,194, 11, 42,179, -217,220,221, 23, 61, 95, 60,147, 72,153,193, 98,220,254, 40,150,155,223, 94,116, 54, 72,183,106,208,220,105,140, 31, 63, 62, 30, -128,242,182, 24,172,114,154, 6,145,144,144,208, 36,176, 82,244,150,241, 83,231,233,254, 60,194,227,122,198,105,164, 28, 90, 1, -155, 4,100,156,222, 5, 42, 90,255, 56,126,252,120,145,167, 63, 91,191,126,125,173,202,181,155,189,222, 56,225, 33,172, 63,102, -194,245,163,139, 97,206,185,248,109,175, 94,189,150, 87,196,206, 36, 36, 36,196, 7,133, 68,110,125,103,250,188,224, 85, 73, 50, - 92,190,120, 26, 91,103,245,197,134, 79, 58, 97,221,199,157,240,215,180,142, 88,249, 81, 71, 0, 88,227,139,110,123, 66,132,106, - 65, 22,116,169, 71, 16, 85, 73, 15,210,158, 8,119, 59, 19,166,165,165,157, 5,240,243,188,121,243, 10,118,238,220, 41,142, 24, - 49,226, 76, 94, 94,222,135,233,233,233,139,157, 46,228, 29,227,226,226,222,154, 60,121,114,109, 81, 20,177,125,251,246,179, 60, -207,151,217,190,188, 33,221,144,122, 50,233,248,236,253,139,127,192, 63, 7, 15, 96,229,228, 55,109, 39,142,159,234,179,193,217, - 92, 69, 40,234, 54,172, 19,183,122,216,203, 35, 57,162,212,226, 92,182, 9,153, 69,214,205,222,166, 59,179,208, 96,149, 41,213, -208, 69, 84, 69,186, 65,146, 71, 71, 71,239, 75,207, 55,200, 57, 94, 0, 39,200,145,146,103,246,233, 34, 46, 73, 55,250, 49, 87, -211, 2,192, 99, 19,153, 71, 39,119, 11,154,246, 8,214, 13, 23, 54,171,149,220,172,166,179,193, 42,117, 1,116,211, 23, 75,146, - 36,223, 12,150, 37,223,253, 57, 48,103, 87,196,192, 14,115,201, 11,183, 98,174,236,198,199, 30, 81, 82, 42,149,142,166, 54,111, -163, 76,238, 34, 88,183,178,220,229,130, 0, 73,146, 32,147,201, 80,179,102, 77,228,229,229,193,223,223, 31,126,126,126,208,233, -116, 80, 42,149, 8, 15, 15,135, 66,161, 0,199,113,224, 56,239,166, 9,180, 90,173, 48,155,205, 17, 49, 49, 49, 40, 44, 44,132, - 74,165,114,188, 20, 10, 5,106,215,174,141,194,194, 66,159, 34,141,146, 40,249, 80,222,152, 1, 96,220,246, 8, 21,113,243,219, -220,178, 34, 88, 21, 17, 5,179, 71,178, 0,168, 43,114, 95, 4, 47, 42,157, 38,129,149,162,183,140,253,104,174,255,210, 67, 28, -114, 51, 78,225,210,186,119, 10, 68,139, 62, 71,146,172,177, 57,231,119, 2, 78, 29,114, 61, 92, 12,155,183,234,216,143,219,122, -210, 12, 75, 65, 58,242,147,150, 36, 43,149,202,113, 21,105,174,198, 77,155, 23,252,231, 17, 1,215,211, 79,227,252,154,241,121, -162, 69,223, 49, 49, 49,209,231,121,180, 94, 34, 68,246, 29,165,214,126, 97, 97,143, 86,174, 28,254,201,240, 1,126,120,164,179, - 26,254,114,127, 76,158,193,157, 12,111, 77,222,186,186,139,174, 34, 9, 68, 70, 19,233, 93, 25, 81,152,148,148,244, 81,205,154, - 53, 57,155,205, 54,220, 98,177, 76, 76, 79, 79, 95,230, 20,185,234, 18, 27, 27,251,201,148, 41, 83, 98,146,147,147, 21,123,247, -238,189,254,207, 63,255, 72,162, 40, 78, 47, 79,115,205, 21,195,152,238, 97, 74, 62, 38, 42,106, 84, 90, 90,122,223,117,153,166, -117,246,101, 61,195, 21,241,141,234,215,223,245,230,187, 99,253,204,123,127,135,254,106, 42, 22, 30,188,150, 47, 72,220,120, 47, -163,110,193, 45,252, 56,124,242,202,112,169,160,160, 0,254, 42,133,148,122,236, 28,255, 70,175,246,226,156,247,222,230,174, 92, -185, 2,163, 94,207, 71, 71, 71, 7,167,165,165, 93,247,234,142,218,141,161,112, 23, 5,242,201, 96,184,225, 86, 52, 93, 35, 88, -229, 25, 44,111, 53,157,155,196, 60, 29, 15, 81, 20,125,107, 34,180,149, 97,176, 44,153,150, 91,204,178,151, 9, 33, 85,236,159, - 43,162, 12, 24,141,198, 48,167,166,193,114,111, 20,189,140, 96,221,244,242,178, 34, 88,231,206,157, 67,104,104, 40,108, 54, 27, -180, 90, 45,212,106, 53,212,106, 53, 12, 6, 3, 20, 10, 5,120,158,247, 73, 87,169, 84, 94, 57,117,234, 84,108, 80, 80, 16, 68, - 81, 44,101,178, 46, 94,188,136,128,128,128,107,222,246,191, 2, 74,247,193, 2,128,192, 0,173,236,239, 31,254,215,206,254,185, -244,186,204, 0, 48,238,122,132,107,181,179, 73, 34,132,172, 30, 55,110,220, 59, 55,171, 55,110,220,184,119,110, 53, 42, 86,174, -193,178, 87, 74,174,149, 83, 66, 66, 66,147,192,144,168, 45,111, 77,249,206,255,215,131, 28,242, 50, 78, 34,125,211,123,121,146, - 69,223,145,227,184,140,148,221,115,151, 1,208, 31, 58,116,104,155,151, 23,195,166,117,106,213,194,210, 36, 27,140, 87,142,128, - 35,116,126,231,206,157,245,183,186, 19,118,115, 53,102,234,220,224,165,255, 8,200, 41, 54,129,121,210, 77,152,171,161, 74,101, - 13, 25,199,125, 82,163,101,211, 94,131,195, 43, 21,246,172,161, 9,236, 89, 67, 9,126,239,114,172,138,186,134,235,149,254,198, -200,153,209, 53,118,175,200, 95, 89,165,147,112,189,239, 35,141,253,163,218, 9,127, 89,169, 56, 38,115, 59,189,227,157,223,207, -158, 61, 59, 37, 34, 34,226,207, 43, 87,174, 56,122,167,198,196,196,244,168, 90,181,234,212,201,147, 39, 87, 77, 73, 73,241, 59, -124,248,112,254,178,101,203, 46,114, 28, 55, 57, 35, 35,195,227,221,253,186,107,166, 55,123, 69, 42,190, 95,155,105, 62,229, 48, - 87,161,218, 70,189, 30, 31,188,167,229,160,103, 84,231,183,254,140,224,212,227,248,249,112,150,152, 89, 96, 30,178, 62,203,116, -197, 27,115,165, 80, 40,150,190,247,235,239,103, 27, 52,104, 64,244,122, 61,172, 86, 43, 50, 51, 51, 49,246,135, 37, 73,146, 36, - 33, 40, 40, 8,155, 55,111,150, 94,127,253,245,165,209,209,209,131,188, 49, 89,146, 36, 57, 46, 86,101, 69,129,212,106,181,111, - 6,163,100, 27,103, 3,115, 43,154,101, 25, 44,215,200,150,143,154,197, 5,184,164,115,123, 89, 17, 61,158,231, 33, 73,146,219, - 72, 95,217, 97,146,220, 50, 12,214,181, 91,186,145,160,148,198,122, 24, 72,115,215, 40,153,138, 1, 0,164,178,166, 98,112,234, -163,229, 85, 4, 11, 0, 20, 10, 5,118,239,222,141,238,221,187,255,159,189,243,142,138,226,250,219,248,115,103,123, 97,233,189, -136, 40, 29, 81, 17, 80, 17, 11, 26,123,215,196, 88, 19, 75,172,137,198,168,177,199,222, 98,236,166,153,216,107, 44, 81, 99,236, - 13, 75,176,119, 81, 65, 68,144,222,251, 46, 91,231,190,127, 0, 6, 13,101, 65,243, 38,241, 55,159,115,246,192,206,206, 62,123, -239,220, 59, 51,207,124,111, 3,203,178, 16,139,197,144, 74,165,144, 72, 36,184,126,253, 58,132, 66, 33,120, 60, 94,141,154, 9, - 5, 2,193,241,111,191,253,118,232,178,101,203,164, 44,203, 66, 36, 18, 65, 42,149, 66, 44, 22, 99,213,170, 85, 42,145, 72,116, -162,102, 6,235,213,186,177,125,235, 38,145, 88, 44, 22, 25,179, 47, 7,199,223, 17,189,170,228, 26,145,241, 90,228, 73, 83,238, -125, 6, 74,214, 86,238, 94,250, 63, 42,248, 95, 83,193,182,172,165, 75,151,158, 47,215,127, 43,227,255, 37,130, 21, 16, 16,224, - 99,105,227,124,126,210,194, 13,166,219,174,241,144,151,242, 8,153,231,191,202,163,122, 85,121,211,210,178,134,191, 23, 96,107, -107,133,204,136, 98,232,114,158,130, 16,114,251, 77, 51,208,180,105, 83, 15,115, 75,251,240, 41,139,126,178,220,125,139,143,220, -228, 63, 77, 96,109, 34, 87,124,134,249,102,229,201, 95,122,138, 83, 31, 67,117, 47,220, 92,144,157,136,135,233, 90,236,139, 72, - 45, 8,255,227,231,203,140, 47,109,213,110,160,185, 73,187,129,150, 88, 51,246,132,101, 90,113, 36,174, 69,255,222,107,201,140, -223, 41,254,161,217,221,203,155, 43, 71, 71,199, 30,206,206,206,243,143, 30, 61,234,170,215,235, 21, 23, 47, 94, 44,216,191,127, -255, 51,189, 94,191, 46, 37, 37,229,168,177,154, 71, 83,254, 52, 87, 29,173,101, 77, 62,252,120,208,229, 97,203,127,144, 68,222, -186,129,229,219,142,194, 69,102, 48, 68,165,171,251,157,200, 80, 31, 55,234,184,242,249, 11,118,239,222, 45,247,245,245, 37, 89, - 89, 89, 47,111,248, 90,173, 22,249,249,249, 47,251, 15,249,251,251, 51,115,231,206,149,207,153, 51,103, 1,128, 79,171, 57, 25, -211,231,207,159,111, 59,106,212, 40,152,154,154, 34, 43, 43, 11, 58,157,238,101,180, 73, 44, 22,195,220,220, 28,185,185,185, 56, -115,230, 12, 42, 26,178, 95, 30,161, 80,152,226,228,228,232, 34,149,201, 53, 50,153,140,154,152,152,188,177,102,233,205, 54,181, -107,215,174,246,243,231,207, 23,149,111,102,210,106,181,164,182,154,148, 82,101,199,142, 29,101,235,214,173,131,171,171, 43, 52, - 26, 13, 88,150,125, 25,193, 42,155, 26,224,197,139, 23, 88,188,120, 49, 40,165,198, 63,200,232,114,116,112,254,216, 6,218, 44, - 29,180, 89, 58,104, 50,117,208,166,235,160, 87,254,235,238,174,181,233,128,110, 68, 36,204,246, 77, 35, 88,165,209, 52, 8,133, - 66, 36, 36, 36,224,236,217,179,104,218,180, 41, 20, 10, 5,138,138,138,112,229,202, 21,164,166,166,214, 42,130,213,174, 93,187, -173,167, 78,157,106,245,217,103,159,185,141, 25, 51, 70,234,227,227,131,184,184, 56,172, 94,189,186,248,209,163, 71, 73, 19, 38, - 76,248,185, 38,122,101, 81,169, 50,115, 95,217, 72, 66,160,164,223, 45, 7,199, 63,196,141,255, 90,130, 43, 53, 88, 12,195,124, -209,236,253, 89,166, 91,175,242,145,147,244, 16,121,151,230,190,110,174,140,185,200,188,178,218,182, 64,162,240,215, 83, 33,128, - 98,232,115,159, 65, 36, 18,213,216, 0,189,174,201,178,236,228,230,239,207,178,220,126,131,143,188,228, 71,200, 8,159, 83, 99, -115, 85,166, 57,154, 16,129, 71,139,160,110,226,180, 40, 20,135,239, 1, 1,176,241, 78, 17,174, 36,106, 86,105, 53,154, 69,145, -121,234, 92,231, 16, 98,177,103, 73,250,156, 46,125, 26,126,238,213,255, 12,174,101,252, 0,200, 0, 11, 27,126,151,242,205,133, -255,196,234,229, 78, 78, 78, 30, 10,133,226,155,227,199,143,219,136, 68, 34,211,200,200, 72,195,129, 3, 7, 18, 12, 6,195,202, -148,148,148, 61,181,209,236,232, 40,117,246,240,112,189, 48,108,217,119,146,130,194, 34, 20,105,180,240,168,231, 98,184,115, 63, -242,253, 83,233,154,195,198,104,218,217,217,181, 29, 52,104, 80,163,192,192, 64,166, 50,115,149,159,159,143,194,194, 66, 36, 38, - 38,162, 85,171, 86,140,143,143,143,191,157,157, 93,219,180,180,180,243,149,165, 51, 37, 37,101,222,158, 61,123, 66,247,238,221, -219,125,228,200,145,138,190,125,251, 66, 42,149,162,168,168, 8, 46, 46, 46, 96, 89, 22,151, 46, 93, 66,116,116,116, 1,128,223, - 83, 82, 82,254,168, 42,157,177,177,207,234, 16, 66, 24,103,103,231,208,206,157, 59,191, 21, 77, 0,200,200,200,112,191,112,225, -194,180, 94,189,122, 77,236,212,169,147, 98,230,204,153, 66, 55, 55, 55, 24, 12, 6, 82, 91,205,156,156, 28,179,219,183,111,175, -104,217,178,229,167,157, 59,119,230, 47, 89,178, 4,102,102,102, 48, 24, 12,144, 74,165,200,207,207,199,130, 5, 11,112,249,242, -101, 61,165,244,187,188,188,188, 41, 85,105,190, 50, 15,214,132, 85,141,171,170,135,149,205,131,245, 79,212,121,149, 74,101, 87, -211,168,152, 49,233,188,125,251, 54,125,125, 62,172,170, 34, 88,175,107,150,245, 7, 19,137, 68,224,243,249,200,200,200,192,169, - 83,167, 94,153,255, 74, 36, 18,189,156,198,161,162, 8, 86,101,233, 84, 40, 20,236, 7, 31,124, 48,252,248,241,227, 67, 39, 79, -158,220,171,160,160,192,214,212,212, 52, 67, 46,151,255, 62, 97,194,132,205,230,230,230,149, 78,209, 80,145,166,129,150, 76, 34, - 90,126,254,171, 10,163,166, 60, 81, 49, 91,193,144,195,127,162,220, 57,205,119, 83,243, 93,163,170, 62, 88,146, 63,110, 69,131, - 17,167,163,224,218, 55, 53, 54, 87, 21, 62,253,168,139, 98, 22,254, 18, 27, 96,208,168,160,207,143,143,234,220,173,107,250,155, -102,128, 82, 42,191,124, 59, 6,124, 73, 22,114,175,126,157, 75, 12,234,118,183,110,221,186, 91, 27,173, 13,148,234, 6,203,229, -225,207, 46,159,125,207, 17, 64,124,182, 6,119,159,100,159, 58,168, 84, 78, 46,219, 39,241, 10,205, 1, 48,209,161, 53,227,109, -233,153,215,193,204, 17, 72,127,161, 67, 78,134,254,248, 63,213, 23,171,140,164,164,164,167, 13, 26, 52,216,182,105,211,166,177, - 77,154, 52, 49, 25, 63,126,124, 89,199,247,189,181,213, 60,149,172, 74,236,108, 43,254,225,143,205,107,190,228,121, 5,227,212, -242,153,134,251, 15, 30,245, 62,149,174, 49,186,205, 90, 44, 22,135,141, 29, 59, 86,168, 84, 42, 43, 53, 87,249,249,249, 40, 40, - 40, 64,126,126, 62,238,222,189,139,190,125,251,138, 31, 63,126, 28, 6,224,124, 21,101,207, 2,184,228,238,238,126,253,135, 31, -126,104,191,125,251,246, 14, 35, 70,140, 16,133,133,133, 33, 50, 50, 18,215,175, 95,215,104,181,218,211, 18,137,228, 76, 76, 76, -140,198,200,250,244,119,104,234, 1, 44,182,182,182, 94,183,127,255,254, 69,231,206,157, 27, 50,116,232, 80,185, 94,175, 39,111, -168, 57,209,198,198,102,246,177, 99,199,182,158, 58,117,170,247,144, 33, 67,152, 9, 19, 38, 96,253,250,245, 56,112,224, 0,107, - 48, 24, 14, 11, 4,130,143, 51, 50, 50,170, 29,128,242,202, 60, 88, 85,204,115, 85,221,231,255,208, 83,232, 27,107,190, 30, 9, -107,210,164,137, 93,249, 81,154,229,255,214,132, 70,141, 26,189, 50,207, 85, 89,135,246,178, 23,143,199, 3,159,207,175, 81, 19, - 97,131, 6, 13, 32, 16, 8,216,128,128,128,205, 0, 54, 3,175, 46,153, 35, 16, 8, 94, 78,106,106, 12,170, 98, 3,102, 45,253, -225, 58,203,150,244,199, 50, 24, 74, 70, 11,150,140,188,102,193,178,128,193, 64,193, 82, 22, 58, 61, 23,193,226,224,120, 27, 6, -107,102,225,173,181, 58, 0, 86,132,144, 25,183,110,221,138,124,211, 31,227,241,152, 25,233, 71,134,173,163, 64, 14,143, 96,198, -219,200,128,193, 96,152, 85,116,123, 29, 75, 41, 53, 39,132, 76,191,121,243,230, 27,165,147,234,245,227,190,249,249,210, 42, 27, - 51, 81,135,204, 92,245, 49, 16, 82,225,172,237,122,208,207,118,124,253,226,107, 11, 27,126,151,156, 12,253,113,150,193,180,127, - 67,129, 62,124,248,112,137,135,135, 7,239,199, 31,127, 28,174,209,104, 94,233,248, 94, 91, 78,164,171,167,118,182, 21,243, 92, -235, 56,143,143,143, 79,236,101,108,179, 96, 57, 68, 78, 78, 78, 15,149, 74, 37, 8, 33, 80,171,213,175, 24,170,242, 6, 75,171, -213, 34, 61, 61, 29,110,110,110, 40, 55,103, 82,149,148,154,146,163,214,214,214, 23,215,174, 93,219,109,253,250,245, 45, 88,150, -141,208,106,181, 71, 51, 51, 51, 11,107,147,231,191, 67,179,244,123,159,203,100,178,101,235,215,175, 95, 33,145, 72,130,210,211, -211, 47,188,137,102,169,121,122,223,202,202,202,113,219,182,109,251, 54,109,218,212,156,207,231, 95, 37,132,244,203,205,205,173, -205, 98,207, 81,111,248,121,117, 28,248, 27,170,253, 27,107,214,100,250, 5,163, 30, 38,245,250,194, 25, 51,102,164,191,190,230, - 96,249, 57,175,202,255,213,104, 52,197, 70,104,178, 95,125,245, 85,149, 15,113,229,141, 86,113,113,113,181, 77,186,148,165,153, - 99,198,215,108,109, 65,202,210, 76,238,214,201,193,241, 6, 6,235,214,173, 91, 9, 0,134,189,205, 31,235,220,185,243, 89, 0, - 62,111, 83,243,238,221,187,241, 0,134,188, 45,189, 93,106,117, 12,128,238,163, 9, 17,236,160,149, 71,164, 74, 59,180,247,249, - 39, 71, 17, 86, 70, 69, 29,223,223,130,201,154,220,205, 65,180,241, 68,185,142,239, 53,184,217,156, 20,139,197, 36, 63, 63, 31, - 90,173, 22, 5, 5, 5, 47,205, 85,121,147,165,215,235, 65, 8, 65, 65, 65, 1, 76, 76, 76,160,211,213,108, 86,195, 82,147,178, - 39, 44, 44,108,127,120,120,184,254,109,228,251,239,208, 84, 42,149,169, 0, 6,133,133,133,241,223,150,102, 86, 86, 86, 50,128, - 22,238,238,238, 34, 99,163, 96, 85, 69,178,106,251,185, 17,252,248, 55, 84,249,157,255,182, 11,107, 92, 92,156,239,219,214,124, -241,226,197,163,183,158,206,171,219,185,149,155, 57, 56,254,191, 13,214,219,102,238,220,185,255,169,225, 39, 27,168,113,166,233, -223,102,174,202,120,155,230,170,140,242, 29,223,107, 66, 82, 82,210,121, 0,176,181, 45,233, 59,236,226,226, 98,236,247,106,149, -206,183,101, 90,254,139,154,111, 98,174,254, 63,160,148, 22,254, 13,154,169,224,224,224,224,248,151,193,112,135,128,131,131,131, -131,131,131,131,227,237, 66, 0,248, 87,242, 84,104,244,232, 0, 66,136,127, 45,158, 58, 31,112,154,156, 38,167,201,105,114,154, -156, 38,167,249,191,165, 89,157,246,107, 35,114, 71,149,159,201,253, 63,101,176,232,223,184,182, 20, 55,132,149,211,228, 52, 57, - 77, 78,147,211,228, 52, 57,205, 55,248,157,255,172,193,226,154, 8, 57, 56, 56, 56, 56, 56, 56, 56,222, 50,124,238, 16,112, 24, -131,179,179,243,210,102,205,154,141,187,113,227,198,202, 23, 47, 94, 44,168,165,134,163,149,149,213, 98, 0, 45, 40,165, 98, 30, -143,247, 40, 51, 51,115, 73, 66, 66,194,165,218,166,203,209,209,209,197,198,198,102, 49,128,230, 44,203, 10, 5, 2,193,195,180, -180,180, 69, 73, 73, 73, 87,107,171,105, 99, 99, 35,119,112,112, 8,162,148,218, 82, 74, 25,129, 64,144,147,148,148,116, 55, 61, - 61, 61,157,171, 9, 28, 28, 28, 28, 28,111,108,176,230,143, 39, 14,208,130, 63,119, 3, 77, 0, 0, 66,136, 41,128, 32,148, 76, -181,240, 24,192, 77, 74,105,254,155, 36,224,191,162,249,111,135, 16,194,152,155,155,119,148,201,100,159, 23, 22, 22, 6,152,154, -154, 62, 44, 93, 30,231,247,210,201, 51,107,141,173,173,173,237,135, 31,126, 56,125,237,218,181, 24, 62,124,248,108,107,107,235, -213, 53,157,183,201,215,215,183,167,147,147,211,134,133, 11, 23,217, 52,109,218,148, 72, 36, 18,196,196,196, 56,205,154, 53,179, - 73,147, 38, 77,246,221,190,125,251,211,154,166,171, 65,131, 6,253, 92, 93, 93,215, 45, 89,178,196, 38, 40, 40,136,240,249,124, -220,191,127,223,121,254,252,249, 77, 3, 2, 2,182,221,185,115,103,114, 77, 53,253,253,253,221,220,221,221, 91, 44, 90,180, 72, -210,180,105, 83,136,197, 98, 60,122,244, 72, 62,115,230, 76,155, 38, 77,154, 60,189,125,251,246,181,154,232, 5,142,190, 45, 16, -202,180,124, 0,208, 42,133,250, 91, 27,154,232,140,221,198, 93,158, 56, 56, 56, 56,222, 65,131,181, 96, 44, 89,192, 0, 51,193, -128, 76, 28, 72,246,174,223,203, 92,111,223,190,189,247,136, 17, 35, 72,233,210, 17,190,123,246,236,121,159,199,227, 61, 97, 89, -246, 26,128,187,148, 82,173,145,102, 64, 8,160, 49,195, 48,205,254,205,154,255, 5, 20, 10,133,135,141,141,205,100, 43, 43,171, - 46, 65, 65, 65,249, 99,198,140,137,187,122,245,106,108,112,112,112,241,166, 77,155,150,232,116,186,239, 61, 61, 61, 79, 23, 20, - 20,172,168,237,212, 13, 2,129,192,135, 16,130,164,164, 36, 8, 4, 2,129, 72, 36,242, 5, 96,180,209,112,113,113,113,112,116, -116,252,113,239,161,147,182,249,106, 6, 79, 51, 88, 0, 74, 24, 24,107, 44, 92,190,222,106,197,226,217, 3, 61, 61, 61, 47, 71, - 71, 71,255, 98,172,166,163,163,163,139,171,171,235,186,115,231,206,217,138,197, 98,176, 44,139,130,130, 2,216,218,218, 98,233, -210,165,150, 11, 23, 46, 28,225,230,230,118,241,249,243,231, 71,140,213,180,177,177,145,187,187,187,183, 56,127,254,188, 68, 36, - 18, 17,157, 78, 71,212,106, 53,236,237,237,233,170, 85,171,196,179,102,205,242,114,115,115, 75,125,254,252,249, 11,163,204,213, - 79,183, 5,249,153,231, 67,104,130,106, 54, 0, 16,137,116, 81,216,124,203,235,249,153,231,155, 86,183, 45,240, 39, 92,185, 53, -138, 51, 89, 28,255,191, 56, 58, 58,134,186,185,185, 29,122,241,226, 69, 4,143,199,235, 31, 23, 23,167,126, 83, 77, 66,136, 51, - 0, 55, 0, 22, 40, 25, 88,149, 13, 32,142,210,146, 7,247,218, 96,237,222,182, 7,196,178, 97,160,180, 49, 3, 0, 12,115,151, -213, 22,109,201,140, 58,127,228,141, 52, 37,242,225, 96,217,198, 12, 40, 11,134,119,143,234,139,126,206,120,124,254, 56, 87, 51, - 56,222,154,193,154,255, 9,177, 96, 4,152, 54, 99,204, 40,134,207,227,145, 37, 27,126, 26,112, 35,226, 8,117,168,211,248,229, -146, 27,173, 90,181, 66,171, 86,173,200,242,229,203,125,206,157, 59,231,179,107,215, 46, 29, 33,228, 22,165,116,107,101, 63,182, -116,130,236,133, 94,167,114, 89, 48, 78, 90, 92,183,249,247,187, 90,180,104,197,138,197, 98,188,137, 38, 0,124,218, 79,112,122, -120, 63, 55, 18,214,125, 78,252,219,210,252,143,152,171, 11, 10,133,194,125,244,232,209, 79,199,142, 29,123, 81, 46,151, 83, 0, - 72, 79, 79,151,119,235,214, 45,167,119,239,222, 89, 74,165, 18, 63,252,240,131,203,186,117,235, 78,155,154,154, 38,229,231,231, - 55,173,193,133,145,239,224,224,176,172, 67,135, 14,147, 6, 13, 26, 4,133, 66,129,161, 67,135, 66,173, 86, 71, 56, 58, 58, 46, - 79, 73, 73,153, 77, 41, 53, 84,167, 99, 97, 97, 49,119,254,252,249,182,133, 26, 30,102,111,143, 65,118, 97,137,111,144,137, 24, -124,250,158, 24, 31,125,244,177,217,157, 59,119,150, 3, 48,218, 96,217,216,216, 44, 94,178,100,137, 77, 89, 89, 23, 22, 22,162, -176,176, 16, 5, 5, 5, 40, 44, 44,196,160, 65,131, 76,159, 62,125,186, 6,128,209, 23, 92, 7, 7,135,160, 69,139, 22, 73, 68, - 34, 17,142, 28, 57,210,168,184,184,152,175,211,233, 64, 41,213,123,123,123,223,253,248,227,143,133,209,209,209, 33, 0,140, 50, - 88, 14,169, 16,228,169, 84,223,125,251,245,151, 54, 0,240,217,180,111,190, 3, 84,205,168, 17,219, 28, 82, 17, 12,128, 51, 88, - 85,215, 79, 30,128, 62, 2,129,160,175,187,187,123,208,211,167, 79,239,232,245,250, 95, 1,252, 74,233,155,205, 79, 71, 8,121, -207,209,209,113,113,114,114,242,183,148,210, 29,255, 43,199,180,126,253,250, 7,119,237,218,101,117,236,216,177,158, 11, 23, 46, -252, 16,192,182, 55, 56,134, 2, 0, 33,165,166,234,113,169,177, 66,169,209,242, 38,132,212, 7,240, 71, 77, 30,120,173,189, 66, - 77,192, 55,221, 19,210,174,115,203,126,239,247, 86,216, 88,154,161, 72,109, 64,116, 92,106,157, 83,199, 14,182,177,247,239, 22, -161,215,230, 13,200,140,250,163,176,166,154,109,187,244,108,217,238,189,246, 10, 51, 51,115,100, 21,232,240, 44, 46,209,245,194, -233,195,173,236,252,187, 93, 4,209, 13, 73,187,127, 74,201,157,117, 28, 53,129, 49,242, 68,129,220, 68, 94,225,103,102,102,102, - 8, 11, 11,195,146, 37, 75, 4, 0,154,151,255,236, 47,139,138, 26, 52, 14,179, 63, 29, 15, 17,159,138,187,117,233, 68, 76, 77, - 77,223, 88, 19, 0,236, 44,245,237,155,121,169,218,164,221,157, 48,248,238,133,197,254,154,226,220,191,172,116, 42,147,201,224, -225,225,129, 89,179,102, 25,165,249,166,252,127,104, 82, 74, 29,125,125,125, 11, 86,175, 94,237, 53,103,206, 28,139,226,226, 98, - 57, 0,103,223,128, 80, 71,134, 97, 92, 52, 26,141, 98,222,188,121,214, 95,127,253,181,151,141,141, 77, 46,165,212,166, 38,233, -116,112,112, 88,189,100,201,146,201, 91,182,108, 33,193,193,193, 80, 40, 20, 8, 9, 9,193,246,237,219,153,185,115,231, 78,119, -112,112, 88,102,100,222, 91, 53,109,218,148,176, 0,114, 10,245, 56,191, 52, 16,127,124, 19, 12,165,134, 69, 94, 65, 33, 84, 42, - 21, 36, 18,137,212,218,218,218,164, 6,199,179,121, 80, 80, 16, 1,240,210, 84, 21, 20,148,188, 10, 11,139,160,209,104,193, 48, -140,105,221,186,117,197, 53, 56,158,182, 77,155,150,248,207,226,226, 98,126,207,158, 61,209,189,123,119, 20, 20, 20,240,243,243, -243,161,209,104,192, 48,140,176,244,198, 94,173,166, 70, 38, 32, 44,101,237,228, 50,169,181, 92, 38,181,102, 41,107, 7, 0,198, -108,211,200, 4,228,159,172,159,132, 16, 27, 30,143,183,217,221,221,253, 17,143,199,219, 70, 8,177,127, 19, 77, 66, 72, 48, 33, -100,137, 76, 38, 59,227,235,235,155, 32,151,203,207, 17, 66,150, 17, 66, 66,106,163, 73, 8, 17,201,100,178,115, 75,150, 44,217, -119,231,206,157, 15,207,158, 61,235,118,255,254,253,247,151, 47, 95,190,199,196,196,228, 34, 33, 68,250, 38,231,166,155,155,219, -166,107,215,174, 5,183,104,209, 98, 35, 33, 68,252, 54,206,119, 66, 8,143, 16, 18, 64,140, 92,120,240,255,187,220,157,157,157, -221, 3, 2, 2,172,121, 60, 30, 90,181,106, 5, 74,105,171, 55,212,108, 1, 32,149, 82,122,129, 82,154, 65, 41, 53,148,190, 50, - 41,165,151, 74, 31, 84, 90,213, 72,147,111,186,231,243, 47,166,118,158, 50,254, 19,197,237,120, 3,126, 62,149,130,189,151, 51, -144, 84, 32, 70,135, 94,195,205,218,116, 29,212,137, 47, 52,219, 83, 83,205,233,211,103,118,254,100,232, 96,197,131,100, 6,251, -254,200,196,229,199,249, 80, 18, 11,132,245, 26,101,225,219,180, 75, 55, 2,225,214,127, 67, 25,189,235,154,255, 19, 17,172,185, - 27,105,206,130,177,228,235, 37, 63,252, 52,155, 33,132, 58,123,118,138,116,243,104, 94,196,178, 44, 84, 42, 21,180, 90, 45, 4, - 2, 1, 84, 42, 21,226,227,227,113,237,218, 53,152,153,153,213,232,135,115,243,242,224,228,236, 6,153, 76,246, 86, 52, 71,126, -208,155,255, 34, 37,133, 31,113,251,124,224, 47,107,119, 5,186,212,239,240,184,113,216,212, 7, 38,102,117, 84,119,239,222,197, -149, 43, 87,144,147,147,131,178, 27,232, 59,242, 4,175, 91,177, 98,197,237,228,228,100, 92,186,116, 41, 96,254,154,157,117, 31, -228,215,231,103, 20, 82,129,141, 73,154,171,143, 52,202,144,147,157, 29, 59,121,242,228,115, 14, 14, 14,154,241,227,199,183, 49, - 70,215,217,217, 89, 66, 8, 9,236,218,181,235,167, 31,127,252, 49,226,226,226, 48,101,202, 20,205,221,187,119,115, 3, 3, 3, - 45, 86,172, 88, 33, 28, 53,106, 20, 34, 34, 34, 38, 59, 59, 59,239, 7,240, 48, 49, 49,177,170,181,212, 68, 18,137, 4,200, 43, -121, 80,213,234, 41, 0,246,101,228,137,161,185, 16, 10,133, 12,195, 48, 54, 0,140,122,242,100, 89, 86, 40, 18,137, 80, 84, 84, -132,194,194, 66, 36,101, 20, 34, 62,173, 8, 5, 69,106,168, 84, 58,168,139, 41,196, 10, 59, 70,151,145, 97, 5, 32,201,200, 11, - 6, 83,214,220,168,209,104,160, 82,169,160,209,104,160,209,104, 94, 46,231,195,227,241, 20, 78, 78, 78,166, 0,114,170,211,227, -137,164,122, 30, 35, 92, 50,115,209,119,243, 0,128,199, 8,151,152,160,152, 53,102, 27, 79, 36,213,255,131,245, 74,108, 99, 99, -115,126,223,190,125,190, 30, 30, 30,120,254,252,185, 79,191,126,253,154, 17, 66, 2, 40,165,202, 26,106,201, 24,134,249,122,216, -176, 97,227, 6, 14, 28, 72, 60, 61, 61,193,231,243,161,215,235,157, 99, 98, 98,218,238,221,187,119, 26,159,207,255,217, 96, 48, - 76, 54,118,150,119, 66, 8, 35, 18,137,126,217,176, 97, 67,235,102,205,154, 97,219,182,109,184,126,253, 58, 27, 28, 28,204,124, -244,209, 71,112,117,117,109,254,209, 71, 31, 29, 32,132,116, 55, 38,194, 90,129,190,235,224,193,131, 93,120, 60, 30, 90,180,104, - 33,140,136,136,104, 2, 32,226, 13,143,169,137,179,179,243,133,176,176,176,128, 51,103,206,220, 38,132,132,213,100, 86,123, 71, - 71,199, 94,118,118,118,203, 21, 10,133,133,177,223, 41, 44, 44, 84,166,165,165, 77, 73, 74, 74,218,111,100,253,111,209,176, 97, - 67,232,245,122,152,153,153,193,222,222,190,165,147,147,211,100, 51, 51,179, 62,249,249,249,147, 18, 19, 19,175,215, 32,191, 78, - 0, 24, 74,233,211,210,247,117, 1,148, 45,179, 20, 69, 41,125, 78, 41,141, 37,132, 56, 18, 66, 92,140,105, 46,180,118,111,219, -163, 69,251,174, 45, 91, 53,243,103,150,238,143,131,129,101,193,135, 1,124, 30,139, 76,131, 0,132, 16,184,122, 5,243,236, 30, -220,108,110,237,213,161, 71,102,212,233, 35,198,104,118,238,217,187,149,183,151, 39,179,242,208, 11,228, 38, 61, 48,164, 61, 62, -151, 73, 24, 6,245, 26,119,176,118,245, 10,224,185, 7,188, 39, 72,139,123,208,214,210,163, 77,251,236,167, 23,206,112,182,129, -163,198, 6,139, 16, 66, 41,165, 47,159,172,230,252, 64,231, 88, 91,144,186,145, 15,238, 49, 9,169,154,162,123,247,238,193,202, -202, 10,182,182,182, 48, 53, 53,197,147, 39, 79,112,230,204, 25, 68, 69, 69,129, 82,138,128,128,128, 26,253,112, 90,106, 42,178, -178, 11,222,170,102, 29, 7, 7,212,113,112,224,103,230,228,226,202,189,251,190, 71,126,110,239,157,198,140,222,162, 82,169, 94, -238,163,211,189,123,173, 46,182,182,182,134,207, 62, 27,159, 53,242,187,216,250, 3,218, 57,241,122,133,216,227, 80, 68, 10,111, - 79, 56,143,206, 30,209, 40, 51, 38, 38,218,232, 76,187,186,186, 46,110,219,182,237,151,124, 62, 95, 48,106,212, 40, 0,192,132, - 9, 19,212,247,239,223,247, 75, 72, 72,136,117,112,112,240,158, 52,105,210,253, 3, 7, 14, 8, 62,249,228, 19, 82, 92, 92,124, - 93, 32, 16, 80, 71, 71,199, 5,201,201,201,243, 42, 52, 26, 60,222,157,200,200,200,186,122,137, 35,172, 21, 12, 58,205,190, 13, - 0, 48, 17, 83,100,166, 37,225, 97,204, 13,216,216,216,152, 89, 91, 91, 63, 14, 13, 13, 85,167,165,165,125,254,236,217,179,173, - 85,165, 83, 32, 16, 60,188,127,255,190,179,157,157, 29, 10, 11, 11,145,144, 94,132,205, 87, 8,148,106, 41, 0, 41,120, 80, 64, - 97,237,162,168, 71,149,119,253,253,253,181, 26,141,102,122,116,116,244,142,106, 52,115, 30, 61,122, 36,119,114,114, 2,143,199, -211,238,221,187, 87,168,209,104, 64, 41,213, 31, 59,118,172,127,110,110,110,139,250,245,235, 51,174,174,174, 43, 66, 67, 67, 85, - 41, 41, 41, 35,159, 63,127, 94,233, 66,195, 39, 38,184,107,219,204, 11,255, 62,247,121,194, 94, 0,112,106,230,155,253,251,188, - 38,154, 54,243, 10,171,221,118, 98,130,187, 22,227,233, 63, 85,165,134,205,156, 57,211,215,210,210, 18, 99,198,140,193,252,249, -243, 49,103,206, 28,143, 49, 99,198,140, 2,176,186, 6, 55, 89,169,189,189,253,141,181,107,215,250,132,134,134,226,216,177, 99, -216,189,123, 55, 98, 99, 99,245,110,110,110,252,102,205,154, 97,238,220,185,232,212,169,211,200,241,227,199,183, 33,132, 52, 49, -210,116, 12,159, 59,119,110,175,150, 45, 91, 98,232,208,161,234,240,240,240, 15, 1,156, 58,125,250,116,187, 11, 23, 46,236,223, -185,115,167,116,201,146, 37,157, 39, 77,154, 52, 22,192,183,181,200,127,239,214,173, 91, 3, 0, 90,182,108,137,229,203,151,119, -122, 19,131, 69, 8, 17, 89, 89, 89, 29,221,182,109, 91,128,151,151, 23,134, 12, 25,210,228,195, 15, 63, 60, 74, 8,233, 64, 41, - 53,106,105, 35, 7, 7,135,175, 55,108,216,224, 46,149, 74,141,254, 93,141, 70, 99, 57,122,244,232,101, 0,140, 54, 88,254,254, -254, 8, 15, 15, 71,251,246,237,209,160, 65, 3,247,209,163, 71,175,232,212,169, 19,190,248,226,139,203,246,246,246,142,169,169, -169,198, 46,244,236, 10,224, 73,105,254,235, 0,240, 0,240, 71,233,103,205, 8, 33,160,148, 62, 71,201,226,225,222, 0,170,239, -143, 37,145, 15,235,217,189,187,226,215,136,116, 24, 88, 22, 62, 78, 18,248,214, 49, 69, 92,122, 49,226,146,178, 32, 32, 90, 40, -164, 98, 52,108,209,205, 34, 59, 45,110, 24,140,233, 30, 32,150, 13,235,221,179,187,201,193, 43,233,200, 77,122, 72,227,111,236, - 61,167, 43, 46, 26, 9, 0,145, 23,119,252,104,103, 33,233,224,217, 56,144,167,108,213,203,226,194,161, 31,134, 1,224, 12,214, -223,255,128,247,138, 23,121,231, 34, 88,101,100,229, 66,101,101,239,139,132,212, 59, 37,239,179,178,144,149,149,133,122,245,234, - 97,221,186,117,175,236, 91, 92, 92, 92,171, 4,252, 29,154,214, 22,230,232,217,182, 13,239,193,147, 31,120, 42, 86,245, 86, 52, -255,173, 80, 74, 41, 33,132,196,103,234,204, 51,243,117,194,254,109, 93,168,128,199, 96, 64,219, 58,228,219, 35,241,194, 76,149, -204,156,199,227, 49,198, 60,201, 7, 6, 6, 10,218,182,109,251,229,166, 77,155, 4, 41, 41, 41, 48, 55, 55,135, 78,167,195,157, - 59,119,146,147,147,147, 99, 1, 32, 37, 37,229,137,179,179,115,154,193, 96,112,246,241,241,193,232,209,163,225,237,237, 77, 38, - 79,158, 60,141, 16,178,160,162, 17,139,105,105,105, 75,102,205,154,213,122,241,242,117, 86,131,155, 17, 20, 41, 53, 40, 44, 44, - 68, 92,244, 67,208, 66, 13, 86,174, 92, 5,169, 84, 74, 0, 8, 51, 50, 50,132,243,230,205,221, 24, 20, 20,212,253,230,205,155, -125, 43, 53,232,105,105,139,230,206,157,219,116,229,202,149,150,133,133,133, 80, 21, 23,163, 64, 37,194,181, 85, 37, 17,202,102, -147,174,227,219,111, 86, 48,254,174,114,171,194,194, 66,124,249,229,151,107, 3, 2, 2,154,223,185,115,103, 92,101,154, 73, 73, - 73,119,103,206,156,105,179,126,253,122,177,183,183,247,253,252,252,124,228,228,228, 48, 7, 14, 28, 88,232,234,234,106,185,118, -237, 58, 34,147,201, 0, 0, 9, 9, 9,194,217,179,103,253,210,176, 97,195,157,247,239,223, 31, 90, 89,217, 0, 80, 19,130, 20, - 71,199,122,238,202, 43,204, 60, 71,199,226,203,225,115,147,182, 19,130,148,146,125, 64, 29, 54, 56, 12,126,177, 77,220, 82,173, -102,215,164,166,198, 71, 81, 10,138,185,255,152,185,130,181,181,245,248, 94,189,122, 97,217,178,101, 56,114,228,200, 36, 75, 75, -203, 85,243,231,207,135,163,163,227,103,132,144, 53,212,248,217,137,191, 89,189,122,181,143,143,143, 15, 62,254,248, 99,205,153, - 51,103,102, 2, 56, 4, 32,254,210,165, 75,117,182,110,221,218,227,151, 95,126, 89,182,118,237, 90,201,250,245,235,221,223,127, -255,253, 53, 0, 70, 84, 39,106,103,103,247,197,192,129, 3,177, 98,197, 10,132,135,135,191, 79, 41, 61, 86,250,209,113, 66, 72, -143, 37, 75,150,156,157, 61,123, 54, 86,175, 94, 61,177,166, 6,139, 16, 98,226,235,235,251, 85,231,206,157,113,233,210, 37,180, -106,213, 10, 33, 33, 33,147, 8, 33,235, 40,165,153,181,184, 89, 48, 38, 38, 38,191,108,217,178,165, 85,221,186,117,177,104,209, - 34,124,249,229,151,216,180,105, 83,171, 33, 67,134,252, 66, 8,233,107,204, 40, 95, 19, 19, 19, 19,169, 84,138,101,203,150,209, - 23, 47, 94, 84, 27, 61,117,112,112,176,248,234,171,175,136,153, 17,205, 0,132, 16,158,163,163,163,153,189,189,125,107,123,123, -123,172, 93,187, 22,182,182,182,152, 52,105, 18,172,172,172, 80, 84, 84,132,190,125,251, 10,174, 94,189, 58, 0,192, 58, 35,179, -110, 5,160, 44,226,229,139,146,190, 86, 5,165,191,119, 21, 64, 75, 0,207, 81,210, 47,203,210, 24, 65,134, 82,127, 11,115, 83, - 36,223, 79, 3, 31,122,248,212, 81,224,102, 76, 17,180, 6, 10,153,220, 4, 69, 5,185,104,236,110,131,124,165, 51, 0,214,168, -217,199,133, 60, 38, 80, 36,150, 34, 61, 63, 15,169,143,206,102,105, 13,234,209,185,177,151, 19, 0,192,178,126,235,209, 15,175, -157,184,217,183, 75, 43,219,140,156, 58,160,148,109, 10, 14,142, 26, 80,109, 31, 44,150,253,235,185, 95, 62, 34, 84,134, 86,251, -102, 3,243,254, 14,205,138,248, 59, 52,255, 13, 62,203,201,130,159, 39,151, 48,250,211, 55,211, 13, 58,189, 1, 39,111,166, 26, -100, 98,162,183, 16,107,242, 89,150, 53,234,134,120,235,214, 45,221,165, 75,151,182,205,152, 49, 3,171, 87,175,198,179,103,207, - 32, 16, 8,224,229,229,101,231,226,226,226, 0,148,140,222,107,208,160,129, 53,143,199, 67, 76, 76, 12,118,239,222,141,121,243, -230,209, 91,183,110,109,170,236, 70,145,156,156,124, 39, 45, 45,109,195,210, 5, 51,115, 5,234,100,200, 12, 25, 48,228, 62,131, -192,144,135,241,147,102,224,121,166, 1,119,158, 23,224,206,243, 2,164,170, 36,248,106,209, 74,158,135,135, 71, 15,103,103,231, - 78, 85,152,161,171, 41, 41, 41,219,231,204,153,147,151,153,153,249,178,254,104,245, 44,180,122,246,245,155, 19,150, 46, 93,106, -238,224,224,208,223,201,201, 41,172, 50,205,244,244,244,244,228,228,228,152, 25, 51,102,104, 51, 50, 50,144,159,159,143, 19, 39, - 78,188, 95,175, 94, 61,203,201, 51, 22,144,231,153,244,101, 58,243, 88,115,172, 88,247, 51,175,126,253,250,131, 28, 29, 29,171, -236, 71,228,232,232,228,238,235, 91,127,223,213,171, 87,135,186,187,187,143, 43, 51, 86,148,130, 2,128,155,155,219,152, 91,183, -110, 13, 15, 8,240,219,103,103,103,239,253, 15, 63, 61,182,237,223,191,191, 55,203,178,216,183,111,223,125, 74,233,234,131, 7, - 15,222, 80,171,213, 24, 48, 96,128, 27,128,206, 70,234, 4, 15, 26, 52,104, 92,171, 86,173, 48,113,226, 68,237,153, 51,103, 2, - 41,165,171, 40,165,113,180,132,120, 74,233,186, 11, 23, 46, 52, 30, 63,126,188,186,105,211,166, 24, 58,116,232,112, 66, 72,171, -106,116, 91, 12, 28, 56,208,135,101, 89,236,217,179,231, 94, 57,115, 85,102,106,207,237,223,191,255,170, 70,163,193,224,193,131, -235, 17, 66,218,213, 32,239, 66,177, 88,188,111,225,194,133,230, 73, 73, 73,248,232,163,143,212, 79,158, 60,193,188,121,243,164, -102,102,102,199, 8, 33, 38, 53, 61,158, 98,177,248,167, 31,126,248,161, 87,195,134, 13, 49,118,236, 88,205,247,223,127, 63, 97, -220,184,113,154,192,192, 64,124,247,221,119,189, 68, 34, 81,141,102,168, 78, 75, 75,203, 13, 15, 15,183,170,238,149,154,154,154, -102, 84,212,191, 78, 29,243, 6, 13, 26,220, 15, 14, 14,206,108,212,168, 81,125, 0,120,248,240, 97,198,190,125,251,168,149,149, - 21, 78,156, 56,129,159,126,250, 9,161,161,161, 80, 40, 20, 3,106,114, 77, 42,125,161,220,223,215, 63,127,125,191,234, 10,136, -230, 41,245,224, 51, 12, 4, 60,138,248,180, 98,104, 13, 20, 66, 1, 3, 1, 15,224, 51, 20, 86, 10, 1, 4, 2, 30, 0, 98,148, - 38, 67, 8,114,138,116,224,243, 8, 4, 34, 33, 97,244,134,151, 33, 66,134,111,144,138, 37, 98, 98,107, 38,132,144, 79, 64, 8, - 56, 56,222, 94, 4, 11, 0, 12,134,191, 6, 62, 42,138, 2,105, 52,154, 55, 74,200,223,161, 89, 73,216,252,157, 42,192,252,252, -124,254,133, 11, 23,204, 4, 2,129,188,123,195,208,172,175,247, 70, 91,207,223, 21, 5, 17, 15,164, 71, 35, 38, 37,252,252, 25, -146,147,147, 99,225,225,225,145, 99,140,222,179,103,207, 70, 58, 56, 56, 44, 98, 24,166,169,193, 96,216,187,122,245,106,124,251, -237,183,178, 49, 99,198, 60,113,116,116, 76,242,244,244,116, 89,179,102,141, 24, 0,182,111,223,142,147, 39, 79,246, 22, 8, 4, -215,227,227,227, 83,171,210,189,123,247,238,108, 87, 87,215,136,216,216,216,117,132, 16,115,133, 66, 97,113,240,224, 65,146,146, -171,193,236,237,207, 94,142, 44,148,139,121,152,209,199, 6, 31,124,208,143,255,244,233,211,111, 0,156,172, 76,243,246,237,219, -147,220,220,220, 46, 68, 71, 71,175, 22, 90,121, 89, 73,252, 71, 41,218,205, 40,105,126,116,176, 20,131, 41,189, 32,230,229,229, - 33, 51, 51, 19,195,135, 15, 55, 95,188,120,241, 52, 0,225,149,105,222,185,115,231,170,155,155, 91, 74,116,116,116,115, 74,169, -200,204,204, 44,116,245,234,213, 36, 62, 91,131,233, 91, 99, 80, 80, 92,146, 78,133, 68,128, 5, 3,157, 49,116,232, 80,254,243, -231,207,191, 46,125, 34,255, 11, 78, 78, 78, 30,190,190,190,251,118,237,218,229,187,102,205,154,236,167, 79,159, 22, 57, 58, 58, -206,127,109, 55,245,210,165, 75,179,182,111,223,238,245,209, 71, 31,237,179,183,183,255,176,182, 83,106,188, 41,166,166,166,203, - 70,143, 30,141, 95,126,249, 5, 57, 57, 57,107, 74,235,216,234, 93,187,118,237, 25, 57,114, 36,182,111,223,190,140, 16,114,194, -136, 40, 86,151, 1, 3, 6,224,248,241,227, 56,123,246,236, 87,148,210,200, 74,162,124,209,132,144,105,135, 15, 31, 94, 59,112, -224, 64,108,222,188,185, 51,128,170, 38,158,237,208,169, 83, 39, 28, 59,118, 12, 89, 89, 89,223, 85,180, 67,110,110,238,247,191, -253,246, 91,243, 78,157, 58, 97,233,210,165, 29, 0,156, 51,194, 92,249,152,153,153,109, 89,187,118,109,112,195,134, 13, 49,104, -208,160, 98,173, 86,219,249,203, 47,191, 60,178,123,247,110,197,182,109,219,130, 70,141, 26,117,141, 16,242, 9,165,212,168, 73, -108,121, 60,222,146,245,235,215,143, 8, 11, 11,195,164, 73,147,244, 39, 79,158,236, 73, 41, 61, 69, 8,137,153, 58,117,234,209, -149, 43, 87,242, 86,172, 88, 49,130,199,227,101, 24, 12,134,153,255,144,161, 94,177,114,229, 74, 95, 63, 63, 63, 20, 23, 23,227, -217,179,103, 72, 75, 75,219,117,226,196,137, 83, 15, 30, 60, 88,158,154,154,122,192,206,206,110,228,164, 73,147,156,131,131,131, -131,157,157,157, 45, 18, 19, 19,141,185,150,148, 69,166,210, 1, 60, 2,208,188, 52,114, 5, 0,205, 80,210, 52, 8,148,140, 40, -204, 49, 50,177,247,163,159, 39,213,179, 48, 49, 69, 14, 43,194,243,164, 76, 72,229,114, 48,148,129, 94,149, 3, 15, 87, 91,176, - 20,200,207, 76, 2,195,144,251,198, 72,234, 12,236,173,184,132, 52, 39,115,185, 4, 30,129, 93,173,238,157,219,188,195,172,126, -203, 81,124, 30,225, 9,197,166, 27, 6, 13,252,216, 90,103,160, 40,204, 73, 1,225, 49,215,193,193,241, 54, 13, 22,203,178,144, - 74,165,175, 68,152, 94,143, 2, 73,165, 82,168,213, 53,155, 46, 69, 42,149, 66,171,199, 91,213, 52,230, 55,223,182,230, 63,137, - 78,167, 83,140, 27, 55,174,101,243,230,205, 19,186,116,233, 18,227,227, 99, 19,215,173,133,196,122,253,166,195, 1, 93,218, 52, -184,147,159,157,150, 17, 47, 22, 23,231,228,228, 88,109,223,190,189,137, 78,167,147, 25,163,155,146,146,242, 2,192, 11, 39, 39, -167,110,109,219,182, 29,210,189,123,119, 92,188,120, 81, 81, 84, 84,228, 35,151,151,140, 38, 61,112,224, 0,126,251,237,183,159, -147,147,147, 15, 27,155,222,248,248,248, 19, 0,220,235,212,169, 99, 94,167, 78,157, 52,115,115,115, 97, 82, 65,209,203,145,133, - 66, 62,131,208, 47,111, 32, 55,191, 0,230,230,230,144,201,100,110,213,105,150,206,115,117,164,105,255,133, 13,121,177,187, 46, -172, 95,187,198,172,236,201,212,206, 92,136,220,220, 92,100,102,102, 34, 35, 35, 3,148, 82, 24, 12, 6, 95, 35, 52, 95, 0,120, - 97,109,109,237,224,225,225, 65, 76, 76, 76, 64,179,139,144, 83,168,125,165, 9,178,160,176, 8, 78, 78, 78, 80, 40, 20, 21, 54, - 71, 88, 90, 90, 42,196, 98,241,214,141, 27, 55,250, 40, 20, 10,222,200,145, 35,205, 71,142, 28,217,178, 50, 51, 38,147,201,120, -155, 55,111,246, 12, 8, 8,216, 82,183,110,221, 14,113,113,113,121,255,143, 55, 90, 30,128, 49, 83,166, 76, 9,146, 72, 36,248, -246,219,111, 99, 1,236, 44,253,120,223,247,223,127, 63,103,224,192,129,222, 19, 38, 76,104, 48,123,246,236, 73,165, 77,133,149, - 54, 59, 11,133,194, 64, 95, 95, 95, 28, 60,120, 16, 0, 14, 86,243,243,251, 35, 34, 34,214,118,239,222, 29, 18,137, 36,184,154, -125,221, 92, 92, 92,112,248,240, 97, 0,184, 83,153, 79,126,242,228, 9,250,246,237, 11, 66,136,155, 17,121,239,213,177, 99,199, -253, 75,151, 46,229, 43, 20, 10,140, 24, 49, 66,115,237,218,181,174,148,210,139,132,144,182,131, 7, 15,190,176,115,231, 78,249, -133, 11, 23,124, 22, 47, 94, 28,193,227,241,150, 24, 12,134,217,213,104, 14, 95,180,104,209,140,222,189,123, 99,254,252,249,116, -239,222,189,131, 40,165,167, 74, 77,229, 73, 66,200, 71, 22, 22, 22, 59,103,205,154, 69,242,242,242,102, 16, 66, 18, 41,165, 63, - 84,166,167, 84, 42,243, 12, 6,131,189, 82,169, 52,234, 9,209,216,253,235,213,171,215,197,207,207, 15,135, 15, 31, 70,143, 30, - 61,112,250,244,105, 48, 12,115, 52, 41, 41,233, 60,128, 83, 0,224,224,224, 96, 22, 19, 19, 51,169, 85,171, 86,204,153, 51,103, -250, 2,248,217,136, 36, 60, 7,208, 16,192,105, 74,105, 66,233,192,201, 22, 40,153,178,225, 17,165,180,108,170, 19,127, 0, 49, -198,228,137,213, 20,110, 59,123,108,127,219, 14,239,143, 51,227,241, 24,240, 33,132,178, 32, 31, 48, 24,224,238,106,135,166,190, -118,184, 23,167, 66,196,153,125,185,202, 66,165, 81,211, 75, 24,180, 69, 91,206,158, 56,220, 38,184,227,199,102, 98,119, 63,184, -216, 77, 12,120,120,253,212,105,177, 72, 72,222,127,191,159,121,219,166, 30, 56,123, 63, 31, 87,207, 30,202, 81, 22,228,111,225, - 44, 3, 71,173, 12, 86, 37,157,202,210, 39, 77,154,100, 59,121,242,100,152,154,154, 34, 43, 43, 11, 58,157,238,101,180, 73, 44, - 22,195,220,220, 28, 89, 89, 89,216,179,103, 15, 74,159, 86,170,120,162, 19,165, 44,250,110,189, 11,225,201, 53, 98,169,140, 90, -202,222, 92, 19, 0, 52, 58,126,250, 15,123, 14, 88,118,105, 29,194,175,227,224,240,151,207,107,163,249, 31, 49, 88,167, 83, 83, - 83,131,188,189,189, 83, 93, 93, 93, 85,197,197,197,160, 42, 85,193,177, 61,107,234,187,152,141,125,198, 48, 12,149, 74,165,172, -185,185,121,209,179,103,207,136, 94,175, 63, 95, 19,125, 74,233,152, 49, 99,198, 48,151, 46, 93, 26, 52,100,200, 16,212,173, 91, - 23,119,238,220,193,246,237,219,177,127,255,254,173, 66,161,112, 66,109,210,157,144,144, 80,232,235,235,251, 74, 4,228,245,145, -133, 58,117, 6, 88,150, 53,186,115,126,206,237,237, 81, 60,107,107, 93,131, 58,127, 78, 39,146,147,147,131,140, 82,115, 85,206, -100, 25, 29,194, 36,132, 20,104, 52,154,215,210,249,103,243, 99, 81, 81, 17,180,234,116, 24, 12,134, 10, 53,179,179,179, 11, 28, - 29, 29,215,175, 91,183,110,229,194,133, 11,109, 87,175, 94,157,253,248,241,227,124,134, 97,138, 95,123,136,145,184,187,187, 43, - 86,172, 88, 97,183,110,221,186,108,150,101,215,255, 63,155,171,222, 13, 27, 54,220,218,165, 75, 23,197,184,113,227,176,110,221, - 58,164,164,164, 76,167,148,234, 75,235, 1, 75, 8,153,250,221,119,223,253, 62,109,218, 52,104,181,218, 21,199,142, 29,155, 79, - 8, 25, 67, 41,221, 89,145,166,141,141,141, 51,159,207,199,237,219,183,243, 41,165,207,170,169,103,169, 94, 94, 94,105,132, 16, - 59, 7, 7,135,250, 85,237,107,105,105,233,174, 80, 40,144,148,148, 84,118, 19,175,136,184,228,228,100, 42, 18,137,136,163,163, -163, 71,117,249,183,176,176,152,186,113,227, 70,254,249,243,231, 49,119,238,220,196,248,248,248,193,165,211, 8,128, 82,122,155, - 16,210,170,109,219,182,187,167, 77,155,230,245,245,215, 95,147, 39, 79,158,140, 5, 80,165,193,114,117,117, 29, 51,124,248,112, -172, 95,191, 30, 27, 54,108, 24, 75, 41,221,247, 90,158,119, 19, 66, 44,172,172,172,214,143, 30, 61, 26, 91,182,108, 25, 12,160, - 82,131,149,148,148, 52,173,127,255,254,115,178,179,179,151, 24, 83,166,198,236,239,232,232,216,115,200,144, 33,118,148, 82,172, - 91,183, 46,117,253,250,245,202,252,252,252,157,201,201,201,175, 92, 39, 24,134, 57,112,226,196,137, 73,227,198,141,195,249,243, -231,191,117,116,116,164,201,201,201, 27,171, 41,211, 20, 66, 72,125, 66,136, 47,165,244, 81,233, 40,193,132,215,234,157, 87,233, -190,137,198,228, 41, 51,234,252, 17,187, 6, 93,255,184,123, 61,188,163, 91,131, 86, 2, 91, 11, 5,156, 60,172, 97,105, 34, 4, - 5,240, 32, 94,133,171, 23, 79,233,210, 83, 94, 68, 24, 51,130,176, 76,211,222,191, 91,132,204,218,181, 99, 61,191,150,124, 55, - 15, 79,116, 8,109,100, 97,101, 42,128, 70, 71,113,250,110, 30,174, 92, 56,174, 75, 79, 75, 56,207,141, 32,252,255,225, 93,233, -224,110, 76, 4,107,222,134, 13, 27, 66, 55,109,218,212,125,210,164, 73,138,143, 63,254, 24, 82,169, 20, 69, 69, 69,112,113,113, -129, 94,175,199,177, 99,199,112,251,246,237, 2,150,101,127,199,159,163, 68,202, 78,160, 87, 86,219,158,177, 78, 89,135, 16,194, - 0, 69,161,243, 55, 52,122, 43,154, 0, 16, 17,171,119,114, 76,201,156,151,149,115,236, 11, 87, 39, 7, 97,167,150,205,249,214, - 22, 37,163,153,107,171,249, 22,110, 90,127,187,166, 94,175, 31, 78, 8,105, 48,117,234,212,229, 78, 78, 78,142,243,231,207,127, -225,231,231,167,202,207,207,167, 26,141,134,205,200,200,144,237,223,191,223, 45, 43, 43,171, 64,167,211,125, 68, 41,189, 87,147, -116, 38, 39, 39,171, 0, 12,182,183,183, 63,156,158,158,190,127,192,128, 1,216,178,101, 11,174, 92,185,210, 45, 57, 57,249, 88, -109,243, 78, 41,213,135,132,132,228, 62,124,248,208,142,103,230, 6, 59,115, 1, 58,127, 85, 18,140, 80,136, 1, 85, 81, 1, 98, -163, 31, 33, 63, 63,255,166,177,154, 49, 49, 49,154,128,128,128,220,140,140, 12,107, 27, 27,155, 18,115, 85,206, 88,101,103,103, - 35, 47, 47,143, 50, 12,243,135,177,154, 25, 25, 25, 69, 45, 90,180, 80,198,196,196,136,120, 34, 7, 56, 88,136, 81,210, 4, 73, - 97,163,224, 67,165, 44,194,253, 59, 55,145,159,159, 31, 94,153,102,114,114,242, 30, 71, 71, 71, 0, 88, 57,103,206, 28,235,206, -157, 59, 63,189,126,253,122,155,242,191, 19, 24, 24,120,104,254,252,249,221, 22, 47, 94,156,185,117,235,214,105, 41, 41, 41, 59, -254, 63,235,146,149,149,213,228,163, 71,143, 42,180, 90, 45,214,173, 91,135, 85,171, 86,109,162,148, 30,120,173,204,142,242,120, -188,239, 24,134,249,244,179,207, 62,195,232,209,163,101, 65, 65, 65,147,202, 69,185, 94,209, 76, 74, 74,154, 29, 24, 24, 56, 39, - 61, 61,221, 40, 67, 16, 29, 29, 61, 42, 48, 48,112,118,122,122,250,242,170,242, 46,151,203,229, 6,131, 1,207,159, 63,207,161, -148,230, 85, 82,191,138, 61, 61, 61,147, 12, 6,131,179, 76, 38,179,172,174,126,230,228,228, 44, 9, 10, 10,154,151,150,150,118, - 10,192, 34, 74,105,241,107,122,119, 9, 33, 13, 62,255,252,243,241,203,150, 45,235,155,154,154,186,167, 58,205,248,248,248, 37, -109,219,182,253, 42, 42, 42,106, 43,165,116, 67, 37,233,252,150, 16,162,221,177, 99,199,216,231,207,159, 47,173, 74, 51, 57, 57, -249,119, 0,191, 27, 91,190,149,237, 95, 94,211,210,210,114,218,248,241,227,113,252,248,113, 20, 20, 20,172, 77, 78, 78,254,186, - 18,179,118,213,205,205,237,183,144,144,144,158, 43, 86,172, 16,118,235,214,109, 44,128,141, 70,212,207, 43, 0, 66, 75,251,193, - 61, 6,144, 85,230,147, 81, 50,114,144,188,126, 45,174, 78,211,160,203, 31,120,231,210,193,221, 9, 49,247, 67, 2,219,244,182, -200, 83, 58, 67,200,103, 80,152,147,130, 43,103,126,205, 73, 78,124,118, 69, 83,156, 59,176, 38,154,122,109,222,128,251,151, 15, -237, 73,141,123,212, 92, 25,218,213, 34,183,192, 21, 66, 1, 65,110, 70, 34,174,133, 31,206, 78,121,241,252,146,142, 85, 15,253, -167,174,243,255, 75,154,239, 26,196,152, 1, 65,132, 16, 17,128,246, 10,133,162,195, 23, 95,124, 33,234,220,185, 51, 22, 47, 94, -140,211,167, 79,107, 52, 26,205,105, 0,103, 42,138, 12, 84, 85, 0,127,135,102,151,102, 68, 97,111,199,172,169,235,192, 12,246, -243,112, 39, 15,163,159,240,111, 38,119,255,233, 77, 52,255, 43, 21,154, 16,210, 82, 32, 16,124,237,227,227,163,142,139,139,243, -179,180,180,140, 74, 74, 74, 18,233,116,186,169,148,210,139,111,146, 78,123,123,123,235,174, 93,187,166,207,154, 53,139,204,159, - 63, 31, 23, 47, 94, 52,175, 42,194, 98,140,102,157, 58,117,218, 5, 5, 5,157, 92,253,237, 70,126,124, 90, 33,242, 11, 10, 80, - 80, 80,128,162,194, 66, 20,231,167,226,248,161,221,154, 7, 15, 30,120,165,166,166,198, 27,171,233,234,234,218,185, 81,163, 70, -187, 55,110,220,104,150,149,149,245,210, 96,101,103,103,131,101, 89,108,216,176, 33, 59, 43, 43,171, 97, 98, 98, 98,178,177,154, -117,235,214,237, 21, 26, 26,186,127,249,154, 31,249, 9,105,133, 40, 40, 42,130, 82,169, 68,177, 74, 5,109, 97, 26,182,254,180, - 78,253,232,209,163,186, 25, 25, 25,105, 85,105, 58, 58, 58,246,111,217,178,229,130,251,247,239,159,127,242,228,201,152,242,159, -121,122,122,126,215,184,113,227,174,127,252,241,199,156,164,164,164,237,255,223,117,137, 16,210,217,201,201,105, 85, 70, 70, 70, -172, 86,171,221, 71, 41,221, 94,197,247, 6,240,249,252, 1,214,214,214,118,169,169,169,203, 40,165, 7,255, 63,235, 60, 33,164, -187,173,173,237,204,244,244,244,101,148,210,223,170,248, 94,217,126,203, 41,165,135,184, 27,216, 95, 53, 29, 29, 29,187,219,218, -218, 46, 72, 75, 75, 59,159,154,154, 58,181,170, 38, 95,103,103,103, 9,203,178, 11,236,236,236, 90,164,166,166,174, 76, 73, 73, -249,213,216,116,150, 46,149, 83, 23, 37,253,173,128,146, 62, 87,241, 85,205,125, 85,157,166,181, 87,135, 30, 98,153,116, 24,101, - 13,141, 1, 2,134,199,187, 91, 92,164,220, 82, 85,228,202, 24, 77,137, 92, 54,156,101, 13,141, 25, 16,150, 97,152,123, 42,149, -242,231,140,199,167,143,115,102,232,159, 51, 88,132,144, 81,148,210,159,240, 31,132, 24, 63,226,186,100, 8, 51,128,110, 12,195, -180, 96, 89, 54, 2,192,209,170,230,173, 49,166, 0,254, 14,205, 46, 97,196,169,174, 53,111,131, 66,198, 4, 45,219,170,251,252, -109,104,254, 87, 42, 52, 33,164, 23,159,207,255, 82,175,215,127, 67, 41, 61,252,182,210,233,233,233,185, 49, 44, 44,108,216,201, -147, 39,191,143,143,143, 31,255, 54, 52,253,252,252, 86,214,171, 87,111,124,183,110,221, 4,182,182,182,200,204,204, 68,116,116, - 52,110,221,186,165, 73, 77, 77, 29,243,228,201,147,173, 53,213,108,212,168,209, 66, 43, 43,171, 49,159,124,242,137, 21, 33, 4, - 89, 89, 89, 40, 40, 40,160, 7, 14, 28,200, 84,169, 84,159, 60,121,242,228,247,154,106, 54,108,216,240, 39, 55, 55,183,161,189, -123,247, 22, 56, 57, 57, 33, 51, 51, 19,145,145,145,248,227,143, 63,212,169,169,169, 67,162,162,162, 14, 24,163,233,238,238, 46, -138,137,137,169,176, 57, 49, 48, 48, 80,112,235,214, 45, 29,119,193,229, 52, 57, 77, 78,147, 51, 88,239,134,193,226,215,100,231, - 82,147,178,135, 16,178,191,172,127,198,155,242,119,104, 30, 15,167, 73, 0,186, 18, 66,248,111, 75,243,191, 66,169,169, 58,252, -182,117,163,163,163, 63,113,116,116,156, 80,218,108,248, 86,136,140,140,156,236,228,228,180, 35, 46, 46,110,133, 76, 38, 11, 96, - 89, 86,167, 86,171, 47,103,101,101, 77, 74, 78, 78,174,213, 66,176,247,238,221,251,202,209,209,241,208,138, 21, 43,166, 83, 74, - 27, 17, 66, 52,122,189, 62, 34, 39, 39,103, 65, 66, 66, 66, 74,109, 52,239,223,191, 63,202,201,201,105,115, 92, 92,220, 82,177, - 88,220,136, 82,170, 81,169, 84,225,233,233,233, 95,148, 69,174,140,161, 50,115, 5,148, 76,145, 1, 14, 14, 14, 14,142,119, 6, -126,109,190,244,119,152,150,255,138,230,255, 50,111,211, 92,149,145,148,148,116, 15,192,123,111, 57,157,119, 0,244,123,203,233, -188, 6, 32,140,171, 5, 28, 28, 28, 28, 28,198,192,112,135,128,131,131,131,131,131,131,131,227,237, 66, 80, 50, 15,201, 95,168, - 73,219, 42, 33,196,191,166, 63,108, 68, 95, 34, 78,147,211,228, 52, 57, 77, 78,147,211,228, 52,223, 49,205, 10,180,223,127,237, -163,164,215,244,222,253, 78,238, 53, 22,231, 58, 0,114,154,156, 38,167,201,105,114,154,156, 38,167,249, 63, 8,215, 68,200,193, -193,193,193,193,193,193,193, 25, 44, 14, 14, 14, 14, 14, 14, 14, 14,206, 96,113,112,112,112,112,112,112,112,112, 6,139,131,131, -131,131,131,131,131,131,131, 51, 88, 28, 28, 28, 28, 28, 28, 28, 28,255, 26,254,214, 81,132, 28, 28, 28, 28, 28, 28, 28, 28,255, -139,188, 18,193, 34,132,112,110,139,131,131,131,131,131,131,227, 31,227, 93,241, 34, 92, 19, 33, 7, 7, 7, 7, 7, 7, 7, 7, -103,176, 56, 56, 56, 56, 56, 56, 56, 56,254, 3, 6,139,107, 26,228,224,224,224,224,224,224,248, 39,121,215,188, 72, 89, 4, 43, -172, 52, 99, 97, 92, 17,115,112,112,112,112,112,112,252, 3,188, 83, 94,132, 27, 69,200,193,193,193,193,193,193,193,241,150,225, -250, 96,113,112,112,112,112,112,112,112,252,151, 12, 22, 33,196,159,211,228, 52, 57, 77, 78,147,211,228, 52, 57, 77, 78,147, 51, - 88, 28, 28, 28, 28, 28, 28, 28, 28, 28,156,193,226,224,224,224,224,224,224,224,224, 12, 22, 7, 7, 7, 7, 7, 7, 7, 7,103, -176, 56, 56, 56, 56, 56, 56, 56, 56, 56, 56,131,197,193,193,193,193,193,193,193,241, 15, 65, 0, 84, 56, 18,128, 82,250,192,104, -145, 90,140, 38,168, 78,159,211,228, 52, 57, 77, 78,147,211,228, 52, 57,205,119, 79,179, 58,237,154,248,143,127,181,193,250, 59, - 39, 26, 37,132,248,191,237, 3,197,105,114,154,156, 38,167,201,105,114,154,156,230,187,167,249,174,193,231, 14, 1, 7,199,127, -156,253,132, 7, 91,111, 55,176,212, 17,124, 81, 10,206,221,127,134,185,148,125, 99, 77, 71, 63, 87,104,116,118,144, 74, 50,112, -242, 94,236, 27,107,114,112,112,112,112, 6,139,131,131,227, 63,131,131,143, 23, 12, 88, 10, 30, 28, 64,181, 49, 8,245, 91, 10, -224,205,158, 44,173,124,188,160, 99, 23,129,207, 56, 67,163,141, 66,107,239,101, 0, 34,185,131,205,193,193,193, 97, 28,255, 72, - 39,247,224,224,224, 91,193,193,193, 11,195,194,194,196, 92, 17,112,112,188, 1, 15, 26,202,160, 55,116,209,232, 88,167, 19, 17, -185,182,202, 98,131, 23,132,250,174,136,240, 50,121, 35, 77, 1,233, 88,172, 99,235,236, 56,173,180, 43, 42,214,251,130,193,155, -105,150,226,239,239,111,222,180,105,211, 19, 1, 1, 1,214, 92,225,113,112,112,112, 6,235, 45,195,178,108, 19, 91, 91,219, 73, - 42,149, 42, 62, 40, 40,168,231,255,210, 1,111,222,188,121, 68, 72, 72, 72, 90,139, 22, 45,210, 90,180,104,113,187,186,237,239, - 34,142,142,142, 94, 13, 27, 54,140,111,208,160, 65, 84,249,237,182,141,251,182,240,109,253,241, 92,235, 6,189,219,112,167,166, -145, 20,177,118, 96,120,109, 35,227,148,178,212, 92,157,221,173, 39, 74, 5, 40, 47, 12, 90, 56,188,145, 38, 75,219,221,141, 81, -201,175, 60,179,177,187,244, 64,109, 10,202,180, 5, 37,246,111,154, 92,145, 72, 52,150, 82,218, 65, 32, 16, 76,228, 10,239,127, - 27, 66,136, 63, 33,164, 39, 33, 36,248, 45,106,126,237,227,227,147, 68, 8,249,156, 59,194, 28,255, 25,131,213,175, 30, 9, 29, - 84,159, 92,232, 95,143, 20, 12,168, 79, 10,135,212, 39,151, 63,112, 39,181,190, 17, 30, 56,112, 64,186,125,251,118, 91, 63, 63, -191, 61,205,154, 53,187, 28, 20, 20,228, 89, 27,157,224,224,224, 19,193,193,193,253, 94,223, 22, 20, 20,212,191,252,182,166, 77, -155, 62,108,218,180,105, 94,112,112,240, 51, 99,116, 3, 3, 3,159, 6, 6, 6, 22, 5, 7, 7, 63, 45,191, 61, 40, 40,168,127, -211,166, 77, 79,188,246,123,253, 94,223, 86,233, 1,103, 24,231, 35, 71,142,216, 30, 61,122,212,150,207,231,219,189,190,253,247, -223,127,127,101,123, 45,142,199,200,224,224,224,136,215,242,242,201,235,219,170, 34, 40, 40, 40, 34, 48, 48,240,147,215,116, 35, -130,131,131, 71,190, 13,115,213,186,117,235,203,119,238,220,169,163, 80, 40,204,203,127,102,111,101,222, 41,226,247,239, 38, 13, -237,215,113,172,173, 95,159,134,220,233, 89, 13,143,253,132,208,179,173, 89,150,218, 68, 62, 43,182,233,218,237, 3,254,221,167, - 42, 27,157,222, 96, 9,194, 11,195,133,186,226, 90,105,234,116,173, 88, 74,237,206,222, 21,218,132,245,248,140,119,254, 62,223, - 70,103, 48, 88, 65,135, 54,181,210,252,179, 30, 10,120, 60,222,164,209,163, 71, 51,132,144,207,220,221,221, 69,255, 75,197,213, -172, 33,113,122, 47,136,127, 61,208,143,132,190, 69, 67,209, 64, 46,151,223, 36,132,120,253,199,204, 85, 19, 0, 50, 74,233,111, - 0,236, 8, 33,252,183,160,185,122,193,130, 5, 83, 31, 60,120,224, 88,175, 94,189,249,132, 16, 30,119,145,224,248,215, 27,172, - 1,245,200, 60, 59,123,167, 83,179, 86,239,106,189,241, 66,172,201,247, 71,110,203, 39, 77, 91, 18,106,111, 97,115,108,136, 59, - 89, 86,217,247,170, 26, 97, 32, 18,137,240,236,217, 51,172, 91,183, 78, 50,111,222,188, 22,102,102,102,247,154, 53,107,182,198, -207,207, 79, 94, 85, 90, 94,215,164,148,134, 10, 4,130,141,205,154, 53,219, 82,118,193, 38,132,132,138,197,226,159,154, 53,107, -182,163,172, 25, 50, 48, 48,176,222,245,235,215, 77, 9, 33,118,198,164,179,105,211,166, 14,183,110,221,146, 1, 37,145,128,176, -176, 48,113,211,166, 77,183, 59, 57, 57,109, 0, 16, 10, 0,238,238,238,162,102,205,154,109,113,113,113,249,153,144, 87, 47,154, -149,229,157, 97, 24,152,155,155, 99,215,174, 93,224,241,120,229, 47, 14, 48, 55, 55,199,206,157, 59, 65, 8,169,241,241,244,243, -243,147, 7, 7, 7, 31,112,112,112, 88,195,178,108, 8, 0, 52,108,216, 80,214,180,105,211,253, 78, 78, 78,107,203,182, 25,163, - 73, 41, 13, 17, 10,133,107,154, 54,109,186,191, 97,195,134, 50, 0, 96, 89, 54,132,207,231,175, 14, 14, 14, 62, 80,147, 50,106, -210,164,201,232, 70,141, 26, 37, 55,106,212, 40,217,219,219,123,177,157,157, 93,248,250,245,235,173,202,231,189, 44,114,149,150, -158,149, 19,113,227,225,147, 73,163, 63, 8,171,227, 98, 55,216,188,113,111, 51, 99,242, 94, 91,254,243,154, 89,196, 22,132,182, -127, 18,175,146,212,245, 8,146,219,250,124, 0, 27,115,190,248,202,163, 34, 5,120,120, 15, 2,153, 77,237, 52,249,239, 61,140, - 85, 73, 45,234,117,145, 5, 55,111, 13, 34,247, 20,135,223, 41, 50, 5,159,169,157,230,159,124, 16, 18, 18, 34,106,223,190, 61, - 28, 29, 29,121,102,102,102,131,223,249, 50, 42,103,174, 20, 18,209,181,149, 11,190, 8,114,180,146, 29, 54,198,100, 25, 49,124, -190,129,173,173,237,249,239,190,251, 46, 80,161, 80, 92, 52,198,100,253, 27,142,103,169,185, 18, 82, 74,175,150,110,138, 4,208, -234, 13, 53, 87,207,155, 55,111,226,140, 25, 51, 80, 80, 80,128,161, 67,135,154, 2, 88,105,172,166, 66,161,240,104,212,168,209, -142, 6, 13, 26,188, 8, 8, 8,208,248,250,250, 22,123,123,123,199,249,251,251,111,149, 72, 36,110,239,122,253,252,183,104, 86, -131, 8, 64, 91, 0,221, 0,188, 7,160,105,233,255,193,165,175,110, 0,218,191,246,183, 44, 58, 90,246,121,179, 74, 52,186, 85, -240,189,224,114,219,203,191,127,253,255,170, 13, 22, 33,132,150,255, 91,158, 15,235,147, 22, 86,246, 78, 83,191, 62,116, 67,202, - 70,223,197,173, 17,237,240,228,243,222,144, 62,189,139,233,227,167, 75, 21, 10,139,241,253,234,147,182,181, 57, 90, 81, 81, 81, -216,179,103, 15,172,173,173,201,166, 77,155,196,253,250,245, 27,107,106,106,154, 16, 28, 28, 60,216, 88, 13, 30,143,103,216,178, -101,139, 73,175, 94,189, 6, 88, 90, 90, 62, 12, 12, 12,172,199, 48,140, 97,219,182,109, 38,253,251,247,239,167,209,104, 30, 5, - 5, 5,121,222,190,125,219,112,227,198, 13, 48,140,113, 65,187, 91,183,110,233,143, 31, 63, 94, 22,209,241,164,148, 62, 90,182, -108,217,128,131, 7, 15, 42,204,204,204,216,192,192,192,122, 46, 46, 46, 15,191,254,250,235,193,251,247,239, 87,152,154,154,178, - 70, 94, 8, 80, 92, 92, 12,137, 68,242,138,145, 34,132, 64,165, 82, 65, 44, 22, 27,157,198,114,145,129, 6, 86, 86, 86,143,151, - 46, 93,218,235,208,161, 67, 82,133, 66,129,224,224, 96, 95,115,115,243, 39,203,151, 47,239,125,248,240, 97,169, 66,161, 48, 90, - 79, 40, 20, 98,231,206,157,178, 65,131, 6,245, 20,139,197,143,131,131,131,125,133, 66, 33,118,239,222, 45, 27, 60,120,112,119, -153, 76,246, 40, 48, 48,176,129, 49, 90, 58,157,110,206,141, 27, 55, 28,194,195,195, 29, 92, 93, 93, 39,124,255,253,247,118, 2, -129, 0, 0, 96, 48, 24, 94,137, 92, 13,238,219,161,217,196, 57,223,157, 87, 21,171, 53,139,166, 15, 15, 19, 24,208,156,123, 6, -170,132,253,132, 7,214,208, 4,128,251,237, 40,149,117,227,214,131,249, 72,255, 13, 77,125, 77,248, 23,110, 23,218, 82, 74, 93, -161,167, 77,113, 33,140, 95, 35, 77, 30,109, 12,194,122,158,186, 67,172, 91,180, 31,204,143,143,143,135,155,111, 24,239,247, 27, -176,163,148,186,129, 69, 80,141, 52,203, 33, 16, 8,230,126,248,225,135,242,184,184, 56,180,104,209, 66, 38, 18,137,230,188,149, - 40,222, 53,111, 87, 92,244, 10, 67,132,151, 67,109,211,246,119, 71,174, 76, 37,162,171,187,119,252,226,216,176,213, 72,178,225, - 11, 87, 75, 27,133,224,240,155, 68,178, 74,205,213,185,107,215,174, 89,117,236,216, 17,243,230,205,179, 49, 53, 53,189,248,111, -143,100,149, 55, 87,132, 16,105,105,243, 96, 18, 0,231, 55,208, 92, 59,111,222,188,137, 51,103,206,196,213,171, 87,177,124,249, -114,116,233,210, 5, 22, 22, 22,213, 94, 63, 62,250,232, 35, 89,104,104,232,173,158, 61,123,222,157, 56,113,226,224,223,127,255, -221,101,203,150, 45,194, 97,195,134,137, 63,252,240, 67,215, 47,190,248,226,227,174, 93,187, 62,104,214,172,217,181,126,253,250, - 73,106,155,196,210, 23, 71,245,101, 89,169, 23, 1,208,104,198,140, 25, 77, 9, 33,191,207,152, 49, 35, 8,128, 53, 33,228,119, - 0, 54, 0,108, 74,255, 23,189,246,215,166,212, 52,149,125,110, 85,145, 70,217,235,181,239,217,148,219, 94,254, 55, 94,255,191, -250, 8, 22, 33,164, 13,128,139,175,239,192,167, 88, 48,122,210, 66,201,243,173,171,144,178, 99, 53,152,204, 36,240,114, 83,161, -190,248, 27,116,151,142,224,163,144, 16,169,148,144, 69,181, 57,152, 10,133, 2, 66,161, 16,209,209,209,120,244,232, 17,186,118, -237, 42, 92,183,110,157,121,131, 6, 13,126, 10, 13, 13,189, 27, 28, 28,220,200, 24,195,226,225,225,129, 1, 3, 6,136, 62,255, -252,243,250, 18,137,228, 54,165, 84,224,230,230,134,254,253,251, 11,167, 77,155, 86, 87, 34,145,220, 96, 89, 86, 40,147,201, 42, -141, 14, 85,164, 43,149, 74, 1, 64,224,233,233,121,115,207,158, 61,110,161,161,161,252, 83,167, 78, 33, 63, 63,159,239,229,229, -117,119,247,238,221,238, 45, 90,180,224, 95,190,124, 25, 69, 69, 69,212, 88,221,162,162, 34, 72,165,210,191, 24,172,162,162,162, -191, 24,175,234, 8, 14, 14, 30,233,238,238,126, 99,207,158, 61,206,173, 90,181,226,157, 63,127, 30, 5, 5, 5,112,117,117,189, -185,103,207, 30,231,208,208, 80, 94, 68, 68, 4, 10, 10, 10,140,127, 76, 16,137,224,230,230,134, 15, 63,252, 80, 48,101,202, 20, -103,129, 64,112, 67, 36, 18,193,213,213, 21, 31,126,248,161,112,242,228,201,206, 34,145,232,154,145, 77,134, 60, 0,208,235,245, -232,215,175,159, 92, 42,149, 34, 33, 33, 1, 44,203,130,101, 75, 60,105, 74, 70,214,253, 63,110, 60,120, 60,105, 76,191, 54, 69, -106,181,250,100,248,205, 71,126,158,174,206,132,208,186,220, 37,167, 18, 44,252,172,192, 67,135,248,100,141, 88, 36,119, 86,152, - 88,123, 3,217, 23, 81,207, 81, 12, 80, 34,185,241, 88, 41, 7, 67, 59, 0,153, 86, 53,210, 52,176, 29, 98,147, 52, 98,173,212, -223,196,209,169, 14,178,178,178,224,226,230, 3, 53,108, 68, 17, 15,138, 76, 64,107,168, 89, 74, 64, 64, 64, 43, 23, 23, 23,251, -186,117,235, 34, 51, 51, 19, 30, 30, 30, 48, 49, 49,177, 8, 12, 12,236, 80,235, 99,112,161,174, 24,121, 8,133,150,172, 4, 97, -230,131,242,151,130,159,209, 4,183, 3, 5,255, 58,115,181,243, 23, 39, 43, 7, 31,224,193, 8,216, 89,138,176,105, 70, 99, 75, - 27,133,184, 86, 38,139, 16,210,192,206,206,238,220,181,107,215,172, 37, 18, 9,110,221,186, 5, 63, 63, 63,172, 90,181,202,198, -194,194,226, 95,107,178, 94, 51, 87,150,148, 82, 21, 0, 22,192, 64,212, 98,212, 43, 41,225,219,133, 11, 23, 78,152, 57,115, 38, -174, 92,185, 2, 39, 39, 39,164,167,167,163, 85,171, 86,241, 57, 57, 57, 85,222,151, 26, 52,104,224, 28, 29, 29,157,244,197, 23, - 95, 52,217,190,125,187, 84, 46,151, 35, 55, 55, 23, 63,255,252, 51,102,204,152, 1, 66, 8, 40,165,216,188,121,179,108,248,240, -225, 77, 99, 98, 98,146,234,214,173,107,108,247, 13, 82, 26,113,145, 1,144,151,254,149, 76,152, 48, 65, 68, 8, 17,151,154, 75, - 9, 33, 68,192, 93,204,254, 82,174, 21,122, 17, 0,214,203,150, 45, 91, 66, 41,237,190,108,217,178, 37,229,246,255,189, 10,173, -242,166, 9, 0,240,186, 6,165,180,123,249,191,229,191, 75, 41,237, 78, 41,237, 94,254,251, 85,253, 94,165, 6, 11, 64, 56,165, -180,205, 95,194,128, 64, 35,251,122,222,200, 61,189, 15, 82, 30,121,229,197,196,222,135,139,132, 15, 29,165, 13,106,115, 32, 77, - 76, 76, 94,190, 24,134, 65, 74, 74, 10,120, 60, 30,230,204,153, 35, 25, 63,126,124, 67,161, 80,120,165,117,235,214, 75,171, 51, - 44, 0,112,253,250,117,120,120,120,144,153, 51,103,154,182,105,211,134, 15, 0,247,238,221,131,187,187, 59, 89,188,120,177,162, - 71,143, 30, 68, 38,147, 25, 29, 29, 98, 24, 6, 82,169, 20, 97, 97, 97,100,203,150, 45, 38, 98,177, 24, 71,143, 30, 69,102,102, - 38, 58,118,236,200,223,178,101,139,137, 68, 34,193,133, 11, 23,144,151,151,103,180, 46, 33, 4,106,181,186, 66,131, 85, 81,100, -171, 42, 90,180,104,177,201,222,222,126,205,246,237,219,197, 82,169, 20,231,207,159, 71, 94, 94, 30, 6, 12, 24,160,223,185,115, -167,196,212,212, 20, 17, 17, 17,200,203,203,171, 85, 69,191,126,253, 58,220,221,221,201,172, 89,179,164, 33, 33, 33, 58, 0,184, -115,231, 14, 60, 61, 61,201,172, 89,179,164,166,166,166,171, 91,182,108,185,169, 42, 13,150,101,145,146,146,130, 7, 15, 30, 32, - 54, 54, 22,153,153,153,200,200,200, 64, 65, 65, 1,244,122, 61, 0, 64, 86,144,127,244,219, 45, 71,238,202,165, 82, 89,179,134, -158,117,174,221,142, 76,151, 75,165, 50, 79,183, 58, 94,132,204,231,150,115,170,168, 18, 9, 52,158,160,164,201,213,200, 66,203, - 86,157, 6, 10,145,113, 28,160, 58,128,240,209,182,153, 51,255,240,229, 34, 59,176,104, 4, 33,124, 0, 35, 42, 20, 33, 4,124, -173, 7, 64,130, 78,221,210, 91,181,236, 52, 86,152,152,152, 8,161, 80, 8,177, 88,140,128,208,247,249,187,207,235,236, 1, 52, -134, 0,222, 70,105,150, 67, 44, 22,127, 53,124,248,112,121, 82, 82,210, 75,205, 46, 93,186,200,101, 50,217,220, 90,155, 43, 70, - 22, 2, 61,157,248, 48, 86,229,186,120,107,138,207,179, 4,149, 15, 40, 38, 67,167, 11,120, 83,147,229,234,234, 26,230,229,229, - 21,235,230,230,214,242, 13,205,213,149, 61, 59,127,113,178,180, 47, 49, 87, 48, 40, 1,158, 20,246,182, 22,216, 52, 55,204,210, -198, 84, 90, 35,147, 85,106,174,206, 94,189,122,213, 90, 34,145,224,230,205,155, 16,137, 68,144, 72, 36,104,216,176, 33, 54,108, -216, 96, 99,105,105,249,175, 48, 89,132, 16, 11, 66, 72, 39, 66,200, 7,132,144,247,203,153, 43, 55, 0,237, 8, 33, 29, 0,216, - 3,184, 64, 41,189,107,164,102, 75, 62,159,127,180,113,227,198,201,124, 62, 63,114,201,146, 37,159, 78,155, 54, 13,107,215,174, - 69, 88, 88,216,179,233,211,167,227,201,147, 39,122,165, 82,217,147, 82, 90,229,141,176,176,176,240,183, 89,179,102,153,245,233, -211,167,236, 61, 46, 95,190,140,109,219,182, 65, 46,255,179, 23, 4,165, 20, 61,122,244,192,200,145, 35, 45, 52, 26,205,129,170, - 52,237,236,236,222, 11, 15, 15,247, 44, 53, 87,146,114, 6, 75,126,230,204, 25,115,137, 68, 98,217,180,105, 83,211,210,237,178, - 62,125,250, 88, 9, 4,130,150,220, 69,237, 21, 42,244, 34,149, 25,156,215, 13, 80, 69,159, 85,100,158,106,155,184,170,126,175, - 42,131, 21, 70, 8,185, 80,209, 78,218,236, 52,136, 97,128,140, 71, 32,229,147,146,191, 60, 2, 41, 97,193,207, 73,171,225,165, -246, 85,131,165, 80, 40,254, 98,180, 84, 42, 21, 10, 11, 11,141, 50, 26,101,125,121, 44, 44, 44, 94,222,180, 77, 76, 74, 70,147, - 91, 90, 90, 66,173, 86,131, 16, 2,185, 92, 14,185, 92, 94,163, 8,150, 68, 82, 18, 17,142,136,136,192, 31,127,252, 1, 62,159, - 15, 75, 75, 75, 0,192,205,155, 55,113,255,254,125,136, 68, 34, 88, 89, 89,213, 72, 87,171,213, 86,216, 68,168,209,104,106,212, - 68,200, 48, 12,138,139,139,233,205,155, 55,241,224,193, 3,136,197, 98,216,216,216, 64, 36, 18, 33, 33, 33, 1,143, 31, 63,134, - 72, 36,130,141,141, 77,173,202,199,212,212, 20,185,185,185, 96, 89,182, 44,154, 7, 83, 83, 83, 20, 22, 22,130, 97, 24,163,210, -201,178, 44,146,146,146,144,153,153,137, 23, 47, 94, 32, 35, 35,227,165,201, 42,107, 34,228,168, 33,151, 27,152,129, 8, 58,102, -228,234,196, 25,133, 34, 51, 59,247,246, 64,230,113,128,240, 0,129, 5,154, 55,169,135,248, 84,131,252,201, 11,141, 4, 58,116, -194, 57, 47, 11,163, 52,121,130, 14,233,121, 58,113, 92,174,141,169,175,127, 32,210,211,211, 33, 22,139, 33, 22,139, 17,212,252, - 61,196, 38,179,178,200,231, 42, 25, 40, 58, 26,165, 89, 74,147, 38, 77,234, 75,165,210,144, 38, 77,154,144,180,180, 52,136,197, - 98, 72, 36, 18,132,132,132,128, 97,152,134, 1, 1, 1, 62, 53,202,255, 51,119, 17, 4,178,230, 0,157,248,248,185,210,241,112, -132,202,171, 71,239,247, 45, 87,239, 77,247,121,252,188,216, 13, 26,253, 20, 20,105, 3,107,107,178,234,214,173,219,198,196,196, -228,247,175,190,250,202, 77, 44, 22, 31,119,115,115,107, 85,171,235,155,152,247,227, 87, 19, 7, 58, 89,148,153, 43,125, 17,192, -147, 2, 60, 89,137,201,178,179,198,162,207,219, 91,202,132,130, 95,141,213,148, 74,165,187,191,253,246, 91,155, 50,115, 37, 20, - 10, 33,145, 72, 94,190,154, 52,105,130, 57,115,230,216, 88, 90, 90,238,250,135,205,149, 37, 74,250, 85,221, 3,112, 0,192,217, -114,230,202, 3,192,175,165, 81,171,219,148,210,120, 35, 53, 91,116,238,220,249,252,179,103,207,186,222,189,123,215, 33, 53, 53, -213,103,242,228,201, 88,179,102, 13,166, 77,155,182,139, 82,234,181,111,223,190,128,235,215,175, 55, 52,166,127, 80,106,106,234, -160,233,211,167,103,102,102,102, 2, 0,252,253,253,145,155,155,139, 41, 83,166, 96,226,196,137,101,145, 87, 0, 64,122,122, 58, - 86,172, 88,145,150,154,154, 58,180, 42, 77,131,193,144,112,240,224,193, 16,141, 70, 83, 7,128, 16,128, 24,128, 44, 62, 62,222, -172,168,168,200,148,199,227, 41,228,114,185,169, 88, 44,150, 15, 31, 62, 92, 24, 25, 25,233,171,215,235,147,184,139,218, 43, 84, -234, 69, 42,138, 52, 85,182,173,182,251, 27,107,178,106,100,176, 40,165, 23, 0,180,254,139,129, 33,184,247,226,198, 5, 88,250, - 53,121, 53,130,197, 39,144, 41, 76, 17,155,148, 0, 33,200,195, 90, 36,240,165,169, 42,111,178, 82, 82, 82, 48,125,250,116,229, -142, 29, 59,238,107, 52,154,144,139, 23, 47,206, 48, 38,130,101,107,107,139, 23, 47, 94,208,111,190,249, 38,255,248,241,227,250, -178,109, 9, 9, 9,116,246,236,217, 5,191,252,242, 11,173, 73, 19, 97, 89, 4,235,194,133, 11,116,238,220,185,121,201,201,201, -212,210,210, 18, 86, 86, 86, 56,115,230,140,126,198,140, 25,121, 49, 49, 49,212,210,210, 18,150,150,150, 53, 50, 88,122,189, 30, - 82,169,244, 21,131, 66, 8,129, 78,167,251, 75,100,171,202,123,226,229,203, 35,242,242,242,190,152, 50,101,138,234,209,163, 71, -212,198,198, 6, 54, 54, 54,216,186,117, 43,255,227,143, 63, 86,221,187,119,239,229,182,218, 96,109,109,141,168,168, 40,186,100, -201, 18,213,217,179,103, 5, 0, 96, 99, 99,131, 39, 79,158,208, 5, 11, 22,168,114,115,115,191,184,124,249,242,136,106, 46, 56, -136,141,141, 69,126,126, 62, 12, 6, 3,212,106, 53, 50, 50, 50,144,152,152,248,210, 96,169,228,166,157, 63, 27,214,163,113,145, - 74,165,188,118, 63,250, 69,179, 38,126,182, 69, 42,149, 50,250,249,139, 40, 74,231,114,179,135,255,229,228, 97,237, 65,105,203, -203,247, 11,205, 59,116,235, 47, 34,249,215, 1, 93, 33, 32,176, 0, 4,230,224, 75,172,208,229,189, 0,222,150,147,249,246, 32, -108, 11, 72,196,213,247,111, 97,169, 29, 88,182,213,153,155,197, 22, 45,187,142, 23,101,103,103,131, 97,152,151, 6, 75, 38,151, -227,189,238, 67,152,205, 39,213,246, 96,105, 40,120, 60,163,251,204, 8,133,194,169,195,134, 13, 19,230,228,228,188,162, 41,149, - 74,209,187,119,111,177, 66,161,152,109,116,222, 31,251, 9,145, 38,110, 14,150, 78,124, 18,167,114, 60,248,135,202,107,242,156, -205,210, 6,141,154, 97, 76, 47, 91,233,226,237,233,126,119, 99,148,110, 96, 12,147,160,212, 4,225,167,154,153, 44, 55, 55,183, - 86,114,185,252,232,161, 67,135,100,109,219,182,197,228,201,147,229, 98,177,248,120,221,186,117, 91,215,180,152,138, 10, 12,159, - 45, 88,189, 61,237,222,222, 78,128,190,160,212, 92,253,249, 74,207, 99, 49,231,219,243,121, 58, 3, 29,104,172,166, 74,165,250, -248,147, 79, 62,201, 58,112,224,192, 95,204,149, 68, 34,193,243,231,207,177,120,241,226,236,236,236,236,161,255,112, 45, 13, 0, -112, 7, 64, 49,128, 54, 0,100,165, 35, 5, 67, 0,156,161,148, 26, 40,165,105,148,210, 20, 99, 5,121, 60,222,180,239,191,255, -158,175, 82,169, 48,114,228, 72, 36, 36, 36, 32, 57, 57, 25,179,102,205,122,206,178,236,199,165,154,119, 41,165,143,141,209,211, -104, 52, 79,114,114,114,186,119,238,220, 57, 55, 39, 39, 7,141, 26, 53, 66,247,238,221, 97,111,111, 15, 71, 71, 71,244,236,217, - 19,158,158,158,200,202,202,194,192,129, 3,179, 51, 50, 50, 58, 81, 74,171, 28,133,158,149,149, 21,179,119,239,222,152, 79, 63, -253, 52, 56, 33, 33,193, 31,128,131, 78,167,179, 84,169, 84, 10,189, 94,111, 98,106,106,106, 21, 24, 24,104, 51,102,204, 24,243, - 27, 55,110,248, 37, 38, 38, 22, 2,136,231, 46,106,175,120,131, 10,189,200, 27,112,244, 77, 34, 85, 21, 69,192,140,133, 41, 21, - 34,229,255,190, 18,189, 2,230,108,219,191,173, 88,228,234, 9, 51,159,198,144, 73, 36,144,138, 69,144,154, 91,162,152,101,177, -241,121,170,178,136,210,217,181, 72,252, 43,145, 43,150,101,177, 97,195,134,226, 69,139, 22,229,166,166,166,142,185,120,241, 98, -227, 27, 55,110,220, 51,198, 8,229,231,231, 99,223,190,125,170, 45, 91,182, 60, 83,169, 84, 77,132, 66,161, 78,163,209, 96,215, -174, 93,197,107,214,172,137, 83, 42,149,193, 2,129, 64, 91,147,230,183,178, 62, 88, 2,129, 64, 87, 92, 92,220,100,207,158, 61, - 49, 71,143, 30, 85,153,154,154, 66, 32, 16,232,148, 74,101,195,237,219,183, 63,217,179,103,143,202,212,212,180, 70,198,141,101, -217, 10, 35, 88, 6,131, 1, 98,177,184, 70,125,176,110,220,184,241,179, 86,171,109,182,107,215,174,196,205,155, 55, 23,155,154, -154, 2, 0,116, 58, 93,240,182,109,219, 18,127,252,241, 71,117, 77, 58,184,151, 94,120, 96, 48, 24,176,125,251,118,245,238,221, -187, 19,245,122,125,112,217,182,205,155, 55, 23,111,223,190, 61, 81,171,213, 54,187,113,227,198,207,213,105, 25, 12, 6, 67,110, -110, 46,248,124, 62,158, 61,123,166, 22,139,197,224,241,120,136,142,142,126,105,176,108,173, 45,253, 66,131,253,125, 86,253,184, -239,130, 92, 44, 22,119, 10, 11,242,141,140,142, 79,164,148,196,113,151,155,138, 66,202,144,129, 64, 26,157,160, 86, 72, 4, 58, -130,212, 95, 1,161, 69,169,193, 42,121, 57, 58, 57,227,198, 99,165, 2, 4, 34,104,116,182,213,106,234,168, 28, 4,178, 7,241, - 80,240,133, 82,146,154,154,250, 50,210, 84,102,136,220,220,125,113, 59,186,208, 4,132,138, 1,216,213,228, 66,101, 98, 98,194, - 79, 73, 73,121,169,245, 82,211,205,141,167,211,233, 58, 25,157,247, 12,131, 3, 88,246,179,168, 23,197,142,135,254, 80,121, 78, -154,179, 89, 42,229,229, 0,113,107,209,192,211, 30,147,135, 54, 22,205,218,152,209,224, 70,164,178, 62, 8, 29,131, 6,133, 70, - 63, 93,184,185,185,181,148,201,100,199, 15, 29, 58, 36,147,203,229,120,246,236, 25, 26, 53,106,132,133, 11, 23,202,100, 50,217, - 49, 87, 87,215,176,154, 20,211,213, 39, 52,190,176,192, 16, 50,117, 67, 66,234,189,231,134, 18, 99,197,148,152,171,140, 60,138, - 79,190, 58,146,155,147, 95,252,254,149,251,186,115, 53, 56,150,119,242,242,242, 58,126,245,213, 87, 89,153,153,153,175,152,171, -248,248,248, 50, 35, 16, 70, 41,125,248, 15,215, 82, 57, 74, 58,175,123, 3,112, 7,208,152, 82,170, 7, 80, 64, 41,173, 85,232, -218,207,207,175,137,171,171, 43,126,248,225, 7,108,220,184, 49,103,213,170, 85,160,148,194,211,211,211,180,182,154,105,105,105, -215,159, 60,121,210,169,113,227,198,143,214,175, 95,159,232,224,224,192,142, 28, 57, 18, 35, 70,140,128,141,141,141, 97,237,218, -181, 47, 90,181,106,245, 32, 38, 38,166,125, 81, 81,209,125, 35,202,135,102,102,102, 70,108,218,180,233,250,123,239,189,167, 24, - 54,108,152,221,198,141, 27,237, 31, 63,126, 92, 71,169, 84, 58,165,167,167,203, 47, 94,188, 40,222,182,109,155,125,100,100,228, -115,149, 74,117,157,254,157, 11, 2,255,247,204, 85,165, 94, 4, 64, 70,169,209,209,188,246, 55,163,154,207,140,253,110,133,255, - 27,177, 95,165, 84, 59,226,102,239, 51, 26, 49,196,157, 44, 95,184,121,195,151, 67, 26,250, 72,235,186,249,194, 80,152,139,251, -169,169,216,150,146,167,212, 81,250,237,190,103,244,124,109, 13, 22,143,199,195,201,147, 39, 13,187,118,237,210, 82, 74,127,202, -207,207,159, 29, 25, 25, 89,100,172, 14,203,178,188,225,195,135, 23,230,228,228,252,154,146,146, 50, 38, 38, 38, 70,211,170, 85, - 43,222,160, 65,131, 10,179,179,179,127, 35,132,140,188,121,243,166,186,101,203,150,168, 73, 61, 38,132, 64, 40, 20,130, 16,130, - 27, 55,110, 60,247,243,243,107,112,245,234,213,239,162,162,162, 62,164,148,242,110,221,186,149, 16, 24, 24,216, 40, 34, 34, 98, -253,227,199,143, 7,178, 44,203, 51, 86,183, 44, 58, 86,222, 72, 49, 12,243,210,212,145, 26,182,185,222,186,117,235,161,159,159, -159,239,245,235,215,183,142, 26, 53,170, 19, 0,217,141, 27, 55, 30, 53,108,216,208,231,234,213,171, 91, 63,254,248,227,206, 40, -105,243, 55,238,254,173,213,162,119,239,222,202,188,188,188, 19, 5, 5, 5, 67,239,223,191,175, 12, 12, 12, 44,219,118, 50, 55, - 55,119,104, 13,202,104,193,186,117,235,230,148,150,213,214,213,171, 87,127, 50,101,202, 20,155,164,164,164,151, 6, 43, 61, 51, -251, 92,139,110,227, 13, 89,185,121,154,205,171,167,126, 32,149,136, 69,179,151,109, 14,215,241,112,149,187,228, 84,128,200,144, - 15,202, 36,127,208,206, 66,188,246,219, 77,194, 97, 61,235, 75,252,125, 92, 75,204,149,208, 2, 55, 34,115, 49,231,155,125,236, -215, 99,109, 98,193, 34, 1, 6, 60,169, 86,211,132,159,143, 98, 93,250, 39,157,132,226,165, 63, 77,172, 23,218,253, 75,177,175, -127,211,151, 70,232,241,195,155, 88,189,120, 60,251,245, 24,203, 88,176, 36, 25,122, 60, 54, 54,185,122,189,254,131,101,203,150, -157, 24, 54,108,152,188, 65,131, 6, 47, 53,159, 63,127,142,175,191,254, 90,165, 86,171,223, 55,246,172, 4,227, 23, 96, 48, 24, -108,119,158,202,242,248, 98,194, 24,153,148,201, 6, 98, 87,148,152, 23,129, 25, 2,252,173, 49,103,130,189, 96,242,210, 35,126, -151,191,171, 87, 8,157,208, 23, 64,178, 49,234,124, 62,255,232,146, 37, 75,100, 82,169, 20,209,209,209,144, 74,165,144, 72, 36, - 8, 12, 12,196,154, 53,107,100,159,126,250,233,241,176,176, 48,147,240,240,112,125, 77, 76, 86,115,111, 18, 50,245,251,152, 43, -203, 63, 55,183,111,228,109,141,204, 2,224,147,185,191,231,100,231,171,250,213,196, 92,149, 55, 89,132,144,142, 19, 39, 78, 60, -181,101,203, 22, 43, 95, 95, 95, 36, 36, 36, 96,192,128, 1, 89, 25, 25, 25,109,255, 5,230, 10, 0,138, 0, 56, 1,136, 66, 73, - 95,164,167,132, 16, 17,222, 96,121,182,200,200,200,219,241,241,241, 14, 35, 70,140, 64,126,126,190, 69,255,254,253,241,236,217, - 51, 68, 69, 69,221,121,147,132,170, 84,170, 27,132,144,134, 95,124,241,197,144,169, 83,167,134, 42, 20, 10, 55, 74, 41,205,207, -207,143, 53, 24, 12,151, 1,236,162,212,248,117, 56, 75, 13,211, 83, 66, 72,108, 76, 76,140,221,214,173, 91,205, 75,143, 1, 0, -168, 0,228, 1, 72,171,173, 41,252, 31,230,198, 63,244,221, 55,114,140, 70,189, 62,112, 67,232,176,250,228,194,160,122, 40, 24, - 88, 15,133,195,220,201,229,247,235,163, 77, 85,223, 1,224, 95,209,246, 38, 77,154, 80,189, 94, 79, 79,157, 58, 69,187,116,233, - 82,212,178,101,203,203,129,129,129,158,198,164,227,117,205,176,176,176, 19, 65, 65, 65,253, 94,223,214,180,105,211,254,229,183, -181,105,211,230, 97,155, 54,109,242, 90,183,110,253,204,152,116,182,110,221,250,113,104,104,104, 81,235,214,173, 31,151,223, 30, - 28, 28,220,171, 93,187,118, 71,203,111,107,218,180,105,207,215,183, 85,150,247,246,237,219, 39, 68, 69, 69,209, 23, 47, 94,208, -174, 93,187, 38,151,109,127,239,189,247, 18,238,222,189, 75,163,162,162,104,231,206,157,147,107,114, 60,203,191,130,130,130, 70, -182,106,213, 42,226,181, 52,127,242,250,182,170, 52, 91,181,106, 21, 17, 28, 28,252,201,235,219,130,130,130, 70,214,166,140,202, -191, 28, 28, 28,188, 2, 2, 2,210, 87,175, 94, 77,235,213,171,151, 94,254,179, 6, 97,195,191,202,205, 47,204,159,178,224,135, -189, 54,190,189, 27,214, 52,239, 53,125,253,103, 53, 31,249, 10,233, 31,190,161,244,162,239,209,199,219, 93, 31, 13,237, 40, 87, -223,218,213,153,210,199, 95,210,171,251, 70,208, 16, 95,145,225,143,239, 92,162,232, 69,159,227,244,146, 87,107,122,188,190,200, - 40,205,139,238,173,232, 69,159,227,145, 91, 93, 31,245,110,109,163,217,181,125, 3,125,250,244, 41,253,237,224, 46,218,220, 87, - 86,170,233,123,138, 94,244,109,107,148,230,171,231,124,104, 72, 72, 72,225,222,189,123,105,116,116, 52, 61,125,250, 52,109,209, -162,133, 50, 32, 32,160,173,241,121, 7,161, 23,252,122,235,207,123, 95,158, 49,192, 36,247,147, 78, 18,245,128,182, 34, 77,175, - 16,161,182, 99, 19,161, 62,212,151,111,104, 84,143, 97,125, 93, 64, 59, 6, 74,213,244,162,247, 37,122,217,183,147,177,233,244, -244,244,124, 81,183,110, 93, 90,217,203,203,203, 43,163, 77,155, 54,252,218,148,123, 51, 47,184,182, 15, 22,167,156,253,169, 45, -237,209, 90,145,213,220,159,223,238, 77,235, 18,128, 0,107,107,235,204, 45, 91,182, 80, 59, 59,187, 12, 0, 13,254, 45,117, 30, -128, 37,128, 94, 0,108, 74,223,155,160,100,254,161,122,111,160,217,162, 99,199,142,186,219,183,111,211,103,207,158,209, 19, 39, - 78,208,208,208, 80, 61,128,176,119,250,124,255, 31,210,124,215, 94,228,239,140, 78, 18, 66,252, 43,234,108, 24, 24, 24, 72, 59, -117,234,164,186,112,225, 66,161, 70,163, 25,125,243,230,205,223,222, 84,243,239, 72,231,223,161,217,174, 93,187, 8,134, 97,234, -149, 14, 1, 78, 62,115,230, 76, 19, 0,104,219,182,109, 4,143,199,171, 87,106,122,147,207,158, 61,219,228, 93,203,123, 25,142, -142,142, 94, 12,195,156, 4,160, 78, 76, 76,124, 57,218,201,182, 65,175, 16, 75, 11,179,182,185,185,121,119, 82, 31, 28, 62,254, - 46,230,253,173,105,158,112, 23, 65, 33, 10,130, 1,211, 31, 60, 83,186,205,222,148, 89,191,123,199, 22,130,173,251, 46,178,203, -199,217,198,180,240,147, 63, 7, 97,191,134, 65,125, 29,109,226,212, 70,107,202, 72, 83, 64, 48,253,110,140,210,117,202,247, 57, - 30,237,123,124,194, 59,178,127, 3,251,205, 56,171,152, 22,126, 38, 47, 0,124, 13, 86,121,197,104,205, 87,207,251, 80,177, 88, -124,124,224,192,129, 38,187,119,239, 86, 21, 23, 23,119,191,125,251,246,249, 26,229,253,138, 79, 29,232,201, 98,128,186, 24,209, - 32,255, 20,122,118, 33,218, 62,126,241,111, 40,247,230,222,196, 85,174, 16,255,174, 84,235, 39, 26, 19,185, 50, 70,147, 16, 18, - 96, 97, 97,177, 35, 39, 39,167,191, 49,145,171,255,207,188, 19, 66,108, 80, 50, 17, 35, 31, 37,211, 22, 60,172,174, 15,147, 17, -154, 45,121, 60,222,180,250,245,235, 55,122,246,236,217, 3,131,193,240, 13,165, 52,252,127,225,222,241,191,160,249,174,241,143, - 24,172, 86,173, 90,221, 50, 24, 12, 39,132, 66,225,226,240,240,112, 53, 87,249, 56, 77, 78,179, 22,154,229, 76,214,173,168,162, -122, 75,119,102,187, 78,234,111,241,162, 58,115, 85,173,102,169,201,186,254, 68, 89,247,235, 93, 5,174,147,251,155,188,168,206, - 92, 25,155,247,192,192,192, 80,137, 68,178, 77,165, 82,141,172,206, 92, 85,168,249,216, 79,136, 28,157, 19,244, 60,127, 48,168, -124,169, 29,150, 42, 33,224, 61, 64, 10,210,240, 65,164,150,171, 75,156, 38,167,201, 25,172,255,111,254,145, 89,143, 47, 93,186, - 20,200, 29,122, 14,142, 55,164,115,140, 6, 39,220,111, 66, 33, 90, 22,232, 37, 29,255,235, 98,169, 18, 44, 73, 4, 97,215, 84, -101,174,140,208,188, 14,153,110, 89, 83, 47,233,196,131,139,165, 74, 0,169,160, 88, 93,149,185, 50,150, 91,183,110,253, 1,160, - 94,173, 5,124, 34,181, 0,158, 3, 36, 14,243,171,152, 29,123, 46, 40,192,117, 30,230,224,224,248, 31, 51, 88, 28, 28, 28,111, -209,100, 61,246,187,129, 44,222, 20, 24, 80, 15, 98,125, 60,114,245,169,232, 28,167,121, 67,205,107,200, 34,159,131,133, 23, 68, -250, 24,228,106,222, 76,243,173, 67,105,137,137,226,224,224,224,224, 12, 22, 7, 7,199,223, 65, 73, 84, 39,177,244,245,239,213, -228,224,224,224,248, 31,130, 0,240,175,248,249,208,248,182, 85, 66,136,127,205,159, 63,171,237,188,201,105,114,154,156, 38,167, -201,105,114,154,156,230, 59,166, 89,157,246,187,210,183,235, 31,233,228,206,105,114,154,156, 38,167,201,105,114,154,156, 38,167, -249, 46,195, 45,164,203,193,193,193,193,193,193,193,241,150,249, 71,251, 96,201,172,189, 28,192,103, 26, 17,150,250, 0, 0,101, -200, 99,232,217,123,202,204,168, 20,174,104, 56, 56, 56, 56, 56, 56, 56,222, 57,131,229,213,162,207, 37,185, 84,238, 1, 0, 44, -165, 48,176, 64,126, 78,250,149,248,123,167,251, 0,128, 99,131,247, 14,138,228,214, 33, 44, 75,193, 82, 10, 61, 75,161, 87,171, -158,102, 68, 30, 53,106,229,121, 19, 91,239, 62,237, 59,182,239,219,189,123, 55,239,134,254, 13,221, 1,224,254,131,251, 49,191, -255,126,244,137,137,173,247,175,133,233, 79, 14,114,197,195,193,193,193,193,193,193,241, 78, 25, 44,185, 84,238,113,238,240, 38, -219,131,151, 18, 0, 0,237, 3,237, 49,127,229,150,222,132,144, 39, 0,240,254,167, 43,189,102,127, 49, 20, 17, 15, 51, 64, 41, - 69,128,135, 37,122, 15,254,212,168, 31,149,218,251, 5,247,255,240,195, 65, 83,166, 76,238,249,244,233,211,184,221,187,119, 95, - 2,128, 86,173, 91,123, 44, 89,178,228,195, 21, 22,150, 98,169,189, 95,146, 42, 53,242, 6, 87, 68, 28, 28, 28, 28, 28, 28, 28, -239,140,193, 2, 0, 19, 9, 31, 79,158,151,180,214,153,203,128, 81, 31,191,143,180,180, 84, 47,173,158,197,144,254,125,112,251, - 73, 10,162,158,103,128, 82,192,203,217,232,181,132,193, 3, 27, 52,124,196,240, 54, 39, 79,157,186,254,213,236,175,182, 19,130, - 43, 0,176,225,167,159, 67,230,204,157, 51,114,200,199, 67, 58,236,223,191,255, 33,254,169, 5, 26, 57, 56, 56, 56, 56, 56, 56, - 56,254, 46,131,101, 96, 41, 30,199,166, 2, 0, 24, 30, 31,221, 66,205,176, 98,209, 52,168,212, 6,220,141,205,195,161, 63, 18, -160, 46,202, 5,165, 64,168,191, 45, 94,159,246,239,245, 17, 6, 43, 63,151, 53,225,137, 4,253, 59, 7,121,212,181,180,176,176, -136,190,190,189,104,206,224, 52, 95,190, 94,123,107,209,145,224, 88,185, 66,212, 98,223,254,253,126, 61,186,119, 23,153,154,154, - 77,181,244,233,232,204, 22,107, 39,231,198,133,231, 85,166,249, 54,224, 52, 57, 77, 78,147,211,228, 52, 57, 77, 78,243,159,213, -124,215, 96, 0,128, 16, 82,225, 92, 13, 49, 9, 89,120, 18,155,130, 38, 62, 78,112,175,107,143,235,209, 57,216,117, 46, 1,155, - 79,197,225,220,189, 12,176, 2, 5, 82, 11, 8,158,198,167, 33, 42, 46,179,218,105,149,121, 34, 65,255,137,203,243,166,248,213, -203,111, 30,190,119, 60, 28, 77,162,253,166,173,204, 29,207, 19, 9,250,219,218,155,239,158,242,249,152,193, 10,153, 84,164, 81, -107,224, 86,215, 69, 50,118,228,240, 97, 66, 19,249,110,174,152, 56, 56, 56, 56, 56, 56,222,109, 42,243, 34,255,105,131, 85, 17, - 69,170,162,167, 31,141,158,146,238,161, 72,209,244,105,235, 11, 80, 32, 35, 37, 14,145,215, 79, 34,250,214, 41, 20,100,188, 0, -165, 64,221,186,117, 32, 84,197,106, 54,252,248,125, 58,171, 47,126, 90,153, 94,175,142,142,206, 79,147,228,204,242, 41,117,174, - 68, 71,165, 88,143,155,178, 5,209, 81, 41,214,203,167,212,185,242, 52, 73,206,200,132,134, 22, 31, 15,232, 69,122,117,239,140, -105,211,166,160, 87,247,206,152, 50,230, 67, 34, 17, 9,154,115,213,142,131,131,131,131,131,131,227,157, 48, 88, 81, 17, 7, 91, -221, 58,179,221, 46, 51, 45, 45, 79, 46,230,131,207, 48, 72, 79,124,134,109, 43, 63,199,254,111, 39, 35, 55,229, 41, 40, 5,164, - 66, 30,212,133, 89,121, 41,119,246,217,101, 86, 49,130,144, 64,215,225,187, 29,207,221,226, 82,168,217,174, 19,133, 2, 0,216, -117,162, 80, 16,151, 66,205,190,219,241,220, 77, 68, 51,192, 26, 12,232,222,235,125,108,223,186, 17, 33,237,122, 97,255,197, 23, - 80,170,180, 26,174,152, 56, 56, 56, 56, 56, 56, 56,222, 9,131, 85,158,228,244,108, 88, 42,120,176,113,116,195,160,207, 87, 0, - 0, 12,172, 30, 20, 37,211, 51, 24, 19,211,163, 16,156,254,108,136, 91,108, 93, 7,146, 55,184,139, 76, 5, 0,131,187,200, 84, -117, 29, 72,222,103, 67,220, 98,149, 6, 11,173,193, 96,192,229,135,233, 88,254,203, 35,124,181,229, 30, 78,222,228,166,195,226, -224,224,224,224,224,224,248, 15, 27, 44, 66, 8,173,168,253,147, 5, 16, 29,151, 1, 49,159,133,115, 29,247, 63, 59,178, 83,128, - 82, 64,167,103,141,250,161,195,167,146, 19,235, 57, 21,209,169, 43, 94,132,248,251, 88,221, 27, 59,208,229,177,191,143,213,189, -169, 43, 94,132,212,115, 42,162, 58, 86,100,160,148,130,178, 20,148, 82, 80, 10,176, 44,229, 74,136,131,131,131,131,131,227,127, -132,202,188,200,127,214, 96, 81, 74, 73,217,171,162,157, 92, 93,236,112,237, 65, 60,234,216,137, 97,106,166,192,227,152, 68, 48, - 60, 62,120, 12,129,222, 96,252,113,160, 26,221, 47,171,166,154,173,120,145, 98,184,250,253,142,103, 79, 95,164, 24,174,174,154, -106,182,130,106,116,191,148,164,163,100, 82, 83,182,220, 95, 14, 14, 14, 14, 14, 14,142,119,159,234,188,200,127, 13,190, 17, 57, -134, 92, 38, 5,203, 72,112,249,102, 12,124,124, 27, 97,203,111,215,225,238,223, 12, 41, 5,122,208, 26, 44,103, 56,121,173,242, - 54,128,219,189, 58, 58, 58,247,233,226,212,129, 66,112,250,187,221,121,137, 0,176, 41,164, 79,169,177, 42,137, 92,177,180,100, -154, 8, 14, 14, 14, 14, 14, 14, 14,142,255, 26, 70,185, 35,150,165,176,177,182,128,216,196, 12,177, 25, 26, 20,194, 6,121, 42, - 2,214, 0, 24,244,149,155, 32, 66,136,127, 69,219, 15,159, 74, 78, 60,116, 42, 99,211,225, 83,201,137,175,185,215,151,205,131, -148,210, 10,155, 8, 43,211,124, 19, 56, 77, 78,147,211,228, 52, 57, 77, 78,147,211,252,103, 53,223, 53,140, 90,236,185,190,131, - 28, 30, 78,114, 20,107,236,160,210, 24, 80,164,214,163, 64,169, 67,158, 82,135,184, 84, 37,162,194,223, 60, 33,180,212, 96,129, - 18,176,148, 2,164,164,153,240,221, 8, 20,114,112,112,112,112,112,112,112, 6,171, 28, 74,149,242,105,135,190,159,148, 46,248, - 76, 97, 48,148, 68,150, 12,101, 77,121, 44,133, 65,171,122,250,166, 9, 49,176,236,245, 31,182,252,210,181,113, 64, 51,158,159, -171, 2,249,185,153,184,121,237,138,158,178,236, 21,174,152, 56, 56, 56, 56, 56, 56, 56,222, 41,131, 21,125,229, 96,171,255,143, -132,100,103,167, 13,217,177,231,215, 69, 59,247,254, 22,170,214,106,157, 88,240, 18, 12, 58,221, 5,113, 65,214, 28,174,152, 56, - 56, 56, 56, 56, 56, 56,222, 41,131,245,255, 69,118,204,181, 2, 0, 19,184, 34,225,224,224,224,224,224,224,248,175,195,112,135, -128,131,131,131,131,131,131,131,227,237, 66, 0, 84, 56, 18,160, 38, 43,101,215,102, 52, 65,117,250,156, 38,167,201,105,114,154, -156, 38,167,201,105,190,123,154,213,105,215,196,127,252,171, 13, 22,165,127,223, 92, 83,132, 16,255,183,125,160, 56, 77, 78,147, -211,228, 52, 57, 77, 78,147,211,124,247, 52,223, 53,184, 38, 66, 14, 14, 14, 14,142,255, 57,172,189,122,154, 88,123,245, 52, 49, -118,127, 27,191,126,118, 54,126,253,236,184, 35,199, 97, 44,124,238, 16,188, 21, 39, 47, 6,192, 82, 74,181,255, 84, 26, 44, 44, -234,153,234, 21,214, 7, 25, 86,253,117, 94,194,189,211,111, 59,127,126,126,126, 1, 0, 16, 25, 25,121,135, 82,170,126, 83, 77, -185,157,247, 64, 11, 83,243,209, 90, 86, 99, 80, 22, 41,127, 40, 76,141,218,255, 54,211,108, 99,227, 39,215,136,165,203, 65,104, - 23, 80, 48,148, 33,103,121,249,186, 73,185,185,119,243,170,250, 94,157, 94, 75,125, 70,124,208,109,246,166,253, 71, 23,189, 56, - 60,227,241,235,159, 91,118, 89,175,152, 48,228,189,169,223,254,242,251,215,153,191, 77, 45,228,106,127,205,169,211,114,144,185, -158,111,207, 75, 14, 95,145, 85,147,239, 57,123,135, 60, 20, 8, 4, 54, 90,173, 54, 61, 41,234,170, 81,205, 22, 46, 62, 45,110, -243,120,140,163, 65,207, 38, 38, 60,137, 8,226,142,126,245,200, 28,125, 2,136,193, 48,141,178, 6, 1, 11,222,234,226,140,232, -203,111,162,231,232,232, 40, 53, 51, 51,107,109,106,106,234, 34,147,201, 36, 57, 57, 57,170,156,156,156, 23,241,241,241,231, 40, -165,250,127, 34,143, 54, 13,122,207,224,139,152,185,165,255,207,207,120,120,104,105,213,251,247, 90, 68, 24, 50,163,244,255,165, - 25, 15, 15,207,254, 55,148,149, 93,195,190,205, 64,217, 47, 24,134,215,194, 64,245, 75,210,239, 31,254,190, 38,223, 15, 9, 9, -233,173,211,233,196,101,239, 5, 2,129,250,202,149, 43,135,184,179,224, 31, 50, 88,206,126,253, 44,116,124, 58,143,207, 99,222, -103, 41, 85,164,220,217, 39,255, 55,103,208,181,217, 71, 55, 25,134,113, 46,191,141,101,217,196,248,107,219,223,202,197,150, 16, -226,188,114, 98,224,180,180, 44, 85, 62, 33,100, 97,101,230,195, 46, 96, 96, 4, 97, 72, 61, 66, 8, 24, 2,240, 24, 2, 0,201, - 47,174,237,104, 82,129,166,131,169,156,239,149, 95,164,127, 64, 41,173,246, 38, 36,181,242,116,148, 91, 57, 93, 8,235, 51,222, -237,230,201, 45,190, 38,118, 62,239, 21,166, 61,142,124, 11,121,179,113,119,119, 15,246,242,242,178, 26, 63,126,188, 16, 0, 86, -175, 94,237,225,225,225,145, 21, 19, 19,115,131, 82,154, 81, 43,115,101,235, 51,100,237,138, 5,219,187,116,233,130,228,140, 34, - 44, 95,253,125,152,137,189, 87,191,183,101,178,136, 99,160,212, 92, 46,123,240,233, 23,115,156,187,182, 13,230,231, 22,234,112, -236,220,213, 33,251, 55, 47,111,103,110,222,184, 97, 85, 38,139, 85,230,206,182, 83,208,206,172, 50, 23, 0, 6,190,254,185,147, -137,174,189,165, 12, 93, 28,196,252,187, 0,126,173,246,230, 18,252,241, 73,129, 80,232, 74, 8, 83, 82,238, 60, 2,166,180, 14, -232,117,154,248,167,151, 54,119,250, 87, 92,168, 3,135,164, 18, 16, 43,166, 52,125,132, 0, 12,195,128, 79, 0, 80,154,255, 44, - 98,139,213, 91,168, 79,102,254, 30,230, 13,186,133,182,220,116, 33, 54,219,164, 78,155, 47,142, 18,202,124, 31,127,113,229, 93, - 99,190, 47,145, 72, 44,142, 28, 57, 98,211,185,115,103, 51, 59,255,222, 23,140,249,142,137, 72,226,247,251,239,191, 9, 59,119, -238, 84,131,250,233,221, 1, 12,179,131, 0, 2,150,165,171,121, 44,221, 91,152, 21, 21, 67,107,216,159,194,214,191,247, 2, 16, -248, 26,253, 5,138, 71,233, 15, 14,205,169,229,177,229, 73,109,189,135, 74, 37,146, 41, 30, 94, 62, 94,113,207,159, 69,229,231, -231,173, 82,165, 71,109,162,148,178, 53,210,210, 27, 38,158, 58, 23,241, 1, 95, 32, 32,157,218, 6,203, 9, 33,157,106,170,241, - 74,221,178,179,235,189,126,253,250,250, 33, 33, 33, 0, 0,189, 94,111,186,111,223, 62,251,133, 11, 23,202,141, 57,135, 42,194, -201,201,201,201,204,204,172,142, 84, 42,117, 2, 0,149, 74,149,148,151,151,247, 34, 41, 41, 41,169,186,239,218, 7,244,179,102, - 24, 44, 56,241,235, 79,124, 0,232,212,119,244, 34,183,176, 47, 45, 8, 79,160,170,104,127,131, 94, 35,103, 8,249,226,236,145, - 45, 4, 0,222,235, 57,108,186,141, 95,191,111, 51, 34,247,165,253, 35, 15,244,253,250,241,172,163,181,189, 9, 37,147, 2,131, -130,155,247,237,213, 5,126,238,142,232, 61, 96,236, 20, 0, 53, 50, 88, 58,157, 78,188,127,255,126,103,134, 97,120, 90,173,182, -120,192,128, 1,233,111,146, 54,207,150, 31, 71,128, 16, 23,173, 94,255,115,252, 85,247, 69,148,206,101, 95, 79,187,195,115,254, - 44, 16,102, 36,101,217,132,148,219,187, 91,112, 6,171, 20,107,175,158, 38, 60,177,240, 65, 88,171,230, 86, 51,198,246, 17,253, -184,247, 18, 28, 3, 62, 76, 74,190,179,215,233,223,154, 65,134, 97,156, 15,239, 90,111, 43, 21,243, 0, 0,133, 42, 3,250, 14, - 25, 95,253, 9, 28, 60, 56, 28, 4,222,101,109,168, 6,131, 94,194,231, 11,138, 9, 0,144,146,209, 1, 82,169,232,234,166, 89, - 33,121,195,122,212,251,104,218,183,183,183, 2, 48, 7,144, 90,225, 73,193, 48,206,123, 54,175,182,117,178,146,128,207, 35, 40, - 84,233,209,231,163, 73,134,138, 12,219,166, 89, 33, 11,134,116,169,219,223,182,243,129,190, 0,142, 87,121, 3,177,247,243, 81, - 88, 59,158,238, 59,106,129,163, 10,166,152,189,104,149,109,196,169,253,151,218,247,254, 68,251, 34, 49, 81,169,215,234,158,100, -101,167, 76, 46, 72,142,138, 54,246, 66,109, 98, 98, 82,223,196,196,164,113,151, 46, 93, 36, 83,166, 76, 17,132,133,133,189,252, -124,212,168, 81,194,240,240,112,135, 21, 43, 86,116,117,116,116, 44, 46, 44, 44,188, 91, 88, 88,248,140, 82,106, 48,182, 76,236, -237,109, 62,123,191,119, 15,180,123,255, 83, 24, 88,130,145,227, 38,226,228,241, 95,199, 0,120, 43, 6,203,132,199,204, 31, 57, -126,166,115,155,144, 64,254,178,125, 79, 97, 38, 19,162, 83,179, 32,190,152, 55,213, 97,207,230, 21,171, 0, 12,175, 40,114,197, - 42,115,103,251, 91,107, 7,244,108, 81, 15,191,237,209, 14,112,110, 63, 21,140,204,252,101, 36,203,189,203, 4,133,133, 84,178, -222,201,156,103, 43, 54,164,175,119,239, 50,225, 76,204,241,117, 5, 85,165, 69, 32, 20,186,110,250,118,177,167,165,137, 16, 60, - 30, 1,159, 97,192,227, 17,168, 53, 6, 12, 25, 59,227,109, 69, 24,121, 82, 91,207,174, 12, 48, 12, 0, 88, 96,139, 42, 61,250, - 88, 77,202,132, 48, 60,171,125,155, 87,240,109,205, 68,224,241, 8,120, 76,201,235,121,170, 10, 19,190,156,103,246,166, 70,189, - 75,168,109,112,248,183,109, 58, 53,247,183,108,244,203, 21, 98,222,188, 75,127,171,204, 98,233,208, 61,135,195, 7,212,105, 61, -233, 26,165,236, 55, 9,151,214,156,170, 74, 71,173, 86,167,117,234,220,197,148,240,229,178, 51, 7,183,182, 46, 91,108, 94,103, - 96,255, 92, 28,158, 2,101, 15, 49, 44, 5, 70,125, 50, 2,157, 58,119, 81,178,122, 54,177, 6, 23,141, 29, 39,206, 92,182, 41, -214, 81,172, 92,191,113, 65, 81, 94,230,130,216,199, 86,113, 50, 59,175, 47,148,105, 81,191, 25,159,113,248, 70, 69,236,235,179, -235,247, 43,240,247,243,133,129, 45, 89, 95,213,203, 89,142,221, 71,175,194,199,219,167,100,242,102,150,194,219,197, 4,109,186, -125, 84,203,227, 27,198,151,219,249,236,238,221,127,216, 7,125,222, 31, 0,115, 83, 19,104,180,106,175,115,167,142,255,244,195, -250,229,161,132,144,161, 53, 49,135, 44,107, 16,253,249,191, 78, 2, 64, 0, 64,243, 6, 17, 44,155,224,224,224,151,239,245,122, - 61,220,220,220,144,148,148,228, 93, 11,179, 38,115,116,116,236,182,124,249,114,219,182,109,219, 10,108,108,108, 0, 0, 25, 25, - 25, 78,231,207,159,111,210,164, 73,147,244,228,228,228,163,105,105,105,202, 74, 77, 5, 91, 44,228, 81, 62, 79, 44,150,150,250, - 90, 48, 83,198, 15,106,100, 99, 99, 83,225,195,113, 86, 86,182,104,238,220, 57,132,207, 23,148,236, 79, 41, 67, 89, 67,165,107, -140,180,104,209,162,167, 86,171,149, 84,244, 89,166,222,166,107, 49, 43,234, 95,114, 23, 1,248, 60, 94, 78,242,157,253, 54, 70, -155,246, 70,189, 58, 58, 48,130, 31,122,244,234, 85,183,119,215, 48, 56,216,152,225,220,213, 39,248,124,214, 74,232,244,134, 53, -181, 41, 31, 30,143,199, 79, 79, 79,143,179,176,176,176,127, 11,247,219,122,135,119,173,179, 61,127,233,230,244,111,197,123,198, -214,111, 57, 76, 87,182,252,157,129,165,240,150,152, 10, 90,247,234,160,176,114,242,146,110,252,118,153,128,139, 96,149, 47, 8, - 17,111, 97,203, 22,193, 86, 51, 38,142, 16, 45,220,120, 1, 87, 78, 29, 85, 37,223,217,247, 86,204,149,220,214,179, 33, 79, 40, - 26, 65,120, 2, 57, 3, 34,102,245,250, 20,131, 65,249,117, 97,106, 76,230,155,106, 27, 88,224,192, 31, 53, 52,230,148,122,252, -244,221, 74, 91, 59,115, 49, 84, 26, 61,134,127,246, 21, 54,172, 89,160,176, 49, 19, 65,173, 53, 96,203,225, 27,153,141,138, 86, -209, 97, 93,235,125,180,120,211,195, 95,191,217,241,248,215,146,115,181,146,138, 71, 24,216,154,137,177,104,247, 19,152,202, 4, -176, 52, 17,129, 97, 42, 54, 87,195,122,148,104,230, 22,104,244,132, 16, 17,165,180,194,139,155,137,131,127, 43,133,141,243,254, - 62,159, 44,176,137,206, 32,160, 84,131,103,102, 98,244, 29, 50,214,220,221, 94, 10,185,132,135,184,132, 20,183, 47,167, 78, 13, -146, 56,248, 4, 23,167, 60,126, 81, 93,182,235,214,173,219,183,123,247,238,178,201,147, 39, 11, 92, 92, 92,176, 99,223, 73,215, - 14, 31, 76,232,145,148,154,229,194, 82,192,206,214, 50, 97, 68,255,174, 71,142, 29, 59, 22,159,144,144, 32, 88,190,124,121,179, -253,251,247,251,213,228, 73,212, 64, 41, 84, 26, 3, 12, 6, 22, 6,150, 32, 35, 87, 93,139,155, 10, 97, 42,127,170,166,189, 58, -134, 53,229,175, 62,244, 12, 5, 74, 29,164, 66, 30,158,166, 20, 33, 36, 36,152,191,119, 11,105, 91,209, 55, 70,124,208,109,182, -157,130,118,238,217,162, 30,108, 45,100,216,252,237, 98,252, 22, 17,219, 57,173,128,192,186,231,242,209, 14, 98,126, 7, 27,153, -112,125, 88,144,135,253,123,129,174,184, 25,228, 97,127,241,214,227,168,134, 31,174, 26,159, 84, 40, 56,147,125,124,124, 65,101, -229,110,105, 34,196,198,147,113,144,139, 5,144, 75,248, 37, 47, 49, 31, 12,243,102,235, 64, 73, 29,253, 92,120,172, 97,132,169, -163,223,136, 1, 31,246,115, 28, 56,224, 3, 74, 24, 30,246,253,122,164,215,206,157, 59, 82, 76,236,189, 55, 26, 24,222, 38, 85, -114,100, 66,245,199, 19,176, 53, 19,225,203,159, 31, 64, 33, 19,192, 84, 38,128, 66, 42,192,123,141,109,106,157, 78, 66,136,197, -152, 94,245,187,222,219,222,190,173,119, 29, 19,207,187, 49,121,145, 35, 22,221, 92, 19,158,219,118,226,250,213,126, 86,162, 28, - 53,255,171, 41,159,240,147,146, 83,218,238, 59,114,161,157, 99,211, 17, 79,244,218,162,153,233,119,247, 30,174, 72, 47,225,113, - 68, 19,231,144,126, 18,109,161,238,254,221,168, 68,247,236, 98, 17, 34,227,243, 75,143,169, 0, 38,101,199,182,244,248,166, 36, -198, 33, 91,201,187,156,100,197,180,165,225, 17, 53,106,138, 82,105, 89,220,141, 45, 68, 93,175, 38,176,119,112,132,166,235,160, -186,215,207, 29, 56, 44,119,240, 93, 90,148,242,104,166,177, 58,187,126,191,130,133, 75,215, 68,131,224, 81,233,221,220,119,242, -164,241,158, 43, 87,173,127,101,219,216, 79,199,121,214,214, 92,203,236,188,119,182,239, 57,244,131, 70,205, 58, 32, 58,230, 25, -162, 31,222,196,123,237, 59,161, 75,247, 62,208,168,139, 63,218,244,211,250, 27, 0,190,123,253,187, 10, 7,223,150, 13,253,125, -119, 58, 58, 56,186, 80, 90,186, 52, 25,165,104,219,182, 45,166,126, 49, 18,202,194, 2,120,123,251,135,154,183,234,168,238,220, -255, 51,176, 44, 69, 86, 86,102,209,147,199,145,237, 85,105,143,175, 25,155, 70,165, 82,169,203,200,200,192,157, 59,119, 16, 21, - 21,133,135, 15, 31, 34, 43, 43, 11,102,102,102, 53,106, 98,183,176,176, 48, 13, 10, 10, 26,180,119,239, 94,137,153,217,159,158, - 95,163,209, 64, 38,147,161,119,239,222,130,150, 45, 91, 58, 13, 27, 54,236, 99, 11, 11,139, 93, 57, 57, 57,249, 21, 26,166,123, -191, 39,219, 55,236,253, 99,215, 15, 70,141, 5, 0,161,216, 36,118,237,207,191, 62,172,234,183,133, 18, 83,215,246,189,135,187, -131, 82, 16, 66,214,102, 62,254, 53,181,178,125,181, 90,173,244,151, 95,126,113, 34,132,188,114,127, 93,176,238,151, 22,247,163, - 83,218,255, 48,111, 26, 95, 33, 23, 35, 51, 79,131,209, 99,199, 91, 27,109,174, 26,246, 26, 23,220,164,201,119, 95, 77, 25, 9, -185, 76,138, 83, 87,159,225,139, 25, 75,245,217,153,233,219, 65,200,234,140,135, 7,223,180,213,226,173,140,120,243,116, 50,129, -162, 83,136,100,228,135, 97, 18,141,206,128,156, 66, 29,212, 90, 3, 88, 74,145, 87,164, 67,100,124, 1,172,205,132,216,136,119, -159, 26, 25, 44,190, 64,212,125,194,208,174,162, 21,187,174,225,202,169, 93,170,228,219,251,100,101,159,185, 4, 13,136, 77,184, -185,167,222,171, 30,165,250, 17, 6, 10, 39,111, 75, 48,146,175, 91,183,105,211,123,240,199, 35,137,171,147,141, 64,111,160,236, -195,199, 49,186,125,187, 54,127, 98,234,220,104, 85,126,226,189, 5, 53,209,124,245,105,140, 77,124, 61, 98,197,178,108, 98,117, -233, 36, 4, 48,151, 11,240,227,209,216,146, 39, 99, 80,152,201, 4,216,125, 62, 17,249,217, 73,153,141, 84,171,254, 24,209,213, -182,231,162, 77,145,135,191, 63,146,118, 11,192, 67, 74,105, 90,101,154,132, 1,248, 60, 2, 51,185, 16,102, 50, 1,204, 76, 4, - 96, 8,169,212, 92,125,245,211,189,173, 0,158,148, 55, 87,229, 53,229,118,222, 13, 76,109,234, 30,122,127,204, 18,139,251, 47, -180, 96, 24,160,158,189, 28, 22, 38, 34,104,116, 64, 92,134,182, 52,175,166, 24, 55,121,158,205,244, 73, 99,142, 17, 18,214,136, -210,112,125, 85,121, 87, 42,149,162, 33, 67,134, 8,116, 58,157,118,216,231,139, 58,166,164,101,246, 90,179,228, 75,177,181,181, - 21,138,138,245,184,243, 40,206,119,233, 55,223,214, 59,118,238,218,193, 65,221,154,252,102,107,107,107,166, 86,171,217,154,148, -123, 70, 90,230,183, 91,118,236,223,190,122,197, 82, 60,142,203,198,230,159,190, 7, 53,232,127,172,218,239,190,170,185, 97,195, - 6,219,144,144, 16,230,234,213,171, 89,175, 27, 80, 66, 32,207,206, 83,195, 92, 46,132, 76,204,135,189,185, 24, 86, 10, 33,196, - 66, 6, 12,243,231, 69,164,188,230,166,253, 71, 23,177,202, 92,252,182, 71, 59, 96,243,183,139, 49,252,179, 89,120,144, 41, 60, -193,200,204, 23,125,214,191,215, 52, 75, 25,186, 56,153, 51,182,239, 5,214,133, 92, 34,196,140, 9, 67, 16,124, 43,206, 54, 49, -151,157,149,173, 68, 99, 0,179, 43, 74, 39,195, 35,224,243, 24, 40,164, 2,132, 31,221,157,174, 44,200,203, 35,188,146, 8,139, - 78,163,141, 55,206,235,255,245,120,202,237,188,167, 7, 6, 52, 90, 60,118,212, 8, 38, 52,164, 41,101, 24, 62, 50,243,181,132, -130, 98,226,103, 99, 48,110,204, 72,251,196,164,180, 57,223,125,191, 97,182,137,173,239,194,194,244, 71,243,170,210,228, 17, 6, - 12, 67, 32,151, 10, 96, 34,249,243, 85,172, 97, 65, 8,120,206,129, 3,242, 64, 0, 66, 72,114,194,141,221,190,198,164,211,177, - 97,151,179, 23,210,133, 62,202, 99,197, 87,158, 70,223, 94,116,253,222,139,235,148,210,236, 58,109, 38,125,172,211, 81, 20, 22, -235,241, 60, 77, 9,189,134,146,225,157, 93,225,246, 1,241, 94,178,249,246,118, 66,136,105, 89,196,229,117,205,196, 43,251,138, -173, 27,246,237,191,122,221,134, 27, 43, 22,207,226,101,229,107, 96,160,128, 84,196,131,164,244, 37, 21,242, 80, 92,148,135,239, -126,252, 57, 85, 15,210,151,134, 87, 93,231,255,122,209,160,131,251,118,109,189,135, 0, 34,194, 8, 19, 29, 93,235,186,182,235, - 62, 84,242, 94,143,143, 96,208,107,167,203,237,124,206, 23,165, 61, 62,107,140,166,191,159, 47, 64,240, 40,253,254,161,190, 37, - 55,201,222,191,250,120,251,120,190,190,205,195,195,203,211,152,114, 47,123,184,144,218,120,142,242,240,105, 56,117,236, 87, 27, -234, 38,103,169, 97,225,228,129, 59,183,111,225,228,190,239,110,171, 10,114, 86,156,252,253,224,212,133,203,214, 52,238,222,251, - 67, 28, 62,180,119, 50, 33,228,123, 90,194, 75, 77,202,178,131,183,110,220,224, 34, 16,138,161, 51, 80,232,244, 44,116, 6, 22, - 58, 61, 69, 74, 74, 50, 10, 10, 11, 33,145, 42, 32, 55,181,132, 78, 95, 18, 41, 84,171,117,242, 49, 31,117, 31, 7,224, 90, 69, -233,116,107, 54,228, 38, 24,226, 92,178,189,212,156, 48, 22, 74, 7, 7,135,237, 0, 32, 22,139, 33, 22,139,161,215,235,113, 63, - 25, 19, 29,131, 7,207, 0, 45,189,179,179,108, 98,202,237,221, 65,149,229,221,197,197,165, 71, 69,230,170,176,176, 16,127,220, -184,103,182,229,151, 83,157,227, 18, 82,235,179, 6, 91,181,212,190,113, 39, 0, 61, 42, 59,158,169,247, 15,141,171, 19, 54,145, -153, 60,118,136,199,218,159,247, 95,143, 62,177,176,202,112,114,189,246,211, 53, 83,199, 13, 12,250,122,237,230,232,196, 11,107, -190,168,174,140,132, 66,161, 32, 35, 35,227,229,249,189, 96,253,129, 46, 47,210,242,219,127,179,120,150,240,206,179, 66,220,123, -158,130,161, 29, 92,141, 62,223, 29, 26,244,241,118,173,235,178,102,205,194,207, 17,149,172,194,250, 3,215,113,225,232,246, 91, -218,226,130,110,233, 15,127, 75,175,205, 53,228, 77, 13, 86, 69,154,101, 55,130,243,247, 50, 81,160, 42, 49, 86, 58, 3,139, 2, -149, 30,233,185,106,228, 21,233, 80, 88,172,195,208,246,174,181,241, 43,193, 0,108, 0,100, 0,184,241,218,123,148,254,143, 10, -222,103,150, 70, 12,173, 74, 35,177,162,114,154,101,239, 43,219, 94,246,253, 72, 0,190,165,154, 6, 0,215, 1,228, 84,235,153, - 8, 33,148,210, 63,151, 84,126,253,253, 43,145, 7,189,206,217,209,193, 1, 44, 77, 44,139,112,150, 68, 61,154, 13, 80,126, 49, -170,159,212, 49,224,131,162,228, 59,251,141,238,147, 37,183,241,107, 36,145,203,143,175, 91,191, 94,212,189,109,144,201,211, 52, -117, 65, 84,146, 38, 83,169, 49,232,109,220, 2,132,179, 23, 55,148,172, 93,181,100,130,194,177, 65,114, 65,242,195, 77, 21,134, -159,131, 7,222, 36,132,113,102,254, 12,203,131,178, 52, 49,241,198,174, 32, 0,120,147,190, 86, 69,197,122,240,120, 4,130,210, - 62, 41, 74,141, 1,202,220,212,172, 70,202, 53,127,140,232, 92, 98,174,174, 37,217, 63,227,241, 50,180,148,210, 42,155, 32, 24, - 66,144,175,212,193, 84, 42,128,153, 92, 8,115,153,240,101, 4,171, 18,115,245,176, 42, 77,161, 86,155, 96,208,169,139,169,193, -128,174,193, 54,176, 53, 19,193,193, 66, 12,137,136, 15,157, 1, 80,105, 88,168, 52, 6,196,167, 43, 81,160, 20,163, 97,155, 1, - 30,214, 14,215,148,214,117,131,183,102,198,221, 24, 93,101,132,201, 96,192,206,253, 39, 61,146, 82,210,123, 29,222,177, 74,156, -158,167,195,189,184, 66,164,231,104, 64,137, 25,102,204,158, 45,158, 61,123, 78, 31, 82,156,245,220,171,158,117, 98,141,143,107, -250,227, 29,141, 66,187,125,219,173, 71,111, 69,228,245,227,136,190,115,246,171,194,180,154,245,191,114,117,117, 53,124,247,221, -119,230, 63,254,248,163,135,173,173,109, 66,122,122,122,108, 89,115,148,155, 95, 72,242,233,115, 23,173,218,132,182,230, 39,100, - 22,195, 90, 33,132,171,157, 12,183, 34,206,107, 24, 66, 78, 84,164, 87,218, 12, 56,208,185,253, 84,252, 22, 17,219,249, 97,150, - 56,252,147,145,195,227, 78, 31,189,158,181,110,199,217,229, 78, 38,186,187, 18, 54,125,253,173, 32, 15,251,233,227,135, 96,233, -186, 29,184,112,235,113,122, 17,227,184, 56, 69,173, 63, 61,119, 64,197,173, 29, 60, 6, 16,240, 9, 20, 82, 1,148, 69,121,121, - 15,206,124,239,245,150, 30,142, 62, 62,121,104, 7,147, 93,160, 67, 98,166,138, 36,103, 21, 64,207,178, 48,151,139,160,103,129, -220,236, 76,178,115,231, 14,220,184,113,133, 1,143,249, 4,192,188,234, 34, 88, 60,134,192, 68,194,135,137,180, 36, 10,100, 34, -229, 67,171,103,225, 89,207, 5,107, 22, 76, 48,181,177,181, 67,199,190,163,141,143,176,201, 45, 26,111,251, 97, 33,194,175,220, - 13, 59,255,116,119,176,173,127,227,117,206,126,253, 86, 48,150,142, 42,181,206,128,252,188, 28, 20,171, 19,208,212, 41, 19,150, -114, 3,226,242, 29,240, 32, 53,218,164,186,230,172,204,251,191,222,177,241,239, 51,123,223,145,115, 75, 59,117, 8,195,195,231, -249, 37,230, 74, 88, 98,174,248,132,197,170, 31, 55,232,114,242, 10,186,103, 62, 56,148, 89,139,250,121,166,244, 98, 92, 18, 41, -182,171,111,179,115,253,236,109, 35,167, 46,239,212,169,207,199,228,193,141,243, 51, 1,156, 53, 54,122,254,215,109,212,168,109, -149,153, 43, 91,247,160, 93, 91,182,238,238,239,231,233,130,180, 92, 29,146,115,180,184,116,235, 41, 14,110,152,153,155,155,246, -108, 48,180,133,133, 44,209,231,157, 58,121,228,196,167, 19,166,162, 65,131,198,117,243, 19,243, 77, 1,228,189,114, 51,228,145, - 13, 31,141, 24,211,223,206,214, 78,193,150, 70,176, 88, 74,225,237,237,135,174, 61,250, 34,252, 98, 4, 34, 31,222, 43,217,206, - 2,148, 82,228,230,100,165,234,117,154,173,149,166,143, 71,156,183,252,184,202,150, 33,128, 86,207, 66,163, 99, 49,125,198, 87, -154,207,231,172,111,217, 41,180,209, 67, 30,216,252, 23, 41,185,230, 55,158,164, 52, 36, 2, 83,135, 65,163,166, 9, 85, 90, 3, -242,149, 58,156,221,183,182,242,102,198,250,141, 67,220,124, 91,142, 24, 53,235, 71,177,152,199,104, 27,120,185,196,182,105,222, - 32,161,142,163,117,193,146,181, 59,155, 70,220,122,210,181,239,251,125, 36,253,235,251, 17, 71, 43,137, 98,204,184,241,141,236, - 61, 91,126,148, 26,125,121,123,165, 55, 63,190, 56,215,197,217,229,101, 83,162,173,127,239,123, 0, 94,191,243,199,167, 63, 56, -212, 8, 0,108,237,236,139,137, 64, 92, 80, 3, 3, 66, 1, 96,254,186,253, 93, 19, 51, 10, 63,248,102,241, 44,225,157,216, 34, -220,121,150, 7,145,144, 7,181,214,248,110,109, 6, 66, 39, 78, 27, 63, 92,144, 93,164,199,249,123, 25,120,112,243, 28,213,107, -243,135, 82,194, 31,102,227,223,251, 35, 2,184, 81,224, 57, 67,240,147,134,193,214,220,187,135,242,106, 27,193,178,245,235,219, -130,240,208,149,199, 23, 6, 3,172,143, 94,167,179,101,120,188,204,212,187,251,237,106,144,119, 40,211,163,177,124,201, 28,172, -217,120, 16,215,163,178, 97,166, 79,192,225,205,139, 49,121,233, 78, 40, 53,134,202,234,119, 85,126,196,134, 16,242, 59,165,180, - 59,128,246, 0, 68,229,222,131, 16,242,123,233,111,191,242,126,250,244,233, 51,151, 46, 93,250,176,108,223,178,237,101,251, 86, -181,189,220,247,173,102,204,152,225,191,108,217,178, 37, 33, 33, 33,123, 34, 34, 34, 98,141, 50, 88,229, 51, 65, 8,169,244, 44, -183,107,216,171, 41,192,240,236,173, 76,224, 81,207, 5,242,126,195,164,206,129,253,139,120, 60,134,217,186,102,166, 36, 75,197, - 7,159,199, 43, 50,190, 73,208,203, 95, 97,110,121,234,200,111,135,196,158,117, 44, 37,191, 94,203, 77,184,241, 76,249,178, 82, - 20,229,164, 8,237, 68, 89,130,110,221,251,240,111, 92,189, 54, 29,192,166,138, 11,132,113, 94,183,234,107, 91,133, 84, 0,134, - 0,249, 42, 61, 38, 78,154,246,198,119, 47, 10,202, 27, 55,105, 46, 24, 82,114,243, 41,204,203,198,226,213, 91, 10,251, 58,159, -187, 60,162,179,117,207, 69,155, 34, 15,159,122, 36,125,218,167, 79,187,188,184,184,184,106, 15, 52,161,134,196, 15, 62,254, 92, -200, 48, 37,205, 70,132, 16, 0,134,180,218,152, 43, 0,200,201,137,205,151,218, 55,234,179, 99,213,248,141,117,156,157, 44, 21, - 50, 9, 76,228, 98,226,227,237, 46,105,222, 44, 68,234,234,222, 64,120,241, 81, 33, 94,100,168,240, 44, 41, 31, 98, 27,127, 65, -255,176, 14,216,177,118, 90, 87, 99,242,127,238,202,131, 30,223,175,152, 37, 78,203,209,226, 81, 66, 1, 82,179,213, 72,205, 41, - 70,106,142, 26, 38, 18, 62, 66,218,191, 47,190,120,116,103,111,175,122,214,235,106,115,124,159,197,196, 30,140, 79, 74, 25,218, - 40,160, 41,118,110,219,210,156, 56, 59, 75,104, 98, 98,177,177,223,223,184,113, 99,118,147, 38, 77,172,191,249,230,155, 34,111, -111,239,198,222,222,222,245,162,162,162,194,235,215,175,223,227,135,181, 11,195, 63,159,181,194,149, 15,189, 89,243,208, 80,158, - 76, 68,112,245,226, 41,245,214,141, 63, 38,107,115, 11,167, 86,105,132,101,230,139,210, 10, 8,108, 28, 93, 30,200, 5,186,142, - 2,153, 54, 42,123,251,248, 29, 0,126,117,239, 50,225,204,249,155, 79,162, 2,111,197,217,158,187, 21,149,158,173,212,121,197, - 28,159, 84,229, 5,151, 71, 74, 35, 88,178, 63, 35,150,118,141,251, 61,165,132,216,148, 25, 27,130,146,136, 22, 41,121, 62, 72, - 78,188,245,139, 17, 29,163, 9,101, 89, 32, 42,177, 16, 5, 42, 61,138,117,122,184, 88,203,145,145,150,136, 31,214,109,197,237, -155, 55,208,177, 75, 79,124,247,243, 78,140,252,168, 95,181,199,149, 97, 8, 24,134,148, 70,174, 74,204,149,137,132, 15, 16, 32, -183, 72,135, 95, 47, 39,192,189, 30, 3, 82,131,214, 66,133,137, 20,121, 5,197, 96, 4, 38,120,124,105,187,236,248,185,235, 51, -230,173,216,244,101,126, 97,218,139,152,200, 43,240,182,200, 66, 61, 71, 13, 30,166,153,225,102,118, 93,120,187,215, 7, 35,188, - 97,148,118,230,195,134,203,127, 99, 14,116, 15, 14,240, 11,169, 99,107, 6,149,198, 80, 26,197,226, 99,235,150, 45,136,123,158, - 56, 34,243,225,161,219,111,195,201, 22,166, 61,203,144,216,121,126,122,255,234,217,216,222,131,199,193,222,169, 78, 99,227,187, - 39, 24,103,166, 88, 35, 12, 22, 33,132,177,172, 27,176,109,219,142,125,253,235,213,177,199,233,235,207,113, 59, 38, 7,166, 10, -115,240,228, 14,240,106, 51,204,252,254,137,181,239,171, 50, 11,183, 9,132,178, 79,154, 54, 15, 5,165, 20, 79, 30, 63,204,206, -203, 51,251,203,181, 89,153,252,248, 14, 0,211,242,219,100, 54,190,141, 21,102,150,119,138,181, 6, 36, 37, 37,226,143,136,240, - 38,165,251, 25,141, 88,200,224,212,173,116,104,245, 44,180, 58, 22, 77, 26,250, 20, 11,132,210, 86, 95,111, 60,218, 60, 53, 45, -157,145,153,152,177,102,214,245,133,230,186, 84,245,221,216, 60,161, 86,207,162,190, 67,213,207,229, 50,203,250, 75,190,152,244, -185, 47, 95, 36, 69,126,145, 90,147,146,152,100,255,211,238,243,133,143,158, 68, 58,185,213,173, 99,186,112,225, 60, 97,126, 49, - 69,122,174, 26,153, 5, 90,242,225,192, 17,142,219, 55,127, 55, 24,192,246, 26, 36,189,225,158,237, 63,234, 44, 77,132,164, 64, -169,163, 25,249,197,134,113,159, 78,108,248, 38,117,231, 21,115,245,172, 8,119, 98,115, 33, 22,242, 32, 22,242,160,211, 27,215, - 69,210,198,175,159,220,198,198,124,112,179, 0, 15,156,188,149, 1, 62,143, 64, 85,148,175,145,136, 77, 30,248,248,120, 50, 1, -141,253, 17,214,178, 5, 98, 98,227,188, 79,158, 62,183,250,250,141,219,139,109,252,251, 76,205,120,112,240,187,154,164, 53, 62, - 41, 67,158,166,119, 25, 96,107,111,237,223,179,103, 15,113, 29, 39, 59, 98,109,101, 14, 3,132, 24, 59,238, 51, 91,163, 91,141, - 40, 5, 5,176,108,193, 12,168, 53, 26,216,154,139, 64, 41,176,121,253,124,104, 52, 26, 56, 90, 73,144, 87,164,171,170,158, 87, -233, 71, 42, 50, 68,175, 27,173,178,255,203,246, 91,186,116,105,247,215, 12, 96,247, 74,140,225, 95,246, 43,251,254,178,101,203, -150,148,251, 92,105,116, 19, 97, 89,102, 42,203,148, 77,163, 62,161, 82,177,252,212,119, 75, 39, 50,185, 69, 90,136,133, 12,234, -215,115,195,248, 9,159,203,222, 11,176,133, 10,166, 56,176,123,107,190,222,160,251,221,152, 31, 53,177,247,245, 53, 49,181, 60, -179,123,207, 47, 2, 43, 75, 51,178,250,104, 70, 84,122,158,246,229, 20, 7,177,247,206,106,175,254,182,198,129, 80, 28, 23,203, -228,174, 90,173,186,210,194,101, 74, 11,116,243,169, 56,240, 24, 6,188,183, 52,179, 23,195, 48,134,159,215, 45,132,181,105, 73, -159,171,249,107,118, 20,244,176, 57,113,174,188,185, 10, 8, 8,200,107,220,184,113, 46,195, 84,255,163, 47,174,239,108, 81, 65, - 69,169,149,185,122,217, 79, 36,245,222, 13,188, 54, 19, 63, 33,129, 2,107,183,125,147, 7, 12, 26, 60,195,174, 65, 15,197,243, -148, 60,136, 24, 29,130,125, 29, 16,126,242, 87, 54, 33,246,209, 24, 99,180,211,179,242, 92,172,173,172,112,251, 89, 33,146,179, -138,145,146, 93, 98,174, 82,179,139,145,175,210, 35,192,205, 22, 69, 42,181, 75,173, 13, 44,161,135, 78,158, 56, 57,180, 75,175, -254, 24,255,229,188, 46, 27,191, 95,121, 79,106,231,251,145, 42,237,209,117, 99,190,191,111,223, 62, 67,221,186,117, 99, 51, 51, - 51,131,167, 78,157, 90,224,230,230,102,191,112,225,194, 81,245,235,215,119,124,175,109,219,188, 27,231,155,111,251,252,203,121, -109,103,126,190,177, 30,195, 48,105,148,165,191, 37, 23,233,230,210,140, 72, 85,149,229,116,120,198, 99,226, 55,127,232,123,173, -172,126,179,146, 50,126, 2,162, 30, 72,252,230,239,165,145,115,181, 49,199,215, 21, 52,252,112,213,248,164, 92,118, 86, 49, 99, -191,184, 58,115, 85, 18,193, 34,208,104, 89,152, 74, 5,101, 35, 71, 1, 10,135,239,215,175,148,217,152,137,193,231, 17, 8,120, - 12,242,148, 58,100,229,107,240,229,212,169,198, 30, 65,214,192,178, 80,170, 13, 80,105,244, 32, 32, 40,200,207,196,140, 47,191, - 64,151, 30,125, 49, 98,204, 36,228,170,128,155,177, 5,208,234,116,213,218, 34, 30, 1,148,106, 61, 70,116,114, 69, 86,129, 22, - 69,197,122,104,180, 44,100, 18, 62,248,124, 6,114, 49, 31, 10,169, 0,132, 80,161,131,131,195, 40, 0, 16, 8, 4,197, 47, 94, -188,216, 81,121,243, 60, 69, 93, 23, 59,168,180, 12,154,246, 95,129,246, 33, 94,184,115,122, 19,255,226,181,251,245,190,156,183, - 26,227, 6,134, 96,255, 19,119, 88,218,214,133,137, 76, 2, 29,101, 0, 24, 55, 5, 8,165,115, 89, 7,159,190, 3,127,252,121, -243,147, 5, 95, 77,147,228, 20, 17,136,133,124,156, 59,119, 6, 87,174,221, 92,155,241,240,208,142,183,217,151, 66, 64, 25, 59, - 83, 51, 83, 72, 68, 60,104,181,106,163, 59,124, 27, 88, 10, 80,248,218, 54,236,253,107,105,217,251,178, 21,108,171, 46,130, 69, - 8, 33,102,142,254, 91,126,220,184,115,176,131,189, 45, 14,158,189,135,109, 27,191,133,147,127, 23, 60,189,245, 35, 92, 2,123, -195,164, 94, 59,136, 20,251, 70, 49, 60,126,195,113,159,207,232, 27, 24, 20,130,136, 75,231,145,158,154,242, 35,165,143,141,234, -131,198, 19,144, 9,109,219,119,135, 90,107, 64,171,118,221,113,226,200,193,241, 40, 29, 60, 81, 91,120, 60,134,253,108,228, 0, - 65,122,174, 70,144,158,167, 70, 82,166, 10,177,169, 69, 56,252,203, 38,163,155,164, 8,143, 9,110,211,216, 89, 48,106,249,185, - 4, 23,103, 7,181, 64,173,146, 70,197,196,248,124, 50,116,176,192,205,195,155,201,200, 85, 35, 35, 79,131,140, 60, 13,138,138, -117,112,119,172,195,168,245,252,144,154,166,213,214, 76, 34,248,238,247, 88,152,202,248,104,225,107, 85,235, 78,216, 44,203,254, -105,174, 22,149, 68,174,238,198,230, 65, 34,228, 65, 36,224, 65, 44,100,160, 51, 80, 35,239, 69,250, 1,163,135,126, 40,213,232, - 40, 50,243, 53,224, 49, 4,246,214, 86, 98, 23, 7, 47,108, 94,241, 25, 0, 96,228,180,239,241,201,240, 33,240,246,242, 64, 94, - 94,129,244,147,177,159,175, 66, 5,253,238, 42,139,180,237, 60,124,209,239,230,131,248,201, 31, 15,253, 72,208,191,103,107,230, -246,179,124,164,100,171,241,236,169, 18, 26, 93,205,102,163,209, 27, 74,218,124,183,236,253, 29, 50, 33, 15, 25,121, 37,167,203, -162,245,123, 97, 34,229, 35, 53, 71, 3,150,101,171, 74, 79,149,126,164,178,168, 83, 77, 40,111,194,170,218, 78, 8,249,125,250, -244,233, 51, 1,208,233,211,167,207, 44,123,191,116,233, 82, 21,128,100,163, 12, 86, 89,166, 42,116,207,141,250,132, 74, 69,146, - 83,219,215,207,148,158,141,162, 88,123,234, 22,186, 54,119,128,144, 79, 32, 49,177,199,157,216, 92,156, 61,123,184,224,210,149, -107,197,132,209, 85, 59, 44,202,196,193,195, 91, 42,183, 12,255,225,231, 45,196,210,210,146,110, 57,155, 17,159, 85,100,120,101, -254,168,171, 71,214, 57, 66,107,104,157,151,241, 56,198, 8,183, 44, 92,250,195,111,160,148, 2,172, 1, 44, 88,240,132, 98,185, -107,179, 33,105, 32,128,193,192, 74,248, 60,166,248,101, 59, 72,201,173, 41, 49,254,218,174, 42,155, 14, 9, 0, 83,153, 0,191, - 92, 72, 68, 94,118,114,102, 15,155, 19,127,148,153,171, 19, 15,197, 79, 3, 3, 3,242,154, 53,107,150, 43, 22,139,193,227,241, -106, 83,192,111,100,174, 42,175,156,183,116, 0,150, 57,250,180,238,217, 69,238,223, 76, 68, 4, 8,244,113, 64,248,169,131,236, -149,227,155,250, 40,211,162,142, 26, 27,226, 45, 44,214, 35, 57, 91,133,164, 76, 21, 82,114, 74, 35, 88,217,106, 16, 2, 20,107, -222,108,250, 26,101, 90,212, 17, 19,167, 6, 63,170,117, 24,211,170, 99,111, 76,158,247,173,199,142, 31,151, 95,146,219,122, 6, - 23,165, 71,223, 55, 70, 35, 46, 46, 78,109,103,103,119,187,160,160,160,195,170, 85,171, 10,125,125,125, 69, 82,169, 52, 11,128, - 36,250,201, 19,225,185, 99,251,158,103, 36, 39,143,214,106,181, 55,140, 77, 87,221,176, 97, 98, 31,211,236, 81,174,178, 22,157, -234,219,203,224, 42, 43,234,228, 99,114,247, 27,219,247, 38, 46, 73, 63,187, 38, 61, 69,173, 63,157,173, 68,227,164, 66,193, 25, -163, 46, 54, 90, 77,252,160,209,211,193, 99, 8,180,106,205,203, 62, 25, 54,102, 98,204,219,241, 8, 10,169, 0, 38, 82, 1, 20, - 82, 62, 66,125,173, 80,131, 0, 17,213,233, 41, 84, 26, 61, 84,106, 3, 84,106, 61,172,235,152,227,231,237,251,241, 34, 67,133, -223,110,100,226,113, 92, 62,188, 92,228,160,180,250,184, 19, 75, 13, 69, 31,142,154,165,224, 49, 12,120, 4,140,143, 71, 93,100, - 23,106, 32,228, 51, 16,137, 68,144, 73,248, 48,149, 9, 32,224, 11,112,253,222, 61,168,213,106, 52,107,214, 76, 82, 93,131,131, -194, 68, 10,207,122,142,208,234,244, 56,118, 49, 18,139, 38,246, 65,135,214, 65,248,146, 39,194, 99,117, 0, 20,150, 10,176,132, - 7,173,158,133, 90,103, 0, 64, 84, 85,156, 51, 45, 74,251, 69, 20, 83, 74,175,166, 60,254,245,133,109,131,222,163,142,159, 58, -183,163, 71,215,142,184,125,247, 33, 14, 28,252,237, 82,166, 85,222,148,114,223,105,136,210, 81,112,148,210,135,181,188, 24, 19, -185,157,207,196,144,208, 48, 20,230,164, 35, 45,225,185,209, 23,117,191, 58, 10,124, 49,113,188,167,183,183,183,167,129,165, 96, - 89, 10, 63, 87, 5, 70,143, 29,235,233,238,225,229,201,150,142, 34,244,113, 81, 84, 29,241,183,243, 30,183,120,213, 15, 31,185, -184,184,224,196,229, 71, 88, 58,107,204,109,153,204,196, 45,200, 82, 97,206,122, 55, 70,236,131,211,176,172,155, 11, 83, 59, 79, -231,158, 29,134, 58,119,233,214, 27,247,239,222,194,154,111, 22, 94, 41,226, 73,151, 24,245,224,107, 87,223, 38, 32,184,245, 32, - 83, 75, 59,228,228, 21,194,196,194, 22,190,141,130, 6,153,216,213,159, 86,152,246, 44,163,182,231, 58, 75, 41,212, 90, 22,217, -133, 90, 36,102,168,240, 60, 77,137,231,169, 74,176,236,159, 77,193,213,213, 80, 2, 66,228, 98, 62,223, 82,247,180,206,189, 51, -231,168,171,139, 29, 89,190,112, 42, 79, 75,197, 72,207,211, 32, 35, 95,131,140, 60, 53, 50,242, 75, 12,150,133, 9, 31, 44,101, -107, 60, 58, 35,187, 80, 11,133,148, 15, 51,185, 16, 6, 67,237,251,124,207, 91,189,187, 69, 98, 70,225,123,223, 44,154, 37,188, -243,188, 8,247, 98,243, 32, 22, 50, 37,209,171, 82,131,101,108,179, 48,143,207,140,239,214,190, 25, 18, 50,138,193,231, 49,224, -243, 24,120, 52,104, 2,107, 25,139,247,250, 79, 7, 0,244,232, 90, 50, 13, 73,108, 74, 17,142, 92, 77, 1, 0,161,177,105, 77, -207,204,151, 28, 60,125,251,243,221, 63, 47, 23, 21, 27, 4,248,225,104, 28,138, 53, 6,136,133,165,205,238,162,154,221,223,244, -134,146, 8, 86, 66,134, 22, 69,106, 3,242,149, 90, 80, 10, 92,127, 90, 0,165,218,128, 60,165, 22,205,189, 45,171,187,255,144, -106, 62,239,254,102,247, 73,218, 29, 37,125,181,108,140,141, 96, 45, 93,186,244,225,210,165, 75, 43,140,136, 85,107,176, 42, 53, - 87, 66,201,169,109,235,102, 74,207, 60,161, 8,191,151,133, 15, 90, 57, 35, 43, 61, 17, 27,191, 95,203, 82, 10,136, 37,162, 84, -131,158, 61, 94,204,234,167,230,222, 61, 82,101,187,175,194,209,203, 83, 34,181,188,176,116,213,143,172,149,181, 61,246, 70,228, -164,228, 42, 13,186,215,111,236, 84,207, 10, 11,140, 48, 87,165, 77, 27,218,121,227,251,128,165, 20,115,215,238,197,210,201, 3, - 96, 34,225,203, 8, 33,178,162, 98, 61, 38, 46,220,132, 85,179,135, 43,100, 98,126,169, 49, 48, 96,204,248, 47,141, 42, 4,149, -218,128,162,156,212,172,134,133,171, 95, 51, 87,129,121,193,193,193,185, 22, 22, 22,144,203,229, 53, 54, 88, 21,153, 43,123,123, -123, 71,153, 76,102,233,233,233, 89,250,212,199,131,193, 96, 40,138,142,142,174,213,164,111,249,185,153,135,146,159, 63,104, 22, - 26,214, 13, 23, 78, 29, 98,175, 28,219,216,167, 38, 67,204,205,205, 76, 19,110, 69,198,251, 2, 38, 72,202, 42, 70,106, 78, 49, - 82,178,213,208,234, 89,184,218,201,144,152,240, 2,114,169, 56,193, 88, 61,153,189,103,103,134,242, 70,179, 4, 63, 43, 83, 31, - 31, 3,128,194,164,135, 99,101,182, 94,247, 31, 62,188,187,166,251,128,241,162, 14,239,143, 21,110, 88,246,233,116, 0, 3,140, -213, 77, 75, 75, 83,218,218,218, 94,113,116,116,236, 62,119,238, 92, 53, 0,145, 90,173,150, 13, 31, 62, 92, 22, 31, 31,255, 5, -165,212,168, 52,182, 26,190,197,154, 72,104,231,250,222,129, 3, 93,101, 69, 29,219,181, 14, 65, 11,127, 23, 36,182, 14, 1,128, - 9,241, 74, 19,175,150, 99, 54,254, 82,207,198,226,248, 15, 91,143, 45, 29,217,191,221, 23,142, 61,230,175, 74, 62, 50,183,202, -136,216,147,139,155, 58, 85,228,222, 5,165, 29,223,203, 27, 44,189,129,214,164, 9,142,234, 12, 44,148,106, 61,148,106, 61, 10, -139,117, 56,123, 39, 29,105,185, 26,228, 20,105, 81,172, 54,128, 2,208,234,104,217,172, 34, 85,155,213,136,173,230,101,255, 59, - 7, 14,200, 91,187, 96,188,233,129,203,137,144,139, 75,250, 99,153,201, 69, 48,149, 9, 0, 80,132,135,135,163,108,120,124,117, - 79,241, 7, 78, 92,199,170,173,231,112, 98,211, 84, 72, 68, 60, 52,238,189, 0, 67,123, 55, 3,203, 82,196, 60,121,144,230,233, - 27, 96,199,152,200,192, 48, 40,235,147, 82,213,241,180,162,148,254, 70, 8,233, 78, 8,233, 86, 98,225,144,115,200,144, 85,116, -238,232,110,121,145, 74,173,207,137,127,244, 45,138, 50,219,148, 52,193,131, 45,125, 64, 15, 39,132,180,174,165,185, 98,164,182, - 94,107, 63, 25, 59,241, 3,119,247,250,216,187,107, 51, 40, 37, 7,140,253,254,142, 35, 87,176,122,205,171, 35, 6, 71,143, 29, -235,185,225,135, 31, 94,217,246,209,240, 81,158, 85, 25, 60,103,255,118, 83,189,125,252,112,245, 97, 34,150,127, 53,238,118,113, -122,236, 64,141,137,213,104,109, 81,202, 36, 63,255, 0,216,219, 89, 33, 53, 37, 13,109,123,117, 64,151, 78,157,112,255,238, 45, - 44,154,243,229, 21, 40, 53, 29,171,139,218,254,105,132, 4, 99,194, 58,245, 22, 40,213, 90,172, 95, 62, 7,163,167, 44, 70,243, -182, 61, 4, 15,238, 92, 27, 3, 96,129,177,121,214,232, 88,180,109,100, 3,141,206, 0,173,142,197,111,177, 60,254, 95,243, 4, -240,121, 12, 19, 80,191,164,121, 55, 95,165,171,250, 58,207, 39,169, 57,249, 5,117,191, 93,252, 57,175, 72,109, 64, 70,158, 26, -233,185, 26,100,228,171,145,153,167, 46, 49, 87,121, 26,100,230,169,193,231, 17, 68,199, 38,129,199, 35, 53,238,127,151, 91,164, - 69, 83, 47, 11, 0, 4, 76, 45,155, 67, 50,245, 54, 93,238, 70, 37,190,183,124,225, 44,225,157,216, 66,220,123,158, 95,106,172, - 24,136,202, 25, 44,214,136, 46, 88,182,126, 61, 91,124, 52,160, 87, 3, 83,185, 4, 73, 79, 10,192,103, 8,248, 60, 2, 83, 27, - 23,152, 73,138, 49,126,220,104, 88, 89,154,225, 69,102, 49,214, 30,140,194,189,200,167, 96, 85, 53,203,246,247, 59, 79,244,249, -104,112,127, 49, 35,144, 96,199,169, 88,136,132, 60,240,161, 65,228,181,139,234,180,196,231,218,130,252, 92, 57,159, 47, 48, 74, -148, 0, 84,111, 96, 65, 41,197,146,249, 51,176,103,235,247, 56,113, 51, 13, 20, 37, 83, 53,252,241,235, 74, 76,156,190, 8, 25, -249, 26, 0,228, 77, 70, 45, 30, 5,208,237,117, 35,244,186, 73, 42, 23,129,170,136, 27,229, 53,202,246,175,204,192,149,239,147, - 5,192,168, 72, 59,255,117,167, 88,246,222,166, 81,159, 80,137, 72,116,106,235,218, 25,210,179, 81,120,105,174, 84,133,153,216, -190,105, 67, 33, 5,219, 62,237,193,225,235,198, 30, 13, 83, 27, 31,119,177,194,244,242,212,249,171,116,214,246,117, 12,199,238, -228,231, 20, 20, 27,244, 21,100, 2,166,182,206,122, 43,183,166, 51,179,227,164,203, 95, 31,245, 86, 81,145,178,148,226,200,181, - 84,128, 45, 41,196,189, 23,147, 74,230,241,225, 17, 24,216,146,118,238,211,183,211, 95,110, 51,238,194, 10,252,114,234,118,102, -101,230,202,220,220, 28,230,230,230, 48, 49, 49,169,233, 5,187,194,200,149, 76, 38,179, 60,121,242,164,196,212,212, 20, 60, 30, - 15,106,181, 26, 29, 58,116,168, 85,205,147,219,121, 15,104,254, 94,223,165, 45,219,118,195,249,147,191,178, 87,142,109,233,171, - 76,175,193,252, 61, 0,186,180,110,116,100,249,202,245,245,166, 76,159, 37,150, 75,248,200, 41,212,130,199, 16,184,218, 74, 97, -101,194, 67,196,217, 35,197, 33, 94, 86, 70,155, 63, 23,231,186,219, 87,174,253,209,106,213,215,243, 59, 90, 88,212,179,203,201, -137,205, 7, 0,101,122,212,143, 38,246,222, 79,156,235,156,186,208,184,117, 31,216, 58,121,116,173,105,126,211,211,211,211,253, -253,253, 31,249,249,249, 5,245,237,219,151, 46, 89,178,196, 34, 49, 49,113,159,177,230, 10, 0,218,117,106, 49, 81, 46,208,133, - 88, 73, 25,191,250,246, 50,180,240, 47,105,253,236,223,173, 37,156, 93,234,224, 89,170, 50, 32, 75,197, 10,139,116,130,250, 63, -252,184,249,134,171, 37,127,164,190, 80, 21, 9,224,112,141,111,218, 40,189, 72,202, 74,205,149,132, 15, 19,169, 0, 44, 45,249, -204,248, 8, 22, 11,141,150,133, 82,163,135, 82,109, 40, 49, 91, 26, 3, 88,182,164,179, 50, 33, 4, 90,157,161, 44, 32, 91,147, - 4,194,212,194, 26,245,234,150,164,241,229, 75, 42, 0, 33,128,141,141, 13,172,172,170,159,119,148,101, 89,104,180,250,210,155, -174,225,229,160, 14,141, 86, 15, 74, 41,162,162,162,167,198,197,198,245,242,240,116,111,237,215, 40,192, 82, 42, 98, 0,160,184, -154, 96,210, 64, 0, 58, 74,233,203, 65, 17,117, 27,180, 44, 62,248,235, 1,121,247, 30, 61,114, 52,133, 25,251,203,237,204, 3, -208,185,212,140,169,106,120,158, 18,185,141, 87,111, 23,159, 22,139,135, 12, 27,237,213,182,125, 39,132,159, 61,141,223,126,221, -189,173, 40,253,201, 41, 99,117,188,189,189,255, 50,138,208,221,195,235, 47,163, 8,235,214,243,172,212, 96,153,153, 53, 50,109, - 20, 28,230, 18,159,169,197,241,227,199, 80,148,151,250,149, 70, 83,168,132,128,110, 60,243,235, 79, 35, 6,142,153,107,218, 60, - 56, 8,230, 10, 25,172, 45, 76,112,235,230, 21,124,189, 96,214, 21, 40, 53, 29, 51, 50, 34,141,234, 23, 75,252,252,132, 30,117, -234,126,238, 90,191, 1,110, 93,187,140,152,168, 7, 15,239,220,184,210,192,195,191, 25,108, 28, 93, 63, 39,126,126,203,104,100, -100,181, 43, 85, 80, 3, 77,252,120,212,164,210,123, 73,201,182,230,141,235,137,254, 90, 9, 9,244, 58,173, 97,199,134,175,211, -203,143, 34,172, 76,183,184, 32,119,255,165,107,247,191,236,217,169, 21, 41,107, 10, 44, 51, 85,175,191,247,112,146, 35,230,254, - 99, 86, 87,148,119,160,102,103, 38, 77, 27, 59,110,130,180, 36,237, 44,104,201,196,106,170,154,158,223,197, 6,225,160, 31,230, -207, 36,119,227,138,112,255,121,126, 73,179, 96,169,193, 18, 11,121, 16,149,254, 53,106,106, 50,134, 89,254, 81,191, 78,200,204, -211,128,165,180,116, 46, 61, 2, 62, 95,128,248,124, 32, 33,191, 16, 25,185,105,136,125, 30,135,188,212, 88, 48, 12, 15, 86, 78, - 30, 80,190, 48, 46,173, 5, 6, 19, 47, 29, 11,247,126,221, 91,241, 14, 69,164, 64, 42,230,163, 32, 51, 1,151, 79,238, 85, 81, -131,225, 71,141, 78,179,199,150,138, 30, 68,222,223,167, 53,242,210,145,145, 95,164,177, 19, 11,121,216,187,229, 91,124, 56,116, -236,203,104, 54, 0,124, 57,107, 33, 8, 33,200,201, 43, 4, 64, 50,170,139, 92,189,246, 62,163, 92,228,233, 47,239,203,153,162, -138,222,147,210,247,154, 74, 52, 52,175,153, 42,205,107,219, 53,175,233, 25, 53, 57,114,165, 17, 44, 1,195, 59,189,101,205, 76, -201,195,116, 49,174, 63, 78,197, 7,173,156,161,204,207,196,134,239, 86, 23, 22,235,180, 93, 50,238, 27,111,174, 0,192,192,160, -107,239,143, 39,223,119,117,115,215, 93,136, 44, 72,200, 83,234, 42, 45,176,230,125,166, 75,111, 29,253,118,128, 94,247,116,154, -169,147, 63,171,215,107, 87, 40,211,162, 22, 87,124, 17,167,162,185,107,247,150,152, 43,150,197,180,175,183,131,178,134,210, 9, -252, 12,160, 6, 22,159,125,245, 61,244,165,255, 27, 88, 3,136,206, 32,171, 54, 92, 46, 17,158,106, 88,184,218,236,117,115,213, -164, 73,147, 92,115,115,115, 88, 89, 89,193,194,194, 2,101,134,232, 77,155, 5, 61, 61, 61, 97, 98, 98,130,240,240,112,152,152, -152, 64, 46,175,221, 4,249, 38,118, 62, 31, 54,107,215,103,103,219, 30,195,153, 51, 7, 55, 24,174,133,255,254,129, 42,253,177, -209, 38,192, 96, 48, 16,157, 78,135, 78, 97,129,241,119,158,188, 56,177,112,254,252,206,193,237,222, 23,183,240,182,133, 74,163, - 71, 98, 66, 2, 34,206, 29, 46,182, 53, 19,156,240,170,103,157,104, 48, 24, 96, 48, 24,170,189,129,171,213,154, 44, 70, 32,177, -234, 63, 96,144,248,198,245,235, 59,229,118,222,187, 25, 30,123,151, 26,120,141, 0,250, 97,163,134,190,208,234, 89,168,148,249, -217,181,201,247,195,135, 15,111,172, 92,185,210, 91, 32, 16, 56,239,223,191, 63, 51, 39, 39,167, 70,203, 5,157, 62,122,125, 45, -223, 68, 23, 45,164,197, 3, 93,101, 69, 29, 19, 90,133, 96, 64,247,150,216,115,244, 50,206, 95,188,130,120,165,201,157, 34, 13, -239, 80, 98, 98,178,218,207, 34,239,215,222,161,110,188, 3,219,243, 15,216,182,157,214,143, 82,233,233,140,240,185, 69,198,223, -188,129,124,149,174, 92, 4,171,164,127, 19,195, 16,163, 35, 88, 4,136,189, 24,113,203, 63,208,203, 23,119,158,229, 35, 35, 71, - 13,165,166,164,222, 83, 80, 88,153, 10, 33, 22,242, 16,255, 60, 22, 44,213, 62,175,217,125, 6, 25, 93, 62, 24,205, 47,125,124, -225, 11, 4,124,208,210, 27,164, 84, 34, 42,180,181,181, 53,202, 96,233, 12, 6,244,237,212, 12,205,131, 27,161,215,152,149, 0, -128,179,219,166,193,194, 68,136,253,251,247,227,197,229,213, 59,234,183, 24,123,234,193,253,200,247, 31,222,142, 24,212, 37, 80, - 26, 96,207, 79, 17, 86, 17,214, 63, 76, 8, 17, 1,104, 75, 8,233, 0, 32,156, 82,170, 51,232,217, 23,157, 59,119, 98, 13, 6, - 54,185,220,185,102, 1, 32, 4, 64, 54,128, 91,148,210, 42, 67, 36,114, 91,159,246, 96,176, 27,132, 72, 76,164,178,248,144,246, - 3, 28,131,155, 55, 51,235,221,183, 31, 68, 66, 17,206,156, 62,137,117,171,151,237, 45, 76,121, 52,188, 70,205, 99, 70,118,104, -175,170,185, 40, 47,207,172, 40, 42,242, 78, 78,108,154,198,130,111,238, 9,129, 88, 49,154,152, 57,174,229,137, 77,230, 58, 53, - 31,106,122,246,242,117, 60,188, 19, 1, 71,107, 41, 98, 99,158, 42, 31,220,189,253,189,146, 8,230,211,140, 72,165,177,233,148, -101, 25,222,111, 62,164,179, 69,177,214,128, 75,231,142, 22,179,122,182,243,213, 11,199, 98, 92,188,130, 37,254,193,239, 89,100, - 30,222,216, 23,192,158,234,116,158, 95,219,241,151,174, 23,245,155,125,152,124,236,244, 69, 19,199, 58, 30, 60, 16, 6,106, 85, - 17, 50,226, 31,232,139,243,211,148,105,247, 15, 57, 26,147,190,120,125,210, 87,115,150,253, 56, 46,176,113, 3, 57,165,162, 87, - 34, 86,101,255,103, 21,104, 74,250,204, 22,229,226,217,253,203,197, 25, 79,243,102, 84,125,173,211,201,178,178,178, 95, 14,205, -151, 22,154,215,205, 51,203, 19,151,157, 96,224, 1,102,121,230, 47, 35, 21, 89, 89,217, 34,131, 65, 39, 51,230,244, 52, 87, 72, -112,255,121,242,203, 14,237, 98, 33, 83,218,247,234,207, 72,150,145,231,121, 32, 95, 36, 71, 82, 86, 49, 24, 74,193,178,122,232, -117, 26, 20,230,231, 35, 57, 41, 21,105,105,233, 40, 44,200,131,212,196, 28,254, 1, 65, 80, 40, 20,120,116,243, 60, 0,114,196, - 40, 51,200, 10, 61,131,131,130, 4, 15,227, 10,160,213,177, 16, 64,139, 75, 39,126, 41,214,235, 52, 61,210,238, 31, 58, 87,211, -235,176,158,165,103, 30, 60,137,111,224, 98,237, 64,110, 63,203,197,246,159,214,151,140, 38,213,151, 68, 51, 31,190, 40, 66,114, - 86, 17,146, 18,226, 41, 88,195,153, 26,202,223,168,230,125,109,120, 27, 26, 53, 55, 88,122,189, 94, 82,199,181, 46, 6,140, 30, -130,239,191,255, 1, 81,207,226,241,211,119,107, 74,204,213,189,131,127, 24,105, 40, 94,174,182, 93,148,246,120,205,176, 31, 99, -211, 78, 62, 84, 50,106,109,213,195, 39,132, 22,142, 8,249,104,233,203,131,191,243,179,122,123, 43,210, 4, 0, 30, 67, 52,165, -205,130, 32,132,160,172, 89,240,251, 5, 35, 33, 19,243, 64, 8,129, 82,173,199, 71, 95,172,194,182, 85, 37, 79, 86,159,140,155, -172,172, 44,157,229,140, 16, 25,214,185, 94,207, 69,155, 34, 15, 95,142,179,122,214,173, 91,155,188,128,128,128, 92,169, 84, 10, -185, 92, 14, 83, 83, 83,152,154,154,194,220,220,188,218,188,151,190,183,171,174,207, 21,195, 48, 48, 53, 53,133, 84, 42,173,208, -184, 85,183,122,185,137,189, 87,191,166,109,251,236,110,215,115, 4,115,230,224, 79,236,205,240, 35,253, 84,233, 79, 14, 25, 91, - 70,165, 81,135,187,125,251,246,109, 56,122,244,104,225,204,113,125, 79,158, 12,191, 21,245,235,233, 3, 61,178,115, 11, 92, 12, - 6, 3,228, 82,113, 66,176,135,197, 17, 63,119,219,248, 7, 15, 30,176,225,225,225,106, 0,247,171, 75,103,102,102,250,150,179, -103,207,125,221,186, 77, 24,126,218,186,187, 91,100,228,163,110, 49, 79,163,225,226, 90, 31,110,245, 61,161, 36,230, 56,123,225, - 18, 10,178,211,182, 24,147,206,242, 52,108,216,208,169,113,227,198,206,185,185,185,197, 95,125,245,149,183,193, 96,248,205,223, -223, 63,168, 65,131, 6, 41, 15, 31, 62, 76, 52, 38,239, 17,219,135,100, 0,216, 94, 55,108,216,190,100,109,238,231, 0,150,185, -212,169,131,243, 23,175,224,234, 31,215,126,200,148,213,153, 63,108,208,199, 35,235, 90, 9, 70,246,106, 81,151,103,107, 33,195, -174,159, 86,242, 14, 71,196,173,142,203,210,253, 12, 96,145, 49,101, 84, 70,118,129, 22,161,126, 86,208,235, 41, 12,148,130, 33, - 4, 10, 41,191, 66,131, 85,145, 38, 95, 35, 30, 62,118,204,232, 24,255, 70, 1, 19, 7, 13, 29, 45, 12,112,175,131,235,209, 57, - 0, 8,172, 76,101, 72, 78, 78,193,165,223,126,214,231, 36, 61,254,129,199, 99, 23,212,228,120, 38,222,218,227, 81,246,191,131, -131,195,168, 59, 15, 30, 32, 60, 60, 28, 86, 86, 86, 40, 51, 87, 21, 53, 17,190,174,153,147, 83,240,199,194,149, 63,135,142, 28, -220, 11,221,195, 26,224,194,141, 24,104,116, 44,180,122,246,101, 39,215,216, 43, 63,138, 62,239, 95, 95, 51,174,175, 87,190, 82, - 39,138,155, 27,151,127,161,252, 36,178,175,107, 82, 74, 53,132,144,147, 0,154, 1,232, 69, 8, 57, 69, 41, 13, 42, 31,121, 2, -208, 16, 64, 3, 0, 87, 40,165,177, 70,229,157,193,174, 91, 55,110, 90,105,245, 44, 46, 93,187,235,219, 46, 52, 0,148,165,184, -113,227, 38, 54,110,222, 88,124,255,222,157, 21, 69,105,246, 11, 42,155,220,182,178,227,105,236, 40,194,138,182,149,105, 82, 26, -174, 55,177,243,249, 33,226,242,133, 89, 98,199, 32,248,116,157,217, 51,233,238,111, 61,237,253, 58,193,218, 61, 20,201,119, 15, -225,246, 31,187,142,221,212,235,167, 75, 88, 38,190, 40,227,113,145,177,231,123, 25, 98,137,108,124,131, 38,109,144,240, 34, 14, -207,163, 31,108, 83,101, 69, 39,155,216,251,108, 75, 74,140, 31,227,230, 23,138,203, 39,247, 76,168,204, 96, 85, 87,231,173, 69, -121, 63,132, 95,142, 24,144,180,239, 55,187,130, 66,149,148,207,103,148, 98, 30,210,132,202,152, 95,140, 77, 39,141,140,212,218, -186,183,232, 59,104,244,236,163,171,191,254, 74, 96,107, 46, 70,106, 78, 49,242,149, 58,228,171,116,224, 17,192,195,209, 4,170, -162,124, 92, 61,182, 93, 71,181,217,125, 75,251,163, 86,168,105,211,160,215, 34, 66,240,217,236,217, 51,192, 19,153, 58,214,123, -111,166,150,169,103, 15, 11,188, 54,153,185, 37, 80,239,189,153, 80, 23,164,245,152, 61,123,134, 55,165,244, 61,155, 6,189, 10, -202,214, 34,172, 44,239, 89, 5, 90, 12,110,235, 2,141,174,100,254, 48,131,161,164,175, 29, 91, 58,171, 57,170,136, 43,151,215, -164,128,112,239,209, 43, 72, 74,203,129, 74,173,131, 70,171,135, 70,111, 0,195,240, 96, 97, 97, 1,143,122, 77, 96,110,102,138, -244,204, 44,220,184,114, 25, 87,163,238,196, 82, 96, 81,166,101,222, 78, 99,202,136,240,229, 30,118,182,214, 36,173, 64, 3,137, -152,135,171,225, 23,116, 0,182, 24, 99,174, 42,210,204, 83,230,174,154,190,112,237,192,239, 87,206,181,111,228,102,138,132,204, - 98, 36,102,168, 80, 80,172, 7, 64,161, 55, 80,104,138,243,240,228,198,137, 84, 61,148,171,240,142, 83,121, 4, 75, 32, 80,223, -184, 23, 37,158, 62,239, 27, 60,122, 26,139,141, 63,172, 47, 82,215,192, 92, 85,196,150, 49,245,126,249, 59, 50, 81, 81,179, 32, - 75, 41,142, 92, 77,125,185,236, 71, 89, 83,225,173,167,185,213, 85, 26,193, 55,227, 3,166,150, 25,161,117, 7,147,174,138,197, -153,236,139, 23, 47,114,118,238,220,249,210,244,240,120, 60,148,141, 30,212,104, 52,213,142, 42,178, 48, 21, 53, 24,210,165,110, -255,202,204, 21,143,199, 3,203,178, 47,163, 87, 53,109,122,148,219,122,119,104,218,174,207,158,118,189, 62, 97,206, 30,250,153, -189, 25,254,219, 7,133,233, 79, 14,214,244, 88,230,228,228, 60, 36,132, 68,175, 88,177, 34, 96,227,198,141,245,166, 76,153,242, -236,231,165, 99,214, 1,192,201,147, 39, 1, 0, 49, 49, 49,116,253,250,125,106,173, 86, 27, 91, 88, 88,120,203,152, 69,174,149, -105, 79, 86,108,249,126,185,119, 66, 82,202, 80,247, 6,205, 96,237,214, 20,246,238,205,144, 93,168,197,181,167, 73,120, 22,121, - 22,143, 34,246,255,162,202,176, 91, 82,147,244, 6, 4, 4,212, 17, 8, 4, 61, 40,165, 94,114,185,220,141, 82, 42,226,243,249, -253, 8, 33,209,122,189, 62,210,207,207,239,108,100,100,164,209,107,134,197,133,111, 81,215, 13, 27,182, 54, 94, 41, 15,123,150, -170,108, 18,175,148,223, 86,138,205, 38,165,159, 93,163,182,235,184, 98, 53,116, 89, 15,247,111,203,251,117,215, 79, 43,121,131, - 71, 77, 54, 60,200, 54,253,156,111, 34, 61,189,108,152,209, 35,247,193, 16,146, 50,101,202,151,127, 78,211, 64, 74, 26, 6, 75, -167,108, 72, 54, 70,163,116, 61,197,105, 82,199, 6,223, 62,152, 56,102, 97,195,224,208, 33,109, 58,247,103, 76,132,114,156, 62, -248, 35,141,189,119,126, 31,159, 26,102, 41,211, 99, 98,223,244,252,210,104, 52,175, 24, 43, 99,162, 87, 0,144, 97,149, 23,118, -244, 84,248,208,223, 79, 92, 88,218,165, 67, 75,171,239,190,250, 16,203, 55, 28,134,137, 76, 12,202, 26,208,191, 93,157, 15, 30, -237,238,212,195,197, 78,226,116,224,124,226,197,207, 86, 63,152,166, 84,106,163,170, 91,247,174,116,126,161,171,132, 16, 15, 0, - 61, 8, 33, 44, 0, 57,128, 34, 0,133,165, 13, 18,135, 40,165, 69, 53,201,167, 86,207,226,121, 90, 49, 14,255,186, 31,119,175, -157,197,163, 71, 79, 10, 30, 69, 62, 90, 79,248,116,117, 97,106, 84,173, 34,171,134, 10, 71, 12,162,226,145,133, 85, 80,196,147, - 46,185,253,251, 55, 97,158,237, 38,132, 88,185,135,194,194,181,196, 83,230, 37, 62, 64,194,141,253,135, 11,146,133,253, 40,125, -160,171,109, 25, 59,186,212,243,100,121, 34, 68,132, 31, 3,101,217, 31, 0,128,178,236, 15,119, 46, 31, 27,211,172,203, 8, 88, -218,186, 54, 46, 27,218, 85, 83,109, 41, 95,159,119,116,235,146,125,207,159, 63,199,227,199,143,241,244,233, 83,100,103,103, 99, -215,174, 75,121, 53,234, 10, 16, 19,113,218,206,171,117,167,129,195, 38, 30,233,243,126, 31, 73, 29, 55,119,198,219,217, 20, 86, - 10, 62,158,196, 36, 33,230, 65, 52,251,244,222,197, 98,170, 74,239,157,254,244,143, 74,163, 35, 54,126,253,236, 24, 30,153,126, -246,183,146,181, 5,219,247, 26,238, 61,245,179, 41,205, 45,173, 44, 42,188,142,103,103,229,136,230,205,155,227, 93,182,127,117, -107, 17, 50, 60, 94,193,168, 49,227,229, 12, 97, 94, 54, 3,210,178, 54, 50,250,178, 14, 3, 4, 16, 10,248,213,214,209,161,125, - 90, 66,207,178, 40, 84,105, 81,168,212, 34,183,176, 24,169,153,185,120, 24, 25,131,235,151,142,227,121,204,211, 2,189, 94,127, - 30, 20,191,102, 88,229,253,242,250,196,186, 85, 70, 88,193,171, 99,105,161,192,243,156, 98, 72,133,124, 36,191,120,170,215,234, -139,107, 61,201,122,230,157,223, 82,236,252,123,117, 28, 54,110,230,137,214,173, 91,153, 54,106, 18, 36,183, 54, 85, 64,200, 39, -136,121,145,134,251,183,111, 20,197, 71,221,201, 55,232, 84,157, 51, 31,252,150,242, 63,107,176,180, 6,125,251,201, 51,151,157, - 50, 24, 12, 82, 62,143,167,210, 81,182,243,155,152,171,191, 11, 74,217,196,113,159,127,249,202, 3,129,206,192, 74, 63, 25, 55, - 69, 85,254, 1,129,232, 12,178,178,200, 85, 53, 35,245,120, 25,185,234,130, 25,223,223,221,246,245,182,200,253, 0, 34,223,116, -100, 31, 0,228,228,107,238, 90,117,216,219,171, 64,169, 39, 0, 30, 85,160, 89,212,174, 93,187,151,102,171,180,185,206,232, 27, -132, 72, 34, 27,211,182,199,112,230,236,225,141,236,141,243,135,251,213,198, 92,149,187,129,105, 1, 92, 35,132, 60,152, 53,107, - 86,176,157,157,157,221,156, 57,115, 36, 73, 73, 73,130, 19, 39, 78, 20,231,229,229,165, 42,149,202, 43,148, 26,223, 63,161,244, -166, 57, 76,106,231,251, 35,217,191,169,163,133,173, 83, 39,115,107, 23,175,156,140,196,152,252,172,196, 19,132,197,233,130,244, - 39, 87,106,154,214, 59,119,238,188,104,216,176,225, 33, 30,143,231,108, 48, 24,172, 9, 33, 38,148,210, 28,189, 94,159,195,178, -108, 74, 77,204, 85,121,147,213,250,211,205,187,179, 84,172, 72, 75, 36,187,227,194,183,168, 1, 32,237,212, 20, 37,128,223,236, -218, 78,235,115, 56,226,249,250,135, 57,166,227,211,195,191, 62, 82, 83,253,164,219,191,120,188,173,250,175, 74,126,152, 8, 96, -168,220,206,123,229,131,219, 87,230, 18, 10,129, 1,250, 69,202,180,232,155,111, 67, 95, 32, 16, 20, 7, 5, 5, 85, 56, 90, 80, - 44, 22, 87, 57,191, 86,233,133,126, 35, 9, 11,219,122,226,236,165,161,199, 79, 95, 94,218, 60,164,165,149, 68,236, 8, 87, 11, - 45,182,126, 25, 56,225,236,237,140,235, 61,191,188,248,253,179,228,226,123,148,210,226, 26,214,211,167,132,144, 60, 0,189, 40, -165, 63, 17, 66, 70, 1,120, 4,224, 65,141,141, 0,139, 65, 33, 33, 77,119, 17, 66,248, 84,207, 46,191, 34,224,237, 46, 78,121, -148, 88, 27, 67, 81,158, 70,110,166, 24, 53,102,140,103,125,247, 63, 71, 17, 54,168,171,192,224,161, 35, 61, 93,235,121,190,220, -230,237, 82,245, 3, 21, 77,190,165, 34,118, 13, 59, 60, 57,181,226, 43,171,152, 63,198, 73, 45,157, 77,138, 50,227,178,115,226, -110,174, 80,166,219,173,168,190,175,106, 53, 77,123, 79, 31,174,222,180,114,218,148,148,164,152,141, 69,233, 81, 37,173, 14,233, - 81, 15,100,118, 94, 95,101,166, 38, 78,201, 74,127,182,162,182,199,162,168,168, 40,121,231,206,157,230,161,161,161,140,157,157, - 29, 50, 50, 50,112,254,252,121,150,101,217,164,154,106,165, 69, 93, 60, 79,220,221, 45,119,111,205, 91,206,151, 42,186,234, 13, -112,164,148,130,207,144, 20,173, 58,239, 68,134,185,234, 75,122,239, 74,213,245,146, 53, 16,202, 80,166,108,109, 65,150,101,201, - 55,223,110,143,227, 9, 68, 21, 54,169, 26,116, 26, 25,203,178, 70,175, 69,152,198,139,183,242,215,249, 84, 63,138,143, 2, 15, -200,227,106, 30, 78,233,201, 22, 93, 62,234,164,215, 27,116, 40,233,159, 88,246, 74,167,148,156, 3, 49,156,202,180, 44,184, 82, - 19, 83,245,202,125, 94,171, 53, 7, 35,132, 66,166, 3, 3,130,252,188, 60,177,141, 65,244,232, 77,234, 82,218,131,195, 15, 73, - 88,152,171,230,204,185,143, 47, 92,250,163, 31,101, 89, 55, 3, 5, 64,201,115,141,182,120, 95,186,105,230,182,218,166,247,191, - 6,121,195,235, 71,141, 67,136,255, 5, 77, 66,136, 16,128, 53, 0, 67,249,229,111,222, 70, 58,171, 90, 91,240, 77,242,174,112, -240,109, 41,150,200,190, 84, 42, 11, 54, 42,211,162,142,188,205,227, 73, 8, 49, 19,139,197, 77,132, 66,161,160,160,160,224, 26, -165, 52,239, 93, 44,247,242,180, 26,190,197,186, 93,167, 22, 19, 79, 31,189,190,182,180,249,240, 37,206,253, 86, 75, 6,119,109, - 61,105,251,175,191,175,126,125, 20,225,187,144,247,191, 75,147,132,133,241,109,115, 76,135, 26, 12,236,162,118,158, 5,202,212, -216, 39, 99, 47,221,207,184, 70, 41, 45,120,195,250, 57,176, 44,130, 69, 41,221,253,111,201,187,173,127,239, 5, 32,240, 53, 90, -132,226, 81,250,131, 67,115,170,189,134,248,249, 9,101, 25,176, 80,102, 90,103,213,212, 88,253, 35,229, 78, 8,175, 97,195,134, -173,132, 66, 97, 29,131,193, 32,211,104, 52, 74,149, 74,245, 60, 46, 46, 46,162,178, 5,201,255,238,116,218, 53,236,189, 90, 32, - 16,124, 14, 0, 58,157,110,109,218,253, 67, 95, 84,245,221,202,246,255,127,185, 31,245,235,199,163,251,246, 25,254,142, 50,114, -106,242, 65,174, 78,167, 55, 43,123, 47, 20,240,243, 18,111,239, 55,255,167,234, 18,103,176,254, 7,111, 12,156, 38,167,201,105, -190, 93,205,170, 23,235,230,142, 39,167,249,247,107, 58,250,245,112, 1,128,228,200, 35, 70,141, 54,174,104,127,238,120,254, 31, -123,231, 29, 30, 69,213,182,241,251,204,214,108,122, 79,118, 83, 32,141, 16, 66, 40, 9,161, 35, 32, 32, 29, 4, 65, 84, 4,177, -160,116, 4,165,136,136, 8, 8,175, 40, 2,162,136,162,136,162, 72, 71,122, 15,130,212,132, 14, 33,144,158,236, 38,155, 94,183, -207,204,249,254, 72,121, 3,166,108, 2,150,143,119,126,215,149, 43,187,179,179,247,158,115,166,156,123,158,211, 4,131, 85, 31, - 98,161, 8, 4, 4, 4,254,110,172, 49, 87, 2, 2,127, 37,214, 26,171,166,238, 47, 32, 64,240,208, 82, 43, 53,110,128, 86, 59, - 83, 66, 72, 68, 19,110,176, 55, 5, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,223,210,108, 72,251, 73,137,140, 9, 77,132, -130,166,160, 41,104, 10,154,130,166,160, 41,104,254,227,154, 79, 26,140, 80, 4,117,158, 60, 94,132, 16,175,199,189,175,192, 99, - 59, 62, 62,132, 16,159, 70,238,175,252,171,207, 5, 1, 1, 1, 1, 1, 1,224, 31,232,131, 85, 85, 81, 53, 52, 58,207,218,253, - 30,247,119, 43,191,191,156, 16,204,169,124,253, 9,165,116,254, 35,238,219,224,252,220,161,161,161,118, 10,133, 98, 20,199,113, - 65, 60,207,131, 16,146, 72, 8,217,126,227,198, 13, 61,170,103, 79,169, 31,127,127,255, 0, 27, 27,155, 87, 8, 33,173, 42,243, -127,199, 96, 48,252,144,158,158,158,242, 24,142, 27, 1, 48, 81, 46,151, 63,239,236,236, 28, 82, 88, 88,120,223,100, 50,109, 7, -176,161, 41,195,183, 85, 42, 85, 40,128,241, 60,207,139, 25,134,249, 69,163,209, 92,251, 43,142, 79,229, 62,171, 8, 48, 19, 4, -212,154,253, 31,229,183, 30,243, 3,140,208, 79, 73, 64, 64, 64,224,127,193, 96,169, 84,170, 73, 0, 62,172,172,240, 23,107, 52, -154,245,127,133,113,121,148, 74,237,161,239,126, 78, 41,125,167,241,209, 10,204,225,121,202, 0, 0,195,144,185, 94, 94, 94,174, - 98,177,248, 79,115, 62,177, 44,171, 32, 4,175,243,124,197,122, 73, 12, 67,230, 16, 66,214, 52,214,216,133,134,134,218, 57, 58, - 58,190,191,126,253,122,199, 86,173, 90, 17, 0,136,139,139,115,158, 54,109, 90,139, 54,109,218, 44,185,113,227, 70,131, 75, 94, - 4, 5, 5, 61,219, 62, 50,122,250,219,239,206,245,242,116,115,119, 96, 57,214,172, 86,103,169, 86,127,254,159,206, 65, 65, 65, - 95, 37, 37, 37,237,177, 50,255, 4,192, 68,177, 88,252,188,141,141, 77,176,193, 96, 72,100, 89,118,135, 72, 36,234,191,116,233, -210,136,193,131, 7,219, 20, 23, 23,203, 88,150, 13,217,178,101,203,172,239,191,255,126, 32, 33,100,120,125,157,150,171, 34, 77, -148,210,154,243,222,188,120,241,226,197, 62, 98,177,152,116,236,216, 81, 65, 8,153, 86, 99,246,238,218,246,175,243,248, 16, 66, -214, 82, 74,179,253,252,252, 58,112, 28, 55, 14, 0, 68, 34,209,143, 25, 25, 25,177,132, 16,111, 27,185,124,166,222, 96, 32, 0, - 72, 99,142, 81,109,191,101,111,111,255, 99, 89, 89,217,221,199, 97,228, 5, 4, 4, 4, 4, 4,131, 85,197,210,196,196, 68, 23, - 74, 41, 66, 66, 66,150, 0,176,218, 96,213, 86, 89,245,233,211, 39, 82,161, 80, 60, 48, 39,148, 94,175,151, 17,130, 62, 77, 49, - 45, 85,191, 97, 50, 25, 25,137, 68, 6,145,136,153,221,174, 93,187, 14,121,121,121, 39, 56,142,251, 58, 59, 59,187,209,171,171, - 19, 66,240,221,119,223,181,242,242,242,250,211,132,112, 90,173, 86, 58,116,232,144, 71, 62, 8, 10,133, 98,212,215, 95,127,237, - 24, 22, 22, 70,116, 58, 29, 44, 22, 11,252,253,253,153,247,223,127,223,105,217,178,101,163, 1,108,170,239,251,126,126,126,129, - 81,209,157,166,255,176,105, 83,167,226,130, 2,195,198, 85,235,175, 24,197,114, 93,179, 86,161,210,133,139,150, 58,125,244,193, -252, 55,253,252,252,110,102,100,100, 36, 55,144, 87, 6,192,238,153, 51,103,182, 30, 50,100,136,172,180,180,212, 70,167,211, 53, -223,178,101,203,251,209,209,209,246,145,145,145,178,173, 91,183,146,162,162, 34, 80, 74,109,195,194,194,232,232,209,163, 13,219, -182,109,155, 10, 96,109, 99,204, 50,199,113,146,170,192, 23,203,178,178,202,115,209,220,132,232, 20,113,115,115,123, 5,192,114, -150,101, 95, 63,117,234, 84, 36, 0,244,238,221, 91, 10, 32,214,209,209,177,155,217,100, 34,143,227, 98, 25, 60,120, 8, 0,124, -163, 84, 42,127,207,205,205,245, 37, 4, 99,155, 24,217, 18, 16, 16, 16, 16, 16, 12,214, 3,216, 0, 64, 76, 76, 12, 0, 40,154, -240,123,164,166,113,153, 49, 99, 6,148,202, 7,187,197,100,101,101, 33, 38,230,212,163,228,233,129,202,116,217,178,101, 78,249, -249,249,195,190,251,238,187,254,222,222,222,239,103,103,103,199,212,247,101, 74,169,150, 16,242, 73,101,100, 4, 50,153, 60,229, -205, 55,223,140,173,252, 44,104,223,190,125,182, 67,135, 14,213, 17, 66,146, 0, 64, 38,147,123,138, 68, 76, 0,173, 88, 99,234, -147,166, 68, 51,204,102,115,112, 88, 88, 24, 41, 43, 43,131,201,100, 66,106,106, 42,114,115,115,225,225,225, 65, 88,150, 13,110, -232,251,182,182,182,175,205,124,251, 29,143,226,130, 66,189,165,180,212,108,207,115,172,163,141,132,148,228,230, 23,165,100, 56, -234, 94,155, 52, 93,252,193,188, 89,175, 1,120,175, 1,169,169,111,191,253,118,171,142, 29, 59,250,252,250,235,175,164,184,184, - 24, 98,177,216,190,125,251,246,232,208,161, 3,119,226,196, 9, 18, 24, 24,136,136,136, 8,156, 61,123, 22,127,252,241, 7,137, -140,140,180,221,189,123,247,203,181, 25,172,135, 77,181, 72,196,204, 27, 51,102,204, 64, 91, 91, 91, 75,175, 94,189,240,198, 27, -111,160,188,188, 28,173, 90,181,106,219,171, 87,175,243, 35, 71,142,148, 48, 12,137,224,184,138, 96, 88,109,230,250,161,227, 67, - 94,121,101,130,214,222,222,126,164, 74,165,186, 75, 8, 17, 75,165,210,170,223, 22,121,121,121,121,180,109,219,118,146,171,171, -107,142,136, 97, 60,105,197, 34, 43, 86, 31,163,170,223, 26, 58,116,200, 92,128,224,233,167,159,206,159, 62,125, 58,119,231,206, -157, 94, 35, 71,142,232,124,239,222,253, 71,138, 92, 10, 8, 8, 8, 8, 8, 6,171,138,248, 51,103,206, 68,230,229,229, 1, 64, -188, 21, 21, 84,205, 69, 90,181, 34,145,232, 43,134, 33,147, 9, 33,136,136,104,147,188,122,245,234,218,102, 52, 55, 69, 68,180, - 73, 22,137,152, 64, 74, 41, 8, 97,214,243, 60,167,173, 77,179,174, 10, 81, 38,147,207, 1, 0,165, 82,165,221,191,127,191,101, -212,168, 81, 88,185,114,165,108,222,188,121, 75, 85, 42,213, 24,141, 70,147, 89, 87, 58, 43,223,207,247,242,242,114,253,238,187, -239, 90,189,249,230,155,177,106,181,122, 38, 0,248,248,248,172, 6,208,134, 16,146, 84, 99, 27, 54,108,216,208,225,181,215, 94, -187,163,213,106,231, 91,147,206,154, 4, 7, 7, 7, 12, 29, 58, 84, 14, 0, 22,139, 5, 25, 25, 25,200,200,200, 64,126,126, 62, - 44, 22, 11,234, 75,103, 13, 35, 19,230,226,236, 98,183,241,179,245,177, 30,114, 17,113,247, 83, 17,169,163,179,152,177,119,144, - 83,145, 72,223,204, 79,229, 64, 8, 9,107,232, 24, 73,165,210,151,251,247,239,111,187,117,235, 86, 18, 17, 17, 1,103,103,103, -252,254,251,239,184,122,245, 42, 10, 11, 11, 25,150,101, 17, 29, 29,141, 79, 62,249, 4,126,126,126, 40, 46, 46, 70,106,106,170, -187, 84, 42,245,168, 39,157, 15, 24,222, 57,115,230,192,211,211, 19, 28,199, 33, 43, 43, 11,101,101,101,176,179,179,131,147,147, - 19, 52, 26, 13,246,238,221, 99,205,185, 52, 95, 46,151,127,215,172, 89,179, 85,211,167, 79, 87,186,185,185,193,104, 52,190,159, -159,159,143, 57,115,230, 0, 0, 58,118,236,216,150, 82,122,232,181,215, 94, 67, 64, 64,128,186,160,160, 32, 61, 46, 46,238,141, -242,242,242,155,141, 57, 70, 62, 62, 62, 71,115,114,114,123,244,238,221, 27, 69, 69, 69,230, 69,139, 22,161,125,251,246,104,209, - 34,180,193,116, 62, 46, 4, 77, 65, 83,208, 20, 52,255, 23, 52,159, 72,131, 85,185,134, 39,121,248,117, 45, 36,217,219,219, 71, -234,116, 58, 0, 72,106,236,143,113, 28, 55,213,221,221, 61,103,254,252,249,221, 67, 67, 67, 77, 83,167, 78,189,153,146,146,178, -160,230, 62, 1, 1, 1,203,214,173, 91,135,132,132,132,212,229,203,151,159,205,203,203, 91,210,200,131, 62,143, 16,178, 26, 0, - 52, 26, 77,222,190,125,251, 58,158, 62,125,122,222,234,213,171,149, 83,167, 78,149, 77,159, 62,125,146, 21,145, 28,136,197, 98, -125,109,205,130,181,225,229,229,101,174,173,143, 86,125,244,234,213, 75,148,158,158,222, 74,161, 80,188, 48,107,214, 44,133,217, -108,134, 70,163, 65, 70, 70, 6,138,138,138,192, 48, 12, 18, 18, 18,120, 66,200, 93, 43,228,202, 76, 22,139,209,206, 79,101, 25, - 58,188,127,155, 27,151,174, 38, 40, 92, 93,153, 54,209,237,195,227,239,167,198, 17,192,132,138,191,122,113,114,114, 10,205,203, -203, 67, 73, 73, 9, 60, 60, 60,176,102,205, 26,120,121,121, 65,167,211,225,214,173, 91,212,215,215,151,156, 57,115, 6, 42,149, - 10,185,185,185, 48,153, 76,208,233,116, 57, 38,147, 73, 95,151,225, 21,139,197, 27, 25,134,188, 65, 8, 65, 72, 72, 11,237,218, -181,107, 45,148, 82,132,133,133, 97,196,136, 17,248,253,247,223,113,235,214, 45, 80, 74,193,243,188, 37, 32, 32, 80,203, 48,196, -179,226,235,117, 71,155,140, 70, 99,146,151,151,215,235,179,103,207,222,242,245,215, 95,187,188,247,222,123,160,148,130,227, 56, -112, 28, 7,158,231,193,243, 60, 40,165,216,189,123, 55, 18, 19, 19,151,213, 52, 87, 13,225,235,235,107,195,113,220, 91, 45, 91, -182, 28,242,226,139, 47,154,165, 82, 41,116, 58, 93, 85, 89,152, 7, 12, 24,144, 63,116,232, 16,183, 3, 7, 14,208,166, 70, 46, - 5, 4, 4, 4, 4, 30, 8, 22, 88,235, 69,254,127, 69,176,254,174,204,136, 68,162, 13, 71,143, 30,109,255,212, 83, 79,137,251, -244,233, 19,225,235,235, 27,145,153,153,121,179,178, 82,139, 24, 48, 96, 64,132,167,167, 39,214,172, 89,163, 19,137, 68, 27,154, -232,172,107, 86,118,231,125,124,124, 22,238,218,181,235,187, 55,223,124, 19, 94, 94, 94,237,255,169,194, 94,188,120, 49,249,226, -139, 47, 86, 41, 20,138,145, 50,153,204,209,195,195,163,120,224,192,129,247, 29, 28, 28,146, 83, 82, 82, 64, 41,133,171,171, 43, -202,202,202,144,144,144,192, 31, 61,122,180,200,222,222,126,103, 67,186,102,179,249,114,122, 90, 90,104,183, 30,221,148,191,199, -222,190, 50,242,217, 33,189, 25, 49,195,164,164,101, 93,246,112,115,181,251,227,220,217, 18,179,217,124,185, 33,157,242,242,242, - 20,150,101, 93, 41,165, 30, 49, 49, 49,112,119,119, 71, 97, 97, 33, 44, 22, 11,204,102,179, 73,167,211,217,196,199,199,195,104, - 52,194,104, 52,194,209,209, 17, 55,110,220,208,178, 44,123,178, 46, 77,150,101, 39, 18, 66, 62,162,148,226,238,221,187,106, 0, - 80,169, 84, 45,156,157,157,127,102, 89, 22, 26,141, 6, 49, 49, 49, 99, 53, 26, 77, 66,141,115,177,206, 78,238, 53,209,106,181, -185, 62, 62, 62, 83, 39, 78,156,248, 81,203,150, 45,131, 42,251, 6,162,127,255,254, 56,120,240, 32,238,221,187,135,242,242,114, -238,194,133, 11,191,104, 52, 26,171,215,103,244,244,244,140,176,179,179,155, 63,109,218, 52,175,214,173, 91,195, 96,168, 88, 59, -214,222,222, 30, 58,157, 14,142,142,142,232,218,181,235,157, 37, 75,150,152, 41,197, 43,148,210,108,225,214, 40, 32, 32, 32,240, -120, 77,214, 19, 17,193,170,172,204, 8, 33,132,254,213, 63,168,213,106,115,125,125,125, 15,199,197,197, 13,121,254,249,231, 17, - 19, 19,243, 10,128, 89, 0, 32,151,203, 95,121,254,249,231, 17, 23, 23,135,248,248,248,195, 90,173, 54,247, 49, 29, 48,157,201, - 84, 17,192,177,177,177,105, 84,223, 49, 74,105, 80,101,211, 32, 40,165, 65,117,109,179,198, 92,173, 91,183,238,222,204,153, 51, -155, 77,155, 54, 77,236,232,232,136,162,162, 34,251,205,155, 55,123,142, 31, 63, 94,181,100,201,146, 51,217,217,217,216,180,105, -147, 62, 62, 62,222, 32, 18,137,226,101, 50,217,238,243,231,207, 27, 27,210, 54, 24, 12,223, 45, 91,178,176,247, 79, 91,182,133, -181, 12, 11,113, 57,120,244,212, 21, 55, 55, 71, 69, 64, 64,144,188,184,168,200,184,110,245, 74,113,121,121,249,247, 13,233,232, -245,250,221, 39, 78,156,120,214,207,207,207,227,230,205,155, 48,153, 76,224, 56, 14,125,251,246, 5,165, 84, 14,128, 23,139,197, -184,115,231, 14,204,102,115,206,189,123,247,212,137,137,137,114, 0, 43, 26, 40,195, 7,140, 18,195, 48, 99,134, 12, 25, 2,150, -101,209,191,127,127,236,217,179,231,121, 0,139,235,218,191, 62,212,106,245,125, 0, 99,194,195,195,165, 69, 69, 69, 29,250,245, -235,183,166, 95,191,126,184,114,229, 10,206,158, 61,251,130, 92, 46,207, 49,155,205,172, 82,169,156, 72, 8,113, 52,155,205, 63, -231,229,229,101,213,165,167, 84, 42,187,135,134,134, 46,254,244,211, 79,136,151,151, 18, 28,199,194, 98, 49, 35, 55, 55, 31,165, -165,165, 8, 15, 15,135,191,191, 63, 86,172, 88, 1, 0,123, 4,115, 37, 32, 32, 32,240,248,248,187,188,200,223,106,176, 26,202, - 88,104,104,168, 24,128,183,201,100, 2,203,178, 0,160, 82, 42,149,210,172,172, 44,115, 99,127, 84,167,211,109,219,178,101,203, - 51,171, 86,173,146, 14, 26, 52, 40,216,215,215,183, 35, 0,140, 28, 57, 50,216,193,193, 1, 91,182,108, 49,235,116,186,109,143, - 43,147, 60,207,247,143,142,142, 70, 65, 65, 1, 82, 83, 83, 99, 27,243,221,125,251,246,217, 2,104,211,208,182,134,248,226,139, - 47,214,204,156, 57,179,217,252,249,243,197, 6,131, 1, 37, 37, 37,144, 72, 36,152, 48, 97,130,180,180,180, 52, 96,245,234,213, -154, 11, 23, 46,196,154, 76,166,141,137,137,137,141,154,183, 74,163,209,232, 85, 42,213,244,165,203,150,254,252,233,202,149,158, - 5,249,133, 9, 82,153,194, 96,171,144,187,206,125,103, 9,213,106,181,179,181, 90,173,206, 10,169, 21, 63,255,252,243,128,103, -158,121,230,186,159,159,159,103, 94, 94,158,119, 73, 73, 9, 45, 40, 40, 32,168,232, 75, 69, 0,224,250,245,235, 72, 75, 75, 99, - 57,142, 59, 3,224, 35, 74,169,201,218,180,250,250,250,186,116,236,216,113,128,155,155, 91,117, 83,100,100,100,228, 0, 95, 95, -223, 47, 50, 51, 51, 11,155,122,140,139,139,139,135,119,237,218,117,246,164, 73,147, 96,177, 88,240,236,179,207, 34, 51, 51,243, -179,148,148,148, 95, 85, 42,213,216, 9, 19, 38,120,184,185,185,225,157,119,222, 81,212, 52,115,181,152,241,113, 99,198,140, 33, - 10,133, 29, 88,150,133, 92, 46,133, 92, 46,135,189,189, 35, 92, 93, 93,145,150,150,134,167,159,126,154, 79, 78, 78,222,107,107, -107,187, 73,184, 29, 10, 8, 8, 8, 8, 38,171, 65,131, 85,207, 83,125, 59, 87, 87,215, 31,167, 76,153, 18,222,174, 93, 59,136, -197, 98, 52,111,222,188,219, 7, 31,124, 16,239,235,235, 59, 54, 51, 51,243, 98, 99,126,180,176,176,176, 68,169, 84,238, 61,127, -254,252,232,145, 35, 71,226,216,177, 99,227, 43, 13, 22,206,159, 63,143,228,228,228,189,133,133,133, 37,143, 35,131, 62, 62, 62, -207,245,238,221,123,124,199,142, 29,177,111,223, 62,112, 28,119,178, 49,223,175, 57, 98,176,182, 81,132, 85,219, 26, 44,104,177, -120,212,180,105,211,196, 6,131, 1,148, 82, 72,165, 82,148,148,148, 32, 59, 59, 27, 61,122,244,144,206,156, 57, 51,164,188,188, -252,221,180,180,180, 38, 77, 10,170,209,104, 50, 67, 67, 67, 19,245, 6,131,196,197,205, 85,231, 96, 39,163, 37,165,165,204,245, -235, 87,178,180, 90,109,170,149, 39,181,137, 16,210,243,200,145, 35, 31,136, 68,162,231,125,124,124, 48,122,244,104,210,167, 79, - 31,200,100, 50,232,245,122, 20, 21, 21, 97,223,190,125, 96, 89, 54, 16, 0, 60, 60, 60,188,154, 55,111,190,147, 97, 24,109,114, -114,242,107, 13,253, 6,199,113, 35,135, 15, 31, 46,182, 88, 44, 88,178,100, 9, 62,252,240, 67, 12, 28, 56, 80,124,249,242,229, -145, 0,190,109, 74,222,125,125,125, 39,190,242,202, 43, 19, 71,143, 30,141,210,210, 82,156, 63,127, 30,221,186,117,195,138, 21, - 43,148,103,207,158,157, 21, 29, 29, 13,177, 88,140,211,167, 79,131,101,217, 58, 23,108,237,213,171,151, 88, 36, 18, 5,249,248, -248, 32, 53, 53, 21,182,182,182,240,242,242,130,179,179, 51,220,221,221,177,106,213, 42,124,254,249,231,215, 68, 34,209,122,141, - 70,147, 40,220, 6, 5, 4, 4, 4, 4,234, 53, 88, 53,219, 59,107,190,246,244,244,148,137,197,226, 69,189,122,245,154,211,191, -127,127, 81,113,113, 49,120,190, 98, 8,189,141,141, 13, 54,110,220, 24, 24, 19, 19,115,222,207,207,111, 45,165,116, 65,102,102, -166,206,218, 31,230,121,126,247,207, 63,255, 60,168, 75,151, 46,182,189,123,247, 14, 2, 0,185, 92,110,250,249,231,159,117, 60, -207,239,110,108, 70, 30,158,244,209,215,215, 55, 90, 36, 18,189, 50,116,232,208,232, 87, 95,125, 21,183,110,221,194,150, 45, 91, -238,132,134,134, 30,107,164,110, 82, 3,163, 8, 87, 91, 19,205, 98, 89,214,217,209,209, 17, 37, 37, 37,144, 74,165, 96, 89, 22, -249,249,249,184,123,247, 46,220,220,220, 80, 92, 92,236,216,188,121,243, 91,143,114, 48, 21, 82, 62,234,253, 57, 19, 67, 12, 6, -125,120,113,113, 49, 43, 22,139,197,114, 9,151,220,200, 39, 7,163,191,191,255,112,142,227,220, 77, 38,147,197,203,203, 75,114, -252,248,113,200,100, 50, 84,140,254,140,128, 76, 38, 51,249,250,250,150, 2,128,155,155, 27,179,124,249,114,201,219,111,191,221, - 96,218,163,162,162, 36,205,155, 55, 31, 19, 26, 26,138,115,231,206,225,246,237,219, 73,231,206,157, 11,138,138,138,130,159,159, -223,152,168,168,168, 31,226,226,226, 44,141, 73,111,120,120,184,180,125,251,246,227, 71,143, 30,141,164,164, 36, 44, 95,190, 60, - 47, 43, 43,235,212,145, 35, 71,158,155, 52,105,146,168, 91,183,110,200,203,203,195, 15, 63,252,192,198,198,198,126,159,157,157, -253, 99, 93, 90,167, 79,159,230, 85, 42, 21, 8, 33, 16,137, 68,208,233,116, 72, 78, 78, 70,215,174, 93,241,253,247,223, 99,245, -234,213, 63,102,101,101, 9, 81, 43, 1, 1, 1,129,191, 40,114, 85,219,235, 39, 46,130,165, 82,169, 38,217,218,218,174, 30, 57, -114,164, 52, 56, 56, 24,105,105,105, 72, 72, 72,192,151, 95,126,121, 91,161, 80, 24,167, 79,159, 30,213,173, 91, 55,180,111,223, -158,108,220,184,113,198,194,133, 11,167,168, 84,170,119, 52, 26,205, 26,107,126, 88,171,213,234,148, 74,229,142,201,147, 39,175, -184,122,245, 74, 32, 0, 92,186,116, 41, 89,163,209,204,179,178, 57,171,166, 9,170,154,156,146,216,218,218, 94, 15, 9, 9,201, - 31, 48, 96,128,203,136, 17, 35,224,238,238,142, 43, 87,174, 96,249,242,229,183, 12, 6,195,212,152,152, 24,246, 31, 41,104,177, -184,168,160,160,192, 83, 38,147,161,184,184,184,218, 92,149,151,151,163,160,160, 0,148,210,146,152,152, 24,174,169,250,190,190, -190, 61, 7, 13,232, 25,241,233,170,181,208,235,202,112,233,252,126, 20, 22,228, 97,195,183,187,218,248,250,250,246,204,204,204, - 60,109,173, 22,203,178, 65, 59,118,236, 0, 0,200,100, 50,124,244,209, 71, 80,169, 84,112,116,116, 68, 89, 89, 25, 38, 78,156, - 40,155, 49, 99, 6, 0,224,246,237,219,176,183,183,183, 74, 55, 43, 43,171,247,155,111,190,233,104,177, 88,112,232,208, 33, 35, -199,113,211,143, 29, 59,182,187, 93,187,118,242,167,158,122,202,241,167,159,126,122, 26,192,145,198,228,155,101, 89,153,173,173, -173,140,227, 56,236,216,177, 3,105,105,105,175,230,229,229,101,123,121,121,237,122,247,221,119,223,105,209,162, 69,192,189,123, -247,210, 74, 75, 75, 63,209,106,181, 41, 13, 92,220,188, 74,165, 74, 63,122,244,168,255,232,209,163, 33,149, 74, 81, 88, 88, 8, - 7, 7, 7,124,250,233,167,212,108, 54,239, 20,110,129, 2, 2, 2, 2, 2,143,100,176, 0,124,180,119,239, 94, 41,207,243,248, -230,155,111, 16, 27, 27,107,202,202,202, 90,160, 84, 42, 87,199,197,197,241, 11, 22, 44,120,171,119,239,222, 43, 39, 76,152, 96, - 27, 25, 25,137, 3, 7, 14,136,219,182,109,187, 16,192,154, 26,198,167,222,213,182,139,139,139, 47,107,181,217,129, 53,102,109, - 15,148,203,109, 46, 55, 96,166, 30,208,172,101, 50,203,118,203,150, 45,187,233,233,233,105,185,121,243, 38,214,175, 95,207,199, -197,197, 29, 0,240,169, 86,171,213, 91,163,249, 56,120, 88,147,101,217, 29, 43, 87,174,124,115,222,188,121,146,172,172, 44, 36, - 36, 36,160,188,188, 28, 22,139, 5, 7, 15, 30,100,117, 58,221,238,198,106,214, 36, 51, 51,243,116,139, 96,127,252,240,237, 42, -152,205, 70,100,169,211, 0, 0,121,249,197,168,207, 92,213,166,201, 48, 76,209, 43,175,188, 98,107, 50,153,200,152, 49, 99, 36, - 57, 57, 57, 8, 14,174,152,239,180,164,164, 4, 7, 14, 28, 64, 88, 88,197,180, 90, 55,110,220,168,126,221, 80, 58,109,109,109, -159,239,222,189, 59, 82, 83, 83,113,235,214,173,131, 90,173, 54, 87,169, 84, 30, 76, 75, 75, 27,217,161, 67, 7,236,222,189,123, -116, 93, 6,171,190,188, 87, 77,207,192,243, 60, 92, 93, 93,203, 43, 13,124, 10,128,201,141, 45, 79,150,101,231,238,222,189,251, -205,243,231,207,247,156, 53,107, 22,233,211,167, 15, 0,160,188,188,156,203,203,203, 43,123,148, 99,244,184,206, 37, 65, 83,208, - 20, 52, 5,205, 39, 81,243,127,201, 96,113, 60,207,227,228,201,147, 56,120,240,160,153,101,217, 48,141, 70, 83, 51, 2,176,222, -215,215,119,223,249,243,231,147, 47, 94,188, 40, 43, 41, 41, 1,128, 70, 69, 96, 12, 6,131,133,144, 63,111,123,212, 76,125,255, -253,247,200,206,206, 54,165,165,165,253,102, 54,155,183,212, 55,106,172, 33, 30,215, 40,194,105,211,166,205, 88,183,110, 93,255, -210,210, 82,255,145, 35, 71, 74, 92, 93, 93, 81, 80, 80,128, 67,135, 14,177, 87,174, 92, 73,155, 54,109,218,172, 71,201,115,101, - 4, 11,175,188,254, 54,244,250, 50, 92, 56,183, 31, 69, 5,121, 56,127, 57, 1,141,141, 96,137,197, 98,127,139,197, 34,103, 89, - 86, 77, 41,197,184,113,227,192,113, 28, 12, 6, 3, 74, 75, 75, 81, 80, 80, 96,152, 54,109, 26, 83,105,154,240,204, 51,207,200, -172,209, 13, 10, 10,242, 23,139,197, 56,114,228, 8, 68, 34,209,206, 10, 67, 44,218,121,226,196,137,145, 99,198,140,129,143,143, - 79, 40,169, 28,163,219,152,188,243, 60, 15,150,101,209,132, 53,167,255, 68, 78, 78, 78, 14,128,143, 84, 42,213,246, 57,115,230, - 76,234,216,177, 99,196,226,197,139, 1, 64, 36,220, 46, 4, 4, 4, 4, 4, 30,135,193, 90, 60,104,208,160, 69,168, 24, 57,246, -225, 67,230,170, 42,106,162, 81,169, 84,111,183,109,219,118, 81,213,119, 26,105, 94,180,132,144,255, 48, 12,153, 83,241,190,241, - 19, 54,214, 88, 58,101, 14, 0, 34, 22, 75,182, 92,188,120,241, 61,141, 70,147, 77, 41,229, 30,181,128, 30,215, 40,194, 69,139, - 22, 81, 0, 45,190,248,226,139, 53,187,119,239, 30,165,215,235,157, 21, 10, 69, 17,203,178, 59,166, 77,155, 54,163,242,243, 38, -147,153,153,121, 58, 56,200,247,232,168,145,131,158, 9, 10, 80, 1, 0,146, 82, 52,200, 43, 40, 62,218, 24,115, 5, 0,169,169, -169, 70, 0, 70,165, 82, 57,114,219,182,109, 59, 42, 77, 79,117,255, 59, 0, 70,177, 88,220, 2, 0, 74, 75, 75,155,237,222,189, -251,103,177, 88,156,217,144,238,237,219,183,183, 46, 90,180,104,108,114,114,242,111,153,153,153,137,149,233, 78, 84,169, 84,235, - 53, 26,205,216,180,180,180,159, 26,107,174, 76, 38,147,197,104, 52,178, 28,199,137,205,102, 51, 53,153, 76,150,199,113, 97, 84, -206,203, 53, 67,165, 82,117,233,223,191,255, 43,148,210, 28,225,118, 33, 32, 32, 32, 32, 96, 45,228,113, 60,245,215, 41,110,101, - 8,241,225, 14,234, 77,209,108,140,134, 53,154, 42,149,106, 42, 33, 36,200, 90, 13, 74,105,146, 70,163, 89, 87,135,230,163,118, -214,163,141, 41,207, 22, 45, 90,208,251,247,239, 91,213, 73,176, 33, 77, 95, 95, 95, 27,177, 88,252,112,132,202, 88,105,194,170, - 52, 8, 0, 17,165,148,109, 76, 58, 31,215,185, 20, 16, 16, 48, 37, 60, 60,252,229,171, 87,175,254,170, 86,171, 87, 63,238,243, -243, 17,210,201, 60,162, 28,255, 79,148,167,160, 41,104, 10,154,130,230, 63,161,105, 5,209, 0,170,150,102,171,154, 39,211,227, -161,215, 38, 0, 53,235,172,170,247,185, 0, 46,215,208,168,185,189,161,239, 2, 64, 30,128,235,176, 98, 85, 20,107, 34, 88,127, - 27,143, 99,153,145,199,189, 84, 73, 77,179,244, 56,178,248,119,150,231,189,123,247, 30,219,232,139,204,204, 76, 3, 0, 67, 3, -101, 79, 1,176,255,212,249,147,146,146,242,101,175, 94,189, 54,168,213,106, 22,255, 46,120,225, 25, 78, 64, 64, 64,224,241,153, - 43, 66,200,254,202,122,103, 72,165,209,219,255,240,235,170,125,170,246,171,185, 79,149,198,195,219,235,251, 46, 0,204,155, 55, -239,189,229,203,151,219, 2, 56,101,109,130, 25,225,152, 9, 60, 9,252, 83,163, 67, 5, 4, 4, 4, 4,254, 22,170,141,209,195, - 70,168,150,135,254, 33, 53,255,215, 71,109, 58, 85,191, 81,243,253,138, 21, 43, 62, 6,208,168,149, 96,196,132,144,136, 58, 18, -104,117,232,175, 46,141,250, 62,107, 72, 95,208, 20, 52, 5, 77, 65, 83,208, 20, 52, 5,205, 39, 79,243,113,125,255,113, 80,155, - 89,123, 40,226, 5, 66,200,254,121,243,230,189,135, 70, 52, 15, 86,137,255,101,127, 0, 34, 4, 77, 65, 83,208, 20, 52, 5, 77, - 65, 83,208, 20, 52, 31,241,111,112,133,101,161,131,107,190,174,109, 91,125,175, 27,250,174, 21,251, 90,157,230,127, 69, 31, 44, - 1, 1, 1, 1, 1, 1, 1,129,122,200,173, 25,109,170,140, 48,113,243,230,205,123,175,102, 63, 41, 0, 70, 0,242, 90,162,101, - 15,244,221,106, 32,178,102,245,190,245, 33, 24,172,191,135, 6,251,186,245,232,225,237, 42,210,151,125,206,241, 92, 55, 0, 32, - 96,126,151, 72,156,103,157,184,164, 46,130,149,157,165, 91, 5,147, 86, 54, 98,188,203,243,104, 75, 8, 64, 8,174, 27, 88,172, -188,147, 72,239, 60,106, 6, 8, 33,164,117, 32, 38,202,228,182, 99,156,156, 93, 66, 10,243,243,238,153,205,198,237,183, 83,176, -129, 54, 97, 40,106, 88, 48,105, 15, 14,115, 57, 30, 18, 49,131,207,239,164,208,179,194,105, 34, 32, 32,240,111,185, 39, 55, 64, -109,247,228,199, 50, 90, 92,160, 78, 46, 3,136,174, 97,122,114, 1,220, 88,190,124,121,225,242,229,203,107,110,187, 6,160, 93, -229,126,185,181, 24, 37, 83,229,123, 83, 45,251,152,172,217,247, 47, 49, 88,173,253,200, 36, 80,124, 8, 2, 10, 96,241,173, 12, -186,190, 81,223, 15, 33,125,109,196,162,141,160, 16, 25, 44,220,108,202,225,247, 90, 43,115, 17,158,178,145,136, 62, 3, 1,111, - 96,185,215,110,221,167,199,173,253,141,136, 22,100,128,152, 48, 63,241, 60,149,112, 60,221, 12, 30,251,237, 45,248,227,124, 38, - 53, 52, 38,173,237, 67, 68, 75,252,253, 61, 59, 84, 22, 60,104,229, 28, 80,124,229, 53, 80,109, 42, 40, 15,202, 83,104,178,138, -226,174, 39,209,133, 77, 57,107,122,244,240,118, 85,240,252,245,245,223,253,228,237, 31,210,133, 80,222,136,251, 87, 15,189, 52, - 99,206,130,222,125, 58,250,180, 61,113, 73, 93,208,144, 70,187, 22,228,245,224,230, 45,223,125,123,193, 42, 70,165,242,181,231, - 89, 19,155,149,113, 59,234,139, 85,139,118,182,107, 65, 62,187,118,143,110,180,214, 72,133, 7,224, 77,177, 68, 54, 90, 97,107, - 23,162,211,149,222,231, 44,150,237, 17,193,226, 1, 43, 63, 89,221,190,103,239,129,246,188, 49,155,177,176, 36,252,215,109,191, - 52, 91,247,213,250, 65,132,144, 97,148,210,198,141,152,227, 48,243,198,222,137,163, 36, 98, 17, 9, 27,252,173, 29, 33,164,127, -163, 53, 0, 68, 4,146,214, 20,152,210, 96,190,128, 47,111, 38,211, 38,173,245,216, 42,144,124, 71,128, 80, 0, 59, 8,197,214, - 91, 41,194,156, 88, 2, 2, 79, 26, 62, 62, 62,167,212,106,117,239,199,172,217, 73,173, 86, 95, 20, 74,247,177,154,172,135,185, -100,229,126,127, 59,141,141, 96, 45,189,117, 63,195, 5,188, 25,173, 67,131,150, 0,104,148,193,178, 17,139, 54, 95,190,174,245, - 6, 53,227,219, 85,147,127, 53, 89, 0,150, 53,131, 99, 45,224, 88, 75,197,107,206, 2,158, 53, 96,209,231, 49, 0, 91,138, 14, -237, 91,108, 6,160,180,246, 55, 36, 96,126,138,251,227,168, 43, 97,139,241,235, 15,203,167,165,105,202,166, 29,191,164,201,107, - 29, 64,230,223, 78,197, 38,107, 43,113,127,127,207, 14,123,142,103, 61,115,106,235,116,116,106, 31, 2,202, 91, 0,202,194, 54, -236, 93,156,248,113, 28, 58,181,241,175,216,198, 91, 96, 31,249, 25, 6,118,119,106,242,211,135, 72, 95,246,249, 87,223,110,242, -246,111,214,140, 88, 82,150, 2, 22, 35,252,252, 7,137, 22,188,253,186,114,241, 39, 95,174, 2, 48,190,222,104, 80, 16, 9, 15, -109,209,106,246,230, 95,207,249,151,151,229,152, 78, 30,120, 47,145, 80,106,113,119, 15,147,126,180,244, 83,197,251,243,223,158, - 21, 22, 68, 46,198, 39,209,219, 13,152, 43,166, 85, 0,246,126,252,241,202,182,125,250, 13,181,231, 76,185, 34, 67, 89,105,232, -198, 77,223,125, 24,214,186,163,109,247, 72, 95,105,238, 31,111, 17, 93,105, 1,204, 84, 33,127,186, 67, 31, 71,221,203,207, 91, -190,251,241,151,169, 0,214, 54,202, 95,177,255,157,107,196,204,194, 6,128, 4,141,237, 64, 88,241,200, 55,229,234,249, 83,111, -178,133,151, 1,222, 92,121, 76,204, 0,111, 1,173,241,191,243,139,155, 0,224,173, 38, 61,234, 18, 60,115,252,248,101,165, 86, -155, 21,253,249,231, 31,207, 15, 15, 36,135, 64,240,211,157,100,156,110,138, 41, 20, 16, 16,248,119,162, 82,169, 56,141, 70,243, - 88, 87,109,240,241,241, 25,164, 86,171, 15, 62, 98,186,222, 5,240,122,229,219,141, 26,141,102,229,163,166, 43, 58, 58,218,151, - 82,234, 93,121,239,207,190,124,249,114,166,112, 6,252,179, 6,203, 6,148, 7,254,120, 22, 32,141, 27,174, 88, 89, 25,218,128, -136, 0, 75, 25,134, 15,233, 11,119, 55, 37,192,149, 3,156, 30, 96,117, 0, 87,241,151,151,155, 6,176,229, 64,238, 33,176,148, -202, 27,157, 43, 75, 49,144,179, 29,207,116,241,135,179,131, 13,102,188, 16,238,254,205,158,132,141, 27,247,220,237, 11, 96,140, -181, 50,167,182,206,192,150,157, 7, 51,215,124,187, 45,158, 7,133,139,189,188,229,203, 35,111,249,253,184,243, 84,198,234,239, - 13,241,148,167,112,118,144,183, 28, 63,236,190,255,163, 28, 4,142,231,186,251, 7, 71, 18, 54,253, 19, 48, 76, 33,202,202,242, -144,145,244, 3,220,189,250, 51, 44,207, 63,213,208,247, 21, 98,204,155,241,238, 10,113,121,153,214, 68,217, 28,222,203, 62, 79, - 42, 1, 17,241,229,103, 76,250,236,162,178,153, 83, 94,102,103,207,251,120, 30,128,177,245,233,132, 7, 98,234,103,159,172,110, -211,173, 99, 75,207,236,179, 51, 72, 89,177, 22, 22,170,144, 15,235,217, 13, 46,205,194,121,237,213,207,136, 92,217, 23, 46, 1, - 65,200,188,177, 5,105,215,119,145, 30, 29, 71,202, 55,255, 44,125,185, 46,131,213, 66, 73,186,247,127,166,227,175, 65,205, 84, - 74, 74,121,240, 60, 15, 74,121,140, 31, 51, 0,243,215, 37,162, 92,207, 98, 72,223,206,221,220,156, 68,198,229,179,123,129, 82, - 30, 25,154,124,221,201,115,241,125, 18,213,180,193, 39, 63, 2,124,217,174, 75,239,238,215, 47,157, 15, 51,107,246, 35,122,196, -242,120, 2,156,173,113,206,117,191,114, 98, 83, 24,176,169, 73,199,134, 16, 66, 90, 5,128, 75,191,176, 2,190,145, 19, 69, 27, - 54, 29,246, 40,206, 87,143,223,181,237,171, 81, 95,125,179, 97, 75, 83, 77,155,128,128,192,191, 15,141, 70,243,216, 77,214,185, -115,231, 52,143, 98,178,162,163,163,159, 2,240,137, 70,163,169, 50, 91,159,116,234,212,233, 3, 0,181, 45, 15, 86, 76, 41, 29, -123,249,242,229,223,235,211,156, 53,107,150, 10, 64, 64,108,108,108,213,111, 4, 68, 71, 71, 7,212,182,175,173,173, 45,215,174, - 93,187,212, 85,171, 86,105,132, 51,228,175, 53, 88,241,217,103,102, 70,154, 10,116, 0, 16,223,160,161,122,104,168,165,193,194, -173,248, 97,245,248, 21,173, 67, 93, 80, 82,106,194,177, 51,169,149, 17, 44, 22, 28,103,169,254,223,191,139, 59,186,178,111, 97, -237,214,187, 96, 57,126,121,125,154, 15, 99,230,249, 23,219, 63,245,252, 54,158, 82,153,173, 45, 83, 28,236,231,230, 57,251,229, -118,204,140, 23, 90, 67,111, 96,159, 15, 15, 32, 39,111,167,208,111, 27,210,164,148,162, 83,100, 8,214,124, 91, 30,255,219,169, -156,254, 0, 48,184,151,251,225, 78,109,154,249,173,254,222, 16,127,224,116,193, 0, 0, 24,216,221,233, 80,199, 8,111,127,254, -161, 19,221,218, 97,166,237, 90, 42, 58,141, 24,216,195, 17,150, 2,112,229, 41, 48,113, 60,178,178,202,145,172,145,194,137,215, - 90,165,201,243,104,235,237,173,180, 61,119,116,110,138,167, 67,161,212, 77,193, 73,165,132,167,140,133,138, 76,166,120,131,139, -170,175,132,231,209,182,161, 99,164, 80, 56,140,235,209,123,176, 83,250,137,215,137,194,111, 32, 60, 3,125,145, 18,247, 3,114, -110,238, 71,126, 78, 26,113,162,133,176,109, 17,132,129, 35, 95,192, 39, 83, 59,160,164,164, 12, 36, 55,201, 73, 38,147, 59,215, -165, 73, 25,140,253,236, 63,203,148, 98, 49, 3,240, 44, 64, 89,128, 90, 0,106, 65,105,153, 17, 38,147, 9, 54, 82, 10, 59, 27, - 10, 84, 70, 9, 57,206,100,219,182,207,188,201, 0, 46, 54,148,247,155,201,244, 86,235, 64,114, 22,148, 13,163,156, 30, 4, 56, -123, 43,153, 86,155,158,136, 64,210, 58,170,207,132, 41, 4,248,178,161,243,179, 54, 34,154, 99, 72,135, 48,123, 59, 5, 27,143, -204,152,105, 72,228,108,168, 87,155,215,241,194,216,169,182, 27, 54,126, 51,148, 16, 50,169,102, 31,180,191, 98,120,177,160, 41, -104,254,127,213,116,114,114, 10,108,222,188,249, 7, 22,139,229, 41,169, 84,234,101, 54,155,193,243,124,182, 76, 38, 59,147,154, -154,250, 81,113,113,113,242,191, 45,239,135, 14, 29,178,218,100, 89,163, 41,145, 72,112,240,224,193,251,214,154,172,135, 53, 25, -134,249,105,199,142, 29,216,182,109, 91,197,131,255,169, 83,104,209,162,133, 93,109,223,205,200,200,176,123,238,185,231,126, 2, -224, 87,159,230,189,123,247, 2,151, 45, 91,134, 29, 59,118, 0, 0,126,252,241, 71,132,134,134,214,154,158,107,215,174,137,222, -127,255,253, 64, 0,154,191,250, 24, 61,177, 6,171,114,141,221,134, 58,233, 37,121, 59, 72, 34, 97,177, 0, 64, 82, 99,127,236, -118, 34,253, 79,187, 80,201,128, 19,187,190,124,202, 70,198,224,195,207,103,103,228,230,150,118, 22,139, 42, 58, 12,178, 28, 24, - 23,103,217,249,229,211,218,249, 23, 22, 27,240,219,105,245,239,183,146,104,163, 66,161,183, 18,233, 49, 0,206,255,173, 32, 73, -232,248, 5,199,182,110,253,207,128,182,111,143,109,139,189, 49,169,111, 3,248,214, 42, 49,158,173,229,228,175,101, 27,223,248, - 37, 15, 23, 47, 30, 45,222,187,117,247, 0, 59,185,248,139,183,222,120,211,209,146,127, 27,197, 69, 28,178,243,202,145,150,235, - 12, 78, 17,140,132, 91, 23, 57, 17,195, 52,216,255,140, 48, 40,161,150,114, 7, 23,133,130, 9,239, 56, 89, 89,124,243,189, 18, -185,200, 34,114,110,191,204, 65,123,227,179,116,214,152, 83, 70, 24,152, 27,210,113,116,114,106, 97, 44, 77, 21, 21, 23,229,195, -185, 77, 56, 6, 14, 27,138, 15, 95,107,133,210,210,114,228,230,159,163, 33,205,156,136,225,202,207, 88, 48, 46, 12,249,121, 89, - 48, 89, 0,166,196, 80, 96, 48, 25,202,234,190, 89, 96,195,204,217,115, 94,108,230,235, 97, 87,213,151,141,242, 28,218, 69, 4, -161, 95,239, 78, 56,118,254, 28, 46, 95, 73, 0, 79,249,202,190,110, 28, 50,115,138,180, 6, 51,247, 67,163,110,158, 60, 91, 17, - 9,173,197,128, 53, 37,202,212,166, 13,177,229,202,177,176,115,184,195,107,115,199, 53,115,112,144, 17, 24, 20, 28, 12, 6, 11, - 74,227,215,193,205,183, 13,108,109,108, 72,100,164, 94, 12,192, 34,220, 74, 4, 4,254,203,232,209,163,109,180, 90,109,204,224, -193,131,195,251,246,237,107,251,212, 83, 79,161,188,188, 28, 71,142, 28,129, 78,167,107,230,231,231,215,236,232,209,163, 35, 59, -117,234,116,219,207,207,175,215,246,237,219, 13, 77,248,153,170,250,234,177,118, 14,151,201,100, 56,127,254,252, 99,141,100,201, -100, 50, 92,186,116,233,126, 83, 34, 89,229,229,229, 82,111,111,111,184,185,185,129,227, 56,148,151,151, 99,207,158, 61, 40, 41, - 41, 1,207,243, 80, 40, 20,248,236, 80, 49, 12,119,119, 96,227, 23,203, 80, 92, 92, 44,109, 72, 51, 47, 47,143,180,108,217, 18, - 70,163, 17, 44,203,194, 96, 48,224,248,241,227,213,239,197, 98, 49,150,236,208,194,152,176, 21,155, 55,124,134,188,188, 60,242, -119,157, 59, 86,122,145,255, 63, 6,171, 42, 67,127, 71,198, 56,142,157,255,205, 15, 91,207,207,159, 54, 6, 83,199,245,241,251, -104,237,238,190,183,147,232,102, 0, 8, 15, 34,227, 95, 30, 20,226,239,108, 39,193,226,175, 99, 1,208,249,143,250,123, 55, 83, -105, 66,235, 96,242,246,238,152,180,152,247, 94,139, 68,144,159, 99,139,224, 96, 34, 75, 76,164,166,250, 43,108, 30,148,178,213, -157,218, 43, 55, 86,246,233,249,239, 54,158, 82,128, 90, 64,173,188,198, 59, 70,200,223, 80, 72,152, 55,236, 28,156,253,103,190, -245,178, 98,240,224,231, 20,118, 50,138,252,219, 7, 81, 66, 91,195,100,103, 7,170, 43, 66,242,189,155,220,161,211,177,106,185, -155,242,157, 6,125, 32,135,223, 53, 25,119, 70, 52, 15,233,235,156, 27,187, 32, 39,176,207,207, 1, 12, 56,166,252,252,200, 28, - 59,135,112,233,217,107, 55, 89,158,195,185,134,116, 74, 75, 74, 82, 45,102, 40, 13, 22,137, 67,226,165, 77,152,247,114,107, 20, - 21,230,194, 96,100, 81, 84,206,154,149,238,102,185,161,240, 6,140, 38, 22, 70, 51,133,196, 86,133,163,231,111,230,241,172,229, - 80, 93,154,137, 26,122, 21,128,125,205,109,193, 42,210,110,174,139,226, 42, 56, 61,210,210, 53,216,188,243,124,100,229,126,143, -240,120,202,130,178,255,189, 71, 87,117,126,111, 74,231,246, 86,205, 73, 71,133, 66,242,197,226,121,131,195,123,181,230,228,196, -144, 5, 2,192,214, 70, 12,163, 13, 7, 39,155, 32, 80,115, 41,213, 25, 12, 69,183,110, 66,152, 65, 94, 64,160, 6, 97, 97, 97, -222, 78, 78, 78,183,102,207,158,237, 58, 98,196,136,106, 51,240,195, 15, 63, 96,245,234,213,248,240,195, 15, 97,177, 88,240,205, - 55,223,216,238,220,185,179,227,151, 95,126,153,217,172, 89,179,214,105,105,105,217, 86,154, 42,105,101,221,197, 84,154, 43,110, -241,226,197,244,195, 15, 63, 68,205,109,148, 82,115, 83,210, 47,147,201, 32,147,201, 16, 31, 31,255, 88, 76,150, 68, 34,129, 84, - 42,133, 76, 38,195,221,187,119, 27,109,178, 88,150, 21,101,102,102,162,164,164, 4,253,134, 14,197,234, 21, 43,240,212, 83, 79, -161,111,223,190,160,148,226,196,137, 19,232,234,146, 0,215,161, 61,113,231,206, 29, 88, 44, 22,171, 90,166, 50, 51, 51,145,159, -159,143, 1, 67,135,226,219,175,190, 66, 84, 84, 20, 90,182,108, 9, 0,136,137,137, 65, 31,159, 84,216,183,236,139,132,132,132, -191,237,220,249, 59,189,200,223, 26,193,250,187,184,153, 72, 47,132, 7,146,253, 47, 12,142, 30, 50,244,233,112,124,187,245,228, -178,240,112,178, 21, 0,220,156,228, 75,199, 13, 14,194,237,164, 66,156,184,164,217,127, 59,153, 94,120, 28,191,201,115,112,119, -115,182, 5, 24, 25,116, 38,142,117,116,180,114,141, 56,222, 2, 23,123,121,203,193,189,220, 15,131,242,112,182,151,135,129,114, -112,118,144,183, 28,216,221,233, 16, 79, 41,156,237,164, 97,148,183,174,142,237,209,222,230,232, 59,211,167,117, 25, 60,244, 5, -133,212,214, 13,188, 62, 3,150,130,235,200, 79, 62, 5,163,162, 61,114, 51, 83,176,117,239,111,197,241,201,218, 18,145,136, 57, - 38,118,242,154,115,252,120,114, 89, 67,186, 6, 17,150,127,248,193,252,193, 91,183,252,226,164, 80,245,192,189,189,131,138,100, - 34,139,220,211, 39, 20,122,214,129,251,244,251,253,206,229,192,138,134,116,116,229, 37,187,142,159, 56, 60, 38, 68,217,221, 33, -229,230,126,232,116, 38, 24, 45, 64, 68, 84,111,112, 60,149, 17,134,240,142, 34, 17,209,106, 11, 64, 44,188,246,204,149,148,172, -179,151,147, 68, 70,166, 97,237, 7, 78, 58,169,104,250,208,190,237, 0, 78,143, 97,253, 34,240,249,247, 39,166, 1,152,240,104, - 6,203, 2,202,233, 65,129,238,173, 3,201,215, 20,232, 30,119,232,243,176, 14, 3,223, 70, 99, 34, 88, 17,129,100, 96,155, 48, -213,166,207,151,205,119,117,245,244, 19,129,211,131,176, 37,148, 47,184, 0,113,249, 61, 56,250, 14, 6,231,212, 13, 27,190,250, -180,140,231,233, 86,250, 87,174,150, 46, 32,240,255, 16,131,193,176,107,197,138, 21,174, 67,134, 84,140,118, 47, 43, 43,195,185, -115,231,176,113,227, 70,216,217,253,183,101,139, 82,138, 65,131, 6,129, 82,234,186,104,209,162, 93, 0,186,212,165,217,173, 91, -183,161,171, 86,173, 74,143,142,142,190,135,138, 57,142,164, 0, 68, 0,232,241,227,199, 25, 0,232,216,177, 35,119,233,210, 37, - 30, 0, 29, 59,118,172,196,222,222,190, 69, 89, 89,217,233,166, 26, 44,153, 76, 6,181, 90,253,200, 38, 75, 34,145, 84,235, 73, -165, 82,168,213,234, 70,153, 44,150,101,197, 7, 14, 28,192,149, 43, 87,176, 56, 50, 18, 51,148, 74,184,185,185,225,244,233,211, -160,148,194,206,206, 14, 5, 5, 5,216,186,117, 43,122,247,238, 13,150,101,165,214,232,238,217,179, 7,113,113,113, 88,210,161, - 3,166,217,217,193,217,217, 25, 49, 49, 49, 0, 0,185, 92, 14,181, 90,141,227,199,143,163, 87,175, 94,194, 73,253, 87, 27,172, - 94,132,136,137, 31,188, 45,102, 61, 40, 75, 1, 2, 85,120, 56,145,222,190,221,248,167, 4, 6, 88,176,230,251,253,131, 63,159, - 63,140, 76, 28, 21,169,250,232,203, 83,147, 0,224,181,231, 67,125,108,229, 98,172,217,122,155, 50,192,130,199,145,193,240,112, - 34,101, 24, 76,234,215,173, 37, 52,121, 38, 36,165, 23,159,188,157, 76, 27,108,210,225, 65, 97,219,106, 30, 94, 30,113,199,175, - 83, 27, 63, 63, 74,217,202, 17,131,171, 48,126,216,125,255,232,214, 94,254, 21,125,138, 44,112,236,250, 51,192,219, 53, 24,185, -154,251,246,219, 93,134,191, 52, 71, 97,201,220, 13, 99,234, 1,128,211, 65, 87, 78, 80,194,134, 32, 43, 61, 19,139, 63,255, 37, -195,104, 97, 94,140,189,109,104,148,177, 76, 72,160,101,225, 65,100,196,138,255,124,112,236,227,197,139,236,229,234, 19, 37, 18, - 49,202, 25,183,167, 36, 75, 63, 88, 47, 46, 45, 54, 61,151,152, 70, 75, 27,210, 49, 50, 88,241,159,207,214, 14,126,253,229, 17, -241,161,126,189,220,184,236, 36, 55, 93,113,113,206,207,135,226,188, 43,159, 28, 9, 0, 36,166,228, 35,183,160,156,229, 88,203, -105, 7, 51, 62,186,149, 73,173, 30,253, 23,228, 69, 60, 70, 12,110,251,146,135,179, 12,250,242, 66,120,186, 72,209,191,123,240, - 75, 65, 94,100,110,146,150,230, 54,245, 56, 87, 53, 17,158,223,248,116, 24,120,115, 24,229, 45, 48,165,253,212,120, 29,224,237, -183,199, 52,115,114,181, 51, 49,132, 43, 7, 36, 46,128,204,131, 48,138, 0,136, 20,254, 72,189, 31,203,190, 61,121, 76,126,106, -106,246,119,238, 20, 43,133, 91,136,128,192,131,164,165,165,141,123,239,189,247,206,118,234,212,201,203,221,221, 29, 17, 17, 17, -216,183,111, 31,222,121,231,191,193,248,246,237,219, 3, 0,242,243,243,241,159,255,252, 39, 91,163,209,140,171, 79,243,214,173, - 91,241, 63,253,244, 83,247,182,109,219,154,164, 82,105, 97,149,201, 74, 75, 75, 19,151,151,151, 19,147,201, 68,237,236,236,120, -185, 92,110, 25, 61,122,180,249,210,165, 75, 45,202,203,203,211, 30, 37,130,213,161, 67,135, 27, 69, 69, 69,197,132,144, 71,158, -194,161,202, 92,133,133,133,121,152, 76, 38, 14, 64, 65, 83,166,112, 96, 89, 22, 29, 58,116,192,241,223, 99,113,232,247, 27, 40, -203, 77,194,216,231,250, 35, 44, 44, 12, 71,142, 28,105,242, 49,235,208,161, 3,142, 31, 63,139,152,216,187,208,166,221,198,203, - 47, 60,139,150, 45, 91,226,248,241,227,194, 9,253,168, 6,171,161,144, 92,171,102,164,157, 87,132,236,199, 5,195,130,195,197, - 17, 31,130,136, 21,216,189,105, 95,183,249, 31,127, 29,223,198,135,140,189, 97,197,104,175, 7,162, 88, 21, 29,147,127,185,118, - 59,236,165, 97, 79,249,225,219,237,182, 11, 1,224,249,126,129,184,116, 59, 23, 23,111,230,252,114,171,137,115, 22,213,164,141, - 23,177,133, 29,126,249,207,156,225,189,154,249,122, 99,227,182,179, 32, 20,187,172,253,254,137,205, 47,227,199, 93, 49, 25,171, - 55, 61, 56, 98,112,211,158,184,244,207, 54, 27,226, 41, 40,156, 21,146,176, 9,195,186, 54, 56,138,208, 70,194, 76, 28, 56,108, -156,130,213, 30, 1, 95,176, 29, 18,153, 20,250,114, 14, 89, 57, 70,232,109, 21, 56,121,230,180,190, 76,199,190,125,253, 62,219, -164,168,221,237, 36,154,212, 62,148,164,151,235,245, 74,123,215,224,114,134,128,150,153, 36, 52,238,182,186,252, 86, 26,189,107, -141, 70, 98, 34, 53,117,241, 37, 61, 54,108,222,254,129, 68, 34,123, 94, 36, 2,241,116,182,243,248,122,205, 18, 56, 56,216,131, -178,165,160,198, 60,140,120,237,227,220, 27,247,204,129, 0, 16, 26, 74,236,159,106, 39,221, 44,102, 72,230,201, 43,166,247, 27, - 12, 1,139,240,214,216, 97,237, 36,188,165, 28,211, 23,253,138, 13, 75,135,225,229,161,173, 36, 7, 78, 38,188, 5,224,163,166, -135, 41, 43,154, 8,187, 76,252, 61,158, 0,103, 41,208, 61,118,255,210, 48,192,250,150,199,168, 40, 34, 17,139, 73,171, 86, 62, - 38, 9,151,185, 21,196,198,135,138,220,123, 1,118, 45, 8,181,143,192,186, 53, 31,148,125,187,113,227, 81,158, 96,113,124, 74, -253, 83, 94, 8, 8,252,175, 66, 41, 77,114,118,118, 30, 48,104,208,160, 19, 71,142, 28,113,141,136,168, 88,110, 46, 46, 46,174, -242, 58,171,104,138,210,106,181,120,241,197, 23,243,178,178,178, 6, 80, 74,235,237,211, 91, 90, 90,154,188,123,247,110, 47,189, - 94, 31,253,254,251,239,107,155, 55,111, 94,106,177, 88,104,105,105, 41, 88,150,165, 30, 30, 30,146,168,168, 40,210,186,117,107, -253,137, 19, 39,220, 50, 50, 50, 74, 1,164, 54, 37,253,175,191,254, 58,118,238,220, 9, 0,120, 28,243, 98, 73,165, 82, 12, 26, - 52,200,231,220,185,115,234, 74,205,139,143, 80,182,184,126,253, 58,206,220,231, 32,179,115, 65,106,124, 9,142,255,182, 23, 99, - 39,190, 9,150,109,122,111,133,107,215,174, 97,235,241,107,240,242, 9, 70,177,241, 58,246,236,217,131, 73,147, 38, 61,146,102, - 19,243, 71,158,184, 62, 88, 85, 25,123,248,195,224, 96, 34,147,155,176,168,127,103,159, 57,163,251, 4,139, 88,157, 6, 60,207, - 67, 4,192,221,129,193,247,223,110, 8,220,190,251,224,249, 54,254,162,181, 48,241, 11,110,104,169,174, 17, 97,172, 69,171,126, -248,227,249,159,150,244, 20, 79, 26, 21,230, 10, 0, 82, 9,131, 53,191,220, 98,193, 96,209,163,100,170,139, 47,177, 41,147, 98, -162,119,128,211,194,249,147, 7,187,246,234, 20,138,211,231,111, 98,237,150,243,191,203, 92,240,163,149, 7,154,118,106,235,143, -213,155, 30, 30, 49,168,244,255,108,179, 33,254,200, 31, 37, 3, 1,224,153, 46,118,135,162, 91,185,250, 55,212, 84,196,241,212, - 91,102,235, 14, 67,234, 65,136,101,114,176,172, 25,185, 90, 29, 82,178,121,216,168, 36,184,116, 61, 77,255,236, 75, 35, 14, 52, - 53,207,132, 16,210,189,189,141,106,209,210, 79,125,245,250, 82,182,164, 40,143, 21, 75,207,139,109, 21,242,236,198,232,156,207, -164,134,158,237,165, 81,160,188, 72, 46,162,186,249,111,191, 98,167, 78, 56,130, 16, 15, 13, 8, 40, 20,170,193,112,176, 19, 73, -123,180,147,166, 3, 64,128,155,147,236, 63, 31,189,227, 52,115,238,226, 51,214, 68, 19,219,132,122,207,140, 8,113,197,233,139, -119,240,251,229,180, 91,191, 95, 72,104,221,187,163, 10,161,129,206, 51,194,195,201,138,166, 68, 68, 43, 14, 88, 69, 19, 97,213, - 40,194,136, 64,210, 58,122,200,251,181,142, 30,172,139,128, 43,224, 19, 2, 41, 8, 17,129,130, 0, 6, 53,216,140,159, 32, 10, -156, 70,119,237, 93,170,223,248,237,198, 37,183, 83,168, 16,181, 18, 16,104,128,162,162,162,235,182,182,182,253,219,181,107,247, -195,244,233,211, 29, 94,122,233, 37,213,235,175,191,206, 0,128, 86,171,229, 87,175, 94,173,249,226,139, 47,138,243,242,242, 38, -152,205,230, 27,214,220,143, 9, 33,231,190,255,254,251,220,179,103,207,182,238,220,185,179,109,116,116, 52,239,233,233, 41,213, -233,116, 92, 70, 70,134,254,252,249,243,220,253,251,247,157,138,138,138,238, 3, 72,108, 74,243,189, 74,165, 2,195, 48, 31,249, -249,249,125,160, 86,171,219, 60,142, 62, 88, 33, 33, 33, 42, 0,247,125,124,124, 66, 26,219, 60,248,167, 10, 91, 44, 70, 97, 97, - 33, 74, 51, 19,161,203,207, 67, 75,145, 14,237, 93,221,225,224,224,240, 72,102,168,184,184, 24, 98,163, 22, 73,215,211, 80,148, -157,138,240,102, 29, 96,103,103, 7,163,209,248, 79, 24,116,242,164, 92, 7,117, 54, 17,182,246, 35,147, 92,100, 88,253,202,232, - 64,105, 96, 51, 95,152,114,227,112, 53,177, 12,239,127,215,241,182, 72,234, 96,156, 58,190, 95, 84,239,190, 30,232,217,171, 35, -105,222,204,121,198,138, 21,235,167,180,246, 39,239,220, 74,167,107,172,249,225, 91,137, 52,185, 85, 32,217,120,234,178,250, 45, - 95, 15, 61, 40, 40, 78,197,102,225, 70, 98,225,198, 59,201, 52,185, 49,153,104, 29, 66,250,138, 9,243, 43,229,168,141,147,131, - 93,105,251,167,194,220,251,118,111,203, 12,232, 29, 13,169, 24, 56,123,241, 26,222, 94,186,235, 2, 47,163,131,227,226,168,213, - 35,190, 40,207, 62,208,161,189, 98, 91, 45, 95,167, 13,159,216, 34,134,100,151,107, 99,189,101, 14,225, 48,231,159,132, 86, 91, -134, 91, 73,102,148,193, 15,133,153,153,160,148, 75, 95,180,104,123,147,175, 16,119,119,119,207,192, 22,161,193, 95,124,187, 3, -102, 99, 49,146,110,111, 66, 89, 73, 54,150, 46,255, 45,216,215,215,183,103,102,102,230,105,171,205, 26, 72,232,137,147,191,120, -130, 2, 34,177, 28, 7,190,217,134, 60,177, 2,238, 78, 82,240,134, 28, 76,124, 99,172,211,160,193, 99,157, 0, 32, 61,241, 26, -252, 93,173,243,213,230, 34,140,124,126, 66, 75,103,112, 58,252,184,231,154,129, 33, 24,240,227,111,183, 18,123, 71, 57,219, 60, -223,175,153,203, 71, 27,138,158, 3,240, 75,147, 46, 74,158,123, 96, 20, 97, 83, 70, 15,110,167,148,107, 21, 72, 18,127, 57,158, -107, 63,122, 80,164, 66, 42, 38,132, 26,212,224,137,148,172,249,242,251, 82, 25,193, 55, 66,213, 41, 32, 96, 29, 58,157, 46,142, - 16,210,230,221,119,223,125,241,189,247,222,123,202,206,206, 46, 16, 0,202,203,203,147, 45, 22,203,239, 0,126,161,148, 90, 61, - 4,187,210, 48,221, 39,132, 36, 39, 38, 38,122,253,248,227,143,206, 0,108, 42, 63, 54, 0, 40, 2,160,109,140,230,195, 84,153, - 41,149, 74,245,193,227, 42,135, 42, 51,229,227,227, 19,210,148,239,139, 68, 34,142, 97, 42, 86,246,145,203,229, 56,115,230, 12, - 6,118,239,129,107,199,211, 16,230,229,135,222, 99, 95,193,158, 83,167, 32, 18,137,170,246,111, 84, 61, 34, 22,139,113,246,236, - 89,140, 26,210, 11,123,246,236, 65, 80,135,118,152, 54,109, 26, 14, 31, 62, 12,177, 88, 88, 77,239, 47, 49, 88,160,248,232,216, -175, 31, 75,193, 91,176,227,231, 79,112,236,178,206,116, 87,141, 5, 45, 51,177,122, 7, 74,249,156,188,157,111, 29,136, 73, 90, -249,234,132, 33,182, 79,247,236,135,167,159,234, 45,110,221,174,231, 66, 0,107,106, 68, 85, 34,234,155, 43,131,179, 96,201, 55, - 59,227,223,252,245, 96, 2, 1, 91,138, 49,195,162, 41,103,193,146, 6, 34, 53,127,210,116,178,181,255,245,236,153,243, 46,224, -202,144,157,114,202,198,219, 43, 16,160, 22,220,187,151,128,117,223,239,225, 99,206,223,253,201, 36,194,244,196,219,180,220, 90, - 77, 80,254, 79,198,169, 98,196, 32,251,192,136, 65, 74, 41, 5,207,226,225, 9,189, 31,214, 52, 88,248,111,126,218,252,237,167, -175,189,246,186, 93,190, 81,141,132,140, 91, 48,136,124, 32,178, 13,198,173,216, 35,122,189,133,111,112,234,136,250,202, 51, 47, - 47, 47, 39, 46,182, 0,191,254,176, 28, 22,139, 17, 57, 89, 21, 30, 53, 75, 91, 2, 71, 71,159,243,141,209, 52,179,124,241,200, - 17, 19,165, 10, 27, 40,198, 62, 63, 88,150,168, 49, 34,178,165, 67, 69,126,205,121,136,143, 57,131,222,158, 21,157, 33, 19,227, - 69,240,239,172,178, 42,157, 14, 14,210,233, 3,123,248, 32, 57, 45, 27,103,226,212,155,147,212, 84, 19,228, 67, 54, 39,166, 23, -189, 53,188,183, 63, 62,255,233,246,180,186, 12, 86, 93,154,149,163, 5,187,131, 90, 64, 89, 3, 40,208, 61, 34,144,180,182,102, -228, 96,109,154, 98, 6, 47,173,250, 53,245,253, 29, 49,185,195,231,188,222,195,177, 91,151,129, 50,240, 22, 90,170, 51, 90,110, - 39,211,146, 71, 57, 70,143, 16,157, 20, 52, 5,205,255,151,154,149,102,231,167,202,191,199,169,169,193, 67,243, 50, 61,106,222, -107, 54, 7,106, 52, 26,145, 74,165,226, 26,234,228,110,133,230,197,154, 70,171, 50,122, 85,111, 20,171, 22, 77, 77,167, 78,157, - 92,135, 14, 29, 10,150,101,113,255,254,125,164,165,165, 97,232,171, 19,224,226,226,130,139,183,111,227,254,253,251,248,224,131, - 15,192,178, 44, 46, 93,186,148,217,144,166, 68, 34, 49,183,107,215, 78,250,236,179,207,130,101, 89, 36, 37, 37, 33, 53, 53, 21, -211,166, 77,131,147,147, 19,110,223,190,141,164,164, 36,124,240,193, 7, 48, 26,141, 72, 78, 78, 54,255, 29,231,210,255,142,193, - 34,224,192, 91, 80,124,121, 17,190,222, 15,179,153, 69,216,173, 12,154, 82, 99,143,245,109,125,201,190,235,183,226,147,227, 46, - 62, 45, 67,201, 13, 0,104,212,147, 67, 66, 6,205,138,110, 41, 46, 5, 91,234,136,220, 67, 72, 81,151,150, 37,100,208,172, 38, - 68, 47, 8, 56, 29, 80, 28,139, 61,251, 99, 32,183,185,138,203, 87,226,185,115,113, 9,191, 50, 20, 75,110,167,208,123, 77, 42, - 29,158,133,147,189,236, 79, 35, 6,157, 21,146,176,103,186,216, 29,162,148, 82, 7, 91, 73, 24,181, 34,130,117,233,166,241,219, - 30,237,109,158, 43, 45,201,235,212,175,119, 47, 59,143,208,231, 81,124,239, 54,110, 93, 57,166,143,189,145,112,254,210, 77,227, -183,143,114, 32,125,124,124,158,234,211,167, 37,198,188, 50, 31,102, 99, 17,146,110,125,143,210,146,108,156,249,195, 30,241,233, - 37, 93, 0, 88, 29,193, 58,119,211,210, 26, 0,186,183,145,166, 59,202, 76,222,227, 70, 13,129, 92,108, 0,111, 41, 5, 49,231, - 33,177,192, 92,252,220,162, 76, 14, 0,108,109,136,216, 78, 92,236,104,141,110,120,144, 91, 11, 91,169, 5, 63,238,189, 5,158, - 84, 44,179,196, 19,172,255,113, 95,226, 91, 75,166, 70, 34, 60,200,165, 93, 85, 3,188,213,199, 30,152, 18,251,219,226, 48,195, -173,133,160,188, 5,103, 87,186,132,245,120,183,112, 10,154, 56,195,250,141, 68,170, 6,240, 86,171,102,100,195,140,101,135, 23, -118,136,184,221,125,246, 91,195, 29, 65,132,133,209, 5, 4, 4,254,145, 72,224,155,115,231,206,221, 32, 18,137, 60, 0, 16, 74, - 41,140, 70,163,120,227,198,141, 18,150,101, 25,145, 72,196,217,216,216,176,113,113,113, 22,158,231,115,205,102,243,155, 13,105, -154, 76,166,196,117,235,214, 5, 91, 44,150,234, 17,135, 70,163, 17, 63,253,244, 19,140, 70, 35,228,114, 57,236,237,237,145,148, -148, 4, 66,136,153,227,184, 68,225, 72, 60, 78,131, 5, 44,238, 54,114,209, 34, 80, 16, 16,124,248,144,185, 2, 0, 92,207,164, -154,214,126,228,237,214,237,123, 46,170, 52,101,139, 27,155, 0, 3,199,141,138,142, 10,221, 10, 0, 70,158,123,185, 41,153, 40, - 49,232,159,111,223,177,203,175, 60,165, 98,150,163, 27, 25, 6, 59, 13,192,157,196,228,134, 71,206,213,109,218, 40,236,163, 86, -227,149, 97,137, 21, 35, 6,169, 5,148,103,225,212,237, 23, 76, 24,214,213, 63, 58,204,217, 31,188, 5,148, 90,224,210,231, 20, -240,190, 77,131,154,103,174, 26,158,233, 24, 33,127,227,200,233, 43, 19, 57,158,122,139, 24,146,109,176,240,223, 60,170,185, 2, -128,204,204,204,211,225, 65,228,232,245,238, 94,207,184, 87, 78,179,154, 87, 4,228, 21,227,104,102,102,233,233,166,104, 22,234, - 45,195,223, 91,185,247, 55,153, 88, 36, 6, 40,248,202, 5,175, 13,102,174,160,202,132,181,109, 65, 84,239,110,100,183,138, 68, - 36,173, 33,189,139, 55,178, 62, 31,243,238,241,119,110,221, 47,220,152,146, 89,241,228,147,146, 73,111,134,248,144,133,137, 25, -165,239,220,188, 95,248,105, 99,251, 77, 16,224,203,232, 97,139,254,180,237, 81,203,243, 78, 26,189, 6, 96, 68,235, 0,210,111, -204,164, 47,102, 19, 2, 97,153, 8, 1,129,255, 33,170,162, 88, 12,195,124,244,184, 52,171,162, 88, 0,238, 55,226, 59, 23, 1, -180,121,156,121,139,139,139,203, 7,144, 47, 28,229,191, 22,242, 87, 78,227,243,255, 57,196,221, 54,136, 44, 81,122, 59, 70, 86, - 45,129, 83,221, 44, 88,105, 50, 40,165, 15,172,243,155,151,111,188,122, 61,137, 46,172, 67,147,121,196, 36,242,141,201,123,139, - 22, 45,232,253,251,247,173,234, 44, 40, 52,109, 8,154,130,166,160,249, 63,168,249, 87,220,147, 31,181,115, 54,253, 95, 63, 70, - 79, 26, 66,179, 71, 29,212, 52, 75,143, 1,254,239, 76,251,189,123,247,136,112, 4, 5, 4, 4, 4,254,214,123,178, 48,233,176, -192, 3, 48, 66, 17, 8, 8, 8, 8, 8, 8, 8, 8, 60, 94, 8,128,136, 90,173,120, 35, 66,127,132,144,136, 70, 91,253, 6,244, - 5, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,124,242, 52, 27,210,126, 82,154, 30,133, 62, 88,130,166,160, 41,104, 10,154,130, -166,160, 41,104,254,227,154, 79, 26, 66, 19,161,128,128,128,128,128,128,128,128, 96,176, 4, 4, 4, 4, 4, 4, 4, 4, 4,131, - 37, 32, 32, 32, 32, 32, 32, 32, 32, 24, 44, 1, 1, 1, 1, 1, 1, 1, 1, 1,193, 96, 9, 8, 8, 8, 8, 8, 8, 8,252,107, -248, 75, 71, 17, 10, 8, 8, 8, 8, 8, 8, 8,252, 47,194, 0, 0, 33,132, 86,254,245, 20,138, 68, 64, 64, 64, 64, 64, 64,224, -239,230, 73,243, 34,213, 75,229, 80, 74, 9, 33,132,226,209,215, 83, 18, 16, 16, 16, 16, 16, 16, 16,104, 52, 79,146, 23, 97,106, - 58, 71, 0,189,132,195, 43, 32, 32, 32, 32, 32, 32,240, 79,240, 36,121,145, 7, 34, 88,194,161, 21, 16, 16, 16, 16, 16, 16,248, -167,120,146,188,136, 48,138, 80, 64, 64, 64, 64, 64, 64, 64,224, 49, 35,140, 34, 20, 16, 16, 16, 16, 16, 16, 16,120,204, 8, 17, - 44, 1, 1, 1, 1, 1, 1, 1,129,255, 79, 6,139, 16, 18, 33,104, 10,154,130,166,160, 41,104, 10,154,130,166,160, 41, 24, 44, - 1, 1, 1, 1, 1, 1, 1, 1, 1,193, 96, 9, 8, 8, 8, 8, 8, 8, 8, 8, 6, 75, 64, 64, 64, 64, 64, 64, 64, 64, 48, 88, - 2, 2, 2, 2, 2, 2, 2, 2, 2,130,193, 18, 16, 16, 16, 16, 16, 16, 16,248,135, 32, 0,106, 29, 9, 64, 41,189,105,181, 72, - 19, 70, 19, 52,164, 47,104, 10,154,130,166,160, 41,104, 10,154,130,230,147,167,217,144,118, 99,252,199,191,218, 96,253,149, 19, -141, 18, 66, 34, 30,119, 65, 9,154,130,166,160, 41,104, 10,154,130,166,160,249,228,105, 62,105, 8, 77,132, 2, 2, 2, 2, 2, - 2, 2, 2, 79,138,193, 34,132, 48,132, 16,113,229, 31, 67, 8, 33,255, 70, 77, 1, 1,129,127, 39,228, 33,132, 18, 17, 16,104, - 58,177,177,177, 52, 47, 47,143, 42,149,202,120, 66,200, 36,161, 68, 30, 29,241,227, 20,107,233,169,232,220,220,207, 99,240,161, -216,180, 5, 13, 25, 33, 31, 31,159, 21, 30, 30, 30,147,116, 58,157, 1, 0,101, 24,134,182,106,213, 10,132, 16, 84,221, 43, 57, -142,203,141,143,143,183,170,253,247,113,106,134,134,134,198, 50, 12,227, 91,243,158,221,208,107,158,231, 51,111,223,190,221,161, -161,116, 42,149,202,254, 12,195,204,107,104, 63,158,231, 87,100,101,101, 29,169,111,159, 54,109,218, 92,177,179,179,243, 98, 24, -166,206,202,165,102, 19, 48,203,178, 84,167,211,105,111,221,186, 21,217,216, 99,235,227,227,243, 29,128, 80, 0, 59, 24,134,217, -154,145,145,145,227,227,227, 3,158,231,145,149,149,213,232,115, 69,165, 82, 77, 2,240, 33, 0, 10, 96,177, 70,163, 89,223,152, -239,183,104,209, 34, 86, 42,149,250,138, 68, 34,242,240, 49,169,237, 61,207,243,212,100, 50,101,222,189,123,183,131,112,217, 63, - 25,230,202,207,207,175,189,151,151, 87,128, 94,175,231, 0,160,117,235,214, 84, 36, 18, 61,176,159,217,108, 54,199,199,199, 31, - 20, 74, 76, 64,160,126,142, 29, 59,134,137, 19, 39,226,198,141, 27, 45, 15, 30, 60,248,149, 74,165,154,146,149,149,213,155, 82, -154, 43,148,206, 63,108,176, 66,148,246, 45,189,221,221,246,255,103,217, 98, 0, 88, 80,159, 17, 82, 42,149,255,233,209,163,199, -171, 91,182,108,177,219,189,123,183, 93, 64, 64, 0,164, 82, 41, 68, 34, 17, 68, 34, 17, 24,134,129, 72, 36,194,240,225,195,173, -122, 42,125, 88,243,196,137, 19,118,161,161,161,213,149, 44,165,180,218,100, 13, 26, 52,168, 65, 77,134, 97,124,175, 92,185,226, -105, 99, 99, 83,253,125,158,231, 31,248,163,148, 86,255,113, 28,135, 30, 61,122, 88, 85, 78, 12,195,204,187,115,231,206, 83,229, -229,229, 15,104, 84,253, 70,213,235,167,158,122, 10, 0,142, 52,160,165,250,227,204, 9, 79, 98, 78, 6,216, 2, 80,145, 43, 32, - 11, 4, 24,121,173,251, 23, 20, 20,160,119,239,222,162,166, 28, 95,134, 97,158,185,126,253,186,178,180,180, 52,122,229,202,149, -243,125,124,124, 14, 1,248, 41, 59, 59,251, 52, 0,190, 9,146, 75, 19, 19, 19, 93, 40,165, 8, 9, 9, 89, 2,160, 81, 6, 75, - 36, 18,249, 30, 59,118,204, 83, 38,147, 85, 31,231,186,254,115, 28, 7,179,217,140, 1, 3, 6,176,194, 37,255,228,152,171,129, - 3, 7, 54, 91,191,126,189,248,206,157, 59,226, 86,173, 90,129,227,184,234, 63,158,231, 27,117, 93, 10, 8,252, 47,210,108,228, -198,175,120,214, 92, 25,173,114, 6,240, 13, 74, 75, 75,241,250,235,175, 99,239,222,189,173, 58,119,238,188, 2,192,171, 66, 73, -253,131, 6, 43,216, 71,225,227, 32,183, 59,186,225,235, 47,136,165, 84,235, 82,159, 17,242,246,246, 94,218,163, 71,143,151,183, -108,217,226, 66, 8,193,137,105,175,193,217,108,128,234,131, 79,224,226,238, 1,211,188,137,112,224, 88,180, 57,121,205,218,155, -237,159, 52,239,222,189,139,130,130, 2,120,120,120,192,214,214, 22,114,185, 28, 82,169, 20, 50,153,204, 90, 77,216,216,216,224, -216,177, 99, 16,139,197,213,127, 34,145,168,214,247, 94, 94, 94, 86,151, 21,207,243, 43,194,194,194,218, 38, 36, 36, 56, 22, 22, - 22,162, 75,151, 46, 37,132,144,235, 53, 34, 78,109,175, 95,191,238,104,117,101, 99, 78, 70, 89,250,215,160,133, 59, 1,231,145, -224, 28,199,192,128,192, 7, 42,153, 42, 83,200,113, 92,147, 43, 52,149, 74,197, 93,185,114, 5,173, 91,183, 22,125,254,249,231, - 30,203,150, 45, 27,127,226,196,137, 81, 51,103,206,220, 2,224,173, 38,200,218, 0, 64, 76, 76, 12, 0, 40,154,146, 46,153, 76, -134, 11, 23, 46,128, 82, 90,109,202, 25,134, 1,195, 48,216,119,223, 29,229, 38, 6, 58,237, 77, 76, 31,218, 12, 1, 1, 1, 16, - 90,145,158, 12,115,165, 84, 42,219, 62,243,204, 51,126,235,215,175,151, 2,192,205,155, 55,145,149,149, 5, 79, 79, 79,216,216, -216, 64, 34,145, 64, 36, 18, 65, 42,149, 10, 5, 38, 32, 80, 95,125,196,154, 39,181,235,208,181,250,253,230, 99,107, 97,116,138, -132,250,195, 15,177,122,245,106,180,104,209,162,163, 80, 74,255,160,193,138,240,119,114,150, 19,201,209,141,235, 87,201, 96, 46, -119,185,123,249, 15,180, 30,248,102,149, 89,184, 89,243,198, 8,128,241,242,242,154,252,203, 47,191, 56, 86, 85,118,161,132,131, - 51,204,104, 30, 30, 14, 91, 39,103,104, 89, 51,168,197, 12,153, 84, 90,107,133,104,141, 38,195, 48,144, 72, 36, 15,252,201,100, - 50,212,140,118,212,165,249, 64,225, 84,154,168, 99,199,142,193, 98,177, 96,212,168, 81,181,154,173,218,168, 75, 51, 43, 43,235, -136,143,143,207,117, 74,233, 83, 60,207,131, 16,114, 93,173, 86,247,172,250, 92,169, 84,246,111,215,174,221, 60,158,231, 87, 52, -164, 73, 41, 5,216,124,208,130, 95,224,208, 37, 15, 37,231,221, 65,236,250,130, 67, 51,220,188,159,141, 19,177,169,200, 43, 40, - 67, 84,168, 39,158,233, 18, 4,158,231,173, 78,103, 77,252,252,252,134,180,107,215,206,174,164,164, 4, 39, 79,158, 4, 33,132, - 70, 69, 69,161, 95,191,126,182, 34,145,104, 40, 33,100, 18,173,209, 22,105,229,200,146,248, 51,103,206, 68,230,229,229, 1, 64, -124, 67, 59,215,166, 73, 8,193,143, 63,254, 8,131,193,240,167,253, 93,122,126,140,119, 70, 54,195,132,105,155,241, 73,194,118, -124,249,229,151,120,120,196,236, 95, 49, 2, 70,208,252,235, 53,149, 74,101,224, 55,223,124, 35,169,185, 77, 42,149, 86, 71,193, -107, 70,195, 31,110, 50, 20,202, 83,208, 20, 52,255, 11, 35,150,174,191, 22,123,110, 18, 0,148,220,217,133, 25, 47,118, 69,105, -233,125,188,245,214, 66,168,213,106,220,187,119, 47,238,239, 76,231, 19,107,176, 8, 33,148, 82,218,168, 71,124, 95, 95, 98,227, -192, 41,246,127,245,249, 10, 39, 7,123, 91,143,216,163,123,144,150,150, 93,239,119,116, 58,157,105,239,222,189, 56, 58,229, 85, -180, 32, 44, 92, 62, 88, 9, 79,149, 10,197,175, 14, 71,153,197,140,224, 67,151, 32,183,183,135,204,206,222,234,136,131, 78,167, - 51,157, 58,117, 10,183,110,221,130, 88, 44,134,189,189, 61,236,236,236, 32,151,203,171,141, 85,213, 13,216, 90, 77, 74, 41,196, - 98, 49,110,222,188,137,180,180, 52, 56, 59, 59,227,143, 63,254, 64,223,190,125, 31, 48, 87, 34,145,232,129, 62, 94,141, 56,225, -107,141, 40, 85,246,187, 58, 98,181,144,196, 29,112,125, 25,165, 23, 84,128,203, 88, 88,168, 19,120,202,227,234,253,124,188, 57, -118, 48, 0, 96,242,251, 95,163,111,167,128,234, 38, 72,107,241,247,247,183,229, 56,110, 97,135, 14, 29, 94,123,245,213, 87, 29, -100, 50, 25, 44, 22, 11,204,102, 51,174, 92,185,130,126,253,250,193,193,193,129, 52,111,222, 92, 12,192,210,200,115, 47,201,222, -222, 62, 82,167,211, 1, 64, 82, 19,163, 25,216,182,109, 91,173,159,189,178,234, 54,196, 21,221,179,176,126,253,122,176, 44,139, -198,158,223, 2,255, 78,116, 58, 29,119,231,206, 29,201,181,107,215, 32, 18,137,224,232,232, 8, 91, 91, 91, 72,165, 82,200,229, -242,106, 99, 37, 68,176, 4, 4,234, 39,109,215,235,147, 9, 33, 75,252,253,253, 79,127,189,124,121, 72,159, 62,125, 0, 0, 39, - 78,156,192,247, 47,190,136, 15,129,113,107, 9,201,154, 78,233,252,191, 43, 77, 77,241, 34,255,106,131, 85,149,161,198,100,140, - 16, 66,130,189, 28,182, 47,126,111,106,128,127, 96,144,247,197, 3,219,144,156,172,134, 86, 91, 88,151,161,160,132, 16,158, 16, -194, 7, 6, 6,194,209, 98,128, 19, 53,193, 83,169,130,131,171, 27, 10, 45,149,145, 43, 59, 59,200,236,236,173,186, 57,214,212, - 12, 15, 15,135, 86,171,133, 84, 42,133,189,189, 61, 28, 28, 28,170, 13, 86,149,185,178,246,134, 75, 8, 1,207,243, 16,139,197, -184,126,253, 58,186,119,239, 14, 63, 63, 63,252,250,235,175,232,223,191,255,159,162, 88, 77,105,122,170,234,115, 85, 51,114,197, - 48,204, 60,107, 58,183, 63,128, 44, 24,172,195,243, 96,108,251,192, 76, 29, 97,164,202,202, 38, 65,138, 3,151,180, 72, 72,203, -123,160,185,208, 90,124,124,124, 58, 42, 20,138, 47, 62,253,244,211,112,149, 74, 37,215,233,116, 32,132,160,202,100, 41,149, 74, -176, 44, 75, 75, 75, 75,139, 50, 50, 50,254,246,190, 77, 85,101,126,244,232, 81, 16, 66,170,141,110, 85, 83, 97,121, 86, 6, 38, - 76,223, 2,153, 24,184,126,253, 58,194,194,194,132,187,233, 19, 68,104,104, 40,114,114,114, 32, 18,137,224,224,224, 0, 59, 59, - 59,180,108,217, 18, 25, 25, 25, 15, 68,177, 4, 4, 4,234, 71, 36, 18,173,216,179,103, 79,136,141,141, 13,150, 45, 91, 6, 7, - 7, 7, 92, 88,178, 4,223, 75,165, 80, 0, 88,111, 54,207, 3,240,183, 24,172,166,120,145,255, 23, 17,172,198,226,235,235,251, - 89,231,110,157,158, 10, 12,143,182,185,120,120, 23,238,223, 75, 67, 94, 94, 49, 40,160,175,207, 87, 16, 66,168, 68, 34,129,231, -156,143,224,223,166, 13,116, 19,159, 67,161,197,140,160, 3, 23, 32,183,183, 71,124,191, 72, 80,147, 9, 61,238,104,173, 53, 46, -148, 16, 66, 1,192,221,221, 29, 82,169, 20, 54, 54, 54,176,177,177,169,238,123, 85,243,207, 90, 51,196,243, 60, 74, 74, 74,144, -146,146,130,137, 19, 39,194,214,214, 22,132, 16,104,181, 90, 52,107,214, 12, 34,145, 8,106,181, 26, 39, 79,158, 68, 96, 96, 32, -100, 50, 89,163, 78,134, 26,157,218,219,250,248,248,156, 38,132,180,141,141,141,117,236,208,161, 3, 26, 21,193, 34, 82, 24,209, - 12, 28,124,193,211,255,246,181,178,176, 15,122,158, 42,147,101, 13,126,126,126, 3, 59,118,236,184,233,211, 79, 63,117,117,112, -112, 16,113, 28, 7,150,101,105, 97, 97, 33, 74, 74, 74,224,239,239, 15, 39, 39, 39,236,218,181,171,140,227,184,173,244,175,156, -173,182, 1,147,197, 48, 76,117, 4,177,170,255, 21,195, 48,152, 62,204, 31,133,133, 14, 16,137, 42,222, 91,155,119,129,127, 55, -148, 82, 26, 17, 17, 65, 69, 34, 17, 60, 61, 61,171,205,148, 68, 82,209, 98,232,229,229,133,146,146, 18,136, 68,162,234,109, 2, - 2, 2,117,211,162, 69,139, 40, 31, 31, 31,204,156, 57, 19,134, 95,126, 65, 25,128, 33, 0,246,152,205, 0, 0, 7, 96,182, 80, - 74,127,163,193,242,245,245,157,218,174, 93,187,215,191,253, 97,139,253,127, 22,206, 41, 41,188,115, 67,100,210,155,237,140, 22, -139, 41, 49, 43,127,109,125, 55,199,176,176,176,138,167, 78,103, 23,216, 58, 58,193,248, 80,228,138,154, 76,224,205, 38, 72,173, -188, 57, 86,105, 82, 74,161, 80, 40, 32,147,201,106,141, 92, 53, 38,130, 5, 0, 69, 69, 69,216,182,109, 27, 58,118,236, 8, 91, - 91, 91,136, 68, 34,180,109,219, 22,119,238,220, 65, 80, 80, 16, 0, 96,207,158, 61, 24, 57,114, 36,238,223,191,143, 86,173, 90, -217, 55,214, 96,113, 28,135,163, 71,143, 58, 82, 74,159,162,148, 34, 55,183,105,163, 97, 57,142, 67,121,121, 57,142, 30, 61, 10, -141, 70, 3,111,111,111, 20, 23, 59,192, 81,197, 87,155,197,170, 63, 43,121,123,220,184,113, 78, 98,177,152,225, 56, 14, 18,137, - 4, 82,169,148,216,216,216, 32, 48, 48, 16, 57, 57, 57,236,152, 49, 99,242,227,227,227,191,115,114,114, 90,217,132,232,131, 24, -128,183,201,100, 2, 91, 97, 4, 85, 74,165, 82,154,149,149,101,110,172, 22,195, 48,213,255,171,254, 8, 33,144, 74, 68,240,246, -242,168,238,248, 94, 25,189, 19,154, 8,159, 16, 56,142,195,229,203,151,241,251,239,191,227,236,217,179, 72, 73, 73,169,254,204, -209,209, 17,199,142, 29, 67,239,222,189,133,130, 18, 16,104,128,123,247,238, 93, 74, 75, 75, 11, 91,184,112, 33, 54,249,248,192, -193,193, 1,179, 22, 45, 58,207,178,108, 87,161,116, 30,131,193,106, 76, 72,206,215,215,119,132, 82,169,252,207,150, 45, 91, 20, - 26,141, 6,170, 22,173, 29,247,237,216,102,244,180,151,234,179, 10, 10,199, 95, 85,151,237,180,166, 82,100,151,204, 66, 62,107, - 66,192,190,115,144,219,219, 35,161,127, 7, 80,147, 9, 93,227, 82, 33,183,183,135,216,166,241, 3,203,106,139, 88,213,252,171, -170,140, 27,194,100, 50, 57,247,237,219, 23,125,250,244,193,115,207, 61, 87,221, 20,216,190,125,123,108,221,186, 21, 35, 70,140, -192,181,107,215,160, 82,169,208,178,101, 75,180,108,217, 18,167, 78,157,106,236,147, 56,120,158, 71,255,254,253, 75, 8, 33,215, - 41,165,109, 47, 93,186,228,216, 88,141, 42, 3,117,244,232, 81, 12, 30, 60, 24, 65, 65, 65,184,114,229, 10,142,125,180, 18, 98, -123,119,128,241, 4,229,105,117,100,171,161, 96, 83, 64, 64,128,132, 97,152, 86, 78, 78, 78,146,180,180, 52,216,218,218,210,202, -209,152, 68,161, 80, 96,239,222,189,101,179,103,207, 62, 74, 41, 93,172,209,104,110, 55,246, 24, 41,149,202,118,174,174,174, 63, - 78,153, 50, 37,188, 93,187,118, 16,139,197,104,222,188,121,183, 15, 62,248, 32,222,215,215,119,108,102,102,230,197,198, 68,176, - 76, 38, 19, 68, 34, 17,246, 36,120,160,220, 68, 80,146, 25,135, 25,195,154, 85,155,173,170,166,222,170,233, 47, 4,158, 28,131, - 85,117,140,107,163,174, 14,238, 2, 2, 2,127,186,150,230, 13, 31, 62, 60,122,217,178,101,173,102,205,154, 5, 0, 80,169, 84, - 93, 84, 42,213,237,191,123, 30,172, 39,169,121,240,129, 8, 86, 67, 25,235,213,171,215,183, 22,139,229, 89, 59, 59, 59,151,215, - 95,127,221,156,151,151,135,221,187,119,227,251,239,191,215,149, 91, 68,177, 69,249,236,184, 36, 77, 89,166, 53,149, 34,195, 48, -144, 90, 44,160,236,127, 35, 87,188,209, 88, 29,201,146, 40,108, 27,149, 9, 66, 8, 40,165,181,154,170,170, 72, 86, 99,110,182, -114,185,188,232,236,217,179,158,153,153,153, 15,116,104, 15, 8, 8, 0, 0, 92,186,116, 9, 23, 46, 92,192, 11, 47,188, 0,177, - 88, 12,169, 84,138,235,215,175,151, 54, 38,205, 85,134,167,106, 20,161, 82,169,236,223,169, 83,167, 90, 71, 15, 90,163,149,158, -158,142,160,160, 32, 24,141, 70, 56, 59, 59, 35, 63, 43, 5,233, 41,201,208, 25, 19, 16,232,109,131,156,156, 28,200,229,242, 6, -181,188,188,188,120,181, 90, 93, 29, 9,210,233,116, 72, 77, 77, 69,112,112, 48,189,116,233,146,254,221,119,223, 93,162, 86,171, - 27, 29,181,242,244,244,148,137,197,226, 69,189,122,245,154,211,191,127,127, 81,113,113,113,117, 68,205,198,198, 6, 27, 55,110, - 12,140,137,137, 57,239,231,231,183,150, 82,186, 32, 51, 51, 83,215,208, 49, 7,128, 77,155, 54, 1, 0,108, 59, 47,194,188,209, -205,241,242,228,205,248,236,179, 93, 15,228, 85, 36, 18, 97,241,226,197,194,157,244, 9,163,111,223,190,232,223,191,127,117, 51, -161,187,187, 59,204,102, 51, 88,150, 21,204,149,128,128, 21, 52, 27,185,241, 43,223,161, 95, 78, 2,128,217,107, 78, 96,193,146, -207, 49,246,185,254,152, 48, 97,194, 63, 54, 15,214, 19,219, 7,171, 30,115,245,138,139,139,203,139,175,190,250,170,226,210,165, - 75, 88,178,100,137,248,216,177, 99,230,203,151, 47,179, 28,199,205, 86,171,213, 27, 26,243,163, 12,195, 32,112,203, 1,168,188, -189,113,111, 64,244, 3,145,171,211,109,125,193, 27,141,232,151, 92,220,232,204, 84, 54,101, 85, 27,171, 42,115, 85,215, 84, 10, -245, 81,245, 4,252,240,188, 87,111,189,245, 22,190,253,246, 91,116,237,218, 21, 33, 33, 33, 16,139,197,213,102,164, 41, 17,172, - 42, 26, 61,122,240,161,167,121,127,127,127,220,184,113, 3, 78, 78, 78,248,241,199, 31,225,231,235,131,113,207, 4,192,100, 50, -193, 98,177,160,188,188,188, 42,130, 85,111, 66,207,159, 63,207,249,248,248, 36,158, 59,119,206,190,111,223,190, 10,134, 97,136, - 94,175, 7, 33,132,188,243,206, 59,165, 98,177,248,155,198,166, 79,165, 82, 77,178,181,181, 93, 61,114,228, 72,105,112,112, 48, -210,210,210,144,144,144,128, 47,191,252,242,182, 66,161, 48, 78,159, 62, 61,170, 91,183,110,104,223,190, 61,217,184,113,227,140, -133, 11, 23, 78, 81,169, 84,239,104, 52,154, 53, 13,153,172,173, 91,183, 2, 0, 94, 91, 19, 15,147,169, 98, 32,227,250,245,235, -225,237,237,253,192,190,137,137,137,194, 40,194, 39, 44,130, 85,115,180, 96,149,161, 18,204,149,128, 64, 35, 30,206,107,206,131, -213,161, 43,254,216,181, 18, 91, 19,252,161, 94,178,228, 31,157, 7,235, 73,185, 87, 55,216,102,214,169, 83, 39,135,162,162,162, - 53,227,199,143, 87,148,151,151, 35, 47, 47, 15,249,249,249,184,120,241,226, 49,147,201,212,186, 62,115, 69, 8,137,168,173, 82, - 20,137, 68,112,245,240,132,220,222, 1,212,100,170,142, 92, 73,109,237,192, 27,141,224,205, 38,160,142,230,156,186, 52, 9, 33, -127,138, 90, 89,107,174, 30,214,172,138,136,213, 54,169,168,159,159, 31, 62,254,248, 99, 12, 27, 54,236,129,105, 26,172, 73, 39, - 80, 49, 90,144, 82,218,182, 42,242, 68, 41,109,171, 84, 42,251, 91, 25,169,139,168, 43,130,213,179,103, 79, 28, 59,118, 12, 11, - 22, 44, 64, 74, 74, 10, 6, 14, 28, 8, 66, 8,156,156,156,224,237,237, 13, 23, 23, 23,216,216,216,160,106, 64, 64,125,154, 34, -145,232,165,117,235,214,253, 60,117,234,212,188,204,204, 76,147, 82,169, 4,165,148, 22, 23, 23, 91, 82, 82, 82, 74,154,144,206, -143,246,238,221, 43,125,233,165,151,112,253,250,117,236,219,183,207,116,250,244,233,119,236,237,237,219, 94,187,118, 45,122,193, -130, 5,147, 23, 47, 94,172,203,201,201, 65,100,100, 36, 14, 28, 56, 32, 6,176,208,154,188, 95,188,120, 17,177,177,177, 96, 11, -238, 96,242,188, 79, 96,111, 43,193,221,187,119,113,235,214, 45,220,190,125, 27,119,239,222,197,189,123,247, 26, 85,158,143,130, -160,249,247,105,214, 52, 87, 18,137, 4,122,189,222, 42,115, 37,148,167,160, 41,104, 86, 26,128,138,121,176,112, 45,246, 28, 78, -255, 48, 11, 83,134, 4, 96, 68,243,251, 88,184,176,225,121,176,254,138,116, 62,105, 52,232, 62,116, 58,221,146,208,208, 80,217, -157, 59,119,144,152,152,136,132,132, 4,112, 28,119, 63, 51, 51,115, 72,147, 93, 29,195,192,201,201, 9, 50,153, 12, 93,110,168, - 33,147, 74, 33,179,171,232, 35,222, 47,185, 24,160, 20,140, 76,222,104,205,135,231,188,122,148, 81, 68, 28,199, 85,207,208, 94, -101,224,106, 27,173,214,216,200, 21,195, 48,243,206,159, 63,239,152,150,150, 6, 74, 41,118,237,218,229,248,220,115,207,205,107, - 74,244,138, 82,138,252,252,124,240, 60, 15,137, 68,130,167,159,126, 26,145,145,145, 40, 43, 43, 3,199,113,213,205,151, 82,169, -180, 81,163, 8,211,211,211,213, 0,222,242,241,241,217, 48,117,234,212,133,221,187,119,239, 62,115,230, 76, 71, 52,125,212, 41, -199,243, 60, 78,158, 60,137,131, 7, 15,154, 89,150, 13,211,104, 52, 41, 53, 62, 95,239,235,235,187,239,252,249,243,201, 23, 47, - 94,148,149,148,148, 0, 0,103,197,185,137,144,144, 16,112, 28,135,255, 76,246, 69,105,105, 27, 84,142,120,132,173,173,237, 3, - 75, 16, 9,179,184, 63,121,212, 52, 87, 66,159, 43, 1,129,198,147,182,235,245,201, 0, 38, 19, 66, 94, 88,180,104,209, 47,147, - 39, 79, 6,207,243,136,137,137,193,151,115,231,226, 67,142, 27,183,150, 16,221,116, 74, 39, 11,165,245, 24, 13, 86,199,142, 29, -155,151,151,151,255,104,177, 88,218,243, 60, 47, 59,125,250, 52, 12, 6, 3,238,220,185,163,231,121,126,199,163, 28,211,129, 3, - 7, 50, 15,175, 23, 87,135,201,177,182,115, 93, 90,223,190,125, 31,155, 38,207,243,153, 53,215, 48,171, 75,183,230,123,150,101, - 51,173, 73, 40,207,243, 43,186,116,233,242,167,109, 77, 41, 72,158,231,147,251,244,233, 99,126,216,116,213,246,186, 70,254, 51, -173,213, 87,171,213,215, 0,140,240,243,243,235,119,246,236,217,217, 12,195,104,154,120,204, 23, 15, 26, 52,104, 17, 42, 70,241, -125,248,144,185, 2, 0,100,102,102,106, 84, 42,213,219,109,219,182, 93, 84,245,157,134,242,222,175, 95, 63,115, 67,139, 60,215, -236, 4,205,243,124,166,112,201,255,255,135, 16, 82,246,240, 53, 84,207, 67,136, 65, 40, 49, 1,129,250,145, 75,165,227,166, 76, -153,130,159,126,250, 9,187, 87,175, 70,255,204, 76,108,149, 74,161,144, 74,177,222,108,158, 4, 64, 48, 88,143,211, 96,149,150, -150,126, 92, 80, 80,208,185,164,164,132, 77, 78, 78,214, 19, 66, 88, 66,136,158,231,249,143,120,158,255,186,169, 63,120,251,246, -237, 46,143, 59, 19,143, 91,243,246,237,219, 29,254,170, 2,127,148,190, 86,181,164,243,111, 25, 70,155,145,145,113, 12,192,177, -166,126, 95,163,209,172,135, 21,139, 57, 91,187, 31, 0,196,199,199, 11, 67,136,255, 71,185,113,227,198, 73,161, 20, 4, 4, 30, - 31,215,110,220,232, 15, 0, 3, 7, 14,132,126,118,197,180, 87,155,255, 59, 15,214,250,127, 73, 50,163, 1,120, 84,190,206, 3, -112, 23, 64, 20, 42,214,178, 53, 2, 40, 3,224, 94, 99,255,252,202,207,170, 62,255, 29,141, 95,113,228,145,168,179, 15,214,221, -187,119, 95,200,205,205, 21,155, 76, 38, 57,199,113,182, 44,203, 58, 90, 44, 22,111,142,227,214, 83, 97,188,187,128,128,128,128, -128,192, 19, 65,104,104, 40,113,119,119, 39,161,161,161,228,125, 74, 31,248,251, 23, 53, 15,122, 16, 66,246, 19, 66,246,207,159, - 63,191, 55,128,174,243,231,207,239, 88,249,190, 3, 0,247,170,207, 9, 33,251, 1,184, 61,244,121,187,191, 59,193,140,112,106, - 9, 8, 8, 8, 8, 8, 8,252,127,128, 82, 58,100,197,138, 21, 31, 3, 16,173, 88,177,226,227, 26,239, 65, 41, 29, 82,243,255, - 67,159,123,252,221,105, 37, 0, 34,234,200,132,213, 43,101, 55,101, 52, 65, 67,250,130,166,160, 41,104, 10,154,130,166,160, 41, -104, 62,121,154, 13,105,215,241,253,193,132,144,253,148,210, 33, 53,255,215, 52, 94,149,154,251,107,190,126,232,243, 3,127,183, - 27,252,203,254, 0, 68, 8,154,130,166,160, 41,104, 10,154,130,166,160, 41,104, 62,226,223,224, 10,203, 82,247,255,186, 94,215, -216,246,119,166,183,158, 97,247, 59,118,136,212,173,224, 40, 83,216, 74, 1,192,164,215,153,125,238,160, 4,163, 70,113, 16, 16, -104,108,168,148, 16,175, 74, 67,175,125,156,251, 10, 8, 8, 8, 8,252, 79,213, 37,251,231,205,155,247,222,255,135,180,138,235, - 50, 87,121, 29,108,221,197,198,194, 80,142, 53,135, 1,128,152,161,241,121, 29, 92, 18,220,119,236,200,123,220, 38,107,224,192, -129,239, 81, 74,189, 36, 18,201, 1,111,111,239,152, 13, 27, 54, 88,158,208, 19,195, 42,227,240, 40, 6,227, 17,205, 73,131,147, - 69,133,134,134,218, 41, 20,138, 81, 28,199, 5, 85,206, 47,149, 72, 8,217,126,227,198, 13, 61, 0, 90, 71,154,150, 19,130, 57, -149,175, 63,161,148,206,175, 39,253, 86,239, 91, 19,127,127,255, 0, 27, 27,155, 87, 8, 33,173, 42,243,127,199, 96, 48,252,144, -158,158,158,242,191,118, 3, 82,169, 84, 10, 74,233,179, 18,137,100,188,171,171,107,199,220,220,220, 15,213,106,245,231, 77, 60, -103,197, 0,102, 59, 59, 59,191,224,236,236, 28, 88, 80, 80,144, 84, 82, 82,178, 13,192,103,148,210, 6,175,211, 37, 83,125, 58, - 63, 53,168,231,194,223, 15,158, 94,178,112,157,250,194,195,159, 47,126, 71,229,246,116,159,110, 11, 15, 29, 56,247,209,199,235, -212, 5,141, 76, 27,131,255,246, 35,229, 43,159, 82,233,191,248,184,180, 7, 48,151,227, 56, 9,195, 48,159,103,101,101,157,253, -183,159, 75, 97, 97, 97,115,100, 50,217, 36,134, 97,146,180, 90,237,171, 26,141, 38,243, 49,221, 11,153,102,205,154, 57,164,165, -165,149, 82, 74,121, 8, 88, 69,151, 46, 93,180,102,179,217,179,190,125,164, 82,105,206,249,243,231,189,158,192,236,231, 85, 53, -253, 1,200, 1, 32,170,124,111,170,252,175,173,177, 77, 91,199,231,255,188,193, 82,183,130,163,216, 88, 24,154,175,189, 61, 38, - 55,235,234,243, 0,224,161,108,191,205,205, 43,252, 87,117, 43,153, 57, 58,108,164,189,196, 86,252,149, 72, 36,105,111, 48, 25, -221, 37, 98, 73,158,153,181, 92,101, 76,116,114, 86,252,174,116,107,126,120,232,208,161,161, 0,156, 34, 35, 35, 47,155, 76,166, -142,159,127,254,185,114,231,206,157,109,227,226,226, 94, 28, 54,108,216, 62, 74,233,145,125,251,246,233, 27,117,209,246,234, 37, -246, 44,114, 29, 39, 18,139,135, 2,104, 75, 41, 0, 34,186,206, 91,204, 7,114, 92,242,127,160, 49, 49,108,147, 79,236, 40,183, - 80,194,155,223,149,136,104, 15, 11, 71,206, 80, 70,186,242,124, 92,126, 66, 35,110, 40, 86, 25,135,166, 26,140,135,191, 43, 18, -137,190,224, 56,110,230,227, 60, 89, 66, 67, 67,237, 28, 29, 29,223, 95,191,126,189, 99,171, 86,173, 8, 0,196,197,197, 57, 79, -155, 54,173, 69,155, 54,109,150,220,184,113, 67, 87,155,225, 35, 4,115,120,158, 50, 0,192, 48,100,174,151,151,151,171, 88, 44, -254,211,177,101, 89, 86, 65, 8, 94,231,249,138,101, 18, 24,134,204, 33,132,172,105,200, 44, 6, 5, 5, 61,219, 62, 50,122,250, -219,239,206,245,242,116,115,119, 96, 57,214,172, 86,103,169, 86,127,254,159,206, 65, 65, 65, 95, 37, 37, 37,237,105, 66, 5, 64, -124,125,125,199, 72, 36,146, 33, 0, 90, 85,110,190, 99,177, 88,246,103,102,102,254,106,109, 69,222,174, 93,187,223, 25,134,105, -222,152,223,230, 56, 46,253,250,245,235,221,155,114,140,124,124,124, 70,251,248,248,124,223,185,115,103,219,246,237,219, 67, 42, -149,226,147, 79, 62,153, 13,224,115,107,140,148,173,173,237, 24, 59, 59,187,160,178,178,178, 68,189, 94,191, 83, 38,147,245, 93, -179,102,141, 95,183,110,221, 28,180, 90, 45, 17,137, 68, 94,251,246,237, 27,247,197, 23, 95,244, 39,132,244,161,148,214,123, 77, - 21, 38,241, 11,229,146,176, 30,133,137,167, 22, 2, 24,248,167, 99,110,176, 25, 47,146,248, 13, 17,209, 43, 25, 0, 62,107, 76, - 5,237,235,235,187,198,203,203,107,130, 94,175, 55, 16, 66, 40, 33,132,182,105,211,166,234,115, 0,128,201,100, 42,188,123,247, -110,203,250,180, 2,186,184,198,138, 24,145,111,157,199,131,231, 50, 83,206, 23, 60,242,212, 45,148,210,153,215,174, 93, 27, 37, - 22,139, 73,187,118,237,236, 8, 33,253,173, 53, 23, 42,149, 42,148, 16,178,128, 82,122, 57, 43, 43,235, 43, 74, 41,231,227,227, -211,155, 82, 90,125,175, 80,171,213,167, 42,207,129,175, 66, 66, 66,134,221,191,127,127,189, 90,173, 94,218,212,244,182,104,209, - 98,242,140, 25, 51, 22, 77,154, 52, 73,145,159,159,223,236,153,103,158,249, 25, 64,143, 71, 41,131,168,168, 40, 73,118,118,246, -236,182,109,219, 78,139,142,142, 86,222,190,125, 59, 91,165, 82,173,245,246,246,254, 44, 46, 46,174, 65,195,222,182,109, 91,149, - 88, 44,158, 0, 96, 92,101, 5,186, 21,192, 15, 87,174, 92, 73,250, 95, 48, 88,102,179,217,243,248,210,133, 32, 34, 17,108,122, -244, 5,207,243,200, 91,185, 8,108, 65, 30,220,151,174, 5,203,178,232,219,183,175,231, 19,154,253, 75,255,223, 18, 92,171,193, -146, 41,108,165, 28,107, 14,203,205,186,250,124,199, 1,107,157, 0,224,210,225,233,207,187,249,180,190, 41, 19,219, 38,200, 29, -109,118,141, 28,218,183,253,168, 33, 61,137,175,210, 19,153, 89, 57, 94,223,109, 61, 50, 96,255,145, 83,187, 80, 49, 47, 69,131, -148,148,148, 44,107,214,172,153,199,137, 19, 39, 82,101, 50,153,194,198,198,134,140, 30, 61, 90,241,226,139, 47,134,159, 60,121, - 50,232,240,225,195,163,134, 15, 31,126, 88, 42,149, 30,216,190,125,123, 97, 67,122, 94,109, 70,132,123,139,189,119, 12,127,118, - 96,243,193,253, 60,101,205,188, 61,192,243, 54,184,155,108,246, 63,118,230,202,128,131,135,143,190,235, 25, 62, 98,116,206,237, -221, 55,172, 45,156,136, 8, 39,103, 5, 67,103, 41,100,244,133, 1, 61,194, 3,134, 14,236, 74, 2,131, 3,145,112, 39, 33,232, -212,233,203, 19,122,119,116, 72,209,155,200, 86, 61, 79, 86,221,188, 89, 92, 84, 95, 84,233, 97,147,209,167, 79,159, 72,133, 66, - 97,170,185,159, 94,175,151, 17,130, 62,141, 53, 24, 53,127,195,100, 50, 50, 18,137, 12, 34, 17, 51, 35, 58, 58,186,139, 86,171, - 61, 97, 48, 24,214,229,229,229,101, 61,234,201,162, 80, 40, 70,125,253,245,215,142, 97, 97, 97, 68,167,211,193, 98,177,192,223, -223,159,121,255,253,247,157,150, 45, 91, 54, 26,192,166,202,138,228,102, 61,233,196,119,223,125,215,202,203,203,203,252,240,103, - 90,173, 86, 58,116,104,227, 22, 8,240,243,243, 11,140,138,238, 52,253,135, 77,155, 58, 21, 23, 20, 24, 54,174, 90,127,197, 40, -150,235,154,181, 10,149, 46, 92,180,212,233,163, 15,230,191,233,231,231,119, 51, 35, 35, 35,217, 90, 77,165, 82,233,223,188,121, -243, 93,239,189,247, 94, 68,247,238,221, 37,158,158,158,208,106,181,184,123,247,110,196, 31,127,252,241,236,158, 61,123,102, 43, -149,202,145, 89, 89, 89, 13, 62, 76, 80, 74, 91,236,253,228, 99, 79,185,155, 59,120,139, 5, 46,109,218, 87,127,166, 57,121, 4, -188,197, 2,222, 98,129,223,224,103,171,246, 71,239,222,189,155, 52, 37,185,175,175,175, 42, 52, 52,244,167,121,243,230, 73,141, - 70, 35,174, 94,189,138,243,231,207,243, 57, 57, 57, 43, 26, 50, 87,132,144,163,139, 22, 45,242,237,222,189,187, 67, 94, 94, 30, - 56,142,115,223,179,103,207,228,200,200, 72, 71, 95, 95, 95,217,230,205,155,171, 86, 8,112, 13, 10, 10,114,125,241,197, 23, 77, - 63,254,248,227,108, 0,255,169, 43,114, 85,148,200, 47,204, 22, 7, 13,104,217,225, 21,100,139,143, 12,152,213, 95,121,200, 57, -136,169,142,100, 13, 12, 14,118, 8, 12,179,157,107,239, 24,225, 90,172, 62, 54,119, 96,112,240,183,135, 18, 19, 75,173, 56,215, - 25, 31, 31,159, 53,131, 6, 13,122,105,253,250,245,182,119,238,220,177,109,213,170, 21,120,158, 7,203,178,224, 56,174,106,221, - 77,212,156, 48,184, 46, 68,140,200,247,143, 93,183, 60, 21, 10, 69,245, 34,236, 85,255,203,203,203,209,127,124,231,199,114,179, -229,121, 94, 86,229,203, 89,150,181, 1, 32, 1, 96,178,242,235,139,207,157, 59, 55,250,208,161, 67, 99,151, 46, 93,218, 2,192, - 84,158,231, 23,222,185,115,167, 39, 0,180,106,213, 74, 6,224,148, 74,165,122,117,210,164, 73,147,166, 76,153,130,241,227,199, - 47, 36,132, 44,107,106, 84, 79, 38,147,125,240,214, 91,111, 41, 44, 22, 11, 20, 10, 5,204,102,115,240,163,228, 63, 60, 60, 92, -170,211,233,118, 46, 94,188,120,200,240,225,195, 33, 22,139,193,243,188,247,239,191,255,190,252,157,119,222,233, 26, 21, 21, 53, -162, 46,147, 21, 21, 21,213, 30,192, 71, 33, 33, 33,253,199,143, 31, 47,234,214,173, 27,202,202,202,112,244,232,209, 5,187,118, -237, 90, 16, 21, 21,117, 14,192,194,184,184,184,152,199, 85, 57, 70, 69, 69,165, 1,240,175,124,155, 30, 23, 23,215,236,223, 80, -105,139,236, 29,112,119,100,111, 4,221,201, 7, 0,100,127,181, 18, 0,224,248,193,167, 66,136,239,255,131,193,106, 8,157, 78, - 23, 57,127,250, 56, 48, 76,197, 83, 98, 72,160, 63,150,191, 55,145,236,221,127, 36,178,129,240,230, 42,142,227, 90,184,186,186, -190,107, 48, 24,108, 86,175, 94,109,163, 86,171,195,118,238,220, 73,175, 93,187, 6,169, 84, 10, 39, 39, 39, 60,253,244,211,242, - 1, 3, 6, 4,159, 59,119,206,127,215,174, 93,195, 7, 15, 30,252,195,129, 3, 7,246,213,165,235,222,102, 88, 11, 47, 15,239, -211,159, 46,125,195, 53, 34, 48, 8, 38,139, 5,153, 57,106, 80,200,224,237,105,135,177,207,182,147,118,235, 32, 13,249,236,203, - 19, 49, 94, 17,195,159,210,222,220,123,171,161, 60,246,136,178,187, 52,162,103,112,212,176,254, 93,153,144, 86,225,144,202,109, -171, 63,107, 19, 25,137, 54,145,145,100,226,196,210,192,107, 87,174,189,127,248,196,197,247,122, 68,217,197,157,137, 43,175,111, - 97, 76, 82,211,100,204,152, 49, 3, 74,165,242,129, 29,178,178,178, 16, 19,115,234,145, 34,239, 53,223,124,248,225,135,178,242, -242,242,126, 27, 55,110,236,173, 82,169, 62,214,104, 52,251, 30,241,233, 41, 56, 44, 44,140,148,149,149,193,100, 50, 33, 53, 53, - 21,185,185,185,240,240,240, 32, 44,203, 6,215, 97, 48,180,132,144, 79, 24,134,204, 37,132, 64, 38,147,167,188,249,230,155,177, -149,159, 5,237,219,183,207,118,232,208,161, 58, 66, 72, 82,197, 77, 93,238, 41, 18, 49, 1, 21,157, 4,241, 73, 67,230,210,214, -214,246,181,153,111,191,227, 81, 92, 80,168,183,148,150,154,237,121,142,117,180,145,144,146,220,252,162,148, 12, 71,221,107,147, -166,139, 63,152, 55,235, 53, 0, 86,181,217, 43,149, 74,255,176,176,176, 75,223,126,251,173,167,155,155, 27,138,138,138,144,159, -159,143, 75,151, 46,129,231,121, 12, 24, 48, 64, 30,217,182,109,228,103,171, 86,157, 87, 42,149, 93,172, 49, 89,114, 55,119,236, -236, 89,113,105,140, 78,202,175, 62, 7, 14,191, 48,180,122,159, 23,211,138, 1,160,106,189,200,166, 70, 72,186,116,235,214, 77, - 10, 0,179,103,207, 46, 41, 47, 47, 95, 78, 8,249, 89,163,209,168, 27,248,234,236,247,223,127,223, 39, 48, 48,176,217,207, 63, -255,140,178,178, 50, 0,240, 12, 12, 12, 68,139, 22, 45,184,211,167, 79, 35, 52, 52, 20, 14, 14, 14, 56,125,250, 52, 46, 92,184, -128,246,237,219, 59, 72,165,210,231,235, 50, 88, 79, 13,234,185, 80, 46, 9,235,209,178,195, 43,176,119, 84,226,219, 95,126,197, -221,216, 31,122, 24, 45,241, 11,223,155,234,243,178,136,202, 95,241,105, 97, 63, 47,160, 67, 47,183,144,214,195,209, 60,234,170, -187,145,251, 61,121,225,148,160, 21, 98, 27,195,230, 69,159,106,242,235, 50, 87,222,222,222, 43, 7, 14, 28, 56,122,253,250,245, -206, 0,112,227,198, 13,100,103,103,195,195,195, 3, 54, 54, 54,144, 72, 36, 16,139,197,141, 90, 42, 75,161, 80, 32, 43, 43, 11, -230,202,201, 21, 57,142, 67,105,105,105,245,162,225,139, 23, 19,102,209, 34,235,162, 77, 74,165,178,123,100,100,228, 22, 95, 95, - 95,191,154,219, 7, 14, 28,136,137, 19, 39,162,188,188, 28,237,219,183,239,230,229,229,101,124,227,141, 55,192,243, 60,180, 90, -109,217,141, 27, 55,250,169,213,234,139,117,228, 91,159,157,157,141, 73,147, 38, 33, 61, 61,125,138, 74,165, 74, 99, 24,198, 70, - 38,147, 85,125, 46, 83,169, 84,161,161,161,161,107,222,120,227, 13,164,166,166, 34, 33, 33,225,210,163, 52,153,202,229,242,114, -142,227, 60, 89,150,133, 94,175,199,128, 1, 3,108,194,194,194,180, 18,137, 36,190,168,168,104,108, 70, 70,134, 85, 15,109,132, - 16,177, 82,169,244,150, 72, 36,235,167, 79,159, 62,168,103,207,158,136,143,143,199,225,195,135, 49,108,216, 48,244,234,213, 11, - 11, 22, 44, 24,188,112,225,194,217, 0,234,122, 24,216,177,115,231,206, 0, 95, 95,223,234, 37,145, 28, 29, 29,241,218,107,175, - 97,220,184,113, 56,120,240, 96,215,143, 63,254,120,103,175, 94,189, 60, 99, 30,161,165,226, 33,252,227,226,226,170,204,150,255, -191,165,210,150,119,232,138,160, 59,249, 72,106,229, 86, 17,193,175, 52, 90, 85,239,225, 19, 41, 56,155,127,179,193, 50,233,117, -102, 49, 67,227, 61,148,237,183, 93, 58, 60,189,186,137, 16, 44,141, 55,153,117,230,138,176, 57, 69,137,142,133, 66,206, 32, 53, -171, 20, 55,147,242,106,187,225,223,124,200,152,189,189,118,237, 90,124,242,201, 39, 3,245,122,125, 89,114,114,114, 86, 89, 89, - 89,249,216,177, 99,137, 68, 34,193, 31,127,252,129,148,148, 20,180,105,211, 6,206,206,206,232,222,189,187,244,153,103,158,241, -123,245,213, 87, 95, 6,176,175, 54, 77, 50,122,180, 72, 41,147,255,182,114,233, 24, 87, 34, 74, 64, 66,122, 17,130,125, 59,194, -205,201, 15,234,220, 50,196,221, 62,136,132,196, 3, 8,246,245,199,196,151,130,157, 63,255, 58,119, 63,137,122, 51,152,198,253, -183,159, 87,109, 17, 23, 27, 41, 23,253,225,218,107,224,202, 19, 65, 45,233,160,230,236, 63, 87,238,206,126, 8,107,231, 5, 91, -153, 7,115,227,206,231,209,117,229,157, 82,170, 21,137, 68, 95, 49, 12,153, 76, 8, 65, 68, 68,155,228,213,171, 87,215,246,228, -106,138,136,104,147, 44, 18, 49,129,148, 82, 16,194,172,231,121, 78, 91, 95, 58, 31, 50, 50,159,202,100,242,119, 42,162, 25,126, - 57, 39, 78,156,176, 60,251,236,179,248,248,227,143,197,139, 22, 45, 90,224,235,235,123, 55, 51, 51, 51,177,190, 99, 84, 23,193, -193,193, 1, 67,135, 14,149, 3,128,197, 98, 65, 70, 70, 6, 50, 50, 50,144,159,159, 15,139,197,210, 80,197, 63,223,203,203,203, -245,187,239,190,107,245,230,155,111,198,170,213,234,153,149, 77, 25,171, 1,180, 33,132, 36,213,216,134, 13, 27, 54,116,120,237, -181,215,238,104,181,218,249, 13,165,147, 16, 18,230,226,236, 98,183,241,179,245,177, 30,114, 17,113,247, 83, 17,169,163,179,152, -177,119,144, 83,145, 72,223,204, 79,229, 64, 8, 9,171, 35, 93, 55, 31,210, 34,205,155, 55,223,181,105,211, 38, 79,137, 68, 2, -142,227,224,225,225,129,228,228,100, 20, 21, 21,161,180,180, 20,201,241,119, 16,224,235,139, 25, 19, 95, 87, 46,254,116,213, 46, - 66, 72,135,154,149, 88,109,233,228, 31, 42,159,186, 12, 84, 93,219,173, 61, 70, 60,207,167,104, 52, 26,216,218,218,162, 85,171, - 86,246,151, 47, 95, 62,163, 86,171,213, 13,105,218,216,216, 60,223,173, 91, 55,135, 95,126,249, 5, 81, 81, 81,112,114,114,194, -169, 83,167,112,227,198, 13,152,205,102,166,180,180, 20,246,246,246, 88,177, 98, 5,252,253,253, 81, 92, 92,140,180,180, 52, 55, -137, 68,226, 94,151,230,239, 7, 79, 47, 41, 76, 58,181, 48, 91,116,100,192,183,191,252,138, 55, 94, 28, 3,111, 54,233,140, 75, - 48,179,100,224,224,174, 31,136, 36,126, 67,236, 28, 34, 92, 90, 68, 12,135, 84,102,143,169,115, 62, 66,194,205,223, 92,116,165, - 55,166,112,150, 12, 63, 0, 51, 30,214, 36, 21, 5,196,168, 84,170,215, 55,108,216,224, 80,181,157, 97, 24, 72, 36,146, 7,140, - 85,213, 34,237,181,149,105,109,229,201,113, 28,204,102, 51,204,102, 51,120,158, 71,110,110, 46, 74, 75, 75,225,226,226, 82,177, -195, 34,128,128, 16, 90,199, 42,244, 53, 53, 25,134, 25,251,235,175,191,250,217,218,218,254,105,191,140,140, 12, 20, 23, 23,195, -206,206, 14,206,206,206,176, 88, 44, 96, 89, 22, 70,163,209,190, 87,175, 94,147, 1, 92,172, 77, 83, 36, 18,205,154, 52,105, 82, -183,253,251,247, 7, 45, 93,186, 20,102,179,121,101,110,110, 46,170, 12, 90,247,238,221, 59, 83, 74,239, 78,159, 62,189,210, 16, - 46,182,148,149,149,189,213,212,115,201,203,203, 43,124,232,208,161, 46,199,143, 31, 71,247,238,221, 97, 52, 26, 49,121,242,100, -199,215, 95,127,221,241,220,185,115, 30,171, 87,175,222, 12,160,111,125,154, 81, 81, 81, 18,173, 86, 59,119,236,216,177,179,251, -246,237,235,148,151,151, 7,185, 92,142,109,219,182, 97,227,198,141,135,204,102,243,251, 59,119,238, 92,246,205, 55,223, 12, 24, - 62,124, 56,190,249,230,155,233,149,221, 34,248, 90, 52, 85,126,126,126,184,126,253, 58, 92, 92, 92,224,238,238,142,226,226, 98, - 92,184,112, 1,151, 46, 93, 66, 88, 88, 24, 8, 33, 46,149,117, 26,219,152,235,232, 81, 34, 85,141,153,206,232,113,105, 86,175, -177, 90,227,220, 5, 42, 22,111,165,143,144, 78, 66,136, 88,165, 82, 13,119,118,118,158, 66, 41, 21, 23, 22, 22,110,176,181,181, -221,145,152,152,104,250,187,242,254, 68, 26, 44, 66, 72,213,113,233, 69, 41, 61,237,115, 7, 37,121, 29, 92, 18,220,188,194,127, -117,243,105, 93, 81,136, 44,141, 23,201, 93, 18,188, 98,117, 37, 0, 96,182, 80,156,139, 47,196,245,251, 90, 92,191,151, 13,123, -155,134,159,186,221,220,220,208,181,107, 87,236,221,187, 23, 25, 25, 25,246, 43, 86,172,104, 97, 54,155,205, 67,135, 14,213, 52, -111,222,188,176,123,247,238,144, 72, 36,184,120,241, 34, 74, 74, 74, 32, 18,137, 32,147,201,192,243,124,157,145, 54,207,123,220, - 43,227, 39, 70, 6,185, 59, 51,216,247,199, 17,116, 14, 27, 1, 91,185, 4,185,133,122, 48,132, 32, 49,229, 56, 56,206, 14,215, -226,211,209, 37,194, 14, 61, 58, 57,249,150,157, 40,152, 8,224, 75,171,162, 54,234, 24,200,154,143, 4,108, 90,131,154, 18,193, -155,212,160, 18, 79,148,235,108,144,151,154,134,248, 11, 59, 64, 89, 93,131, 58, 28,199, 77,117,119,119,207,153, 63,127,126,247, -208,208, 80,211,212,169, 83,111,166,164,164, 44,168,185, 79, 64, 64,192,178,117,235,214, 33, 33, 33, 33,117,249,242,229,103,243, -242,242,150, 52,242,194,156, 67, 8, 89, 5, 0, 82,169,180,104,219,182,109, 79,157, 58,117,234,157,207, 62,251,204,101,218,180, -105,162,137, 19, 39, 78, 2, 48,171, 49,154,189,122,245, 18,165,167,167,183, 82, 40, 20, 47,204,154, 53, 75, 97, 54,155,161,209, -104,144,145,145,129,162,162, 34, 48, 12,131,132,132, 4,158, 16,114,183,222, 19, 77, 44,214,215,214, 44, 88,199,205,221, 92, 91, - 31,173, 58, 40, 51, 89, 44, 70, 59, 63,149,101,232,240,254,109,110, 92,186,154,160,112,117,101,218, 68,183, 15,143,191,159, 26, - 71, 42,154, 96,172,106,134,241,245,245, 29,179,104,209,162, 54,142,142,142,224,121, 30, 78, 78, 78,200,205,205,133,217,108, 70, -113,113, 49, 76,165, 37, 48,151, 20,227,122, 90, 50,186,247,122, 26,207,116,233,220,234,128,197, 50, 6,192,214,250,116, 93,219, - 70, 86, 71,174,182, 7,185, 85,111,127, 33,181,168,218, 0, 28,236, 24, 2,185,189, 29, 34,102,206,111,242,197,156,149,149,117, -165, 89,179,102, 7, 7, 12, 24, 48,104,226,196,137, 76,118,118,246, 97, 47, 47,175,110, 90,173,246,118,125,223,179,183,183, 15, -206,203,203, 67,105,105, 41,156,156,156,176,122,245,106,120,122,122, 66,167,211,225,242,229,203,212,215,215,151,156, 58,117, 10, - 62, 62, 62,200,207,207,135,217,108,134, 78,167,203, 54,153, 76,117, 30,163,202,102,192,129,179,158, 81, 30,186, 27,251, 67, 15, - 31, 36, 95, 30,245,110,143,123,215, 46, 37,100,156, 60,241,199, 18,214, 96,147, 81,148,121,108,110, 96,244, 53,247, 41,239, 46, -198,186,149,139,112,247,226,233, 2, 47,255,210, 47, 57, 98,252,161, 91,255,122, 35,232,134, 59,119,238, 56, 92,187,118, 13, 12, -195,192,209,209, 17,118,118,118,213, 11,155, 87,153, 43,177,216,250, 0,125, 85,147, 98,149,185,202,205,205, 69, 98, 90, 2,118, -158,220, 12, 11,107,113,223,212,201, 49, 59, 72, 42,189,238, 94, 76,222,203,187, 73,175, 52,112, 29,110,120,225,133, 23,198,248, -248,248, 56,212,220,222,174, 93, 59,188,244,210, 75, 56,124,248, 48, 98, 99, 99,193,243, 60,120,158, 7,165, 20,185,185,185, 89, - 28,199,253, 80,151,102,122,122,122,145,175,175,239,128,215, 95,127, 61,110,247,238,221,142,159,126,250,105,245,194,230, 85,205, -162, 85,255,127,249,229, 23,196,197,197, 45,204,206,206,142,111,202,121,228,237,237, 29, 54,116,232,208,223,191,252,242, 75,103, -173, 86,139,188,188, 60,148,151,151, 67, 34,145,128,101, 89,132,132,132, 16,142,227, 2, 26,106, 14,100, 24,230,183,147, 39, 79, -246,111,209,162, 5,170, 30,204,254,248,227, 15, 76,156, 56, 49,223,214,214,246,249,212,212,212,114,149, 74,181, 96,255,254,253, - 3,218,181,107,135, 54,109,218,120,231,228,228, 56, 0, 40,174,227, 1, 2, 28,199, 85, 31,159,239,190,251,174,250, 51,131,161, - 98,201, 73,147,201, 68,162,163,163, 3, 46, 95,190,220,152,193, 45,117, 69,170,210,107,188, 79,255,183, 84,218,105, 63,125,139, -212,247,166,161,217,153,138, 91,110, 92,120, 69,151,171,102,167,239, 84,236, 48,110, 92,163,244, 84, 42,149, 27,165,244,141,190, -125,251,206, 28, 48, 96,128,135, 82,169,132,155,155, 27,110,220,184,209,237,200,145, 35, 95,248,250,250,126,205,113,220,215,214, - 68,235, 31,149,135,189,200, 19, 19,193,162,148,146,202,204, 17,140, 26,197,185,239,216,145,167,110, 37, 51,203,196,182, 9, 0, - 96, 50,235,204, 94,177,186,138,105, 26,150,252, 2, 10, 10,142,175,184, 33,241,148,130,179,114, 28,136, 33,254, 57,240, 69,191, -193,211,101, 56,190,249,102, 55,114,114,114,164,171, 87,175,110,190,123,247,110,223,177, 99,199,166,135,132,132, 20, 63,253,244, -211,216,188,121, 51,188,189,189, 97, 50,153,192,243,124,157,238,205,193,149, 27,213,169, 77,136, 40, 33,237, 6, 58,180,120, 14, - 1,202,238, 72, 84, 23,163,176,212,136,252, 98, 61, 66, 67,223,133,182, 64,135,146,114, 3,110,220,253, 25,190,202, 64, 70, 36, - 73, 28, 96,173,193, 50, 38,110,129, 49,249, 87, 72,149,189, 33, 11, 28, 3,137,123, 23,100,220,141,193,213,227,171,144,121,239, - 44, 40,207,193,203, 47,204,170,188,139, 68,162, 13, 71,143, 30,109,255,212, 83, 79,137,251,244,233, 19,225,235,235, 27,145,153, -153,121,179,178,114,143, 24, 48, 96, 64,132,167,167, 39,214,172, 89,163, 19,137, 68, 27,154,248,244, 83,179, 73,237,152, 74,165, - 42,255,237,183,223,214,142, 31, 63, 30, 62, 62,214,197,142, 23, 47, 94, 76,190,248,226,139, 85, 10,133, 98,164, 76, 38,115,244, -240,240, 40, 30, 56,112,224,125, 7, 7,135,228,148,148, 20, 80, 74,225,234,234,138,178,178, 50, 36, 36, 36,240, 71,143, 30, 45, -178,183,183,223,249, 79,156,192,102,179,249,114,122, 90, 90,104,183, 30,221,148,191,199,222,190, 50,242,217, 33,189, 25, 49,195, -164,164,101, 93,246,112,115,181,251,227,220,217, 18,179,217,124,217, 26, 45,137, 68, 50,164,123,247,238,226,194,194, 66,168, 84, - 42,228,230,230, 66,173, 86,195, 98,177,192, 80, 92, 8,115, 73, 9,204,197, 69,160,186, 50, 36, 93,190,136, 86,126, 62,242,163, - 21,157,224,183, 54,244,196, 89, 91,132,138, 16, 82,189, 77,238, 96, 15,133,131, 67,117,243, 71, 35,110,142,195, 29, 29, 29,231, -150,150,150, 30, 84,171,213, 75, 77, 38,211,212,229,203,151, 71,127,244,209, 71,238,115,231,206,117,156, 59,119,238,246,230,205, -155,183, 79, 77, 77, 53,214,233, 80,203,202, 18, 45, 22,139, 27, 0,175, 19, 39, 78,192,195,195, 3, 37, 37, 37,176, 88, 44,208, -235,245, 38, 23, 23, 23,155,252,252,124, 24, 12, 6,152, 76, 38, 56, 58, 58, 34, 46, 46,174,128,101,217, 6,155,156,157,131,153, - 37, 70, 75,252, 66,215,112, 59, 53, 71,221,122,150,234,249,194, 69,159,106,150, 0,248,108, 96,112,240,183, 38,254,116,114,194, -205,189, 46,201,151, 79, 21,104,238,233,130,190, 61,144, 84, 90, 79, 57, 82, 66, 8, 79, 8,161, 45, 91,182, 68,110,110, 46, 68, - 34, 17,236,236,236, 96,111,111,143,176,176, 48,100,100,100, 52,217, 96,213, 52, 87,199,207,239, 71, 94, 89, 22,190, 93,249, 11, -124,188,253, 24, 0, 30,234,236,140,126,175,206, 30,221, 41,176,187,203,242,228,179,133,117,246,107,211,104, 52, 87, 1, 56,214, -220,230,227,227,211,219,197,197,229,164,217,108, 70,106,106, 42,142, 30, 61,218, 43, 51, 51,179, 81, 21, 72,102,102,102,146,143, -143,207,128,103,159,125,118,115,155, 54,109,130, 41,165, 8, 11, 11,195,240,225,195,177,115,231, 78,220,190,125, 27, 37, 37, 37, -252,153, 51,103, 54,101,101,101, 53,169, 67,142, 82,169,108, 57,120,240,224,179,235,214,173,115,201,203,203,131,193, 96, 64, 89, - 89, 25,118,236,216,129,110,221,186,193,198,198, 6,107,215,174, 45, 97, 89,118, 93,125,230,138, 82,186,119,247,238,221,253,131, -130,130, 16, 31, 31,143, 51,103,206,192,195,195, 3, 10,133, 2, 67,135, 14,117,251,245,215, 95,167,134,135,135,175,146, 72, 36, - 75, 6, 13, 26, 4,142,227, 16, 27, 27,155,149,150,150, 86, 90,223, 49,170,179, 94, 49, 24, 64, 41,133,197, 98, 89,205, 48,204, -243, 81, 81, 81,207,196,197,197, 61, 82,167,232,127, 75,159,171,202,250,161,181, 68, 34,153,225,226,226,130,220,220, 92, 20,241, -128,125, 65,197,160,219,226,202,186,183,160,160,160,250, 94,211,162, 69,139, 3,122,189,254,189,170,250,165, 54,124,124,124,218, -218,218,218,206, 28, 58,116,232,216,193,131, 7,139,204,102, 51,246,239,223,143,117,235,214, 97,192,128, 1, 8, 9, 9,193,187, -239,190,235,100, 52, 26,231, 29, 62,124,120,110,171, 86,173, 14,151,150,150,206,175, 79,243, 49, 69,240,254,235, 69,158, 20,131, - 85,153,161, 94,213,159,140, 26,197,249, 0,133,149, 79, 52,238,174,174,174,235, 56,142,235,141, 15, 62,128,131,216, 9,169,137, -247, 80, 90,200,195, 98, 50,130,231, 41, 40,111, 93, 89,240, 69,191,193,241, 41,138,146,223, 9,204,102, 51, 60, 61, 61,177, 98, -197, 10, 20, 23, 23,139, 95,125,245,213,128,197,139, 23, 95, 53, 24, 12, 40, 47, 47,135, 94,175,135, 94,175,175,215, 96, 73,109, -140,109,154,121,181, 64,169,190, 35,108,101, 50,228,151, 24, 81, 88,106, 68, 94,145, 1,187,246,190, 8,163, 94, 7,214,100, 2, -103,102, 97,239, 53, 2, 33,174,189, 1,220,143,176,242, 64, 87, 38,154,133, 89,125, 12,102,245, 49,216,182, 91,128,189,107, 95, -126, 96, 63,150,181,174,201, 95,171,213,230,250,250,250, 30,142,139,139, 27,242,252,243,207, 35, 38, 38,230,149,170,136,146, 92, - 46,127,229,249,231,159, 71, 92, 92, 28,226,227,227, 15,107,181,218,220,199,116,178, 22, 25,141, 21,117,171, 92, 46,151, 17, 66, - 72,125,253, 50, 22, 47, 94, 76,214,173, 91,119,111,230,204,153,205,166, 77,155, 38,118,116,116, 68, 81, 81,145,253,230,205,155, - 61,199,143, 31,175, 90,178,100,201,153,236,236,108,108,218,180, 73, 31, 31, 31,111, 16,137, 68,241, 50,153,108,247,249,243,231, -141, 86,166, 39,168,178,105, 16,148,210,160,186,182, 89,139,193, 96,248,110,217,146,133,189,127,218,178, 45,172,101, 88,136,203, -193,163,167,174,184,185, 57, 42, 2, 2,130,228,197, 69, 69,198,117,171, 87,138,203,203,203,191,183, 82,174,149,187,187, 59,178, -179,179,113,255,254,125, 24,141,198,138, 38, 28, 93, 25, 76, 69, 69, 48, 23, 23, 2, 6, 61,100, 28, 7, 99,158, 22, 1, 65, 1, -192,127, 71, 24, 54,244,100, 86,171,193,170,250,175,112,114,132,204,206, 14, 34,137,216,234, 62, 88, 74,165, 50, 42, 50, 50,114, -219, 55,223,124, 35,157, 53,107, 86,167,230,205,155,175,203,206,206, 78,243,245,245,237,179,114,229,202, 75, 75,151, 46,149,143, - 29, 59,182,229,134, 13, 27,198, 3,216, 80, 79, 25,110, 59,120,240,224, 75,254,254,254, 94, 55,111,222,132,193, 96, 0,207,243, - 24, 56,112, 32, 0,216, 84,237,119,247,238, 93,189, 94,175,215,222,186,117,171, 52, 45, 45,205, 12, 43, 70,253, 45, 92,167,190, - 48,107,180,239, 72,165, 82,117, 94, 38,111, 22,200,232,226, 70,204, 26,237,251,233,170,237,153,134, 67,137,137,165, 11,167, 4, -173,208,149,222,156,226,226, 91,254,229,151,251,146, 74,173, 57,133, 42, 71, 12,194,221,221,189,186, 73, 80, 42,149, 86, 69, 63, - 81, 92, 92, 92,111, 19, 97, 93,149,119,113,113, 49,138,139,139,113, 47, 37, 30,185,165, 89, 56,182,245, 60, 56,142,171,142,142, -168,188,124,113,124,235, 37,135, 94,163,162,223,115,107, 75, 78,229, 95,167,151,173, 61, 79, 25,134,153,249,220,115,207,193,108, - 54, 99,248,240,225,248,229,151, 95,102, 2,104,244, 19,186, 90,173,190, 64, 8,105,113,255,254,125, 71,139,197, 50,108,232,208, -161, 63, 12, 26, 52, 8,231,207,159,199,137, 19, 39,122,153, 76,166, 4,142,227,244, 74,165,114,185, 82,169,244, 36,132, 44,215, -104, 52,245,142,118, 14, 13, 13, 29,235,224,224,176, 76,161, 80,148, 14, 26, 52, 72, 85, 21,185, 42, 47, 47, 7,203,178,200,204, -204,196,161, 67,135,178, 14, 30, 60,152, 69, 41,181, 45, 43, 43, 91,148,158,158,190,163,174,102, 65,139,197,178,231,183,223,126, - 27, 16, 20, 20,132,211,167, 79,227, 63,255,249, 15,130,131,131,177,105,211, 38,116,237,218, 21, 1, 1, 1,112,117,117,157, 81, - 82, 82,210,229, 63,255,249,207,160,200,200, 72,236,222,189, 27, 57, 57, 57, 95,212, 55,170,178,190,251,172, 94,175, 7,165, 20, - 79, 63,253,244,196, 89,179,102, 97,232,208,161, 71, 59,116,232,208, 49, 54, 54,246,158, 21,197,250,175,140, 84,213,120,136, 90, -209,183,111,223,185,109,219,182,197,150, 45, 91, 96,236,208, 29,118,155,246,225,230,144,110,160, 0, 84,155,246, 2, 0,110, 14, -171, 24,208, 17,208,103, 20,230,206,157, 59,104,196,136, 17,254, 0, 90,215,161,249,233,203, 47,191, 60,251,229,151, 95,198,149, - 43, 87,176, 97,195, 6, 92,189,122,181,186,206,179, 88, 44,184,115,231, 14,238,220,185, 3,165, 82,137, 33, 67,134,144, 55,223, -124,115,224,192,129, 3, 61, 0,116,248, 43,243,251, 39, 47,242,196, 69,176, 30, 12, 23,187,187,184,184,220, 90,183,110,157, 91, -167, 78,157, 68, 44,203,226,196,201,147,120,103,218,171, 24, 48,100, 10, 12, 70, 25, 88, 3, 1, 39,181,183,238, 23, 29,135,160, -228,119, 2,222,126, 16, 76, 38, 19, 38,254, 34,133, 51,209, 98,245, 43, 94, 0, 64,244,122, 61,140, 70, 35,244,122, 61,202,203, -203, 81, 94, 94, 14,142,227,234,188, 75,150, 22,217,153,205, 22, 30,234,156, 52,100,102,221,132,147,189, 63, 40,227, 7,109,129, - 14, 4,158,176, 24,238,130,175,188, 48,141,250, 76,148, 27, 31,205, 20,115,165,201,181,132,174,173,239, 83,169,211,233,182,109, -217,178,229,153, 85,171, 86, 73, 7, 13, 26, 20,236,235,235,219, 17, 0, 70,142, 28, 25,236,224,224,128, 45, 91,182,152,117, 58, -221,182,199,120,178, 14,233,220,185, 51, 74, 75, 75,145,148,148, 20,215, 80,167,215, 47,190,248, 98,205,204,153, 51,155,205,159, - 63, 95,108, 48, 24, 80, 82, 82, 2,137, 68,130, 9, 19, 38, 72, 75, 75, 75, 3, 86,175, 94,173,185,112,225, 66,172,201,100,218, -152,152,152,216,232, 57,166,246,237,219,103, 11,160, 77, 67,219,172, 69,163,209,232, 85, 42,213,244,165,203,150,254,252,233,202, -149,158, 5,249,133, 9, 82,153,194, 96,171,144,187,206,125,103, 9,213,106,181,179,181, 90,173,206, 90,189,194,194, 66, 36, 39, - 39, 67,161, 80, 64, 42,149,130,211,149,129, 47, 47,135,177, 48, 31,140,201, 8, 57,199,193,213, 86, 14, 63, 47, 47,248,123, 90, -183,180, 85,214,169,163, 56, 52,102,200, 3,205,130,132, 16, 28,238,218, 18, 50,123, 59,216,216,219,163,251,158, 51, 21, 15, 12, - 82, 41,176,250, 27,107,154,113,220, 85, 42,213,111, 95,124,241,133, 52, 47, 47, 15,183,110,221,186,150,154,154, 90,236,234,234, -234, 32,145, 72,248,123,247,238, 29,191,123,247,238,144,128,128, 0, 80, 74, 27, 26,253,245,217,174, 93,187,250,117,235,214,141, - 13, 8, 8,176,203,205,205,245, 47, 44, 44, 36, 89, 89, 15,246, 97,190,124,249,178, 77,122,122,186,142,231,249,221,168,152, 7, -171,193, 19,127,214,104, 95,155,115, 87, 48,189,167,123, 64, 91, 39,143,182,200,179, 92,109,123,225, 90,246,244, 89,163,125,215, -174,218,158,105,224,136,241, 7,206,146,225, 39,182, 49,108,182,210,160,211,240,240,112, 80, 74,113,249,242,101,156, 57,115, 6, -103,206,156, 65,106,106,106,245, 62, 78, 78, 78, 56,118,236, 24,122,247,238,221,152,235, 18, 74,165, 18,206,206,206,216, 29,243, - 35, 54,126,250, 75,117, 71,247, 42,242,242,242, 96,107,107,139,101,239,172,178,127,117,206,168, 37, 0,158,177, 70,219,207,207, - 47,176, 91,183,110,131,189,188,188, 80, 88, 88, 8, 15, 15, 15, 68, 71, 71, 15,245,242,242, 10,208,106,181, 77,154,167,205,100, - 50, 77,238,221,187,247,210,217,179,103,195, 98,177, 96,204,152, 49, 72, 78, 78,222,150,148,148,180,186, 89,179,102,211,167, 76, -153,226,229,238,238,142,201,147, 39,219, 1, 24, 89,151, 78, 88, 88,216,219,243,230,205,251,120,220,184,113,114,139,197,130, 19, - 39, 78, 32, 53, 53, 21, 70,163, 17, 44,203, 34, 45, 45, 13,139, 22, 45,202, 42, 41, 41,233,249,112,255,205,218,200,206,206,158, -189,103,207,158,129,161,161,161, 56,124,248, 48, 38, 77,154,116,192,222,222,190,245,224,193,131,253,237,236,236,112,237,218, 53, -152,205,102, 40,149, 74,175,121,243,230, 13,233,223,191, 63,142, 31, 63,142, 37, 75,150,236,247,246,246,254,172, 33, 19, 44, 22, -139,255,212,231, 83, 36, 18,225,234,213,171,120,250,233,167, 49,119,238, 92, 0,192,241,227,199, 29,159,121,230,153,155,189,122, -245,114,140,137,137, 49, 54, 37, 82,245,111, 25, 69,104,103,103, 55, 97,211,166, 77,184,127,255, 62,206,158, 61,139,252,252,124, -152, 76, 38, 20,243, 21,125,174,228,149,145, 43,234,211, 12, 93,103,191,135, 23,134,140, 68, 86, 86, 22, 24,134,113,175,167, 94, - 24,251,222,123,239,225,208,161, 67, 88,177, 98, 5, 74, 74, 74,106,221, 79,161, 80, 32, 58, 58, 26,237,219,183, 71,114,114, 50, - 0,184,255,213,249,125, 34, 35, 88,117,225,226,226,178,250,171,175,190,114,235,214,173,155,168,188,188, 28, 60,207,163, 75,231, -206, 24,255,202,120, 28,217,189, 3,202,192,222, 16, 25, 20, 96, 29,108,173, 51, 40,126, 63,160,160,160, 0,114,185, 28, 54,149, - 29, 74,175,103, 86,135,119, 97, 48, 24,170,205, 85,213,255,250, 96, 77,178,184, 59, 73,156, 95, 73,217, 85, 92,140,251, 9, 22, -147, 9, 1, 45,230,195,200,186,195,206,243, 53,232,205,191,193, 92, 84, 49,114, 87,230,216, 11, 90,109, 30, 0,114,211,202, 3, -253,103, 51,165,255,115,103,119,158,179,222, 96, 21, 22, 22,150, 40,149,202,189,231,207,159, 31, 61,114,228, 72, 28, 59,118,108, -124,165,193,194,249,243,231,145,156,156,188,183,176,176,176,228,113, 28, 92, 31, 31,159, 87, 6, 13, 26, 52,186,117,235,214, 56, -118,236, 24, 88,150,109,112,136,162, 88, 44, 30, 53,109,218, 52,113, 85,200, 93, 42,149,162,164,164, 4,217,217,217,232,209,163, -135,116,230,204,153, 33,229,229,229,239,166,165,165, 53,169, 98,168, 57, 98,176,182, 81,132, 85,219, 26,105,178, 50, 67, 67, 67, - 19,245, 6,131,196,197,205, 85,231, 96, 39,163, 37,165,165,204,245,235, 87,178,180, 90,109,106, 35,164,238,220,186,117, 43, 66, -173, 86, 35, 45, 45, 13,156,174, 12,140,209, 8, 98,212,163, 79,151,206, 80,128, 66, 14, 30, 82,222, 2,137, 72,140,210,210, 50, - 0,184,211, 96,212,182, 70,133, 80,101,174, 8, 33,176,177,183,135,204,193, 30,114,123,251, 7, 34, 90,214, 12,252, 82, 40, 20, - 63,111,216,176, 65,169, 84, 42,241,249,231,159, 67,169, 84,134,245,237,219, 87,215,179,103, 79,133,187,187, 59, 66, 67, 67,209, -161, 67, 7,156, 58,117, 10,132,144,196, 6,206,115,150, 16,242,204,217,179,103,103,159, 59,119,110,180, 74,165, 34,227,198,141, -195,128, 1, 3, 32,151,203,161,215,235, 81, 88, 88,136, 3, 7, 14, 16,142,227, 34, 43, 13, 94,179,230,205,155,255, 66, 8,201, - 76, 73, 73,121,254, 97,205,175,151,181, 85,149,234,249, 87,149,222,170,145, 61,251, 7,180,121,186,127, 95, 4,182,232,131,167, -251,103, 0,192, 10,119, 73,202,152, 79, 22, 68,236, 14,240,115,221,116,110,207,241, 15,186, 15,236,253,254,226,233,174, 75, 22, -173, 45,176,102,154,134,234,202,150, 97,152, 90,163, 84, 34,145, 8, 12, 99,221, 90,246, 28,207,101, 14,120,165, 75,245,123, 11, -107,118,247,241,246, 99,170, 34, 87, 0, 80, 82, 82,130,244,244,116, 88, 44, 22,184,185,185,193, 98, 49,183,109, 68,243,227,244, - 49, 99,198, 16,131,193,128,217,179,103, 99,229,202,149, 24, 62,124, 56,185,120,241,226,116, 0, 51,155, 16,209, 88, 57,121,242, -228,217, 19, 38, 76, 64, 81, 81, 17, 78,158, 60,137,222,189,123,227,171,175,190,242, 56,121,242,228,199, 93,187,118,133, 72, 36, -194,177, 99,199, 96, 54,155,235,237, 27, 41,147,201,166,141, 27, 55, 78,158,145,145, 1,169, 84,138, 14, 29, 58, 32, 51, 51, 19, -229,229,229,200,201,201,193, 71, 31,125,148, 93, 92, 92,220, 75,173, 86, 39, 90,113, 92,152, 30, 61,122,204, 8, 9, 9,193,137, - 19, 39, 48,121,242,228, 67,118,118,118, 35, 11, 11, 11,223, 52, 26,141,107,135, 12, 25,130,174, 93,187,226,238,221,187, 24, 58, -116, 40,162,163,163,113,242,228, 73,204,157, 59,247,128,173,173,237,115, 13,204,131,117, 47, 38, 38, 38,162, 67,135, 14, 40, 47, - 47, 71,105,105, 41, 36, 18, 9,156,157,157,113,231,206, 29,180,104,209, 2,115,231,206,197,170, 85,171, 48,107,214, 44,254,153, -103,158, 97,205,102,179,180,106,148,101, 19,249, 87,140, 34, 44, 47, 47,167, 89, 89, 89,112,116,116,196,246,237,219,113,227,248, - 17, 28,156,246, 26,108,222, 95, 9, 74, 41, 50,151,206,195,211,115,222, 71,231,107, 73,200,202,202,194,230,205,155,193, 48, 76, -245,136,216,186,234,182,226,226, 98,180,111,223, 30,151, 47, 95,198,230,205,155,241,249,231,159, 87, 71,107, 37, 18, 9,122,245, -234,133,126,253,250,225,222,189,123,216,176, 97, 3, 28, 29, 29, 33,208, 4,131, 69,105,197,188, 75, 85,255, 31,140,206,240, 79, - 71, 71, 71,139,202,202,202, 96, 48, 24,160,213,106,145,146,146, 2,133, 66, 1,117, 78, 58, 58, 6,151, 33,155,152,112,235,106, - 2, 71, 68,146,171, 13, 61,129,152,205,102,152, 76, 38, 92,191,126,189, 98,232,123,139,229,224,121,190, 58, 44,169,215,235, 97, - 48, 24, 16, 19, 19, 67, 21, 10, 5,236,236,236, 72,125,109,239, 60,107, 60,116,234,143,107,131, 94, 30,241,180,236, 88,204, 70, - 88,140, 44,202,140,206, 40, 55,152, 80,170,151,192, 36,239, 15, 66,206,128, 17,201,209,181,125, 48, 78,158,189,103,224, 44,230, -195,214, 89,105, 14, 34,215,182,224, 10,174,215, 48, 88, 15, 62,213, 75,229,246,224,216,198,141, 10,230,121,126,247,207, 63,255, - 60,168, 75,151, 46,182,189,123,247, 14,170,108,190, 51,253,252,243,207, 85,209,129,198, 70,169,170,103,111, 39,132, 16, 47, 47, -175, 30, 54, 54, 54,175, 61,255,252,243, 97, 47,190,248, 34,146,146,146,176,101,203,150,116, 91, 91,219,131, 13,105,177, 44,235, -236,232,232,136,146,146, 18, 72,165, 82,176, 44,139,252,252,124,220,189,123, 23,110,110,110, 40, 46, 46,118,108,222,188,249,173, -166,158,112, 15,141, 24, 92,141, 63,143, 34, 92,221,148,104,150, 66,202, 71,189, 63,103, 98,136,193,160, 15, 47, 45, 45,101,197, - 98,177, 88, 46,225,146, 27,163, 97,177, 88,246,159, 57,115,230,217,238,221,187,203, 19,174, 95,133,185,184, 24,150,146, 34, 72, - 57, 22,174, 81,237,193,152, 12, 32, 38, 11,124, 90, 81,232,139,236,240,199,149, 36,139,197, 98,217,111,173,193, 98, 68,162, 7, -251, 93, 57, 58, 64,102, 95, 97,176,106,110, 39, 13,180,107,121,121,121,217, 14, 28, 56,176, 79,100,100, 36, 40,165, 88,185,114, - 37, 76, 38,147,204, 98,177,192, 98,177,192,108, 54,163,180,180, 20, 59,119,238,196,143, 63,254,248,135,147,147,211, 38, 43, 30, - 38, 88, 95, 95,223,169, 60,207,123,178, 44,107,246,240,240,144,110,219,182, 13, 54, 54, 54, 96, 24, 6,237,219,183,135,141,141, -141, 81,165, 82,153, 43,211, 96,249,236,179,207,196,175,191,254,186,180, 54,189,118, 29, 67,223,225,168, 91, 79,153,188, 89,128, -147, 71, 91, 4,182,232, 3, 0,232, 55,228, 85, 4,134,248,161, 56,247,122,160,201,152, 54, 66, 68,242, 93,126, 58,175,190,211, -195, 54, 98, 66,126,102, 76, 2,128,239,172,188,134,208,167, 79, 31, 60,243,204, 51,213,205,129,158,158,158, 48,153, 76, 96, 89, -214,106,115, 5, 0, 85,147,136, 46, 94, 76, 24, 44, 2, 54,117,114,200, 6, 80, 29,158, 44, 46, 46, 70, 70, 70, 6,210,210,210, -170,239, 83, 60,181,238,233, 90,165, 82, 41, 2, 3, 3, 95,105,221,186, 53, 78,158, 60,137,235,215,175,171, 79,159, 62,237,211, -177, 99, 71,248,250,250, 78, 80,169, 84,239,105, 52, 26,171, 39, 84,246,240,240,176,235,209,163,199,180, 9, 19, 38,224,238,221, -187,152, 59,119,110,126,118,118,246,238,253,251,247,191,254,246,219,111, 51, 61,123,246, 68, 78, 78, 14,190,254,250,107,238,210, -165, 75,159,186,184,184,124,212, 64, 57, 38,107, 52,154,230, 6,131, 1,249,249,249,168,154,146,225,240,225,195, 56,114,228,136, -182,168,168,168,151, 70,163,185,111, 77,218,154, 53,107,230, 16, 21, 21,229,149,144,144,128,173, 91,183,194,108, 54,191,159,154, -154,106,118,114,114,218,242,229,151, 95, 46, 10, 10, 10,114,125,234,169,167,208,181,107, 87, 80, 74,177,111,223, 62,124,248,225, -135, 7, 20, 10,197,200,219,183,111, 55, 52, 0,102,196,146, 37, 75,150,184,187,187, 63,255,210, 75, 47, 49, 81, 81, 81,136,141, -141, 5,199,113,232,211,167, 79,181,185, 58,124,248,240,207,135, 15, 31, 30, 5, 64,106,111,111,111,211, 80,244,170,242,122, 27, - 10,160,234,161, 78, 71, 41,221,247,111,171,168, 13, 6, 3, 18, 18, 18,224,229,229,133,144,142, 93, 48,247,102, 10,206,156, 59, - 15, 74, 41,186,223, 74, 65, 89, 89, 57, 54,109,218,132,184,184, 56,136, 68, 34, 4, 5, 53,220,211,194,108, 54,227,254,253,251, -200,205,205,197,240,225,195, 49,118,236, 88,124,242,201, 39, 48,155,205, 88,176, 96, 1, 10, 10, 10,240,205, 55,223,224,254,253, -251, 16,139,197,176,183,183,255,203,243, 89,159, 23,121, 34, 35, 88,149,149, 46,120,158,135, 70,163,193,229,203,151,145,146,146, - 2, 59, 59, 59,232, 89,158,255,226,194, 53,158, 33, 18, 53, 71,113,150,178, 21,179,136,215,231,196, 45, 22, 11, 17,139,197, 56, -119,238, 28, 18, 19, 19,225, 24, 66,171,163, 87, 22,139, 5, 70,163, 17, 58,157, 14, 18,137,164,236,252,249,243,169,177,177,177, -129, 98,177,184,206, 81, 96, 57, 45, 68, 63, 28, 59,126,226,157,168,246,225,161,125,123,126,136,253,251, 63, 64, 81, 73, 9,202, -141, 98,148,233,205, 40, 55, 80,168, 28,130,209,169,109, 36,114,243, 77,184,119, 43, 46, 51, 79,234,218, 96, 27,140,133, 99,138, -127, 94,247,166,211,176, 81,147, 97,227,253, 20, 76, 41,219,192,235,181,213, 6, 75,106,227, 0, 71,119,127,148,148,233,241,199, -157,100, 88, 56,166,216,218, 66,215,106,181, 58,165, 82,185, 99,242,228,201, 43,174, 94,189, 18, 8, 0,151, 46, 93, 74,214,104, - 52,243, 26,211,156, 85,121,115, 88, 78, 8,230, 2,128,189,189,253,157,238,221,187, 23,182,111,223,222,118,200,144, 33,112,114, -114,194,157, 59,119,176,108,217,178, 20,163,209,248,102,122,122,122,131,163,233,196, 98,113, 81, 65, 65,129,167, 76, 38, 67,113, -113,113,181,185, 42, 47, 47,175,234, 68, 89, 18, 19, 19,243,175, 90,143,210,215,215,183,231,160, 1, 61, 35, 62, 93,181, 22,122, - 93, 25, 46,157,223,143,194,130, 60,108,248,118, 87, 27, 95, 95,223,158,214,118, 38,206,204,204,252,117,215,174, 93,179,219,181, -110, 29, 25,228,231,135, 27,105, 41,144,242, 28,100, 28, 7,145,201, 0,134, 51,194, 55,130,130, 97,236,161,205, 46,197,250,163, - 39,111,102,102,102,254,218, 96, 36,113,224, 48,188,152, 86, 12, 66, 8,142,246, 8,135,141,189, 61,164,246,118,232,186, 51,166, -218, 84,165,174,120, 23, 82, 59,123,184, 68,247,176,234,252, 9, 9, 9,137,141,143,143,143,110,217,178, 37, 22, 47, 94,140,140, -140, 12, 80, 74,145,147,147, 99,200,205,205, 85,231,231,231,167, 18, 66,118,107, 52,154,111,173,157, 45,156,231,121,207,125,251, -246, 1,128, 20, 0, 78,156, 56, 1,149, 74, 5, 39, 39, 39,148,148,148, 96,220,184,113,242,133, 11, 23, 2, 0,174, 92,185, 34, -177,177,177,169, 83,235,214,213,187,159, 21,150,208, 66,166, 60,110,100, 30,123,181,205,211,253, 51,209,111,200, 4, 28,219,191, - 9, 39,143, 28,135,187, 36, 37,153, 83,148, 29,202, 77,206, 43,205, 42,111,241,117,120,135,215, 69,154,178, 35, 27,166, 12,119, - 17,251, 42,249,237,243,190,170,123,226,222,170, 39,112,145, 72,244,167, 14,237,141, 53, 87, 53, 89,180,136,242, 4,132, 4, 74, -196, 87,213,217, 25,253, 85, 94,190,200,201,201, 65,122,122, 58,210,211,211,145,145,145,129,144,144, 16,164,164, 37, 65, 38,147, - 94,181,178,194,120,105,200,144, 33, 14, 38,147, 9,123,246,236, 97, 9, 33, 67,246,237,219, 23,219,174, 93, 59,113,239,222,189, - 29, 54,109,218,244, 18,128,111, 27,211, 98,100,111,111, 47,181, 88, 44,248,225,135, 31,160, 86,171,123,102,103,103,223, 81,169, - 84, 95,191,245,214, 91, 95,181,106,213, 42,228,206,157, 59,247,244,122,253,100,141, 70,115,189, 33,177,162,162,162,241, 3, 6, - 12,216,206,243,124,179,110,221,186,217,189,248,226,139,142,148, 82,180,106,213, 10, 7, 15, 30,212,104, 52,154,123,214, 38, 44, - 45, 45,173,244,204,153, 51,218,240,240,112, 47,165, 82, 9,169, 84,186, 66,169, 84, 46,181,183,183,255,116,232,208,161,174,219, -182,109,195,142, 29, 59, 96,103,103,135,228,228,100, 77,124,124,252,106,111,111,239, 53,214,204,224, 30, 23, 23,151, 12,224,197, -142, 29, 59,126,248,249,231,159,191,207, 48,204,203, 71,143, 30,173,158,235,172,202, 92, 5, 4, 4,140,223,190,125,251,216, 70, - 30,122,219,170, 41, 7, 8, 33, 53,251,231,254, 91,250,102, 89, 76, 38, 19,220,220,220,144,155,155,139,156,156, 28,248,251,251, -163, 75,151, 46,176, 88, 44,216,187,255, 0,206,156, 57, 3, 74, 41,220,221,221,225,232,232,136,107,215,174, 1, 64,125,163,135, - 45,102,179, 25,174,174,174, 40, 42, 42,194,181,107,215,224,233,233,137, 89,179,102,193,100, 50, 97,219,182,109,184,122,245, 42, - 24,134,129,135,135, 7, 28, 28, 28,112,245,234,213,134, 52, 5, 26,107,176, 68, 34,209,169, 83,167, 78,141,106,219,182,173,248, -222,189,123,184,119,175,226,122,211,235,245,172, 88,132, 29,218,235,123, 94,172,167,242,143,168, 57, 87,134, 76, 38, 91, 63,106, -212,168,201,175,190,250, 42,166, 76,153, 2,134, 97,240,221, 21, 35,210,211,121,152,205,102,104,181, 90,220,184,113,131, 70, 71, - 71, 19,158,231,205,189,122,245,122, 35, 46, 46,174,163, 72, 36, 42,169, 75,147,110,223,206,185,183, 25, 54,252,203,245,223,158, -123,229,149, 87, 92,135, 13,255, 18, 87,110,223, 66, 81,121,197,208, 85,149,187, 29, 58,181,124, 23, 57,249, 70, 28, 57,180,191, -144,103, 13,207,209,155, 91, 45,245,165, 19, 0,114,117,122,207,175, 55,239, 90,185,117,231,238, 55, 38,142,127,209,166, 87,175, -241,144,148,222, 0,151, 31, 7, 85,139,110, 32, 34, 91, 92,188,118, 5,215,239,103, 24,116, 6,209,183, 37,102,253,187, 13,105, -214,164,184,184,248,178, 86,155, 29, 88, 99,214,246, 64,185,220,230,114, 3,102, 42,226,161,121,129,188, 8,193,220, 42, 13,145, -136, 9,159, 55,111,222, 77, 79, 79, 79, 75, 74, 74, 10,190,249,230, 27, 92,184,112,225,140, 76, 38,251, 48, 61, 61,189,212, 26, - 77,150,101,119,172, 92,185,242,205,121,243,230, 73,178,178,178,144,144,144,128,242,242,114, 88, 44, 22, 28, 60,120,144,213,233, -116, 13, 70,216, 26,202,123, 19, 35, 95,117,106,102,102,102,158,110, 17,236,143, 31,190, 93, 5,179,217,136, 44,117, 69,164, 33, - 47,191, 24,245,153,171, 63,157, 75,148, 82,165, 82, 57,242,243,213,171, 47, 76, 26,255,178,119,143,167,251, 32,227,250, 53,152, - 10,114,193,112, 44, 36, 84, 12, 93,142, 2, 90,109, 25, 62, 62,120, 60, 71,111, 48,140,124,184, 79, 91, 93,233,172,110, 22,116, -116,128,220,222, 30,178,202,168, 85,213,103, 50,123, 7, 72,236,236, 33,146, 74,107,235, 12, 31, 81,203,156,114,207, 77,156, 56, -241,250,193,131, 7, 93, 94,124,241, 69, 12, 27, 54,236, 74, 81, 81, 81,239,130,130,130,210,166,150, 39,195, 48, 57,131, 6, 13, -242, 52,153, 76,236,152, 49, 99,196,121,121,121,168, 26, 98, 95, 90, 90,138, 67,135, 14,161,101,203,138, 85,103,110,221,186,133, -240,240,240, 58, 53, 95,159,115, 67, 13, 96,201,172,209,190,159, 94,184,150, 61, 29,192,138,192, 16, 95,156, 60,114, 28,103, 78, -158,155,215, 57,130, 95, 59,248,165,142, 31,217, 60,253,252,187,225, 81,175,139,236, 29,149,216,188,107,167,232,118,220,198,101, -134,242,155, 65, 0,222,173, 43,157,132,144,138,149,234,107,152, 43,177, 88, 12,157, 78,103,149,185,170,239, 92,162,160,212,189, -132,188,255,202,172,209, 93, 78,108,189,232, 96,103,103, 87,221,231, 39, 56, 56, 24, 98,137, 24,223,237,254,162,188,168, 40,111, -161, 53,154,118,118,118, 83,123,247,238,141,164,164, 36, 92,191,126,125,167, 70,163,185,174, 82,169,118, 38, 39, 39,143,233,216, -177, 35,126,253,245,215,169,117, 25,172,186, 52,171,102,172,167,148,130,227,184,130,202,102,242,107, 0, 58, 55, 54,239,149,147, -133,118, 3,128, 86,173, 90,101,140, 24, 49,194,145,101, 89, 84,154,103,183,198,156, 75,148, 82, 94,165, 82,173,185,116,233,210, -242,246,237,219,227,133, 23, 94,232, 23, 27, 27,219,175, 93,187,118, 8, 10, 10, 66, 97, 97, 33, 98, 98, 98,126,226,121,254,173, -172,172, 44, 67,125,253, 65,235,202,251,165, 75,151,238, 3, 24, 23, 21, 21,245,188, 88, 44,134,163,163,163, 72,173, 86,139,142, - 30, 61, 10, 0, 19,183,111,223,206, 61,174,251,146, 53,125,174,254,142,123, 29, 33,100,193,248,241,227,191,126,243,205, 55,109, - 58,118,236,136,226,226,226,106,211,127,240,224, 65,240, 60, 15, 55, 55, 55,184,185,185,225,254,253,251,216,189,123,183,169,184, -184,120,181, 84, 42, 93, 81,159,230,184,113,227, 30,208,172, 50,111,251,247,239, 71,213, 32, 18, 55, 55, 55,220,187,119, 15,187, -118,237, 50, 20, 23, 23,175, 50,153, 76,159,252,149,121,255,159, 51, 88, 5, 5, 5, 51,230,207,159,223,251,181,215, 94,115,211, -235,245, 34,119,119,119,104, 52, 26,246,200,145, 35, 5,165,165,165, 51, 26,243, 99,231,206,157,155, 50,100,200,144,213,223,127, -255,253, 55,223,124,243, 77,207, 23, 94,120, 1,227, 6, 13,194,228, 46,118, 48, 26,141, 32,132,224,200,145, 35,119, 79,157, 58, - 21, 40,149, 74,141,139, 22, 45,226, 1, 92,104, 72, 55,239,198,111,247,188,218,140,232,185,246,139,175,118, 68,118,232,220,172, -121, 64,115,121, 55, 63, 39,152, 45, 28,180, 57,249, 56,125,238,182,241,222,237,107, 25,188,217, 52, 58,231,246, 94,171,154,183, -110,223,166,102, 0, 51,194,195, 29, 23,127,178,254,231,245, 63,110,223, 57,226,141, 23, 70,138,163,218,244, 70, 74,246, 94,252, - 30,123,138, 45, 44,165,187, 75, 77,162, 73,183,111,151, 20, 54,182,224, 13, 6,131,229,225,134, 32,131,193,240,200,139, 92,111, -221,186, 21, 57, 57, 57,124,124,124,252, 9, 0, 63,168,213,234,251,141,249,254,180,105,211,102,172, 91,183,174,127,105,105,169, -255,200,145, 35, 37,174,174,174, 40, 40, 40,192,161, 67,135,216, 43, 87,174,164, 77,155, 54,109,214,163,164,239,113,143, 34,172, - 17,193,194, 43,175,191, 13,189,190, 12, 23,206,237, 71, 81, 65, 30,206, 95, 78, 64, 99, 34, 88, 0,144,149,149,149,174, 84, 42, - 59, 47, 93,189,118,215,128, 78,209,173, 66, 85,222,114,183,128,230,176,243,240, 70, 65,126, 62, 46, 92, 75,180,172, 59,118,250, -166,222, 96, 24,105,237,188, 48, 60,207, 87,143,114, 11,159, 62, 15, 12,195, 84,175,130, 80,245,185, 99,135,238, 96,196, 18,112, - 20, 48,155,205, 13,118,194,210,104, 52,153, 62, 62, 62,207, 77,155, 54,237,196, 15, 63,252,192,244,234,213,171,253,111,191,253, -246, 72,139,230,102,102,102,250, 86, 54,107,149, 56, 58, 58,138, 39, 76,152, 0,139,197, 2,157, 78,135,146,146, 18,228,231,231, - 27,103,206,156, 41, 7, 0,169, 84,106, 25, 48, 96, 64,131,247,143, 85,219, 51, 13,179, 70,251,174,117,151,164,140, 41,206,189, - 30,232, 46, 73, 73,238, 28,193,175, 93,181, 61,211,240,159, 55, 93,150,170,115, 99, 18, 52,101, 71, 54,108,222,181, 83, 52,126, -196,115,156,210,254,222, 60,119, 63,108,239, 61,204,138,155,215, 67, 6,171,169,145,171, 63,221, 79,110,210, 43,129, 93,156,150, -247, 30,221,241,189,165,179, 63,179,119,247,112, 7,203,178, 72, 78, 79,194,247,187,214,149,151, 26, 11,151,229,223,166,177,214, -104, 5, 6, 6, 6,136, 68, 34,236,221,187, 23, 0,170,166, 54, 88,119,232,208,161, 49, 47,189,244, 18,252,253,253,195,155, 55, -111, 46,175,111, 26,141,218,162,119, 22,139, 5,143,123, 93,107, 66, 72,210,181,107,215,124,124,124,124,200,214,173, 91,203,204, -102,243,135,141,213,240,246,246,254,236,192,129, 3, 61, 40,165, 3, 34, 35, 35,209,172, 89,179,202,251,233,109,156, 57,115,230, - 23,181, 90,253,202, 99, 90,220,153, 18, 66, 80, 82, 82, 82, 53,175,137,217,222,222,190,169,186,186, 26,145, 43, 29,254,101,168, -213,234, 31,189,188,188,142,124,248,225,135, 31, 4, 7, 7,191, 53,113,226, 68, 81,104,104, 40,138,139,139,225,232,232, 8,165, - 82, 9,181, 90,141, 31,127,252,145,203,201,201,249,158, 97,152,197, 26,141, 70,211, 84, 77, 23, 23, 23, 40,149, 74,100,102,102, - 86,105,126, 99,177, 88, 62,202,205,205,213, 66,160,113,215,148, 53, 23,105,229, 52, 13,107, 56,142,235, 93, 21,213, 42, 40, 40, -152,145,157,157,157,215, 84,119, 63,100,200,144,224,188,188,188,111,204,102,115,207, 97,195,134,225,133, 23, 94,192,208,161, 67, -241,194, 11, 47,136,170,162, 86,123,247,238,141,111,140,102,213, 98,207,140, 72, 58,132, 82,218, 22, 0, 33, 12,211,224, 98,207, -214, 56,241,200,112,199, 32,133,156,255, 86, 33,227,187,235, 77,204, 89,189,145,121,227,202,237,146,164, 71,121,178,169,185, 56, -115,229,178, 48,243, 27, 91,158, 53,155, 8,197, 98,201,118, 55, 55,183,197,132,144,116,107,251,117, 60,164, 73,128,234,121,176, -214,136,197,226, 81,122,189,222, 89,161, 80, 20,177, 44,187, 99,218,180,105, 51, 22, 45, 90, 84,223, 9, 67,235, 74,167,143,143, -207,234,223,126,251,205,234,190, 85,195,134, 13,187, 81,213, 47,203,154,242, 12, 14,242, 61, 18, 20,224,243, 76, 80,128, 10, 0, -144,148,162, 65, 82,138,250,104, 98, 82,102,255,166, 28,163,154,139, 61,147,202,169, 24,168, 21,139, 61, 63,172,217,186,117,235, - 88,145,168,238,133,132,235, 48,100,154,155, 55,111, 70, 90,147, 78,149, 74,245,162,159,159,223, 10,141, 70,179, 43, 35, 35,227, -237,199, 17, 17, 84,169, 84, 93, 25,134, 57,200,243,188,226,225, 8, 87,149, 9,243,246,246,110, 38,151,203, 31,232,228, 94,159, -230, 39, 11, 34, 22,118,235,217, 99,196, 31,167,207,236,158,179,236,230, 3, 19,232, 78, 29,225,250,234, 75, 83,102,124,242,243, -151,107,230,172,219, 93,240,125, 67,233,108,219,182,109, 12,128, 22, 85,209,172,250,224, 56, 78,115,243,230,205, 14, 77,137, 58, -184,181, 37,209,206,118,238, 75, 76,102,115, 59,134,128, 74,164,210,107, 69, 69,121, 11,107, 51, 87,117,105,250,250,250,174, 8, - 9, 9,153,145,152,152,248, 75, 70, 70,198,107, 53,202,248,211,230,205,155, 79,201,200,200, 88,151,145,145,241,174,181,199, 40, - 48, 48,208,177, 93,187,118,133,139, 23, 47,102, 22, 45, 90,132, 75,151, 46,185,102,102,102, 22, 62,142,227,222,172, 89, 51,111, - 27, 27,155,205, 60,207, 7,113, 28,247,101, 82, 82,210,103, 77,209, 12, 15, 15,151, 22, 21, 21,205,240,243,243,155,229,229,229, -229,165,213,106,211,210,211,211,151,103,103,103,111,180,214, 92, 89,115,140,162,162,162,140, 0,100, 0, 96, 77,127,171,191, 59, -178,254, 87,104,250,250,250, 6,241, 60,191,172, 93,187,118,163, 94,125,245, 85,114,231,206, 29, 28, 59,118, 12,169,169,169,187, - 41,165,239,213,213,164,219, 88,205, 35, 71,142,208,180,180,180,237, 12,195,188,159,153,153,153,244,119,229,253,127,210, 96,253, -149, 39, 95,149,209, 50, 26,141, 79, 1, 40,191,126,253,186,195,191,249, 34,233,213,203,195, 46, 38, 38,183,252,113,105,214,236, -160,222, 84,205,198,104, 88, 99,176, 30,229,169,178,174,116,170, 84,170,169,132, 16,171,163, 83,148,210, 36,141, 70,179,174,177, -229,217,162, 69, 11,122,255,254,125,171, 58, 73, 62, 9, 55,220,255, 47,154, 95, 47,107,171,106,215, 49,244,157, 91, 87,239,126, - 86,217,124, 88,205,226,233,174, 14,221,158,238,245,254, 31, 39, 99,150, 62, 60,138,240, 73,200, 59, 33,132,169,205, 88, 52, 52, - 39, 93, 93,154,254,254,254, 95, 71, 70, 70,190,113,229,202,149,239,210,211,211, 39,254, 91,243, 78, 8, 33,205,154, 53,147, 53, - 38, 58, 39, 92, 71,214,105,122,123,123,119, 96, 24,102, 97,229,131,207,178,204,204,204, 75,143, 81,147,163,148, 46,205,202,202, -186,242,119,231,253, 73, 67,252, 79, 39, 96,255,254,253,137, 0,122, 13, 27, 54,204, 83, 36, 18,177,255,246, 2,179,198, 92, 53, -202,145, 52,193, 20,253, 21, 26, 53, 13,210, 95, 65, 77,179,244, 87,114,239,222, 61, 34, 92,214,255, 62,222, 90,112, 93, 3,224, -237,142,125,254,252, 89,165,169,154,243,244,176, 39, 51,239,117, 69,109,154,186, 16,115,122,122,250, 91, 42,149,106, 86, 99, 70, - 31,254, 67,249,166, 0,140,194,217,255,248,201,206,206,142, 5, 48,244,223,174, 41, 24,172,127, 9,191,253,246, 91,142,112, 56, - 4, 4, 4, 4,172,122, 96,209, 11,165, 32, 32,240,239,134, 0,136,168,227,233,195,234,208,223, 67, 67, 91,173,125,186,185, 41, -104, 10,154,130,166,160, 41,104, 10,154,130,230,255,150,102, 67,218, 79, 74,211,227, 63,222, 7, 75,208, 20, 52, 5, 77, 65, 83, -208, 20, 52, 5, 77, 65,243, 73,131, 17,138, 64,224,175,230,139, 55,136,207, 23,111, 16,159,191,106,127, 1, 1, 1, 1, 1,129, -127, 27,226, 39, 45, 67, 29, 58,116, 8,167,148,190, 68, 8, 25, 5, 0,148,210, 29,132,144,159, 99, 99, 99,173,154,129, 86,161, - 80,100, 27, 12, 6, 79, 0,176,177,177,201, 49, 24, 12, 74, 84,142,174, 27, 53,106, 20,201,203,203, 35,101,101,101, 4, 0,236, -237,237,233,233,211,167, 41, 0,190,190, 14,171, 54, 54, 54, 90,163,209,232,249,240,118,169, 84,106,118,113,113, 41,244,244,244, - 44, 84, 42,149,133,205,154, 53, 43, 12, 10, 10,202, 85, 42,149, 23,162,162,162,118, 6, 5, 5,149, 90,155,239,126,253,250,189, -101,103,103,183, 80,175,215,127,114,228,200,145, 53,127,117, 57, 19, 66, 58,249,169,188, 55, 89, 88, 51,159,157, 83,176,128, 82, -186,183,182,253,190,122,141, 44, 23,147,138, 73, 35,191,122,141,172,156,252, 93,253, 83, 81, 52,118,255,122,210,215, 65, 34,145, - 76,245,242,242, 26,152,153,153, 25, 11, 96, 14,165, 84,152,133, 88, 64, 64, 64, 64,224,223,103,176,186, 68,185,133, 18,222,252, -174, 68, 68,123, 88, 56,114,134, 50,210,149,231,227,242, 19, 30, 37, 1, 42,149,202,143, 16,210,139, 82,218,138, 97,152, 27, 60, -207, 31,213,104, 52,249,141,209,136,138,138,242, 3,240, 2,128, 23, 59,119,238, 28, 49,105,210, 36,132,132,132,192, 96, 48,224, -210,165, 75,243,182,108,217, 50, 47, 42, 42,234, 38,128, 95, 0,108,141,139,139,203,168, 75,203, 96, 48,120, 86,121, 37, 66,136, -231,196,137, 19,185,154,139,240,186,184,184, 84,205,189,115,132, 16,114, 56, 44, 44,236,240,151, 95,126,153,212,210, 83,209,185, -185,159,199,224, 67,177,105, 11, 30,214, 52, 26,141,158,218,184,139,160, 44,135, 50,117, 58,124, 6, 14, 7,199,113,224,121, 94, -122,168,111, 39, 47, 94,159,231,165,180,117, 65,171,197,139, 77, 6,131, 97,187,201,100,202, 13, 10, 10, 42,173, 79,243, 97,218, -183,111,255,209,135, 31,126,232, 62,108,216,176,169, 0,234, 52, 88,141,209,172,199,188,200, 59,119,104,123,106,223,206,173, 54, - 32, 12,158, 29, 49,234, 23, 66,200, 56, 74,233,206, 7,204,210, 4,226, 69, 68,120,119,210,204, 73, 34, 0,248,106,245,250, 57, -171, 95, 38,107,103,254, 68,179,125,124,124,122, 83, 74,231, 84,234,125,162, 86,171, 79,125, 53,129,120,129,193,220, 73, 51, 39, - 17, 0, 88,191,122,253,187, 95, 77, 32,107, 38,111,106,220, 40, 73, 66,200,228, 87, 94,121,101,237,178,101,203, 68,149,147,240, - 13, 8, 15, 15, 15, 37,132,132, 83, 74,133,206,193, 2, 2, 2, 2, 2,255,188,193,138,136,112,114, 86, 48,116,150, 66, 70, 95, - 24,208, 35, 60, 96,232,192,174, 36, 48, 56, 16, 9,119, 18,130, 78,157,190, 60,161,119, 71,135, 20,189,137,108,213,243,100,213, -205,155,245,175, 31,182,246, 93, 98,177,176, 21,191, 41, 21,131, 91,185,205,119,119,223,190,125, 3, 94,125,245, 85, 68, 70, 70, - 34, 54, 54,182,247,246,237,219,103,248,249,249, 93,182, 88, 44, 7,229,114,121, 76, 67,115,168, 68, 69, 69,173,240,241,241,153, - 51,123,246,108,210,161, 67, 7,200,229,242,234,207,236,237,237,209,167, 79, 31,244,233,211, 7,217,217,217, 17, 49, 49, 49, 17, - 63,255,252,243,242,168,168,168, 79,226,226,226,230, 89, 83, 64, 83,167, 78,173,109,243, 17, 66,200, 97,134, 97, 14,135,133,133, - 37,133, 40,237, 91,122,121,184,237,255,207,178,197, 0, 80,167,113,217,211,191, 43, 0, 96, 84,226,127,231,103,165,101, 69,240, -109,215, 6,174,173,194,121,131,193,176,211, 96, 48,236,108,209,162,197, 1,107, 53, 1,160, 87,175, 94,114, 7, 7, 7, 66, 41, - 69,199,142, 29, 93,251,247,239,159,192, 48,204,154, 67,135, 14,173,175,185, 95, 99, 52, 27,160,211,135,239, 78,145,230, 37, 93, - 69,252,185,163, 24, 30,229, 99,115,229,214,221,165, 0,118,214,111,124, 24,230,135, 88,247,121, 51,129, 25, 60,207, 47,188,115, -231, 78, 79, 0,104,213,170,149, 12,192,169,205,151, 92, 6,189,210,181,184,201,211, 44, 16, 66,164, 34,145,232,203,205,155, 55, -191, 62,110,220, 56,164,165,165,225,236,217,179,176,183,183,199, 71, 31,125,212,124,246,236,217,203, 1,204, 16, 46,123, 1, 1, - 1, 1,129,127,212, 96,245,136,178,187, 52,162,103,112,212,176,254, 93,153,144, 86,225,144,202,109,171, 63,107, 19, 25,137, 54, -145,145,100,226,196,210,192,107, 87,174,189,127,248,196,197,247,122, 68,217,197,157,137, 43,239, 88,151,158,133,133,120,246,107, -147,174, 0, 64,204,185,245,145, 9, 9, 9, 1, 10,197,127, 39,139,238,217,179, 39,122,246,236,201, 44, 95,190,188,211,169, 83, -167, 58,109,221,186,213,236,227,227,179, 90,173, 86,111,175, 39,153,115,182,111,223, 78, 68, 34, 17, 68, 34, 81,157, 59,121,123, -123,163, 95,191,126,240,246,246, 38,239,190,251,238, 28, 0,181, 26, 44, 27, 27,155, 28, 66,136, 39, 0,184,185,185, 97,237,218, -181, 64,141,249,161, 56,142, 59, 2,224,176, 68, 34, 57,188, 97,195,134,228, 96, 31,133,143,131,220,246,232, 55, 95,127, 1, 75, -137,214,181,174,223,215,105, 50,107,221,238, 31, 29, 5,151, 86,173,121,137,171,219,239, 6,131, 97, 71,139, 22, 45,246, 89,171, - 89,101,174, 20, 10,197,239, 95,127,253,181, 11, 0, 76,155, 54,205, 89,167,211, 57,191,241,198, 27,243, 0, 84, 27,172,198,104, -214, 99, 96,156,123,116,233,144,186,118,197, 7,142,145,157,186,227,194,142,175, 80, 84, 84,142,242, 82, 29,120,158,255,211,202, -191,147, 55, 81,237, 87,175,145,149, 95,125,190,126, 46, 97, 24,210,174,255, 28,244,119,165,211, 85, 42,213, 45, 66,136, 68, 38, -147, 85,233,138,125,125,125, 85,161,161,237, 87,134,116,111,137,245,107,190, 4,229,121, 10, 96,165,181,209, 43, 66,136,167,131, -131,195,222,163, 71,143,118,138,142,142,198,133, 11, 23,144,148,148,132, 41, 83,166,152,166, 76,153, 34, 29, 63,126, 60,153, 53, -107,214, 52, 66,200, 14, 74,233, 31,194,165, 47, 32, 32, 32, 32,240,143, 25, 44, 27, 41, 23,253,225,218,107,224,202, 19, 65, 45, -233,160,230,236, 63,237, 99,235,236,135,176,118, 94,176,149,121, 48, 55,238,124, 30, 93,243,179,134, 70, 24, 84,153,171, 29,159, -169, 90,235,203,179,164, 0,160,176, 83,154,159,155,165,190, 21, 29, 29, 13, 15, 15, 15,233,185,115,231,102, 1,216, 94,143, 38, - 49, 93,143, 69,252,208,110, 8,142, 47,128,173,173, 45,170, 42,238, 42, 18, 18, 18,240,251,239,191, 35, 45, 45, 13, 65, 65, 65, -192, 67, 51,150,215,212,212,235,245,222,227,199,143, 47,127,231,157,119, 20, 95,127,253, 53, 46, 93,186,228, 28, 23, 23, 87, 82, -107,116,207,223,201, 89, 70, 37, 71,191, 93,255,185, 4,166,114,215,187,151,255, 64,235,129,111,214,154, 78,239,190,131,170, 35, - 87, 59,130,221,225, 17, 20, 0, 85,219, 54, 8, 94,249, 61,111, 52, 26,183, 27, 12,134,237, 45, 66, 66,126,179, 86,243,233,167, -159,158, 32, 22,139, 23, 0,112,218,176, 97,131,179,179,179, 51,179,119,239, 94,243,215, 95,127, 93, 42,149, 74, 77,132,144,143, -155,146,206,250,144,136, 68, 75, 62,253,240, 93, 71, 91,134,197,149,131, 63, 33, 51, 45, 29,215,239,171, 45,191,158,185,205,153, - 44,220,171,181,149,231,228,239,232,252,217, 35,228,155, 98,179,130,246, 13, 89, 52,165,197,210, 97, 94, 48,155,205,223,230,230, -230,226,141, 55,222, 0,207,243,232,222,189,123, 55, 74,169,122,250,244,233, 8, 10, 10,194,183,191,221,211,137, 75, 46,246,218, -114,162, 36,214,154,115,137, 16, 18,209,172, 89,179,163,167, 78,157,242,242,241,241, 65, 76, 76, 12,178,179,179,161, 84, 42, 49, -101,202, 20,217,138, 21, 43, 54,151,148,148,140, 94,182,108,153,205,205,155, 55,183, 18, 66,252,104, 5,143,125, 4,140,160, 41, -104, 10,154,130,166,160,249,151, 16, 13,192, 3, 64, 46,128,203, 15,189, 71,229,107,212,242, 62,175,178,206,175,185,120,121, 94, -101,224,196, 3, 0, 7,224, 18,128,194,199,157, 96,113,101, 5,213, 19, 64, 12,128,197,148,210, 15, 31,222,201,172,142,129,172, -249, 72,192,166, 53,168, 41, 17,188, 73, 13, 42,241, 68,185,206, 6,121,169,105,136,191,176, 3,148,109,120,141, 76,137, 24,236, -238,195,235, 35,157, 29, 0,145,204,195, 92, 90, 90, 10, 59, 59, 59,232,203,179,164,227,199, 87,116, 27,218,188,121,134,244,212, -169, 83,136,139,139,131, 74,165,106,208, 4, 2, 0, 53, 85,180, 34,154, 76, 38,152, 76, 38,100, 15,234, 8,187,206, 79,161,240, -229, 41, 56,126,252, 56,114,115,115, 33,149, 74, 33,149, 74,193,178, 13, 79, 22, 79, 8, 97, 42, 79, 32,200,229,242, 90,103, 97, -246,245, 37, 54, 14,156, 98,255, 23,171, 62,118,116,180,183,245,138, 61,186, 7,105,105,217,117,106,242,252,127,101,148, 97,161, - 80,182,137,128, 75,235, 54, 48, 26,141, 59,141, 70,227,206,144,144,144, 61,141,209, 20,137, 68, 31,237,220,185,211,199,104, 52, - 66, 42,149, 98,199,142, 29,230, 31,126,248,225, 86,121,121,121,143,184,184, 56,125, 83,211, 89, 31,110, 30, 30, 7, 70,142,125, -115,202,210,215,250, 65, 95,110,192,238, 51,183,113,226, 70,202, 48, 0,103, 41,165,117,206,112,255,217,110,227,125, 31, 31,159, - 62,111,188,241,198,213, 93,187,118,185,127,250,233,167,224, 56, 14, 44,203,130,101,217,234,215, 28,199,225,151, 95,126,193,217, -139,183,167,107, 52, 37, 86, 45,166, 75, 8, 81, 5, 4, 4, 28,191,120,241,162,135,173,173, 45,142, 29, 59,134,162,162, 34, 76, -158, 60,185, 58,114, 85, 84, 84,244,194,250,245,235,159, 75, 77, 77,253,244,204,153, 51,249, 0, 68, 0,254,245,171, 6, 8, 8, - 8, 8,252, 47,209,128, 23,241, 32,132,236,167,148, 14, 1,208, 23,128,172,198,123, 16, 66,246, 87,214,219, 15,188,159, 55,111, -222,123,203,151, 47,191, 85,245,190,106,159,249,243,231,183, 94,177, 98,197,199, 93,186,116,217,122,238,220,185,228,191,204, 96, - 1,136,169,111,237, 54, 99,226, 22, 24,147,127,133, 84,217, 27,178,192, 49,144,184,119, 65,198,221, 24, 92, 61,190, 10,153,247, -206,130,242, 28,188,252,194, 26,252,177,233, 43,169, 68,165, 82,197,105, 52, 26, 92,185,114, 5,137,137,137,176,177,249, 83,203, - 18, 78,156, 56, 1, 0,240,242,242,178, 42, 19,178,232,110,240,187,150,133,140,118, 74, 0,128,223,181, 44, 0,192,199,243,231, - 67, 38,147, 65, 42,149, 86,239,203,113,156, 53, 7,153, 84, 25,172,178,178,178, 90,215, 16, 11,246,114,216,190,104,222,212,102, - 1, 65, 33,170,139, 7,182, 33, 57, 89, 13,173,182,246,227,227,224,224, 80,202,243,124,245, 26,139, 62, 81,145,112, 14,111, 3, -145,187,215, 41,147,201,180, 51, 56, 56,120, 87, 99, 53, 1,108, 27, 61,122,244,132, 17, 35, 70, 40, 58,119,238, 44,255,238,187, -239,138, 30, 54, 87, 77,208,172, 19,165, 82,217,127,240,224,193, 7, 38, 78,156,136,225, 3,250,226,165,238,173,104,102, 78,177, - 30,192, 49, 74,105,131,133,170, 86,171,213, 62, 62, 62,253, 70,142, 28,185,165,117,235,214,173, 40,165, 8, 11, 11,195,240,225, -195,177,115,231, 78,220,190,125, 27,165,165,165,230, 51,103,206,172,214,104, 52,223, 91,121, 49,218,186,184,184, 28, 62,121,242, -164,135,173,173, 45,142, 30, 61, 10,157, 78,247,167,200,213,199, 31,127,108,147,146,146,178,238,200,145, 35,205, 1, 48,148, 82, -193, 92, 9, 8, 8, 8,252,251,136,105,104, 29,217, 42, 83, 85,211, 48, 61,108,180,170, 94, 87,237,183,124,249,242, 33, 53,205, - 23, 0,172, 88,177,226,227, 26,239,117,127, 69,102,170, 12, 86, 47, 66, 8, 5,208,139, 82,122,250,161, 48, 96,101, 8,134,133, - 89,125, 12,102,245, 49,216,182, 91,128,189,107, 95,126, 64,200,154,200, 80,109, 24, 12, 6, 72,100,110,230,205,155,103, 72, 1, -128,163,118,230, 63,253,118, 67, 17,172, 70, 76,150,106,101, 58,171, 13,150, 94,175,103,255, 28,189,242,253,172, 75,183, 78,221, - 67,218,116,180,189,120,120, 23,238,223, 75, 67, 94, 94, 49, 64, 97,168, 77,204,195,195, 35,255,228,232,129, 14, 50, 78, 15,175, - 54,109,224,191,112, 53,244,122,253, 46,179,217,188, 61, 40, 40,104, 71, 83, 52,143, 29, 59,246, 78,151, 46, 93, 22,238,216,177, - 67, 19, 20, 20, 36, 23,139,197,230,154,230,170, 41,154, 15,163, 82,169,186,137,197,226,163, 12,195, 40, 6, 12, 24,128,233,211, -167, 99,205,154, 53, 44, 47,177, 25,178,254,112,236,232, 50,163,121,129, 53,230,170,134,201,186, 14, 32,188,121,243,230,114,150, -253, 63,246,174, 59, 62,138,226,143,190,217,189, 94,210,251, 37,244, 16, 8, 33, 4,146, 64,232, 93,148,162,160, 2,138,116, 16, - 1, 1,145, 34, 69,144, 42, 65,144, 42, 82, 84,164, 11,130,128, 8, 82,165,132, 78, 10,161, 4, 72, 72, 40, 41,151,222,203,245, -221,253,253,145, 92, 12, 49,229, 18, 80,208,223,190,207,231, 62,119,123,187,247,110,118,118,118,230,237,155,239,204,152,186,189, -249,230,155,191,247,233,211, 7, 87,175, 94,197,153, 51,103,188, 12, 6, 67,114,201,255, 46, 6,224, 66, 81,212,138, 42, 86,114, -167, 68, 34,209,222, 51,103,206, 52, 87,169, 84, 56,125,250, 52,138,138,138, 74,157,171,145, 35, 71, 62,227, 92, 93,185,114, 37, -147, 23, 87, 60,120,240,224,241, 74,163, 82, 45, 82,214,125,170, 72,100, 89,248, 80,110, 22, 95,154,217,179,103,207, 37,132, 28, - 45,113,184, 52, 0,212,127,139,192, 42, 57, 17, 82,114, 98,213,142,226, 98,242, 31,253,229, 59,150,173,125,187,229,213,243,228, - 93,153, 76,134, 77,155, 54, 65, 46,151,215, 88, 56, 21,254,126, 16, 9, 31, 15, 45,117,174,204, 78, 22, 94, 31, 81, 43,129, 85, -198,193, 58,217,178,101, 75, 83, 57,209, 50,201,207,207,111,204,119,219,119, 91, 45,159,255, 89,110,222,253,187, 2,109,145, 78, -161, 51,154, 12,177,169, 25,235, 42, 17, 42, 89,118, 78,214, 13,172,220,154,194,182, 89, 11,232,116,186,195, 37,221,130,191,212, -150, 19, 0,174, 94,189,170,237,209,163,199,182,101,203,150,181,101, 89,118,251,243,166,179,188,184,114,112,112, 56,185, 97,195, - 6,153, 76, 38,131, 78,167,195,138, 21, 43,240,199, 31,127,244, 75, 78, 78, 62, 9,224,100,109,175,183,193, 96, 24,219,179,103, -207, 53, 51,102,204,128,209,104,196,123,239,189,135, 39, 79,158,156,122,248,240,225, 58, 15, 15,143, 25, 19, 39, 78, 84, 57, 58, - 58, 98,194,132, 9, 34, 0, 35, 43,161,249,106,207,158, 61,253, 90,182,108,137, 11, 23, 46, 32, 55, 55, 23,110,110,110,152, 52, -105,146, 56, 56, 56,120, 71,126,126,254,160,224,224, 96,222,185,226,193,131, 7,143,127, 9, 44,213, 34,101,157,168, 26,242,155, -127, 39, 12, 14, 14,190, 27, 28, 28,252,140,195,245,183, 8,172,146,147, 1,128,174,150,184, 67,172,230,175, 49, 60, 44, 99,170, -201, 73, 90,116,156, 37,221,121,192,159, 49, 88, 21, 8,165,191,108,215, 64, 96,157, 36,132,156, 56,112,224, 0, 91, 70,180, 12, -112,117,117,253,106,207,158, 61, 50,181, 90, 13,143, 38,190, 54,199,126,217,167,115, 81, 72,180,137, 89, 89, 35, 34,147, 10, 14, - 84,196, 87,175, 94,189, 76,219,186, 74, 88,123,251,130, 56,171,254,208,106,181, 7,146,147,147,127,105,220,184, 49, 91, 91, 78, - 51,254,248,227,143,233, 21, 56,108,207,197,169, 82,169, 58, 56, 58, 58,158,220,176, 97,131, 92,173, 86, 67, 36, 18, 65,169, 84, -226,236,217,179, 40, 17, 87,181,134,135,135,199,194,201,147, 39, 47, 24, 57,114, 36,178,179,179,113,230,204, 25,116,235,214, 13, - 27, 54,108,168,119,246,236,217, 53,237,219,183, 7, 77,211, 56,125,250, 52,140, 70, 99, 76, 37,215,231,237,113,227,198,205,120, -247,221,119,113,227,198, 13, 36, 39, 39, 99,194,132, 9,250, 73,147, 38,149,198, 92,109,220,184,241,221,199,143, 31,243,206, 21, - 15, 30, 60,120,252, 75, 80,149, 22, 41,135, 99, 0,250,150,119,181,202,139, 47,179, 67, 85,118,187,252,241, 37,251,181,127,199, -249,152, 29,172,202, 93, 43,142, 1,109,239, 7, 38,235, 86, 25,129,149,252,204, 33, 34,137, 18,140, 5,194,101,253, 76, 98,252, -102, 42, 4, 23,190,163, 64,137, 28, 12, 10,223,147,119, 43, 59, 86,169, 84, 62, 19, 24, 94,149, 14, 19,245,121,151,246,124,125, - 0,226, 90,184,130, 51, 26, 74,157, 44,204,157,251,140,184, 18,137, 68,208,235,245, 64,241,168,129,170,112,154, 16,114,138,166, -233, 19, 28,199,113, 93,187,118,253,222,104, 52, 14, 80, 42,149,118, 31,126,248,161, 33, 35, 35, 3,135, 14, 29,194,182,109,219, - 52, 5, 6, 65, 88,118,166,113, 88,156,186, 32,177, 50,178, 38, 77,154,100,185,142, 29, 11,189, 94,255,155, 86,171,221,159,159, -151,247,203,162, 69,139, 54,205,155, 55,175,214,156, 21,225,121,211,105, 22, 87,206,206,206,165,226, 74, 34,145, 64,169, 84, 34, - 41, 41, 9, 2,129,224,185, 38,233,172, 95,191,190, 36, 40, 40,104,214,136, 17, 35,112,255,254,125,204,158, 61, 59, 89,173, 86, - 31,252,245,215, 95, 39, 76,155, 54, 77,208,165, 75, 23,164,165,165, 97,243,230,205,198, 27, 55,110, 44, 75, 73, 73, 89, 89, 97, -161, 21, 8,198, 46, 89,178,132, 83,171,213, 36, 46, 46,238, 25,231, 42, 47, 47,111, 80,112,112,176,244,209,163, 71,188,115,197, -131, 7, 15, 30,255, 46, 7,171,170, 30,180,140, 18,241,148, 90,193, 54, 93, 70, 88,149,223, 78, 43,183, 13, 0,250,114,251, 35, -255, 54,129, 85, 25,140, 12,149,187,103,195, 71, 54,111, 13,156, 8,169,107,103,232, 31,255, 12, 86,147, 90, 42,176, 68, 82, 43, - 88, 59,214, 69, 94,129, 6,151,239, 61,130,145,161,114,171,228, 51, 65,240,246, 27,127,206,131,101,107,107,139,220,220,220,103, - 28, 45,185, 92, 14,149, 74,133,188,188, 60, 28, 56,112, 0,213,205, 89,196,113,220,146, 17, 35, 70,124, 49,113,226, 68,202,115, -200,104, 20, 92,187,248, 23,215, 74, 42,149, 66, 38,147, 33, 41, 41, 9, 15, 30, 60, 96, 57,142, 91, 82, 77,190,156,162, 40,234, -196,183,223,126, 27,215,181,107,215,145,118,118,118, 67, 70,143, 30, 45,187,113,227, 6,150, 44, 89, 34, 56,125,250,180, 33, 52, - 52,212,196, 48,204,244,164,164,164,205,213,101,114,171, 86,173, 50,117, 58,221, 49,157, 78,247, 11,128, 95,102,204,152,241,193, -243,114, 86, 32,174,158, 59,157, 42,149,170,189, 74,165, 58,185,110,221, 58,121, 74, 74, 10, 36, 18, 9,172,172,172, 16, 31, 31, -143, 37, 75,150, 20,154, 76,166, 55,158,179,188, 73, 20, 10,133,196,104, 52, 98,251,246,237, 72, 74, 74,106,151,156,156, 28,239, -234,234,186,121,252,248,241,235,155, 53,107,230,253,224,193,131,152,130,130,130,143, 83, 82, 82,238, 87, 70, 98,107,107,219,206, -201,201,137, 92,189,122, 21, 19, 38, 76,208, 79,158, 60,185, 52,230,138,119,174,120,240,224,193,227, 63,137, 27,213,108,191,114, -168,114,177,231,244, 34,141,243,230, 29, 7,215,191, 55,184,135,246,228,217,179, 64,189, 17, 16,186,191, 14,208, 82,168,188, 58, -192,169,126, 91, 68, 62, 76,193,161,139,119,181,209, 73,250,245,233, 69, 26,231,114,226,198,183, 42,254,220,220, 92,212,175, 95, - 31,154,168, 62,205, 83, 47,122,251, 15,104,246,141,127,144,243,170,230,103,207,158,197,170, 85,171, 10,162,163,163, 87,123,121, -121,205,168,138, 51, 34, 34, 98, 81, 66, 66, 66,171, 57,115,230,156,248, 60, 49, 15,217,139,191, 69,222,212, 17, 72,233,209, 2, -114,185, 28,142,142,142, 40, 44, 44, 68, 72, 72, 8, 34, 35, 35, 79,104,181,218, 86, 17, 17, 17,139,170,226, 44, 89, 2, 39, 46, - 40, 40,200, 42, 55, 55,119,221,136, 17, 35,100,133,133,133,200,200,200, 64,102,102, 38,174, 95,191,126, 90,175,215, 55,175, 74, -180,148,229,244,246,246, 14,215,235,245,191,100,100,100,252, 50,116,232, 80,241,139,224, 44,139, 23,149, 78,133, 66, 49,243,208, -161, 67,114,138,162, 32,145, 72, 96, 99, 99,131,132,132, 4, 44, 94,188,184, 80,163,209,188,161, 86,171, 45,154,160,179,170,235, -206,178, 44, 76, 38, 19, 56,142,131, 88, 44,206, 3,128,148,148,148,251,113,113,113, 61,142, 28, 57,226,246,240,225,195,174, 21, -137,171,178,156, 25, 25, 25,231,159, 60,121, 2,133, 66,129,201,147, 39,139,151, 45, 91,182,115,221,186,117,218,224,224, 96, 81, -207,158, 61, 55,156, 60,121,178,169, 70,163,233, 92,157,184,170,174,124,214, 6, 60, 39,207,201,115,242,156, 60, 39,143,106, 29, -172,168, 40,206, 0,224, 19, 31, 31,235, 69, 43, 54,237,217,180,115,255, 47,111,127,248,254, 59,130,128, 22,221,240, 56,229, 87, -132,132,157, 51,101,231,115,135,242,245,244,132,168,168,188,106,199,254, 11, 5, 48,173,218,186,201, 31, 0, 68, 66,152,150, 47, -238,119,190,121,243,230, 29, 63,236,158, 38,122,103, 96,113,220,245,193, 3,159,136,206,159, 63,191, 95, 34,145,108,121,244,232, - 81,158, 37, 39,113,243,230,205,219, 0,122,183,110,221,186,243,140, 25, 51,190,234,211,192,163,205,219,237,186, 66, 40, 20, 34, - 52, 52, 20, 89, 89, 89, 55, 40,138,154, 21, 17, 17, 17, 98, 9,223, 15, 63,252, 16, 7, 0, 69, 69, 69, 75,188,188,188,196,247, -238,221, 67,108,108, 44,162,163,163,193, 48,204,195,196,196,196, 26, 5,196,153, 76,166,179,185,185,185, 89,109,219,182, 53, 22, - 21, 21, 45,127, 17,156,101,241,162,210,169,209,104,150, 45, 93,186,180,215,162, 69,139, 36, 86, 86, 86,184,121,243, 38, 22, 45, - 90, 84,168,213,106, 45, 22, 87,213,129,227, 56, 24,141,198, 26,141,252,172, 0,179, 90,182,108,217,116,233,210,165, 94, 37,177, - 92,188,115,197,131, 7, 15, 30, 60,254, 61, 2,235, 79,161,149,151, 13, 96,176,191,143,117,163,101,223,238,254, 94, 38,102, 59, -106,244,212, 37,141,142,250, 48, 34, 42, 47,206,210, 63,155,178,146, 19,150,221,158,188, 2,240,241,241, 81,132,223, 71,193, 59, - 37,223,133,223, 7,212,106,245,138,218,156, 76,104,104,104, 8,128, 32,127,127,255,183,127, 39,100, 46,240, 8, 28,199, 45,139, -136,136, 56, 84, 19,158, 54,109,218,212, 47, 44, 44,220,105, 48, 24, 90,177, 44, 43,190,112,225, 2,180, 90, 45,238,221,187,167, - 97, 89,246, 64, 77,211, 85,175, 94,189,212,193,131, 7,191, 80,206,191, 35,157,137,137,137,161, 42,149,170, 39, 33,228,204,172, - 89,179, 36,139, 23, 47,126,161,226,202,222,222,190, 40, 37, 37, 37, 83,171,213, 58,164,166,166,234,237,237,237,107, 53,247, 8, -199,113, 15, 9, 33, 45, 62,253,244,211,197, 51,102,204,152,249,213, 87, 95,137,248,152, 43, 30, 60,120,240,224,241,175, 19, 88, -102,148,136,169,174, 93,187, 58, 41, 46, 93, 73, 47,124, 17, 9,136,138,138, 42, 92,248, 17, 49,205, 89,244,137, 0, 0,196,162, -231,159, 97,187, 68, 80, 29,170,237,239,243,243,243,151,101,101,101,181,205,203,203, 51, 61,126,252, 88, 67, 8, 49, 17, 66, 52, - 44,203, 46,102, 89,118,243,127,153, 83,173, 86, 95,118,117,117,237,116,249,242,229,105,133,133,133, 27,212,106,245,149, 23, 85, -216,194,195,195,141,110,110,110, 67,223,124,243,205,209, 44,203,110, 78, 74, 74, 50,214,150,139,227, 56, 61,128, 89,132,144,131, -183,111,223,254,249,202,149, 43,201,188,184,226,193,131, 7, 15, 30,255, 74,129,101,198,249,243, 47, 70, 92,153,177,112,203,179, -206,214,203,198,131, 7, 15,222, 7,240,254,255, 35, 39, 0,164,164,164,132,253, 29,188, 0,144,156,156,124, 10,192,169, 23,197, -199,113, 92, 40, 33,164, 1,138, 71,137,240,226,138, 7, 15, 30, 60,120,252,123, 5, 22, 15, 30,175, 18,184,226,128, 46, 94, 92, -241,224,193,131, 7,143, 87, 6, 4,128,111, 37,141,150,197, 43,101,215,102, 52, 65,117,252, 60, 39,207,201,115,242,156, 60, 39, -207,201,115,254,247, 56,171,227,174,137,254,120,165, 5,214,115,142,230,170, 54,243, 94,116, 70,241,156, 60, 39,207,201,115,242, -156, 60, 39,207,249,223,227,252,175,129,226,179,128, 7, 15, 30, 60,120,240,224,193,227,197,162,198, 49, 88,109,218,180,105, 12, - 0, 55,110,220,120,248,119, 37,138, 16, 50,201,205,205,237, 67, 63, 63,191,102, 34,145,136,202,205,205, 93,116,254,252,249, 69, - 21, 29,219,178,101,203,176, 94,189,122, 53, 58,119,238,156,190,228,183, 40,251,206, 48, 76, 98, 88, 88, 88, 32,127,169, 95, 14, -220,220,220, 78, 74,165,210,122,197, 19,140,114, 48,177, 12, 24,150, 3,195,176, 48, 50, 28, 12,122,237, 83, 93, 97,238,235,181, -226,110,245, 78, 93,134, 97,131, 57,112,155, 8, 71, 38,112,132,219, 68, 56, 50,158,163,200, 38,194,114, 31, 65, 96,250, 26, 38, -193, 12, 1, 43,252, 92, 29,181, 63,225,191,144,159,139, 22, 45,122,174,135,162, 5, 11, 22, 84,184,254,148,191,191,255, 81,169, - 84,234, 89,217,239,138,138,138,146, 35, 35, 35,187,253,151,203,170,171,171,107,103,138,162,190, 1,208,188,220,174,251, 0, 62, - 81,171,213,127,188,106,105,118,118,118, 14,161,105,218,171,176,168,168, 48, 63, 47,175,145,149,149, 85,156, 76,174, 80, 48, 38, - 38, 38, 35, 35,173, 51, 95, 3,241,224,241, 10, 11,172,128,128,128, 38, 0,186, 16, 66,186,112, 28,215,217,219,219,219,165,168, -168, 8, 1, 1, 1,169,132,144,144,146,213,175, 47,132,135,135, 71,191,136, 4,209, 52,189,114,221,186,117,211, 39, 79,158, 92, - 42,146,238,220,185, 83,213,241, 30,203,151, 47,183,137,143,143,135, 72, 36,130, 88, 44, 46,125,209, 52,141,182,109,219,214,232, -255,237,237,237,173,156,157,157, 23, 17, 66, 6, 81, 20, 69, 87,119, 60,203,178, 12,199,113,251,211,210,210, 22,100,101,101,229, -215,228,191, 90, 7,250, 25, 1, 82,201,127,112, 76,104,216,173, 42, 71, 87, 54,109,218, 52, 76, 32, 16,120,148, 21,148,101, 68, -106,133,159, 25,134, 73,188,123,247,110,160,165,121, 33,149,203,103, 18, 74,208, 19, 28,235, 93, 76, 70,221,231, 88,211, 25,109, - 81,209, 74, 75,206, 87, 34,145,212, 11,143,136,240,138,122,240, 8,141, 26,214,133,222, 96,130, 78,111,196,175,103, 66,209,178, - 89, 3,188,213,231,181, 90,151, 21, 19, 75, 22,126, 62,105, 88,247,101,223,252,212,122,238,228, 33,202,101,223,252, 20, 56,119, -242, 16,171,101, 27,126, 10,252,124,202, 7, 86, 75,191,217, 19,248,249,148, 15,108,190,252,102,143, 30,192,216,218,252,199,152, - 22,245, 10, 41,198, 36,169,240,218,211, 2,221,214,219, 79, 21, 47,227,198, 93,182,108, 89, 19,131,193,112,111,228,123,129, 75, -188, 27, 59,167, 85,116, 76,110,110,154,115,236,253,176,249, 16,138,154, 53,107, 51,183,202,251, 83, 36, 18, 53, 12, 9, 9,241, - 50,207,180,207, 48, 12, 24,134,129,201,100,130, 94,175,199,187,239,190,251, 66, 6,196, 4, 6, 6,142,230, 56,238,203,226, 98, - 73,150,134,133,133,109,120,142, 7, 49,165, 64, 32,248, 84, 44, 22,119, 49,153, 76,205, 0, 64, 40, 20,222,211,233,116, 23, 76, - 38,211, 26,142,227, 10,106,194, 71, 81,212,218, 27, 55,110,248, 88, 89, 89,193, 96, 48,148, 46, 12, 79,211,180,119, 80, 80,208, -183, 0,188, 44,229,242,240,240, 8, 35,132,120,212,228,255, 57,142, 75, 76, 76, 76, 12,172, 97,125,233,245, 36, 94,237, 92,191, -174, 10, 0, 32,151, 43, 20,161,119, 30, 59, 7, 52,175,207,183,110, 60,120,188,170, 2, 43, 32, 32,224,119, 0, 93,188,189,189, -101,175,189,246, 26,252,253,253, 81,175, 94, 61, 72,165, 82, 0, 64, 86, 86,150, 75, 84, 84,212,224,155, 55,111, 14,190,122,245, - 42, 2, 2, 2, 52, 0, 46,133,135,135, 87,232, 70,244,124,179,203,100,133,149,108, 29, 0,164, 38,165, 39, 39,196,166,124,147, -156,156,188,146,227, 56,182, 76,133,217,104,228,200,145,211,166, 76,153,130,163, 71,143,226,167,159,126,130, 78,167, 67,110,110, - 46,206,159, 63, 95, 97, 58, 25,134, 73, 28, 62,124,184, 32, 58, 58,218, 84,153,131, 85,195, 39,194, 69, 99,198,140,153, 26, 24, - 24, 88,218,184,232,245,122, 24, 12, 6,232,245,122,164,165,165, 97,202,148, 41,230, 10, 17, 44,203,226,204,153, 51,147,103,207, -158, 13, 0,159, 86,196,249, 90, 23,207, 48, 1, 33, 30,236,159,162, 44,241,116, 72, 92, 32, 64,232,208,176, 72, 82,174,146, 5, - 0,180,105,221,170, 90,113, 39, 16, 8, 60, 34, 34, 34,156, 69, 34,145, 69,231,198,178, 44,252,253,253, 45, 58,214,221,221,189, -155, 66,105,253,211,219,239,143,177,107,229,239, 47,244, 80,185,193,104, 50,225,209,227,248, 54,145, 55,195, 91,157,250,109,223, -135,238,238,238, 67,146,146,146,206, 85,197, 99,100, 88, 68,222,125,136,211,151, 34,240,166, 72,138, 34,173, 30,249, 69,122,236, - 60,114, 25,137,105,185,181, 46,184, 65, 65, 65,238, 10,129, 99,208,148,177, 3, 20, 95,111,220,161,152, 50,118, 0, 86,109,218, - 89,250, 62,121, 76,127,172,220,184, 67, 57,101, 76,127,124,179,121, 91,187,160,160, 32,247,235,215,175, 39, 85,198, 87,217, 53, -162, 24,147,228,251,168, 36, 26, 0,210, 55,111,134, 33, 53, 21,170, 5, 11, 0, 0,227,154,123, 72,106,146,102, 95, 95,223, 82, - 65, 92,165,112, 52,153, 18,239,220,185, 19, 88,157,184, 50,153, 76,156, 64, 32,152,127,241,248,162, 3,237,219, 52,121, 38, 51, -163, 99,162,109, 22,126,177, 96,224,207, 39,242,185,193,111, 88,221,187,119, 99, 89,149, 34,139,101, 89, 74,167,211, 33, 38, 38, -166,194, 89,246, 41,138, 98,106,115,157,186,118,237, 42, 41, 44, 44,220,163, 84, 42,253, 10, 11, 11, 71,115, 28,247,197,249,243, -231, 93, 40,138, 66,207,158, 61,191, 8, 12, 12,124, 44,145, 72, 54,106,181,218,155, 74,165,114,200,249,243,231,117, 22,138,171, -206, 86, 86, 86, 59, 15, 31, 62,108,231,239,239, 79,101,100,100,160, 65,131, 6,200,202,202,106, 19, 18, 18, 18, 48,102,204,152, - 49,132,144,225, 28,199,133,212, 32,185, 77, 21, 10, 5, 55, 98,196, 8,194, 48,127,158,238,214,173, 91, 17,224,153,234, 57, 97, -160,172, 72,107,224,114, 47,222,146,142,231, 40,238,210,147, 39, 57,185, 85,164,207, 99,209,247,159, 56,139,197, 98, 24,141,198, -210, 23,199, 2,224, 0,142, 5, 56,150, 3,199, 1,224, 8, 88,134,197,170, 57,223,215,250,126,144, 43, 20,114, 87, 87,183, 84, -153, 92, 46,231,248,118,141, 7,143, 87,222,193,234,125,254,252,121,152, 76, 38, 88, 89, 89,129,166,233,242,238, 6, 58,119,238, -140,160,160, 32,244,236,217, 19, 15, 30, 60,144,125,245,213, 87,149,218, 17,163,103,190,139,122, 94,238,102, 17,225,118,254,183, -235,193, 27, 23,238,118, 4, 80,118,173,193,209,227,198,141, 35,153,153,153, 24, 52,104, 80,136, 78,167,235,207,113, 92,149,203, -229, 68, 70, 70,190,208,238, 63, 66,200,160, 22, 45, 90, 96,227,198,141,208,104, 52,127,217,111,109,109,141,187,119,239,150,125, -130, 68, 96, 96, 32, 77, 8, 25, 84,153,192,162, 8,241, 56,126,254, 97,233, 58,141,239,189,213, 74,212,171,139,103,170,128, 18, -115, 0,200,231,159,127, 94, 42,174, 56,142,195,226,197,139, 45, 78,175, 72, 36,194,253,251,247, 65,211, 52,226, 58, 54, 41,110, -200, 35, 18, 64,211, 52, 34,253,138,159,106,219,197,100, 67, 32, 16, 64,169, 84, 90, 42,174,186,186,184,121, 28,158,179, 32,216, - 74,107,228,112,236,236, 13,196,171, 79,131,227, 56,184, 57,219,163,125,128,191,176, 89, 11, 63,231, 31,191, 93,121,216,221,221, -189,127, 82, 82,210,249,202,197, 2,131,102, 77, 26, 98,251,225, 16,124,185,241, 0, 50,243,180,200, 47,210, 23,139,238,118, 62, -216,186,170,246, 78,167,119,195,134,117,182,255,124, 18,237,219,182,193,246,159, 79,160, 93,219, 54,216,190,191,120,123,199,254, -147,232,212, 46, 8, 59,246,159,132,111, 51,175,186,153, 79,114, 87,162,138,185,189,254,114,141,250, 23, 95,163, 6,180,136,152, -175,205,147, 9, 19, 0,160, 84, 96,213,248,102, 43, 17,196,213, 29, 87,149, 8, 46, 35,174,144,150,150, 70,114,114,114, 56, 91, - 91,219,129,101, 69,150, 89, 92,237, 59,158, 7, 77,244, 55,100,247,238, 11,236,208,161, 93,238,221,187,177,172, 25,176,160,194, - 69,180, 13, 6,195,227, 94,189,122,113, 0,160,215,235,221,197, 98,177,168,156, 0, 83,117,232,208,225, 47, 2,173,186,174,195, -194,194,194, 61,251,247,239,127,219,197,197, 5,253,251,247, 63,229,227,227, 35,150,203,229, 56,126,252, 56, 60, 60, 60, 28,173, -173,173,127, 15, 14, 14,198,234,213,171,235,158, 58,117,234, 39, 0,111, 91,112,143,246,236,214,173,219,222,163, 71,143, 74, 69, - 34, 17, 52, 26, 13,238,222,189, 11, 27, 27, 27,136,197, 98,244,239,223,159,110,223,190,189, 67,183,110,221,126, 33,132, 12,225, - 56,238,140,165,215, 72,163,209,112,115,230,204,129, 92, 46,135, 66,161, 40,125,201,196, 12,217,180,176,161,108,234,242, 20,217, -231,159, 13, 93,254,221,143,191,157,171, 91,215,230,139,248,248,220,156, 74, 93, 44,186, 5,102,207,152,109, 22,168, 16,139,197, -207,184,236,230,207, 34,145, 8,173, 90,181,170, 54,109,205,154, 53,219, 76,211,180, 83, 57,225, 75,207,159, 55,215,116,251,238, - 3,133,209, 4,133, 86,111,196,210,197, 95,152,104,138,166,125,125,125, 15,113, 28,151,126,247,238,221,241,124, 83,199,131,199, -171, 37,176,160, 84, 42, 17, 26, 26, 10, 66, 8,172,172,172, 96,109,109, 13, 27, 27, 27,228,229,229, 33, 42, 42, 10,247,239,223, -199,227,199,143, 65, 81, 20, 26, 53,106, 4, 20, 79,251, 80,214,141, 41,237,219,251,113,229, 47, 80, 88,201, 64, 8, 65,187,215, - 2,208,166, 71, 32,110, 93,139,249, 68,165, 82,125,175, 86,171, 99, 8, 33, 2, 95, 95,223, 49,109,219,182,197,234,213,171,161, -211,233,214, 84, 36,174, 42, 26,181, 48,254,109,225, 69,145,128,170, 99, 48,177, 9,155, 15, 25, 59,181,106,213, 42,204,223,223, -191,193,237,219,183,141,102, 55,171,124, 55, 89,217,184,172,242,156,133,133,133, 96, 89,214,162, 12,228, 56, 14,121,121,121,168, - 42,157,229, 29,129,165,193,171,109,243,115,211,176,100,197, 46, 24,141, 70, 76,159, 62, 29, 44,203,130,101, 89, 48, 12,131,236, -236,108,128, 3,170, 59,119,243, 57,209, 52,253,140, 0,174,110,187, 42, 78, 39, 39, 39,133, 68, 42,255,105,198,231, 75,172,110, - 69, 39,226,232,217, 27,224, 56, 14,191,126,247, 5, 0,160,255,184,197, 72, 74, 78, 71,251, 0,111,140,252,232, 83,171,181,193, -159,255,228,228,228,228,153,158,254,231,228,179,101, 57,141, 38, 22, 7, 78, 92, 69,114,102, 1,134,191,221, 29, 58,189, 17,105, -169,201,216,182,241,107, 76, 28,117, 16,118, 74,153,107,163, 70,141,162,203,230,145,149,149, 21,173,213,106, 67,162,163,163,199, - 86,150, 78,163,209,216,123,206,212, 15,177,246,251, 3,104,222,200, 5, 71, 79, 95, 67,107,223,122,248,253,236, 13,180,107,209, - 0, 39, 46,132,161,125,203, 70, 56,119,245, 14, 62, 25, 63, 20, 51, 63, 9,233, 93,163,107,180,108,181,109,126, 94, 26,142, 45, -219,129,180, 13, 27,240,116,242,100,180, 46, 41, 19,161, 20, 5,145,187, 59, 96, 93,125,126, 86,132,251,247,239, 67,167,251,171, - 81, 35,145, 72,224,237,237, 93, 37,167,217,185, 74, 77, 77, 37,169,169,169, 80, 40, 20,228,222,221, 59, 76,179,230,190, 3,153, -172,159,191, 7,128, 98,231, 42, 15, 69, 15,214, 67, 19,243, 13, 68, 57,183,169,239, 22,127,164, 31,247,197,150,123,230,123,180, -124, 58, 35, 35, 35, 75,243,167,109,219,182,247, 47, 93,186,212,180,140, 11, 12,147,201, 36, 50,153, 76, 94,230,110, 67,147,201, - 4,157, 78,135, 33, 67,134,208, 85,157,187, 76, 38,243,115,113,113,193,245,235,215,177,112,225, 66,113,243,230,205, 17, 19, 19, - 3,138,162, 48,122,244,104,248,248,248, 32, 61, 61, 29,173, 91,183,198,197,139, 23, 91, 89, 80,230,173, 20, 10,197,143,191,253, -246,155,148,162, 40,228,231,231,131,101, 89,116,232,208, 1,132, 16,220,190,125, 27,243,230,205,195,193,131, 7,113,248,240, 97, - 89, 64, 64,192,143,132,144,102, 28,199,229, 91,112,141, 56,157, 78,199, 73,165, 82, 72,165, 82, 72, 36, 18, 72, 36, 18,136, 68, - 34,104,244, 52, 62, 90,240, 88, 39,148, 40, 89,191, 22,141, 60, 39,142,123,155, 90,178,124,219, 89, 0,191, 86,198,169,230,238, -194,190, 57,193,169,109, 97,232, 63,161, 51, 68, 66, 49, 68, 66, 17,196, 34, 49,132, 37,159, 69, 66, 17,196, 66, 9,104, 71,109, -181,101, 73, 40, 20, 58, 70, 68, 68,216,150,189,151, 77, 38,211,189,201,147, 39, 55,122,251,173,126, 46, 63, 31, 60, 74, 15,123, -175, 63,227,234,226,156,145,144,240,244, 33, 0,219,128,128, 0,174,166,229,179,166,224, 57,121,206,127, 8,173, 1,148,125,192, -208, 3, 16,151,124,206, 40,169,219, 28,202,125, 15, 0,233,230,230,173,146,237, 12, 0, 81, 0,154,149,124,199, 0,184, 1, 32, -251,121, 19, 44, 40,169,180,184, 50,153, 70, 42, 19, 17,121,121,121, 72, 72, 72,192,166, 77,155, 32, 20, 10, 33, 16, 8, 32, 16, - 8, 64, 81, 84,105,188, 66,101, 56,243,219,133,111, 0,124, 19, 16, 16, 32,140,188,178,235,247, 37, 59,102,247,104,215, 43,136, -190,118, 58,124, 32,128,165, 0,122,143, 24, 49,194, 17, 0,118,236,216,145, 1,224,184,197, 46,142,128,170,179,126,221,174,186, - 83, 62, 25,102, 22, 20, 30,223,127,255,189, 93, 98, 98,226, 51, 79,137, 34,145,168,218,184, 44,142,227,246,135,134,134, 78,237, -213,171, 23,140, 70, 99,105,215,160,249, 85, 84, 84, 4, 91, 91,219,210, 70, 70,171,213, 98,235,214,173, 38,142,227,246, 87, 37, -194,162,239,254,129,152,187,231,192, 48,236, 51, 98, 74,171,213, 98,225,194,133,165,238, 21, 0, 76, 40,113, 74, 44, 69, 85,206, - 21, 77,211,184,212,168, 88, 9,244, 73,231,254, 18,171, 85, 30, 66,177,116,122,159,119,134,218,155, 56,186, 84, 92, 21,159, 67, -177,184, 16, 11, 5,144, 73,132,136,137, 75, 64, 3,247, 0,244,120, 99,128,221,153,223,127,153, 14,160,194, 65, 8, 70,134, 69, -159,174, 1,216,184,247, 28,242, 10,180,200,203,201, 66, 70,194,125,220,187,117, 3, 98,177, 24,215,174, 93,179,178,177,177,181, -106,216,176, 1, 24,134,197,165,107, 97,144,203,101,216,251,211,238, 6,245, 26, 52,196,211,199,143, 42,140,157, 98, 89, 86,208, - 62,176, 25,242, 50,226, 33, 16, 8,208,222,223, 19, 2,129, 0, 29, 2,188, 64,211, 52, 58,182,110, 10,154,166,209, 37,200, 7, -158,158,158, 96, 89, 86, 80,157, 80,142,190,243, 7,162,163,206,129, 99, 89, 48,108,113,247, 47, 7,192,144,156,252,215,243, 74, - 73, 1,103,237, 92,155, 74, 9,179,102,205,202, 81,171,213,134,242,251, 84, 42,149,232,224,193,131,182, 85, 77,157, 34, 18,137, -154, 9, 4,130,123, 89, 89, 89,172, 92, 46,167, 24,198,196, 54,107,238, 75, 95, 60,190,168,116,237,201,133,139, 23, 29, 24,252, -134,245,192, 93,219,126,227, 68, 78, 29, 8,161, 37,166, 15,191,216, 34,134, 80,212,204,146, 52,154,187, 11, 31, 60,120, 80,237, -162,220, 21,213, 23,229, 30, 86, 70,246,239,223,255,212,248,241,227,165, 0,144,145,145, 1,129, 64, 80, 42,250, 99, 99, 99, 65, - 81, 20,190,251,238, 59,232,116,186,106, 11,190, 64, 32,152,250,203, 47,191,216,136,197,226, 82,113,197,113, 28,104,154,198,253, -251,247,177,106,213, 42,140, 24, 49, 2,241,241,241,112,115,115,195,244,233,211,149,203,151, 47,159, 10,192, 18, 91,248,150, 94, -175, 15,148,201,100,144, 72, 36, 48, 11, 45, 0, 8,143,117,185,243,232,209,163, 22,245,234, 57,186, 54,240,185,125,164,107, 71, -191,150, 14, 14,182,237,204, 2,171,194, 7,212,130,186,200,143, 22,160, 75,151, 46,184,112, 33, 4,253,250,245, 3, 35, 18,129, - 21,139,193,138,197,224, 68, 34, 64, 44, 6, 17,139,193,201,229, 22, 21, 31,154,166,145,146,146,242,204,119,227,198,141,123, 58, -116,232, 80,103,128,131, 90,157,196,125, 58,117, 74, 82, 70, 70, 6,231,226,226,194, 91, 8, 60,254, 85,168, 70,139, 56, 17, 66, -142,150,217,223,207,188, 61,123,246,236,185,193,193,193,119, 9, 33, 71,203,126,111, 62,174,132,251,104, 69,219, 37,191,117,152, - 51,103,142,239,242,229,203,151,181,107,215,110,239,149, 43, 87, 30,189, 48,129,197,113, 28, 33,132,112,213, 85,150,229,157,147, -103,187,130, 44,155, 72, 59, 60, 60,220,232,238,238,254, 67, 84,216,195, 30,222,129,205, 32, 83,200, 94, 35,132,124, 35,145, 72, - 62, 29, 62,124, 56,174, 93,187,134, 59,119,238,108,173,201,178, 39, 6, 19,155, 48,229,147, 97, 48,152,216, 4,179, 67, 53,125, -250,116,209,165, 75,151, 12,149, 57, 88,149,113,165,165,165, 45,248,245,215, 95, 81, 85,144,251,153, 51,103,202, 54, 70,165, 65, -238,149,214,138, 44, 7,131,193,136,194, 66, 77,177,176, 42,105,188, 25,134, 65, 97, 97, 33,222,123,239,189, 82,209,197,178, 44, -210,210,210,106,117, 49, 41,138,178,216,185,170,148,131,166, 95,247,107,233, 47, 60,123,229,214, 51,141,235,128,143,150, 66, 44, - 42, 22, 87, 50,169, 8, 50,137, 16, 9,234, 84,120, 55,107, 46,186,112,250,232,235,149, 10, 44, 19,131,111,118,159, 6, 8,193, -129,163,103, 17,216, 64,142, 69,243,102, 97,208,160, 65, 16,139,165,248,229,151,253, 88,249,237,118, 76,168, 87, 15, 28,128,160, -192, 86, 88,177,121, 47,150, 44, 94, 76,237,255,249, 64,199,234,210, 43, 20, 10, 65,211,116,105,163, 93,254,157,166,105, 88, 50, -215, 27,199,114, 48, 24,141, 40, 42,212,128, 97, 89,176, 44, 7,142,101, 1,142,131,251,151, 95,194,253,203, 47, 17, 74, 21, 15, -224,243, 41, 44, 44,238, 62,238,234, 87, 99,113,165,215,235,161, 86,171, 13,145,145,145,127,105,253, 90,182,108,153,170,215,235, -171, 76,239,220,185,115,163,151, 45, 91,214,204,222,222,254,222,173, 91,145, 70, 63,191,150,194,242, 49, 88, 77,188,154,228, 46, - 92,188,232,192,176, 81,111, 14,220, 60,239,125,211,248, 5, 59, 5,150, 4,186,151,113,201, 30,247,236,217,211,162, 80, 30,141, - 70,147, 82,217,190,192,192,192,209,132,144, 47,155, 52,105, 34,233,222,189, 59, 66, 66, 66,240,229,151, 95,178, 38,147, 41, 3, - 0,218,183,111,239,180,100,201, 18, 18, 21, 21, 5, 91, 91, 91,164,165,165,109, 15, 12, 12, 92, 82, 85,224,187, 88, 44,238,218, -186,117,107, 74,167,211,149, 62,148, 80, 20,133,251,247,239, 99,249,242,229, 24, 50,100, 8,154, 52,105, 82,122,111,117,235,214, - 77,184,126,253,250,174,150, 8, 44,138,162, 62,233,209,163,199,215, 40, 30, 69, 88,182,146,187, 7, 96, 38, 0, 60,125,154,145, - 50,228,221,246,119,123,116,241, 15,244,108,224,238, 86, 21, 95,166, 48, 22,110,254, 50,136,132, 34,140,248,236, 45, 28, 61,122, - 20, 31, 47, 28, 90,226,100, 21, 59, 88, 66,161, 8, 34,161, 24, 98,167,218, 45, 68, 80, 82,143, 16,107,107, 27, 0,128,141,141, -141,185,142, 35, 0, 56,138,162,248,144, 44, 30,255, 26, 88,162, 69,204, 2,169,188,208, 10, 14, 14,238, 87,254,187,178, 98,170, -162,207,101,127,187,124,249,242,101,101,184,139, 94,196,249,188,176,165,114,140,198,170,215,237,237,222,189,251,100, 43, 43,171, -117, 37, 21, 47, 98, 46, 61, 66,204,165, 71,104,214,180, 89, 7,255,150,254, 57, 67,134, 12,129,131,131, 3,102,206,156,201, 1, -248,177, 38,255,189,249,144,177, 83,217,237,155, 55,111,214, 58, 46,171,100,100,220,167,168, 36,158,170,150,133, 6, 70,131, 17, -133, 69, 90, 24, 12, 6, 24,141, 12, 76, 38, 6, 1, 62, 86,216,185,101, 22,244,122, 3,140, 76,241,119, 70,163, 17, 38, 19, 3, -137, 72,135, 46,109,235, 24, 65, 40,205,133,171, 79,173,171,226,111, 30, 30, 15,154,166,113,171,165,123,133,206,213,107,106,131, -197, 66,139, 99,153,166, 46, 46,206,136, 63,113,189,248, 41, 92, 46,197,201, 29, 75,160,144, 23, 63,201,247, 30, 49,183, 88,100, - 73, 68, 48, 24,244,112,118,169, 15, 19, 99,108, 90, 25,159,201,104,208,251,121,185,195,214, 74,134,200,208,171,248,116,210, 88, -140, 30, 61, 6, 34,169, 21, 46, 92, 56,135,120,117, 26, 98, 19,179, 49,105,193, 70, 24,141, 12, 12, 38, 6, 70, 19,139,181,219, -142,194,192, 84,175,140, 68, 34, 17,166, 79,159, 46,171,108,255,222,189,123, 53, 22, 9, 44,174, 68, 4, 23,105,160,211,234,160, - 55, 20, 95, 11,166,161, 16, 75,231, 13,133,209,104,132,230,253,118, 48, 24,141, 96, 62,121, 27, 6,131, 1, 9,114, 1,213, 49, - 80,101, 4,161, 52,151, 66, 19,173, 45, 21, 88,149,165,135,227,184, 10,187, 14, 43, 19, 89,126,126, 45,239,141,120, 47, 48,248, -242,149,208,244,203, 87, 66,255,114, 92,195, 38,129,113,227,151,238,157, 83, 19,113, 5, 60,219, 93,248,156,229,254,139,243,231, -207,187, 40,149, 74, 68, 71, 71,131,166,105, 16, 66, 50,195,195,195, 93, 0, 96,225,194,133, 25, 66,161,208,129,166,105, 76,157, - 58, 21, 52, 77, 59,125,252,241,199,243, 1, 84, 42,176, 76, 38, 83, 51, 43, 43, 43,228,231,231,151,230,163, 88, 44,198,236,217, -179, 49,108,216,176, 82,113, 37, 22,139,177,125,251,118, 4, 4, 4, 64,175,215, 91,228,220, 37, 38, 38,134, 2,232,100,129,168, - 41,238,102,101,217, 42, 11,150,178,176, 14,180,143,197, 96, 68, 34,236,253,245, 87, 12, 27, 54, 12, 98,177,164,212,185,130, 72, - 4, 34, 22,131, 18,137,192,208,146, 26,231, 47,203,178,200,203,203,163,183,111,223,222,176,121,243,230,132, 3,224,237,237, 67, -142, 30, 59, 86, 87,169, 84, 62,178,183,183, 55,240, 77, 54,143,255,160,203,117,180,188,200,122, 30,174,217,179,103,207, 5,192, -205,158, 61,123,174,121, 59, 56, 56, 88, 3, 64,253,202, 8,172,234, 28,172,213,171, 87,163, 69,139, 22, 85, 54, 62,235,215,175, -199,206,157, 59, 87,115, 28, 23, 87,147,255,254,104,128,240,186, 92, 38,114, 43,210, 24,146,183, 28, 54, 6,181,108,217, 50,172, - 93,187,118, 13,195,194,194, 42,117,176, 42,155, 27,235,239,152,166,129,227, 56,232, 13, 70, 20, 21,105,160,213,235, 49,109,214, -183, 22, 93,123,131, 62, 95,208,247,141,206,178,234,156, 68, 75, 98,176,170,235, 26,124, 86, 44,155, 96,214, 0, 5, 69, 90,116, - 27, 50, 27,161, 71,214, 1, 64,169,184,146, 73,132,144,138,133,160, 8, 64, 80, 57,183, 81,147,247,214,103,147,199, 94,220,180, -117,167,199,128,206, 31, 98,202,148, 41, 16,136,229,176,115,112,130,137,225, 80, 87,229,140,216,196,108,252,178, 97, 86, 73,216, - 25,135,206, 31, 44,196,234,121, 31, 98,229,194,234,159,234,105,154,198,134, 13, 27, 52,229, 93,171,178, 78,150,165, 34,216,236, - 50,106,116,122,204,152,179,209,242,107,244,122, 39,153,165,121,171,215,235,107, 45,192,202,139, 44, 0, 52, 0, 84,214,138, 74, - 28,128,102, 29,250,204,123,153,149, 33,203,178, 56,118,236,216, 95,220,213,242,215,208, 82,183,149,101, 89, 60,125,250, 20,119, -238,220, 65,187,118,237,144,155,155, 11, 1,128,233,183,111,195,103,248,112,232, 74, 66, 23,196, 98, 49,198,141, 27,247, 55,213, -240, 37,113,108,164,234, 11, 85, 40, 79,132,139,175, 4, 63, 46, 63,132,201,139, 71,192,201, 91,138, 85,115,190, 43,221,191,242, -135,133, 37,113, 88, 98, 72,149, 53, 79, 70, 94, 94,158,224,235, 85,171,252,130,218,180,149, 13, 27, 49,154,210,155, 88, 44,253, -106, 29,253,243, 79, 59, 28,118,236,216, 37,147, 74,165,247,248,230,152,199,127,208,229,234,247, 34,185,204, 14, 86,112,112,240, -221,224,224,224,191,184, 97,127,171,192,162,105, 26,101,135, 44, 87,212,200, 91, 18,131, 53,109,218, 52, 88, 89, 89, 85,184,207, - 96, 48,112,183,110,221,138, 74, 78, 78,254,158,227,184, 26,207,139, 35, 22, 82, 46,171,191,222,230, 49,229,147, 97, 44, 80, 60, - 90,235,219,111,191,181, 53,199, 96,149,141,195,170, 46, 6,203,217,217,121,209,138, 21, 43,166,244,238,221,155,162, 40,234,153, -198,207, 60, 45, 67,217,151,209,104,196,111,191,253, 54, 37, 56, 56, 24,149,185, 94, 28, 87,220,253, 84, 88,164,129, 86, 87,220, -192,198,222, 57, 96,105, 9,168,246, 16,179,115,213, 54, 58,171, 66,231,234,132, 75,113,195,213, 39,189,122, 46, 66,209,209,143, -159, 38,180,113,117,180, 69,118,110, 1, 36, 37,221,130,102,152,197,149, 76, 34,130,157,141, 18, 89,153,105, 16, 10,133,209, 85, - 20,224,167,132,144, 78,239,189,221,231, 20, 69, 11,164,101,247, 9,101,214,242,211,151,111,219,165,102, 23,129, 45,115,158, 44, -199, 97,242, 18,203, 76, 76,161, 80,136,143, 63,254,184, 82,129,243,235,175,191,106,106, 46,176,116, 53,187, 70, 53,112, 50,171, -115,176, 44, 21, 88,229, 97, 30, 93, 40, 18,137,154,149,136, 47,139,209,178,101,203,227,114,185,188,129,165,199, 91, 58,233, 40, - 33,100,113,247,238,221,191,244,240,240,112, 30, 63,126, 60, 17, 8, 4, 8, 12, 12,116,252,226,139, 47,114, 1,160, 89,179,102, - 86,230, 58,102,237,218,181,184,119,239, 94, 58, 33,100, 73,149,247,186, 88,124,223,198,198, 38,176,123,247,238,200,205,205, 69, -124,124, 60,148, 74, 37,124, 86,173,194,237,137, 19,209,114,243,102, 80,221,187, 23, 11, 76,137, 4,183,111,223,134, 68, 34,185, - 95, 25,159,187,187,123, 16,199,113, 43, 0,116,192,159,221,130, 28,128,203,132,144,207,146,146,146,174,255,229, 71, 20,161,138, - 31,212,170,190, 80,226, 92, 23,232, 18, 36, 24, 57,114, 36, 68, 34, 49, 32, 22, 99,198,140, 25,101,234, 35, 49,232,146,120, 44, -150, 17, 91,242,180,205,149, 19,235, 68, 34, 22, 75, 70,140, 26, 67,125, 54,227, 83,214,104, 50,177, 2,129,144,154,254,249, 50, - 42,230,193, 29, 73, 97, 97, 33, 69,106,242,100,197,131,199,191,196,193, 42, 43,180,202,184, 80,149, 33,189,108, 92, 86,101, 2, -173,108, 76, 22, 0,221,139, 72,171,160, 76,229, 94,254, 70,140,137,140,140,244,106,222,188, 57,226,227,227,145,147, 83,241,104, -100,133, 66, 1,153, 76,134,135, 15, 31, 2, 64, 76,101,127,116,246,236,217,111, 0,124, 99,222, 86,169, 84,237,122, 14,126,237, -114, 64,247, 54,248,105,245,174,220,228,228,228,150,230, 57,177, 8, 33, 68,165, 82, 13, 19,138, 5,131,155,248, 54,236, 98, 98, -217, 21,103,142, 84, 60,147, 59,240,215, 24, 44,147,201, 84,235, 24, 44, 66,200,160,222,189,123, 83, 81, 81, 81,120,239,189,247, -176,107,215,174, 74, 51,111,216,176, 97,216,187,119, 47, 94,127,253,117,106,249,242,229,131, 42, 23, 88,128,209, 96, 66, 97,145, - 22, 90,173,238,111, 43,120,207,235, 92, 1, 0,199,154,206,220,190, 25,222,170, 69, 64, 59,225,227,132, 20, 72,197,194,103, 4, -150, 92, 34,130, 84, 82,252,157,171,147, 29,110, 92,185, 96, 48,153,140,103,170, 17, 22, 79, 81,193, 36,141, 18, 43,199,232,215, - 58,180,176,171,208,241,156, 51, 2, 45,246,173,182, 72, 96,109,221,186, 85, 83,153,123,101,105, 30,112, 28, 74,187, 8,139, 52, - 47,246, 26,185,184,184, 56, 57, 59, 59,111,178,181,181,149,154, 99,135, 42,219, 95,149,195, 85,157,184, 42,153, 23,235,222,178, -101,203,106, 36,178,196, 98,113,131,203,151, 47,123,153,227, 2,171,122,215,235,245, 24, 60,120,176, 69,182, 96, 88, 88,216,143, -254,254,254,177, 78, 78, 78,167,219,183,111, 47,137,138,138,194,210,165, 75,137, 80, 40,180, 54,223,151,249,249,249, 16, 8, 4, -200,206,206, 6, 33,100,100, 88, 88,216,137,170, 56,117, 58,221,249,243,231,207,183,122,235,173,183,232,123,247,238, 65, 32, 16, -128,101, 89,232,218,182, 69,203,205,155,113,231,211, 79,209,249,241, 99,232,140, 70, 72,165, 82,156, 56,113,194, 80, 84, 84,116, -190,138,115,255,238,234,213,171,205,165, 82, 41, 12, 6, 3, 88,150, 5, 69, 81,132,166,233,142,205,155, 55, 95,143,226,145, 75, -165,104,208,192,217,249,227,177,125,154, 50, 44,203, 36,169,211,211,171,116, 43,173,210,225,212, 76, 82, 26,111, 37, 18,138, 32, - 18, 20, 11, 43,179,115, 37, 18,138, 32, 18,137, 33, 17, 91,212,133,207,149, 47, 59,230,216, 43,133, 66,206, 54,110,220, 56, 42, -230, 97,172, 15, 0,202,198,198,214,226,184, 88, 30, 60, 94, 49,135,138, 84, 37,148,202,222, 98,101,182,211, 81,188,182,114,191, -146,207, 40,243, 57, 20, 64,235,114,199,154,247,235,203,189,155,247, 71,254,221, 14, 86,159,177, 99,199,110,238,213,171, 87,143, -233,211,167, 67,169, 84, 34, 57, 57,185,244,166, 21,139,197,168, 83,167, 14, 52, 26, 13, 66, 66, 66,144,147,147,115, 22,192, 71, -150,254,113,114,114,242,181, 7, 17,209,153, 93,250,119,114,240, 13,106,102, 27, 31,253,180, 45,128, 43,132, 16,226,238,238,254, -195,240,105, 3, 70,189,246,110, 71,136,196, 66,196, 63, 76,174,146,171,124, 12,214,243,204,141, 69, 81, 20, 77, 8,193,123,239, -189,103,209,241,239,191,255, 62, 46, 92,184,128,170,186, 19,139,187, 8, 13, 40, 42,212,160,232, 5, 10, 44, 66, 8, 24,134, 41, -117,174,204,175,215,212, 6, 80, 20, 85, 42, 44,122,167,177, 22,115,106,139,138, 86, 94, 60,243,235,184,166, 62,126, 78,237,252, -155, 32,230, 81, 2, 86,206,253,179,171,101,198,132,247,177,125,239,111, 80,185, 58, 64,167, 41,192,201,223,127,203,205,203,203, - 91, 89,219,115,216,126,232, 2, 0,160,211, 7,207,142, 17,120,111,234, 90,203, 10,176, 64,128,209,163, 71, 87,234, 96,157, 62, -125, 90, 83,214,137,172,238, 26, 21, 22,106, 81,164,209,188,176,107,164, 82,169, 90,182,109,219,246,244,150, 45, 91, 28, 28, 29, - 29,161, 86,171,159, 17, 88, 42,149,170,101, 80, 80,208,233, 45, 91,182, 56, 56, 57, 57, 33, 62, 62,222,226, 41, 66,202,137, 43, -164,167,167,147,236,236,108,214,206,206,174, 70, 34,139,162, 40,232,116, 58,220,187,119,207,210,123,196,226, 73, 71, 27, 52,104, -176,107,221,186,117,146, 39, 79,158,192,104, 52, 34, 42, 42,234, 47,131, 16,104,154,198,236,217,179,241,249,231,159,111, 2, 80, -175, 42, 62,147,201,180,102,248,240,225, 99,147,146,146,236, 92, 92, 92,144,156,156, 12,145, 72, 4,142,227, 64,186,117, 67,167, - 71,143, 96, 96, 24,200,100, 50, 60,120,240, 0,223,127,255,125,161,193, 96, 88, 83, 17,151,167,167,167,152,162, 40, 47,145, 72, -132,161, 67,135, 62,179,111,199,142, 29,104,215, 44, 59,240,163,119,196, 5, 12, 39,210, 21,160,217,113,138,162,200,164, 15,251, - 52,233,216,174,133,239,221,168,199,177,234,180,172,203, 85,138,255, 92, 7, 24,212, 18, 64, 36,250, 51,222,170, 36,230,138, 22, -139, 75, 71, 20,114, 98, 49, 88,177,101,147, 5,151, 21, 77,132, 16, 56, 56, 56,232,214,174, 89, 41, 81, 40, 20, 12, 0, 88, 41, - 21,204,207, 59,190,133,131,189,189,142,171,141, 21,202,131,199,171,139,208,151,244,219, 23, 47,176,194,195,195, 31, 1,232,233, -239,239,255, 65, 72, 72,200,234,105,211,166, 57,117,236,216, 17, 89, 89, 89,168, 87,175, 30,220,220,220, 16, 22, 22,134,200,200, -200, 12,142,227,166,135,133,133,237,170, 64, 0, 84,186,218, 54,199,113,156, 74,165,218,175, 47, 42,156,232,223,185, 5,254, 56, -112, 46,216,205,205,237, 35, 15, 15,143, 79, 62,156, 59,120, 84,143,183,219,227, 94, 68, 44,174,156, 12, 71,210,211,116,188,215, - 97, 98,165,156,150,196, 96,149,125, 47, 31,131, 85,150,147,101, 89, 70,175,215, 99,223,190,125, 22,137,172,159,126,250, 9, 90, -173, 22, 44,203, 50,149,157, 59,195, 50,196,202,218, 9,238,117,155,193,160, 47, 4,203, 90,254,100,201, 85,147,159, 38,147, 9, -139, 22, 45,194,204,153, 51,177,100,201,146, 42,133,200,183,223,126,139,234,174, 81, 86, 86, 86,190, 74,165, 26,182,119,235,186, - 3, 31,124, 56,197,202,163,125, 75,252,248,243,239, 48, 26,140,144, 74, 4,176,179, 86,162,113, 3,119,232,181, 69,216,248,205, -234, 60,173, 86, 51,172,124,236, 89, 77, 86, 89, 31,249,118, 23,124,245,253, 17, 92,220,243,167, 65,217,233,131, 5,216,253,245, -100,248,251,111,171,146,147, 97, 24, 8,133, 66,236,217,179, 71, 83,217,104, 66,154,166, 81,153,192, 42,127,141,172,173,157,224, - 81,223, 7,122,109,193, 11,187, 70, 14, 14, 14, 51,127,248,225, 7, 7,141, 70,131,251,247,239,227,254,253,251, 32,132,220, 43, -191,191,176,176, 16,119,238,220, 49,139,156,123,150,230,167,217,185, 74, 79, 79, 39,201,201,201,144,203,229,212,173, 91,183,180, -126,126,126,247, 80, 18,163, 85,221,185,235,116,186, 39, 61,122,244,168,204, 49,114,151, 72, 36,207, 44,217,100,158,116,180,124, - 87, 97, 69,233, 76, 72, 72,184,185,110,221,186,186, 77,154, 52,193,119,223,125,167,179,178,178, 18, 79,155, 54, 13, 52, 77,147, -181,107,215,114, 89, 89, 89,134,217,179,103,139, 47, 93,186,132,194,194,194,155,213,149, 79,142,227,242, 9, 33,227,218,183,111, -191,243,248,241,227, 50, 47, 47, 47,228,230,230, 22,139,245,237,219, 49,105,210, 36,200,100, 50, 68, 71, 71,163,127,255,254, 69, - 69, 69, 69,227,202,206,129, 85,150,211,100, 50, 17,161, 80,200,177, 44,139,121,243,230, 61, 51,177,168, 92, 46,135, 76,204, 96, -203,226, 70,138, 79,191, 74, 81, 76,153, 56,124,120,113, 57, 97,153,187, 81,143, 99,183,252,120,228, 28,128,144,170,206,157,181, -201,133,163, 87,177,131, 37, 52,207,121, 37,146, 60, 51,122,176,120, 30,172,226,121,177,170, 59,247,242,161, 24,246,246,246,166, -128, 0,255, 40,141, 70, 67,155,181,148,163,163,227,157,146, 99,185, 58,117,234,232,203, 21,207, 26,221,155, 53,120,208,227, 57, -121, 78, 30, 53,116,176, 0, 0, 17, 17, 17,123,124,125,125,143, 47, 95,190,124,249,161, 67,135, 62,156, 50,101, 10,177,182,182, -198,254,253,251,185,172,172,172,109, 98,177,120,230,213,171, 87,107, 53, 95, 4,199,113,219, 67,142, 92,156, 48,124,218, 64, 50, - 99,213,248, 14, 97,231,111,222,107,213,161, 25, 90,117,104,134,235,127, 68, 98,205,156,109,187, 76, 70,211, 23,201,201,201,241, - 85,241, 88, 18,131,101,126, 9, 4,130,106,231,193, 58,116,232,208,148, 62,125,250, 80, 55,110,220,248, 75,204, 85,217, 56,172, -211,167, 79,195, 96, 48, 96,255,254,253,108, 85,243, 96,177,192,175,107,190,254, 98,196,214, 29,199,196, 20, 49,224,106,200, 47, -200,205, 78,169, 50,111, 68, 34, 33,118,255,244,171, 65, 32,160, 31, 84,145,214,167,225,225,225, 14, 95,125,245, 21, 77, 81, 20, -190,253,246,219,103,156,171,242,184,125,251, 54,107, 52, 26,171,189, 86,106,181,250,180,171,171,235,251,155,215, 44,222,222,237, -245,183,108,189,189,155, 11,156,157,235, 66, 64, 81,200,201, 74, 71,232,181, 75,166, 19,199, 14,231,232,245,250,145,106,181,250, -244,243, 20,192,224, 45,135, 43,252,254,221, 41,171,171,115, 81, 76, 70,163, 81,160, 80, 40, 96, 50,153, 42, 20, 87, 61,122,244, -144, 93,190,124, 89, 99, 48, 24, 64,211,116,149,138,169,248, 26, 45, 24,177,117,231,139,189, 70, 12,195, 52,203,206,206, 70, 97, - 97, 33,194,194,194,184,111,191,253, 54, 61, 39, 39,103,110,217,253, 89, 89, 89,200,207,207, 71,104,104, 40,247,221,119,223,165, -231,229,229,205,181, 52,255,204,243, 98,101,103,103,179,114,185,156, 50, 26,141, 70, 63, 63, 63,169, 72,100,217,156, 87, 0,112, -243,230,205, 55, 42,219,215,161, 67,135,152,203,151, 47, 55, 46,187, 54,161,201,100, 18,233,116, 58,175,254,253,251, 87, 91,127, -200,100,178, 33,191,252,242,203, 30,169, 84,218, 66,171,213,142, 77, 75, 75,219, 14,160, 46, 77,211,120,248,240, 97,134,201,100, - 26, 52,111,222,188,173,133,133,133,183,149, 74,229, 7, 22,214, 27, 39, 8, 33, 31,248,248,248,252,184,112,225, 66, 69,215,174, - 93,133, 42,149, 10, 1, 1, 1,136,142,142,198,177, 99,199, 12, 27, 55,110, 44, 42, 42, 42, 26,205,113,220,233, 42, 30, 58, 56, - 0,196,100, 50, 61,179,134,169, 88, 44,134, 80, 40, 68,145,142,194,135,243,226, 52, 44,132,154,101, 43,119, 29,227, 56, 16,117, -114, 70, 70, 74,106,206,117,129,209, 24,242, 68,157,159, 91, 85, 58,153, 12, 57,234, 91,251,150, 62,220, 17, 66, 64,177, 20,136, -129,128,102,104,208, 70, 26, 68, 32, 40,118,183, 44, 91,238,138, 51,153, 76,232,215,175, 31,142, 30, 61,138, 1, 3, 6,112,168, - 34, 86,228,232,209,163,176,196,189,229,193,131,199, 75, 18, 88, 0,112,231,206,157, 28, 0, 31,181,110,221,122,199,228,201,147, -143,178, 44, 43,100, 89,182,239,205,155, 55, 47, 62,207,159, 39, 39, 39,135,171, 84,170,185,206,238,118,193,253,134,118, 71,139, - 54,141,192,152, 24,132, 28,187,129, 45, 95,238,221,155,152,144, 56,170,236, 90,133,149,193,146, 24,172,242, 14, 86,101, 92,105, -105,105, 11,150, 46, 93,138, 47,191,252,178,198,163, 8, 43, 59,230, 74,104,210, 71,237, 2,221, 60,222,125,171,195,235, 20, 33, -156,174,138, 56, 27, 66,192,153, 35, 45, 4, 2,250,193,133,107, 9,126,149, 29,155,146,146,210, 99,226,196,137,127, 80, 20, 85, -175,204, 83, 5,170,104,236,147, 51, 51, 51,123, 89,114,109, 82, 82, 82,142,123,120,120, 52,185,112,226,200,156, 75,103,142,119, -101, 24,131, 39, 1,129, 72, 36,138, 53, 50,166,243, 70,189, 62, 56, 49, 49,241,185, 39, 98,155,243,209, 0, 60, 85,103, 64, 32, -160,139,231,158, 42,185,220,191,172,159, 6,127,255,221,149,254, 78, 34,145, 28,255,241,199, 31,251, 13, 31, 62,156, 8, 4,130, -210,110, 55,243,249, 83, 20,133,107,215,174,105,244,122, 61,182,109,219,198,201,100,178, 42, 39,174,253,187,174, 81, 65, 65,193, -232,254,253,251,111, 7, 32, 1,240, 48, 55, 55,119,188, 90,173, 78, 44,187,127,192,128, 1,219, 1, 72, 8, 33,127,217, 95, 29, -204, 83, 54,216,217,217,221, 43,113,174,164,181, 9,116,175,162,124,211,149,117, 31, 90,210, 85, 88,178,182,224, 59,230,237,192, -192,192,197, 19, 38, 76, 40,187,216,115, 8,128, 70,181,120, 56, 59, 77, 8,105, 62,111,222,188, 79,100, 50, 89, 55,141, 70,227, - 13, 0,114,185,252,126, 81, 81,209, 57,131,193,176,142,227,184,156,170, 56, 98, 99, 99,245, 13, 27, 54,140, 54,153, 76,190,206, -206,206,165,163, 15,197,226, 98, 55,233,218,125,251,176,164,164,164,214,181,124,120, 76,172,202, 81,174,236, 55, 85,237,215,235, -245,233, 87,174, 92,177, 63,115,230, 12,205, 48, 12, 78,156, 56, 81,250,208, 87, 81,111, 96, 92, 92, 28,244,122,189,150,111,230, -120,240,120, 57, 32,127,103, 55,189,165, 22,162, 74,165,122, 79,174,144, 78,172,223,212,195, 47,225, 81, 74, 84,126,118,193,238, -228,228,228, 45, 28,199, 49,188,125,250,223,229, 20,203,173, 79, 18, 90, 84,175,210, 6,135, 49, 60,213, 23,229,189, 94, 17,103, - 80, 80,144,187, 72, 36, 90,169,211,233,122, 87, 53, 75, 59, 77,211, 38,153, 76,118, 92,171,213,206, 44,191,216,243,191, 49, 63, - 23, 45, 90, 84,161, 37, 97,233, 40,194, 5, 11, 22,176, 53, 73,103,203,150, 45,207,201,229,242, 10, 39,212, 44, 42, 42,138,143, -140,140,236,245, 42,228,167,121,180,156, 37,113, 71,101, 57,107, 53,138,240, 37,221, 71, 30, 30, 30, 82,107,107,235,149, 20, 69, -185, 89, 40,142,245,105,105,105,211, 50, 50, 50, 82,248,122,137,231,228,187, 8, 95, 81, 7,235,239,134, 90,173,222, 7, 96, 31, -127, 57,254,191, 96, 22, 79,181, 65,137, 88,122,255,255, 45,207,204, 2,169,130,239,239, 3,120,225, 67,242, 45,153,142,225, 85, - 64,109, 3,186, 75, 4, 84,167,127,195, 57, 38, 38, 38,106, 1, 76,226,107, 14, 30, 60,254, 29,224, 59,232,121,240,224,193,131, - 7, 15, 30, 60, 94, 48, 8, 0,223, 74,158, 8, 45,182,254, 8, 33,190,181,120,226,188,195,115,242,156, 60, 39,207,201,115,242, -156, 60,231,255, 23,103,117,220,255,149,174,199, 87, 34, 6,139,231,228, 57,121, 78,158,147,231,228, 57,121, 78, 62, 6,235,191, - 4,190,139,144, 7, 15, 30, 60,120,240,224,193,227,101, 9, 44,165,107,179,102, 78,245, 91,110,183,175,227,119,203,190,142,223, - 45,167,250, 45,183, 43, 93,155, 53,251,127,204, 52,149, 74, 37,115,115,115,251,160,110,221,186,167, 91,181,106,149,231,238,238, -254, 41, 95,148,106,142,174,132, 8,222, 39,228,227, 17,132,196,143, 32, 36,254,125, 66, 62,238, 74,136,224,191,118,158, 75, 38, -185,183,189,120, 98,232,241, 37,147,220, 43,156,128,109,209, 12,149,195,229,147,131,215,205,157,228,110,255,130,158, 44,173, 92, - 92, 92,190,115,117,117,125,226,226,226,242,212,197,197,229, 71, 66,136, 13, 95,226,120,240,224,193,227,159,131, 69,141,153,125, -189, 22, 99,155,121, 55,157,185,120,193, 28,226,238,234, 36, 55,154, 24,195,227, 39,137, 62, 11,150, 46, 63, 96, 95,175,197,234, -172,167,183,127,168, 69, 35, 64, 60, 60, 60,222, 19, 10,133,253, 0,152,133,218, 61,163,209,120, 52, 49, 49,113,159,165,163,130, -252,252,252, 46,209, 52, 93,183, 38,255,205,178,236,147,200,200,200,206,181,201, 48,119,119,247, 65,238,238,238, 63,182,109,219, - 86,222,170, 85, 43,136, 68, 34,172, 88,177, 98, 58,128, 53, 22,159,123,215,174, 2,231, 28,251,225,180, 64,240, 38, 0, 63,142, - 3, 64,232, 91,172,209,112, 44,205, 46,115, 59,119,254,188, 69,211,136,187,185,185,205, 37,132,140, 68,241,176,242, 31,212,106, -245,202,191,163,144,168, 84,170, 58,132,144,110, 28,199,121, 83, 20,117,155,101,217, 83,106,181, 58,243,121,121, 93,128,143,218, -119,236,184,110,196,244,233,180, 38, 36, 4,235,126,252,113, 45,242,242, 0,224,219,154,150,165,160,160, 86, 3,173,172,208,143, - 0,254, 32, 32, 20,184,155, 89, 57,212,239,161,161, 17,251, 44,153, 75,173, 50, 4, 4, 4, 28, 3,208,167,100,243,247,240,240, -240,190, 53,229,200,142, 99,231, 75,132,222,157,178, 99,207,205, 7,208,187,252,126,147, 86, 58,130, 22,214,233, 71,115, 17, 9, - 0, 86, 61,167,184,146, 59, 57, 57,221, 58,124,248,176, 71, 80, 80,144, 0, 0,194,194,194,134,247,235,215,175,123,137,165,159, -247, 50, 42,154,118,237,218,217,153, 76,166, 29, 52, 33,109, 89,150,181, 5, 0,138,162,114, 24,142,187, 38, 16, 8, 70,212,118, -178, 98, 30, 60,120,240,248,215, 10, 44,165,139,183, 79,243,230,205,166,159, 56,180,163, 78, 78, 86,142,246,219,149,219, 35, 52, - 2,113, 81, 3, 31, 47,209,250,213, 95,217, 78,154, 58, 99,170,210,197,251,122, 65,234,253, 40, 75,255,212,205,205,173,110,253, -250,245, 15,206,157, 59,215,183, 99,199,142, 66,103,103,103,164,166,166,226,193,131, 7,190,151, 47, 95, 30,112,248,240,225,233, -110,110,110,239, 84, 55,131, 59, 0, 40,196,162,134,251,190, 90,230, 42,182,181, 3,199,152, 96,219,188, 37, 0,128, 99, 89, 36, -159, 63, 13,214,104, 4,199, 50,240,120,227,173,226,239, 57, 14,109,218,180, 17,213, 38,179, 60, 60, 60, 84, 77,154, 52,217, 53, -123,246,108,145, 78,167,195,205,155, 55,113,245,234, 85, 54, 45, 45,109,185,197,162,162,197,219, 62,174, 2,215, 3,253, 7,244, -174,223,247, 53,103,113, 61, 87, 39,176,172, 20, 15, 30, 25,234,158,190, 24,241,198,239, 39, 78,205,116,246,121,123, 80, 90,212, -161,219, 85,241,248,250,250,182,165, 40,234,203,164,164, 36,179, 8, 90, 17, 20, 20,244, 69,217, 99,202,107, 84,150,101, 33, 16, - 8, 82,139,138,138,222,187,115,231, 78, 68, 69,188,235,102, 8, 82, 77, 12,227, 92, 82, 60,242,215, 29,116, 61,213,179,103,207, - 6,163, 71,143,134,191,191, 63,194,194,194,186,237,223,191,255,147, 58,117,234,132, 26,141,198,223, 37, 18,201,249, 39, 79,158, -212,106,129, 69, 17,240,217,136,233,211,105,229,147, 39, 80,222,188,137,161,121,121,130,175,128,207,106, 34,176, 2, 2, 2, 26, -246,234,233,127, 96,192, 59, 93,154,185,186,250,136,132, 66, 71,112, 28, 7,163, 49,171, 73,122,250,189,129, 54, 54,152,221,166, - 77,155,119,111,220,184,241,208, 18,190,214,173, 91,187,176, 44,187,153,227, 56, 17, 33,100, 50,128, 62, 39, 78,156, 0,195, 48, -232,219,183,111,159,128,128,128,134, 28,199,125,163, 84, 42, 57,141, 70, 51, 38, 52, 52, 52,181, 42,231, 42, 39,150,157,159, 34, -104,244, 70,211,192,145, 72, 17,156,124, 99,218,235,110,199,109, 27, 81, 75,230,111, 72,186, 6, 0,189, 61, 61,173, 26,122,203, -103, 41,173,125,237,115,147, 78,207,234,237,233,249,253,241,216,216,252,231, 16,195, 43,119,236,216, 81,167,109,219,182,165,147, -228,182,106,213,138, 94,177, 98,133,251,180,105,211,214, 2, 24,101, 33, 79, 19, 7, 7,135,147, 44,203,234,238,222,189,219,196, -252,189,115,203,119,218, 59, 88, 41,122,164,103,231,135,100,220, 61,124,193, 18,174,192,192,192,209, 34,138,250,110,245,188, 73, -116, 51, 63, 63,200, 29,157, 97, 80,171, 81,104, 50,218, 95,139,188,219,247,171, 53,223,165, 7, 6, 6,142, 11, 11, 11,251,145, -175,146,121,240,224,241,127, 35,176, 36, 18,241,236, 5,159,207, 34,217,153, 57, 26, 67,126,158, 65,206,233, 77,214,114, 41,201, - 75, 75,207,121,108, 45, 47,154, 54,117,138,116,214,236,207,103, 3, 24,106,169,184,242,246,246,190,241,253,247,223, 59,219,219, -219, 35, 55, 55, 23,153,153,153,184,113,227, 6, 56,142, 67,239,222,189, 37, 45, 91,180,240, 95,189,102,205, 85, 55, 55,183,118, -213,137, 44,129, 80, 64,132, 10, 5,126,233,226, 15, 74, 36,194,187,247,139, 23,134,230,140, 6,156,120,255, 77, 0, 0, 45, 22, - 99,112, 76, 26, 0, 64, 42,149,214, 58,179, 56,142,107,215,161, 67, 7, 17, 0, 76,159, 62, 61,175,176,176, 48,152, 16,178, 71, -173, 86, 39, 89,242,123,199, 22,111,121,185, 56,185, 94,248,122,233,135,246,190, 13, 27, 65,111, 52, 34, 49, 45, 9, 28,196,112, -117, 86, 96,232,128,150,162, 14,129,162,198,171,190,253,227,188,139,111,255,206,169,119,126,189, 91,169,176, 84, 40,118,172, 93, -187, 22, 63,255,252, 51, 0,224,220,185,115,240,242,242, 82, 84,151,134, 7, 15, 30, 52, 26, 57,114,228, 94, 0,141, 43,218,111, - 98, 24,231,233, 99, 38, 0, 0, 86,109,221,100, 21, 29, 29,221, 64, 38,251,115, 45,229, 46, 93,186,160, 75,151, 46, 84,112,112, -112,208,185,115,231,130,246,238,221,107,112,119,119, 95,155,148,148,180,191, 54,121,170, 9, 9,129,242,230, 77, 32, 36,164,198, -191,109,213,170, 85,221,230,205,157,174,174,250,250, 11,167,223,142,222,197,215, 95,255,136,216,216, 88, 0, 64,163, 70,141,240, -193,144, 65,194, 61,187, 55, 55,159, 61,123,225,149,128,128,128,142,225,225,225,213,206,110,206,178,236,230,224,224,224,183,148, - 74, 37,102,207,158, 29,221,176, 97, 67, 88, 91, 91, 99,203,150, 45,176,179,179,131,209,104,140, 94,177, 98,133, 64,173, 86, 99, -253,250,245, 91,203,184, 91,127, 65,231, 62, 93,230, 75,132,222,157,154, 6,142,132,210,218, 13,223,255,180, 15, 15,194,182,119, -210, 25,239,207,159, 59,201,125, 24,205, 73, 70,186,123, 41,103, 55, 8,236,234,208,184,121,127,212, 15,184,233,168, 99, 66, 30, -205,255,184,209,114,129, 84,187, 99,193,215,127,117, 9,201,160, 3,180,111, 94,168,253,157,211,138, 76,142, 43,157, 52,148,160, -100, 14, 44, 87, 55,213,155, 93,186,116,161,205, 2,251,201,147, 39,208,235,245,240,241,241,161,244,122,189, 69,115, 90,169, 84, -170, 38,157, 59,119,190,180,107,215, 46,135, 78,157, 58,165,151,221,231,234, 96,251,250,133,131,107,167,124,185,110,183,183,179, -207,219, 57,213, 61, 8, 4, 6, 6,142,110,209,164,209, 15,107, 87, 44, 32,116, 97, 34, 4,182,153, 0,155,137,228,189, 91, 1, -185, 61,250,142,159,134,214, 65, 65,244,148,169,115,127,104,221,186, 53, 23, 26, 26,186,141,175,150,121,240,224,241,127, 33,176, - 88,142,245,115,114,178,151,174, 95,185, 61,204, 77, 74, 17, 87, 15, 21, 17, 91,219, 10,160, 84, 72, 40, 90,168,105,212,200, 67, -196,114,172, 95, 37,130,228,153, 17, 6,132, 16, 82,191,126,253,131,219,182,109,115, 22, 10,133, 96, 89, 22, 78, 78, 78,120,244, -232, 17,178,179,179, 81, 80, 80,128,216,123,247, 80,191,142, 7,166,140,251,208,109,201,215,171, 14, 18, 66, 2,203,118, 23,150, -231,228, 88, 14,172,233,217, 30, 53, 66, 8, 42,234, 95,172,108, 25, 25, 75, 71, 66,176, 44,251, 88,173, 86, 67, 46,151,163, 89, -179,102,202,208,208,208,139, 73,102, 11,169,186,115, 31, 52,136,118, 19, 75,142,172, 92,250,158, 61,161,163, 17, 29,159, 3, 79, -143, 54,112,176,169,131,164,244, 2,132, 71,253,142,232,216, 99,240,244,168,139,113, 31,120,218,174,217,156,126,148, 4,124,228, -201,133,111, 49, 86,196,153,159,159,175,172, 91,183, 46,220,221,221,193,178, 44, 24,134,193,221,187,119, 75, 63,155,215, 75, 52, -127, 94,187,231, 50,236,232, 12,188,247,118, 31,100,101,101, 41, 45, 61,119,179,184,218,185, 76,213,188,168, 32, 89, 4, 0,114, -165,155, 97,216,156,164,187,173, 91,183,134,147,147,147,232,202,149, 43,211, 0,236,175,105,126, 26,128, 21,235,182,109, 91, 63, - 52, 55,151, 2,128, 31, 8, 97, 13,197,179,106, 91, 84,150,122,189,214,234,208,154, 53,243,157, 8, 23, 5,123,155,175,112,227, -198, 83, 24, 12,197, 87, 62, 51, 51, 13,147, 63,206,131, 64, 96,133, 85,171, 22, 56, 12,126,111,194, 47, 37, 93,100,108, 85,233, -228, 56, 78,116,255,254,125, 52,111,222, 28,123,247,238, 21,208, 52,141,235,215,175, 67, 38,147, 97,228,200,145,240,245,245, 21, -200,100, 50, 92,188,120, 17,121,121,121,164,170,116,134,252,126, 97, 73,118,220,185,249, 41,244,201, 55,190,255,105, 31, 62, 28, -242, 30, 92, 77,113, 23,237, 60,169, 37,189,251,182,255,130, 22,214,233,167,176,242,181,243,242,237, 15,145, 88,137, 73,159, 45, - 70,244,157, 35,118, 69,249,183, 63,102,140, 9,117, 0,124, 82,158,147,219, 63,144, 89,189,221, 57,224, 76,221,136,122,170,128, -143,174, 39, 71,124,119,235,207,127,111, 38, 0,165,177, 53,139,171,135, 15, 31, 34, 54, 54, 22, 52, 77, 67,163,209, 60,179, 80, -112, 89, 78,127,127,255,143, 24,134,249, 2, 0,244,122,253,118, 23, 23,151,209,223,124,243,141, 3, 77,255,185, 82,148,217,185, -202,202,201,203,190, 18,122,247,193,180,143, 6,118, 13,185,118, 39,193,182,229,128,248,156,200,195,185, 21,229,103,187,118,237, -236,196, 52,253,221,186,175, 23, 17, 38,238, 15, 72,154,117,133, 64,233, 5,198,152, 4,109,118, 1, 52,143, 82, 96,216,178, 1, -141,198, 79,197,202, 21, 95,146, 33,195,198,124,231,233,233,121, 48,182,140,131,247,119,140, 82,226, 57,121, 78,158,243,213,228, -252,191, 19, 88,132, 80,121, 6,131, 81,104, 93,199,221,248,238, 59,157, 91, 68, 92,191, 19,173,180,183,161, 90,182,105,225,115, - 39, 58, 49, 28, 38,198, 64, 8,101, 81, 92,135,135,135,199,123, 11, 22, 44,104, 97,109,109, 13,150,101, 97, 99, 99,131,244,244, -116, 24, 12, 6,228,229,229, 65, 87,144, 15, 67,126, 30, 34,227,159,160, 99,215,174,120,173, 93,187,102,191, 27,141,239, 1,216, - 91, 25, 39, 67,209,156,131,127, 27, 12,138,203, 4,107,208, 99,127, 35,135, 82,215,234,253, 39, 57, 32,132,128,209,235,240,123, -155,198,144, 40, 21,240,155,185,160,214,153,149,156,156, 28, 81,175, 94,189,227,111,188,241, 70,239,113,227,198, 81, 41, 41, 41, - 39, 92, 92, 92, 58,164,166,166, 86,219, 61,234, 28,195,140, 28, 49,206,191,145,163, 45,133,223, 46,159, 68, 91,239,183, 33,151, - 8,145,158,173, 1, 69, 8, 98, 31,159, 1,195, 40, 16,121, 63, 30,237,124, 21,232, 20,100,227, 81,240, 71,214, 56, 84,222, 93, - 70,178,179,179,145,150,150, 6,163,209, 8,147,201,132,129,131, 6, 97,199,246,237, 40, 44, 44,132, 86,171,133, 94,175, 7,203, - 22,235,137,148,244, 2,220,136, 60,129,192, 22, 77,128, 42,102,252, 22,208,116,218,170,173,155,156, 1, 64, 38,183, 55,230,231, -231, 67,161, 80,160,168, 32, 89, 52,225,131, 98,103,107,211,158, 77,162,115,231,206, 33, 60, 60, 28, 42,149,202,162,114, 84, 17, - 98,129,239, 30, 51,204,188,222,135, 14, 57, 95, 62,116,136,189,246,219,111,137,146,252,252, 45,150,252, 54, 40,168,213,192, 73, -147,250, 54,147, 73,101, 72,140, 95, 11,111,111, 17,166,127,234,128,224,175, 50, 0, 0, 83, 38,121, 32, 48,208, 1,121, 57, 7, -224,232, 60, 23,211,167, 13,240, 44, 40,224,134, 3,216, 94,117,121, 39,147,119,239,222, 29,221,171, 87, 47, 65, 68, 68, 4, 36, - 18, 9,100, 50, 25,164, 82, 41,100, 50, 25, 82, 82, 82,160,215,235,177,127,255,126, 83, 73, 23, 98,165, 40,233, 6,236, 61,173, -151,219,241, 7, 97,219, 59,185, 83,143, 34, 7, 76,107,255, 56,226,122,100,193,217, 63, 46, 47, 49,105,165, 9, 57,137,167,103, - 53,108, 29,233,248,241,204, 69,216,176,114, 1, 30, 92,191,144,229, 82, 55,255, 91,134,232,182,119,168, 96,158,251,174, 93, 23, - 9, 38,206, 27, 98,156, 56,250, 93,155,163,110, 87, 62, 60, 42, 64, 70,106,214,237,175, 17,119, 67, 35,241,106, 62,172, 73, 67, -162, 63,123,246,172,172,115,231,206,208,104, 52,197,247, 2, 77, 99,247,238,221,172,201,100, 58, 87, 81, 58,141, 70,227, 23,225, -225,225,110, 69, 69, 69, 24, 50,100,200,148,133, 11, 23, 42,132, 66, 97,241,253,197, 48,207, 56, 87, 75,215,236, 60, 57,245,139, -111,207,157,220,251,149,106,233,236,209, 93,135, 78,250,242, 28,128, 19, 21,186,161, 38,211,142, 53, 95,205,161, 37,182, 6,144, -214,189, 96, 72,211,224,233, 15,227,160,207,213,160,201,146,197, 0, 68,208, 27,104, 28, 29, 48, 8,180,189, 10, 99, 59,119, 16, -108,185,112,105, 7,128, 1,124,213,204,131, 7,143,114,104, 13,192,169,228,115, 70, 73, 59,230, 0,192,236,178, 59, 1,208, 3, - 16,151,249, 77,249,237,178,199,150,223, 46,251, 57, 3,197,177,205, 78, 0, 24, 0, 55, 0,212, 56, 78,148, 42,105, 84,184, 50, - 13, 12, 87,206,181, 9,137,141,123,162,233,218, 37,208,237,220,141,152,136, 55,222,126,173, 77,231,238, 65,109, 83, 51,243,226, - 92,157,172, 21, 87,174, 95,147,176, 44,107, 81,255,142, 80, 40,236,215,177, 99, 71, 65,118,118, 54,228,114, 57,210,211,211,145, -148,148, 4,131,193, 0, 77,110, 14,116, 57,217,208,100,103,193,152,159,131,216,208,235,104, 90,215, 93, 82, 18, 4,111, 17,202, - 59, 84,230, 21,236, 9, 69, 65,106,109, 5,153,181, 53,104,186,102, 51, 83,168, 84,170,254,222,222,222,215,220,221,221,231,149, - 60,225,127, 28, 28, 28,156,193,113, 28,102,205,154,101,109,109,109,189,191,126,253,250,146,234,120,172,236,153,129, 65, 45, 26, -211,209, 79,111, 35,208,235, 93, 52,112,235,140,216,164, 92,164,231,106,145,146, 85,136, 38, 77,102,194, 73,245, 33,108, 92,199, -227,246,131, 4,184,185, 54,160,104,161,232,141,170, 56, 83, 82, 82,158,217,254,105,207, 30, 20, 21, 21,161,113,227,198,120,255, -253,247,241,217,103,159,225,189,247,222,131, 74,165, 66,167,198, 2,140, 30, 54, 16,105,105,105, 85,166,243,147,175, 77, 46,171, -247,187, 69, 76, 95,195, 69,180, 30,112,234, 78,108,108, 44,162,163,255,218,179,246,199, 31,127, 32, 55, 55,183,180, 1,182, 4, - 46, 46, 46,115,220,220,220,110,185,185,185,221,117,115,115,251, 61, 85,165,186,111,108,212,200,165,195,128, 1,196,103,240, 96, - 58, 65,161, 32,143,235,212, 81, 90,194,101,109,141,190,129,129, 29,197, 57,217, 63, 2, 40, 22,145,163, 71, 57,225,210,133,230, -184,124, 49, 0,147, 39, 53, 2, 69,164, 32,148, 8, 69,133,127,192,167,185,175,200,202,138,171,178, 44,149, 4,180,199, 53,111, -222, 92, 48, 97,194, 4, 72, 36, 18,236,216,177, 3,155, 54,109,194,234,213,171, 17, 29, 29,141,122,245,234,193,205,205, 13, 46, - 46, 46, 2, 0,113, 37,191,169, 18,182,158,212, 18,157,241,254, 69, 59, 47, 69, 28,161,156,219,235, 76,210,119, 23,124,173,206, - 92,242,109,220,170,199, 15, 52,141,238, 95,191,144, 25,125,231, 87,246, 81,232,185, 12,117, 76, 65,163, 37,223,198,173, 90,182, - 33, 41,171, 34,174, 11, 23, 22, 48,135,127,191, 96, 40, 44, 40, 18,244,239,221, 67, 51,126,212,251, 77,236,229, 77,119,195,189, - 87,171,250,117,220,134, 45, 88,182, 94, 63,118,194, 84,195, 15, 91,127,228,242,243,243,145,151,151,135,117,235,214,153,126,251, -237,183, 36,134, 97,166, 86,146, 68,186, 68, 16, 97,208,160, 65, 10,153, 76,134,132,132,132, 82, 23, 20, 0,146,211, 51,111, 95, - 14,189,115,127,218,248, 65, 93, 10,117, 58,221,201,243, 97,247,124,188,234,121, 16,194,213,175,236,188,105, 66,218, 54,247,243, - 3,199,229,128, 18,212, 69,226,206,175,161, 73,201, 66, 81,122, 22, 40,161, 2, 70, 72, 97,224,196,144,250,181,193,211,240,155, -112, 81, 90, 67, 64, 72, 7,190, 29,225,193,227,255, 19, 85,105, 17, 0, 78,132,144,163,132,144,163,115,230,204,233, 6,192,129, - 16,114,180, 68, 4, 57,149,124, 22,155,143,169,100,219,169, 44, 79,185,223,150,253,236, 56,103,206,156,238,132,144,163,237,219, -183, 31, 86, 34,228,106,140,106,213, 6,173,213, 7,207,153,183,128,178, 86,138,173,124,154, 53,176,251,237, 84, 72,196,229,107, - 55,239, 89,201,165,146,130,194, 66,241,234,111, 54,213, 37, 69, 26, 75,131,188,155, 57, 58, 58,194, 96, 48,224,225,195,135, 72, - 76, 76,132,193, 96,128,169,168, 16,186,156, 28,104,179,179,193, 22, 21, 64,196,176,208,100,164,195, 78, 42, 6,254, 28, 97, 88, -149, 85, 89, 42,166, 42, 18, 92,132, 16, 72,173,173, 32,182, 82,130, 18,208, 22,103,142,155,155, 91, 64,171, 86,173,126, 62,123, -246,108, 80,199,142, 29,151,212,175, 95,223, 38, 37, 37,229,105,106,106,106,143,149, 43, 87,234,156,156,156, 48,116,232,208,166, - 70,163,113, 68,117, 92, 34,169,174, 69, 61, 23, 47,212,117,233, 15,149, 67, 91,100,230,233,144,158,163, 65, 74,102, 17,246,253, -242, 62, 78, 31,127, 31, 55, 47, 14,195,195,235,163,145, 89,104, 13,169,125, 55, 0, 92,149, 51,232, 94,187,118, 13,155, 55,111, - 46,125,109,216,176, 1, 89, 89, 89,104,222,188, 57, 18, 18, 18,112,226,196, 9,164,164,164,192,201,201, 9, 55,111,222,196,150, - 45, 91,112,253,250,245, 26, 23, 18,173, 86, 11,145,196,193,176,105,207, 38,108,218,179, 9, 12, 20,134,178,121,111,113, 97,163, -168,145,201, 3, 6,180, 72,182,181,245,241,243,243,235, 61,120,240,224, 70, 65, 65, 65,165,251, 61, 61, 61,235, 10, 4,130, 20, -149, 74,245,131, 74,165,106, 85, 37, 25,203,249,219,217, 55,131, 94,119,191,228, 26, 11, 64,136, 4,221, 95,187,135, 14,157,194, - 97, 48,138, 65, 40, 9, 40, 34,133,201,148, 9,107, 43, 23,112, 92,181, 51, 18,247, 57,113,226, 4, 54,111,222,140, 71,143, 30, -149,118,143,246,235,215,111,242,144, 33, 67, 14, 50, 12,131,163, 71,143,226,240,225,195,104,216,176, 33, 90,181,106, 5,131,193, -208,167,186,243,158,191, 33,233,218,158,213,199,223, 23,154,108, 91,137, 37,245, 26, 82,249,242,254, 31,119,117, 82, 0,192,241, -216,216,124,151,186,249,203,139,242,239,196,219,121, 20,126, 85, 93,128, 59,199,129, 11,139,190,123,125,239, 47,167,114, 83, 51, - 50,133,254, 45,125, 53, 95, 46,154, 41,170,223,160,241,138, 5,179, 38,186, 36,229, 73,115, 95,155,114,252,254,193, 19, 55, 10, -134,143, 30,103, 26, 51,110,146,246,228,169, 63, 14,177, 44,235, 87,217, 8, 66,150,101,145,156,156,140, 59,119,238,224,209,163, - 71,200,200,200, 64,122,122, 58,242,243,243, 75,187, 21,229,249,121,199, 54,108,251, 45, 82, 33,147,201,131, 90,120,213,189, 30, - 17,149,166,144,201,228, 94, 13,234, 54, 33,164,226, 5,168, 89,150,181, 45,206, 67,130,252, 59, 33,208,102,229, 67,147, 83, 0, - 77, 86, 1,116, 6, 26, 90, 29, 5,173,129,130, 99,167, 94, 40, 40,212, 64,155,149, 3,150,227,236,248,102,134, 7, 15, 30, 85, -180,247,253,150, 47, 95,190,172,170,253,101,222,245,229,182, 65, 8, 57,202,113, 92, 63,142,227,250,149,136, 41,179, 78, 56, 90, -150,103,249,242,229,203, 56,142,235,119,229,202,149,159, 0, 20,213, 38,173,213,118,237,100,100, 68, 23, 88, 59,249,188, 51,117, -214, 23,191,239,254,126,189,115, 86, 86,118,180, 72, 42,211, 74,165, 98,251,207,102, 45,178, 45, 44,202,125,167, 32,203,242, 81, - 79,217,217,217,165,141,151, 72, 36, 2, 83, 84, 8, 70, 83, 4,109,118, 38,136, 65, 7, 17,195,192, 94, 46, 71, 93,149, 11,234, -187,184, 86,203, 71,179, 12, 81,159,254, 29, 39,135,189,253, 76,183, 32,107,208,227, 68,251,166, 16, 43, 21,144,217,218,161,227, -225,139,197, 66, 71, 36, 2, 22,124, 85, 45,175,171,171,171,163, 74,165, 58,242,205, 55,223,136, 50, 50, 50,112,247,238,221,200, - 39, 79,158,228,218,219,219, 91, 9,133, 66, 54, 38, 38,230,204,131, 7, 15,250, 53,104,208, 0, 28,199,121, 86,199,151,159,163, - 48, 24,140, 44,146,210,158, 34, 49,249, 14,108,148,117,193, 81,117,144,154, 85, 4, 2,103, 24,181, 15, 74, 99,201,116,154, 68, - 20,234, 44, 91,183,215, 96, 48,192,104, 52,194,104, 52, 66,175,215, 99,248,240,225,184,114,245, 42,246, 28, 62,143,132,132, 4, - 52,116,149,227,253,247, 6,161,101,203,150, 8, 11, 11,171,117,161,246,235,123,242,174, 76, 38,195,166, 77,155, 32,151,203, 81, - 83,129,229,230,230,182,202,219,219,187,241,131,194, 66, 68,221,191,143, 54,131, 6, 1, 0, 46, 93,186, 84,122,140, 70,163,193, - 7, 31,124, 32,126,244,232,209,152,251,247,239,143,113,115,115, 91,157,156,156, 60,189, 50,206, 99,199,174, 98,252,248, 40,164, -167, 23, 59,187,251,126,242, 41,221,247,248,145, 1,111,244, 45,238,185,178,181,181,197,170, 85,150,173,246,192, 48, 12,182,108, -217, 2,153, 76, 86, 42,176, 68, 34, 81,135,105,211,166,189, 83,209,241, 62, 62, 62,213,114, 78, 27,228, 33,189,249, 84,246,177, - 77,227, 6,190, 54, 78,126,200, 48,221,108, 17,145,148, 50,121,218, 32,143,181,171,247, 39,106, 25,162,219,206, 24, 19,234, 8, -164,218, 29,150,164, 49,246,248,122,189, 93,195,143,118,164,164,229,126, 62,105,220, 80, 7, 91, 59,151,130, 31,190, 9,182,165, - 40, 10,191,133,235,179,155, 55,114,176,235,223,118, 93,193,248, 79,231, 71,232, 77, 79, 39, 35,225,232,131, 18,187, 27,149, 9, -172,164,164, 36,100,100,100, 32, 62, 62, 30,233,233,233, 32,132, 32, 61, 61,189, 70, 14,101, 69,142,178, 62, 49, 9, 41,135,182, -194,245,131,161,104,178,120, 49, 88, 86, 8, 77,145, 9, 7, 58,245, 64, 94,174, 6,122,150,192, 54,160, 61, 94, 59,122, 17, 20, -107, 2,174, 94,225, 91, 16, 30, 60,120, 84, 85,175, 28,157, 61,123,246, 92, 11, 15, 63, 3,192,162,169,117,202, 11,174,217,179, -103,207, 53,255, 87,112,112,176, 6,128,250,133, 11, 44, 0,200, 75,143,138,115,168,231,151, 92, 80,164,145,218,217,219, 21, 89, - 41,197, 92,110, 78, 46,125,255, 97,180,182, 32,249,225,131, 26,252,223,189,187,119,239,250, 38, 37, 37, 33,254,233, 83, 24,139, - 10, 65,244, 58, 64,171, 65,207, 78, 29, 32, 5, 32, 37,128,136, 53,128,166,197, 40, 40,200, 3,128,123,213,145,178, 70,227, 51, -149,122,105,183,160,149, 21,196, 74, 5, 36,214, 86,207, 56, 90,150, 64, 38,147,237,217,178,101,139,155,155,155, 27,214,172, 89, - 3, 55, 55, 55,239,158, 61,123, 22,117,233,210, 69,230,232,232,136, 38, 77,154, 32, 48, 48, 16,231,206,157, 3, 33, 36,182, 58, - 62,147, 94, 28,126, 47,142,169,147, 87,112, 19,215,195,119,193,168,215,163,129,215, 28,232, 76,142, 80, 56,143,129,198,112, 4, -134,156,243, 0, 0,177,117, 87,164,166,102, 0, 32,119,170,115,238,202,111,223,186,117, 11,219, 15, 93, 66,221,102, 93,145,146, -117, 2,119,238,132,193,197,238, 20,188,124,154,195, 88, 38,159, 44,113, 5, 45, 21, 36, 22,222, 20, 31,204,153, 51, 7,185, 50, - 25,208,183, 47, 68,113,113, 48, 24, 12,104,219,182, 45, 90,183,110, 13, 0,104,219,182, 45,104,154, 70,227,198,141, 97,111,111, -143,131, 7, 15,126, 0,160, 66,129,197, 17,114,147,101, 50,189, 27, 53,106, 84, 42,176,118,236, 76, 71, 68, 88, 79, 16,136,177, -126,195,159,151,164,110,221,186, 72, 73,121, 4, 66,170, 13,202,252,189,111,223,190,125,236,236,236, 48,106,212, 40,200,100, 50, -188,253,246,219,208,104, 52,131, 75,158,104, 48,103,206, 28, 0,192,130, 5, 11,176,112,225, 66, 20, 21, 21, 85, 58, 69,197,230, - 47,253, 84,249, 26,118,180,155,155,234,237,110,142, 13,252,186,191,222, 19, 13,189,122,160,251,235, 9, 0,176,204, 81,248,120, -208,138,207,125, 15, 53,168, 99,191,237,202,225, 51, 95,116,236,221,109,222,162, 41,246, 75, 22,172,207,170,246,129, 37,231,241, -119,249,247,133,111,174, 93,191,217,180,102,193,220,105,146,167, 25,134, 44,117, 54, 91,160,144, 8,172, 60, 93,160,156,252,217, -146, 71,106,245,195, 25, 72, 56, 21,109,201, 53,124,244,232, 17,116, 58, 29, 24,134,129, 78,167, 67, 65, 65, 1, 18, 19, 19, 75, -175,175, 70, 97,253,198,164, 81,111,182, 44,212,104,138,174,223,142,137,159, 55,101,104,187, 66,141,166, 40,230,113,124, 52,199, -173, 99, 43,185,230, 57, 69,249, 5,246,250,124, 35,114, 34,163,225,216,189, 30,244, 38, 2,157,137, 70, 86, 70, 62, 12, 12, 96, -164,132,240, 24, 56, 28, 38, 34, 64, 94,122, 10, 40, 66,248,249,176,120,240,224, 81,173, 16, 10, 14, 14,238,247,119,113, 3, 64, -112,112,240,221,224,224,224,231,250, 47,179,192,234, 90,166,191,179,107, 5, 21, 37,105,229, 87,215,125,217,220,119, 84, 70,163, -222,187,160,160,128, 17, 8,196,130, 58, 54,154,148,154,252,153,209,104, 60,122,241,226,197, 1,157, 58,117,146,196,220,142,132, - 46, 55, 23,186,220, 28,136, 88, 19,236,165,129,160,140,122, 16,189, 14,238, 77, 89,104,242,164,184, 26,250,192,104, 52, 26,143, - 86,153, 33,224, 56,214, 84, 44, 28, 40,138,126,166,171, 80, 98,165,132, 88,169,132, 68,105, 85, 97, 23, 98,101,112,113,113,145, -247,238,221,187,135,191,191, 63, 56,142,195,202,149, 43,161,215,235,197,102,167,200, 96, 48, 32, 63, 63, 31,191,252,242, 11,118, -238,220,121,217,198,198,166,218,161,229,172, 73,119,252,220,229,200, 62,195,222,238, 46, 62,125,254, 7, 24,117, 38, 20,232,108, - 81,168,213, 35, 95, 35,132, 94,242, 58, 8,185, 8,138,150,160,125, 43, 79,156,189, 20,163,101,140,134, 19, 53, 17, 67,132, 16, -232,116, 58,164,165,165, 35, 43,255, 28,144,159, 4, 71, 67, 62, 10, 30,199,162,213,240, 17,208,235,245,213,114,173,155, 33, 72, -157, 54,136,113, 94, 61,141,130, 84,102,103,108,243,246,233, 74, 69,137, 82,169, 44,141,209,177, 72,168,231,229, 97,215,174, 93, -104,219,182, 45,186,116,233,130,164,164, 36,196,197,197,161, 79,159, 63,123,217, 34, 35, 35, 17, 17, 17, 1, 79, 79,207,106,184, -184,223,179,178, 30, 14,234,223,191,191,232,218,181,107,224, 56, 14, 94, 94, 54,176,182, 82,130, 80, 18, 52,107,230, 4,224, 1, - 8, 33,232,218,181, 43, 12, 6,181,169,176, 16,191, 87,197, 25, 30, 30,222, 55, 32, 32,160,161,209,104,140,246,245,245, 21,164, -164,164, 96,224,192,129,216,183,111,159,249,137, 6,179,103,207,126,230, 55, 5, 5, 5,218,202,248, 90,182,105, 50,131,225, 28, -186,136, 37,245, 26,218, 56,249,161,161, 87, 15, 0,192,107,253, 70,163, 97,227, 58,200, 77,191,213, 80,175,123,250, 54, 77, 50, -237,118, 95, 75,138,234, 36,247, 29,149,145,112, 62, 6,192, 15, 22, 92,115,142, 16,146, 26, 47,180,254,249,192,175, 71, 63,122, -243,205,183, 4, 70,134, 53,249,214, 21,216,236, 59,120, 44, 45,233,105,252, 58,196,159,186, 91,246,248, 42, 4, 22,147,147,147, - 3,165, 82,137,184,184, 56,221,155,111,190, 41,209,104, 52,136,137,137, 41, 21, 88,206,142,246, 62, 29, 90,251,122, 47, 93,179, -243,164, 66, 34,145,188,222, 53,176, 89, 84,204,211, 68,142, 35, 79, 42,229,229,184,107, 49,247,238,245,117,114,172,139,228,243, - 87,160,232,216, 27, 58, 29,129,214,192, 66,207, 0, 38, 90, 4,155,150,109, 32,107,212, 12, 44, 7,220,187, 29, 9, 19,199, 93, -230,155, 16, 30, 60,254,111, 81,165, 22, 49, 59, 88,237,218,181,219, 91,214,101, 50,127, 6,160, 3, 80, 85, 76,116,122, 89, 17, -101,238, 54,172,236,127,202,241,214, 78, 96,113, 28,119, 1, 85,140, 44,115,116,116,116,110,214,180,121,163,239,183,254, 0,131, - 46, 23,113, 81,219, 80,152,159,138,249,203,174,122,122,120,120,116, 73, 76, 76,188, 96,201,159, 37, 38, 38,238, 59,120,240,224, -244,150,205,155,251,215,247,240,192,173, 39,143, 33,226, 24,136, 24, 6,148, 65, 7, 1,163,135,135, 15, 11,138, 82, 32, 37, 37, - 31, 91, 78,252,113, 39, 49, 49,113, 95,149, 79,223,132, 70,157, 55,223,197,144,215,250,130, 51, 26,112,170,147, 15,164, 74, 37, - 36,182,182,104,255,203,249,226, 41, 27, 76, 70, 60, 89, 62, 19, 34,133, 18,246,109,187, 86,155,206,212,212,212,162,198,141, 27, -135,221,191,127,191,117,211,166, 77,177,104,209, 34, 36, 36, 36,128,227, 56,164,165,165,105,211,211,211,147, 50, 51, 51,159, 16, - 66, 14,169,213,234,239, 45,153, 41, 60,205,139,222,126,250,204, 31, 51, 2, 90,249, 52,233,217,101, 33,142, 30,253, 2, 57,121, -121, 40,212, 9, 80,160, 49,160, 80,203, 65,101,229,137, 32, 63,127,164,103,234, 17,115, 55, 60, 49, 67,100,255, 93, 13,173, 83, - 68, 70, 70,162,158, 61, 65, 84,116, 4, 28,181, 89,104,106,171,132,127,199, 78,120,244,232,145, 69,206, 84,185,121,176,132,182, -182,182,200,205,205,125,230,119,114,185, 28, 42,149, 10,121,121,121, 56,112,224, 0, 56,203, 26, 69,163, 94,175,135,183,183, 55, - 66, 67, 67,113,230,204, 25,116,239,222, 29,157, 59,119,198,249,243,231, 17, 22, 22,134,136,136, 8, 16, 66,224,224,224, 96,118, -219, 42,181,220,110,220,136,220,175, 84,146, 57,163, 70, 77,240, 29, 58,116, 40,126,249,101, 47, 70,143,106, 10, 66, 73, 64,136, - 4,111,189,233,141,197, 75,194, 16, 20,212, 21,142,142, 34,156, 57,115,247,145, 64, 96,179,211, 2,225,242,205,138, 21, 43, 4, - 82,169, 20,122,189, 30, 5, 5, 5,200,204, 44,158,142,170, 34, 7, 75,163,209, 84, 58,177,218,221,155, 15, 86,101,231,113,217, - 84, 81,248,219, 25,198,155,126,221, 95, 79,196,107,253, 70,225,244,209,109, 56,123,242, 12, 28,133,143, 31, 49,178,130,227,233, -143, 50,242,213, 5, 94, 91,124, 2,199,210,201,133, 39, 55,127,220,223,142,246,112, 99,247,207,222,152,155, 83, 93,122,179,162, -118, 29, 57,194,225,173,142,109,219,120,182,168,171, 18,103,101,166,225,224,175,199,239, 26, 30,255,114, 20,197,221,130,150, 88, -145,139,215,175, 95,255, 5, 0,176, 44,187,125,205,154, 53, 99,103,204,152,225,148,148,148, 84, 42,176,210, 50,178,206,182,239, - 59,153,201,204,201,213,255,184,230,179,129, 50,169, 68, 60,111,249,143,231,141, 52,174, 85, 90,185, 8, 4, 35,230,110,220,157, -126, 96,255, 54,218, 73, 42,194,165, 89, 11, 16,247,199, 57, 24,136, 8,175,159,186, 14,189,129, 65, 94, 90, 38,206,142,154, 8, - 59, 55,123,252,158, 25,195,228,230,231,141,224,219, 24, 30, 60,254,111,221,169,170,180, 72,122, 25, 65,148, 5,224, 73,112,112, -112, 70, 25,119, 41, 29, 64, 36,128,150, 37,199,165,151,251, 93, 58,128, 80, 0,173,203,240,164,151, 17, 90,101, 63,235,203, 29, - 19,249, 60, 14, 86,149,200,200,200, 72,187, 17,118, 7,151, 79,111,130,201,168, 67,110, 86,241,220,159,234, 84, 45,172,173,173, -175, 86,209,224, 63,179,218, 54,199,113,156,155,155,219, 59,107,214,174,189,246,209,136, 97,174,157,123,244,192,211,219,183,160, -203,202, 0,205, 48,160,137, 16, 5, 25, 82,164,166,228, 33,248,200,241, 52,141, 86,251, 78,249, 39,239,138, 86,240, 54, 7,185, -115,132, 64,106, 99, 13,137, 66, 1,137,141,245,159,142, 21, 33, 16, 43,173, 32, 84, 40, 65,139,196,213,166, 19, 0,138,138,138, -222, 29, 55,110,220,173,223,127,255,221,110,200,144, 33,120,235,173,183, 34,114,114,114,186,101,101,101, 89, 20,111,246,151,115, -223,191,159,113,108,241, 86,255,111, 55,125,127,101,228,200,145,246,111,245,255, 22, 17, 81,119,145, 83, 88, 60,105,186,202, 81, -129,160,166, 51,145,150,169,195,201,227, 71,179, 89,147,246, 93,238,206, 94, 99,101,156, 28,199,113,142,142,142,207,184,114, 52, - 77,227,252,249,243,248,228,147, 79,224,104,117, 30,249, 79,226,208,162, 83, 23,188, 54,116, 4, 70,143, 30, 13,154,166,225,224, -224,128,178,141,110,117, 43,162,231,230,230,162,126,253,250,216,183,202,211, 87, 83,148, 37,172, 75, 3,162, 66,107,227,217,179, -125,239,132,132,132, 20, 0,248,222,203,203,107,127,117,249, 73, 8,249,124,217,178,101,155, 58,116,232, 32, 83, 42,149,240,242, -242,194,229,203,151,113,249,242,101, 92,188, 88, 28, 31,231,224,224, 0,123,123,123,228,228,228, 32, 33, 33, 65, 67, 8,249,188, -138,178,196,182,110,221,122,192,233,211,135,174,191,249,230, 59,142,111,188,209, 14,174,174,249, 48,153, 50, 64, 40, 17, 36, 82, -103,124,255,253,114,164,165,102,225,202,213,171, 89, 5, 5,130,119,195,194,158, 93,130,168,146,116, 26, 78,156, 56, 1,169, 84, -138, 95,126,249,197,228,226,226, 34,176,181,181,173,212,193,210,106,181,146,202, 56,199,126,118, 59, 9,192,146,105,131, 60,190, -190,114, 55,117, 0,128, 61, 13, 27,123,224,236,201, 51,184,120,246,202,236,182,190,236,250,190, 31,180, 89, 44,237, 62,120,166, - 79,192, 88, 90,105,237,134, 29, 7,127,161,163,194,127,248, 82, 91,120,167, 17,128,153,213, 92, 35, 14, 0, 10,210, 82,231, 4, -175,222,176, 61,120,209, 23,178,149,235, 54,170, 53, 25, 41,115, 81, 60,180,146, 43,123, 92,101,233,140,139,139,219, 2,160,116, -122, 12,149, 74,181,107,249,242,229, 33,195,134, 13,115, 50, 59,148,105,119,127,189, 10,224,170,111,183, 49,243,219,183,110,222, -244,203,117,187, 79,198, 39,164,238,206,137, 42,158, 3,171,162,116, 94,189,122, 53, 59, 48, 48,112,220,204, 89, 11,127, 88,180, -120, 1,241,158, 58, 27,209,151, 67,161,211, 24, 96,224,104, 24, 65, 16,190,116, 53,172,156,172,113,137,203,226,116, 52,245, 97, -108,185, 32,255,234,202,103,109,192,115,242,156, 60,231,171,201, 89, 13, 66, 43,242, 67, 44, 56, 46,212, 2,158,191, 5, 22, 9, - 44,119,119,247,206,175,245,104,139, 14,175, 77,128, 65,151,131,184,187, 63,162, 32, 63, 21,238,174, 18,196,197,231,181, 3,112, -193,210, 63, 76, 78, 78,142,119,115,115,107,251,229,218,245, 7, 95,111,211,186,153,151,187,155,196,182,126, 61, 40,156, 93,144, -145,158,142,235,225,209,198,141, 39,207,222,209,104,181, 22, 45,149,195,178, 44,199,113, 28, 68, 34, 17, 56,154,134,207,228, 89, -160, 40,170,220,104, 65, 2,235,192,142,160, 4, 66, 24, 45,140, 25, 82,171,213,137,238,238,238,239, 78,158, 60,249,143,237,219, -183, 83, 93,187,118,109,117,228,200, 17,246,121, 50, 59,227,246,145, 24,151, 22,111,119, 89,255,205,198, 3,254,129,109,235,213, -111, 80, 95,210,161,142, 13, 12, 70, 6,169,105,153,184,112, 37, 74, 23, 19, 21,153,192, 26,244,131,210,162, 42,159,197, 29, 0, -140, 70, 99,188, 74,165,114, 89,184,112, 33, 76, 38, 19, 24,134,129,201,100, 66, 70, 70, 6, 34, 34, 34, 16,208,182, 29,188,199, -140, 69, 86, 86, 22,182,110,221, 10, 15, 15, 15,244,233,211, 7,249,249,249, 8, 9, 9,169, 52, 95,203,206,131, 69, 40, 65, 78, -191,126,253,206, 55,111,222,188, 99,207,166, 89,194,178,206,214,249,243,231,247, 75, 36,146, 45,143, 30, 61,170,114, 14, 52, 79, - 79, 79,177, 86,171,109,197,113,156, 32, 47, 47,111,173, 78,167, 27, 57,109,218, 52,183, 21, 43, 86,192,207,207, 15, 25, 25, 25, -176,183,183,135,155,155, 27, 10, 10, 10,240,232,209, 35,198, 96, 48,108,102, 24,102,113,106,106,106,122,149,119, 91,104,232, 99, -127,127,255,118,169, 41,155, 14, 78, 24,223,203,203,104, 12, 20, 91,219,116, 2,199,153,144,147,157, 0,194,221, 50, 28, 58,252, - 71,108, 78, 14,253, 78, 88, 88, 88,140, 37,215,136,162,168,241,191,253,246, 27,204, 75,229,168,213,234, 56,138,162, 42,117,176, - 44,193,234,253,137, 90, 0, 63,125,253,105,187,169,185,233,183,154, 56, 10, 31, 63,106,235,203,174, 95,189, 63, 81,251,213, 71, -118, 75,147,210,207, 71,171, 11, 78,110,217,113,240, 23,122,196,219,239, 50,110,202,152,217,142,117,176,191,219, 91,213, 62,237, -113, 45, 91,182,172, 75, 81, 89, 13,210, 50, 31,132,141,254,240,163,193, 54, 34,205,239,126,238, 25,141, 77, 46, 62,210,168,168, -168, 39, 37,135,113, 53, 41,167,106,181, 58, 90,165, 82,117, 94,181,106,213,201,242,214,120, 90, 70,214,217,118,253, 38,113, 57, - 57,185, 55,211,162,126,189, 93, 29, 87, 88, 88,216,143,129,129,129, 24, 62,108,244,119, 31,142, 25, 71,251, 78,249, 12,137,231, -254, 0, 76, 70, 36, 95,188, 0,185, 21,131,163, 25, 79,152, 34,154, 26, 23, 22, 22,198,207,226,206,131, 7,143,255, 12,136,165, -117,175,103, 35,143,147,141, 26,184,247,106,212, 64, 5, 0,136,123,172, 70,220,227,164, 83,177,113,137,175,215, 70,225,150, 93, -236,153,148, 76,197,192, 89,176,216,115,121, 78, 95, 95,223, 8,138,162, 84, 53, 57,105,134, 97, 18,239,222,189, 27,104, 73, 58, - 85, 42,213,144, 58,117,234, 44, 87,171,213, 7, 19, 18, 18, 62,125, 17,234,222,188,216, 51, 69,139,250,113, 28,231, 7,128, 16, -138,170,118,177,231,178,156,238,238,238, 45,100, 50,217, 22,129, 64, 80,215,108,169,154,179,204, 96, 48,208,185,185,185, 82,189, - 94, 79, 3, 32, 34,145,200,164, 84, 42,181, 66,161,208,196, 48, 76,188,209,104,252, 40, 41, 41,233,182,165, 79, 33, 62, 62, 62, -138, 81, 61,239, 21,148, 17, 88,152,190,134, 35,150,156,251,195,135, 15,155,216,217,217,189, 71, 8, 25,200,113, 92,211,252,252, -124,221, 23, 95,124,113,243,194,133, 11,121,117,235,214,125,163, 83,167, 78,228,214,173, 91,120,242,228, 9, 87, 80, 80,112,128, -162,168,207, 19, 19, 19,227,106, 88,150,168,246,237, 91,189,111,165, 68, 95,150, 67, 75,128, 35,132,144,219, 5, 5,228,119, 55, -183, 6,187,247,239,223,207,212,246, 9, 44, 32, 32,224, 88, 65, 65, 65,159,152,152,152,202,206, 21, 28,247,103, 94, 84,197,249, -245,231, 45, 62,111,215,165,227,187,151, 47, 92, 60,244,217,151,119,150,148,221, 55,233,109,251,209, 31,124,252,201,138, 61,223, -174,251,108,195,161,172, 31, 45, 73,103, 64, 64, 64, 67, 0,239,115, 28,215,156, 16,226,197,178,144, 18,194,101, 17, 66,162, 88, -150,141,100, 89,246,183, 91,183,110,169, 95,133, 39,218,178,139, 61, 19,134,177,101, 8,177,104,177,103,222, 33,224, 57,121, 78, -222,193,250,183,194,226, 25,184,205, 66,202,203,203,139,123,248,240,225, 51,141, 74,109, 80, 34,160,246,162,138, 89,218, 45,193, -157, 59,119,252,255,206, 12, 82,171,213, 63, 1,248,233, 69,114,150, 8,168, 31, 75, 94,181, 66,137, 64, 10,250, 39, 10, 73, 84, - 84, 84,225,186, 25,130, 82,103, 75, 64,211,105,150,254,182, 87,175, 94, 79, 13, 6,195, 25, 0,137, 0,108, 1,100, 25,141,198, - 19,233,233,233,169,174,174,174,129, 79,159, 62,157, 95,226, 68, 46, 73, 73, 73, 9,171,101, 89, 98, 1,236, 41,121,189, 80,132, -135,135,247, 85,169, 84, 17, 14, 14, 14,158, 90,173, 86,172,213,106,133,101,203,190, 76, 38, 75,183,148,203,198, 26, 59,104,146, -233, 96,103, 77,254,226,212, 56,186,227, 23, 77,225,157, 38,142,238,248,165, 6,105,123,212,170, 85,171, 93, 20, 69, 53, 96, 89, -214, 5,128, 53,199, 33,131,227,184, 12,134, 97, 18,111,223,190,173,126, 85, 42,154, 18, 1,213, 15, 60,120,240,224,193, 11,172, -138, 17, 19, 19, 67,248,108,251,255,195, 39, 95,155, 92,106,243,187, 39, 79,158,232, 0, 92, 41,121, 61,131, 18, 65,245,230,171, -126,238,106,181,250,133,136,248,146,152,172, 79,219,244,248,235,190,146,169, 25, 62,235,254, 86,205, 56,111,222,188, 25, 15, 32, -158, 47,161, 60,120,240,224,241,106,129,226,179,128, 7, 15, 30, 60,120,240,224,193,227,197,130, 0,168,112,138,235,154,244,173, - 18, 66,124,107,250,199,213,241,243,156, 60, 39,207,201,115,242,156, 60, 39,207,249,223,227,172,142,251,191, 18,219, 69,106, 56, -192,168,102,228,124, 0, 32,207,201,115,242,156, 60, 39,207,201,115,242,156,255,135,224,187, 8,121,240,224,193,131, 7, 15, 30, - 60,120,129,197,131, 7, 15, 30, 60,120,240,224,193, 11, 44, 30, 60,120,240,224,193,131, 7, 15, 94, 96,241,224,193,131, 7, 15, - 30, 60,120,240,224, 5, 22, 15, 30, 60,120,240,224,193,131,199, 43,131,191,117, 20, 33, 15, 30, 60,120,240,224,193,131,199,255, - 35,120, 7,139, 7, 15, 30, 60,120,240,224,193,227,239, 16, 88,132, 16,174,236, 59, 15, 30, 60,120,240,224,193,131,199, 63,137, -255,154, 22,225, 29, 44, 30, 60,120,240,224,193,131, 7, 15, 94, 96,241,224,193,131, 7, 15, 30, 60,120,252, 59, 4, 86,215, 18, - 75,174, 43,159, 37, 60,120,240,224,193,131, 7,143,151,128,255,148, 22, 41, 29, 69, 72, 8,225, 56,142, 35,252,245,229,193,131, - 7, 15, 30, 60,120,188, 20, 81,242, 31,210, 34,252, 52, 13, 60,120,240,224,193,131, 7, 15, 30, 47, 24,127,107, 12, 22, 33,196, -151,231,228, 57,121, 78,158,147,231,228, 57,121, 78,158,147, 23, 88, 60,120,240,224,193,131, 7, 15, 30, 60,120,129,197,131, 7, - 15, 30, 60,120,240,224,193, 11, 44, 30, 60,120,240,224,193,131, 7, 15, 94, 96,241,224,193,131, 7, 15, 30, 60,120,240,224, 5, - 22, 15, 30, 60,120,240,224,193,131,199, 75, 2, 1, 80,225, 72, 0,142,227,238, 88, 76, 82,139,209, 4,213,241,243,156, 60, 39, -207,201,115,242,156, 60, 39,207,249,223,227,172,142,187, 38,250,227,149, 22, 88,127,231, 60, 88,132, 16,223, 23,157, 81, 60, 39, -207,201,115,242,156, 60, 39,207,201,115,254,247, 56,255,107,224,187, 8,121,240,224,193,131, 7, 15, 30, 60,120,129,245,242, 65, - 8, 25, 78, 8, 57, 65, 8,185, 67, 8, 57, 73, 8, 25,254, 28, 92, 50, 66,200,236, 50,124,199, 9, 33,159, 17, 66, 36,124, 78, -191,210,101,128,230,115,129,199,171, 4,149, 74,213,196,199,199, 39, 92,165, 82, 53,225,115,131, 7,143,151, 15, 65,101, 59, 60, - 61, 61,175, 80, 20,213,144,162, 40,115,131, 82,182,113,169,240,157,227,184, 71, 81, 81, 81,237, 43,227,108,216,176, 97, 41, 39, - 69, 81, 32,132,128,162, 40, 24,141, 70, 43,154,166,243, 43,226,100, 24, 38,241,193,131, 7,129,175, 80,195,186,203,206,206,206, -184,113,227,198,111,253,253,253, 27,103,101,101, 21,142, 27, 55,238,117, 66, 72, 79,142,227,134,213,144,203,151, 16,178,179,117, -235,214, 7, 39, 77,154,180,223,199,199,199,170,176,176, 80,178,111,223, 62,215,205,155, 55, 95, 36,132,140,230, 56, 46,138, 47, -166,175, 14,220,220,220,252, 9, 33, 27,188,188,188, 2, 85, 42, 85, 40,128,143,213,106,117, 36,159, 51,255,232, 61, 56, 86, 44, - 22,191,225,229,229,213, 70,167,211,101, 63,122,244,232, 6,195, 48, 95,112, 28,151,242,130,248,109, 0,124, 33,145, 72,130, 60, - 61, 61,235,196,196,196, 36, 24, 12,134,235, 0, 22,115, 28,151,251,170,138,171,160,160,160, 75,203,150, 45,115,152, 51,103,206, - 37,149, 74,213, 81,173, 86, 71,243,165,133, 71,117,168, 91,183,174,109, 97, 97,225, 15, 20, 69,249, 75,165, 82, 87, 43, 43, 43, - 40,149,202, 20,137, 68,114, 83, 46,151,143, 57,118,236, 88, 14,159, 75, 47, 88, 96,209, 52,237,113,227,198, 13,103, 43, 43, 43, - 48, 12, 3,150,101,193,178, 44, 56,142, 43,125, 55,131,227, 56, 48, 12,131,110,221,186, 25,170,252, 51,129,160, 78,120,120,184, -179, 82,169, 44,253,206, 96, 48,192,207,207,143,141,136,136,112,150, 74,165,207, 28,175,215,235, 17, 16, 16,240,202, 44,150, 72, - 8, 25,234,224,224,160,127,250, 52,190,157, 86,103,104, 63,113,230,146, 47,222,123,171,139,205,213,171, 87,169, 55,223,124, 83, - 72, 8, 25,206,113,220, 78, 11,185,100,132,144,173,243,230,205, 91, 46, 16,201,157, 15,252,126, 69,240,205,150, 61, 9,190,205, - 26,144,169,147, 39,202,167, 76,153,114,195,219,219,251, 71, 66, 72, 39,142,227,116,124, 81,125, 37,174,191,160, 78,157, 58,191, - 6, 7, 7,187,167, 36, 39, 99,245,154, 53,109, 1,108, 4,208,150,207,157,127,236, 26,204, 94,180,104, 81,240, 7, 31,124, 0, -147,201, 4,141, 70,163,138,141,141,109, 62,111,222,188,183, 9, 33,109, 56,142,139,123, 78,126, 39, 47, 47,175,251, 83,167, 78, -181,111,211,166, 13, 40,138, 66, 78, 78,142,234,210,165, 75,109,183,110,221, 58,156, 16,226,205,113, 92,250,115,240, 83, 14, 14, - 14, 83, 0,116, 99, 89, 86, 2,224,122,118,118,246, 82,142,227, 12,207,147,110, 59, 59,187,221, 95,127,253,181,131, 68, 34,193, -182,109,219, 28, 6, 15, 30,124, 81,165, 82,117,226, 69, 22,143,170,224,232,232, 56, 54, 63, 63,255, 91,185, 92, 46,178,181,181, -133, 76, 38,131, 72, 36,130, 88, 44,174,107,103,103, 87, 87,169, 84,246, 25, 50,100,200,199, 63,253,244,211, 15,124,110,213, 28, -149,118, 17, 82, 20, 5,153, 76,134,125,251,246,225,208,161, 67, 56,126,252, 56,206,158, 61,139, 75,151, 46, 33, 44, 44, 12,183, -111,223,198,253,251,247, 17, 27, 27,139,132,132, 4,208, 52,109, 73,229, 2, 0, 56,114,228, 8, 66, 66, 66,112,235,214, 45, 16, - 66, 64, 8,129, 68, 34,193,153, 51,103,112,225,194, 5, 92,185,114, 5,161,161,161, 16,137, 68,207, 56,103,255, 8, 82, 22,113, -131,122, 18,174,162,119, 87, 7,236, 90,182,108,217,137, 34,157, 81,200,112, 68,151,146,109,204, 90,188,242,219,203, 25,105,105, - 23,126,254,249,231, 60, 0, 67,106,240, 79,159,180,105,211,230,136, 9, 98,151,225, 35, 71,141,218,176,106,241, 71,156,204,209, -116, 41, 34, 54,205,199,199,127,143,173,173,173,233,155,111,190,137, 6, 48,165, 38,201,111,221,186,117,124, 64, 64, 0, 23, 16, - 16,192,181,105,211, 38,189,107,215,174,130, 87,164, 97, 84, 17, 66,126, 34,132,236, 32,132,120,151,219,215, 68, 44, 22,255, 70, - 8,217, 70, 8,169,243,170,222, 44,238,238,238,222,195,134, 13,115,204, 76, 79,199,234, 53,107,204, 95, 7,190,140,238,194,128, -128,128,134, 29, 59,118, 60,212,177, 99,199,248,192,192, 64, 38, 48, 48,144,233,220,185,115,124,167, 78,157,214, 4, 4, 4,200, -158,227, 58,213, 33,132,244, 33,132,244,173,228,213,103,229,202,149, 13, 95, 6, 39, 33,164,190,139,139,203,178, 65,131, 6,225, -216,177, 99,152, 60,121,178,113,225,194,133,156, 80, 40,196,199, 31,127,108, 7,160,207, 11,200,218, 62,139, 22, 45,178,239,208, -161, 3,126,253,245, 87,204,159, 63, 95,115,252,248,113,248,251,251, 99,220,184,113,246, 0,122,215, 34, 79, 37, 37,221,254, 39, -105,154, 46, 28, 57,114,228,226,136,136,136,158,183,111,223, 14, 26, 53,106,212,155,214,214,214, 81,142,142,142,202,231, 73,116, -118,118,246,210, 37, 75,150,228, 91, 91, 91, 35, 62, 62, 30,139, 22, 45,114,116,115,115,187,192,119, 23, 86, 13,154,166, 13,132, - 16,206, 28,146, 81,221,246,127, 9, 14, 14, 14, 19,178,178,178,190,119,114,114, 18,213,175, 95, 31, 86, 86, 86, 16, 8, 4, 96, - 89, 22,133,133,133, 72, 76, 76,132, 94,175, 23,121,123,123,127, 63,105,210,164, 9,124,105,169,133,131, 69, 8,233,194,113,220, -133, 50,149, 65, 23,142,227, 46, 16, 66,192,178, 44,132, 66, 33,104,154,134, 64, 32,128, 80, 40,132, 80, 40,124,230,179,249, 85, -145, 16, 42, 63,194,128,162, 40,146,159,159, 15, 27, 27, 27, 88, 91, 91,195,198,198,166,212, 9, 51, 26,141,127,225,100, 24, 6, - 20, 69,113, 85,113,190, 8,148,229, 28, 52,124, 33,246,159,225, 8, 0,236, 63,179, 0,101,223, 83, 50, 23, 70,119,232,208,161, -206, 39, 75,183, 5,103,102,230,164,249,120, 56,153,134,124,208,165,158, 56, 35, 53,195,161, 65,131,126, 0,210,106,144,206,142, -227,199,143, 63,112,224,220, 67,133, 68, 34, 22,211, 20,232, 38,141, 26, 10,221,173, 27,219, 59,189,222, 70,252, 36, 46,238,226, -240,225,195,199, 79,156, 56,209, 1,192, 10, 75,207,157,227, 56,183, 83,167, 78, 65, 32, 16,160,103,207,158,118, 37, 46,165,201, -146,115,255, 59,242,179, 12,230,165,166,166,190,175,213,106, 17, 24, 24,248, 22, 33,164, 27,199,113, 55, 9, 33, 45,250,247,239, -127,113,255,254,253, 86, 17, 17, 17,104,219,182,173, 12,192,224,151,152,206,191, 64,165, 82,157, 2,240, 26, 77,211,208,107,181, -250,149,171, 86,149,221, 29,198,113, 28,243, 79,166,179, 85,171, 86,222,114,185,252,202,170, 85,171,172,125,124,124,136, 80, 40, -132,201,100, 66, 76, 76, 76,157, 93,187,118,125, 20, 26, 26,218, 59, 32, 32,192, 39, 60, 60,220, 88,139,115,111,126,241,226,197, -194, 70,141, 26, 49, 21,237, 44, 42, 42,162, 27, 53,106,212, 21,192,163,151,192,153,152,154,154, 58,224,181,215, 94, 27,159,146, -146,114,223,100, 50,205, 2,224,235,232,232, 24,241,238,187,239, 66, 38,147,117, 3,176,238,121,174,187,179,179,115,255,246,237, -219, 99,195,134, 13,248,234,171,175,122,114, 28,247, 7, 33,164, 71, 94, 94,222,153,183,222,122, 11,182,182,182, 3, 0,108,183, -148,147, 16,226, 35,145, 72,182,255,244,211, 79,202, 70,141, 26, 53, 18,137, 68, 84,163, 70,141,144,149,149, 5,173, 86, 43, 89, -186,116,105, 11,169, 84, 26,185,110,221,186,237, 0,222,169,101,249,108,210,166, 77,155,239,167, 77,155,102,117,244,232, 81,120, -121,121, 33, 47, 47, 15,163, 71,143,118, 94,191,126,253,121,149, 74,213,213,236,100,253,211,247, 17, 33, 36, 23,128, 53, 0,219, -154,116,175, 86,145,159,185, 0, 74,197,142, 80, 40,132, 68, 34,129, 84, 42,133, 84, 42,197,163, 71,143,126,161,105,122, 20, 0, -163, 37,156,228,207,134,171, 37, 33,228, 6, 77,211, 85,110,115, 28,199,190,236,122,137, 16,226, 65, 8, 89, 11,160, 91,137, 73, -114,193,217,217,249,147,148,148,148,167,150,114,170, 84, 42,135,130,130,130,117, 42,149, 10,206,206,206,102,177,137,192,192, 64, -104,181, 90,220,189,123, 23, 44,203, 34, 54, 54, 22,214,214,214,104,209,162,197,186, 69,139, 22, 29, 88,176, 96, 65,230,223,117, -238,149,105,145,127,187,131,117,222,124, 50, 37,223,157, 55,239,100, 24,230, 47,162,167, 34,145, 37, 16, 8, 64, 8, 1,199,113, -164,154, 12,164,244,122,125,169,184,178,182,182, 46, 21,103, 38,147,169, 66,129, 85, 91,216,217,217,157, 36,132,244,170,233,239, -246,239, 92, 88,213,238,216,180,180, 52, 67,255,142, 77, 36,162,130,172,204,225, 29,155,218,248,121,122,248,186,168,220, 7, 23, - 21, 21,133, 2, 72,174,137, 33,226,227,227, 99,149,153,154,156,241,193,148,149,139,103, 46,221,188,164,181,151,139,117,231,102, -245,221, 58,182,244,105,224,192,153, 40,185, 92,222, 28,128,123, 77,207,193,198,198, 6,103,207,158,125,213,202,154,157, 70,163, - 65, 86, 86, 22, 54,111,222,108,237,224,224,112,142, 16, 50,162,127,255,254,151, 15, 28, 56, 96,149,155,155, 11,131,193, 0, 0, -154, 87,240, 62, 89, 98,103,103,167, 31, 48, 96, 0,246,254,252,179,152,101,217, 66, 0, 5, 0,146, 57,142,155,244, 79, 39, 70, - 42,149,206, 88,186,116,169,181,143,143, 15,201,200,200,128, 90,173, 70, 70, 70, 6, 28, 29, 29, 49,115,230, 76,105,227,198,141, -221,197, 98,241,220,218,214,115,149, 9, 33, 0,144,203,229, 12,106, 62, 56,166, 66, 78,147,201, 68,130,130,130, 62,243,245,245, -221,105, 9, 39,199,113, 38,142,227,142, 36, 36, 36,188, 97, 52, 26,167,115, 28,103, 2, 16,121,255,254,125,141, 64, 32, 64,131, - 6, 13,130,158, 55,111,155, 52,105,210, 78, 40, 20,226,250,245,235, 58, 0,230,202,253,194,173, 91,183,116, 2,129, 0,117,234, -212,105, 87, 19,231, 74, 34,145,108,127,248,240, 97,211, 55,223,124,179,113, 94, 94, 30,165, 82,169, 96,190,102,241,241,241,184, -117,235, 22,198,140, 25,227,204, 48, 76,123, 75,197, 84,151, 46, 93, 18, 6, 14, 28,152,249,238,187,239,102,190,243,206, 59,153, -125,251,246,189,177,109,219, 54,135,146, 60,197,156, 57,115, 16, 23, 23, 7, 91, 91, 91,140, 26, 53,202, 69, 38,147,237,126, 5, -238,161, 28,161, 80,200,217,218,218,218, 60, 39,143, 4,128, 24,128, 88, 32, 16,136, 37, 18,137, 88, 42,149,138, 37, 18,137, 88, - 34,145,136,255,235,142, 8, 33,196,157, 16, 18, 37, 20, 10,251,218,218,218,218,216,219,219, 91,213,173, 91,247,117, 79, 79,207, -187,195,135, 15,175,111, 41,143, 86,171,221, 41,147,201,132, 78, 78, 78, 0,128, 94,189,122, 97,247,238,221,120,255,253,247,217, - 94,189,122,177,131, 6, 13,130,139,139, 11, 0, 32, 50, 50, 18, 98,177, 88,104,111,111,191,243,111, 62,189, 74,181,200,191,214, -193, 42,119,114,207, 8, 36,150,101, 65,211,116,149,206, 85, 89, 7,171,186,238, 60, 66, 8, 24,134,129,171,171, 43,228,114, 57, -228,114, 57,170, 18,115, 28,199,213,186,139,176,113,227,198,221,229,114,121, 39, 66,200, 91, 28,199,157,177,244,119,197, 14,214, -130,202,118,255, 58,117,234,212, 62,215,174, 93,211,182,243,107,200, 74,212, 9,153,114, 59, 71, 63,226,228,220,115,226,135,227, -174, 2,248,169, 6, 73, 84,107,181, 90, 73,125, 87, 74,163,206,205,211, 55,180,182,177,109,104,163,148,215,119,180,113,176,147, -138, 41,133,139,179,202,104, 52,230, 0, 80, 87, 71,212,186,117,235,120,150,101,235,148, 52,190,122, 66,136,192,214,214, 22, 54, - 54, 54,134,236,236,108,109, 64, 64, 0,196, 98,113,134, 72, 36,114, 59,127,254,188,201,146,196,181,105,211, 38,149, 97, 24,231, -170,142, 17,137, 68,105, 87,175, 94,117,177,240,124, 63,111,217,178,101,151,141, 27, 55, 58,121,121,121, 97,243,230,205,214, 7, - 14, 28,216,190,123,247,110,228,228,228,224,241,227,199, 24, 61,122,116, 30,128,149,175,218, 77, 98,111,111,127,105,224,192,129, -248,225,135, 31,184,146,135, 8, 5, 33,196,207,198,198,230, 65, 84, 84,148,225,159, 78, 15, 69, 81,175, 55,109,218,148,228,230, -230,130,227, 56,208, 52,253,204,107,230,204,153,178, 49, 99,198,204,107,215,174,221, 76,161, 80,152,103, 50,153,246, 22, 20, 20, -124,121,231,206,157, 87, 42, 88,181, 83,167, 78,159, 38, 36, 36,244,171, 87,175,222,111,207,241,180,207,181,110,221, 90,207,113, -156,140,166,105,225, 11,104,192,232,146,250, 72, 91, 34,224,192,113,156, 41, 32, 32, 64, 91,210,184,215,164, 59,120,202,254,253, -251,173,220,220,220,100, 26,141, 6,113,113,113, 8, 8, 8, 64,126,126, 62, 10, 11, 11, 81, 84, 84, 4,131,193,128,220,220, 92, - 91,134, 97,244, 22,150,197,221,187,118,237,242,240,240,240,128,209,104,132,209,104, 68, 97, 97, 33, 46, 92,184, 0,157, 78, 7, -163,209,136,166, 77,155, 98,249,242,229,218,143, 63,254, 88,250,243,207, 63,167,105, 52,154,161, 47,251, 90,211, 52, 13,137, 68, - 2,161, 80,152, 83,183,110, 93, 80, 20, 37,125,242,228, 73,109, 98, 75,173, 1,228, 9, 4, 2,177, 84, 42,133, 68, 34, 41,117, -176,238,220,185,179,175, 50,247,170,170,242, 83,147,237, 87, 64, 96,173, 21, 10,133, 18, 7, 7, 7,145,249, 59,131,193, 32,178, -179,179, 67,189,122,245, 54,192,194,110,114, 66, 72, 43, 7, 7, 7, 16, 66, 32, 18,137,240,225,135, 31,226,198,141, 27,135, 18, - 19, 19,135,167,165,165,161,160,160, 96,167,181,181,245,219,105,105,105, 96, 24, 6, 79,158, 60, 65,203,150, 45, 91,253, 67,167, -249, 23, 45,242,175, 22, 88,102,197, 88, 70, 57,154, 29,169,106,157,171,170,186, 8,203,195, 96, 48, 40,251,245,235,199,154,197, -152,121, 20, 33, 0,194, 48, 12, 68, 34,209, 51,156, 37, 2,171, 86, 5, 92, 34,145,160, 79,159, 62, 82,185, 92,126,184, 68,100, - 89,100,233, 84,228, 96, 53,117,149,214, 19, 82,194,125,253,186,119,106, 53,110,234, 76, 97,215,174, 93,127, 59,124,248,176,191, - 99,199,238,125,115,114,114,194, 39,142, 24,121,113,223,190,125,249,150, 6,184,151,224,242,161, 67,135,220,102, 76,158, 40,234, -210,165,203, 47, 35, 90, 76, 19,184,137, 89, 43,123,137,136,150,211, 2, 74, 82,167,254, 27,127, 92, 8, 73, 6, 16, 98, 65, 37, -225,118,230,204, 25,216,218,218, 2,128, 88,175,215,195,214,214, 22,155, 55,111,150, 90, 91, 91,195,218,218, 26,237,219,183,183, - 19,137, 68, 85,118, 23,150, 5,195, 48,206,231,207,159,135, 82,169, 68, 97, 97, 33,116, 58, 29, 76, 38, 19, 56,142,131, 64, 32, -128, 68, 34, 65,215,174, 93,157,107, 80,145,197, 17, 66, 58, 79,156, 56, 49,100,227,198,141, 78,158,158,158, 88,188,120, 49, 50, - 51, 51, 17, 31, 31,143,161, 67,135,230, 61,122,244,168, 27,199,113,247, 95,165, 27,164, 69,139, 22,220,229,203,151,113,252,248, -113,188,249,230,155,228,200,145, 35, 6,134, 97, 68, 73, 73, 73,183, 95, 86,154, 76, 38,147,149, 88, 44,134,209,104,132, 64, 32, - 40,237,194, 55, 11, 44,119,119,119,156, 62,125, 90, 80, 84, 84, 36,200,204,204,148,111,221,186,117,114, 88, 88,152, 27,106, 22, - 35,248,194,177,105,211,166,122, 31,126,248, 97,188, 64, 32,224,222,120,227,141, 97, 79,159, 62, 29,224,230,230,246,199,185,115, -231, 86, 1,168,113,172,144,175,175,111, 24, 77,211, 30, 0, 68,135, 15, 31, 54, 50, 12, 35,106,209,162, 69, 42,199,113, 48,191, - 74,242, 43, 49, 58, 58, 58,208, 18, 62,169, 84, 42,250,238,187,239,140, 90,173, 86,228,231,231,151, 90,134, 71,244,235,175,191, - 26,141, 70,163,168,105,211,166, 97, 22,142,108,238, 26, 20, 20, 84, 47, 39, 39, 7, 54, 54, 54, 40, 40, 40, 64, 88, 88, 24,124, -124,124,160, 86,171, 65, 81, 20,108,109,109,177,105,211,166, 34, 66, 72,150, 37,231,156,149,149, 53,116,234,212,169, 23,247,237, -219,231, 72,211, 52,158, 62,125,138,172,172, 44,216,218,218, 98,215,174, 93,168, 95,191, 62,206,156, 57,147,197, 48,204,216, 31, -126,248, 97,158, 70,163, 25,250,178, 3,221, 41,138, 42, 21, 66,101, 4,145,182,109,219,182,184,124,249,242,158,154,136, 34,142, -227,244,230,110,193,178, 93,131, 18,137, 4, 52, 77,215,184,203,131, 97, 24, 17, 33,164,149,185, 65,175,110,251, 21, 64, 23,133, - 66, 33, 42,255,101,118,118,182,168,105,211,166,157,106,208, 62, 58,200,100,197,161,154, 93,186,116, 65, 90, 90, 26,211,168, 81, -163,247, 6, 15, 30,108, 4,128,143, 62,250,232,189,244,244,116,173,209,104,164, 5, 2, 1,210,211,211,209,176, 97, 67,135,127, - 64, 64,254, 69,139,252,171, 5, 22,199,113,132, 16,194,149,125, 47,235, 96, 85,231, 92,153,247,153,133, 82, 53, 55, 90, 78,120, -120,184, 66,161, 80,148,126,103, 52, 26,209,170, 85, 43,150,101, 89, 82,254,191,158,199,193,146, 72, 36,176,181,181,197,144, 33, - 67,228, 73, 73, 73,219, 1,120,212,198,193,106,234, 42,173,231,238,228,114,229,171, 47, 23,185,197, 30,223,134,239,215,173, 52, -221,184,113,227,144,155,155,219,187, 0,242, 92, 29,208, 55, 37, 19,195, 56,142,219, 93,131, 66, 68, 1,216,119,245,234,213,155, -189,122,245,186,250,248,241, 99,187,167, 15, 31, 94,178,214, 23, 20, 40,235, 52, 48,137,156, 93,250,107, 12, 70,193,192,129, 3, - 93, 0,172,183,128, 15, 44,203,226,216,177, 99,176,178,178,130,181,181, 53,108,109,109, 97, 22, 87,181,197,163, 71,143,144,152, -152, 8,133, 66, 1,133, 66, 1,165, 82, 9,165, 82, 9,177, 88,252,140,251, 88, 3,145, 21, 77, 8,249,228,224,193,131,123,131, -131,131,145,157,157,141,194,194, 66, 44, 88,176, 0,113,113,113, 83, 57,142,187,249, 42,221, 28,126,126,126,220,213,171, 87,113, -233,210, 37, 20, 22, 22, 98,195,134, 13,112,115,115,235, 14, 96,254,203, 76, 23,203,178, 34,243, 84, 39, 20, 69,253,197,193, 50, -139, 45,153, 76, 6, 71, 71, 71,204,153, 51, 71,212,191,127,255,126, 47, 51,205, 43, 86,172,104,188,118,237,218,173, 59,118,236, - 56, 62,116,232,208,159,239,220,185, 51,202,198,198,230,246,217,179,103,151, 74, 36, 18,182, 86,149,151, 64,224,113,243,230,205, -178, 34, 95,200, 48,140,156, 97, 24,152, 76, 38, 24,141, 70, 20, 21, 21,161,103,207,158, 22,243,221,184,113, 67, 14, 0,243,231, -207, 23, 2,144,179, 44,139,178,124, 26,141, 70,216,163, 71, 15, 15, 11,147,168,178,179,179, 19,198,199,199,195,100, 50,193,223, -223, 31,155, 54,109,194,224,193,131,209,188,121,115,228,231,231, 35, 42, 42, 10,219,183,111,183, 19,137, 68,239, 90,100,123,171, -213,209, 42,149,170,211,123,239,189,119,101,239,222,189,118,245,234,213, 67, 98, 98, 34,212,106, 53, 60, 61, 61,177,126,253,250, - 66,142,227, 58,148,136,170, 95, 95,246, 61, 68, 81, 84,169, 8,170,232, 85,203, 7, 12,107,169, 84,154, 87,210, 53, 8,137, 68, -130,208,208,208, 26,187, 87,101,234,165,155, 53,217,126,153, 48,215,193, 70,227,179,167,169, 80, 40,224,229,229,101, 49,143, 66, -161, 32,230, 54,214,104, 52, 34, 57, 57,153,185,115,231, 14,227,239,239, 15, 0,112,115,115, 99,174, 93,187,198,232,116, 58,218, -202,202, 10, 0, 96,107,107,251,183,138,204,170,180,200,191,218,193, 42,227,146,132,148,119,176,204,130,167,170, 32,119,129, 64, - 96,169,192, 2, 77,211, 56,113,226, 4,148, 74, 37,172,172,172,224,237,237,109,206,220, 10, 93,177,218, 10, 44,177, 88, 12, 27, - 27, 27,156, 58,117, 74, 27, 25, 25,249,161,165,191, 43,235, 96,153,197,213,170, 21,193,110,153,247,174, 34, 81,157,140,152,168, -164,211, 28,199,237, 0,176, 3, 0,144,178,136,131,235, 2,139,197, 85, 51, 39,121,203,182, 94,174,191,118,123,237, 13,247, 1, - 35, 38, 82, 31,127,252,113,187,145, 35, 71,102, 13, 27, 54,108,138, 76, 38,107,110, 50,153,178,207, 92,184,240,100,208,160, 65, - 14,185,185,185, 35, 57,142,171, 54, 38,137,166,233,228, 94,189,122,213, 1, 0, 43, 43, 43,253,143, 63,254, 40,182,181,181,197, - 7, 31,124,160, 77, 73, 73,145,150,228, 71,182,165,238, 85, 73, 99,147, 54,118,236, 88,231,106,242, 56,173,134, 79, 39,173,250, -245,235,247,253,190,125,251,144,153,153,137,194,194, 66,136, 68, 34,172, 92,185, 18,241,241,241,235, 8, 33,119, 94,149,202,172, -101,203,150,220,245,235,215,113,251,246,109,232,116, 58,124,248,225,135,101, 99, 12,123,189,228,228,145,164,164, 36,236,218,181, - 11, 12,195, 96,232,208,161,168, 95,191,126,169,192, 74, 73, 73,193,143, 63,254, 8,134, 97, 48,118,236, 88,212,173, 91, 23, 70, -163, 81,218,181,107, 87,129,165, 93,196, 47, 26,211,166, 77,139, 61,116,232,208,241,132,132,132,222, 95,125,245, 85, 23, 66, 8, - 59,115,230,204,229,214,214,214,204,243,240,102,231,230,227,193,195,167, 48,153, 76, 21,190,156, 28,237,107,204, 23, 19, 23, 15, -147,137, 41,229, 96,152, 63,249, 28,236,107,196,151,148,149,149,229, 69,211,180,232,225,195,135,168, 87,175, 30,218,180,105,131, -101,203,150, 33, 61, 61, 29, 38,147, 9,206,206,206,172,209,104,140,208,235,245, 33,150,146, 38, 39, 39, 23,101,102,102, 22,142, - 29, 59,214,246,251,239,191, 39, 94, 94, 94,120,252,248, 49,132, 66, 33,172,172,172,138,238,223,191,255,202, 76,205, 80,222,185, - 50,191, 74,156, 43, 10,192,111, 0,106, 36,176, 57,142,211,215,169, 83,167,212,193,170,173,123,245,119,129,166,105, 3,203,178, - 66, 0, 82,142,227,116,213,109,215,132,219,203,203,235,130,181,181,117,191,251,247,239, 63,227, 98, 13, 25, 50,196,224,233,233, -121,209, 82, 30,107,107,235,108,177, 88,236,160,213,106,113,245,234, 85,120,123,123,139,114,115,115,131, 9, 33,179, 75, 30, 46, -131, 83, 83, 83, 69,238,238,197, 33,192, 77,155, 54, 69,110,110,110,118,157, 58,127,251, 32,239,191,104,145,127,189,192,226, 56, -174, 75,217,247, 50, 5,217,162,238,193, 50, 14, 86,181, 78,139, 70,163, 41,117, 68, 20, 10, 5, 88,150,125,166, 59,178,188,192, - 42, 63,138,176, 38, 55,246,185,115,231,180, 91,182,108, 25,200,113,220, 73, 75,127, 87,214,193,114,117,114, 58, 97, 22, 87,183, - 46,157,198,254,200,180, 36, 2,246,227,170, 28,175,170,224,227,164,240,115,117,113, 60,191,122,229,114,235,164,235,199,241,243, -150,213,220,173, 27, 55, 90, 79,184,113,227,221, 9, 19, 38,216,163, 56,222, 42, 9,192, 37, 0,235, 44, 17, 87, 0,112,237,218, -181,186,230,207,109,218,180, 49, 90, 91, 91, 67,169, 84, 34, 61, 61, 93,164, 84, 42,165,231,207,159,175,113,172,195,245,235,215, - 93, 94,100, 65, 35,132, 52,121,243,205, 55, 67,126,249,229, 23, 69, 78, 78, 14,158, 60,121,130,207, 62,251, 12,223,126,251, 45, -172,173,173,113,236,216, 49,171,126,253,250,157, 39,132,180,127,217,147,171,182,106,213,138, 11, 13, 13,197,147, 39, 79, 96, 50, -153, 48, 96,192, 0,188, 74, 79, 83, 44,203,114, 83,167, 78,197,247,223,127, 15,138,162, 48, 98,196, 8,228,229,229,149,238,183, -183,183,175,104, 31,141,106, 70,148,254,173, 21,141, 64,192, 93,184,112,225,171, 46, 93,186, 32, 33, 33,161,119, 64, 64,192, 55, -163, 70,141, 74,122, 94, 94, 59, 27, 43,180,244,105, 4,157, 78, 7,157, 78, 7,149, 74,133,252,252,124,196,198,198, 66,167,211, -193,197,217,182,198,124,173,154, 55,134, 94,175,135, 78,167,131,179,179, 51, 10, 11, 11,241,248,241, 99,232,116, 58, 56, 57,217, -213,132,238,194,165, 75,151,234,245,236,217,179,105, 84, 84, 20, 66, 66, 66,160,215,235,209,170, 85, 43,196,196,196,160, 93,187, -118,200,203,203,187, 30, 26, 26,122,164, 6,247, 81,157,215, 95,127,253,220,158, 61,123, 28,118,239,222,173,127,231,157,119,196, -139, 23, 47, 38,214,214,214, 72, 77, 77,197, 43, 22, 50,244, 23, 97, 21, 22, 22,182, 79, 36, 18,113, 0,106,229, 54,153,145,144, -144, 32,105,209,162,133, 78, 34,145,136,175, 92,185,178,167,182,238,213,223,242,244,243,156, 35, 19,171, 66,227,198,141,167,122, -120,120,244,244,247,247, 71, 84, 84,148, 72, 34,145, 96,216,176, 97,134, 62,125,250, 24, 4, 2,129,197, 3,110,164, 82,233, 61, - 43, 43,171,206, 58,157, 14,122,189, 30,103,206,156,129,189,189,253,103,253,250,245,251, 36, 57, 57, 25,106,181, 90, 44,145, 72, - 74, 93,242,110,221,186, 33, 43, 43,235,222,223,157,119,149,105,145,127,187,131, 85,161, 24, 42,235, 96, 85, 55,146,208, 18,129, - 69, 81, 20,244,122, 61,228,114,121,169,192, 42, 59, 83,124,109, 56, 43,195,205,155, 55,175,196,197,197,173,226, 56,238,247,154, -252,206,236, 96,121, 58,219, 52,108, 93,207,170,137,250,250,239,120,112, 43, 12,251, 34, 82,147, 10,140,250,142, 15, 82,180, 79, - 43,115,188,170, 66, 19,103,133,175,187,139,195,249,213, 43,151, 91,103,222,187,138,135,183,195,240,251,245,196,112, 29,199,197, - 0,248,242, 69, 94, 84,115,223,250, 43, 86,209, 78, 61,112,224,128, 34, 39, 39, 7,113,113,113, 24, 58,116,104,206,147, 39, 79, - 38, 14, 24, 48,224,219,147, 39, 79,218,217,217,217,225,212,169, 83, 86,117,234,212, 9, 6,208,239, 37, 86,142, 28,195, 48,200, -204, 44, 30,141,220,161, 67, 7,188,106, 86,117, 88, 88,152,232,205, 55,223,252, 3, 64,247,123,247,238,129,101,217, 43,225,225, -225, 29,204,251,171,218,103,137,126,203,207,207, 23, 90, 89, 89, 85,216, 88,137, 68, 34, 81, 77, 29,135,178,156,151, 47, 95, 94, -190,106,213,170, 67,211,167, 79,127,248,156,156, 21, 58, 88,253,250,245,131, 86,103, 68, 98,106, 46, 76, 38, 19,138,244,169,207, -229, 96,245,235,215, 15, 26,173, 30,241,201, 89, 48,153, 76, 40,208,214,200, 40, 89, 63,100,200,144,129,151, 47, 95,206,106,218, -180,169,125,104,104, 40,210,210,210, 96, 52, 26,209,189,123,119, 72, 36,146,167,193,193,193, 34, 88, 16, 6, 80, 82, 54,229,175, -189,246,218,201,189,123,247,186, 94,185,114, 5,122,189,158, 13, 11, 11,123, 60,110,220, 56,235, 49, 99,198, 56, 20,103,227, 43, -119,223, 67, 34,145,224,222,189,123,102, 97, 53,226, 69, 9, 33,179,131,245,255,132,221,187,119, 39,109,219,182,205,199,205,205, -109,237,176, 97,195,186,169, 84, 42, 74, 44, 22, 95, 16, 8, 4,159, 0,120, 90,131,188, 27,101,103,103, 23, 75,211, 52,157,148, -148,132,135, 15, 31,130,166,105,112, 28, 39,214,104, 52,112,113,113, 41,157,219,114,200,144, 33,240,240,240, 96, 98, 98, 98, 70, -129,199,139, 17, 88,102, 44, 89,178, 4, 91,182,108,193, 71, 31,125, 84,229,113, 71,142, 28, 1,202,117, 17,150, 95,109,219, 60, -138,112,225,194,133,207,252,206,220, 21, 56,113,226,196,103, 56, 15, 31, 62,252,151, 46, 66, 75, 87,240,142,141,141,181, 88, 1, -151,229, 52, 59, 82,177,105,185,143, 90,168,172, 46,110, 63,242, 71,167,199, 89,154, 71,133, 70, 67,143,242,226,170, 42, 7,171, - 44,103, 51, 87,101, 51, 15,103,135, 11,171, 86, 46,183, 49,187, 97,123, 35, 82,114, 97,226, 62,170, 97,227, 95,237,185, 11,133, -194,228,246,237,219,215, 1, 44,235, 22,252,167, 86, 89,215,233,116,184,118,237, 26, 0, 96,244,232,209, 57, 79,158, 60,233,204, -113,220, 93, 66,200,189, 55,222,120,227,194,137, 19, 39,236, 74,158,190, 51, 95,102, 58,129,226, 17,173, 2,129, 0, 94, 94, 94, - 53, 22, 87,255, 84, 58,147,147,147, 63, 26, 63,126,252, 22,157, 78, 39, 40, 44, 44,252,200,210,125,213,165,115,255,254,253, 15, -189,188,188,186,160,242,105, 19, 88, 0, 87,159,135,115,237,218,181, 0,208,244,121, 56, 43,115,176,246,237,219, 7,134, 97,224, -225, 98, 3,157, 78,135,178,241,158,150,112,150,119,176,126,254,249,103,176, 44,139,186,110,246,208,233,116,149,198, 30, 86,196, -201,113,156,142, 16, 50,170,125,251,246, 59,151, 46, 93,250,200,219,219,187, 78,251,246,237,237,178,178,178,210,110,222,188,249, -100,203,150, 45, 74,147,201, 52,170,178,110,162,242,156, 14, 14, 14,171,119,236,216,225,113,239,222, 61, 36, 37, 37, 97,205,154, - 53, 79,211,211,211,251, 8, 4, 2,201, 55,223,124,115,190,111,223,190, 46, 38,147, 73,247, 42,148, 79, 51,212,106,245, 17, 0, -194,154, 10, 43, 75,210,121,227,198,141,159, 75,184,127,183,132,251,159, 58,247,231, 29,153, 88, 93, 58, 71,141, 26,149,136,114, -115,166,213, 52,157,167, 78,157,122,242,254,251,239, 47,241,245,245, 93,168, 84, 42, 17, 29, 29, 93, 58, 45,146,249, 1,157, 16, -130, 65,131, 6, 97,194,132, 9, 56,117,234,212,146,129, 3, 7, 62,249,187,243,243,255, 70, 96, 49, 12,147,240,228,201, 19,183, - 29, 59,118,208,132, 16,236,218,181, 11,229, 3,107,205,239, 0,112,237,218, 53, 19,199,113,177, 85,253, 25,195, 48, 9, 97, 97, - 97, 46,219,182,109, 19,202,100, 50, 72, 36, 18,168,213,106,176, 44,203,166,166,166, 82,123,246,236,121, 38, 88,247,234,213,171, - 38,131,193, 16,255, 79,102, 72, 89, 71,234,182, 58,191,179,167,187,204,221, 90,173, 77,123,192,113,198,234,142,175, 12, 10, 43, -235,229,171, 86, 46,183, 53,139,171,125, 17, 41, 57, 90, 29,211,237, 94,122,209,173, 23,157,254,203,151, 47,215,125, 69,203,218, -130, 46, 93,186,176, 0, 28, 1,204,227,138,157, 59,148,136,172,182, 94, 94, 94,211, 1,200, 0, 44,120, 89, 9, 36,132,112, 44, -203,150, 58,167,175,114,144,101,120,120,248, 35, 0, 61,106,186,175, 58, 12, 28, 56, 48, 14, 64,220,139, 76,235,223,193,105, 70, - 86, 78, 30, 98, 31, 39,149, 44,229,197,128,121,154, 82, 38,126,202,136,172,188,204, 26, 59, 88,177,143, 19,193,178, 92, 49, 31, -147, 84, 26,228,110, 50,153,144,145, 83,179,105,218, 56,142,139, 34,132,180,155, 53,107,214, 20, 0, 29, 1,212, 5, 16,143,226, - 48,128,245,150,198,224, 8,133,194,142,107,215,174,237, 67, 81, 20,117,237,218, 53,221,202,149, 43, 19,210,211,211,251,115, 28, - 23, 15, 0, 42,149,170,235,225,195,135,119,191, 10, 83, 50,148,195,136,127, 41,119,173,241,111, 25,153,184,119,239,222, 69, 19, - 39, 78, 20, 4, 5, 5,205,109,221,186, 53,245,248,241, 99,164,165,165,149, 62, 92,190,254,250,235,168, 87,175, 30,251,251,239, -191, 47,123,251,237,183, 23,241,114,233, 5, 10,172,140,140,140,215, 71,140, 24,113,154,162,168, 6,149, 45,238, 92,214, 93, 98, - 89,246, 73,106,106,106,149,203, 72,100,100,100,188,190, 96,193,130,211, 2,129,160, 65,153,197,156,117,153,153,153, 19, 7, 13, - 26,180, 81, 40, 20, 74,202,186, 93, 44,203, 62, 77, 78, 78,254, 71, 3,138,203, 59, 82,177, 73,154,164,154, 28, 95,161,192, 18, -163, 81,194,181, 99,120,120, 59, 28,251, 34, 82,178,243,245, 76,215,232,244,194,255, 43,229,207,113, 92, 26,128,137,149,236,123, - 8,224,163, 87, 32,141,255,153,209, 43,255, 15, 48,153, 76,137, 61,187,119, 69,249,105, 25,202,111, 51, 12,147,104, 41, 95,143, -110, 93, 42,229, 49,127,182,148,175,172,147,133,226,213, 24, 86,212,246, 92,105,154,158, 30, 20, 20, 68, 79,159, 62, 61,245,248, -241,227,127,100,103,103, 79,227, 56,174,168,140, 83, 20, 13, 32,128, 47, 21,175, 76,125,247,175, 24,153,184,113,227,198,249,159, -125,246,217,118,149, 74,181,171, 99,199,142, 77, 61, 61, 61,173,173,172,172,144,151,151,151,159,149,149,245,224,216,177, 99, 67, - 71,140, 24,241,136,191,162,181, 47, 8,127,219, 11,128,239,191,142, 51,121, 33, 55,176, 7,184,154,188, 87,199,217,196, 69,209, -165, 77, 93,235,240, 22, 42,171,208,166,206, 10,159,255,171,252,228, 57,121, 78,158,243,185, 57, 1,212, 21,139,197,191, 10, 4, -130,142,124,126,242,156,127, 23,231,192,129, 3,233,129, 3, 7,210, 47, 43,157,213,188, 90,115, 28,215,183,228,221,252,185,103, -153,239,240,170,189, 4,188,196, 44, 7,215, 5,164,252, 26,132,213,189, 87,135, 7, 41, 5, 23,248,167, 75, 30, 60,120, 60,199, -131,112, 60,128,254,124, 78,240,248, 59,177,127,255,126,230, 21, 78,158, 19, 33,228, 40,199,113,253, 0,192,252,185,236,119,175, - 26, 40,190, 72,241,224,193,131, 7, 15, 30, 60,120,188, 88, 16, 0,190,149, 60, 49, 89, 28, 35, 68, 8,241,173,197, 19,217, 29, -158,147,231,228, 57,121, 78,158,147,231,228, 57,255,191, 56,171,227,174,228,247,125,171,113,176,142,189,114, 2,235,239,156,152, -238,159, 30, 18,204,115,242,156, 60, 39,207,201,115,242,156, 60,231,191,147,179, 26,252,235, 4, 22, 31,131,197,131, 7, 15, 30, - 60,120,240,120,213,161,153, 61,123,246, 92, 66,200, 81, 0,152, 61,123,246,220, 87, 61,193,188,192,226,193,131, 7,143, 50, 80, -169, 84,111, 2, 88,132,226, 16,138, 96,181, 90,253, 51,159, 43, 60,254, 75,112,114,114, 82, 56, 56, 56,252, 65, 81, 84, 61,224, -217, 41,151, 42, 90,255,151,101,217,228,172,172,172, 94, 41, 41, 41, 25,255, 36,103, 57, 92, 9, 14, 14, 46, 10, 14, 14, 54, 7, -180,167,163,184, 23,174, 95,201,231,127,191,192,154,221,171, 65, 39,149,187,251,158,156,204,204, 8, 93, 81,254,152,101,127, 36, -101,213,230,143, 9, 33, 14, 98,177,248, 61,133, 66,209,147,227,184, 70, 52, 77,223,207,205,205, 61, 99, 52, 26,247,114, 28, 87, -192,223, 2, 60, 94, 54, 90,181,106,213, 66, 44, 22,127, 70, 8,105,107, 50,153, 60,132, 66,161, 26,192,117,157, 78,183, 50, 34, - 34, 34,130,207,161,255, 6, 8, 33,148,155,155,219, 58, 91, 91,219,160,156,156,156,161, 0,230, 70, 71, 71,251, 81, 20, 5, 31, - 31,159,185, 42,149, 42,214,202,202,234,135,252,252,252, 43,201,201,201,159,212,100,237, 56, 30,175, 46, 60, 61, 61,195, 40,138, -242, 40,187, 92, 91,121, 65, 80,254,157,227,184, 71, 81, 81, 81,237, 43,227,244,240,240,104,100,109,109,189, 17, 64,235,138, 68, - 69, 89,148,132,231,132,230,229,229, 77, 76, 76, 76,172,112, 34, 94,123,123,123, 43,103,103,231, 69,132,144, 65, 20, 69,209,213, -157, 19,203,178, 12,199,113,251,211,210,210, 22,100,101,101,229, 87,118,156,131,131,195,153,144,144,144,214,142,142,142,213,206, -249,103, 50,153,144,152,152,232,212,175, 95,191, 16, 0,222,255, 36,103, 57,232, 1,220,248, 55,149,177, 26, 11, 44,194, 96,216, -152, 15, 71,184,231, 36, 68,187,239,216,123,162,201,231,175,215,235,250,229,201,167, 41, 53,225,144,201,100,239,249,250,250,174, - 95,191,126,189, 67,131, 6, 13,136, 76, 38, 67,114,114,178,119,100,100,228,219, 11, 23, 46, 92, 32, 20, 10, 71, 25,141,198,211, -207, 89,105,218,218, 43, 5,159,101,230, 27,231,240, 85, 9,143,154, 96,208,160, 65,116, 66, 66,194, 66, 71, 71,199, 25,179,102, -205,146, 52,108,216, 16, 74,165, 18,105,105,105,117, 99, 98, 98,234,108,220,184,241,205,246,237,219,127, 35, 18,137, 62, 63,127, -254,188,137,207,177,127, 55,220,220,220,214,133,132,132, 76, 82,169, 84,232,208,161,195,149, 86,173, 90, 89,203,229,114, 28, 63, -126, 28,141, 26, 53,106,110, 99, 99,115,125,243,230,205,194, 69,139, 22,181, 60,120,240, 32, 0, 76,230,115,237,223, 15,138,162, - 60, 34, 34, 34,156,229,114, 57, 24,134, 41, 89, 13,128, 5,199,113,165,239,101,197, 16,195, 48,232,214,173,155,161, 42, 78,169, - 84,250,237,237,219,183,123,154, 87, 56, 41, 35,164, 42,132, 90,173,238,217,173, 91,183,111, 1, 84, 56,161,182,179,179,243,162, - 49, 99,198, 76, 13, 12, 12,132,201,100,130, 94,175,135, 94,175,135,193, 96,128, 94,175, 71, 90, 90, 26,166, 76,153, 82,250, 63, - 44,203,226,204,153, 51,147,103,207,158, 13, 0,159, 86,113,238,245, 28, 29, 29, 73,117, 75,224, 45, 92,184, 16, 11, 23, 46,196, -250,245,235,137, 64, 32,176,173, 38, 63, 95, 56,231,191, 29, 53, 23, 88,224,126,255,253,192,207, 99,250,117,105, 74, 70,246,247, -247,218,125, 36,236,234,236,158, 13, 59, 47, 63,243, 40,193, 66,113, 53,101,252,248,241,203, 23, 47, 94, 44,125,240,224, 1,162, -162,162, 96, 50,153,160, 84, 42,209,162, 69, 11,234,247,223,127,119,155, 50,101,202, 1,177, 88, 60, 90,175,215, 31,172,237,137, -185,218,209, 43, 21, 50,250, 3,177, 64,112, 93,111, 50, 29,121, 21, 51, 63, 40, 40,232,148,209,104,252, 42, 34, 34,226,220,191, -165,192, 4, 4, 4,116, 16,137, 68, 11,196, 98,241, 27,255, 85,113,241,244,233,211, 5,157, 58,117,154,177,112,225, 66,201,227, -199,143, 17, 29, 29,141,228,228,100, 52,104,208, 0, 13, 26, 52, 32,235,215,175,151,126,243,205, 55,147, 35, 35, 35, 41, 0, 51, -107,226,148,184,186,186,142,237,209,163,199,187,142,142,142, 54, 73, 73, 73,185,151, 47, 95,254, 53, 57, 57,249, 59,142,227,106, -149,151,132, 16,202,209,209,113,100,191,126,253,222,181,183,183,183, 79, 78, 78,206,250,227,143, 63,126, 77, 75, 75,251,225,121, -156, 22, 66,136, 27, 0, 63, 0, 14, 37, 95, 37,215,175, 95,255,238,227,199,143,211, 94, 32,167,186,126,253,250, 81,181,225,116, -114,114, 82, 8, 4,130,159, 9, 33,170, 42, 28, 2,181,201,100, 26,156,158,158, 94, 88, 21,151,181,181,117, 91, 55, 55, 55, 92, -191,126, 29,243,230,205,179,239,214,173, 27, 98, 98, 98, 64, 81, 20,102,204,152, 65,124,124,124,132, 41, 41, 41, 8, 12, 12,196, -153, 51,103,218,243,210,164, 70,215,124, 63, 0, 91, 0, 67, 56,142,203, 40,243,189, 35,128,195, 0,210, 56,142,123,231,101,165, - 79, 38,147,225,167,159,126,130, 80, 40,132, 72, 36, 66,118,118, 54,220,221,221, 33, 18,137, 32, 20, 10, 75, 95, 34,145, 8,117, -234,212,169,150,143,101,217, 54, 52, 77,163,160,160, 0, 12,195,148, 46,179,148,155,155, 11,142,227, 32, 22,139, 75,191, 55,239, - 99, 89,182, 77, 21,249, 55,168, 69,139, 22,216,184,113, 35, 52, 26, 77, 69,101, 23,119,239,222, 45,221,166,105, 26,129,129,129, - 52, 33,100, 80, 85, 2,139, 16,194, 1,192,135, 31,126,248,204,242,116,229, 95,230,181,131, 57,142, 43, 93, 66,236,159,228,252, - 79, 11,172, 57, 61, 26, 78,108,238,223,114,165, 88, 44,148,177,140, 17,172,201,136,230,190, 94, 96, 89, 19, 30, 61, 77, 70, 35, -103, 49, 70,247,246,172,183,243, 84,204,157,185,189,188,130,150,157,138,137, 46, 87,193,221, 41,119, 1,234,183,110,221,122,209, -210,165, 75,165,127,252,241, 7, 30, 60,120,128,101,203,150, 1, 0, 20, 10, 5,142, 31, 63, 14,134, 97,176,122,245,106,171, 55, -222,120, 99, 35, 33,228, 2,199,113, 89, 85,113, 86,114,161,235,117, 14,244,232,127,240,235,206,146,230,111, 31, 88, 75, 8, 57, -198,113, 28, 83, 69, 69,252,194, 71, 66, 88,194,105, 50,153, 94, 19, 10,133,237,253,253,253,223,180, 68,100,189,172,116,150, 21, - 87, 66,161,240,132,193, 96,144,139,197, 98, 1, 42, 89, 72,250,101,167,243,121, 56, 91,181,106,213,194,222,222,126,198,130, 5, - 11, 36,215,174, 93, 67,118,118, 54,210,210,210,240,201, 39,159, 96,211,166, 77,104,222,188, 57, 20, 10, 5, 38, 79,158, 44,253, -248,227,143, 39,182,110,221,122,127,104,104,104, 88,117,233, 36,132, 80, 93,186,116,249,105,215,174, 93, 13, 76, 38, 19, 5, 0, - 70,163,209,238,233,211,167, 35,230,204,153,211,133, 16, 50,164, 50,145, 85, 21,103,251,246,237,119,237,222,189,219, 83, 44, 22, - 83, 37,149,181,211,240,225,195,199,124,254,249,231,221, 8, 33, 31, 84, 86,238,171,202, 79, 66, 72, 43,185, 92,222,108,226,196, -137, 25,253,251,247, 79, 2,128,240,240,112,114,243,230,205, 14,139, 22, 45,122,178, 96,193,130,155,181,224, 12,144,203,229, 77, - 39, 77,154,148,222,167, 79, 31,181, 72, 36, 98,175, 93,187, 70,223,185,115,167,227,178,101,203,226,230,206,157,123,171, 38,156, - 66,161,112,223,193,131, 7,187,184,187,187, 51, 0, 56,115, 5, 79, 8,225, 40,138,226, 40,138, 66, 92, 92, 92,253,129, 3, 7, -238, 1,240, 86, 85,156, 57, 57, 57, 35, 58,118,236, 24, 50,111,222, 60,123, 0, 8, 9, 9,129, 64, 32, 40,109, 16, 30, 60,120, - 0,157, 78,135,245,235,215, 27,242,243,243,199,254,215,202,252,223,204, 89, 7, 64, 27, 0,103, 9, 33,221, 57,142,203, 40, 17, - 87,231, 0,248, 0,184,252,178,210, 73, 81, 20, 24,134, 41, 21, 81,167, 79,159,198,166, 77,155,176,119,239, 94,184,187,187, 63, - 35,176,132, 66, 97,133,113, 68, 21,180,113,230,186, 29, 12,195,224,198,141, 27,248,225,135, 31,224,236,236, 12, 71, 7, 7, 56, - 58, 57, 33, 40, 40, 8,102,215,140, 97,152,191,240,150,231, 44, 44, 44, 4,203,178,150,158, 35,242,242,242, 44,206,207,170,132, - 80,217, 87, 77,174,209,243,112,254, 95, 9, 44, 55, 87,199,207, 7,190,251,154, 12,140, 9, 48, 20, 2,134, 34,112,134, 34,112, -250, 66, 16,177, 12,156, 81, 11, 5,157,137,143,122,184, 88, 31,184,154,122,111,118,247,122,125,151,159,125,122,162,138, 39,197, -249, 91,182,108,177,185,125,251, 54,162,163,163,177,102,205, 26, 44, 94,188,184,244,201,225,173,183,222,194,149, 43, 87,160,215, -235, 49,111,222, 60,251, 89,179,102, 77, 66,113,176,105,205,220, 43, 7,193,166,159,119,174,183,183,151,101, 96,116,255, 80,135, -111,127,126, 50, 17,192, 55,175,226, 5,152, 53,107,150,124,197,138, 21,191, 89, 42,178, 94,166,115, 37,145, 72, 78,204,159, 63, - 95, 49,127,254,124,230, 5,113, 54, 23, 8, 4,251,140, 70,227,244,136,136,136,147,175,194,121, 74, 36,146, 41, 51,102,204,144, - 38, 38, 38, 34, 39, 39, 7, 18,137,228,153,202, 77, 34,145,128,162, 40,136,197, 98, 12, 31, 62, 92,186,117,235,214,105, 0,222, -175,182, 76,186,186,142,221,185,115,103, 3,131,193, 64, 21, 22, 22, 66, 36, 18, 65, 36, 18,161, 69,139, 22,244,204,153, 51,235, - 76,157, 58,117, 60,128, 13, 53, 73,171,157,157,221,136, 93,187,118,121,138,197, 98, 42, 57, 57, 25, 29, 58,116,192,245,235,215, - 17, 20, 20, 68,207,156, 57,179,238,228,201,147,199, 1,216, 84, 83,151, 73, 46,151, 55, 15, 9, 9, 73, 80,169,254, 52,135, 26, - 52,104,192,245,238,221, 59, 43, 58, 58,186,105, 68, 68, 68,166,191,191,127, 66, 13, 56,221,229,114,185,247,201,147, 39,147, 23, - 47, 94,220, 99,211,166, 77,253, 1,160, 77,155, 54, 71,150, 45, 91,246, 71,102,102,166,207,141, 27, 55, 50,219,180,105,147, 84, -131,164, 58,184,186,186,154, 38, 78,156,104, 85,126,199,130, 5, 11,176,104,209, 34,108,223,190, 61, 19,128,115, 85, 36, 42,149, -234, 77,138,162, 22, 53,111,222,220,186,123,247,238, 8, 9, 9,193,228,201,147,117, 70,163, 49, 6, 0,122,246,236,217,100,225, -194,133,226,136,136, 8,216,217,217, 9,147,147,147,127, 84,169, 84,124,224,187,229,232, 15,224, 60,128,230, 37, 34,107, 48,128, - 3, 0,154, 1,136, 6, 48,240,101, 38,206, 44,176,146,146,146,176,117,235, 86, 44, 91,182, 12, 94, 94, 94, 48, 24, 12, 16, 8, - 4,165,226, 74, 32, 16,128, 16, 98,241, 2,240, 12,195, 32, 52, 52, 20, 59,119,238,196,188,207, 63,135,149, 85,113, 49, 53, 24, - 12,200,202,206,134, 84, 42, 45, 21, 97,213, 8,166,253,161,161,161, 83,123,245,234, 5,163,209, 88,218, 53,104,126, 21, 21, 21, -193,214,214,182,116, 49,114,173, 86,139,173, 91,183,154, 56,142,219, 95,205, 61, 89, 42,134, 62,253,244, 83,232,116,127,174, 57, -238,231,231, 7, 0,168, 95,191, 62, 90,182,108, 89,186,109,118,168, 44,225,252,161, 67, 11,104,202, 28,221,116,225,215, 0, 0, - 15, 15, 15, 52,109,218, 20,110,110,110, 22,113,254, 39, 4,150,121,129,219,242, 11,221,166,164,164,125,181,125,243,143, 95,139, -133,148,176,103,251,166,176,147,152, 64,228,246, 16,117,153, 13, 98, 91,175,184, 0,100,197, 65,127,114, 54, 6,183,204,160,118, -234,232,195,139,122,123, 58, 45, 56, 30, 91, 97,112, 29, 69, 81,109,235,214,173,139,144,144, 16, 52,104,208, 0,243,231,207,135, -183,183, 55,228,114, 57, 82, 83, 83, 81, 88, 88, 8,133, 66, 1,134, 97,224,239,239, 79, 91, 89, 89,117,171,169,192, 34,132,248, -143, 29, 28,212, 70, 96,237,141, 14,111,180,195,169,141, 93, 20,219,143,170,231, 16, 66,126, 44,187, 56,234,171,130, 1, 3, 6, - 32, 53, 53, 85,190,107,215,174, 90,139,172,160,160,160, 83, 38,147,233, 53, 11,236,240,115, 23, 47, 94,236, 94, 91,113,181,117, -235, 86,133,173,173, 45,170, 11,222,172,129,184,186, 52, 98,196, 8,235, 93,187,118, 29,242,247,247,127,251, 85, 16, 89,132,144, -246, 13, 27, 54, 68,124,124, 60, 82, 83, 83,161,211,233,144,154,154, 10, 0, 72, 76, 76,132,135,135, 7,236,236,236,224,225,225, -129, 38, 77,154, 16,138,162,130, 44,225,237,214,173, 91,127, 0, 84, 92, 92, 28,210,211,211, 97, 99, 99, 3,133, 66, 1,119,119, -119,116,239,222, 93,224,233,233,217,167,166, 2,171,119,239,222,239,202,229,114,234,233,211,167,120,242,228, 9,116, 58, 29, 98, - 98, 98, 96, 99, 99,131,158, 61,123, 10, 61, 61, 61,251,213, 84, 96, 1,240, 29, 55,110, 92, 90, 89,113,101,134, 66,161, 32, 77, -155, 54,205,178,181,181, 13, 4,144, 80, 19,206,201,147, 39,167, 6, 7, 7,119, 62,115,230,204, 44,243,151,103,206,156,249, 12, - 0, 54,108,216, 16, 98,111,111, 31, 8,160, 38, 2, 11, 28,199,177, 99,198,140,121, 40, 22,139, 97,126,153,133,235,215, 95,127, - 13,138,162,108, 44,160,153, 27, 29, 29,237,167, 84, 42, 17, 29, 29, 13,154,166, 65, 8,121,168, 86,171,253, 74, 30,128, 98,181, - 90,109, 35,173, 86,139,129, 3, 7,146,190,125,251,182, 88,179,102,205,231, 0, 94, 9,129, 69, 8,105, 13, 96, 53,138, 3,128, - 63,231, 56,238,250,171, 84,191,113, 28,151, 74, 8,233, 90, 70,100,221, 4, 32, 41, 17, 87, 93, 57,142, 75,125,137,121, 7,150, -101, 33, 16, 8,240,245,215, 95,195, 96, 48, 96,247,238,221, 56,112,224, 0, 40,138, 2, 33, 4,132, 16, 88, 91, 91, 99,221,186, -117,165,219,150,192,100, 50, 97,219,182,109,152, 61,107, 86,169,184, 2, 0,145, 72, 4, 87, 23, 23, 56, 56, 58, 34, 46, 46,174, - 90,129,149,150,150,182,224,215, 95,127, 69, 85, 65,238,103,206,156, 41,253, 92, 54,200,221,146,116,210, 52, 13,157, 78,135,215, - 94,251,179,249,152, 52,105, 82,233,231,236,236,108,243, 61, 1, 98,225,201,211, 52, 13, 13, 7, 12,144,254,249, 93,159,233,211, - 75, 63,103,100,100, 84,202, 89,153, 22,249, 79, 58, 88,226,142, 79, 55, 60,190, 66,181, 28,212,175,221, 72,123,107, 25,216,124, - 53, 68, 61, 22,226,118,150, 28,107, 55, 23,183,133, 83, 7,250,195,247,181,165,208,253,216, 11,221,235,235,197, 63, 70,200,102, - 2,152, 95, 17,159,163,163,163,163,201,100, 2, 69, 81, 80, 40, 20,176,183,183,135, 76, 38, 67, 70, 70, 6,166, 76,153,130, 19, - 39, 78, 64,175,215, 67, 36, 18,161, 97,195,134, 48, 24, 12,141,106,236, 94,217, 9,126, 88,243,245, 50,219,204,184, 61, 8,127, -144, 3,185,141, 7, 62, 31, 23,104,183,112, 99,216, 2, 0,159,189,138, 23,193,199,199, 7,159,124,242,137,252,155,111,190,169, -149,200, 50,153, 76, 75, 4, 2, 65,135,233,211,167,203, 6, 14,252,235, 3, 97, 84, 84, 20,198,143, 31,175, 41, 42, 42,250,178, - 54,226, 74, 44, 22,159,248,225,135, 31, 20, 54, 54, 54,136,143,143,127, 97,226,106,253,250,245,214,141, 26, 53,130, 80, 40,148, -110,219,182,237,149, 16, 89, 38,147,169,174, 92, 46, 71, 70, 70, 6,166, 78,157,250, 76,128,170,185, 59, 27, 0,162,163,163,225, -225,225, 1,173, 86,235,110, 9,175,189,189,189, 29,199,113,248,240,195, 15,145,144,240,167, 54,113,119,119, 71, 66, 66, 2, 76, - 38,147,125, 77,211,106,103,103,103,111, 52, 26,209,165, 75, 23,104,181, 90, 0,192,224,193,131, 33, 20, 10,145,150,150, 6,131, -193,224, 80,139, 44,112,236,219,183,175,186,178,157, 10,133,194,104,103,103, 87,191,134,156, 14,253,250,245, 75,218,178,101,203, - 91,229,119,220,184,113,227, 45, 27, 27,155, 51,246,246,246, 77,107,145, 86, 86, 34,145, 64, 34,145, 64, 40, 20, 66, 44, 22, 67, - 34,145, 64, 44, 22, 67, 40, 20,130,166,105,139,250, 85, 88,150,197,177, 99,199, 64, 81,212, 51, 93, 23,243,231,207,255,200,214, -214,214,229,194,133, 11,165, 15,128, 5, 5, 5,104,220,184,113,195,158, 61,123, 70,166,164,164, 60,137,138,138,122,251, 37, 87, - 31, 43, 1,152,227,194, 54, 1,104,249,170,213,111, 37, 34,107, 16,128,176, 18,113,165, 7,240,238,203, 20, 87,101,175,189, 64, - 32, 40,189,207,165, 82, 41,252,253,253, 75,197, 20, 33, 4, 69, 69, 69,165, 93,132,150, 54,250,185,185,185,112,115,115,131,149, -149, 21, 26,123,121,225, 97, 76, 12, 0,148,126, 22,139,197,165, 66,172, 42,148,140, 4,252, 20, 85,196, 83,213, 82, 92,114, 0, - 32, 16, 84, 29,134,237,230,230, 6,150,101,205,194,146,123, 17,156,142,142,142, 40, 40, 40,176,136,243, 63, 33,176, 42, 82,140, -139, 22, 17, 74,119,165,193,214, 65,125,218,140,108,230,161,128, 46, 35, 14, 98,165, 3,136,109,125,172,221,124, 18,247,158, 20, -135, 70,173, 61, 16,129,237,115, 94, 7,145,219,195, 77,243, 0, 86, 82,201,219,149, 9,172,204,204,204, 2,131,193, 96, 47,147, -201, 32, 16, 8, 32, 18,137,144,145,145,129, 47,190,248, 2, 63,255,252, 51,234,215,175, 15,147,201, 4,177, 88,140,244,244,116, -136, 68,162, 26,141, 78, 20, 8, 72,223,133,159,244,110,160,112,240, 66,102,196,226,226, 47,173,253, 49,110, 48, 45, 94,181,243, -238, 8, 66,200, 42,142,227,210, 94,181,139,160, 84, 42,209,178,101, 75,124,240,193, 7,242,221,187,119,239, 0,224, 81,147,223, -135,135,135, 95, 14, 8, 8,232,181,122,245,234, 83,201,201,201,178, 86,173, 90, 65,169, 84, 66,169, 84, 34, 46, 46, 14,139, 23, - 47,214,234,116,186,126,181,113,199, 4, 2,193,182, 49, 99,198, 40,172,173,173, 17, 23, 23, 7,123,123,251,231, 58,215,128,128, -128,230, 66,161,240,210,250,245,235,173, 61, 61, 61,113,255,254,125, 4, 4, 4,192,213,213, 85, 26, 28, 28,252,210, 69,150, 72, - 36, 74, 76, 79, 79,247,172, 83,167, 14,182,110,221, 10,138,162,160, 86,171,241,249,231,159, 35, 56, 56, 24, 65, 65, 65,176,178, -178, 66,157, 58,117,240,240,225, 67, 72,165,210,100, 75,120,147,146,146,178, 0, 56,159, 56,113, 2,233,233,127, 78,217, 82,175, - 94, 61,100,101,101, 65,167,211,101,214, 52,173, 73, 73, 73,153, 0, 92, 34, 35, 35,241,228,201, 19,188,241,198, 27, 56,124,248, - 48, 2, 3, 3,193, 48, 12,140, 70, 99,102, 45,178,128,161,105,154,171,162, 18, 37, 0,236,106,170, 91,171,226, 68,241,124, 83, - 53,229, 4,199,113, 92,101,226, 74, 44, 22,163,154,255, 44,213,205,222,222,222,139, 26, 54,108,216,236,243,207, 63, 23, 10, 4, - 2,116,236,216,177,201,204,153, 51,159,202,100, 50,135,217,179,103,203, 43, 50,131, 1,248, 53,107,214, 76,241, 10, 84, 31,101, - 93,186, 87,114,208, 9, 33,196,185,196,241, 19, 3, 48,148,188,239, 53,199,100,189,108, 7, 75, 36, 18, 97,225,194,133,152, 48, - 97, 2, 92, 92, 92, 48,107,214, 44, 8, 4,130,210,151,217,149, 49,187, 90, 22,150, 77,184, 56, 59, 87,125,163,149, 4,185, 87, -243, 96,246,183, 76,211, 96, 22, 67,150,196, 66,149,113,155, 44, 18,109,207,195,249, 95,114,175, 74, 5, 86,121, 91,174, 84, 92, -189, 17, 48,210,219, 67,134,155, 17,119,224,235,106, 4, 39, 20, 86, 81, 90,140, 32, 34, 5,108,101, 2,143, 42, 46, 64,196,147, - 39, 79,234,217,218,218,194, 96, 48, 64, 44, 22,195,215,215, 23, 87,175, 94,133, 78,167,131, 94,175,135, 68, 34,129, 72, 36,194, -221,187,119, 97, 48, 24, 66,106,112,179,208, 46,118,244,250,207,230, 46,182, 66,210, 86,216, 90,137,209,173,173, 39,160,104, 6, -186,240, 1, 86,207,235,103,255,209,231,135,215,194,130,120,153,151, 33,176,158, 62,125,138,159,126,250,169, 72,167,211,141,168, - 13,135, 89,100,253,252,243,207,167,108,109,109,101, 65, 65, 65,136,137,137,193,151, 95,126,169,213,233,116,125,107, 27,223,101, - 50,153, 70,125,255,253,247, 39, 76, 38,147,194, 44, 46,158,215,185,154, 50,101,138, 85,227,198,141, 17, 27, 27, 11, 27, 27, 27, - 88, 89, 89,161, 65,131, 6,112,115,115,147, 78,153, 50,229,165,138, 44,150,101,175,196,198,198, 54,242,246,246, 38, 77,154, 52, -129, 88, 44,134,187,123,177, 73,229,231,231, 7,111,111,111,136, 68, 34, 0, 64,108,108, 44, 96,225,188, 44, 23, 47, 94,252, 53, - 58, 58,122,108, 96, 96, 32,237,234,234,250,204,232,164,224,224, 96,195,211,167, 79,107,188,204,195,217,179,103, 15,223,185,115, -231,195,142, 29, 59, 10,236,236,236, 32,145, 72,224,235,235, 11, 55, 55, 55,124,249,229,151,134,199,143, 31,215,102,233,136,248, -200,200, 72,169,151,151, 23, 83, 73, 89,181, 2, 80, 83,231, 33, 49, 60, 60, 92,212,182,109,219, 35,199,143, 31,111, 94,118, 71, -155, 54,109,142, 40,149, 74, 27, 0,201,181,185, 92,101,187, 6,203,118, 21,138,197, 98, 8, 4,130,106, 29, 44,181, 90,253,155, -171,171,235, 35, 23, 23,151,203,237,219,183,183, 9, 11, 11,195,252,249,243, 69, 58,157,174,174,185,235,165,146,224,102, 20, 22, - 22, 74, 95,129,234, 99, 42,128, 53, 0,228, 0,102,189,130,226,202, 5,197, 1,237, 77, 81,220, 45, 56,184, 68,108,153, 99,178, - 94,170,200, 98, 89, 22, 66,161, 16, 77,155, 54,197,167,159,126,138,175,190,250, 10, 19, 39, 78, 68,227,198,141, 75,175,189, 57, - 6,171,100,196,155, 69, 13,191, 72, 36,130,139,171, 43,140, 70, 99,169,123, 5, 0, 15, 99, 98, 32, 16, 8,192,178, 44,116, 58, - 93,181, 93,132,206,206,206,139, 86,172, 88, 49,165,119,239,222, 84,217, 17,119, 28,199,149, 78,203, 80,246,101, 52, 26,241,219, -111,191, 77, 9, 14, 14,134, 37,174, 23, 77,211,240,243,243,123,166, 91,112,195,134, 63, 35, 21,252,253,253,209,179,103,207, 26, -141,246,163,105, 26, 77, 23,126,253, 76,183,224,239, 78,127,102, 91,157,225,227,208,248,203,245, 21,114,254,215,186, 8, 43,204, - 53,195,213,122, 75, 7,190,222,114,164,183,187, 4,145, 17,119,113,244, 70,242,131,140,140, 28,176,169,119,192,166,223,199,212, -129,254,104, 86,223, 30,205,234,219, 99,234, 64,127,176,105,119,193,101,199,129,147,218, 33,173,144,168,171,176, 59, 87, 46, 89, -178, 36,219,206,206, 14, 82,169, 20, 98,177, 24,137,137,137,240,241,241, 41,221, 46,121,242,196,252,249,243,211,211,211,211, 55, - 91,122, 34, 10, 25, 53,238,171,207,223,119, 17, 73,172,128,172, 16, 88, 91, 43,177,117,243,215,128, 78, 13, 80, 98,188,217,179, - 37,237,230, 98,219,157, 16,210,228, 85,187, 8,241,241,241, 88,184,112, 97,145, 70,163,121,174, 64,247,240,240,240,203, 6,131, -161,215,230,205,155, 53, 71,143, 30,125,110,113,101,230, 52, 26,141,111,236,216,177,163, 48, 62, 62, 30, 74,165,242,121,220,161, -217, 38,147,201,122,205,154, 53,236,107,175,189,198,124,252,241,199,204,168, 81,163,152,119,222,121,135,233,217,179, 39, 51,126, -252,120, 70,167,211, 73,228,114,249,138,151,117, 45,116, 58,221,134, 77,155, 54,105, 41,138,130, 82,169,132, 88, 44,134,147,147, - 83,169, 16, 54, 55,228, 6,131, 1, 27, 55,110,212,104, 52,154,181,150,240,102,102,102,110,157, 57,115,230,227, 83,167, 78, 25, -205,163,124,212,106, 53,190,252,242, 75,195,230,205,155,147,114,114,114,190,171,105, 90,243,242,242,182,125,246,217,103, 79,142, - 29, 59,102,164, 40, 10,217,217,217,176,181,181,197,151, 95,126,105,248,238,187,239,146,242,243,243,107,204,217,174, 93,187,216, -164,164, 36, 43,157, 78,247, 23,247, 71, 40, 20, 18,169, 84,218, 6,192,217,154,112, 6, 6, 6,198, 62,121,242,196,122,233,210, -165, 23,122,246,236,249,149,149,149, 85,140,149,149, 85, 76,207,158, 61, 87,108,220,184,241, 92, 9,231,153, 26, 87, 94, 20, 85, - 42,176,204, 93,133,102, 23,171,196,201,178,168,139,208,219,219,123,207,206,157, 59,109, 98, 98, 98,144,151,151,135,155, 55,111, - 34, 34, 34,162,180, 43,215,220,152,149,125, 1, 64, 81, 81,145,236,101,215, 29, 28,199,157,231, 56,206,143,227, 56, 79,142,227, - 94,197, 65, 50, 7,202,136,171,174, 37, 35,207,186,150,108, 55, 7,240,235,203,116,176, 56,142, 43,125,216,121,255,253,247,113, -230,204, 25, 52,110,220,184, 84, 84,149, 29, 69, 88, 19,145,193, 48, 12,124,125,125,161,211,235,159, 17,232, 2,129, 0, 78, 78, - 78,136,141,141, 45, 13, 76,175, 38,141,131,122,247,238, 77, 69, 69, 69,193,219,219, 27, 17, 17, 17,136,136,136,192,205,155, 55, - 17, 25, 25,137,219,183,111,227,238,221,187,184,119,239, 30, 2, 2, 2,240,244,233, 83,188,254,250,235, 84, 73,151,108,149, 69, -167, 38,110,147,133,238,221,223,193,249,239,119,176,204, 74,209,252,238, 98,167, 24,213,204, 77,128,200,200,123, 56, 18,158,181, -157, 16,234, 96,196, 99,221,209,215, 27,230,195,240,243, 16,248, 14,218,133,237,115, 94, 47,126, 2, 72,187, 11,195,254, 97, 32, -114, 71, 60,204, 83, 64,163,207, 57, 86, 69,101,112,195,206,206,110,223,206,157, 59,199,140, 28, 57, 82,204,178, 44,100, 50, 25, -166, 77,155, 86, 58, 71, 8, 77,211,152, 56,113, 98, 65, 90, 90,218, 26,142,227, 98, 45,188, 81,100,238, 78,226,121, 67, 63,156, - 47, 69,194, 22,128, 18, 33, 3,173,224,215,121, 12,210,158, 92, 5, 10,239, 1, 68,132,205,203,199, 58,190, 53,106,213,119, 0, - 58,189, 42, 23,224,254,253,251, 88,176, 96,193,115,139,171,242, 78,214,145, 35, 71,118,232,116,186, 15, 95, 32,231, 27, 95,125, -245,213, 9,103,103,231, 90,119,139,184,187,187, 15,207,200,200, 24, 99,137,113,246,178,174, 71, 68, 68, 68, 68,219,182,109, 55, -173, 89,179,102,226, 39,159,124, 34,149,201,100,176,182,182, 70,116,116, 52,234,214,173, 11, 0,208,104, 52,152, 51,103,142,198, -104, 52,110, 15, 13, 13,189,106, 97, 67,200, 18, 66,134,142, 31, 63,126,108,147, 38, 77,222, 98, 89,214, 65,175,215,103, 62,125, -250,244, 88,126,126,126,173,230,193, 42,225,252, 96,194,132, 9, 35,189,188,188,222, 53, 24, 12, 14, 38,147, 41, 51, 33, 33,225, - 72, 94, 94,222,214,218,112, 94,185,114, 37,253,135, 31,126,136, 75, 73, 73,241,113,115,115,203,181,177,177,209,235,245,122, 90, -169, 84, 90,137,197,226, 0, 0, 87, 1,220,171, 9,103,104,104,104,234,230,205,155,159,232,116,186, 38,223,127,255,125,136, 66, -161,248,131, 16, 66, 68, 34,145,157, 66,161,232, 6,224, 2,128,135,181, 17, 88,101, 5, 85, 89, 23, 75, 36, 18,129, 16, 98,145, -192,138,141,141,189,188,100,201,146, 22, 13, 27, 54,196,230,205,155,179,148, 74,165,213,187,239,190, 43,200,205,205, 37, 85, 57, - 88, 26,141, 70, 10, 30,213, 62, 91,148,184,188,253,205, 49, 87,101, 2,223, 15, 0,200,121,201, 2,245, 25, 33, 85,183,110,221, -103, 68, 85,217,125, 53, 17, 88, 38,147, 9, 34,145, 8, 2,129, 0,174,110,110,165, 98,142,227, 56,196, 60,124,136,236,236,236, -210,105, 26,170, 41,227, 52, 33, 4,239,189,247,158, 69,255,251,254,251,239,227,194,133, 11,168,174, 59,177,236,136,191,250,245, -235, 87, 43,134, 74,210, 98,241, 40, 66, 15, 15,143, 90,113,150,215, 34,255, 9,129,245, 23,219, 60,171,104,233, 15,135,110,206, - 81,231,153, 14, 74,218, 63,253,116,225, 66,112,115,122,212, 63,229,161, 16,247,106, 70, 37, 65,247, 93, 71, 16,235,226,198,134, - 43, 80,131, 40, 92,145, 45,172,139,223, 34, 82, 82, 40, 33, 93,165,251,144,147,147, 51,117,221,186,117,244,137, 19, 39, 6, 45, - 91,182,204,182,105,211,166, 24, 58,116, 40,244,122, 61,110,223,190,141,241,227,199,103,165,167,167,111,201,201,201,249,202,210, -147,112,180, 22,124,177,118,110, 47, 7,138, 45, 0,242,194, 1,129, 13, 28,237,173,112, 43, 44, 4,200, 13, 3, 40, 17, 64,137, - 17,216,202, 27,126,205, 61,189, 9, 33, 29, 57,142,187,244, 42, 92,128,143, 62,250,232,133,137,171,178,130, 8, 64,195, 23,153, - 78,179,200,154, 62,125,250, 9,150,101,229,181,225,216,191,127, 63, 3,128,121,213,111, 10,163,209, 56, 39, 42, 42, 10,147, 38, - 77,154, 48,108,216, 48, 89,211,166, 77, 81,175, 94, 61,196,196,196, 32, 58, 58, 26,155, 54,109,210,178, 44,187, 53, 39, 39,103, - 70, 13, 43,115, 6,192,150,146,215,139,106, 32, 88, 0, 63,150,188, 94, 8,198,142, 29,123,231,225,195,135, 89,238,238,238, 65, - 52, 77,183, 64,241, 68,145,201, 37,255,241,176, 54,156,227,199,143,143,140,139,139,203,112,117,117, 13, 18,137, 68,158, 37,156, - 73, 0,182,214,146, 51,243,214,173, 91,158,109,218,180, 97,105,154,230,132, 66, 33, 87,210, 24,114, 2,129,128, 35,132,112, 39, - 79,158,148, 2,168, 54,230, 50, 49, 49,113,202,246,237,219, 57,165, 82, 25, 84, 80, 80, 48, 20,192, 14,141, 70,211, 38, 39, 39, -167,180, 17,174, 8, 90,173, 86,194,235,167,106,203,231,128, 74,190, 79, 5,208,241, 85, 72,227,146, 37, 75,176,101,203, 22, 84, - 55, 3,249,145, 35, 71,128,106,186, 8,205,101,197, 28, 95,165,215,235, 17, 21, 21, 5, 66, 72,233,118,217, 73, 70, 25,134,169, -114,166,119,150,101, 25,189, 94,143,125,251,246, 89, 36,178,126,250,233, 39,104,181, 90,176, 44,107, 81, 61, 75,211, 52, 90,182, -108,137,236,236,236,210,169, 19,252,253,253, 75,247, 27, 12,134, 26,231, 39, 77,211,104,218,180, 41, 50, 50, 50,224,232,232, 8, -160,184, 91,176, 84,124, 22, 22,254,223,148,127, 82,213,197, 45,139, 69, 93,235,219,104, 5,212,161,150,238,108,215,192,122, 18, - 56,218, 74, 65, 11, 37,200,211, 18, 68,169,181,184,116, 47, 47,129, 49,113,253,190,252,227,177, 69, 19,196, 17, 66,218,186,185, -185,205,101, 24,166, 57, 69, 81,114,142,227, 10,104,154,190,169, 86,171, 23,113, 28,119,183, 38, 39, 97,107, 69, 63,180, 83,208, - 54, 66,177,152, 99, 76, 44, 0, 10,160, 40,128, 80, 0,232,146,247,226,109,141,198, 32, 98, 88,114, 48, 53, 61, 99,236,203,206, -252,206,157, 59,159, 42, 44, 44,252,215,205,228, 46,147,201, 22,208, 52,253,198,127,125,153,152,214,173, 91, 7,202,100,178,185, - 44,203,182,214,106,181,174, 50,153, 44,149, 16, 18,150,159,159,191,252,230,205,155,215,248,230,243,229,225, 69,206,228, 94, 30, -230,197,158, 29, 29, 29,189,110,221,186, 37, 45,235, 96,149,173, 47,107, 50,170,140,199,171,135,102,205,154, 93,223,179,103, 79, - 96,221,186,117, 41,115,192, 53, 69, 81,165, 47,115, 55,150,217,109,185,118,237,154,233,227,143, 63,190, 26, 25, 25,217,185, 50, -206,198,141, 27,159, 58,115,230,204,107,101, 29, 42,179,144, 42,255,153, 97, 24, 20, 21, 21, 97,193,130, 5,167, 31, 62,124, 88, -225, 82, 57,222,222,222,107,230,205,155, 55,165, 79,159, 62, 20, 69, 81,127,137,185, 42, 31,135,101, 48, 24,112,240,224, 65,118, -219,182,109,235,239,223,191, 95,105, 12, 86,171, 86,173, 18,110,222,188,233, 97,158, 50,161,252,171,252,136, 90, 0,104,219,182, -109,242,245,235,215, 85,255, 36,231,255,141,192, 42,169, 80,200,172,238,245, 6, 19, 80,131, 40,194,250,130, 16, 49,203, 33,154, - 0,167,196, 82,253,198, 5,191,169, 53,229,142,247,125,209, 51,242,242,156, 60,231,203,224, 36,132, 80,150, 44, 61,195,231,231, -127,135,179,113,227,198, 15, 31, 62,124,232, 89, 5, 79,169,192,226,243,243,223,199,233,228,228,244,191,246,238, 30, 53, 66, 32, - 12,227,184, 12, 46,196, 33,245,116,194, 6,182,181, 53,123,128, 64, 72,145,206, 91,228, 60,185, 67,142,144, 34, 23,176,178, 13, - 4, 76, 10,133, 33,136, 77,136, 99,161,147, 20, 49,224, 74, 22,242,225, 46,113,253,255,192,246, 65,223,198, 7, 81,223, 99,165, -212,157, 16, 98,185,109,185,115,191, 92, 91,107, 31,181,214,103, 90,235,215,109,153,190,239,175, 60,207,187,182,214,158,126,103, -217,179, 16, 34, 54,198, 92,245,151, 61,247, 51,199,250,138,112,120,158, 65, 16, 60,196,113,188,146, 82,110,188, 87, 56,188,230, - 79,105,154, 58, 81, 20, 61, 37, 73,114,178,203,204, 67,243,163, 93,132,111, 31, 19,187,233, 14, 96, 54,254,178,215, 15,211, 84, - 85, 85,169,148,122, 49,198, 44,234,186, 94, 52, 77,179,113,131,147, 82, 62, 51,165,233,234,158,108,174,199,204,236,138,210,249, - 88,121,187,250, 15, 86, 89,150,151, 97, 24,222,186,174,123, 52, 44, 63, 95,149,161,182,109, 77, 81, 20, 23,251,206,156, 85,193, - 2,128,185,200,178,108,205, 20,112,136,242, 60,191,119, 28,103,249,223, 51,167, 78, 48, 2, 0, 0, 0, 10, 22, 0, 0, 0, 5, - 11, 0, 0,128,130, 5, 0, 0,128, 95,123, 7, 33,229,185,104,177,201,171, 49, 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, 0, 8, 6, 0, 0, 0, 94,187, 18, 70, 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, 20,213,254,198,223, 51,101,251,166,147, 30, + 58, 4,129,208, 3, 74, 2,130,116, 17, 69,184,162,128,160,226,245, 94, 44,168, 88,126,130, 5, 21, 5,162, 94, 21, 69, 17,229, + 90, 16, 68,175,168, 32,241, 42, 77, 1, 41, 82, 69, 18,138, 92, 74,164,133,146, 72,250,246,153,243,251, 99,119,134,205,102, 91, + 96,163,128,231,243, 60,243,236, 78,123,231,156,169,239,124, 79, 25, 66, 41, 69, 67, 65, 8,233, 64, 41, 45, 96,154, 76,147,105, + 50, 77,166,201, 52,153, 38,211,252, 43,193,213,119, 5, 66, 72,196, 29, 25, 33,132,122,134, 62,151,186,102,164,180,188, 53,149, + 33,130,154,125, 60,154,207, 69, 80,179, 33,211,217,231, 82,213, 84,242, 27, 73, 93,239,125, 24,169,253,233,149,206,136,157,247, + 13,173,121,177, 90,254, 52, 35,117,142,250, 57,238,207, 69, 80,179, 33,211,217,231, 82,211,244, 61,127, 34,161,235,239,156,188, +216,253,233, 39,157, 23,125,222,255, 81,154, 23,170, 21, 70, 58, 35,189, 79, 35,254,108,186,148, 17,234,179,112, 67, 24, 12, 0, +160,148, 18, 47,125,114,169,106, 42, 16, 66,168,162, 31, 9, 34,169,229, 97,109,164, 53,125,246,103,164,120,142, 82, 74, 8, 33, +235, 0,244,137,144,230, 90,143,230, 69, 31,119,159,188, 70, 68,183, 33,205, 21, 16,185,243,190,161, 53,189,167, 93,204,185,234, +171, 25,137,243,222,223,113,143,164,102,164,174, 37,159,245, 35,114, 45, 53,196, 57,239,231,252,185,104, 93, 95,205, 72, 92, 75, +190,154,145, 56,239,255, 8, 77,101,250,197, 92, 75,254, 52, 35,113,222, 7, 58,246, 23,171,123,185, 80,175, 8, 86, 67,238, 24, +207, 1,232, 27,105,205, 72,167,185, 33, 76,102,164,163, 56, 13,169,137,200, 30,163,231, 60,154,207, 69, 80,179,111,164,142,145, +239,185, 19,137,183, 46,111,205, 72,157,155,126,210,121,209,199,201,159,230,197,166, 55, 64, 58, 47, 10,127,154, 23,123,222,255, + 81,154,136,236, 49,138,200,181,228,163, 25,177,107,201, 55,191, 17,140, 8,246, 5, 34,119, 45,249, 73,231, 69, 31, 39,127,154, + 23,155,222, 0,233,188, 40,252,105, 70, 48, 34, 26,113,221,203,129,122, 69,176, 26,138,134, 48, 66,128,251,162,139,164,118, 67, + 68,113, 26, 42,210, 22,169, 40,142, 31,221,117, 17,148,139, 88,180, 73,193,147,190,136,188,209,250,209,126,142, 16,242,108,164, +117, 35, 9,187,150,216,181,132, 75,236, 90,242,119,222, 92,236,181,212, 80, 47,207,222,154,145, 50, 66,126,242,126, 81,215,146, +239,186,145,184,150, 66,104, 94, 84,132, 57, 80,254, 47, 70,247,114,161,222,117,176, 26,138, 72,148,247, 6,208,139,104, 84, 44, +210, 52, 80, 58,251, 94, 14,121, 71, 3,164,147, 16,242, 92, 3,229,253,114,217,167,236, 90, 98,215, 82, 68,136,228,181,228,115, + 78, 70, 36,173,145, 62,207,253,105, 70, 98, 27,222, 26,145, 58, 71, 27, 58,239,145,188,150, 26,226,216, 95, 46,212, 59,130,213, + 80,111,199,151,131,102, 67,104, 55, 80,222,215,161, 1,222, 14, 26,160, 94,215, 58, 68, 62, 42,240, 28, 34, 88,228,168,228, 57, +146,105,109,200, 98,194,134, 56, 55, 27,242,124,143,100, 61,143, 6,202,251, 58, 92, 30,199,125, 29, 34,156,206, 72, 93, 75,126, +142,249, 58, 92,100, 90,253,237,191, 72, 23, 97, 71,242,220,108, 72,205, 72,104, 55, 68, 58, 3,232,174,195, 95, 32,114,165, 64, +104, 3,118,211,192, 96, 48, 24, 12, 6,131,241, 87, 36, 96, 4,171,107,215,174,249,122,189,190, 85,160,249, 53, 53, 53,197,187, +118,237,186,174, 97,146,197, 96, 48,174, 36, 8, 33, 28,206, 87, 73,144, 1, 80,202,222,238, 24, 12,198, 21, 76, 64,131,165,209, +104, 90,172, 95,191, 62, 83,150,101,184, 92, 46, 72,146, 4, 73,146,224,114,185, 96,183,219,241,183,191,253,173,222,197,139,157, + 59,119, 94,207,113, 92,179,250,172, 35, 73,210,209, 95,126,249,165, 87,160,249,201,201,201,155, 0,180, 32,228,124,212,145, 16, + 2,101,220,123, 58,199,169, 85,206, 78, 30, 59,118,172,107, 48, 77, 66, 72, 11,111, 61, 95, 45, 63,186, 65, 53,175,186,234,170, +237,130, 32,100,248, 91, 63,144,182, 44,203,135, 11, 10, 10,114, 2,105, 50, 34, 75,231,206,157,215,243, 60, 95,239,243,115,215, +174, 93, 1,207,207, 14, 29, 58,252,204,113, 92, 26, 80,247, 24, 7, 56,159,120, 73,146,126,253,229,151, 95,122, 5, 50, 32,169, +169,169,155, 40,165, 45,194, 60, 47, 21,142, 31, 59,118, 44, 59, 80, 58,149,235, 40, 88, 58,253,104, 7,213,244,210,224,210,211, +211,243, 18, 19, 19,239,173,169,169,177, 2,160, 28,199,209,118,237,218,213,210,151, 36,233,236,190,125,251, 58,132,210, 99, 48, + 24,140,203,129,128, 38, 73,150,101,206,102,179,225,192,129, 3,240,119,159,231, 56, 78,170,239,198, 40,165,153,107, 22, 47, 76, + 50, 36, 38, 67,114,216,161,107,148,164,106,151,237, 45,128,228,112, 64,118, 58,208, 40,251, 26, 37, 13,232,219,183, 47, 31, 66, + 54, 99,242,228,201, 73, 81, 81, 81,176, 90,173,176, 90,173,176,217,108,176,217,108,176,219,237,176,219,237,112, 56, 28,112, 56, + 28,112, 58,157,176,217,108, 40, 40, 40, 8,154,118, 66, 72,198,131, 15, 62,168,106,218,108, 54, 88,173, 86, 85,203,102,179,169, +154,118,187, 29, 54,155, 13,123,246,236, 9,170, 41, 8, 66,198,206,157, 59,147, 52, 26, 13, 40,165,144,101, 25,148,210, 90,131, +207,190, 66,110,110,174, 35,212, 62,101, 68,148,204,165, 47,205, 72,210, 37, 52,130,236,116, 34,161,115, 55, 0,238, 99,113, 98, +205,119,144,157, 78,200, 78, 39,154,222, 56, 82,157,222,167, 79,159, 80,231,103,211, 47,166, 77,141,213, 68, 69,193,101,181,162, +249,176, 17,234,140,194,119, 94, 7,117, 58, 65, 93, 14,116,124,228,105, 0, 64, 73, 73,137,165,109,219,182, 39,225,174,167, 16, + 40,194,147,113,228,200,145, 36, 37, 13,222, 16, 66,192,113, 92,173, 97,195,134, 13, 24, 55,110, 92,168,188,103, 60,245,212, 83, + 73,202, 53,226,125,174, 59,157, 78,245,250,113,185, 92,112, 58,157,176,219,237,248,249,231,159, 67,105,130, 16,194,165,166,166, +190,212,187,119,239, 9,139, 22, 45, 50,125,245,213, 87,166,230,205,155, 67,163,209,128,231,121,240, 60, 15,142,227,192,243, 60, +134, 15, 31,254,151,169,155,193, 96, 48,174,124, 2, 26, 44,135,195,113,100,208,160, 65, 20, 0,236,118,123,186, 86,171,213,120, +207,151,101, 57, 45, 55, 55,247, 87,223,245, 66, 21, 29, 26, 18,147,241, 65,243,120, 0,192,168, 67,165, 0,220, 15,133, 37,215, +118, 81,151, 25,243, 91,185,123, 89,131, 1, 28,199, 5,189,233, 18, 66, 96, 54,155, 49,104,208, 32,104,181, 90,116,235,214, 13, + 26,141, 6,162, 40, 6, 28,194,193,100, 50,225,249,231,159, 7, 0, 8,130, 0,147, 94,135,251,122, 95, 3, 61,161,248,224,151, +253,176, 73, 50, 4, 65,128, 32, 8, 16, 69,177, 78, 68,202, 31, 26,141, 6, 5, 5, 5,224,121, 30,130, 32,212,250,229,121, 30, +203,151, 47,199, 45,183,220, 2,158,231, 97, 52, 26,129,191, 80,101,192, 75, 5, 93, 66, 35,124,209,199, 29,136,188,253, 88,165, + 58,253,187,209, 55,170,255,199,159,168, 6, 33, 4, 26,141, 38,188,227, 30, 21,133,255,222,114, 61, 0, 96,228,129, 51,234, 57, +179,251,245, 25, 16,181, 90, 8,162, 6, 29, 38, 63,133,146,146, 18,203,200,145, 35, 55,232,245,250, 21,161, 52, 41,165, 56,122, +244,168,170, 37,138, 98,157,243,158,227, 56,124,248,225,135,248,237,183,223,194,202,187,197, 98,193,204,153, 51,213,188,249,211, +245,254, 31, 42,239,132, 16, 46, 37, 37,229,197,222,189,123,143, 91,180,104, 81, 28, 33, 4,115,231,206,133, 32, 8,184,225,134, + 27,144,144,144,128,149, 43, 87, 66,163,209,224,241,199, 31, 15, 43,141, 12, 6,131,113,185, 16,208, 96,237,218,181,235,122,229, +255, 53,215, 92,179,111,195,134, 13, 87,121,133,242,225,114,185, 52, 46,151, 43, 83, 41, 54,116,185, 92,176,217,108, 24, 51,102, + 76,208, 55,122,201, 97,175, 53, 30,232, 38, 29,206,131, 75,193,110,183, 99,212,168, 81, 0, 16,210, 92,133,249, 96,128,205,102, +131, 32, 8,104,217, 36, 17, 79,143,202, 70, 46, 79, 97, 41, 5, 80, 82,141, 59, 83, 5,236,202,200,196,156,163,165,248,173,162, + 10,130, 16, 94,105,169, 44,203,181, 12,149,239,255,121,243,230, 97,244,232,209,224,121,190, 78, 17, 18,227,143, 65,118, 58,107, +141,251, 59, 6,245, 61, 54, 46,171, 21, 0,192,123, 25,114, 81, 20,161,213,235,193,139, 34, 4,173, 6, 37, 37, 37,150,129, 3, + 7,254,100, 48, 24, 22,164,164,164,156, 56,126,252,120, 64, 61, 66, 8, 40,165, 16, 69, 17,130, 32, 4, 60,231, 63,252,240, 67, + 44, 92,184, 16, 61,122,244, 8,235,156,183,219,237,208,104, 52,152, 49, 99, 70,157,249,239,188,243, 78, 29,131, 21, 66,143, 0, +224,146,147,147,239, 91,188,120,113,180,178,253,132,132, 4,136,162,136,172,172, 44, 68, 69, 69, 97,195,134, 13,144, 36, 41,108, +179,202, 96, 48,254,178,136, 0, 58, 3, 72, 4, 32, 1,168, 4, 16,235, 53,255,172,231, 55,209,107,124,155, 31,157,238,158,101, +148,249,202,184, 29,128,214,207,244, 82, 0, 6,207, 96, 3,176, 9, 64,150,215,118,148,245,188,211,177, 13,240, 24, 44,226,238, + 85,117, 45,128,190,254, 58,191, 83,138, 11,247,239,223,239,183,184,208,155, 80,205, 59,117,141,146,212,200,213,231, 45, 19,212, +233,163,139,202,212, 27,236,127,123,180,134,206,108, 66,246,115,175, 4,221,150, 39,237,176,219,237, 56,115,230, 76,157, 55,239, + 11, 53, 88, 0,224,116, 58, 97, 48,232,240,195,187,215,162,248,176, 11, 51,242,143, 97,217,214, 35, 16, 4, 1,195,174,106,141, +191,185,128,188,120, 61,254,233,146,224,144,105, 88, 15, 48, 74,105, 29,115,229,109,178, 8, 33,234, 52,246,176,249,115, 72,232, +220, 77,141, 92, 45,106, 28,165, 78, 87,162, 86, 0,176,172, 75, 51,232,163,204,200,122,104, 74, 72, 61, 66, 8,154, 15, 27,161, + 70,174,190,233,214, 2,130, 70, 3, 81,167,197,223,126, 57, 6,192, 93, 44,216,175, 99,187,117,101,188,246,163, 59,238,184,227, +240,154, 53,107,140,225,164, 85,163,209,212, 50,108,254,204,149, 32, 8,112,250,152,198, 64,233,180,217,108, 1,141,147,114, 93, +213, 39,130, 5, 0, 53, 53, 53,246,101,203,150, 97,206,156, 57, 72, 72, 72,192,160, 65,131,144,146,146,130, 37, 75,150,128, 82, +138, 7, 30,120, 0, 6,131, 1, 6,131,129,157,243, 12,198, 95,156, 16, 94,228,218,169, 83,167,102,231,229,229,205,236,217,179, +231,167,155, 54,109, 90, 76, 8,201, 87,102, 82, 74,135,121, 52,242,189,198,187,163,182,201, 18, 1, 36, 18, 66,242,149,229,189, +199,189,166, 15, 0,160, 85,198,167, 78,157,154,149,151,151, 55,115,202,148, 41, 79,206,154, 53, 75, 51,117,234,212,142,121,121, +121, 51,149,237,248, 75, 7,112, 62,130, 21,180, 23, 96,135,195,113,100,192,128, 1, 97,181,248,177, 88, 44,167,130,205, 87, 12, +154,191, 74,222,202, 52, 93,148, 25,134,168, 40,144,224,165,131, 42, 78,167, 19,130, 32,128,227, 56,172, 90,181, 10, 6,131, 1, + 67,135, 14,189,224, 34, 66,197,180,105,181, 26, 8,177, 28,238,120,109, 59,206,158,171, 81,139, 4, 87, 23, 29,195, 86,131, 1, + 79,183,235, 8,115, 85, 17, 42,108,246,144,154, 64,224, 8,214,232,209,163, 97,181, 90,193,113,156, 58,141,227,184, 6,237,203, +139, 17,156, 64,141, 16, 8, 33,208, 71, 71, 65,111, 54,131, 23, 66, 85,191,114, 67, 41, 61,111,132,180, 90,136, 58, 45, 4,141, +187,196, 93,137, 92,149,241,218,143, 78,156, 56,241, 19, 0,125,184, 6, 75,137, 96, 5, 51, 87,130, 32,192,225,112,132,101, 94, +108, 54, 27, 52,154,243, 53, 1,142, 30, 61,170,254,247,103,176, 66,228,153, 18, 66,100, 66,136,220,162, 69, 11,117,157,228,228, +100,196,198,198, 66,150,101,200,178, 12,189, 94, 15,131,193, 80,107,187, 12, 6,227, 47, 75, 48, 47,162,203,203,203,155,233,109, + 96,128,218,134,198,219, 56,249,152, 40,133,107,167, 78,157,154, 21, 44, 1,222,102, 75,153,166,108,151, 16,146, 63,107,214,172, + 97, 33,210,161, 68,210,206, 23, 17, 6,235, 21,214,187,184, 48, 18,248, 43, 98,241,126,128, 25, 98,162,161, 53,153,224,169,126, + 21,212,216, 17, 66,224,112, 56,212, 58, 39,247,222,123,111,192,183,122,239,186, 41,161,176,219,237,224, 57, 30,208, 53,135,140, + 45,234,195, 74, 29, 52, 26, 20, 53,233, 4,114,234, 4, 4, 33,188,250,254, 74, 4, 75, 49, 81, 15, 60,240, 0,230,207,159,175, + 86, 76, 6, 0,158,231,209,166, 77, 27, 28, 58,116, 40, 44, 77, 70,100,161, 52,112, 52, 82,153,174,143,142,130,206,108, 6, 31, + 70,164, 81,153,175,214, 97,210,235,192,107, 52, 16, 52,238, 98,193,155,110,186,105, 93, 89, 89,217, 71,237,219,183,255, 31,220, +221, 24,132,116, 66,202,245,227,239, 60,255,232,163,143,106,153,171,250, 68,176,148,235,200, 27,127,197,133, 35, 71,142, 12, 55, +130, 69, 9, 33, 84, 20, 69, 12, 24, 48, 0, 29, 59,118,196,178,101,203, 32,203, 50,238,191,255,126, 24, 12, 6,204,158, 61, 27, + 46,151, 11,121,121,121, 44,130,197, 96, 48,130,121, 17,203,148, 41, 83,158, 36,132,228,123, 34, 73,133,158,229,253, 25, 41,127, +116, 71,109,147,118,214,223, 66,222,145, 44,111,147,229,253, 95, 97,234,212,169, 89,126,210,161, 70,204, 84,131,229,229, 26, 27, +148,178,189, 5,106,133,118,165, 88,144, 16,130,239,114,174,130,214,108,130,222,108, 70,175,165, 63, 2,112,191, 53,227,197, 87, + 67,106, 58,157, 78,213, 56,149,150,150,134, 44, 34, 12, 7,167,211, 9, 94, 35,226, 39,179, 8, 42,242,181, 30, 88,162, 40,130, + 19, 68, 20, 37,102,130, 8, 43, 33, 72,174,176, 30, 14, 74, 36,195,187,245,212, 29,119,220, 1,142,227, 84,147,213,165, 75, 23, +239, 85,216, 19,231, 15,230,228,247, 43,240,237,109,238,107,213,187, 88, 48,191, 71, 43,232,162,204,208,153, 76,232,179,124,147, + 90,156,139,217,239,133,212,220,255,254,219, 40,124, 99, 22, 4, 81,196,136,157, 69, 0,220,145,171,220,171, 90,255,100, 55, 69, +127,116,244,232,209,159, 0,112,183,221,118, 91,108,215,174, 93,195, 10,139, 17, 66,106, 85, 60, 23, 4,193,175,185, 18, 4, 1, + 46,151, 43,172,188, 59, 28,142,176, 34, 73, 74, 20, 43, 20,148, 82,218,182,109, 91,240, 60,143,152,152, 24, 68, 69, 69,169, 45, +104,149,200,149, 82,127, 51,220,235,146,193, 96, 92,217, 4,241, 34,182, 89,179,102, 21,206,154, 53, 75,141, 36,121,150, 15,101, +174,110,128,219, 76, 37, 42,230, 12,238,186, 84,254,234,103, 41,105,168,163,233,107,184, 0,119,100,203, 79, 58,212, 98, 73,191, +181,179, 59,119,238,252,173,209,104,108, 30, 34,209, 42,245,233,116, 84,114,156,239,121, 64, 49, 87,132, 16,232,205,102,104,163, +204,208,153,205,181,230,133,130, 16,162, 22, 17,242, 60,175, 62,116, 22, 44, 88, 0,179,217,140,187,238,186,235,130, 42,185,187, + 13, 22,143,175, 53, 7, 0,141, 80,231,161,197,139, 34,142,198, 52, 6, 39,138, 16,164,240, 34, 4,229,229,229,224,121, 30,207, + 62,251, 44,242,242,242,212,102,244,222, 77,235,149,101, 25,127, 14,222,149,220,107, 69, 85,163,162,212,243,211,123,122,168, 58, +137,132, 16, 64,114,185, 91, 11,234,220,245, 32,149,200,149,221, 20,253,209, 85, 87, 93,165, 68,174, 56,163,209, 24,178,213,172, +162,233, 93,223,208,215, 92, 41, 81, 82,229,191,211,233, 12,235,156, 87, 12,214,252,249,243,131,190,140, 40,219, 13,247, 60,229, + 56, 14,235,215,175,199,206,157, 59,113,239,189,247,194, 96, 48,224,205, 55,223,132,203,229,194,244,233,211, 97, 48, 24,160,213, +106, 67, 11, 49, 24,140,191, 50,113,138,193,241,152, 36, 0,181,235, 92,121,155,160, 64, 69,133,158,136,211,250, 16,219,250, 6, +110, 99,230, 23, 37,146,230, 61,205,119,187,128,199, 96,249,126,203, 75,171,213, 54,223,184,113, 99,166, 44,203,144, 36, 9,193, +126,237,118, 59,110,189,245,214,176, 59, 29,149,157,110,131,197,249,180,148,211, 69, 71, 65,107, 62,255, 0,243,122,136,133,188, +139, 43, 17, 44,111,131,245,236,179,207, 66, 16, 4,204,159, 63, 31, 0,240,216, 99,143,213, 59,130, 69,101, 96,147,180, 22,105, +115, 59,129,126,164,199,233,245,251, 32,138, 34, 82,122, 12,132,156,253, 55,148,106,163, 97,242,212,171, 10,167,216,177,180,180, + 20,191,253,246, 27, 8, 33,120,228,145, 71,130,154,171, 85,171, 86,177, 58, 88,127, 2,138,193,226,120,119, 32,201,223,249,233, + 61, 61,156,243,147,186, 92, 16,117,186, 90,173, 5,203,202,202, 62, 58,122,244,232, 22, 0,100,220,184,113,177, 70,163, 17,239, +191,255,126, 13, 0,205,210,165, 75, 13,161, 52,189,235,241,249, 70,174,124, 13,150, 36,133, 46,194, 86, 94, 42,194,137,246,214, +199, 96, 41,231, 55, 33, 4,146, 36,169,145, 43,167,211,169,142,235,116,186,144, 58, 12, 6,227,202, 39,196,119, 69,207,250,212, +115, 34, 62,145,166,179,158,117,107, 25, 43,239,226, 64,175,255,222, 81, 17, 69,215,238, 83,116,232, 59, 93,249, 45,157, 53,107, +214, 15, 74,228,202,107,122,173,116, 0, 1, 34, 88, 28,199,193,102,179, 97,239,222,189,193,247,198,249,229,195,238,116, 52,161, +219,213, 24,243, 91, 57, 8, 33, 88,217,187, 61,244,102, 51, 52,102, 19,114,190, 88,171,222,176,139,242, 30,135,198,100, 70, 66, +175,129, 33,245,148, 27,183,175,193, 42, 43, 43,131, 40,138,120,241,197, 23,193,113, 28, 94,122,233, 37,164,167,167,163,184,184, + 24,125,250,244, 9,169,233,116, 58,193,201, 28,244,119,198, 67,255,207, 40,112,247,182, 66,214,141,255, 68,121,101, 51,236,182, +155,208,182,250, 0,226,190,127, 14, 14,217, 21, 86, 55, 13,132, 16,184, 92, 46,252,240,195, 15, 16, 69, 17, 46,151, 75,125,248, + 80, 74,213, 94,242,149, 78, 29, 95,122,233,165,176,246, 39, 35,178, 52,190,225,102,220,113,178, 6, 0,240,109,206, 85,208,153, + 76,208, 70,153,209,235,171,245,234,249,121,120,230,163,208,152,204,136,237,222, 59, 44,205,118,247, 63,134,182,247, 61,138,146, +146, 18,203,128, 46, 89,235,203,121,221,135, 29, 58,116, 80,235, 92, 25,141, 70,232,245,122,226, 25, 15,233,212,189, 77,121, 40, +115,165,252, 15, 7,167,211, 89,167, 21,174, 63,194, 45, 34, 84,224, 56, 14,119,221,117, 23, 82, 83, 83, 49,103,206,156, 90,145, +171, 39,159,124, 18, 78,167, 19,179,103,207, 14, 91,143,193, 96,252, 37, 9, 88,164,231,135,238, 94,102, 41,212,122,129,230,215, +103,123,126,241,123,231,181,217,108, 69,253,251,247,247,187,130,205,102, 75,215,233,116,181,238,174, 74,167,163,190, 69,133,132, +144, 14,148,210, 2,239,101,149, 74,196, 74,107, 44,157,217, 12,173, 79,177,139,214, 28, 5,209,100, 6,231,231, 38,238, 79,211, + 95, 4, 75, 41, 58, 41, 47, 47,135, 40,138,152, 51,103, 14,162,163,163, 97,179,217,252, 85,176,247,171,201,243, 60,106,126,171, +193,145,103,118, 67,103, 58,136, 54, 3,163, 16, 37, 30, 66,235, 31,151,194,229,178, 3, 94, 69,134,225,104,182,105,211, 6,207, + 62,251,108,157,238, 25, 2,209,173, 91,183,144,154, 23, 11,211,244,175, 73, 8,129, 46,202, 12,125, 84, 84,192,243, 83,240,211, +119,147,175,166, 50, 95,137, 92, 85,105,140, 31, 30, 61,114,100, 11, 0,110,220,184,113, 49, 70,163, 17,243,230,205,171, 1,192, +189,240,194, 11,198,166, 77,155,214, 57, 33,252,165,147,227, 56, 44, 88,176,160, 78,157,171, 64, 6, 43,156,116,186, 92,174, 58, + 6,107,212,168, 81,117, 58, 26, 13, 20,193,242,151, 78,165,174, 90,163, 70,141, 96, 52, 26,213,207,110,233,245,122,232,245,122, +181,119,248, 64, 69,173, 87,194,185,196, 52,153, 38,211,252,195,185,104,115, 20, 9,252, 26,172,159,127,254,121, 72,160, 21,114, +115,115, 15,108,220,184,177,181,247,183, 9, 93, 46,151,198,102,179,101, 14, 31, 62, 60,228,171,178, 44,203,208,233,116,160,148, +162,243,211,121,238, 87,120,238,124,145, 32,165, 20,177,185, 3, 64,120, 30,146, 36,195,233,116,134,108, 69,104,181, 90,107, 85, + 64,247,215,124,189,170,170, 42,104, 63, 63,190,154, 22,139,165, 86,189, 46, 34, 81, 28, 94,189,164,110,107, 66,207,118,194, 69, +175,215,215, 42, 54, 9,149,148,176,133, 25, 17, 65,233,192,147, 82,138,172, 7,167,184, 35, 69, 60, 87,107,126, 76,247,222, 32, +130, 8,217, 93,111, 41, 84,195, 16,114,246,236, 89,203, 77, 55,221,180,142, 82,250,193,240,225,195,127,133,187,130, 37, 53,155, +205, 58, 81, 20,101, 0,191, 3,160,231,206,157,139, 57,113,226,132,108,181, 90,155,132, 74,231,250,245,235,113,240,224, 65,116, +237,218, 85,141,124, 42,131, 82,124,127, 33, 17, 44,223,174, 24,124,199,195,237,166,193, 27,142,227, 16, 19, 19, 3,173, 86,139, + 23, 95,124, 17, 26,141, 6, 6,131,187, 20,116,246,236,217,234, 62,103, 48, 24,140, 43,137,122,127,176, 89,150,101, 62, 80,241, + 97,168,162, 66, 73,146,142, 95,125,245,213,245,221,222,233, 96,243, 41,165,199,127,252,241, 71,141,119,132,193,251, 55,192,180, +144,154,219,182,109, 83,155, 83, 5,211,244,250, 31, 84,211, 55,239,225,212, 95,113,185, 92, 39, 66, 46,196,136, 24, 46,151,235, +120,143, 30, 61,252,207,124,214,127,145,173, 36, 73, 65,143,187,211,233,252, 95,102,102,230, 73,179,217,252, 77,114,114,114,233, +198,141, 27, 19,186,119,239,158,224,189, 76,247,238,221, 83,125, 86,179, 35, 72,247, 36,132,144,227,119,220,113,135, 38,196,249, +232,251, 63,112,215,240, 30,205,194,194, 66,141,247, 58,161,126, 41,165, 65, 53, 61,252,118,253,245,215,115,254,174, 33, 95, 36, + 73,242,219,108,154,193, 96, 48, 46, 71,234,109,176,172, 86,235,177,254,253,251,251,109,247, 93, 83, 83,115,212,223,116,133,194, +194,194,236,250,110, 47, 20,199,143, 31,207,185, 28, 52, 27, 34,239,140,200,210, 16,199,168,176,176, 48,128, 99,187,112,142, 30, + 61, 26,241,243,179, 33, 52, 1, 96,207,158, 61, 61, 27, 66,151,193, 96, 48, 46,117,234,109,176,194,237,142,129,193, 96, 48, 24, + 12, 6,227,175, 74,232,190, 5, 24, 12, 6,131,193, 96, 48, 24,245,130, 0,232,224,111, 70,125, 90, 7, 16, 66,252,106, 4, 35, +148, 62,211,100,154, 76,147,105, 50, 77,166,201, 52,175, 60,205, 80,218,151,112,235,196,122, 65, 66,245, 68,125, 81,226,151, 73, +211, 80,166,201, 52,153, 38,211,100,154, 76,147,105,254,185,154, 87, 26,172,136,144,193, 96, 48, 24, 12, 6, 35,194,212,187,146, + 59, 35, 50, 16, 66,120, 74,105,216, 61,224,135, 65, 44,128, 64, 31,116,179, 3, 40,187, 64, 93, 45, 0,209, 51, 0,238, 79, 12, + 56, 61,154, 12, 6,227, 10, 34, 59, 59,123, 2,165,116, 6,220, 95,129,122,113,251,246,237,111,253,217,105, 98, 48, 46, 87, 2, + 26,172, 86,173, 90,109,231, 56, 46,195,223, 7,136, 3,245,139, 35, 73,210,241,125,251,246,133,213,212,157, 16, 34,164,166,166, +142, 50,153, 76,215,241, 60,159,235, 89,127, 99,117,117,245, 15,197,197,197,159, 83, 74,253,118, 5, 17,138, 22, 45, 90, 68, 91, +173,214, 91, 9, 33, 99, 1,128, 82,250,137, 94,175,255,207,225,195,135, 43, 46, 68,143, 16,210, 42, 37, 37,229, 19, 81, 20,249, + 99,199,142, 93, 7, 0,141, 27, 55,254,193,110,183, 75,103,206,156, 25, 75, 41, 61, 88, 79, 61, 78,163,209,228,245,238,221,187, + 23, 33,228, 99, 74,233, 59, 23,146, 46, 63,232, 56,142,251,205,223, 12, 89,150,155, 94,128,158, 6, 64,204,236,217,179,227, 23, + 46, 92,216,165,184,184,184, 35, 0,164,166,166,238, 30, 55,110,220,207, 15, 63,252,240,239, 0,202, 1, 56,130,170, 48, 46,121, + 50, 51, 51,183,115, 28,151, 81,159,190,228,136,251, 19, 85,199,247,236,217,227,247,122,207,204,204,220,206,243,124, 70, 48, 13, +127,255,101, 89, 62, 92, 88, 88,232,183,203,136, 54,109,218,108,230,121,190,121,168,180,249, 75,103,160, 46, 56,218,180,105,179, +157,231,249,140,250,106,202,178,124,184,160,160, 32, 80, 58, 47, 72,243,143, 78, 39, 0,244,237,219, 87, 87, 93, 93,253,137,217, +108,238, 84, 93, 93, 61,129, 82, 58,109,237,218,181,201, 28,199, 97,192,128, 1,211,178,179,179,143,232,116,186,185, 86,171,245, +103,179,217, 60,102,237,218,181,182, 64, 90, 12, 6,163, 54, 1, 13, 22,199,113, 25, 59,119,238, 76, 50,153, 76, 0,160,126, 47, + 79,233, 37, 90, 25, 40,165,160,148,194,229,114,161,111,223,190, 97,109, 52, 35, 35,163, 67,155, 54,109,150, 60,240,192, 3, 77, +110,188,241, 70,109,114,114, 50, 8, 33, 56,117,234, 84,102,126,126,254,237,115,230,204,121, 54, 35, 35,227,150,227,199,143,135, + 91, 81,142, 75, 77, 77,237, 15,224,206, 14, 29, 58,140,124,236,177,199, 52,185,185,185,144, 36, 9,223,127,255,125,239,215, 95, +127,125, 78, 90, 90,218,151, 0, 62, 42, 46, 46, 94, 67, 41,149,195,212,237,210,188,121,243,255,172, 95,191,190,121, 81, 81,145, + 52, 98,196,136,143, 1, 96,227,198,141,157, 40,165, 36, 55, 55,247, 91, 66,200,173,148,210,159,195,202,184,155,225,147, 38, 77, +186,229,254,251,239, 79,156, 48, 97,194, 56, 0,239,120,182,165,124,228,178,190,149,226,212,200, 21,165, 84, 19,100,185,100,132, + 31,201, 50, 29, 62,124, 56, 54, 55, 55,247,254, 51,103,206, 76,246,214, 61,125,250, 52,118,237,218,229,120,233,165,151, 94,223, +184,113,227,219, 45, 90,180, 40, 3, 80, 93,207, 52, 51, 46, 33,120,158, 79,223,190,125,123,146,209,104, 84, 63,228,238,125,157, + 43,215,184,247,169, 73, 41,197,181,215, 94, 27, 76, 51, 99,199,142, 29, 73, 6,131, 65,189,119, 4,211,243,210, 12,104,216, 57, +142,107,186,109,219,182, 36,163,209, 8, 74,105, 72, 61, 66, 8, 40,165, 65,191, 61,170,164, 83,175,215,135,165,169,144,155,155, + 27, 48,250, 92, 95, 77, 37,157, 61,123,246, 12,120,237,243, 60,159,177,115,231,206, 36,229, 43, 24,245, 72,103,208, 23,160,234, +234,234, 79, 62,255,252,243, 17,201,201,201, 24, 62,124,248,202,246,237,219,107,141, 70, 35,190,253,246, 91,100,100,100, 52,138, +142,142,254,239,172, 89,179,240,234,171,175, 54, 89,181,106,213, 98, 0, 35,130,233, 49, 24,140,243, 4, 51, 88, 48,153, 76,248, +244,211, 79,253,126,126,198,247,127,211,166, 77,195,218, 96, 74, 74, 74,118,179,102,205,214, 45, 93,186,212,144,148,148,164, 78, +119, 56, 28,136,142,142,198, 93,119,221,165, 29, 48, 96, 64,235,219,111,191,253,167,148,148,148, 62,167, 78,157,218, 30, 76, 47, + 53, 53,117,100, 86, 86,214, 91,147, 39, 79, 78,190,233,166,155, 16, 23, 23, 87,107,254,176, 97,195, 48,116,232, 80,205,225,195, +135, 71,127,254,249,231,163, 63,254,248,227, 83,169,169,169,147,138,139,139,191, 12,166,107, 50,153, 6,116,238,220,249,253, 53, +107,214,100,196,198,198, 34, 45, 45,141,123,230,153,103, 58,180,108,217,210,144,154,154,202,157, 60,121, 18, 95,126,249,101,203, +113,227,198, 45,211,235,245, 19,172, 86,235,154, 80,121, 39,132,104,227,227,227, 31,255,231, 63,255,153, 80, 89, 89,233,218,185, +115,231, 65,101,186, 78,167,155,118,205, 53,215,116, 37,132,124, 70, 41,253, 40,148,150, 23,106,228,138, 82, 90,129,243, 69,121, + 10, 78,101,126,152,145, 44,237,206,157, 59,227,114,115,115,191,178,217,108, 93,255,254,247,191,159,120,229,149, 87,180,209,209, +209,209, 0, 72, 89, 89,217,185,231,159,127, 94,122,243,205, 55,159,104,223,190,125,255,141, 27, 55,142,232,218,181, 43, 43, 50, +188,204, 49, 26,141, 88,190,124,185,223,207, 76,249,187,230, 99, 99, 99, 67,126,141,192, 96, 48, 96,213,170, 85,234,122,222,159, +150,242,247, 63, 54, 54, 22,148,210,160,162,122,189, 30, 27, 54,108, 80, 63, 3, 20,232,190,164,252, 26,141, 70, 16, 66,130,214, + 53,213,235,245, 88,183,110, 93, 72, 45,229,215,108, 54, 3, 64,224,143,136,122,165, 51, 84,158,149,255, 38,147, 41,228,254,212, +233,116,170,166,183, 70,160,113,207,203,113, 80, 81,131,193,208, 41, 57, 57, 25, 91,182,108,193,115,207, 61,167,205,202,202,194, +129, 3, 7,192,113, 28, 38, 76,152,128,246,237,219,227,212,169, 83,104,223,190, 61, 54,108,216,208, 37,104, 2, 25, 12, 70, 45, + 66,214,193, 10,116,131,245,253, 15,212,253, 12,134,111, 11,131,102,205,154,233,204,102,243, 23,203,151, 47, 55, 36, 36,156,255, + 90,136,221,110, 71,101,101, 37,170,170,170, 80, 89, 89, 9,147,201,132,185,115,231, 26,198,142, 29,251, 69,179,102,205, 50,139, +138,138,108,129, 52, 9, 33,175,239,218,181, 43,217,229,114, 65,171,245, 95, 5,137,227, 56,180,106,213, 10,147, 38, 77, 66,175, + 94,189, 82, 70,143, 30,253, 58, 0,213, 96,249,107, 9,145,154,154,250,246,198,141, 27, 51,180, 90, 45, 14, 28, 56,128,227,199, +143, 99,226,196,137, 77,101, 89,198,177, 99,199,112,224,192, 1,156, 60,121, 18,239,189,247, 94,198,216,177, 99,231, 2,104, 29, + 44,239, 30,238,121,228,145, 71, 90,199,197,197,113,175,188,242, 74,121, 85, 85,213,123,158,233, 83,103,207,158, 61,166, 79,159, + 62,137,127,255,251,223, 41, 33,228, 83, 74,105, 29,195,226,163,233, 47,114, 37, 81, 74,247,249,172,214,214, 39,178,149, 12,247, +183,240,202,253,104, 18, 0,209, 67,134, 12,121,212,102,179,117,253,241,199, 31, 15,246,234,213,171, 41,128, 98, 74,233, 89, 0, +136,139,139, 51,189,241,198, 27,201,195,134, 13,251,117,192,128, 1, 93,135, 12, 25,242,232,217,179,103,103, 0, 40,129,231,243, + 46, 13,209,178,132,105, 54,156,166,167, 40, 9,130, 32,224,250,235,175, 7, 33,196,239,247, 54, 55,111,222,140,254,253,251, 67, + 20, 69,220,125,247,221, 97,107, 14, 30, 60, 24, 46,151,171,142,158,175, 1, 33,158,111,116, 6,203, 59,165,180,214, 55, 66,253, +153, 11,239,193, 87,207,159,166, 44,203,126,181, 2,153, 44, 66, 72,208,123,157,119,222,195, 53,151,161,210,233,173, 41,138, 34, +114,114,114,176,115,231,206,160,102, 43, 84, 58, 1,160,186,186,250,206,225,195,135,175,156, 56,113,162, 30, 0, 74, 74, 74,106, +125,136,126,255,254,253,176,217,108, 88,180,104, 17,108, 54,219,189,117, 18,233, 71, 51, 18, 48,205,191,166,102, 8, 68, 0,157, + 1, 36, 2,144, 0, 84,194,253, 28,180,195,253, 44, 44, 5, 96,240, 12, 54, 0, 85, 0, 26,121,214, 45,129,251,249,230,253,153, +178,179,168,253, 81,232,238, 30,109,229,147, 93,137, 94,243,148,109,248,142,251,254,214,210,230, 0,128, 16, 66, 61, 67, 31,101, +174, 18,182, 14,199, 92, 41, 55,199, 80, 80, 74, 31,152, 58,117,106,178,183,185,178,217,108,168,168,168, 64,101,101,165,250,123, +224,192, 1,104,181, 90,140, 26, 53, 42,153, 82,250, 64, 8, 89, 13,207,243,216,185,115, 39,150, 46, 93,138, 35, 71,142,212, 89, +224,208,161, 67,120,227,141, 55,240,234,171,175,162,162,162, 2,112,215, 47,242, 75,231,206,157,159, 27, 59,118,236, 79,125,251, +246,213, 9,130,128, 93,187,118, 33, 51, 51, 19,155, 54,109,194,209,163, 71,113,238,220, 57,236,223,191, 31, 29, 58,116,192,193, +131, 7, 81, 81, 81,129,172,172, 44, 93,183,110,221,126,108,214,172,217,115,129,116, 9, 33,154,244,244,244, 39,255,249,207,127, +234,138,139,139,229, 5, 11, 22,108,164,148,110, 34,132, 76,124,234,169,167,198, 15, 30, 60, 56,113,223,190,125, 21,219,182,109, +219,238,207, 92,249, 65,199,113,220, 81,142,227,126,163,148, 86, 80, 74, 45,112, 87, 62, 87,241, 20,221,218, 44, 22, 75,121,105, +105,105, 9,199,113,191,113, 28,119, 0,128, 46,144,230,184,113,227, 90,150,148,148,220,255,240,195, 15, 31,233,213,171, 87, 83, + 74,233,126, 74,105, 41,220, 39,172,205,229,114,149,150,149,149,253,154,155,155,155, 58,102,204,152,131, 37, 37, 37,247,143, 27, + 55,174,101, 16, 77,198,165, 15,149, 36, 9,162, 40, 98,237,218,181,216,176, 97, 3, 54,108,216,128,141, 27, 55, 98,211,166, 77, +216,188,121, 51, 54,111,222, 12, 65, 16,176,105,211, 38,108,218,180, 9,147, 38, 77, 10,121,205, 75,146, 4, 65, 16,176,110,221, + 58,108,221,186, 85, 29,182,109,219,134,173, 91,183,194, 96, 48,132, 52, 67,222,120,234, 41, 5, 52, 83,111,191,253,182,106, 14, +149,123, 19,199,113, 65,163, 98,190,198,197,215,176, 52,109,214,172,206,188, 80,233, 4,160,106,254,251,223,255,198,137, 19, 39, + 48,103,206, 28, 28, 58,116, 8, 47,191,252, 50, 10, 11, 11, 49,125,250,116,108,219,182, 13, 83,167, 78,197,143, 63,254,168,124, +252, 61,104,245, 0,197, 8,230,228,228,192,225,112,168,233,217,191,127, 63,102,206,156,137, 93,187,118, 97,218,180,105,216,188, +121, 51, 30,127,252,113,240,124,208, 32, 27,178,179,179, 39, 16, 66, 62,111,211,166,141,174, 95,191,126, 16, 4, 1, 51,103,206, +148,167, 77,155,118,230,169,167,158, 58,147,159,159, 79, 91,182,108, 9,187,221,142,168,168, 40, 80, 74, 63,202,206,206, 14,117, + 63,102, 48, 46, 24,127, 94,196,139,107,167, 78,157,218,143, 16,146,159,147,147, 51, 14, 64, 44, 33, 36, 31,128,214,243,155, 48, +117,234,212, 30,132,144,252,169, 83,167,102, 3,104, 68, 8,201,247,140, 95, 7, 32, 65, 25,247, 44,239,109,160, 68, 0,137, 94, +211, 19,125,150,213,250, 27,247,253,245,213, 86, 35, 88,148, 82,226,185,192,213,155,145,114,211, 13,215, 96,133,186,225,154,205, +230,161, 67,134, 12, 81,205,141,205,102,171, 21,185, 82,126, 43, 43, 43,241,235,175,191,162, 67,135, 14, 26,179,217, 60, 20,192, +191, 66, 29, 24, 65, 16,144,150,150,134,146,146, 18, 20, 20, 20,160,105,211,166,112, 58,157, 88,177, 98, 5,202,202,202,160,209, +104,160,209,104, 96,183, 7,247, 46,109,219,182,189,126,225,194,133,217, 31,127,252,241, 57, 65, 16,176,127,255,126,124,242,201, + 39,160,148,162, 81,163, 70,168,169,169,193,153, 51,103,240,250,235,175,195,225,112,192,108, 54, 35, 61, 61, 93,255,192, 3, 15, +244,122,254,249,231, 69, 0,207, 5,144,190,122,228,200,145,209, 81, 81, 81,120,232,161,135,100,135,195,241, 42, 33,228,154,145, + 35, 71, 62, 57,105,210,164,248,162,162, 34,251, 61,247,220,179,221,225,112,188, 14, 0,132, 16,145, 82,234, 12,160, 5, 32,120, +228,202,229,114, 41,251,244, 72,101,101, 37,146,146,146,154, 80, 74, 53, 33,142,145,102,211,166, 77, 57, 0,248, 23, 94,120, 65, + 79, 41, 61, 13, 47,211,230,112, 56, 20, 77, 87,121,121,249,153,199, 31,127,220,181,120,241, 98,222,179,206, 94, 0,214, 96,226, +140, 75, 19,197,184,136,162,136,235,175,191,190,150,161, 88,191,126, 61,134, 12, 25,162, 94,239, 26,141, 70, 93, 46,148,166,119, + 84, 76,137, 60, 41,186, 63,252,240, 67,157,200, 75,152, 47,105,106,132,197,159,241,241, 53, 93,202,139, 98, 48,252, 69,155,188, + 35,243,254, 34, 67,225,164, 83, 20, 69, 76,154, 52, 9,130, 32,224,241,199, 31,135, 40,138,232,220,185, 51, 4, 65, 64,207,158, + 61, 33, 8, 2,174,187,238,186,176, 95, 80,149,116,110,222,188, 25,221,186,117, 83,211,211,185,115,103,116,239,222, 29,130, 32, +160,119,239,222, 16, 4, 1,131, 6, 13, 10,169,169, 84,104, 55,155,205,248,245,215, 95,193,243, 60, 8, 33,165, 59,118,236, 72, + 6,128,231,158,123,174,196,106,181, 38, 88,173, 86,244,239,223, 31, 57, 57, 57,137,139, 23, 47,126, 6, 0,107, 89,200,104, 48, +252,121, 17, 15,186,188,188,188,153,148,210, 97,129,214, 85,230, 19, 66,242,103,205,154, 53,204,163, 87,103,220,179,184,247,199, +229,175,157, 58,117,106,150,215,248, 89,101, 61,239,237, 5,219,182,207,242,103, 1, 47,131,229,201, 80, 95,175,113,191, 6, 43, +144,209, 10,231, 6, 97,181, 90, 59, 43,209, 43,171,213, 90,203, 80, 85, 85, 85,213, 50, 90,118,187, 29, 45, 90,180,128,213,106, +237, 28, 82,216, 11, 66, 8, 82, 83, 83,225,112, 56, 48,127,254,124,213, 88, 41, 56, 28,193, 27,189,237,217,179,231,200, 79, 63, +253,212,181, 91,183,110,113, 95,125,245,213,217, 1, 3, 6, 36, 14, 30, 60, 24,122,189, 30, 86,171, 21, 46,151, 11, 87, 95,125, + 53,218,182,109,139, 51,103,206,224,219,111,191, 45,201,204,204,108,180,101,203, 22,249,212,169, 83,191, 5,145,238,223,191,127, +127, 16, 66,240,237,183,223,254, 78, 41,221, 97, 48, 24,190,156, 57,115,102,172,205,102,147,199,143, 31,127,236,247,223,127,127, + 28,128, 83,167,211,253,107,224,192,129, 87,243, 60,255,153, 36, 73,245,190,153,217,108,182, 90,251,182,178,178, 18, 70,163, 49, +156, 46, 33,196,178,178,178,142, 0, 96, 52, 26,227, 1,168,249, 47, 19, 36, 0, 0, 32, 0, 73, 68, 65, 84, 45, 36, 45, 22,139, +122,140, 60,199,199, 26, 31, 31,111, 2, 0,207, 58,190,117,191, 24,151, 17,202,195,123,237,218,181,181,174,111, 37, 2,229,123, +205,107,181, 90, 44, 95,190, 60, 44, 77,111, 51, 21, 70,113, 94,208,104,147, 98,176, 4, 65,192,123,239,185, 75,216, 31,122,232, + 33,117,125,223,109,132,194, 59, 82, 47, 8, 2,218, 62, 43, 3,112,224,248,107,122,136,162,251,148,246, 77, 51,128,176,163, 98, +115,230,204,193,176, 97,195,144,159,159, 31,244,119,232,208,161, 97,165, 83, 16, 4,232,116,238, 96,177,146,158, 93,187,118,249, +213,157, 55,111, 94,200, 58,109,178, 44,227,155,111,190, 1,199,113,181, 34, 94,207, 60,243,204, 63,163,163,163,205,235,214,173, +195,233,211,167, 81, 93, 93,141,170,170, 42,196,197,197,197, 14, 24, 48, 96,215,169, 83,167,138,246,236,217,195, 42,188, 51, 34, +142,175, 23,241,194, 50,101,202,148, 39, 9, 33,249, 83,166, 76,121,114,214,172, 89,133,158,229,243,125,214,207,247,179,110,173, +249, 30, 19,164, 20, 15,118, 71,109,243,166, 20, 29,222, 16,100, 93,187,143,161,242, 45, 34,220, 6,132,136, 96,249,214, 77, 8, +246,223, 19,226, 14,150, 47,200,178, 44, 16, 66,234, 24, 0,127, 17, 44,167,211,137,210,210, 82,200,178, 28,209,190,186, 66, 25, +172,130,130,130,187, 38, 76,152,112, 50, 38, 38,166, 83,105,105,105,177, 78,167,235,189,126,253,250,198, 78,167, 19,209,209,209, +136,142,142,198,127,255,251, 95,196,196,196,224,225,135, 31, 62,106,177, 88, 54,153, 76,166,100,139,197,242,203,169, 83,167,158, + 14,164, 43,138, 98,255,222,189,123, 99,199,142, 29, 40, 43, 43,251,158, 16,210,233,239,127,255,251,160,198,141, 27,147, 25, 51, +102, 88, 15, 30, 60,248, 22,128,179, 38,147,233,223, 11, 23, 46,236,211,181,107, 87,243,248,241,227, 65, 8,121,159, 82, 26,118, +100,168,166,166,166,150,177, 82,246,105, 84, 84, 84, 88,125,110,121,246, 55, 37,132,168, 13, 26,189,141,149,151, 1,166, 60,207, +203, 0,104,164,143, 17,227,143, 69, 49, 4,162, 40,226,198, 27,111,172, 83,185, 93,163,209, 96,229,202,149,184,249,230,155,213, + 23,150,110,221,186,133,212, 85, 12,193, 77, 55,221, 4,192,109, 8, 86,174, 92, 25,208, 96,133, 42,210, 2,106, 71,155, 30,124, +240, 65,136,162,136,183,222,122, 11,147, 39, 79, 6,207,243,120,237,181,215,192,113, 28,158,121,230,153,176,243,239, 93, 68,120, +228, 37,247,111,198, 35, 21, 40,125, 39, 25, 0, 16, 21, 29,237,206,143, 28, 86,227,227, 90,121, 15, 21,185,242, 54, 86,161,138, + 8,189,163,128, 7, 14, 28, 80,255,247,236,217,179, 86,228, 74, 16,132,144,134,205,179,189,233,253,250,245,155,145,145,145,145, + 52,113,226, 68, 34, 8, 2,178,179,179, 27, 77,155, 54,173, 92, 20, 69,253, 99,143, 61,230,175, 42,133, 8,160, 83,187,118,237, + 76, 97,239, 12, 6,163, 30, 4,137, 96,217,102,205,154, 85, 56,107,214, 44,191, 17, 42,175,245,135, 5, 51, 89, 94, 81,168,238, +112, 27,161, 68,197,180,193, 93, 21,102, 91, 24,235,106, 21,115,229, 27,229,242,198, 55,130,245,188,247,204,112, 13, 86, 56,245, + 39, 0,192,104, 52,238, 46, 41, 41,233,169,211,233, 80, 81, 81, 81,231,161,237,109, 10,120,158,199,153, 51,103, 96, 52, 26,119, +135, 20,174, 7,161,138, 8, 61,102,230, 81,101,156, 16,210,125,212,168, 81,139, 63,251,236,179, 22,171, 87,175,198,150, 45, 91, +208,168, 81, 35,204,156, 57,243,112, 81, 81,209, 24, 74,105,192,131,225, 77,203,150, 45,219,155,205,102,108,220,184, 17, 0,126, + 4,112,231,125,247,221, 71, 28, 14, 7,230,206,157, 91, 3, 96,117, 76, 76,204,151, 75,150, 44,233,212,169, 83, 39,221,234,213, +171, 43,183,108,217,178, 54, 76,115, 37, 81, 74,253, 26,171,202,202, 74, 84, 87, 87,195,108, 54,135, 99,176, 92,209,209,209, 5, +149,149,149,183, 90, 44,150, 10,157, 78, 23, 85, 81, 81, 97,243,142, 48, 86, 85, 85,161,186,186, 26,130, 32,136, 7, 14, 28, 56, + 9,160,101,116,116,116, 1,128, 11,234,183,140,241,231,195,113, 28, 85, 76,198,234,213,171,253, 94,235,162, 40, 98,197,138, 21, +181,174,247,111,191,253, 54,160,166,119, 20, 71,105, 73, 24, 42,130,165,172, 26, 42,189,162, 40,130,231,121,188,243,206, 59,160, +148,170,145, 43,142,227, 48,101,202, 20,232,116, 58,188,248,226,139,152, 50,101, 74, 88, 81, 44,239,168, 88,243, 39, 44,234,116, +101, 93,135,221,238,142,210,115,156,183,201, 10, 43,210, 22,170,130,123,184,248, 70,218,116, 58, 93,192,202,237,190,171, 6,210, +220,190,125,251, 7, 93,187,118, 61,152,152,152,184, 42, 39, 39, 71,183,125,251,118, 76,154, 52,137,216,108,182,232,213,171, 87, +171,219,245,133, 82,138,234,234,106,125,216,137,103, 48,234,129, 63, 47,226, 33, 78, 49, 78, 30, 51, 20,174, 94,190,247,242,138, +134,175, 41,242, 68,196,214,135,210,242,183,110, 32, 4,207,194,117,174, 34,223,155, 68, 40,163, 21,206,219,167,197, 98, 89,179, +118,237,218,238, 55,223,124,179, 16,172,120,176,170,170, 10,201,201,201, 56,116,232,144,203, 98,177,132,236,254, 64,146,194,239, + 16, 61, 84, 4,203, 23, 74,233,182,172,172, 44,151,195,225, 64,235,214,173,145,158,158, 14,139,197,130, 55,222,120,195, 21,174, +185, 34,132,104,178,179,179,121, 0, 40, 47, 47, 7,220,173, 29, 50, 51, 51, 51,177, 99,199, 14,156, 59,119,110, 25,128,254,207, + 63,255,124,151,107,174,185, 70,243,217,103,159,213,220,123,239,189,203,156, 78,231,140,112,244,101, 89,182,187, 92,174,230, 28, +199, 57,202,202,202, 78,120, 27,171,228,228,228, 56,179,217,204,157, 57,115, 38,104,125, 46, 15,142,142, 29, 59,110, 61,126,252, + 56, 94,120,225,133,179, 51,103,206,204,172,172,172, 60, 87, 94, 94,238, 82,140, 85, 69, 69, 5, 44, 22, 11,151,152,152,168,155, + 55,111,158, 17, 0, 58,118,236,184, 21,172,195,209,203, 26,223, 6, 45,190,230, 42, 84,139,183, 64,154,130, 32, 96,248,240,225, +117, 34, 98,202,176,100,201,146, 90,245,154, 66, 21,189, 41,154,111,191,253, 54, 30,122,232, 33,232,116, 58,204,158, 61,187, 86, + 29, 44,127,171, 6,211, 4,220,166,173,249, 19, 22,156,122, 51, 30,162, 40, 34,225,222,211,181,138, 8,253,228, 45, 44, 35, 56, +115,230,204,136, 20, 17, 42, 8,194,249, 46,113,230,207,159,143, 81,163, 70,225,199, 31,127,188,224, 34,194,230,205,155, 47,124, +227,141, 55,116,123,247,238, 69, 69, 69, 5,206,158, 61, 11,171,213,138, 99,199,142, 41,249,244,187, 94, 77, 77,141, 33,172, 4, + 51, 24,245, 32,196,249,122,214,167,254, 20,241, 46,174, 11,242,235,187, 60,188,166,121,235,158, 69,237,134, 98,222,211,125, 77, +149,239, 54,188,151, 81,235,118, 5,125,133, 82, 34, 88,225, 26,172, 48,138, 8, 95,127,246,217,103,239,239,213,171, 87,124,116, +116, 52, 78,158, 60,233, 55,130, 21, 29, 29, 13,135,195,129,181,107,215, 86,200,178,252,122, 80, 81,192,233,116, 58,145,148,148, +132,146,146, 18,200, 1,194,248, 28,199,193, 96, 48,160,170,170, 10,240,105,109, 23, 10, 74, 41,156, 78, 39, 28, 14, 7, 28, 14, + 7,156,206,122,173, 14, 0, 6,165,195,214,234,234,106, 0,168, 78, 75, 75,107,169,215,235,149, 86,143, 7, 0,244, 27, 60,120, +176, 88, 90, 90, 74,239,185,231,158,205,148,210, 73, 52,120,111,246,246,181,107,215, 54, 3, 0,131,193,112, 0, 0,142, 29, 59, +230, 44, 43, 43, 67, 85, 85,149, 26, 33, 52, 24, 12, 24, 49, 98, 68, 10,165, 20,107,215,174,109,166,209,104, 40, 2,155, 33, 91, +126,126,254,158,152,152,152,197,121,121,121, 99,110,184,225,134,194,142, 29, 59, 54,175,170,170, 58, 83, 83, 83, 99,177, 88, 44, + 84, 16, 4, 77, 66, 66,130,110,213,170, 85, 7, 55,111,222, 60, 48, 58, 58,122,113,126,126,254, 30,184, 67,171,140,203, 16,223, +186, 77,254, 76,149,119, 69,242,112, 53, 1,183, 33, 88,177, 98, 69,208, 40, 78,184,154, 10,130, 32,224,209, 71, 31,197,155,111, +190, 89, 39,130, 53, 99,134,251,157,228,169,167,158,170, 87,132, 72, 16, 4,156,122, 51, 30, 41, 15,254, 94,107, 26, 0, 16, 79, +250,234, 83, 68,168,172, 63,125,250,116,136,162,168, 22,225, 13, 28, 56,176, 86,209, 96,184,198,202, 91,243,204,153, 51, 16, 4, + 1,241,241,241, 24, 51,102, 12, 6, 13, 26, 84, 71, 47, 92,221, 99,199,142,253,252,234,171,175, 54, 73, 79, 79,199,103,159,125, +102, 55,153, 76,218,126,253,250,209,242,242,114, 2, 4,142, 96, 89, 44, 22, 22,193, 98,252,209,132, 21,208,136,160,238, 69,111, + 47,224, 29, 40, 18,221, 52, 16,159,175,109, 23, 21, 21,149,167,166,166,142, 29, 61,122,244, 87,239,188,243,142,161,101,203,150, +216,191,127, 63,206,157, 59, 7,135,195, 1,141, 70,131,180,180, 52, 84, 85, 85,225,139, 47,190,168,169,169,169, 25, 91, 92, 92, + 92, 30, 76,147, 16,242,212,245,215, 95, 63,239,233,167,159,214,183,111,223, 30,231,206,157, 67, 85, 85,149,250,230, 69, 8, 65, +116,116, 52,140, 70, 35, 10, 10, 10,176,121,243,102, 11, 33,228,169, 96,154,190,200,178,172, 26, 43,197,104,133,106,153,228,163, +105, 50, 26,141, 0,220,117,164, 0,184,154, 52,105,146, 12, 64, 49, 88,191,181,104,209,226,233, 86,173, 90,145,133, 11, 23, 82, + 74,233,106,127,230,202, 71,243, 92,159, 62,125,202, 0, 36,219,237,118, 13, 0, 84, 84, 84, 56, 18, 18, 18,146,116, 58,157,172, +211,233,100,189, 94, 47, 23, 23, 23,187, 92, 46,151, 6, 0,250,244,233, 99, 7,112, 26,158,254,170,252,104,202, 0, 42,231,206, +157,251,220,157,119,222,217, 51, 55, 55, 55,235,158,123,238,217,123,239,189,247, 34, 61, 61, 61,174,170,170,202,122,224,192,129, +178,119,222,121,199,186,117,235,214,129,162, 40,254, 54,119,238,220,231,224,238,143, 68, 14,160, 25, 17,152,102,195,105, 42,117, +127,252, 25, 43,239,241, 48,186, 81,168,149, 78,197,180,221,122,235,173,106,235, 67,223,200, 85,125, 53, 1,168, 45, 8,255,239, +255,254,175, 86,250,158,126, 58, 96, 21,200, 90, 55, 39,159,188, 67,201,187, 32, 8, 40,159,159, 94,203,252,133,107,170,252,105, + 10,130,128,105,211,166,133, 29,193,242,173,131, 21, 44,157,125,250,244, 65,117,117, 53, 68, 81,196,202,149, 43, 3, 70,176, 66, +237, 79,131,193, 48,102,217,178,101,159,232,116,186,142,118,187,253,238,146,146,146, 5, 53, 53, 53, 77,202,202,220, 31,124, 8, +116,159,179, 90,173,106,183, 44,151,227, 57,207, 52, 47, 77,205, 43,141,160,175,120, 46,151, 11,141, 27, 55,174,245,109, 43,165, + 50, 59,207,243,106,203,147,112, 90, 16, 42, 20, 23, 23,175, 76, 77, 77, 29, 57, 98,196,136, 69,119,222,121,103, 84,219,182,109, +197,166, 77,155,194, 98,177,160,168,168, 8, 69, 69, 69,174,239,191,255,190,162,166,166,230,246,226,226,226,149,161,244, 78,156, + 56,241,113,114,114,242,138,113,227,198, 77,235,210,165,203,196,201,147, 39,243, 45, 90,180, 64,121,121, 57,226,226,226,144,152, +152,136,162,162, 34,124,241,197, 23, 82, 89, 89,217, 60, 73,146,166,159, 62,125,250,108, 40, 93,159,253,192, 59,157, 78,140, 30, + 61, 26,178, 44, 99,246,236,217,112,185, 92,161,203, 68,207,227,112, 56, 28, 20, 0, 41, 41, 41, 1,128, 26,197,112,253,239,127, +255, 3,128,163,205,154, 53, 51, 3,192,154, 53,107, 8,128, 77, 97,234, 82,120, 69,178,218,182,109, 91, 4,212,190, 41, 42,145, + 43,207,168, 29, 94,230, 42, 0,214, 49, 99,198,156,181,217,108,131, 31,121,228,145,105,243,231,207, 31, 51,127,254,252, 58, 11, + 69, 71, 71, 47,126,237,181,215,166,143, 25, 51,230, 44, 88,247, 12, 87, 4,190,209,170,250, 86, 1, 8,164,249,245,215, 95,251, +141, 96,213, 55,114,165,116, 5,227,175, 69, 98,176,123, 80,168,151, 33, 37,157,190,186,245,185,175,249, 75,171, 32, 8,120,229, +149, 87,212,200,149,119,229,243, 11,137, 96, 41,154,241,241,241, 0, 0,147,201, 4, 89,150, 49,116,232,208, 11,214,245,124, 91, +112,164, 50,158,157,157, 61,253,211, 79, 63,157, 65, 41, 77, 0, 32,120,239,131,112,246, 35,131,193, 56, 79, 64,131, 37, 73,210, +113,229,219,130,222, 6,203,251,215,247,191,203,229, 58, 30,206, 70,139,139,139, 87,180,104,209,162,197,252,249,243, 31, 50,153, + 76, 3,172, 86,107, 71, 0,208,235,245,187,171,171,171, 87,115, 28,247, 70,113,113,113,216, 31,103,246, 24,166, 7, 50, 50, 50, +102,143, 27, 55,110, 70, 78, 78,206, 45,247,220,115, 15, 17, 4, 1,159,127,254, 57, 61,113,226,196, 18,142,227,158, 58,121,242, +228,161,112, 53,189, 49, 26,141,191, 46, 89,178,164,229,215, 95,127, 13,167,211,137,121,243,230, 65,167,211,253, 26,238,250,148, +210,179,130, 32, 44,202,205,205, 29,179,121,243,230,197,148,210, 2,157, 78,247,201,181,215, 94, 59,118,211,166, 77,255,161,148, +238, 21, 4,225,147,156,156,156,177, 91,183,110,253,146, 82,250, 75, 61,146,167, 70,178, 92, 46,255, 37,138,254, 34, 87, 33,168, +152, 48, 97,130, 99,194,132, 9,143,220,114,203, 45,243,119,236,216,113,181,210,125, 67,108,108,236,238,110,221,186,109, 89,178, +100,201,126,184, 35, 87,204, 92, 93,230, 40, 21,210,227,226,226,192,113,156, 58, 40,189,121,215,215, 8, 41,154,148, 82,196,197, +197,249,125, 49, 11,162, 25,212,213, 80, 74, 97, 54,155, 85,205, 48, 91, 47,135, 12, 67,153,205,230, 90,105, 12,131,128,215,146, +146,119,223,116,134, 34, 88, 62, 20, 77,147,201, 4,135,195, 17,182, 38,194,104, 52,224,205,246,237,219, 63, 0,240, 65,235,214, +173,255, 7,160, 21, 51, 85, 12,198,133, 19,208, 96,237,219,183,207,239, 87,221, 35,197,225,195,135, 43, 0, 76,247, 12, 17,225, +248,241,227,135, 0,220,154,146,146,242,175, 77,155, 54, 61, 3, 0,178, 44,191, 16,234,123,134,161,248,229,151, 95,110, 22, 69, +113,238, 71, 31,125,148, 67, 41, 69, 76, 76,204,166,131, 7, 15,222, 87, 31, 13,151,203, 53,145, 16, 50, 89,105, 21,104,179,217, + 38, 18, 66, 30,163,148, 86,123,205, 87,199,235, 9,133,187,178, 93,106,128,249,225, 68,174,124,177, 2,176, 47, 89,178,164, 10, +192, 46,156,239,231,202,233, 25,108,240, 42, 22,100, 92,190,184, 92,174, 19,125,251,246, 21, 66,189, 64,249, 89, 47,224, 11,149, + 36, 73,199,123,247,238, 29,242,165,204, 95, 90,130, 36,245,183,156,156, 28, 46, 92, 45, 5,167,211,121, 38,208, 60, 89,150,143, +247,236,217,211,111, 58,131, 17, 42,239, 61,123,246,172, 87, 26, 61,105, 9,152,247, 11,213, 12,177, 63, 3, 98,177, 88,206, 37, + 38, 38, 86, 89,173, 86,209,102,179,137,190, 17,123,131,193, 80,175, 82, 0, 6,227,175,200, 21,217,127,145,199, 80,221, 24, 41, + 61, 79,125,168,127, 68, 64,199,234, 51, 94, 29,108,188,158,156,187,136,117, 3, 33, 3,176,132, 92,138,113, 89, 83, 80, 80,112, +117,164, 53,247,236,217, 19,241, 23,180,130,130,130,158,161,151,170, 31,133,133,133, 17, 79,231,229,162, 25,140, 19, 39, 78, 68, +252,156, 96, 48,254,106,212, 63,246,207, 96, 48, 24, 12, 6,131,193, 8, 10, 1,208,193,223,140,250,180, 14, 32,132,248,213, 8, + 70, 40,125,166,201, 52,153, 38,211,100,154, 76,147,105, 94,121,154,161,180,175,148,214,137,164, 33, 43, 49, 94, 46, 77, 67,153, + 38,211,100,154, 76,147,105, 50, 77,166,249,231,106, 94,105,176, 34, 66, 6,131,193, 96, 48, 24,140, 8,195, 12, 22,131,193, 96, + 48, 24, 12, 70,132, 97, 6,139,193, 96, 48, 24, 12, 6, 35,194, 48,131,197, 96, 48, 24, 12, 6, 35,162, 16, 66, 72, 70, 70, 70, +159,180,180,180,136,119,175,114,185,112, 69,246,131,197, 96, 48, 24, 12, 6,227,143,167, 73,147, 38,177,146, 36,221,153,150,150, +118, 95,203,150, 45, 91, 2, 64,122,122,122, 1,165,244, 13,131,193,240,201,193,131, 7,237,127,118, 26,255, 40, 26,180, 21, 33, +131,193, 96, 48, 24,140, 43,159,180,180,180, 46, 0,238, 51, 24, 12,183, 95,125,245,213,218,126,253,250, 33, 46, 46, 14, 46,151, + 11,197,197,197,248,254,251,239,177,107,215,174,223,157, 78,231, 92,167,211, 57,247,236,217,179,167,255,236, 52, 55, 52,170,193, + 34,132,172, 3, 0, 74,105,159, 63, 49, 61, 12, 6,131,193, 96, 48, 46, 35, 82, 83, 83, 95, 29, 50,100,200, 35,113,113,113,104, +221,186, 53, 82, 82, 82, 96,179,217, 96,177, 88, 64, 41,133, 32, 8,160,148,162,178,178, 18,219,183,111,199,150, 45, 91, 92, 21, + 21, 21,139, 9, 33,111,156, 60,121,242,103,111,173, 43,201,139, 16, 74, 41, 8, 33, 20, 64, 95, 0,160,148,174,251,115,147,196, + 96, 48, 24, 12, 6,227,114, 33, 45, 45,237,244,154, 53,107,146, 36, 73, 66, 73, 73, 9,108, 54, 27,106,106,106, 84,131,197,243, + 60, 40,165,112,185, 92, 0, 0, 89,150,177,119,239, 94,108,222,188, 25,199,142, 29,123,173,184,184,248, 81, 0, 87,156, 23, 81, + 43,185, 83, 74,215, 93, 9, 25, 98, 48, 24, 12, 6,131,241,199, 98,179,217,176,112,225, 66,148,148,148,160,113,227,198, 72, 79, + 79, 71, 76, 76, 12,244,122, 61, 0,168,230, 10, 0, 56,142, 67, 86, 86, 22,198,142, 29, 11, 66,200, 88,111,157, 43,201,139,176, + 74,238, 12, 6,131,193, 96, 48, 46, 6,167,195,225, 64,118,118, 54,142, 28, 57,130, 29, 59,118,160,107,215,174,104,215,174, 29, + 74, 74, 74,112,242,228,201, 90, 11,111,221,186, 21, 59,119,238,196,181,215, 94,251, 39, 37,247,143, 65, 41, 34,124, 14, 64, 31, +224,202, 40,247,100, 48, 24, 12, 6,131,241,199,144,158,158, 62, 62, 49, 49,241,157,113,227,198, 25, 58,119,238,140,227,199,143, +227,196,137, 19, 56,119,238, 28,186,116,233,130,172,172, 44, 28, 58,116, 8, 43, 86,172,192,206,157, 59,161,211,233,144,145,145, + 1,243,226, 79,241, 77, 90,234,137,147, 39, 79,102, 0,184,226,188,136,119, 37,247, 62,192,149, 81,238,201, 96, 48, 24, 12, 6, +227,143, 35, 45, 45, 45,129, 16,242, 84, 90, 90,218,253,183,223,126,187,216,170, 85, 43, 28, 63,126, 28, 37, 37, 37, 56,119,238, + 28,126,250,233, 39, 0, 64,122,122, 58,210,211,211, 81, 84, 84,132,130,130, 2,139,205,102,187,247,196,137, 19, 31, 43, 58, 87, +146, 23, 97,221, 52, 48, 24, 12, 6,131,193,136, 8,105,105,105,141, 1, 60,223,170, 85,171,241,163, 70,141,226,210,210,210,112, +226,196, 9,124,255,253,247,104,217,178, 37,206,156, 57,131,237,219,183, 75, 21, 21, 21,243, 36, 73,154,126,250,244,233,179,127, +118,154, 27,138, 6,237,201,157, 16,210,129,105, 50, 77,166,201, 52,153, 38,211,100,154,127, 13,205,147, 39, 79, 30, 59,121,242, +228, 93, 7, 14, 28,200,154, 49, 99,198,178,119,222,121, 7, 60,207, 35, 45, 45, 13, 63,252,240, 3, 93,179,102,205,146,170,170, +170, 54, 39, 79,158,124,224, 74, 54, 87, 0,171,228,206, 96, 48, 24, 12, 6, 35,194,156, 58,117,106, 31,128,155,211,211,211,175, + 46, 44, 44,124, 18, 0,100, 89,126,225,212,169, 83,219,255,228,164,253, 97, 48,131,197, 96, 48, 24, 12, 6,163, 65, 56,113,226, +196, 22, 0, 55,254,217,233,248, 51, 96, 31,123,102, 48, 24, 12, 6,131,193,136, 48,204, 96, 49, 24, 12, 6,131,193, 96, 68, 24, +102,176, 24, 12, 6,131,193, 96, 48, 34, 12, 1,224,183, 37, 0,165,180, 32,108,145, 11,104,161, 16, 74,159,105, 50, 77,166,201, + 52,153, 38,211,100,154, 87,158,102, 40,237,250,248,143, 75,153,176,250,193, 34,132, 16,122, 1, 29,102, 17, 66, 58, 68,122, 71, + 49, 77,166,201, 52,153, 38,211,108, 24,205, 11,185,215,251,211, 36,132, 16,229,175,231,151, 2, 64,184,218,127, 84, 58, 27, 66, +179, 33,242,254, 87,209,188,210, 8,218,138,144, 16,194,193, 93,140, 72, 8, 33, 50, 0, 57, 18, 59,202,115, 16,184, 72,233, 49, + 34,143,231, 24,169, 23, 9, 59, 78, 12,198,149, 75, 36,239,245, 94,247, 14, 94,209, 4, 32, 1,144, 8, 33, 23,245,176,109,136, +103,210,165,158,247,191,178,230,229,142, 95,131,165,236,168,196,196,196,149, 73, 73, 73,215,149,148,148,200,158,233, 72, 79, 79, + 7,199,113, 16, 4,193,114,228,200,145,232,250,110, 48, 57, 57,249,253,172,172,172, 59, 75, 75, 75,101,142,227,208,184,113, 99, + 16, 66,192,243, 60,120,158,183, 28, 60,120,176,222,154,145,166, 91,183,110,231,236,118,187,217,119,186, 86,171,181,238,216,177, + 35,234,207, 72,211, 31, 9, 33, 68,200,204,204,188,205,104, 52, 26,148,105, 93,187,118,245, 94,132,238,220,185,115,126,184,122, +205,155, 55,223,106, 48, 24, 98, 5, 65, 0,207,243, 16, 4, 1,213,213,213,101,123,247,238,237,225,153,191,209, 96, 48, 36,240, + 60,175,156, 91,176, 90,173,165,123,246,236,201,141, 92,174,174, 28,250,246,237, 43,160,254, 93,172,184,214,174, 93,235, 10,189, + 88,196,224,236, 59,162, 90, 17,151,165, 19,225,104, 12,149, 73, 57, 21, 12,191,104,187, 85, 30, 12,115,125,185, 65, 83, 23, 2, + 66, 72, 19, 0, 46, 74,233,201,144, 11,251, 89,217,119,146, 0, 12,145,128,209,158, 81, 43, 7,148, 18,224, 64, 2,240,197,105, +192, 82,107,225, 63,240, 65,164,220,235, 51, 50, 50,222, 72, 78, 78,190,171,178,178,178,134,231,121, 16, 66,104, 86, 86,150,178, +140,247,242,144,101,249,120, 97, 97, 97,118, 48, 61, 0, 98,147, 38, 77, 94, 75, 76, 76,188,163,166,166,166,134, 16, 2, 66, 8, + 37,132,160, 99,199,142,170,166,242, 43, 73,210,241,130,130, 2,191,154, 13,145,206, 63, 43,239, 29, 58,116, 80,181, 20,109, 89, +150, 3,230,221, 91, 51, 35, 35,227,181,228,228,228, 59,170,170,170,106, 56,142, 83, 53,179,178,178, 46, 56,157,151,178,230,149, + 64,160,155, 52,151,148,148,180,172, 71,143, 30,125,191,254,250,107,110,223,190,125, 92,219,182,109, 33, 73, 18,100, 89, 6,165, + 20,221,186,117, 51,214,119, 99, 41, 41, 41, 11,186,119,239, 62,122,249,242,229,220,178,101,203,184,238,221,187,131, 16, 2, 73, +146, 32, 73, 18,250,247,239,111, 8,173, 18, 24, 66,136, 89, 16,132,201, 90,173,182,143,203,229,106, 7, 0,162, 40,238,181,217, +108,235, 92, 46,215,235,148,210,170,112,116,156, 78,167,177,176,176,176,206,190,233,209,163,135,246, 66,211,150,153,153,185,137, +227,184, 22,158,116, 34,156, 95, 74,233,225,194,194,194,156, 64,154, 87, 93,117, 85, 72, 77,223,105,178, 44, 31, 46, 40, 40, 8, +168, 73, 8, 17, 90,183,110, 61,186,125,251,246,250,207, 63,255, 28,199,142, 29,131,201,100,130, 44,203,144, 36, 9, 78,167, 19, + 55,223,124,115,157, 7, 72, 48, 12, 6, 67,244,247,223,127,223, 42, 41, 41, 9,103,206,156, 65, 73, 73, 9, 38, 78,156,120,192, +107,126,194, 15, 63,252,144, 25, 31, 31,143,154,154, 26,148,151,151, 99,236,216,177,245,217,196, 37,201,160,107, 91,190, 72,128, +120,101, 92,146,241,251,234, 13,135,158,190, 88, 93,155,205, 86, 44, 73, 82,156,247, 52, 63,207,244, 90,240, 60,127, 14, 64, 98, +176,101, 8, 33,205, 0,220,200,243,124,107, 81, 20,175,162,148, 54,115,185, 92,201, 0,160,209,104, 78,243, 60, 95,228,116, 58, +247,219,237,246,255, 1, 88, 78, 41, 45, 10,164,101,223, 17,213, 74,178,213,220, 82,109,147,135,202, 20, 41, 28,193, 41,147,174, +230,191,246, 29, 81, 75,234, 97,178,254, 20, 8, 33,205,211,210,210, 94,241,252,127,156, 82,122,228, 98, 53, 37, 96, 52,165, 52, + 6, 0,202,203,203, 99,142, 29, 59,150,178,124,249,242,172,153, 51,103,246,211, 90,173, 47,219,129,189,193,214, 31,216,167,213, +118,129,144, 12,101,220, 69,229,227,171,214, 29,138,196,131,137, 75, 79, 79,127,227,250,235,175, 31, 55,111,222, 60,227,150, 45, + 91,140, 29, 59,118,132,251,193, 8,245,126, 79, 41, 85,207,177,107,174,233, 25, 76,143, 0, 16,210,210,210,102, 95,127,253,245, + 99,230,206,157,107,220,191,127,191,177,121,243,230,170,166,186, 32, 33,158,105, 4,157, 59,119,249,163,211,217,160,121, 31, 60, +120,240,152,121,243,230, 25,119,239,222,109,204,204,204, 84, 53,125,189, 51,199,113,200,206,238, 30,150,230,144, 33, 67,198,188, +251,238,187,198, 29, 59,118, 24,219,181,107,231, 49,105, 80,211,120, 33,233,188,196, 53, 47,123,234,152, 8, 66, 8,151,152,152, +184, 48, 59, 59,123,240,215, 95,127,205, 3,192,142, 29, 59, 80, 90, 90,138,244,244,116,152,205,102,232,245,122, 88,173,214,122, +189,101, 37, 39, 39,191,223,163, 71,143,209, 95,127,253,181, 8, 0, 95,222,126, 51, 14,139,192,164, 51,118,104, 52, 26, 28, 60, +120, 16, 60,207, 95, 76,232,248,218,168,168,168,143,151, 46, 93, 26,215,181,107, 87,174,164,164, 4,205,155, 55,199,239,191,255, +222, 99,253,250,245,221,238,190,251,238,187, 9, 33,227, 41,165,235,195,213,252,230,155,111, 96, 50,153,212,193,225,112,212,203, + 88,120,195,243,124,198,150, 45, 91,146,204,102, 51, 36, 73, 2,165,180,214, 5,236,123,225,201,178,140,222,189,123, 59,130,105, + 10,130,144,177,101,203,150, 36,131,193, 80, 71, 75,146, 36,104,181, 90,112,156,187,161,168, 36, 73,112,185, 92,200,201,201, 9, +168, 73, 8, 33,153,153,153,183, 41,230,138,227, 56,124,246,217,103, 72, 73, 73, 65, 82, 82, 18, 76, 38, 19, 12,134,250,123, 96, + 65, 16,144,144,144,128,251,239,191, 31,183,221,118, 27, 22, 45, 90, 4, 81, 20,107,205,143,143,143,199,119,223,125,135,232,232, +104, 52,109,218,180,214,252,203, 21, 2,196,175, 88,127, 72,141,200,222, 50,172,179, 48,160,119,139,185,202, 56,231, 94,136,202, +238,101,169, 44, 73,231,214,108,252,109, 90, 40, 93,167,211,217,104,227,198,141,208,233,116, 97,165, 67,146, 36,244,232,209,163, + 81,208,180, 18, 50,180, 67,135, 14, 95,222,127,255,253,154, 86,173, 90, 17, 81, 20, 33, 8, 2, 4,193,125,139,144,101,185, 41, +165,180,169, 44,203,125, 79,159, 62, 77,231,204,153,243, 50, 33,100, 4,165,244,191,126,245, 92,150, 78,213, 54,121, 40,165, 72, + 73, 30, 64,155,156, 89, 77, 80,109,147,135,198, 8,150,131, 0, 46, 89,131, 69, 8,137, 54, 24, 12,207,124,254,249,231, 26, 0, + 24, 48, 96,192, 51,132,144,135, 41,165, 21,145,218, 70, 76, 76, 12, 98, 98, 98,208,161, 67, 7,140, 28, 57, 50,182, 75,151, 46, +143, 53,179,217, 38, 22, 1,246, 64,235, 8, 28,151,241,237, 15, 7,146,148,241, 49, 55,119,213, 12,238,219,234,180,187,130,139, +239,210, 20,178, 68,143,175,222,112, 56,168, 1, 35,132,112, 41, 41, 41,255, 26, 50,100,200,173,243,230,205,139, 2,128,247,223, +127, 31, 67,135, 14, 69, 74, 74, 10, 12, 6, 3, 52, 26, 13, 52, 26, 13, 68, 81, 84,127,131,232, 17, 0,124, 74, 74,202,203, 55, +220,112,195, 45,115,231,206,141, 2,128, 5, 11, 22, 96,216,176, 97, 72, 72, 72, 64,116,116, 52,116, 58, 29,180, 90,173, 71,139, + 32, 84,188,206, 95, 58,239, 25,212, 15, 45, 12, 58,220, 56,227, 21,196,198,198,226,251, 71,239,131,200,113,184,239,187,117,136, +142,142, 14,121,255,240,167,185, 99,199, 14,156, 62,125,218,111,222,121,158, 15,122,189,121,231,125,232,208,161,183, 40,154, 11, + 22, 44,192,224,193,131,145,144,144, 0,179,217,172,230,253,188,118,224,134,252,222,154,131, 7, 15,190,229,221,119,223, 85, 53, +251,247,239,143,248,248,120, 68, 69, 69, 65,163,209,168,251,179, 62,199,232, 82,214,188, 82,168,101,176, 60, 59,138, 75, 74, 74, +186, 53, 63, 63, 95, 61,242,162, 40, 66,167,211,169, 39,135,247,131, 59, 28, 8, 33, 36, 43, 43,235,206,175,191,254, 90, 93,201, +238,115, 81,233,245,250,122,105,250,232, 15,184,238,186,235, 62,205,207,207,215,107, 52, 26, 88, 44, 22, 20, 22, 22, 34, 38, 38, + 6, 90,173, 22,195,135, 15,231,115,114,114, 18,174,187,238,186, 47, 8, 33, 99, 40,165,171, 67,105, 82, 74, 97, 54,155,107, 25, +172,139,137,220, 19, 66, 96, 48, 24,176,108,217, 50, 8,130, 80,235, 36,243,119, 19, 75, 78, 78, 14, 25,149, 0, 0,157, 78,135, + 77,155, 54,129,227, 56,136,162,168, 14,223,124,243, 13, 30,125,244, 81,156, 62,125, 90,157, 23, 21, 21,178,116,147, 24,141, 70, +131, 98,174, 0,247,177, 55, 24, 12, 16, 69,145, 8,130, 64,120,158, 7, 0, 74, 72,248, 21, 66, 5, 65, 64, 81, 81, 17,110,191, +253,118,124,244,209, 71,120,225,133, 23, 48,102,204,152, 90,243, 43, 42, 42, 16, 23, 23,135,216,216, 88,232,116,186, 11, 62, 23, + 46, 37,100,159,189, 51,253,133,151,141,238, 10, 30, 50, 32, 3, 20, 84,253, 95, 92,124, 16,175,254,235, 77, 62, 92,109,157, 78, +135,141, 27, 55,194,187,216,149,227, 56,104, 52,154, 90,211, 4, 65, 64,106,106,106, 56,122,207, 47, 93,186, 84,251,217,103,159, +225,171,175,190,130, 36, 73, 16, 69, 17,122,189, 30,209,209,209,136,143,143, 87,135,166, 77,155,146, 15, 62,248, 64,211,169, 83, +167,231, 1,248, 55, 88, 28,141,145, 61,230, 10, 0,146, 6,208, 38,135,190,230,227, 98,163,220, 81,156, 75, 17, 66,136, 0, 96, +234, 91,111,189,149,208,173, 91, 55, 0,192, 91,111,189,149, 48, 97,194,132,169,132,144,167, 41,165, 23, 92,196,202, 3,159, 18, + 66, 70, 3,128,193, 96,208, 15, 28, 56, 80,251,246,219,111,227,170,171,174,194,131, 15, 62, 24,255,234,203, 47,223, 8, 96, 73, +160,245,101,159, 75,109,214, 43,111,198,122,191, 80,157, 31,128,223,207, 22,225,153,103, 94, 12,149, 87, 2,128, 75, 75, 75,187, +251,189,247,222, 83,171, 67,196,199,199,171,247, 32,223,123,148,242, 27,228,190, 68,224,142, 10, 77,152, 55,111,158,170,153,152, +152, 88, 75, 67, 20, 69, 20,237,253, 25,223,190,159, 7, 83, 66, 42,198, 62, 58,171,222,233, 76,215,105,145, 97,208,162, 83,167, + 78, 48, 24, 12,216, 33,186, 31,101,138,185, 10,150,206, 64,154, 60,207,171,105,164,148,194,106,181,162,178,178, 18,146, 36,193, +110,183,163, 91,183,110, 97,229,253,221,119,223, 85, 53, 27, 53,106,164,222,223,189,239,243,202,160,188,192, 4,211, 76, 75, 75, +155,240,239,127,255, 91,213, 76, 72, 72, 80,181, 4, 65,128, 70,163,193,130, 5, 11,124,243,120,209,154,245, 61,238,190,154, 71, +142, 28,193,204,153, 51,161,209,104,148, 42, 64,106,196, 50, 61, 61, 29,115,230,204, 9,235, 25,119, 57,227,239,232,146,146,146, + 18,121,223,190,125,220,246,237,219,161,209,104,144,152,152,136, 30, 61,122, 0, 0, 28, 14, 7, 4, 65,128,193, 96, 32,153,153, +153,167,149,157,166,252,122,151,165,123,181, 48,224,126,255,253,119,121,229,202,149,220,162,145,131, 97,167, 64,151,103,102, 97, +240,176, 97, 88,145,174, 5, 15,160,199,190, 18,104,181, 90, 33, 53, 53,213,169, 28, 4, 69,215,187,110,150,159, 86, 11, 81, 38, +147,233,131,229,203,151,235, 57,142, 67,101,101, 37,100, 89, 70,110,110, 46, 8, 33,216,189,123, 55,158,126,250,105,124,249,229, +151, 88,186,116,169,161,107,215,174, 31, 16, 66,218, 81, 74, 43, 21, 13, 63,154, 0,220, 23,171,193, 96, 80, 13,150,193, 96, 32, + 87, 93,117,213,105,165,252,220,167, 56,238, 68, 97, 97, 97,183, 64,154,128, 59,146, 48, 98,196, 8,181,206,153,242, 0,244,190, +216,148,255,133,133,133,117, 14,140, 63, 77, 89,150,209,171, 87, 47, 0,128,201,100,130,217,108,198, 15, 63,252,160,206,239,218, +181, 43,236,118, 59, 26, 53,106,132,189,123,235,150, 66,248,211, 60,117,234, 20, 22, 46, 92, 8, 81, 20,145,144,144, 0, 81, 20, + 53,171, 87,175,126,193,100, 50,197,240, 60,143,216,216, 88, 12, 27, 54,108,222,141, 55,222,168,164, 65,250,230,155,111,132, 64, +154, 60,207, 67,175,215, 99,193,130, 5,152, 57,115, 38,158,124,242, 73,248,206,183, 90,173, 72, 72, 72, 64, 92, 92, 28,226,226, +106,149,126, 5, 76,231,197,210,208,154, 20, 20,133, 59, 87, 96,207,174,213,144,168, 4, 89,146, 65,101, 10, 73,150,177,115,213, +214,204,226,195, 39,211, 41,168, 90,219, 72,170,170,118,245,109,164,187, 10,192,178,181, 37,182,217,161,210,201,243, 60, 28, 14, + 7, 86,172, 88,129,131, 7, 15, 98,229,202,149,176, 88, 44,104,212,168, 17, 98, 99, 99,145,147,147,131, 9, 19, 38,248, 53, 88, +190,154,146, 36, 45, 56,113,226, 68,151,156,156, 28, 82, 94, 94,142,146,146, 18, 84, 86, 86,194,225,112,192,225,112,168,199,208, +100, 50, 33, 37, 37, 5, 22,139,133,218,108,182, 5,129, 52,169, 76,202, 57,130, 83,135,150, 9,141, 90, 14,119, 25, 78,255,144, + 96,179,216, 53,174,119,150, 25, 39,124,243, 68,203, 65, 28,229, 40,224,206, 58, 33,160,178, 36,149,172,254,241,240,253,161,210, + 25, 9,130,104, 78,156, 60,121,114, 59,239,226,233,177, 99,199,162,176,176,176,221,235,175,191, 62, 17,192, 91,245,213, 52, 0, +233, 0,224, 2,190,131,123,192,243, 22, 11,121, 97,217,178, 17, 0,238, 88,186,116, 41,198,140, 25,131,127,189,252,114, 7,248, + 24,172, 90,251,147, 82, 20, 29, 88,143, 35, 7, 54, 66,150,101,207, 64, 3,254, 15,244,230,227,147, 78, 82, 85, 85,101,221,178, +101,139,249,195, 15, 63, 68,124,124, 60,154, 53,107,134,168,168, 40,232,116,186, 58,102, 64, 25, 66,229,189,166,166,198,186,111, +223, 62,243,167,159,126,138,132,132, 4, 52,109,218, 20, 38,147, 9,122,189, 94,125, 65,223,178,114, 41, 38,142, 31,142,210,163, +251,241,230,195,183,133,157,206,123, 6,246, 67,134, 65,139,225,211,103,161, 93,187,118, 88,114,219, 77,224, 8,112,239,247, 63, + 65, 20, 69,124, 56,244, 90,232,116, 90,220,251,253,182,176, 53,183,109,219, 6, 74, 41,154, 54,109, 10,139,197,162, 70,217, 52, + 26, 13, 86,175, 94,141,155,110,186, 9,139, 22, 45,194, 53,215, 92, 19, 50,239, 85, 85, 85,214,221,187,119,155, 63,249,228, 19, +196,199,199,163,113,227,198, 48, 26,141,170,158,183,137,105,209,162, 5,202,202,202,208,178,101,203,160,154,213,213,213,214, 29, + 59,118,152, 23, 45, 90,132,248,248,120,100,100,100,192,104, 52,214,138,132, 61,255,252,243,181, 52, 58,117,234,116,209,154,245, + 61,238,190,154, 35, 71,142, 68,203,150, 45, 17, 29, 29,173,238, 3, 95,163, 93, 79,186,163,118, 53, 7, 59, 0,173,215,239, 89, + 0,219,252, 44,167, 76, 23, 1,116,246,204,147, 0, 84, 2,136,245,163, 23, 72,167, 4,238,120,113,162,207,242,190,219, 81, 17, + 0,128, 16,162, 92,143,125, 1,108, 0,128,182,109,219,162,180,180, 20, 58,157, 14, 61,122,244,192,217,179,103,213, 48,159, 44, +203, 24, 53,106, 20,255,196, 19, 79, 36,113, 28, 7,167,211, 9, 74, 41,120,158,135,242,230,231,131,204,113, 28,114,114,114,176, +199,179, 79, 7, 15, 27,134,140,140, 12, 40,149, 56,116, 58, 29,198,140, 25, 67, 30,125,244, 81, 65,137, 94, 80, 74, 97,177, 88, +208,169, 83,167,128,229, 82,130, 32, 60,252,197, 23, 95,196,104,181, 90,213, 92, 41,105,217,183,111, 31, 94,125,245, 85,220,113, +199, 29, 56,122,244, 40, 82, 83, 83,241,216, 99,143,153,243,242,242, 30, 6, 48, 61,144,166,130,217,108,174,101,176,198,143, 31, + 47,228,228,228, 36, 25,141, 70, 53,186,229, 49,149,200,201,201, 9,106,197, 61,245,159,240,221,119,223,249,125, 59,244,125, 99, + 32,238, 86, 23, 97,105,110,217,178, 69, 53,103, 74,244, 66,153, 95, 88, 88,168, 70,176, 60, 70, 48,152, 38, 5,160, 62, 68, 61, +145, 43,205,150, 45, 91,102,164,166,166,154,199,143, 31,143,202,202, 74,164,165,165, 97,208,160, 65,144,101, 25, 14,135, 3,147, + 38, 77, 10, 26,121, 17, 69, 17, 91,183,110, 69, 94, 94, 30,158,120,226, 9,204,155, 55, 15, 3, 6, 12, 80,231, 43,111,113,137, +137,137,136,142,254,211,219, 56, 68, 14, 25,112,184,156,168,169,177,128, 82, 9,146, 76, 33, 75, 50,118,175,221,153,121,120,215, +193,172,252,197, 11, 69, 0,176,174, 91,234,189, 86,234,200,185,255,105,211, 55, 94,179,101,237,239,142, 45,193,228,121,158,199, +125,247,221,135,105,211,166,225,214, 91,111,197,170, 85,171,240,212, 83, 79,225,238,187,239, 86,205,187,114, 46,132,194,233,116, +190, 55,118,236,216,127, 46, 89,178,228,170, 71, 30,121,132, 3,220,215,164,209,104, 4, 33, 4, 86,171, 85, 29,246,237,219, 39, +255,227, 31,255,248,213,110,183,191, 23, 72,143, 10,134, 95, 76,186,154,255, 22,151,114,173, 79,125, 31,207, 17, 33,218,145,216, +180,111,249, 13,153, 3,232,128,219,154,197, 81,217, 29,225,163,160,176, 89,171,241,228, 19,143,135, 29,189,107, 8, 8, 33, 67, + 7, 14, 28, 56,104,198,140, 25,117,230,205,152, 49, 3,123,247,238, 29, 68, 8, 41, 10, 84, 36,234, 15, 3,144, 17,147,146,242, + 58, 0, 24, 78,157,154,108, 1,142, 3,192, 11,192, 96, 9,184,105,213,170, 85, 0,128, 38, 77,154, 64, 6, 67, 43,125,112, 0, + 0, 32, 0, 73, 68, 65, 84,218, 19,224, 99, 30,248,212, 5,124,235,171, 69, 41,133,195,233,130,197, 98,133, 76,221,231,145, 76, +101,200,146, 59, 10,234,107,178, 66,149,187, 81, 74, 41, 33, 68,230,121, 30, 29, 58,116,192,224,193,131,161,213,106, 97, 54,155, +213,251,188,239, 61, 41,140,135, 34, 5, 32, 19, 66,208,162, 69, 11, 12, 26, 52, 8, 26,141, 6, 38,147, 9,209,209,209,170,193, +226,121, 30, 29,114,250,225,211, 69,175, 96,220,224, 44,140,191, 54, 25, 95,236, 46, 9, 43,157, 77,141, 90, 52, 53,232,208,182, +109, 91, 68, 69, 69,129, 16,128,231, 57, 53,157, 38,163, 30, 26,181,248, 49,188,188,159, 58,117, 10, 69, 69, 69, 40, 42, 42, 2, +199,113,200,205,205,133, 86,171,133, 32, 8, 56,112,224, 0,166, 79,159, 14,187,221, 30, 86,222, 57,142, 67,235,214,173,209,175, + 95, 63,104,181, 90, 40,207, 10,239,162, 65, 81, 20, 81, 89, 89,137, 86,173, 90, 97,217,178,101,232,221,187,119, 72,205,118,237, +218,161,111,223,190,208,104, 52, 48, 24, 12,106, 85, 29,173, 87, 94,171,170,170,212,253,208,165, 75,192, 58,109,126, 53, 87,110, + 61,138,249, 43,127,128,205, 46,163,162,198, 89,107,133,212, 70,209,216,240,201, 19, 97,229, 93,209,124,239,189,247, 80, 86, 86, +166,222,135, 56,142, 83, 7, 66, 8, 50, 50, 50,240,238,187,239,214, 17,242,246, 34,148,210,117, 62,179, 19, 9, 33,249,234, 70, + 41, 29, 70, 8,201,247,254, 13,180,156,231,239,181, 83,167, 78,205,206,203,203,155,217,179,103,207, 79, 55,109,218,180, 56,144, + 94, 32,157,169, 83,167,102,229,229,229,205,244, 94,222,207,118, 84,188,163, 14,196,147, 57, 78,137,204,164,167,167,171,229,206, +102,179, 25, 26,141, 70, 93,209,229,114,225,131, 15, 62, 64, 82, 82, 18,146,147,147,213, 95,127, 80, 74,105,147, 38, 77, 64, 41, +197,131,103,221, 85,128,190, 75,211,160, 8,192, 13,103,169,170, 39, 73, 18,150, 44, 89,130,168,168, 40,245, 66, 55,155,205, 65, +139,139,180, 90,109,223,238,221,187,115, 54,155, 77, 13,147,115, 28,135,125,251,246, 33, 47, 47, 15, 99,198,140, 65,155, 54,109, + 32, 73, 18,170,171,171,113,221,117,215,137,111,190,249,102, 95,132,105,176,140, 70,163, 90,239,200,102,179, 97,205,154, 53,136, +141,141, 69, 92, 92, 28, 18, 18, 18, 16, 31, 31, 15,157, 78,231,125, 98, 4,132, 82,138, 17, 35, 70,212,138, 92,121, 71,173,188, +111,104, 74,177, 95, 56,154,215, 92,115,141, 26,189, 50,155,205,248,246,219,243,247,231, 30, 61,122,128, 82,138,196,196, 68,108, +222,188, 57,148, 22,237,218,181, 43,100, 89, 70, 82, 82, 18, 68, 81, 36,171, 87,175,126,193, 99,174,136, 40,138,248,249,231,159, + 81, 88, 88,136,196,196, 68,245,173, 52, 20,213,213,213,197,111,190,249,166,244,246,219,111, 3, 0,250,247,239,143,242,242,242, + 51, 94,243, 75,199,141, 27, 87, 43,191,231,206,157, 43, 13, 41,124,137, 35, 3,112, 57, 92,168,177, 88, 81, 85, 89, 13,167, 44, +193,233,146,112,230,196,217,216, 39, 30,157, 44,254,107,210, 4, 0,192,163,179,223, 66,229,187,231,111, 96, 95, 61, 58, 58,105, +196,171,159, 77, 1, 48, 60,152,126, 77, 77, 13,172, 86, 43,154, 52,105,130,109,219,182,161,178,178, 18, 3, 6, 12,168, 21,253, + 13, 81, 4,161, 66, 41,181, 19, 66,114,135, 13, 27,182,237,181,215, 94,107,217,190,125,123, 82, 93, 93,141,234,234,106,212,212, +212, 64,249, 95, 80, 80, 64, 23, 47, 94,124,184,166,166, 38,135, 82, 26,176,206,144,182, 91,229, 65,251,142,168, 37, 63,254,162, + 25,246,183,145, 55,197, 28, 63,113,204, 85,106,209, 87,149, 91,126,181, 73,116, 47,168, 68, 33, 81, 10, 42,201,144,168, 28, 48, +226,242, 71, 64, 8,201,200,204,204,252,199,162, 69,139,252, 26, 82,158,231,177,104,209, 34,244,234,213,235, 31,132,144,125,193, + 42,247, 43, 52, 3,180, 46, 81,124,226, 63,255,249,143, 6, 0,250,245,235,247, 68, 51,167,243,209, 34,192,222,190, 99,199, 91, + 54,109,218, 20, 99, 52,186,219, 9,197,196,196,128, 82,202,215,212,212,196,228,228,228,220, 2,127, 6, 75,166,112, 58, 93,176, + 88,109, 40, 43,175,130,211,238,132, 75,118, 65,114,201,112,201,238,232,168, 75,146, 32,187, 36,184,100, 9,188,192, 71,245,189, +166, 73,149, 59,150, 69,202,214,253,116,180,177,159,100,202,238, 22, 94, 64, 74, 74,138, 90, 36,236, 93, 87, 38, 84, 20,195, 15, +146,251, 94, 72,213,123,227, 47,107,243,113,102,239, 6,104, 8,133, 44, 57, 33,187, 28,144,156, 14,240,144,177,247,208, 9,180, + 79, 11,121, 15, 81,211, 57,228,153, 23,209,163, 71, 15,124, 49,122, 56, 8, 1,238, 93,179, 25, 26,141, 6,139,111, 30, 0,173, + 94,139,191,175,252, 41,220,116,214,202,251,142, 29, 59,240,224,131, 15,226,165,151, 94,130,193, 96, 80, 95, 78,246,239,223,143, +207, 62,251, 12, 3, 7, 14, 12, 59,239,132,184,139, 90,149,125, 56,117,234, 84,156, 60,121, 18,175,191,254, 58,178,179,179, 33, +138, 34,202,202,202,144,147,147,131,211,167, 79,135,165, 73,169,140,248,248,120,181,186,142,111, 29, 49, 0,245, 62, 70,222,154, +119,221,156,138,175, 55, 46, 6, 1,193, 79,159, 76,174,245, 60,122,231,179, 31,235,173, 57,109,218,180, 90,233,172, 79,244,202, +203,139,248, 13, 6,248, 51, 50, 33,150, 83,118,178, 46, 47, 47,111,166,239,250,161,244,188,231,251,172,111,247, 49,101,117, 14, +102,157,187, 47,165,148,166,167,167, 67,150,101,152,205,102,104,181,238, 8,152,239,131,212,100, 50,213,114,228,161,202,147,121, +158, 7,165, 84,221,177,190,183, 49,158,231,177,121,243,230, 58, 38,224,223,255,254,119,208,114, 90,151,203,213, 46, 42, 42, 10, +149,149,149,106, 29, 41,173, 86,139, 41, 83,166, 96,220,184,113,170,185,210,106,181,248,232,163,143,208,173, 91, 55,216,237,246, +118, 1, 5, 1,104, 52,154,154,142, 29, 59,186,235, 32,187,235, 78,145, 49, 99,198,240, 14,135, 3,122,189,190, 86,212, 73,169, +155, 22,202, 12, 41,209,166, 21, 43, 86,132, 21,193, 10,183, 14, 18,165, 20, 59,119,238,172,101,212, 60, 77,141, 1, 0,187,118, +237, 82, 31,180,225,150,119, 75,146, 4,131,193, 64, 52, 26, 13, 49,153, 76, 49,227,199,143, 87,117,149, 99,174,228, 59,156,138, +214,191,252,242,203,117,193,230,239,222,189,251,138,236,142, 65,150,101, 56,156, 78, 88, 44, 86, 84, 86,215,224,249, 89,158, 18, +181,231,177, 5,192,150,220,137, 15,226,190,193, 3,251, 33, 68,235,190, 64,196,199,199,227,203, 47,191,132, 40,138, 88,182,108, + 25,162,163,163,113,211, 77, 55, 33, 58, 58, 26, 79, 60,241, 4,110,187,237,182,176, 13, 22, 0, 80, 74,203, 9, 33,185,147, 39, + 79,222,246,242,203, 47, 55,105,210,164, 9, 28, 14, 7,236,118, 59, 28, 14, 7, 14, 29, 58,132,197,139, 23, 31,171,169,169,201, +165,148,150,135,210,211,118,171, 60,152,255, 72,203,226, 94, 35,111,182,238, 61,181, 18,167, 79,157,133, 75, 58, 14,151, 36,193, +229,116,185, 13,129, 44,195,229,112,129,231,185,232,235,122, 54, 93,237,174,240, 79,236,107, 55, 23, 93,127, 33,251,228, 2,161, + 7, 14, 28, 40, 77, 76, 76, 84,222, 32,163,237,118, 59, 1, 0,173, 86, 75, 1, 40, 21,220,171, 1, 4,109,120,162,112, 12,152, +248,175,151, 94,106,172, 20,223,191,244,210, 75,141, 31,123,228,145,137, 0,222,216,187,123,247,194,187,238,186,107,242,231,159, +127, 94,107,157,187,238,186, 11,123,119,239, 94,232, 55,129, 0,156, 78, 39, 44, 22, 27, 74, 74,126,199, 61,247, 62,163, 78, 7, +168, 90,209,221,211,171, 35, 0,232, 1,160,228,244,255, 48,233,193,199,252, 94,164,148, 82,218,190,125,123,229,122,135, 40,138, +117, 42, 33,123,223,223, 67,221, 63, 60,145,161, 90, 85, 44, 52, 26, 13, 14,110,202,199,228,137,183, 0,146, 11,112, 84, 3,142, + 26, 80, 71, 13,168,189, 26, 68,107, 0,117, 90, 67,234, 42,233, 84,170,109, 8, 60, 7,157,246,252,125,211,104, 52, 64,171,215, +134,149, 78,127,121,255,237,183,223,112,255,253,247,195,110,183, 99,228,200,145,176, 90,173,176,217,108,176, 90,173,104,209,162, + 5, 44, 22, 75, 72, 61, 37,239,178, 44,171, 81,192,201,147, 39, 35, 59, 59, 27,211,167, 79,199,255,253,223,255,161, 69,139, 22, +152, 56,113, 34, 62,253,244, 83,100,101,101,161,166,166, 38,164, 38, 0,245,121, 44, 8,130,122, 15,246, 62, 86, 0,234,117,140, +252,105,186,187, 3, 67,157,227,254,208,248,254,245,214,156, 57,115, 38, 74, 74, 74,234, 68,174,188, 35, 88,115,231,206, 13,170, + 27, 8,159, 40, 83, 56,203,237,240, 76,178, 76,153, 50,229, 73, 66, 72,254,148, 41, 83,158,156, 53,107, 86, 97, 56,122, 1,230, +127,227,249,189,193,107,218, 14,159,101,252,119,211,192,113, 28, 40,165,106, 88, 19,112,239, 56,101, 30, 0, 24,141, 70,228,231, +231, 99,201,146,243,213, 6,148,101, 2,105,202,178,140,255, 38,186, 15,196, 80, 79,228, 74, 25,191,254,140,140, 97,195,134,225, +255,217, 59,239,240, 40,170,182,141,223,103,102,251,102,211, 32,148, 52, 18, 66, 4, 66, 66, 9,161,136,210, 85,164, 74,183,243, + 89,105, 42,190, 42,205, 6, 1, 21, 80, 4, 4, 17, 17, 16, 81,124, 1, 21,233, 77, 64,186, 1, 36,116,144, 38,144, 78, 72, 32, +125,235,148,243,253,145,108,220,148,205,238,134, 32,229, 61,191,235,218,107, 51, 51,103,238,121,102, 55,187,115,239,115,158,115, + 38, 34, 34,162, 76,246, 74,167,211, 85,105, 54,100, 89, 70, 82, 82, 18, 78,157, 58,133, 14, 29, 58, 32, 47, 47, 15, 10, 0,239, +156, 60,137,232, 97,195, 96, 41, 49,126,106,181, 26,195,135, 15,119,170,227,200,159,127,254, 89,166, 8, 40, 58, 58, 58,245,161, +135, 30, 10, 78, 72, 72, 40,205,104,105, 52, 26,104,181,218, 82,147,225,230,135, 26, 67,134, 12, 41, 99,134,202, 27, 44,251,135, +103,235,214,173,110,117, 17, 82, 74,209,165, 75,151,210,236,149,183,183, 55,214,172, 89, 83,218,166,115,231,206, 32,132,160,110, +221,186,216,178,101,139, 75, 77,160,248, 53,181,191,247, 60,207,163,168,168, 8,137,137,137, 80,171,213,165,245, 25, 58,157,174, +244,252, 25, 78,160, 50,172,130, 0,163,201,140,130,130,226, 47,210, 75,167, 86,151,105, 98,179, 84,127,112,154, 61, 19,154,159, +159,143,157, 59,119,226,215, 95,127, 69,155, 54,109,202,116, 15,186,219, 69, 88, 26, 50,165, 89,132,144,142,227,199,143, 63,248, +209, 71, 31, 5,213,174, 93, 27, 54,155, 13, 73, 73, 73, 88,186,116,105,186,209,104,236, 72, 41,205,242, 64, 16,162, 32,194,108, + 52, 33,175,160, 8,241,159, 44,115,214,146, 3, 0,155,181, 0,125,123,117,169,246,116, 40,213,129, 82,154, 6,224,101,251, 50, + 33,100, 57, 0,123, 49,126, 62,165,244,121, 79,244,148, 64,215, 65, 67,134,116,127,235,173,183, 74,215,189,245,214, 91, 56,120, +240, 96,119,229, 47,191,156, 18,128,221,252, 47,191, 52,159, 51,103, 78,105,155, 57,115,230,224,215, 95,126,249, 93, 2,118, 59, + 9,178, 56,131,101, 50,163,176,200, 4, 31,191, 64,164, 93,217,227, 50, 22, 21,111, 1,173,226,123,217,254, 29,226,172,238,198, + 93,115,245, 79,152,148,182,104,209, 2, 0, 74,235,142,154,119, 31,130,217,115,151, 64,195, 81, 12,236, 30,141, 58, 58, 25, 68, + 95, 11,170, 46, 19, 65,252,194,138,119,140,111, 85,165,174, 61,206, 61,239,191,131,191,189,180, 24,190,253, 0,148, 74, 37,126, +125,186, 55, 84,106, 21,254,111,211,222,226,193, 61, 47, 13,132, 74,163, 70,143,175, 87,185,140,213,241,220, 47, 93,186,132, 3, + 7, 14, 32, 42, 42, 10, 23, 47, 94, 44,173,177,181, 95,183,220,236, 77,160,246,121,174,236,223,227,215,174, 93, 67,223,190,125, +161, 82,169,176,108,217, 50,236,217,179, 7,227,199,143,199,139, 47,190,136,110,221,186, 85, 90, 23, 91, 94, 51, 38, 38,166,204, +123,228,172, 62,202,147,247,168, 50, 77, 59,213,125,223, 29, 53,237,197,237,149,153,245, 91, 45,108,119,200, 22, 85,214,101,214, +167, 92, 59,160,184,150,234, 79, 0,150,233,211,167,159,158, 62,125,122, 95, 66,200,198,233,211,167,247, 45,215,206,149, 78,249, +237, 46,191, 7, 75, 13, 86, 73, 74,174, 43,240,143,137, 82, 87,209,151,237,229,229,133,151, 95,126, 25, 19, 38, 76, 40, 45,100, +172, 10,187,115,173,138,141, 27, 55, 86, 88,183,110,221, 58, 87, 93,132,127,249,250,250,182,233,222,189, 59,242,242,242,144,156, +156, 12,131,193,128,232, 89,179,112,114,244,104,180, 90,184, 16, 92,247,238, 0,138, 63,240, 39, 79,158,132, 70,163,249,171,202, + 64, 42,193, 96, 48,192,223,223, 31, 90,173, 22,222,222,222,240,246,246,134,151,151, 87,169,209,114,213, 69,104,255, 48,111,218, +180,169,202,204,149, 99,202,215, 29, 51, 68, 41, 69, 66, 66, 66,133, 12,150,253,152,246,109,246, 76,134, 59,154, 0,160,213,106, +169, 70,163, 1,207,243,208,235,245,165,233,126,173, 86, 91,250,112, 55,131,229,106, 34,209,240,240,240, 50, 19,145, 42,149,202, + 50, 19,145,222,171,252,211, 69,104, 65, 81, 97, 81,141,235, 91,173, 86, 40, 20, 10,252,250,235,175,104,223,190,125,169,185,178, + 27, 43,199,247,221, 19, 40,165,169,132,144,174,243,230,205, 59, 52,123,246,108,255,194,194, 66, 44, 91,182, 44,175,176,176,176, + 43,165, 52,213, 35, 45, 0,130, 77,132,209, 98, 65, 97, 65,241,107,240,247,233,213, 46,118,186,183, 39,124,110,214,162,197,243, +223,125,247, 93,133,245,223,125,247, 29, 46, 94,188,248, 60, 78,158,220, 29, 10, 44,156, 48, 97, 66,100, 92, 92, 92, 40, 0, 76, +152, 48, 33, 37, 20, 88,232, 76,147,210,127,186, 8, 11, 75,204,186,185,168,242,186, 37, 79,145,101,185,194, 15,190, 91,189, 32, + 18, 66, 74, 77,198, 99, 79,190,140,244,203,231, 16,165,207, 70, 93, 63, 47,200, 5,233, 80, 61, 18,143,147, 55,245,248, 98,225, + 54,143,226,212,171, 85,208,234,254,233,110,210,234,180,208,148,244, 42, 16, 66,160,213,235,160, 84,187,239,207,237,231,126,238, +220, 57,232,245,122, 72,146, 84,225,122,227,233,136,102, 74,105,233,181,115,246,236,217, 24, 55,110, 28,150, 45, 91,134,147, 39, + 79,162, 85,171, 86,120,244,209, 71,113,253,250,117,156, 56,113, 2, 22,139,197,237, 56, 29,175, 23,103,207,158,197,142, 29, 59, +112,254,252,121,164,164,164,120, 20,159, 51, 77, 59,246,229, 95,119, 28,195,224,199, 90, 87,161,224, 92, 51, 62, 62, 30,215,175, + 95,175,144,185,114, 44, 63,114,150,193,114,244, 34, 85,144,136,178,217, 35,216,235,161,236,134,168,252, 50, 0,127,251,186,137, + 19, 39,190,231,238,126,142,203,246, 12, 88, 57, 93,167, 40, 74, 26,150,249, 4,217,187,152,236, 47,186, 99,102,202,254,183, 94, +175, 47,205, 50,133,133,133, 85,153,189, 42, 9, 18, 60,207,163,211,229, 2,168,213,234,210,238,188, 94,215,255,217,239,197, 23, + 95, 68, 68, 68, 68,153, 26, 44,199, 55,165, 50, 44, 22,203,238,221,187,119,199, 62,241,196, 19,252,217,179,103,161, 80, 40, 32, +203, 50, 44, 15, 62,136, 86, 11, 23,226,212, 91,111,161,243,149, 43,176, 8, 2,180, 90, 45,182,110,221,106, 51, 26,141,149,255, + 74,116, 2,199,113,196,110,176, 52, 26, 13,188,189,189,225,227,227, 83,154,205,241,228, 75,200,217, 47, 68,199,135, 39, 31,104, +123, 65,191,227,133,213,254,254,153, 76,166, 50,134,203, 93, 28,187, 12,236,166,200,215,215,183, 76,183,168, 61,139,231,142,193, +114, 53,145,168, 70,163,241,217,187,119,111,164,143,143, 15, 40,165,200,206,206,198,211, 79, 63,125,161, 10,201,123, 2, 10, 90, + 92,228,110, 50,163,208, 84,117, 55, 72,117,248,239,127,255,139, 75,151, 46,193,102,179, 97,250,244,233, 21,140, 85,117, 50, 88, +118, 40,165,151, 90,183,110, 45,247,236,217, 19, 9, 9, 9,208,104, 52, 2,165,212,227,249,171,168, 44,195, 38,136, 48,155, 44, + 40, 44,170,121,147,121, 55,114,230,228,201, 95,188,188,188,158, 6, 96,200,205,205,229,125,125,125,161,215,235, 97, 50,153,242, +248,146,145,130, 87, 1,171, 78, 16, 62,125,242,201, 39,231, 0,128, 66, 16, 62,173,106, 30,172, 82,131, 85,195,175,163,253,123, +203, 89,246,170,186,230,138, 16, 82, 60, 60,159,227,176,108,250, 56, 68,233,179,208,186,161, 23,204,215, 47, 65,227, 19, 0,226, + 23,142, 47, 22,110,195,217,171, 55, 61,138,243,153,229,171, 17, 26, 26,138,141,255,215, 31, 26,141, 6, 79,175,222, 81, 92,164, + 61,242, 41,168,180, 26, 60, 50,255,191,213, 58,119,163,209,232, 52, 83,229,110, 6,203, 81,211,110, 0, 91,183,110,141, 7, 30, +120, 0,187,119,239, 70,235,214,173,113,241,226, 69, 92,188,120, 17, 87,175, 94,197,201,147, 39,145,147,147,227, 81,156, 74,165, + 18,171, 86,173, 66, 86, 86, 22, 84, 42, 21,242,243,243,113,229,202, 21,167,245,207,238,106, 58, 26,172,166,125,226, 1, 0, 65, +117,124, 61, 50, 88,142,154, 51,103,206,172, 96,214,221,236,229,169,170, 81,118,185, 90, 39,251,178,181,156,217, 41,191, 92,190, + 61, 0, 92, 7,192,187,216,175,252,114,246,244,233,211,119,219, 51, 95, 37,186, 60,117, 82,127, 5, 56,233, 34, 84, 42,149,166, +166, 77,155,234, 28,251, 79, 57,142,131,183,183, 55, 25, 59,118, 44, 79, 8,129,193, 96,128,175,175, 47, 26, 55,110, 12,155,205, +117, 89,130, 74,165, 50,181,107,215, 78,231,152,122, 37,132,192,203,203,139, 31, 63,126, 60, 89,178,100, 73,165,251,173, 95,191, +190,202,127,110, 81, 20,231, 12, 27, 54,236,149,212,212, 84,255,122,245,234, 33, 35, 35, 3, 42,149, 10,148, 82,144,110,221,208, +233,242,101,216, 74, 12,195,185,115,231,176,120,241,226, 34,155,205, 54,199,101,192,229, 48, 24, 12,168, 93,187, 54, 52, 26, 77, +153, 81, 49, 14,169, 85,183, 50, 88, 53,105,174,236,154,142, 23, 86,251,223, 35, 71,142, 44, 93,246,228, 75, 82,165, 82,209, 62, +125,250,216,119,160,126,126,126, 8, 8, 8, 64,102,102,102,233, 7,197,158,185,115,215, 96,185,154, 72, 84,169, 84,194,102,179, +149,118,103,206,159, 63,191,218,198,224,110,130,138, 50, 49, 24,234, 32, 40,168, 9,234,212, 53, 67,150,165, 26,211, 22, 69, 17, +163, 70,141, 42, 51,231, 21,240,207,108,201,246,139,130, 32, 8,101,210,255, 30,197, 95, 3,153, 36,153, 2,130, 88,146,197, 51, + 58,245, 15,119, 45, 97, 97, 97, 62, 37, 93,134,229, 89, 73, 41,173, 80,140, 14,252, 51, 37, 3, 15,124,156,156,156,220,220,215, +215, 23, 61,122,244,192,134,181,107,215,127, 8,148,166,108, 76, 64,170,238,218,181,255,148,252,157, 86, 85, 28,148,162,180,139, +176,200, 88,211,102,157, 84,200, 94,221,106, 87, 14,199, 21,255, 48, 91,243,205,167,136,210,101,162, 85, 3, 13, 14, 28, 60,129, +246,161, 20,212, 82,189,255, 71,160,248,186,163, 84, 42,161,213,235,161,209,252, 83,115,165,209,235,160, 82, 87,167, 92,225,159, + 68,130,253,187,247, 86, 51, 88,132,112,101, 94,199, 87, 94,121, 5, 19, 38, 76, 64,143, 30, 61,112,241,226, 69,236,221,187, 23, + 23, 46, 92,192,152, 49, 99, 16, 19, 19,131,199, 31,127,220,237, 56,149, 74, 37,214,172, 89,131,188,188, 60, 80, 74,145,149,149, + 5,179,217,140, 73,147, 92,206, 79, 92,165,166,227,119,196,229,237,211, 0, 0,171,183, 31,173,182,230,187,239,190, 91, 58, 7, +163,253,154, 95, 85,214,202, 77, 14,187, 88,246,116,255,219, 78,165, 6,235,252,249,243,149,142,149,111,214,172, 89,230, 35,143, + 60, 82,247,252,249,243, 48, 24, 12,104,220,184, 49, 44, 22,139,211,110, 8,226,112,183,237,211,167, 79, 87,170,217,168, 81, 35, +219, 99,143, 61,166,172, 95,191,126,153,204,149,125,132, 77,137, 78,165,154, 0, 64, 41, 45, 32,132, 12,127,248,225,135,127,216, +178,101,139,174,113,227,198,200,203, 43,174,191, 93,182,108, 25, 94,127,253,117,232,116, 58,156, 63,127, 30,253,251,247, 55, 26, +141,198,225,212, 97, 14,172,202, 52, 43, 57, 15,168, 84,170,210,110, 50,123, 87,153,186,138, 84,116,101,154,132, 16,204,155, 55, +175,210,185,160,202,179,112,225, 66,160,220, 40, 10,103,113,126,254,249,231, 53,166,121,240,224,193, 50,247, 24,236,215,175,223, + 55,143, 63,254, 56, 82, 82, 82,202,116, 11, 86,101,176,202,107,186,154, 72,148,231,121,212,171, 87, 15, 31,125,244, 17, 2, 2, + 2, 80,191,126,253, 10, 6,203,213,123, 84, 29,110,183, 38,229,104,226,220,217,241, 29,191,249,118,181, 82,163,230,144,176,119, + 53,242,115,174,149,105,111,177,253, 51, 36, 90,221,250, 17, 88,143,238,116, 43, 78,139,197,130,207, 62,251, 12,241,241,241,136, +143,143,175, 50, 38, 39,195,161, 93,158,187,163,193,114,199,108, 85,166, 41,203, 18,209,234,253,161,247, 10, 66, 76,140, 63,100, + 55,230,234,116,204,133,223,161,247,221,152,146,146,226, 27, 26, 26,138, 11, 23, 46, 16,252, 83,143, 85,138, 90,173,126, 26, 14, +163,253, 42,253,188, 3, 39, 87,172, 88,209,188, 69,139, 22,152, 63,127, 62, 0,252,223,103,191,253,246, 84,188,169, 56,157, 89, + 50, 37,195, 86,119,226,148,168, 68,180,122, 63,232, 12, 37,175,163,236,254,156,167,142,239, 92,249, 56,237, 23,191, 91,252,161, + 87, 65,211,190,255,223, 9,155,208,167, 87, 8,254, 56,116, 18, 59, 83,189, 16,170, 73, 71,160, 49, 11,114,214, 95,248,207,144, +214,248,226,151,226,139,248,201, 35,174, 53, 9, 33,216, 63,118, 56, 12, 90, 13, 6,175,216, 12,165, 82,137,221,111,189, 0,149, + 74,133, 46,179,139,187,100, 79,125,246, 46, 20, 26, 53,162,198,196,187, 21,103,249,158, 26,123,205,149, 29, 87, 53, 88, 85,157, +123, 97, 97, 33,114,114,114,240,195, 15, 63,224,165,151, 94,194,245,235,215,113,229,202, 21,156, 63,127, 30, 43, 87,174, 44,115, +141,115, 55, 78,165, 82,137,137, 19, 39,226,157,119,222, 1,199,113,104,222,188, 57,226,227,227,209,161, 67,213,183,156,113,231, +125, 47,143,171,236, 85, 85,154,115,231,206,245,120,192,214,253,136, 71, 5, 26,246, 76, 86, 64, 64, 0,188,188,188, 0,160,204, + 5,214, 85, 55,161, 51, 77, 81, 20,161,211,233,160,211,233,202, 76,139,240,196, 19, 79,184,204, 96, 1, 0,165,116, 43, 33,228, +217,232,232,232,165,241,241,241, 94, 93,187,118, 85, 6, 5, 5, 33, 46, 46, 14,231,207,159,199,166, 77,155,108, 11, 22, 44, 48, + 26,141,198,151, 40,165,219, 61, 14, 18, 32,246,194,111,199, 25,237, 61, 65,146,164,148, 43, 87,174, 4,126,254,249,231, 60, 33, + 4,115,230,204, 41, 51, 65,107,249,115, 60,120,240,160,232,170, 75, 70, 20,197,148, 43, 87,174, 4,206,154, 53,171,140,166,253, + 81,222,164,184,163,233, 12,251, 57,151,127, 13,220,249,240,184,154, 72, 84,161, 80,224,220,185,115,152, 60,121, 50, 8, 33,101, + 6, 78,220,203, 28, 56,156,190,228,161, 54, 65,254, 79, 15,233,222,130,128,131,181,146, 76, 47,127, 35, 23, 64,177,185, 26, 56, +107, 21,214,188, 83,113,210,197,242,104, 52,154, 43,123,246,236,105, 48,109,218, 52,158,231,121,204,156, 57,179,204,255, 82,249, +247,253,247,223,127,151,116, 58, 93,114,117,207,195,102,179,185, 28, 69,229, 20,142, 59, 48,111,230,228, 30,223,124,183, 65, 73, +136, 21, 9,123, 86, 35, 47,183,242,161,233,106,165, 2,203, 87,172, 23, 21, 60, 87,189,162,146,154,227,155, 71, 31,125,116,210, +142, 29, 59, 20,161,161,149,205,110,224, 30, 33,192,134,121,243,230,245, 26, 54,108, 88,173,102,205,154,217, 7,159,168, 75, 30, + 32,197, 51,187, 59, 53, 88,142, 80, 96,221, 23,159, 79,254,191, 69,223,109, 80,115,196,134,132,189,171,145, 87,206,172,151, 71, +165, 82,226,199, 21,235,108, 10, 5,127,174,170,118,246,121,242,110,199, 5, 49,182,207, 75,248,106,243, 98,212,109,209, 11, 67, +251,117,196,254,249,255,135, 39,155,153, 96,251,233, 25, 52, 31,186, 28,203,222, 45,206,222,180,250,249, 93,151, 90, 28,199,193, +199,240,207,132,149, 28,199, 65,163,213, 65,169,254, 39,251,162,214,235,193,123,144,177,181,159,187,253,111,103,109, 60,129,231, +121, 68, 68, 68,160, 81,163, 70,120,248,225,135, 17, 27, 27,139,110,221,186,225,196,137, 19, 56,113,226, 4,198,140, 25,227,212, + 92,185,138, 83,165, 82,161, 71,143, 30,232,217,179,167, 71,251,187,210,116, 86,107,125,171,154,149,189,118,163, 71,143, 6,128, + 91,205,102,221, 19, 84,203, 96,213,169, 83, 7,106,181,186, 90,134,170, 50, 77,171,213, 90,106,172,116, 58, 93,105,198,106,253, +250,245,165,109, 92, 65, 41,221, 78, 8,137,249,224,131, 15,222,212,233,116,221, 76, 38, 83, 20, 0,232,245,250,191,140, 70,227, + 46,155,205, 54,151, 82,154,123, 43,177, 58, 26,140,242,184, 42,114,207,202,202,122,252,249,231,159,223,206,113, 92, 67,251,249, +149,127,118, 68,150,229,171,153,153,153, 85, 14, 85,207,202,202,122,252,185,231,158,171, 84,179, 50, 93,119, 52, 43, 67,146,164, + 50,166,202,113,132,161, 59,184,154, 72, 84,169, 84,194, 96, 48, 96,237,218,181,168, 93,187,182,167,225,221,213,252,113, 36,253, +179,170,182,119, 13,208,236, 1, 80,103,224,172, 85,201,187,179,173, 97, 93, 3,212, 73,107,222,121,170, 65, 85,251,216,108,182, +135,102,204,152,177, 95, 16,132, 48,119, 98, 80,171,213, 73, 22,139,165,163,219, 65,151, 64, 41,197,185,115,231,228, 87, 94,121, + 37, 59, 43, 43,107,168,167,251, 3,192,222,132,164,217, 29,219, 5, 5, 12,233,223,177, 45, 8,129,213,234,164,168,151,128, 82, + 74,169,130,231, 82,246, 28, 76,121,165, 58,199,170, 41, 40,165,199, 9, 33, 83, 35, 35, 35, 71, 0,112,118, 37, 92,233, 74,231, + 42, 96, 85, 91, 44,159,183,105,211,102,252,123,239,189,231,215,175, 95, 63,132,134,134,194,215,215,243,187, 5,237, 63,148, 58, +162, 67,155,192,144,193, 79,116,124,156, 35,132, 90,156,189,142, 37, 16,251,235,169,224,207,237, 57,152,210,210,121,187,127,230, + 76,187, 29,217,134, 71,134,188,136, 71,134,188, 8,160,248,255,105,231, 47, 93,145,152,246, 27,226,184, 52, 88, 22,117, 4,241, +177,255,171,187,158,230,134,227, 56,244,251,110, 45, 84, 42, 85,105,156, 15,205, 40, 59, 46,160,241,107,238,223, 75,221,241,220, + 1,231,181, 86,158,214, 96,241, 60,143,236,236,108,156, 63,127, 30,153,153,153, 48, 26,141, 56,123,246, 44,172, 86, 43,114,114, +114, 96, 31,105, 88,157, 56,107,234, 61,186,147,154,255, 11,198,202,142, 71, 6,139, 82,154,218,190,125,251, 42,219, 72,146,228, +209, 40, 35,133, 66, 97,238,216,177, 35,169,108,180,129,253,111,157, 78,231,214,207,231, 18, 3, 21, 15, 32,158,148,184, 11,171, +181,252, 93, 15, 61, 71,146,164,244,118,237,218,241, 85,213, 36,200,178, 92,229,140,113, 89, 89, 89, 69, 0,106,244,214,225,183, + 67,179, 60,132, 16,105,196,136, 17, 85, 58, 41, 47, 47,175, 42,139,139, 92, 77, 36,106, 52, 26, 51,158,127,254,121,201,177,171, +217,113, 34,210,251, 26, 66,147,122, 63,253,114,216,238,108,107, 24, 0,216, 77, 22, 40, 77,114,182,203,159,127,254,153, 9, 32, +242,118,135,118,249,242,101,107,251,246,237,127, 44, 40, 40, 24, 77, 41,117, 62, 97,143, 11,246, 31, 78,119,157,158,184,203,160, +148, 30, 7, 48,242, 86,117,172,192,217,122,102,243,168,248, 15, 63, 28, 60,249,195, 15, 27,203, 64,109,148,204, 81,197,187, 97, +210, 28, 73, 56,146, 81,227,115,131, 73,146,148,250,208, 67, 15,121,188,143,171,237, 85,204, 36,142,255, 34, 20, 40,215, 37,232, +142,230,237,136,211,174,217,162, 69, 11,180,106,213,170,244,217,142,227,250,216,216, 88,183, 52, 91,183,110,141,102,205,154, 57, +157,161,189,124,205,213,157, 62,119, 59,246,159,190,177,177,149,143,236,188, 19,113,222,235,144,154, 40,100,117, 42,126, 15,214, +205, 48, 77,166,201, 52, 75,219,240,148, 82,183, 43,243,239,167,115,103,154, 76,147,105,254,251,154,247, 27,255,187,213,103, 12, + 6,163, 74, 60, 49, 87, 12, 6,131,193, 40, 11, 1, 80,105,135,176, 39,206,148, 16,226, 89,167,178, 27,250, 76,147,105, 50, 77, +166,201, 52,153, 38,211,188,255, 52, 93,105,223, 47,153, 49,214, 69,200, 52,153, 38,211,100,154, 76,147,105, 50,205, 59,174,121, +191,193,186, 8, 25, 12, 6,131,193, 96, 48,106, 24,207,111, 84,198, 96, 48,238, 43,166, 16,114, 75, 63,180, 38, 83,122,235,243, +181,184,193,189, 18, 39,131,193, 96, 0, 44,131,197, 96, 48, 24, 12, 6,131, 81,227, 48,131,197, 96, 48, 24, 12, 6,131, 81,195, + 48,131,197, 96, 48, 24, 12, 6,131, 81,195,220,214, 81,132, 12, 6,227,238,231, 94,169,109,186, 87,226,100, 48, 24, 12,128,101, +176, 24, 12, 6,131,193, 96, 48,106, 28, 5, 80,246, 70,197,148, 82,231, 55,220, 99, 48, 24, 12, 6,131,193,184, 13,220,111, 94, +164,116,154,134,251,225,100, 24, 12, 6,131,193, 96,220,187,220, 79, 94,164,180,139,208,209, 57, 50, 24, 12, 6,131,193, 96,252, +219,220, 79, 94,164,212, 96,221, 79,174,145,193, 96, 48, 24, 12,198,189,199,253,228, 69,202,100,176,238, 39,231,200, 96, 48, 24, + 12, 6,227,222,226,126,242, 34, 10,224,254,114,140, 12, 6,131,193, 96, 48,238, 61,238, 55, 47,114, 91,167,105, 32,132, 52,103, +154, 76,147,105, 50, 77,166,201, 52,153, 38,211,252, 95,131,205,131,197, 96, 48, 24, 12, 6,131, 81,195, 48,131,197, 96, 48, 24, + 12, 6,131, 81,195, 48,131,197, 96, 48, 24, 12, 6,131, 81,195, 40, 92, 55, 97, 48, 24,247, 51,247,202, 61,250,238,149, 56, 25, + 12, 6, 3, 96, 25, 44, 6,131,193, 96, 48, 24,140, 26,135, 0,168,116, 36, 0,165,244,148,219, 34,213, 24, 77,224, 74,159,105, + 50, 77,166,201, 52,153, 38,211,100,154,247,159,166, 43,109, 79,252,199,221, 12,161,244,246,205,231, 69, 8,105, 94,211, 47, 20, +211,100,154, 76,147,105, 50, 77,166,201, 52,239, 63,205,251, 13,214, 69,200, 40, 3, 33, 68, 65, 8,113, 90,155,231,106,251,191, +165,201, 96, 48, 24, 12,198,221, 12,187,168, 49, 74, 33,132,116, 0,208,183,228,239,141,148,210, 4, 79,182,255, 91,154,119,138, +184,184, 56,157, 86,171,237,241,251,239,191,171,206,157, 59,135,131, 7, 15,210,255,254,247,191,130,217,108,254, 45, 49, 49,209, +116,167,227, 99,212, 12,173, 91,183,126,156, 16, 50, 1, 0, 40,165,159, 30, 61,122,116, 91,117,181, 8, 33, 36, 50, 50,114,140, + 90,173,238,173, 84, 42,131, 36, 73, 34, 22,139, 37,221,100, 50,109, 79, 75, 75,155, 69,171, 81,184, 79, 8,105, 27, 16, 16, 48, + 50, 38, 38,166,241,229,203,151, 83,146,147,147,151, 3,216, 6,224,241, 6, 13, 26, 60, 31, 17, 17, 17,122,250,244,233, 11,217, +217,217, 11, 41,165,127,222,169, 56, 25,140,255,117,220, 50, 88,132, 16,206,223,223,255, 49,157, 78,247,102, 97, 97, 97,107, 31, + 31,159,211,162, 40,206,203,200,200,216,200, 62,120,247, 7, 37, 25,164,190,148, 82, 37, 0,240, 60,223,191, 67,135, 14, 97,132, + 16,153, 16, 66, 41,165,132,227,184, 88, 73,146,184,146,246,125, 9, 33,127, 82, 74,197,234,106,138,162,232,177,230,237, 34, 38, + 38,102, 26,165, 52,168,170, 54, 94, 94, 94,109,118,238,220,217,116,221,186,117,226,242,229,203,115,159,122,234, 41,195, 11, 47, +188,160, 88,182,108,217, 87, 0,254, 83,190,125,116,116,244,108,142,227, 2,220, 57,190, 44,203,217,103,206,156,121,187,154,225, + 51,106, 16, 66,200,132,151,103,236,238, 44, 83, 96,233,196, 46, 28,138,205, 75,181,136,141,141,253,126,192,128, 1, 79, 55,105, +210, 68, 33,203, 50, 4, 65,128,197, 98,105,122,244,232,209,174,219,182,109,107, 3, 96,168,135,177,245,157, 56,113,226,226,169, + 83,167,214, 81, 42,149, 68, 16,132, 7,127,250,233,167,158, 35, 71,142, 60,190,112,225,194, 86, 79, 62,249,164,183,125,253,228, +201,147,123, 17, 66,222,162,148,174,252,183,227,100, 48, 24, 46, 12,150,183,183,247, 3,117,234,212,121,167,118,237,218,189,218, +180,105,147, 55,124,248,240,191, 79,156, 56,113, 54, 38, 38,166,240,187,239,190,251, 68, 16,132, 5, 77,154, 52,249, 45, 63, 63, +127,214,181,107,215,206,122,114, 96, 66,200, 3, 0,134, 3,232, 5, 32, 4, 64, 58,128, 45, 0, 22, 83, 74,207, 85,231,100,130, +131,131, 91,120,121,121,141, 39,132, 60, 88, 84, 84, 20,226,229,229,149, 78, 41, 61, 84, 80, 80, 48, 51, 35, 35,227,104,117, 52, + 67, 66, 66, 26, 1,120, 67,161, 80,116,146, 36,169, 33,207,243, 73,146, 36,237,147, 36,105,126,122,122,250,133,234,104, 62, 28, +234,221, 79, 54,248,204, 18,120, 93,104,161, 89, 84, 25, 52, 10, 65, 41,155, 83,228,162,220,137,135,146, 11, 87, 87, 71,179,166, + 81,171,213,220,242,229,203, 91,169,213,106, 0,128,213,106, 69, 76, 76,204, 45,221, 39, 74,169, 84,114, 51,103,206,108,165, 82, +169, 0, 0, 54,155, 13,221,187,119,191, 43,238, 61, 69, 8, 9, 73, 76, 76,244,181,199, 86, 30, 73,146,208,191,127,255,112,181, + 90,141,133, 11, 23,138,217,217,217,173,151, 46, 93,154,248,213, 87, 95, 5,124,255,253,247, 67, 80,137,193,226, 56, 46,192,153, +166, 36, 73,176,217,108, 16, 69, 17, 86,171, 21,221,186,117,171,241,115, 98, 84, 15, 74,105, 24, 5,176,229,132, 25, 0,106,223, +138,150, 78,167,139, 26, 56,112,160, 34, 43, 43, 11, 74,165, 18, 54,155, 13,215,174, 93, 67,163, 70,141,120,171,213,218,196, 83, +189,166, 77,155,142,156, 62,125,122,221,205,155, 55,219,126,252,241, 71,203,163,143, 62,170,122,233,165,151,124, 58,119,238,220, + 41, 36, 36,132, 91,186,116,169,101,199,142, 29,182,231,158,123, 78, 51,109,218,180,186, 91,182,108,121, 26,128, 75,131, 85,211, +113, 50, 24,140, 42, 12,150,183,183,247, 30,131,193, 16,249,234,171,175,158, 27, 61,122,244,111, 6,131, 65, 2,128,107,215,174, +105,250,247,239,159, 53,104,208,160,235, 70,163,145, 95,176, 96, 65,131, 47,191,252,114,187,183,183,119, 90, 65, 65, 65, 59, 87, + 7, 36,132, 16, 0,111,114, 28,247, 70,143, 30, 61,246, 8,130,144,181,118,237,218,159,135, 12, 25,210, 81,150,101,175,223,127, +255,125, 19, 33,228, 27, 0,159,187,155, 29, 35,132,240, 17, 17, 17,241, 33, 33, 33, 99,191,254,250,107, 77,195,134, 13,161,215, +235, 81, 80, 80,208,224,194,133, 11,161,111,190,249,230, 19,141, 26, 53,154,231,235,235,251, 65, 98, 98,162,224,166, 38, 9, 10, + 10,250,143,143,143,207,199,159,124,242,137, 54, 58, 58,154,232,245,122, 92,189,122,181,121, 66, 66, 66,204,183,223,126,251, 82, + 72, 72,200,148,180,180, 52,183,227,236, 74,136,194, 18, 89,103,155, 95,211,118,221, 22, 46,254,150, 4,120,233,161, 32, 4,130, +205,166,204, 52,154, 34, 94, 31, 53,226,231, 14,141,235, 31, 40, 80,102, 62,114,230, 12,181,185,163, 89, 83, 80, 74, 69, 66,200, + 70,158,231,251,171,213,106,174,127,255,254,216,177, 99, 7, 49,155,205, 10, 0,208,106,181, 98,255,254,253,161,211,233, 96,181, + 90,101, 0, 27, 75,246,209,148,236,111,169, 74, 83,169, 84,114,221,186,117, 51, 30, 57,114,228,134,209,104, 84,218, 53,187,117, +235, 86, 75,163,209,232, 5, 65,112, 75,243,118,162, 86,171,113,233,210,165, 50,235, 36, 73,194,245,235,215,113,227,198, 13, 88, + 44, 22,146,147,147, 3, 73,146, 96,177, 88,178, 36, 73, 2,199, 21, 39,223,156,105,170, 84, 42,156, 63,127,190,194,122,155,205, + 6,147,201, 4, 65, 16,144,159,159,175,211,106,181,145,157, 58,117, 74, 5,176,174,176,176,112,214,241,227,199,147,106,246,236, + 24, 30,144,188,233,152,185, 1, 0, 27,128,203,183, 34, 68, 8,145, 1, 96,223,190,125,200,204,204, 68, 86, 86, 22,178,178,178, + 16, 26, 26,138,234,100,255,207,157, 59, 55, 55, 54, 54,150, 28, 63,126,124, 3,128,197,171, 86,173, 26,120,243,230,205,175,199, +141, 27, 87,107,230,204,153, 55,199,143, 31, 63, 10,192,154, 85,171, 86,189,216,162, 69,139,126, 39, 79,158,252,226, 78,196,201, + 96, 48,170, 40,114,167,148, 6, 61,240,192, 3, 55,231,204,153,211,116,226,196,137,181, 11, 11, 11,121, 0, 8, 10, 10, 50, 3, +128,209,104,228, 39, 76,152, 80,103,198,140, 25, 77, 53, 26, 77,142, 40,138,117, 42,209,168,108,132,193, 27, 62, 62, 62, 79,252, +253,247,223,171,154, 54,109, 90,107,250,244,233,199,188,188,188,232, 23, 95,124,113,180, 81,163, 70,129, 73, 73, 73, 63,248,248, +248,116, 7, 48,214, 73, 92, 21, 52,195,195,195, 39, 15, 25, 50,100,236,129, 3, 7, 52, 45, 91,182,132,183,183, 55,120,158,135, +159,159, 31,218,183,111, 79,246,238,221,171,233,221,187,247,152,188,188,188,153,238,106, 6, 7, 7,143,237,217,179,231, 39, 71, +142, 28,209, 61,242,200, 35,220, 36, 14,212, 0, 0, 32, 0, 73, 68, 65, 84, 68,173, 86, 35, 55, 55, 23,106,181, 26, 29, 58,116, + 32, 95,127, 53, 95,215, 60,186,217,228,144,144,144,169,238,106, 90, 30, 8,216,254,212,232, 9,221, 55,110,217, 70,234,213,171, +135,191, 63,159,138,125,157, 99,112,241,163,137, 8, 12, 12,196,134,205, 91, 73,223, 97,163, 59,250, 8,245,126,119, 87,243, 86, +113,212,164,148, 38,196,196,196, 36,158, 61,123, 22,157, 58,117,194,207, 63,255,220,114,220,184,113,163,199,141, 27, 55,250,231, +159,127,110,217,169, 83, 39,156, 61,123, 22, 49, 49, 49,137,148,210, 4, 66,200,104, 0, 55, 1,220, 44,249,219,169,230,158, 61, +123,208,189,123,247,156, 85,171, 86, 53,154, 52,105,210,180, 73,147, 38, 77,251,249,231,159, 35,186,119,239,158,179,103,207, 30, +143, 52,111,199,185,219,145, 36,169,194,131, 82, 10, 89,150, 81,183,110,221,235,155, 55,111,166,125,251,246,229,235,215,175,159, +222,191,127,127,205,161, 67,135, 40, 33,100,163, 39,113, 82, 74, 97, 50,153, 96, 50,153,112,249,242,101,221,188,121,243, 58,142, + 29, 59,246,129,159,126,250, 41,120,204,152, 49,163,124,124,124,142,182,106,213, 42,204, 19, 77, 79, 97,154,206,225, 56,238, 26, +138,205, 85, 17,199,113,201,213,213, 28, 60,120,112,243,176,176,176,122, 63,157,246, 71,142,170, 41, 36,165, 47,100,149, 31,164, +218,109,113, 81,213, 19, 65, 65, 65,245,194,194,194, 58,120,162, 73, 41,221,126,236,216,177, 94,148,210,133,148, 82,137, 82,250, +203,248,241,227, 95, 33,132,172, 30, 63,126,252, 8, 74,233, 47, 37,235,151,156, 56,113,162, 31,165,116,215,157,136,243, 86, 97, +154,255,155,154, 46,104, 11,160, 79,201,163, 29,128,246,229,150,213,229,218, 61,234,228,185, 79,185,229,182,229,246,179, 47,223, + 50,246,218, 23,106,127,216, 55, 16, 66,132,207, 62,251,236,224,183,223,126,187, 35, 35, 35, 35, 48, 34, 34,162,207,192,129, 3, +195,242,243,243,185, 65,131, 6,133, 7, 6, 6,246,221,181,107, 87,253, 65,131, 6,253, 62,100,200,144, 4, 66,136,203,186, 25, + 66, 72, 35,158,231,223, 58,126,252,248,254,240,240,112, 91,122,122,186,119,108,108,108, 1, 0, 52,110,220,216,120,227,198, 13, +157,183,183, 55, 54,111,222,124,152, 16, 50,156, 16,210,212,149,102, 80, 80, 80,108, 64, 64,192,216,143, 63,254, 88,195,243,124, +165,109, 52, 26, 13, 62,254,248, 99,141,143,143,207,171,193,193,193, 15,186,210,172, 95,191,126,148,183,183,119,252,188,121,243, +180, 86,171, 21, 54,155, 13,245,234,213,131,193, 96, 64, 70, 70, 6,210,174, 92,193,245,171, 87, 49,230,229,151,117, 94, 58,221, + 91, 65, 65, 65,173, 92,105,118, 10,247,238,111, 8,110,214,245,245, 55,222,196,153, 55, 95,198,142, 96, 53,234,191, 49, 1, 45, +119,159, 66,200,148, 89,216, 21,225,131,196,161,143,225,173,183,222,129,170,110,196, 67, 15,133, 26,158,114,165,121, 59, 80, 40, + 20, 84,163,209,192,108, 54, 43,246,237,219,215, 73, 20, 69,165, 40,138,202,189,123,247,118,253,237,183,223,122, 77,159, 62,253, +113,157, 78, 55,170, 67,135, 14,223, 19, 66,230, 82, 74,117,148, 82, 29,128,153,246,204, 83,101,154, 74,165, 18, 38,147, 73,121, +228,200,145, 17,146, 36,169, 37, 73, 82, 31, 57,114,228,181, 93,187,118, 61,191,112,225, 66,143, 53,255, 45,120,158,135, 66,161, +128, 82,169, 68,171, 86,173,254, 94,177, 98,133, 16, 20, 20,164, 88,180,104,145,127,221,186,117,189,190,255,254,251,220,156,156, +156,207, 60,209,180, 90,173,176, 88, 44, 48,153, 76,216,183,111, 95,195, 87, 95,125, 85, 97,181, 90,165, 97,195,134,221, 20, 4, +193,242,218,107,175,249, 24, 12,134,119,110,215, 57, 49,170,134, 82, 42, 1, 40, 2, 80,104,207,162,134,135,135,107,130,131,131, + 91,132,135,135,187,253,255, 88, 88, 88,248,205,236,217,179, 67, 56,141, 31,246, 91,123, 99, 21,157,138,237,126, 95, 33, 43,124, + 28,234,133, 62,128,158, 61,123,214, 37,132,204,175,129,120,215, 81, 74,135, 80, 74,127,173,206,254,183, 59,206,182,109,219,118, +106,211,166,205,145,184,184,184,140, 54,109,218, 28,105,219,182,109,167,234,106,217,153, 58,146, 60,250,233, 27,124,234, 71,163, + 8,253,244, 13, 62,117,234, 72,242,232,173,106, 50,238, 60,149,121, 17, 7,234, 16, 66, 54, 18, 66, 54,190,251,238,187,221, 0, +212, 46,183,252,144, 99, 59, 0,234,202,158,237, 15,135,245,117, 80,108,172,234, 56, 44,215, 8,165, 93,132,148,210, 74,187, 57, +234,212,169, 99,125,239,189,247,142,155,205,230, 83,223,127,255,125,228,232,209,163, 99,195,194,194,206, 15, 26, 52,104,147, 94, +175, 23,237, 53, 58,110,242,114,239,222,189, 55,215,170, 85,139,100,103,103,171,172, 86,171,226,218,181,107, 42, 73,146, 8,207, +243,212,104, 52, 42, 46, 94,188,168,180,217,108,242,131, 15, 62,184, 62, 33, 33, 97, 56,128,183,170, 18,212,235,245,175, 45, 90, +180, 72,235,204, 92, 73,146,132,194,194, 66,136,162,136, 41, 83,166,104,199,142, 29,251, 38,128,131, 85,105, 42,149,202, 49,115, +230,204,209,218,187,128,100, 89,198,209,163, 71,145,125,253, 58, 44, 5,249,176, 22,228,195,154,151, 3,174, 48, 15,207,247,122, + 92,187,240,215,181,111, 3,120,190, 42, 77,171,198, 48,227,251,197,223, 66,146, 36,164,175,173,188, 36,226,230,129,221,144, 68, + 1,211, 62,157, 73,222,122,249,201,233, 0, 86, 85,165,249,111,162, 86,171,185,207, 63,255,188,169, 90,173, 6, 33,132, 90,173, + 86, 68, 71, 71,223, 82,253,148, 90,173,230,231,206,157, 27,171, 82,169,136, 93,179,121,243,230,119, 69, 77,150, 35, 42,149, 10, + 58,157, 14,225,225,225,166,126,253,250, 37,204,157, 59,183, 1,207,243,122,133, 66,177, 53, 47, 47,111,250,233,211,167, 61,234, + 70,178, 88, 44, 48,155,205, 48,155,205, 72, 78, 78,174, 31, 25, 25, 73,254,243,159,255, 72, 69, 69, 69, 17, 75,150, 44,185,180, +106,213, 42,253,252,249,243, 7, 1,120,227, 54,157, 18,195, 9,145,145,145,106, 31, 31, 31,223, 6,181, 21, 69, 74, 30, 69, 25, +162, 88, 47, 36, 36,100, 2,128, 54,141, 27, 55,246,191,120,241, 98, 78,112,112,240, 65,142,227, 86,166,164,164,100, 84,165, 69, + 41, 37,162, 40, 98, 68,187, 92,140,122,144,131, 40,138,200,205,205, 69,114,114, 50, 78,159, 62,141, 67,135, 78, 87, 43,198,134, + 13, 27,190,172,213,106,123,168,213,234,112, 73,146, 56,163,209,152,100,177, 88,118,164,167,167,127, 67,171, 49,177,225,237,138, +211, 65,127,214,192,129, 3,131,124,125,125,113,236,216,177,160, 19, 39, 78,204, 2,208,230, 86, 52,213, 74,110,233,176, 87,230, + 7,215,242,243,195,213,179, 27,130,215,109,249,105, 41,138,107,121, 25,247, 56,206,188, 8,128, 44, 74,105,233,136,243,233,211, +167,247, 45,105,223,215,113,217, 13,253, 10,237, 74, 70,176,187,181,191, 39,148, 26, 44,251, 72, 49,103, 13,181, 90,173, 52,114, +228,200,243,235,215,175, 15,111,211,166,205, 95,206,138,129, 93,240,112,211,166, 77,147, 14, 31, 62, 76,235,212,169, 99,149,101, +153,232,245,122, 73,167,211,201,121,121,121, 16, 4,129, 38, 37, 37, 41,146,147,147, 85, 1, 1, 1, 42,184,145,170, 83, 42,149, + 29, 26, 54,108, 88,233, 54,171,213,138,194,194, 66, 20, 20, 20,192, 98,177,160, 94,189,122,132,227,184,246,174, 52, 57,142,235, +216,180,105, 83,146,147,147,131,160,160, 32,236,223,191, 31,133,121,185,176, 20, 20,192,146,151, 11, 91,126, 30,164,252, 92,228, + 94,207, 64,120, 96, 8, 41,153,106,160, 74, 68, 94, 23, 86,215,224,133,139, 83, 39,160,237,209, 36, 16,165, 10,135,155, 7,130, + 10,197,165, 86,237, 78,166,131,168,212,248,107,204, 11,168,255,236,171, 16, 56, 77,176, 43,205,219,129, 40,138,196, 98,177, 64, +171,213,138,157, 58,117,218,199,243,124, 87,181, 90,205,141, 26, 53, 10,215,174, 93,179, 55, 35, 0, 48,106,212, 40,232,116, 58, + 88, 44, 22, 17,192, 56,103, 53, 83,162, 40, 18, 65, 16,160,211,233,132, 54,109,218,124,195,243,252,107,106,181,154,111,210,164, + 73,230,140, 25, 51,210,189,188,188,188,146,147,147,111,170,213,234,212,240,240,240,118, 58,157, 46,204,149,230,191,137, 70,163, +129, 66,161, 0,199,113,168, 93,187,118,209,141, 27, 55, 14,253,253,247,223,207, 84, 71, 75,146, 36, 88,173, 86, 8,130, 0,179, +217, 12, 89,150,113,226,196, 9,104, 52, 26,165, 36, 73,167, 37, 73,210, 43,149, 74,240, 60,207,230,168,251,151,137,139,139,235, +218,178,190,207,172, 81,129, 22,255, 70,125,189, 10,245, 26,190,232,233,181, 66,219, 71, 31, 29,250,248,184,113, 19, 12, 1, 1, + 1,234, 43, 87,174,152,191,248,226,139,134,107,214,172, 33, 0, 62,175, 74, 47, 61, 61,125,245,140, 25, 51,106,117,237,218, 53, + 66,169, 84,146,220,220, 92,100,101,101,225,250,245,235, 72, 78, 78,166, 87,175, 94,253, 91, 20,197,159, 61,137,177,101,203,150, + 75,158,125,246,217, 97,209,209,209, 74, 74, 41, 4, 65,128,209,104,140, 61,116,232,208, 19,251,247,239,239, 4,192,227,255,203, +140,140,140,159, 63,253,244, 83,175, 46, 93,186, 52, 85, 42,149, 92, 77,196,233, 8,165, 52,200, 96, 48, 96,199,142, 29,240,241, +241,129,171,209,186,238, 96, 19,229,224, 90,126,181, 97,190, 48, 27, 65, 62, 97,176,137,242, 29,249,190,100,212, 60, 85,120,145, + 63, 1,244,185, 85, 51,116,187,204, 84,101,184,204, 96,217,185,118,237,154,166,176,176, 80, 33,203, 50,103,177, 88,148,178, 44, + 67,169, 84,186, 85, 48,238, 64,244,192,129, 3, 15,182,109,219,214, 8, 0,106,181, 90,244,245,245, 21,243,242,242, 80, 98,176, +100,133, 66, 97, 54, 24, 12,230,136,136, 8, 0,112,217, 69,104, 50,153, 26,232,116,186, 10,235,141, 70, 35, 10, 11, 11, 75, 13, +150,209,104,132,143,143, 15,138,138,138, 92,126,184, 37, 73, 10,215,235,245, 72, 79, 79, 7, 0, 20,230,230,192,156,159, 15, 91, + 65, 30,108,185, 57, 16,242,114, 33,228,229,128, 51,153,224, 23, 18, 10, 81, 20, 67, 93,105, 22, 89, 36, 53, 15,138,235, 27, 87, +163,222,107,227,156,182,187,185,111, 23, 12,145, 77, 96, 50,217,254,245, 57,202, 8, 33, 29, 56,142,139,107,214,172, 25,250,247, +239,143,161, 67,135,158,208,233,116,117,231,207,159, 31,157,150,150, 86,161,253,128, 1, 3,240,198, 27,111, 96,224,192,129, 63, + 28, 59,118,108, 65, 85,154, 93,186,116, 65,183,110,221,106, 13, 29, 58,244,170,193, 96, 72, 92,188,120,113,187, 41, 83,166,100, + 26,141,198,180,196,196,196, 22,169,169,169,250,198,141, 27,239,142,137,137,225, 54,111,222, 28, 86,149,230,191,141, 40,138, 16, + 4, 1, 54,155, 13, 22,139,197,229,103,197,145,242, 9, 5, 65, 16, 74, 71, 16,154,205,102, 8,130, 64,214,173, 91,139, 13, 27, + 54,112,103,207,158, 9,153, 56,241, 93,228,230,230, 66,146,164, 26, 63, 15, 70,229,180,105,211,166,151,130,202,139,158,171, 47, +106,159,171, 39, 22, 42, 56, 90,120,225,219, 15,138, 78,248, 41, 44,150, 34,226,253,254, 7, 31,248, 95,186,116,201,246,233,167, +159,102,244,239,223, 95,251,202, 43,175, 52,219,188,121,115,167, 6, 13, 26,124,155,156,156,156, 91,153, 38, 33, 68,245,242,203, + 47, 31,244,247,247,111,244,227,143, 63,102,166,167,167,215, 18, 4, 65,111,181, 90,109, 86,171,245,146,205,102,219,111,181, 90, +119,100,100,100, 36,122, 18,171,193, 96,104,249,212, 83, 79, 41,115,114,114,160, 80, 40, 96,179,217,144,149,149,133,214,173, 91, +243, 59,119,238,140,174,206,249,159, 57,115,102,118, 80, 80,208,238, 13, 27, 54,244,240,242,242,138, 83,171,213,245, 37, 73,146, +204,102,115,166,217,108, 62, 94,157, 56, 29, 33,132,164, 31, 61,122, 52,200,219,219, 27,105,105,105, 32,132,164, 87, 87,203,142, + 74,201,165, 92,253,107,125,104,144, 79, 67,156, 59,119, 16, 42, 37,151,114,171,154,140,187,131, 42,190, 95,219,150,108,239,235, +194, 36,153, 38, 78,156,248, 30, 33,100,227,196,137, 19,223,171, 68,223,190,159,228,216,206,161,125,141,253,168,175,242, 34, 94, + 80, 80,160,248,243,207, 63,107, 39, 39, 39, 27,234,215,175,111,140,137,137,201, 37,132, 80, 73,146,184,155, 55,111,122,165,166, +166,106,253,253,253, 45,161,161,161,121,110, 30,239,194,235,175,191,222,101,210,164, 73,137,143, 61,246, 88, 54, 0,228,228,228, + 32, 43, 43,203, 62, 74, 11,233,233,233,220,145, 35, 71,106,109,221,186, 53, 22,110,140,224,209,233,116,201, 5, 5, 5, 77,252, +252,252, 0, 20, 95,208,236,166,202,241,217,102,179,161,160,160, 0, 94, 94, 94, 46, 63,220, 28,199,165,165,165,165, 69,154, 76, + 70, 36, 93,188, 8, 75, 65, 30,108,249,121, 16,242,115, 33,228,230, 66,202,189, 9,174,176, 0, 6,157, 14, 5, 55,111,128,231, +249,107,174, 52,189, 52,188, 85, 16, 37,117,157,158, 79, 0,196,249,245,217,175,125, 71,208,168,150,208,233,126,245,212,188,222, + 18,246, 57,171,236,115, 82,233,116, 58,124,242,201, 39, 72, 76, 76,148,171,234, 6, 86,171,213,224, 56,174, 82, 55, 80, 94, 83, +163,209,232, 38, 77,154,164, 59,126,252,184, 86,173, 86,195, 96, 48,232,143, 31, 63,222,226,143, 63,254,224,140, 70, 35, 31, 25, + 25, 57, 48, 56, 56,184,176, 42,205,219,137, 40, 86, 44, 35, 20, 69, 17,133,133,133,165,117, 83, 55,111,222, 84,104,181,218,198, +157, 59,119, 78,176, 90,173, 63,139,162,248, 93, 98, 98, 98,190, 51, 77,155,173,226, 96, 80, 89,150, 33,138, 34, 68, 81,132, 66, +161,144,215,173, 91,143, 47, 23,204,197, 47,171,126,165, 93,186,116, 33,155, 55,111,134, 44,203,169, 53,123,118, 12,103,200,178, + 60,107,215,132,193, 90, 72, 82,161,101,247,138,162,109, 55, 20, 69,223,158,218,117,228,134, 96,209, 60,240, 64, 68,148,143,183, + 47,247,253,242,111,111,102,100,254,125,225,203, 47, 83, 67,167, 77,155,230, 23, 17, 17,225,123,254,252,249, 96, 0,149, 26, 44, +131,193, 16,254,194, 11, 47,188,116,243,230, 77,229,226,197,139,151,165,165,165,237,165,148,254,237,216,134, 16,210,154, 16, 50, + 19,128, 18, 64, 61, 0, 34,128,237,148,210, 31,156,197, 90, 50,135, 28,118,239,222, 93, 97,180,159, 44,203,213, 30,237,151,145, +145,145,211,190,125,251,150, 23, 46, 92, 88,151,147,147,243, 99,249,237,122,189,254,137,152,152,152,167, 15, 31, 62,252, 33,165, +244, 82,101, 26,206,160,148,190,117,246,236,217,207,100, 89, 14,227, 56, 46,137, 82, 58,190,186,113,218,177,218,228, 87,214,111, + 89,181,216, 42, 72, 13,212, 74, 62,217,106,147, 95,189, 85, 77,198, 93,143,189, 70, 10,142,198,169, 18, 99,244,199,244,233,211, +117, 51,102,204,192,244,233,211, 43,244,111,219, 53, 40,165,125,167, 79,159,126,218,222,206,161,253,222,154, 10, 88, 81,114,160, + 10, 87,124, 81, 20, 13,239,190,251,238,195,177,177,177,233, 93,187,118,205,104,216,176,161,209,190, 77,175,215, 91,253,252,252, +172, 22,139, 69,147,158,158, 94,231,175,191,254,106, 40,203,114,197, 52, 82, 69,126,247,243,243,171,117,228,200,145,218, 43, 87, +174,124,224,232,209,163, 97,207, 62,251,108, 23,139,197, 2,171,213,138,203,151, 47,135, 45, 90,180, 72, 86,169, 84,185,132,144, + 63, 1,184,188,200, 10,130,144,112,225,194,133,198,237,219,183, 39,130, 32,148, 49, 85,142,127,171,213,106,164,165,165, 81, 89, +150, 15,185, 17,231,193, 35,135, 15, 71, 54,111,214, 12,150,188, 28, 88,243,115, 97,203,203,133,152,151, 11, 57, 63, 23, 92, 97, + 1,106,215, 82, 66,167,243,194,133,244, 12,148,196, 90, 37, 74,209,116, 53, 45, 47,191, 73,100,252,231,216, 21,225, 3, 42,216, + 74,187, 5, 1,148,118, 23, 62,244, 87, 22,246,253,145, 0,133,100,169,152, 50,250, 23,177, 90,173,242,160, 65,131, 14,115, 28, +231,241,141, 62,157, 33, 8,130, 60,122,244,232, 82,205,148,148,148,155, 41, 41, 41, 90,147,201,196, 25, 12,134,194,154, 58,206, + 45,196, 87, 97,157,205,102,131,213,106,133,201,100, 66, 70, 70,134,122,251,246,237,157, 18, 18, 18, 84,103,206,156, 65, 66, 66, + 66,171,117,235,214,189, 27, 21, 21,213,242,175,191,254,170,212,100,151, 55,109,178, 44,195,126, 29,164,148,130, 82,202, 3,192, +250, 53, 27,209,179,103, 79, 82, 80, 80,128, 13, 27, 54,212, 72, 55, 10,195,109,138, 32, 74, 58,235,158, 21, 69,239, 92, 84,231, +159, 54, 42, 62, 78, 76, 76,220,214,187,119,239,125, 65,245, 34,124, 0, 64,163, 50,212,225,169,183,161, 78,157, 58, 26, 0, 8, + 10, 10,138, 19, 4, 97, 1,128,142,149, 9, 14, 24, 48,224,161,186,117,235,198,110,217,178,229,120, 90, 90,218,190,242,230, 10, + 0,154, 52,105, 50,229,212,169, 83,189,148, 74,101,233,247,111, 73,113,111,165, 6,107,240,224,193, 77, 66, 66, 66,106,111,190, +224,139,124, 85, 36,100, 46, 23,148,215, 64,242,107,137, 36, 85, 52,234,213,251,171,118,100,100,100,171, 75,151, 46, 29,247,228, +228, 9, 33, 13,158,124,242,201, 77, 75,150, 44,137,234,217,179,167, 26, 64, 5,131, 21, 21, 21, 53,104,231,206,157, 67, 70,141, + 26,213,146, 16,210,143, 82,122,209, 93,253,196,196,196, 3, 0, 92,150, 81,120,194,164,133,116, 7,128,176,154,212,100,220,121, + 92,244, 14,100, 57,100,159,178, 80,124, 47,101,199,101,251,255,189,213,161,109, 86,137,110, 95, 0,214,114, 89,175,202,182,101, + 1,168,177,228,134,211, 12,150,205,102,219,126,249,242,229,182, 79, 62,249,100,150,163,185,114,124, 1, 12, 6,131,197,199,199, +167,240,240,225,195, 65,146, 36,237,118,227,120,139,119,238,220,185,107,222,188,121, 43,106,213,170, 37, 60,255,252,243,220,132, + 9, 19,246,221,184,113,131,222,184,113, 3,243,231,207,239,220,169, 83,167,125, 73, 73, 73, 82, 98, 98,226,139, 0,122,186, 18, + 52, 26,141, 95,189,246,218,107, 79,239,219,183, 79,107,181, 90,145,155,155, 91, 33,123, 37, 8, 2,120,158,199,130, 5, 11, 44, + 69, 69, 69,115, 93,105,138,162,248,205, 87, 95,125, 53,100,209,151,243,180, 10,193, 6, 99,110, 14,164,146, 7,111, 46,130, 65, +203, 33, 50,182, 14,114,211, 53, 88,190,229,128, 73, 20,197,175, 92,105, 42,205,133,227, 70,141, 24,190,113,251,239,187, 80,187, + 99,119,100,239,218, 90,161,141,186, 78, 61, 88,109, 54,124, 60, 53,158, 18, 83,238, 4, 87,154, 53,137,125,206, 42, 66,136,253, + 31,112,227,177, 99,199, 18, 98, 99, 99,123, 89,173, 86,167,251, 89,173, 86,200,178, 92,233, 8, 3, 87,154, 26,141, 38,181, 73, +147, 38,191, 55,106,212,104, 32, 0, 52,107,214,108, 13,199,113,221,171,210,188,157, 8,130,128, 73,147, 38, 97,198,140, 25,152, + 56,113, 34,128, 98,131,100,255, 1, 96,177, 88, 26,110,221,186, 85,125,224,192, 1,186,124,249,242,236,193,131, 7,251, 61,251, +236,179,126, 63,254,248,227,127, 0, 84,250,126, 9,130,128,241,227,199, 99,225,194,133, 24, 57,114,100,133,237, 60,207,203,105, +105,169,176, 88, 45,116,253,250,245,233, 10,133,194,255,139, 47,190,208,141, 29, 59,246,174, 43,246,191, 95,145, 36,233,253,142, +179,215,189, 9,232, 4, 81, 20,231,158, 56,113,100, 55, 0, 12, 29, 58,180,238,236,217,179,213, 0,240,249,204,207,149,148, 82, +165,125, 98,216,143, 62,250, 72, 59, 98,196,136,186,206, 52, 87,175, 94,157,243,209, 71, 31,213,126,229,149, 87,122,238,218,181, + 75, 75, 8,217,138,226, 26,146,108, 20,255,112, 12, 0,112,160, 78,157, 58,129,171, 86,173,138,236,209,163,135,151,171, 56,139, +138,138,190,253,250,235,175,195,103,237,245,198,230,162,129, 72,161, 67, 65,107, 81,212, 82, 21,160,153, 33, 25, 93, 2, 83,130, +126,252,241,199,197, 0,226,220, 61,119, 66, 72,244,224,193,131,215, 46, 89,178,164,225,240,225,195, 83, 15, 28, 56,144, 66, 8, +153, 82, 73,211, 27, 47,188,240, 66,210,178,101,203, 34,101, 89,222, 70, 8,233, 73, 41,173,214, 68,203, 12, 70, 53,113,235,182, + 79,213,104,123,219,112,106,176, 68, 81,124,153, 16, 18, 51,113,226,196,207,130,130,130, 26,196,199,199, 95,105,214,172, 89,145, +125,251,141, 27, 55, 12,123,246,236,137,200,207,207, 47, 16, 69,113, 24,165,244, 68,121, 13, 82,238,110,219,148,210, 36, 66,200, +103,173, 90,181,122,250,167,159,126,218,227,237,237,157,127,240,224, 65, 31, 31, 31,159,188, 51,103,206,120,241, 60,111,252,251, +239,191,177, 99,199,142,206, 0,190,172,236, 87, 82,121,205,244,244,244, 99, 13, 27, 54,252,124,236,216,177, 99, 63,252,240, 67, +173, 44,203, 48,153, 76, 40, 40, 40,128,217,108, 46, 45, 78, 94,185,114,165,197, 98,177, 44, 74, 75, 75,171, 48,130,176, 18,205, +132,208,208,208,133,115,191,152, 59,250,213,167,159, 84,211,220, 27,200,203, 48,129,152,139, 96,208,170, 17,221, 61, 24, 69, 55, + 8,150,236, 57, 98,189,105,181,173, 74, 75, 75,171, 96, 46,203,107,238, 79, 46,216,244,224, 3,117,119,124, 52, 53,254,209,119, +191,251, 21,178, 44,227,175,215,158, 71,206,222, 29,208, 55,107,129,135,254,202,130,213,106,197,196,241, 99,193, 27, 51,247, 29, + 76, 46,252,197,149,102, 77,224,168, 89, 50, 15,213,159, 37,127,139,132,144,209,132,144, 97, 81, 81, 81, 24, 53,106, 20, 6, 12, + 24, 80,102,223,181,107,215,226,235,175,191,134,197, 98, 25, 70, 8, 57, 74, 41, 93,224,137,102,195,134, 13,219, 69, 71, 71,243, + 65, 65, 65, 70, 0,224,121,190,251,233,211,167,219, 70, 69, 69, 85,169,121,155,206, 61,231,226,197,139, 62, 51,103,206, 36, 54, +155, 13, 83,166, 76,129,221, 88,218, 51, 78,239,191,255,126,144,183,183, 55,102,205,154,101,205,206,206,126,228,198,141, 27, 59, +231,205,155, 23,176,114,229,202,103, 80, 98,176,202,105, 94, 63,123,246,172,247,194,133, 11, 57, 81, 20, 49,123,246,236, 10, 25, +173,183,222,122, 11, 54,155, 0,165, 66,105,181,152, 45,209, 58,157,238,146,191,191,191, 78,150,101, 90, 89,156,183,227,220,255, +215, 53, 79,156, 56,177, 29,192,118,103,237,237,117,116, 38,147, 9,217,217,217,200,206,206,134,175,175, 47,224, 48,193,108,121, + 77,147,201,116,124,252,248,241,137,223,124,243, 77,207, 63,254,248,227,201,189,123,247,246,222,177, 99,135, 57, 41, 41, 73, 20, + 4,129, 6, 6, 6, 42, 58,118,236,168,237,221,187,183,151, 70,163,225,222,127,255,253,236, 79, 62,249, 36, 0,192, 13,103,154, +148, 82, 94,150,101,188,221, 41, 31,227,187, 41, 96,177, 20,255,160, 76, 79, 79,195,233,211,167,145,144,112, 14,132,144, 42, 7, + 71, 84,242,122,206,253,241,199, 31, 35,212,106, 53, 89,177, 98, 69,131, 21, 43, 86,140,113,245,250,253,240,195, 15,225, 43, 86, +172, 88, 64, 8,121,148, 82, 42,223,171,239, 59,211,188,251, 52,239, 55,170,172,193,162,148,158, 6,208,147, 16,210,113,248,240, +225,159, 70, 69, 69, 89, 68, 81, 84,110,219,182,173,105,118,118,182, 90, 20,197,241,148, 82,143,250, 43, 41,165, 11, 9, 33,232, +223,191,255,248, 70,141, 26,237, 60,122,244,104,203, 62,125,250,108, 91,187,118,109, 71, 81, 20,255, 62,117,234,212, 48, 0,115, + 1,124,233,174,230,213,171, 87,167,236,216,177,131, 28, 60,120,240,157,137, 19, 39,106,234,212,169, 67,252,252,252, 96, 50,153, +144,146,146, 66,151, 45, 91,102,177, 88, 44, 95,250,250,250,126,224,174,102,157, 58,117, 38,236, 61,114, 68,125,254,210,197, 23, + 95,236,245,152,182, 65,227, 38, 48, 16,160,240,230, 13,236,217,147,129,239, 14, 29, 55,103, 91,109,255,229,121,222,237,161,244, + 33,151,178,122,110, 95,181,100,203,238,223,127,127,116,218,140,207, 72,208,115,175,194, 43,172, 33,228,240, 7,176,103,247,110, +124,242,209, 20,202, 23,102,238, 21, 46,101, 62,230,174,102, 77, 67, 75,238, 3, 88, 50,255,212, 76, 89,150, 21, 64,113, 77,214, + 27,111,188, 1,199, 91,231,124,253,245,215, 48,153, 76, 0,160, 32,132,204, 36,132, 44,173,108,212, 95, 21,154,161,155, 54,109, + 10,117,212,140,138,138,114, 75,179,166,201,204,204,252,224,229,151, 95,158,161, 84, 42,125,101, 89,174, 80,156, 14, 0, 94, 94, + 94,200,207,207,135, 36, 73, 98,173, 90,181,206, 9,130, 0,133, 66, 1, 56,249, 28, 21, 21, 21,125, 48,114,228,200,143, 9, 33, + 78, 51, 29, 58,157, 46,105,255,254,253, 15, 60,251,236,179,220,170, 85,171, 46, 63,243,204, 51,154, 63,254,248, 67, 2, 80,173, + 57,141, 24,183, 31, 74, 41,138,138,138, 0,192,233,148, 8,148,210,100, 66,200,248,196,196, 68,237,200,145, 35,227,158,123,238, + 57,159,110,221,186, 25, 28,219,152, 76, 38,121,195,134, 13, 69, 11, 23, 46,188,177,119,239,222, 63, 95,122,233,165,129, 40,238, +222,168,148,244,244,244, 77,243,231,207,247,237,210,165, 75, 99, 73,146,144,157,157, 93, 90,131,149,154,154,138,164,164,164, 36, + 89,150,215,123,120, 58,175, 61,251,236,179,155,151, 45, 91, 22, 54,124,248,240,212,149, 43, 87,174, 7, 80, 89, 77,173, 97,208, +160, 65, 79, 44, 91,182, 44,108,196,136, 17,201, 0,198, 80, 54,195, 59,131, 81, 37,110,141, 84,163,148,238, 7,208,129, 16,210, +159,231,249,113,133,133,133,179, 41,165,235,170,123,208, 18,147,181,237,226,197,139,175, 0,104, 51,119,238,220,119, 1,164,160, + 56,173,215,163,178,122, 5, 23,122, 18,128, 15,131,131,131, 87,199,199,199,215,200,189, 8, 75,110,169,243, 90, 80, 80,208,202, + 79, 87,174,254,128, 82,218,154,163,114,109,153,112, 57, 28,199, 29,147, 36,233,147,212,212,212, 61,158,104,254, 92, 28,103,143, + 7, 27,120,247, 29, 63,226,217,207, 68,165, 46,188,208, 44,170,189, 52, 10,171, 74,178, 36,113,166,156,247, 15, 38, 21,222,149, + 23, 86,139,197, 34, 14, 28, 56,240, 91,142,227,100, 0,144, 36, 73, 97,177, 88, 94,132,155,255, 67,255,150,102,117,201,206,206, + 46, 4,240, 90, 85,109, 58,117,234,244,195,150, 45, 91,158,237,209,163,135,180,113,227,198,204,190,125,251, 42, 18, 19, 19, 41, +128, 29,149,181,191,122,245,170, 5, 78,238, 72, 96,167, 85,171, 86, 97, 75,151, 46, 61,250,202, 43,175,248, 44, 88,176,160,214, +225,195,135,165, 37, 75,150,228, 23, 22, 22,206,170,246,201, 48,106, 20, 82, 50, 40, 69,169, 84, 66,175,215,195,199,199, 7, 89, + 89, 89, 46, 71,122, 82, 74, 47, 17, 66,250,140, 27, 55,174,211,184,113,227,250,132,132,132, 68, 55,104,208,160, 1,199,113, 92, + 70, 70, 70, 86, 74, 74,202, 85,155,205,182, 19,192, 38, 0,170, 70,141, 26, 29, 3,176,220,153,222,153, 51,103, 62, 14, 10, 10, +218,181,102,205,154, 62, 26,141,166,153, 90,173,174, 37, 8, 2, 87, 84, 84,116,211,102,179,157,181, 88, 44, 27,211,211,211,255, +240,228,220, 40,165,231, 9, 33,221, 20, 10,197,166, 37, 75,150, 68,101,100,100,132,239,217,179,167, 95,249,118,113,113,113,203, +150, 45, 91, 22, 54,106,212,168, 75, 43, 86,172,240,168, 6,139,193,248, 95,197,163, 11, 89,137,169,170,182,177, 42,167,149, 4, +224,131,146, 71,141,144,150,150,118, 18,192,179, 53,165, 7, 0,233,233,233, 7, 0, 60, 14, 20,207,230,156, 82,124,209,188, 37, + 14, 38, 23,108, 4,176,209,101,195, 59, 8,165,212, 66, 8, 25, 87, 50,202, 9, 0,198,149,159, 54,129, 16,114,194,113,187,171, + 76,211,237,208,252, 55,201,201,201,249,207,119,223,125,119,248,245,215, 95,215, 12, 29, 58, 20,103,207,158,197,130, 5, 11, 44, + 57, 57, 57, 46,111,166,235,140,227,199,143, 39,181,106,213,170,245,226,197,139,223, 89,180,104, 81,127, 66, 8,187, 23,225, 93, +130,213,106,253,251,169,167,158,178,223, 63,149,218,111,157,100,159,182, 67, 20, 69,151, 63, 4, 75,178,183,187, 74, 30,174,168, +244, 86, 94,142,164,167,167, 39, 0, 72,112, 67,203,109, 74,178,109,125,174, 94,189, 58,237,252,249,243, 21,139, 67, 1,156, 62, +125,122,109,143, 30, 61,244, 9, 9, 9,239,121, 58,138,144,193,248, 95,133, 84, 99,226, 95,247,197,239,145,126, 95,166,233, 92, +147,184,184,241,114,101,219,239,132,102,117, 96,154, 76,147,105, 50, 77,166,121,247,104,222,111,252,235, 93, 49,140,123, 11,119, +178, 82,119,131, 38,131,193, 96, 48, 24,119, 19, 4, 64,165,243, 28,121,226, 76, 9, 33, 30,207,149,228, 74,159,105, 50, 77,166, +201, 52,153, 38,211,100,154,247,159,102, 37,218,131,203,109, 42, 51, 15, 36,165,116,145,167, 49,220, 13,176, 46, 66,166,201, 52, +153, 38,211,100,154, 76,147,105,222,113, 77, 39,199, 25,126,175, 26, 44,118, 67, 89, 6,131,193, 96, 48, 24,140, 26,134, 25, 44, + 6,131,193, 96, 48, 24,140, 26,198,173, 34,119,181, 90, 29, 67, 41,125,137, 16, 82,159, 16,114,141, 82,186,212,106,181, 86,184, +137,226,253,142, 90,173,142, 33,132,188, 68, 41,173, 79, 41,189, 70, 8,185,179,175, 3, 33,100, 74,124,241,108,210,147,227, 65, + 43,157, 29,147,193, 96, 48, 24, 12,198,191,142, 83,131, 21, 30, 26,250, 36,199,147,121, 54, 65,242,247,243,243,227,230,207,159, +207,245,235,215, 15, 27, 54,108,192,152, 55,222, 24, 19, 28, 28, 36,171, 20,138, 28, 42,139, 99,174,166,164,255,228,206,193, 6, + 13, 26,148, 41, 8,130,211, 89,173,121,158,191,190,118,237,218,122,213, 57, 17, 71,130,227,158,204, 20,108, 54,167,199, 81, 40, +148,215,211,143,253,236,214,113, 66, 67,131,158,228, 9, 55, 79,144,100,127,127,127,127,238,203, 47,191, 44,125, 29, 94,127,253, +245, 49, 33,193,193,178, 74,201,231,200, 18, 29,115, 53, 37,197,173,215,161, 70,112, 48, 87, 0, 48, 37, 30,100, 50, 33, 96, 38, +139,193, 96, 48, 24,140, 59,143, 83,131, 69, 56, 44, 88,241,205, 76,255, 27, 55,115,176,114,237, 54, 68, 69, 69,225,204,153, 51, +136,138,138, 66,199,118, 45,185,199, 59,180,226,120, 14,117, 38,125,185,124, 1, 0,183,140,133, 32, 8,117,215,172, 89, 3, 66, + 72,233,132,125,246, 73,251, 10, 10, 10,240,230,155,111, 58, 53, 69,158, 32,216,108,117,255,254,243, 87, 40,121, 2, 65,162, 16, + 68, 10, 65,148, 97,147, 40,242,141, 34,186,247,121,214,237,227,112,224, 22, 44,157, 55,211, 63, 55, 47, 15,191,110,222, 94,230, +117,232,254,112, 91,110,104,239,174,156, 94,167,170, 51,124,194,167,110,191, 14, 53,129,163,185,114, 92, 55,185,138,219,119, 48, + 24, 12, 6,131,193,248,119,112,106,176,172,130,228, 95,175,150, 47,190, 91,186, 20,227, 39,126,132,166, 77,155,130, 82, 10, 66, + 8,222,251,112, 42,230,124, 52, 17, 79,245,234, 12, 65,148,253,157,105, 84, 54,194,128, 16,130, 43, 87,174,192,100, 50,149,121, +196,196,196,184, 21,176,187,163, 22,148, 60,193,166,163, 5,176, 9, 50,108, 98,201, 67,144,209,173,185,183, 71,154,130, 36,251, +251,249, 24,176,248,155,175, 49,126,234,204, 50,175,195,132,247, 62,196, 87, 51, 62,192, 91,163,254, 15, 86, 65,242,119, 87,179, +186, 48, 77,166,201, 52,153, 38,211,100,154,247,171,230,253,134, 2, 0, 8, 33, 93, 0,236, 6, 0, 74,105,105,102, 68,176,154, + 17, 29, 90, 27, 95,207,250, 24, 20, 28,100, 74, 1, 10, 80, 89, 64,195, 0, 61, 76, 70,163,199, 7,148,101, 25, 54,155, 13,130, + 32, 96,209,162, 69, 40, 44, 44,132, 44,203,136,138,138, 2, 0,196,197,197, 57,102, 96,146, 19, 19, 19,195, 92,105,214,109, 49, + 32, 9, 20, 13, 28,215, 77,158,249, 45, 14, 28,253, 27,148, 2, 26,157, 30, 67,158, 27, 1, 73,166,176, 9,158,223,159,212,108, + 52, 34,208,160,196,156, 79, 62, 4,167, 84,129, 3, 1,199, 17,112, 68, 70,211, 16,127, 88,138,111, 78,252,175, 50, 57, 30,180, +124, 22,107,114, 60, 40, 38,255,235,161, 48, 24, 12, 6,131,113,203, 56,243, 34,247, 42,246, 12,214,238,202, 78,198,106, 54, 33, +196, 95,133,250, 6, 95,136,162,132,211,182, 64, 20, 24,205,176,217, 4, 36,217,108,184,116, 44, 3, 15, 61,244, 16, 6, 12, 24, + 32,217,108, 54,168, 84,170,188,181,107,215,214,170,234,128,178, 44, 67, 16, 4,216,108, 54, 20, 21, 21,225,199, 31,127,132, 66, +161,128, 44, 23, 27, 31,123, 9, 17,165, 20, 15, 63,252,112,131,170,180, 74,161,104,112,233,240,106,120,107,121,136, 50,133, 40, + 82, 8, 18, 32,201, 20, 70,171,140, 65, 47,127, 0, 81,150, 33,202, 50,172,110, 24,172, 50,134,173, 86, 91,244,127,119, 37, 0, + 67,233,118, 31, 13,197,248,135, 57,168,212, 26,168, 85, 60, 44, 38,207,141,230, 45, 67, 41,157, 76, 8, 88,145, 59,131,193, 96, + 48,238, 19, 42,245, 34,247, 42,101,186, 8, 9, 33, 93, 40,165,123,236,203, 86,179, 17,162, 32, 65, 16, 37,136,130,136,188, 66, + 19, 62,251,236, 51,104, 52, 26, 16, 66, 74,205,146, 44,203,156, 32, 8,232,221,187,183,211,238, 66, 59,146, 36,193,102,179,193, +102,179,129, 82, 10,158,231,209,190,125,251, 10,237, 14, 30, 60,232,209,137,120,107,121, 52,124,244,221, 10,235, 15,173,254, 24, +148, 82, 72, 82,241,195, 29,131,229,202,176,197,118, 25, 10,139, 85, 0,165, 0,104,113,134,235,142, 64, 41, 45,173,185, 98,153, + 43, 6,131,193, 96,220, 7,148,247, 34,247, 42,229,107,176,118, 3,255,116, 59, 89, 76, 38, 8,130, 8, 81,148, 32, 8,197,198, + 72,167,211,161,115,231,206, 0,202,102,155,182,109,219, 6,155,205,230,242,128,246,162,246, 18, 99, 6, 74, 41, 86,174, 92, 9, +165, 82, 89,250, 80,169, 84, 30,159,136, 40, 81,188, 59,225,109,168, 20, 28,148, 10,174,244, 89,162, 20,148, 22,155, 35, 73,166, +176, 8,238, 37,121,170, 50,108, 0, 96,181,216, 0, 74, 65, 65, 97, 42, 42,242, 56, 94, 6,131,193, 96, 48, 24,149, 82,198,139, +220,171,216, 13, 86, 87, 66, 72, 5,231, 97, 53, 21,149,100,175, 36, 8,162, 88,106,160,102,205,154, 5,133, 66, 1,181, 90, 13, +133, 66, 81,106,136,220, 49, 88,102,179, 25, 17, 17, 17,176, 90,173,136,138,138, 2,165, 20, 79, 63,253,116,133,118,135, 15, 31, +246,232, 68, 4,137, 98,250,167,179, 43,172,223,255,243, 71,104,209,172, 33,218, 61,224, 5,179, 77, 70,190, 81,116, 75,175, 42, +195, 6,160, 56,131, 5,128, 82,192, 84,116,135, 50, 88, 12, 6,131,193, 96,220, 63, 84,234, 69,238, 85, 20, 0, 80,146,138,171, +224, 22,205, 70, 35, 68, 65, 44, 53, 89, 86,171, 21,178, 44,227,141, 55,222,168, 32,180,115,231, 78, 88,173,214,170, 15,166, 80, + 92,127,245,213, 87,203, 76,145, 64, 41,197,234,213,171,161,209,104,202,100,177, 8,241,204,188, 10, 18, 69,252,251, 99,161, 86, +242,101, 12,145, 44, 3, 27, 54,253,134, 13,155,126, 43,109,203,243,202,235,238,232, 57, 51,108, 0, 96,181,150,100,176, 40, 69, + 81, 97,129, 71,177, 50, 24, 12, 6,131,193, 40,139, 51, 47,114,175, 82,229, 76,238,102, 83, 17, 4,135, 26, 44,155,205, 6, 81, + 20,177,104,209,162, 50,221,121, 74,165, 18, 28,199,185,204, 96,173, 89,179,166,204,228,158,113,113,113,148, 82,138, 33, 67,134, +148,118, 55,190,248,226,139, 24, 62,124,184,199, 6, 75,148, 40,166, 76,155, 85,170,211,251,209, 78,232,223,171, 11,228, 18, 47, +124,253,212, 90,143, 4,171, 50,108, 0, 96,181, 20,215, 96, 81, 0,198, 2,214, 69,200, 96, 48, 24, 12, 6,227, 31,156, 26, 44, +165,130,203,187,148,116,205, 55,192, 75, 11, 81,182, 64,148,139, 71,254, 73,146,132,225,195,135,151,182,123,230,153,103, 48,108, +216,176, 74, 13,150, 59,119,219,150,101, 25,251,247,239, 7, 33, 4, 28,199,149, 62,156,225, 76,179,200, 34,227,192, 79, 83, 33, + 83, 10,153, 2,114,201, 64, 4,171,232, 58,219, 88,153,166, 43,195,166, 49,248,129,231, 40, 8, 1, 46,165,102, 66,193,115,121, +158,158,187,167, 48, 77,166,201, 52,153, 38,211,100,154,247,171,230,253,134, 83,131, 69, 37, 58,102,225,198,131,243, 4, 73,246, +181,175,139,142,142,134,205,102,195,214,173, 91, 75,141, 7,207,243,165, 93,122,238,212, 96,149, 35,185,115,231,206, 85, 77,197, +144,236,150, 10, 65,114,155,110, 79, 58,215, 33,110,234, 56,224,202,176, 45,217,251,207, 45, 8, 21, 28,151, 7, 74,199,120,122, + 12, 6,131,193, 96, 48, 24,247, 39, 78, 13, 86,114, 90,218,114, 0,203, 29,215,245,233,211,167,240,137, 39,158,208,137,162, 8, +171,213, 10,155,205, 6,171,213, 90,250,208,104, 52, 30,205,184,233,206, 36,162,238,112,253,228,218, 26,209, 41,197, 13,195,150, +158,158, 94,179,199,100, 48, 24, 12, 6,131,113,223, 80,101, 13, 86,121,140, 70,163, 31, 33, 68,145,158,158, 94, 97,219,181,107, +215, 0,192,189, 33,122,119, 57, 53,110,216, 24, 12, 6,131,193, 96,252, 79,225,145,193,218,189,123,183,136,251,196, 68, 49, 24, + 12, 6,131,193, 96,220, 46,156, 87,147, 51, 24, 12, 6,131,193, 96, 48,170,235,122,100, 60, 0, 0, 32, 0, 73, 68, 65, 84, 5, + 1,208,188,178, 13,158,140, 14, 32,132, 84,170, 81, 21,174,244,153, 38,211,100,154, 76,147,105, 50, 77,166,121,255,105,186,210, +118,220,159, 16, 50,156, 82,186,200,211, 24,238, 6,200,237,188, 63,240,189, 50, 52,148,105, 50, 77,166,201, 52,153, 38,211,100, +154,119, 86,211,201,113,238, 89,131,197,186, 8, 61,128,196,141, 80,222,233, 24, 24, 12, 6,131,193, 96,220,253,120, 84,228,126, + 43, 76,153, 50,229,150,204,220,228,201,147,229,154,138,197, 83, 72,200,224, 72, 94,129,207, 90,199,182,232,197,133, 13,218, 76, + 37, 50,129,166,174,190,116,167,226,185,215,137, 53,144, 0,129, 40,251,250, 27,180,253, 27,120, 43, 30,188,152,109,252,195,104, +147, 55, 80, 34,172, 59,147, 79,115,238,116,124, 12, 6,131,193, 96,220, 42,183,108,176,218,182,109,219, 80,150,229,255, 3,240, + 28,165,244,248,209,163, 71, 7, 87, 71,103,231,206,157,193,130, 32,180, 21, 69,177, 53,128,214, 58,189,161,149,197, 98,190, 78, + 64, 95,232,213,171,215, 49, 79,245,226,226,226, 54, 1,232, 93,217, 54, 66,200,148, 35, 71,142,196,187,171,197, 43,240,217,111, +235,150,244,207, 48,234,176, 39, 49,105,192,210,207, 39, 2,192, 64, 79, 99,250, 55, 8, 10, 10,210, 1,120,129,227,184, 71, 52, + 26, 77, 99,179,217,124, 21,192, 73, 66,200,130,212,212,212,138,243,107,184, 1, 33,132,139, 49, 40, 95,214,235,244, 61, 3,189, +213,173,211,114,242,211,204, 54,121,159, 76,108, 51, 61, 53, 68,145,132,168, 27, 53,240,219,243,206,160,142, 81, 45,163, 31,128, +156,116, 28,230,220,172, 39, 18,211,140, 79,124,115,232,250,219,145,132,180,190, 68,105,213, 55,181, 44, 33, 52, 52, 52, 80,146, + 36, 69,122,122,122, 10, 0, 68, 68, 68,248, 88, 44,150, 54, 0,162, 0,252,165,209,104,142, 92,190,124, 57,223,243, 51,254,135, +123, 69, 51, 36, 36, 36, 72,150,229, 87,234,213,171,215, 39, 51, 51,115, 19,199,113, 75,170,251,126, 51,254,119, 8,127,112,216, +108,194,145, 0, 79,246,161, 50,205,190,122,240,135,183,111, 87, 76, 12,198,253, 66,181, 12, 86,116,116,180,151, 90,173, 30,194, +113,220, 11, 45,227, 58,116,124, 98,232, 11, 68, 32,122,124, 50,246, 25,143,167,112, 56,122,244,168, 38, 35, 35,227,163,134, 77, +227,254,211,181, 71,127,174, 89, 84, 83, 4,212,246,135,204,169,177,108,235,133,218,187,191,121,113, 62,128, 14,213, 8,179,247, + 79,155, 15, 33, 35, 87, 2, 33, 0, 33, 0, 71,128, 66,179,140,247, 94,234, 56, 25, 64,188, 59, 34, 36,110,132, 50, 38, 58,170, +215,133,155, 90,108, 61, 37, 0, 8,130,222,191, 94, 47, 18, 55, 66, 73, 19,191, 17,170, 17,215,109, 35, 48, 48,176,117,237,218, +181,191,122,241,197, 23,253, 27, 55,110, 28,168, 86,171,245,102,179,249,129,164,164,164,134,115,230,204,121, 44, 48, 48,112, 70, + 70, 70,198,175,158,104, 70,249,105, 27,244,106, 26,246,211,132, 81,255,215,174,113, 68, 40, 20,214, 34, 80, 75, 97,104,210,149, +191, 59, 76, 91,242,235,171, 49,190,202,167, 79,231, 9, 59,220,213,211,122,171,222,127,111,248,211, 81,145,222, 20,214, 51,251, +161,224, 41,180,222,254,104,215,128, 7, 1,109, 22,255,123,250,123, 0, 38,187,210, 9, 10, 10,154, 10,224, 61, 0, 36, 48, 48, +240, 39,165, 82,121,248,193, 7, 31,108,250,212, 83, 79,145, 22, 45, 90,224,216,177, 99,205, 54,108,216, 48,184, 65,131, 6,231, +172, 86,235,161,218,181,107, 31, 63,115,230,140, 91,183, 26,136,142,142, 86,221,184,113,163,149, 90,173,110,127, 55,107, 6, 5, + 5,233,172, 86,235,255,133,132,132, 12,127,226,137, 39, 90,244,235,215,143, 52,105,210, 4,231,206,157,139,219,178,101,203,228, + 86,173, 90,157, 76, 77, 77, 93,164, 86,171,191, 79, 79, 79,119,107, 18,224,161,143,146,115, 63,239,160, 77,171,187,221, 17, 66, +136, 31, 0, 45,165, 52,195,141,182,245, 0,232, 41,165,151,255,109,205,219, 65, 72, 72,200, 89, 66, 72,173,146, 56,236,241,148, +249,219,241, 89,146,164,162,164,164,164, 70, 85,105, 54,104,208,160,153, 44,203,188,227, 58,165,210,121,213,130, 40,138,114, 74, + 74,202,153,170, 52, 9, 71, 2, 22,125, 53,219, 87,193, 1, 18, 45,121, 8, 20, 18,165,144,101, 64,146, 1, 73,150, 33, 74, 20, + 50,149, 33,136, 20, 83, 38,191,231,226,236, 25, 12, 6,224,129,193, 34,132,144,184,184,184,206,148,210, 23,194, 35, 34,135, 12, +122,118,132, 46,252,129,230, 40,148,125,112, 37, 91,198,209, 93, 43, 0, 96,149, 39, 7,223,182,109, 91, 27, 74,241,221,168,137, +179,155,182,140,109,139, 83,105, 34, 14,164, 72, 40,186, 36, 65,193,155, 32,203, 0,165,212,226,233, 73,217, 73,205, 17,177,239, +156, 21, 60, 7,112, 28,192,115, 4,188,135,247,233,166,137,223, 8, 92,216,160,205,191, 29, 78, 27, 0,109, 61, 24,115,210, 96, +204,201,220, 66, 83,214,220, 85,230, 42, 56, 56,184,123, 68, 68,196, 23,111,190,249,102,253,140,140,140, 90,135, 14, 29,130, 70, +163,129,191,191,191, 34, 32, 32,160,233,196,137, 19,243,166, 77,155, 54,174, 94,189,122,199, 50, 51, 51,175,186,163, 25,109, 80, + 71,117,105, 29,253,199,164,169,241,190,150,196, 45,200,253,229, 23,240,156, 12,149,151, 1,129, 58, 61,230,246, 9,175, 53,113, + 91,202,175, 45,116,186,168,147, 38, 83,154, 59,154,161,117,107,245,136,108,220, 4,185, 27, 23,224, 98,174, 5, 9,153, 22, 60, +209,165, 13, 34,253,117,136, 21, 37,212,214, 42,186,195,133,193, 10, 9, 9,241, 7, 48,225,234,213,171,156, 74,165, 34, 13, 27, + 54,124,122,209,162, 69,180, 89,179,102,165,119,221,238,208,161, 3, 58,116,232, 64, 10, 11, 11,163, 14, 28, 56, 16,181,118,237, + 90, 33, 56, 56, 56, 49, 45, 45,109,153, 51,221,136,136, 70,201, 22,139, 57, 84,163,213,153,231,204,153,243,223, 7, 31,124, 80, + 86,171,213,184, 21, 77, 0, 8, 12, 12,252, 49, 36, 36, 68, 63,105,210,164,236,182,109,219,210,154,208,108,216,176,225,111,157, + 58,117,234,214,163, 71, 15,197,195, 15, 63,140,160,160,160,210,109, 1, 1, 1,232,212,169, 19, 73, 73, 73,105,185,111,223,190, + 5,191,253,246,219,188,134, 13, 27,238,186,114,229, 74,143,170, 52, 75,104,114,139,219, 29,225, 1, 76, 39,132, 44,166,148, 30, +112,214,136, 16,210, 26,192, 51, 0, 62,187, 67,154, 85,162,211,233, 50,205,102,115, 93, 0,208,106,181,215, 77, 38, 83, 61, 87, +251, 16, 66, 12,115,230,204,169,171, 82,169,192,113, 28, 36, 73,130, 36, 73,144,101, 25,148,210,210,103,251, 32,163,169, 83,167, + 74,174, 52,101, 89,230,102,207,158,173,212,233,116, 0, 0, 65, 16,202, 60,219,177, 47, 79,157, 58,213,173,239, 40,157,154,199, +135, 99,135,183,227, 36,171,182,202,227,243,106,243,203,227,190, 56,236,142, 38,131,193,240,192, 96,197,198,198,110,238, 53,112, + 88,207, 7, 59,247,128,168,170,139,115,215, 9, 82,174, 80, 40,120, 17, 28,100, 92,254,115, 29,229, 56,238,123,199,125,170, 26, + 97,176,121,243,230,183, 27, 68,182,154,241, 94,252,116,254, 84,166, 26,223,237, 51, 65,178,228,193,148,125, 9, 69,215, 47,160, +224,218, 89,228,166,157, 58,201,113, 92,188,187,154,229,161, 20,144, 41, 5,161, 4,144, 1,128, 22,167,177, 42,180,171, 90,147, + 74,100, 66,226,111,223, 13,136,237,255, 46, 46,236, 91, 14, 80,110,130,235, 99,215,252,232, 10,103,154, 65, 65, 65,143,133,135, +135,207, 28, 49, 98, 68,200,137, 19, 39,124,140, 70, 99,209,225,195,135,247,100,100,100,212, 11, 8, 8, 72,121,234,169,167, 30, +170, 91,183,110,221,206,157, 59,235,183,109,219,246, 62,128, 87, 92,105, 54,247, 82,199,116,106,215, 60,225,227,153,179,188,178, +127,157, 7,235,149, 19, 72,200, 52,227, 68,150,137, 6,251,228,145, 39,155,251,195, 75,173,192,240,246,117, 13,255,217,112,245, + 83, 0,207,186,115,238, 13,131,235, 53, 18, 76, 38,152, 77, 54,108,190,144,103, 74,200,201,171,203,121,167,102,141, 27,208, 70, +203,103,167,163,190,183,242, 1, 79,206, 29, 40,206, 2,232,245,250, 74,183,249,250,250,162, 67,135, 14,104,212,168,145,242,153, +103,158,121, 16,192, 50,103,154, 54,155, 45, 48, 45, 45, 29,141,155, 52,214, 60,242,200, 35,132,231,121, 88,173, 21,123, 43, 61, +209, 4, 0, 47, 47,175,126,173, 91,183, 86,252,240,195, 15,185, 87,175, 94, 61, 61,104,208,160, 52,189, 94, 95,230,130,170,215, +235,209,160, 65, 3,140, 30, 61, 90,249,234,171,175,186,212,172, 87,175,222, 99,203,151, 47, 7, 33,164,244,226, 93,158,176,176, + 48,212,175, 95, 31,189,123,247, 86, 12, 30, 60,248, 49,199,109,229, 53,135, 62, 74,206,161,196, 60, 13,125,148, 84, 57,180,184, +100,251,249,242,153,172,242,154,148,210, 27,132,144,133, 0,214, 16, 66,134, 84,102,136, 8, 33, 15, 3,248, 5, 64, 47, 74,233, +245,242,219,171,210, 84,171,213, 42,155,205,230, 15,148, 53, 62,158,106, 58,196, 66, 19, 19, 19, 17, 23, 23, 7,199,103,179,217, + 92,106,132, 8, 33,117, 43,219,183, 50, 77,158,231,241,245,215, 95,131,227, 56,168, 84, 42, 40,149, 74,168, 84,170, 10,143,216, +216,216,202, 36, 43,213, 84, 42,149,248,250,235,175, 33, 73, 18,119,245,234,213, 23, 36, 73,234,111, 54,155,235,234,116,186, 44, +149, 74,181,177, 75,151, 46, 75, 53, 26,141,232,137, 38,199, 3,156,100,213,238,216,182,222,171,210,157, 0, 88, 44, 22,244,237, +255, 36, 56, 82,177,148,246,223,252,174, 99,154,247,183,166, 11,218, 2,168,227,176,108, 5, 96,255,181,154,141,226,105,167,106, +151, 91,239,216,206,254,156, 85,178,190, 78,201,126,212, 65, 55, 11,192,159, 53, 21,176, 2, 40,254, 98,161,148, 18,251,179,147, +182, 62,169, 38, 63, 20, 94, 9,128,130,147,161,224, 9, 20, 60, 0, 16,220, 72, 61, 11,107,209,141,253, 71,142, 28,185,226,206, + 65,183,110,221,218, 33,188, 89,187, 79,227, 63,254,156, 91,186,215,132, 60,163, 25,217,103,214, 35,227,240,183, 25,178,104, 91, +207,113,220, 17,142,227,142,182,110,217,226, 92, 96, 96,160,203, 95,118,206,144,105,113,138,187,212, 88,201, 0,129,231,211, 82, +208,212,213,151,130,186,124, 80,102,185,186, 49,213, 52, 33, 33, 33,189, 34, 35, 35,167,143, 24, 49, 34,236,232,209,163,222, 5, + 5, 5, 89, 59,118,236, 56,103,179,217,142,113, 28, 55, 55, 61, 61,189,203,242,229,203,245,227,199,143,239,209,164, 73,147, 38, +191,253,246,155,209,149,102,180,151,170,229,176,231,159, 74,232, 63,124,140,246,244,234,249,208,156, 59,138, 69,103,114,164, 35, +153,166,247,205,133,226, 23, 58,189,226,225, 92,179,184,253,157, 78,129, 92,160,183, 18,161,190,170,174,238,198,171, 86,106, 20, + 84,161,133,213, 34,162,200, 42, 91,207,100,209,162,183,187, 54,183, 81,175, 0, 45, 0, 40,120,206,165,233, 79, 77, 77,205, 9, + 10, 10,250, 52, 60, 60,252, 3, 66, 8,237,220,185,243,153,184,184,184, 34, 89,150, 97, 50,153, 96,179,217,160, 84, 42, 97, 50, +153,144,148,148,132, 67,135, 14,193,215,215,215,149,108, 25,114,115,115, 17, 30, 30, 14,189, 94,127,203,154,178, 44,147, 5, 11, + 22,104, 79,159, 62,173, 93,179,102, 77,173,183,223,126, 59, 47, 54, 54,246,236,128, 1, 3, 82,106,213,170,101, 59,126,252, 56, + 18, 18, 18,144,147,147,131,118,237,218,185,165,105,179,217,160, 80, 40, 96, 50,153,160,209,104,160, 80, 40, 32,138, 34,100, 89, + 46, 53, 93,133,133,133,184,121,243, 38,148, 74,165,203, 27,177,219,205,210,208, 71, 9,253,249,151, 63,174, 23,247, 13,229, 11, +176,229, 9, 16,243, 4, 8,121, 2,132, 92, 97,232,155,179, 90,254,188,195,233,119, 68, 5, 40,165, 7, 9, 33, 67, 0,252, 82, +222,100, 57, 24,161, 33,148,210,227,158,106,218,108,182,253,118,227,163,213,106,235, 18, 82,108, 12, 53, 26,141, 96,177, 88,186, +121,162, 9, 0,137,137,137,104,221,186, 53, 95,162, 73,237,207, 37, 15,143, 32,132,128,231,121, 40,149, 74,240, 60,143,214,173, + 91,163, 95,191,126,104,210,164, 9, 82, 83, 83,177,123,247,110, 92,184,112, 1, 42,149,170, 76,215,161, 43,148, 74, 37, 56,142, +227,206,159, 63,191,244,145, 71, 30,137, 28, 51,102,140,186, 65,131, 6, 56,119,238, 92,253, 5, 11, 22, 12,219,185,115,103,151, +129, 3, 7, 14, 3, 32, 86,213,125,232, 8, 95, 98,154, 44, 22, 11,206,158, 61, 91,117, 91, 79,187, 0, 24, 12, 15,112,225, 69, +234, 16, 66, 54,218, 23, 40,165,125,237,203, 19, 39, 78,124,111,250,244,233,167, 9, 33, 27, 29,215, 59,182,115,124, 46, 57,214, + 70, 74,105,223,119,223,125, 55,102,198,140, 25,211,236,109,107,242,124,220,206, 96,241, 60, 63,232,212,214, 47, 14, 62, 96,163, + 97,245, 98,250,160,248, 59,135, 0,160, 72, 58,190, 21,178, 44, 47,115, 71, 39, 33, 33, 65, 43,202, 88, 58,254,189,169,220, 55, +187, 76,200,188,150,142,244, 61,159,193,116,253,236,119, 58,157,238,157, 71,122,246,189,165, 98, 95, 0,136,139,139,139,241,171, + 93, 31, 22, 27, 45, 49, 88,128,163,201,186, 95, 8, 10, 10,234, 23, 25, 25, 57,117,253,250,245, 97, 38,147,201,251,192,129, 3, +185,219,183,111,191,104,179,217,150,100,100,100,252, 8, 0,132,144,245, 10,133,226, 35, 74, 41, 12, 6,131,130,231,121,157,253, +191,183, 50,205,230,190,170,214, 47,190,240,220,254,183,231, 46,214, 94, 60,117, 28,243, 86,109,134,134,218,164, 51, 55,172, 3, + 78, 21, 8,246,127,218,223,123, 7,235,211, 40, 69,168,146, 35,168,165, 87,214,239, 64,136, 54,129, 82,179,171,152, 3, 66,195, + 56, 49, 56, 2,251,140, 22, 24,124, 84,106, 0, 8,110, 28,205, 31,207, 23,113,224,240, 95,208,106,253, 85,238,156,123,122,122, +250,164,224,224,224,240,237,219,183,115, 70,163,177,232,196,137, 19,168, 93,187, 54,234,214,173, 11, 31, 31, 31,156, 59,119, 14, + 59,118,236,192,249,243,231, 65, 41,117,154, 37,112, 70,102,102, 38,242,243,243,107, 68, 83, 20, 69, 2, 0, 49, 49, 49,136,137, +137, 81,167,165,165,213,221,184,113,163,255,180,105,211,174, 5, 6, 6,110, 51,153,254, 41,143, 42,223,221,227, 12,139,165,184, +231,220,108, 54,195, 98,177, 64,165, 82, 65,171,213, 66,165, 82, 33, 63, 63, 31,153,153,153, 40, 40, 40, 0, 0,248,249,249,149, +182,119, 11, 73, 6, 14,118, 60, 82, 97,125,240, 11,149,102,111, 92, 65, 41, 61, 80, 98,178,126, 39,132,216,223,223,204,146,231, + 74, 51, 91,110,106,150, 46, 91, 44, 22,199, 44,147,178, 58,154,113,113,113,118,141, 50,223, 18, 90,173,246,186, 61,115,165,213, +106, 43,100,196, 42,195,222, 45,168, 86,171, 17, 19, 19,131,119,222,121, 7,231,254,159,189,243, 14,107,234,236,255,240,231, 57, +217, 9,132, 61, 19, 16, 81,134, 32, 14,100, 41,136,162,213,186, 71,219, 87,235,104,107,109, 93,125,171,109,181,173,117,212, 45, +142,106, 85,180,237,107,171,117,212,209,170,191,214,186, 87, 5, 7, 78,192, 45, 42, 42,136, 97, 35, 35, 64, 32, 36, 57,207,239, + 15, 70,145, 50,194,176, 86,123,238,235,202, 5,156,156,220,231, 9,129,228,115,190,207, 56,241,241, 56,115,230, 12,236,236,236, +208,167, 79, 31,240,249,124, 36, 39, 39,131, 97, 24,163, 2,150, 80, 40,132, 78,167,195,189,123,247,198,244,236,217,179, 85, 68, + 68,132, 40, 49, 49, 17,241,241,241, 48, 51, 51,195,194,133, 11,197,211,167, 79,119, 58,114,228,200,184,142, 29, 59,126,103,236, +243,230,145,178,238,191,129, 67,134,255,229, 62, 11,115, 19,193,214,205, 27, 69, 21,193,139,225, 22,246,225,120,206, 84, 15, 65, + 21,193,105,201,146, 37, 3,171,111,171, 41, 48, 85,223,190,116,233,210,240, 42, 63, 55,235, 44,246,202,127,151,138,179,191,218, + 96, 89,214,209,194, 86,105, 53, 97, 84, 31,176, 44,160,103, 1,189,129, 66, 83, 84,136,180,248,147, 69, 90,173,118,183, 49, 7, +204,206,206, 94,248,238,199, 75,221, 46, 63,226, 35, 53, 71,139,199, 39, 22,208,146,172,248, 55, 6, 13, 26,244,254, 43,175,188, +210, 44,225,202,210, 70, 17,249,229,242,141,184,244, 64, 11,150,254, 89,201, 50,176,101,223,191, 12, 40,149, 74,119, 75, 75,203, + 21,123,247,238,109, 41, 18,137,228, 9, 9, 9,134,168,168,168, 20,157, 78,247,109, 69,184, 2, 0,133, 66, 49,186, 93,187,118, + 58, 19, 19, 19,104, 52,154, 98,157, 78, 87, 80, 91,184,242,145, 74,157, 58,181,111,119,106,234,154, 31, 36,197, 90, 45,242, 52, + 37,176,117,116, 52, 92,203, 46, 26,122, 77, 93, 82,121, 70,208, 86, 46, 8,246,247, 80, 42, 25,169, 28, 0,160,202,215,166, 24, + 19,174, 0,192, 68,110,193, 56,249,135,193,255,163,181,208, 48,230, 20, 0, 44,236, 21, 76,143, 15, 22,163,239,234, 40,148,240, +228, 13,137,192, 26, 15, 15,143,202,113, 87,217,217,217,184,117,235, 22,242,242,242, 16, 17, 17,129,248,248,248,202, 15,221,226, + 98,163,154,247, 23,154,195,201,178,236, 83,159,158, 74,165, 18,147, 38, 77, 18,104, 52, 26,147,170,225,170, 33, 78,173, 86, 91, +217, 14, 74, 41,180, 90, 45,242,242,242,160,213,106,113,239,222,189,202,112, 5, 0, 6,131,161,198,174,206,218, 27,156, 87,115, +185, 75,151,221,232,113,135,229,129, 71, 88,101,220,145, 61, 26, 25,174, 42, 40, 15, 62, 70, 87,127,234, 35, 38, 38, 6,168,161, + 90,165,209,104,236, 41,165, 36, 38, 38, 6,198,140,191,170,128, 82, 10,145, 72,132,193,131, 7,227,246,237,219, 80,169, 84,224, +241,120, 40, 41, 41, 65, 73, 73, 9, 58,117,234, 84, 89,193,106, 8,148,210,126,147, 39, 79,150, 60,124,248, 16,217,217,217, 96, + 24, 6,122,189, 30, 6,131, 1,227,198,141,147,104,181,218,190, 13,241,241,120, 4,189,198, 44,187,216,243,189,213, 81,213,111, +185,121,133, 58,177, 88,252,231,190, 92,194,226,120,198,212,148, 69, 8, 33,227,171,124,191,191,250,253, 13,161,122,133,171,130, + 25, 51,102,248, 0, 16,215,240,144, 70, 83,249,223, 82, 71,215, 32,252,252,252,124, 45,108,148, 39,103,132,255, 96,250,235, 85, + 30,158,164,222, 65,114,236, 94,232, 89, 32,245,206, 89, 80,131,238,255,110,222,188, 89, 88,219,227, 43, 56,114,228,136,135,179, +167,255, 71, 29,253,130,112,228,122, 9,158, 92,219, 9,109,206,195,239, 6, 12, 24,240, 91,115, 60, 25, 63, 63, 63, 31, 75,107, +199,200,153, 75,127,176,218,119, 67,128, 71, 15,239, 32, 50, 98, 48,142, 46,127, 5,135,151,189,130, 3, 75,122,226,247,197, 61, + 1,224, 96, 67,188, 97,132,240, 93, 45, 75,209,219,155, 64, 97, 83, 4, 18, 70,254,182,245,195,106, 67,165, 82,221, 3,176,229, +135, 31,126, 80,159, 57,115,198, 48,113,226,196,187,121,121,121,139, 82, 82, 82,118, 86,236, 83, 62,240,253,211, 5, 11, 22,120, + 26, 12, 6,156, 58,117,234, 30,143,199,171,181,127,249,134, 70,243, 56,238,218,205,111,207,108,223,128,184,203,151,240,211,156, +169,250,232,235,183, 6,221, 84,235,255, 12, 87,166, 34,175, 46, 62,238,251,255, 59,229,191, 12, 17,155, 32, 62,171, 4,169, 5, +186, 19, 70,183, 91, 93,164, 19,136,165, 48,117,104,137, 36, 13, 43, 84, 42,149, 23, 30,231,106,132, 12,143, 15,134, 47,196,131, +156,146, 6,125,136,179,236, 95,243, 88,245,208, 2,160,222, 46,178,250,104,138,179,162,130, 85, 29,157, 78,247,151,237,198, 58, +171, 6,172,170,212, 52, 22,139,101,217,134, 5,172,210,252,154, 95, 3,109,227, 3, 86, 85, 75,249, 13, 77, 9, 87, 64, 89,240, +169,168, 40,137,197,226,202,174, 54, 99,171, 76,213,241,243,243,107,210,253, 85, 33,132,128,101, 89, 8, 4, 2,184,187,187, 35, + 47, 47, 15,102,102,102,144,203,229, 48, 53, 53,133, 88, 44,134,189,189, 61, 68, 34, 17, 24,134, 1, 99,100,112,209,233,116,208, +106,181, 14, 78, 78, 78, 40, 40, 40,128, 68, 34,169,188,137, 68, 34,120,122,122,162,160,160,160, 65,149,198,134,132, 38, 30,151, +175, 56,158, 49, 53,101,145,170, 43,185, 55, 71, 55, 94, 77,142,242,110, 66,105, 83,221, 85,169, 55, 40, 84,132,171,233,139,191, + 55,219, 21,203, 32, 55, 53, 30, 73,135,103,170, 13,165, 69, 57, 44,171,115,201,185,127, 6,168, 50, 32,183, 46, 88,150, 13, 8, +238, 57,132,137,188,173, 69,169, 58, 5,249, 55,126, 78, 20,139,197, 95, 52,241, 57, 84,180,211,199,210,218, 49,242,139, 37, 63, + 88,253,122,149,143, 39, 41,119,112,255,224,140, 60, 67,105, 81,207,152,152,152, 6,175,163, 53,129, 16,193,122, 74,117, 67,236, +236,134, 58, 59,219, 47, 31,251,186, 28,221,122, 73, 97, 38, 52,195,130,175,152,219,246, 33,228,211,244,179,116, 31,241, 35, 2, + 26, 67,159,203,140,194, 27, 55,110, 44,118,119,119,103,244,122,253,216,210,210,210,121, 41, 41, 41,149, 85, 68,133, 66,209,219, +197,197,101,249,194,133, 11,157, 18, 19, 19, 69,231,207,159,127, 18, 23, 23,199, 26, 12,134,165,117, 57,175,229,149,124,222, 78, + 46,228,185, 57, 43, 38, 39, 60,126, 60,248,122,190,254,112,197,125,237, 76, 68, 62, 93,125,189,206, 46,156, 63, 67, 94,122,126, + 15, 10,211, 30, 99,221,249,180,124,214,160,155, 97, 76,123,149, 74,165, 85, 75, 33, 48, 99,220, 24, 86,173, 86, 67, 38, 18,178, +143,227,239,243,222,238,213,205,176,108,250, 52, 38, 45, 45, 13, 69,133,133, 60,165, 82,105,165, 82,169,158, 24,227,172, 41, 80, +212, 84, 5,106, 80,192,168,129,166, 56,171, 87,176, 42,168, 41, 96, 25,235,172,218, 37, 86,149,154,126, 31, 6,131,161, 97, 93, +132,250, 90, 2, 86,105,102,211, 82, 42,240,136, 16,210,162,226,251, 38,186, 0, 0,197,197,197,118, 85,186, 6,235, 60, 81,172, +143,242, 10, 86,163,239,175, 78, 69, 5, 43, 33, 33, 1,182,182,182,208,235,245, 48, 49, 49,129, 84, 42,133, 84, 42,133, 70,163, +129, 72, 36, 2,143,199,171, 95, 86, 5,177, 88,156, 22, 31, 31,239, 98,105,105, 9,131,193,240, 84,200,122,248,240, 33,204,205, +205, 51,140, 29,127, 5, 0, 60, 30,112,124,243,244, 26,103, 17, 90,152,155, 60, 37,226, 53, 83,181,144,131,163,177, 84, 84,159, +170,142,165,250,226,139, 47, 26,189,118,200, 23, 95,124, 49,179,169, 85,177,218,224, 3,127, 38,198,234,111, 78,126,126,126,190, + 22,214,138,147,159, 46, 92,111,182,253, 50,131,188,212,219, 72, 57, 62, 59,143, 45, 45,234,201, 48, 76,106,114,244,247,187, 1, + 20,197,198,198, 70, 25,115, 48,131,193,208,169,141,135, 7,118,221,208,163, 56,237, 42, 24, 66, 55,247,234,213,171,222, 65,215, +245, 81, 17,174, 62, 15,255,222,106, 87, 28, 31, 57,101, 33, 48,143,109, 68,184, 26, 37, 22,187, 9, 24,102,185, 91,151, 78, 3, + 70,216,219, 20,244,119,147, 89,244,119, 19,131,119,254, 55,236, 83,100,224,137,205, 31,152,180, 74,233, 22,189, 55,255,247, 22, +175,240,159, 12,238,214,209, 76,209,157,127, 64, 71, 13,159,103,158,162,127,251,224,247,123,247,238, 45,116,112,112,248, 53, 45, + 45,173,114,116,170,147,147, 83,191,150, 45, 91,134, 47, 88,176,160,101,114,114,178,252,202,149, 43,249,187,119,239,126,200, 48, +204,130,212,212,212,122,207,238,175,171, 75,167,249,152,138, 54,220, 40,208,199, 87,108,107,107, 34,236, 48,230,237, 17,231,122, +141,120, 87,242, 32,114, 11,172, 30,223,196,234,139, 25,134,199,121,197, 35,111, 23,209,180,250,156, 74,165,210, 74, 36, 18,237, +138,216,179,231, 94,187,118,237, 72, 81, 81, 17,116, 58, 29, 50, 51, 51,241,213,182, 93, 55, 88,150,133,165,165, 37, 78,156, 56, +193,126,244,209, 71,187,148, 74,229, 48, 99, 66, 22,203,178,149, 31, 86, 21, 84,175, 2, 73,165,210,134, 5,140,242,199, 84, 13, + 48, 77,113,214, 22,176,170, 87,182, 26,232, 4,128,202,193,237,213,183, 87,192,227,241,192,178,108,141,149,190, 90,209,229,214, + 18,176, 50,154,116, 34, 65, 41,117,169,103, 34,205,115,163,124, 41, 6, 0, 96,107, 91,138,161,202, 24,173,122,169,232,246, 19, +137, 68,136,142,142, 70,223,190,125,193,178, 44,196, 98, 49,164, 82, 41, 36, 18, 9, 46, 94,188, 8,161, 80, 8, 30,143,215,160, +110, 66,129, 64,112,104,221,186,117, 99,150, 46, 93, 42,101, 89, 22, 34,145, 8, 82,169, 20, 98,177, 24, 95,127,253,181, 70, 36, + 18, 29,110, 80,192, 66,253,179, 8, 43,247,109, 88, 22,228,224,104, 16,181,101,145,114, 50,171, 85,158,180, 85,126,206, 68,217, +181,149, 7,150,127,143, 26,190,215,214,176, 45,123,201,146, 37, 39,171,140,223,202, 68, 51, 82,107, 5,203,215,215,215,203,202, +214,233,228,212,133,235,205,182, 92,224, 33, 47,245, 22,178, 78,126,153, 71,245,154,170,161,165,107, 3,143,231,107,103,103,141, +172,232, 98,232,114,238,129, 16, 18,219,248,166,151, 17, 24, 24,232,110, 97,229, 16,249,233,162,239,173,118,196,240,145,155,242, +103, 8,108, 76,229,138,207, 48, 95,173, 60,242,243, 96,113,218,109,104,174, 70, 90, 8,158, 60,198,141,140, 82,236,138, 78, 83, + 71,158,253,225, 12,227, 77, 67,123,142,180, 48,237, 57,210, 10,171, 39, 29,182, 74, 47,190,137, 11,119,247, 15, 9,159,177,159, +226, 57,173,238, 94, 53, 92, 41, 20,138, 65, 78, 78, 78,243, 15, 28, 56,224,162,215,235,229,167, 78,157, 82,239,222,189,251,190, + 94,175,143, 72, 77, 77, 61, 96,172,243, 70,129,182, 50, 92,181, 51, 23,118,122,255,189,119,206,124,180,234,127,146,155, 49,151, +176,124,203, 1,200, 5, 58, 67, 76, 74,241,176, 27, 5,250, 67,198,248,248,124,254,130, 29, 59,118,152,120,123,123,147,236,236, +236,202, 15,252,210,210, 82,228,231,231, 87,142, 31,106,215,174, 29, 51,119,238, 92,147, 57,115,230, 44, 0,240,223,186,156,148, +210,140,249,243,231,219,141, 31, 63, 30,102,102,102,200,206,206,134, 78,167,171,172, 54,137,197, 98, 88, 88, 88, 32, 55, 55, 23, +199,143, 31, 71, 77, 83,246,171, 34, 20, 10, 83,149, 74,133,179, 84,102,162,149,201,100,212,212,212,180,201, 78, 0, 32,132,164, +245,239,223,223, 97,254,252,249,162,170,221, 76,165,165,165,164,177, 78, 74,105,209,171,175,190, 42,139,136,136,128,139,139, 11, +180, 90, 45, 88,150,173,172, 96, 85, 44, 13,240,232,209, 35, 44, 94,188, 24,148, 82,227, 79,100,116, 57, 58, 56,189, 99,139,210, +108, 29, 74,179,117,208,102,233, 80,154,161,131,190,232, 31, 55, 69,164, 49, 3,208,107,162, 90, 37,172,198, 46,182,134, 84,176, +202,171,105, 16, 10,133, 72, 78, 78,198,137, 19, 39, 16, 24, 24, 8,185, 92,142,194,194, 66,156, 59,119, 14,105,105,105,141,170, + 96,245,236,217,115,243,209,163, 71, 67, 63,252,240, 67,215,137, 19, 39, 74,189,188,188,144,152,152,136, 85,171, 86, 21,223,186, +117, 75, 53,101,202,148, 31, 26,226, 99,202,151,174, 49,106, 22, 97, 13,203,220,112,112,252, 77, 52,219,242, 9,127, 23,181, 6, + 44,134, 97, 62, 9,122, 99,150,217,230,243,124,228,168,110, 32,239,244,220,234,225,170, 94,170, 95,109, 91, 32,145,183,211, 83, + 33,128, 98,232,115,239, 67, 36, 18, 53, 56, 0, 85,119,178, 44, 59,173,243, 27,179,172,182, 94,226, 35, 47,229, 22, 50, 35,231, + 52, 56, 92, 85, 56, 39, 16, 34,112, 15,246, 31, 32, 78,191,131,226,200,157, 32, 0, 54,196, 21,226,220, 99,237,215,165, 90,237, +162,155,121, 37,185, 78, 93,136,229,206,240,140, 57,253, 94,107,255,145,231,155,199,113, 33,243, 59, 64, 6, 88,218,242,251, 85, +237, 46,124, 30, 87, 47, 87, 42,149,238,114,185,252,171, 67,135, 14,217,138, 68, 34,179,155, 55,111, 26,246,236,217,147,108, 48, + 24, 86,166,166,166,238,172,233, 49,245, 57,125,164, 82,167,182,109, 92,163,166,172,252, 86,162, 46, 40, 68,161,182, 20,138, 22, + 74, 67, 84,204,237, 55,110, 20,104,247, 26,227,180,183,183,239, 49,106,212,168, 14,126,126,126, 76,109,225, 42, 63, 63, 31, 5, + 5, 5,120,252,248, 49, 66, 67, 67, 25, 47, 47,175,118,246,246,246, 61,210,211,211, 79,214,214,206,212,212,212,121, 59,119,238, + 12,249,229,151, 95, 6,142, 27, 55, 78,254,250,235,175, 67, 42,149,162,176,176, 16,206,206,206, 96, 89, 22,167, 79,159,198,221, +187,119,213, 0,246,167,166,166,158,173,171,157, 15, 30,220,111, 65, 8, 97,156,156,156, 66,250,246,237,219, 44, 78, 0,200,204, +204,116,139,138,138,154, 62,100,200,144,143,251,244,233, 35,159, 57,115,166,208,213,213, 21, 6,131,129, 52,214,153,147,147, 99, + 30, 27, 27,187,162,107,215,174,255,237,219,183, 47, 63, 60, 60, 28,230,230,230, 48, 24, 12,144, 74,165,200,207,207,199,130, 5, + 11,112,230,204, 25, 61,165,244,155,188,188,188, 79,235,114, 62,181, 14,214,148,175, 59,214,244,186, 86,217,183,198,117,176,158, +199,223,188, 70,163,177,111,104, 85,204,152,118,198,198,198,210,234,235, 97,213, 85,193,170,238,172, 24, 15, 38, 18,137,192,231, +243,145,153,153,137,163, 71,143, 62,181,254,149, 72, 36,170, 92,198,161,166, 10, 86,109,237,148,203,229,236,127,254,243,159,177, +135, 14, 29, 26, 51,109,218,180, 33,106,181,218,206,204,204, 44,211,196,196,100,255,148, 41, 83,126,180,176,176,168,117,137,134, +154,156, 60,134,212, 58,139,176, 42, 44, 79, 84, 92,211,112,173,231,241,186,115,206,151,211,249,178, 81,215, 24, 44,201,217,152, +187, 96,196, 25, 80, 95,248,170,193,225,170, 38,244, 37,133, 9, 11,127,126,224,107,208,106,160,207, 79,186,211,119, 64,255, 70, +159,113, 86, 64, 41, 53, 57, 19,155, 0,190, 36, 27,185,231,151,229, 18, 67, 73,207,152,152,152, 6,173,127, 83,193,122, 74,117, +163, 77, 76, 34,239,159, 57,241,138, 2, 64,210, 19, 45,174,196, 63, 57,250,107, 81,209,180,138,125, 30,159,163, 57, 0, 62,118, +236,198,180,177,242,200,235,109,174, 0, 50, 30,233,144,147,169, 63,244,188,198, 98, 85,160, 82,169,238,249,248,248,108,217,184, +113,227,164, 78,157, 58,153, 78,158, 60,185, 98,224,251, 47,141,117,222,208,104, 30,251,200, 69,223, 69,110, 88,245,153,196, 43, + 16,123,194,103, 24, 78,197,196, 15,189,174,214, 26,221,103, 45, 22,139,195, 38, 77,154, 36, 44, 42, 42,170, 53, 92,229,231,231, + 67,173, 86, 35, 63, 63, 31, 87,174, 92,193,235,175,191, 46,190,125,251,118, 24,128,147,181,121, 41,165, 44,128,211,110,110,110, + 23,191,251,238,187, 94, 91,183,110,237,253,222,123,239,137,194,194,194,112,243,230, 77, 92,188,120, 81, 91, 90, 90,122, 76, 34, +145, 28, 79, 72, 72, 48,106,112,211, 51,114,234, 1, 44,182,177,177,137,216,189,123,247,162, 63,254,248,227,173, 49, 99,198,152, +232,245,122,210, 68,231,199,182,182,182,179, 15, 30, 60,184,249,232,209,163, 67,223,122,235, 45,102,202,148, 41, 88,187,118, 45, +246,236,217,195, 26, 12,134,189, 2,129,224,157,204,204,204,122, 39,160, 60,181, 14, 86, 29,235, 92,213,119,191, 17, 60,139,179, +208, 38, 59,171, 87,194, 58,117,234,100, 95,117,150,102,213,175, 13,161, 67,135, 14, 79,173,115, 85, 49,160,189,226,198,227,241, +192,231,243, 27,212, 69,232,227,227, 3,129, 64,192,250,250,250,254, 8,224, 71,224,233, 75,230, 8, 4,130,202, 69, 77,141,161, + 68,207, 98,195,198, 45, 23,245, 44,133,129,165,160, 44,160,163, 0,107, 96, 97, 96, 41, 12, 44, 91, 54, 11,155, 2,154,226, 70, + 47, 75,200,193,241,175,163,174,128, 53,179, 32,102,141, 14,128, 53, 33,100, 70, 76, 76, 76,157,215,180, 50, 6, 30,143,153,145, +177,239,221, 8, 10,228,240, 8,140, 26, 24, 93, 31, 6,131, 97, 86, 97,108, 4, 75, 41,181, 32,132,124,113,249,242,229, 38,181, +147,234,245, 31,124,245,195,233,175,109,205, 69,189,179,114, 75, 14,130,144, 26, 87,109,215,131,126,248,211,178, 71,203, 44,109, +249,253,114, 50,245,135, 88, 6,245,174,238,254,119,112,227,198,141,112,119,119,119,222,255,254,247,191,177, 90,173,246,169,129, +239,141,118,170,181,159,183,147, 11,121,109, 92,157, 38,199, 39, 62, 26,114, 93,109, 92,183, 96, 21, 68, 74,165,242, 70, 81, 81, + 17, 8, 33, 40, 41, 41,121, 42, 80, 85, 13, 88,165,165,165,200,200,200,128,171,171, 43,170,172,153, 84, 39,229,161,228,128,141, +141,205,169, 53,107,214, 12, 88,187,118,109, 48,203,178,209,165,165,165, 7,178,178,178, 10, 26,254,140,159,141,179,252,113, 31, +201,100,178,165,107,215,174, 93, 33,145, 72,252, 51, 50, 50,162,154,226, 44, 15, 79,111, 88, 91, 91, 43,182,108,217,178,107,227, +198,141,157,249,124,254,121, 66,200,176,220,220,220,198, 92,236,249, 78, 19,239,175,143, 61, 77,124,252, 51,113, 54,100,249, 5, + 99,208,235,245, 5, 51,102,204,200,168,126,205,193,170,107, 94, 85,253,170,213,106,235, 93,159, 67,175,215,179, 95,126,249,101, +157, 39,113, 85,131, 86,113,113,113,189, 93,186,148,165, 89,253,135,127, 80,223,110,127,121, 76,131, 30,192,193,241, 47,165,214, +128, 21, 19, 19,147, 12,224,221,230, 60, 88,223,190,125, 79, 0,240,106, 78,231,149, 43, 87,146, 0,188,213, 92,190,237, 37, 37, + 9, 0, 6, 78, 32, 68,240, 19,173,189, 34, 85, 62,160,253,181,231, 57,139,176, 54,106, 26,248,222, 84,106, 26,248,110, 44,122, +189,254,136, 88, 44, 38,249,249,249, 40, 45, 45,133, 90,173,174, 12, 87, 85, 67,150, 94,175, 7, 33, 4,106,181, 26,166,166,166, +208,233,116, 13, 42, 25,148,135,148,157, 97, 97, 97,187, 35, 35, 35, 27,124,225,241,191,203, 89, 84, 84,148, 6, 96, 84, 88, 88, + 24,191,185,156,217,217,217, 41, 0,130,221,220,220, 68,198, 86,193,106,162,190, 11, 57, 27,123,161,231, 58,248, 95, 19, 31, 95, + 19,219,234,223,229,239, 37, 49, 49,209,187,185,157,143, 30, 61,106,182,255,231, 10, 18,207,111,157,218,220, 78, 14, 14,142, 50, +254,182,245,156,230,206,157,251,143, 27, 32, 91, 23,235,235, 8, 87, 85,249,167,133,171, 10,154, 51, 92, 85, 80,117,224,123, 67, + 80,169, 84, 39, 1,192,206,174,108,236,176,179,179,179,177,143,107,204,225,208, 92,161,229, 69,116, 54, 37, 92,253, 29, 80, 74, + 27, 85,169,171,199, 89,239, 44, 86, 14, 14, 14,142,191, 27,110,217, 56, 14, 14, 14, 14, 14, 14, 14,142,102,134, 0,104, 87,211, + 29, 13,153, 29, 64, 8,169,209, 81, 23,245,249, 57, 39,231,228,156,156,147,115,114, 78,206,249,242, 57,235,115, 87,155,145, 59, +190,234, 74,238, 47, 18,164, 49, 51, 99,140,150,191, 32, 83, 67, 57, 39,231,228,156,156,147,115,114, 78,206,249,124,157,181, 28, +231,133, 13, 88, 92, 23, 33, 7, 7, 7, 7, 7, 7, 7, 71, 51,243,220, 47, 90,204,241, 98,224,228,228,180, 36, 40, 40,232,131, + 75,151, 46,173,124,244,232,209,130, 70, 58, 20,214,214,214,139, 1, 4, 83, 74,197, 60, 30,239, 86, 86, 86, 86,120,114,114,242, +233,198,182, 75,161, 80, 56,219,218,218, 46, 6,208,153,101, 89,161, 64, 32,184,145,158,158,190, 72,165, 82,157,111,172,211,214, +214,214,196,209,209,209,159, 82,106, 71, 41,101, 4, 2, 65,142, 74,165,186,146,145,145,209,228,117,219, 56, 56, 56, 56, 56,254, + 29,212, 25,176,230, 79, 38,142, 40, 5,127,238,122,154, 12, 0,132, 16, 51, 0,254, 40, 91,106,225, 54,128,203,148,210,252,166, + 52,224, 69,113,254,211, 33,132, 48, 22, 22, 22,175,202,100,178,143, 10, 10, 10,124,205,204,204,110,148, 95, 30,103,127,249,226, +153,141,198,206,206,206,110,248,240,225, 95,172, 89,179, 6, 99,199,142,157,109, 99, 99,179,170,161,235, 54,121,123,123, 15, 86, + 42,149,235, 23, 46, 92,100, 27, 24, 24, 72, 36, 18, 9, 18, 18, 18,148,179,102,205,236,212,169, 83,167, 93,177,177,177,117, 94, + 22,167, 38,124,124,124,134,185,184,184, 68,132,135,135,219,250,251,251, 19, 62,159,143,107,215,174, 57,205,159, 63, 63,208,215, +215,119, 75, 92, 92,220,180,250, 45, 79,211,174, 93, 59, 87, 55, 55,183,224, 69,139, 22, 73, 2, 3, 3, 33, 22,139,113,235,214, + 45,147,153, 51,103,218,118,234,212,233, 94,108,108,236,133,134,248,252, 38,196, 10,132,178, 82, 62, 0,148, 22, 9,245, 49,235, + 59,233,140,221,214,208,182,115,112,112,112,112,252,115,168, 53, 96, 45,152, 68, 22, 48,192, 76, 48, 32, 31,143, 36,191,172,253, +133,185,216,171, 87,175, 54,239,189,247, 30, 41,191,116,132,247,206,157, 59,223,224,241,120,241, 44,203, 94, 0,112,133, 82, 90, + 90,155,175, 42,229, 11, 72,118,100, 24, 38,232,159,236,124, 17,144,203,229,238,182,182,182,211,172,173,173,251,249,251,251,231, + 79,156, 56, 49,241,252,249,243, 15, 2, 2, 2,138, 55,110,220, 24,174,211,233,190,245,240,240, 56,166, 86,171, 87, 52,118,233, + 6,129, 64,224, 69, 8,129, 74,165,130, 64, 32, 16,136, 68, 34,111, 0, 70, 7, 13,103,103,103, 71,133, 66,241,191, 95,126,140, +136, 96, 97, 0, 0, 32, 0, 73, 68, 65, 84, 59, 98,151, 95,194,224, 94, 38, 11,160, 8, 6,198, 6, 11,151,175,181, 94,177,120, +246, 72, 15, 15,143, 51,119,239,222,253,217, 88,167, 66,161,112,118,113,113,137,248,227,143, 63,236,196, 98, 49, 88,150,133, 90, +173,134,157,157, 29,150, 44, 89, 98,181,112,225,194,247, 92, 93, 93, 79, 61,124,248,112,159,177, 78, 91, 91, 91, 19, 55, 55,183, +224,147, 39, 79, 74, 68, 34, 17,209,233,116,164,164,164, 4, 14, 14, 14,244,235,175,191, 22,207,154, 53,203,211,213,213, 53,237, +225,195,135,143,140,241,249,125, 31, 43,200,207, 58,217,133, 38,107,102, 3, 0,145, 72, 23,133,205,183,186,152,159,117, 50,176, +190,109,126,223,227, 92,204,120, 46,100,113,252,189, 40, 20,138, 16, 87, 87,215,223, 30, 61,122, 20,205,227,241,222, 76, 76, 76, +108,216, 85,210,107,128, 16,226, 4,192, 21,128, 37,202, 38, 86, 61, 1,144, 72,105,217,137,123, 99,176,113,235, 49, 8, 98,217, +187,160,180, 35, 3, 0, 12,115,133, 45, 45,220,148,117,231,164,209,255,239, 53, 58, 37, 38, 99,193,178, 29, 25, 80, 22, 12,239, + 42,213, 23,254,144,121,251,100, 67, 23, 86,230,224, 0, 80, 75,192,154,255, 62,177,100, 4,152, 62, 99,226,120,134,207,227,145, +240,245,223,143,184, 20,189,143, 58,182,232, 88,121,201,141,208,208, 80,132,134,134,146,229,203,151,123,253,241,199, 31, 94,219, +183,111,215, 17, 66, 98, 40,165,155,107, 59,216,146, 41,178, 71,122,157,198,121,193, 7,210,226,150,157,191,221, 30, 28, 28,202, +138,197, 98, 52,197, 9, 0,255, 29, 38, 56, 54,118,152, 43, 9, 27, 56, 39,169,185,156, 47, 2,114,185, 60, 74, 46,151,187, 77, +152, 48,225,222,164, 73,147, 78,153,152,152, 80, 0,200,200,200, 48, 25, 48, 96, 64,206,208,161, 67,179,139,138,138,240,221,119, +223, 57, 71, 68, 68, 28, 51, 51, 51, 83,229,231,231, 7, 26,235, 39,132,240, 29, 29, 29,151,246,238,221,123,234,168, 81,163, 32, +151,203, 49,102,204, 24,148,148,148, 68, 43, 20,138,229,169,169,169,179, 41,165,245, 94, 59,195,210,210,114,238,252,249,243,237, + 10,180, 60,204,222,154,128, 39, 5,101,185, 65, 38, 98,240,223, 87,196,120,251,237,119,204,227,226,226,150, 3, 48, 58, 96,217, +218,218, 46, 14, 15, 15,183,173,120,173, 11, 10, 10, 80, 80, 80, 0,181, 90,141,130,130, 2,140, 26, 53,202,236,222,189,123,171, + 1, 24,253,134,235,232,232,232,191,104,209, 34,137, 72, 36,194,190,125,251, 58, 20, 23, 23,243,117, 58, 29, 40,165,250, 54,109, +218, 92,121,231,157,119,132,119,239,222,237, 2,192,168,128,229,152, 6, 65,158, 70,243,205,186,101,159,217, 2,192,135,211,191, +250, 6,208, 4, 81, 35,182, 57,166, 33, 0, 0, 23,176,234,128, 16,194, 3,240,154, 64, 32,120,221,205,205,205,255,222,189,123, +113,122,189,254,255, 0,252, 31, 53,114, 29,187, 58,220,175, 40, 20,138,197, 41, 41, 41,235, 40,165, 63, 53, 79,139,255,249,180, +110,221,250,215,237,219,183, 91, 31, 60,120,112,240,194,133, 11,135, 3,216,210, 88, 23, 33, 68, 0,160, 11,202, 66,213,109,148, + 5, 43,160, 44,104,181, 33,132,180, 6,112,182, 33, 39,188, 54,158, 33,166,224,155,237,236,210,179,111,215, 97,111, 12,149,219, + 90,153,163,176,196,128,187,137,105, 45,142, 30,252,181,187, 67,187, 1,209,250,210,188, 17, 89,119,206, 26, 93, 97,175,112,246, +232, 55,184,107,207, 87,122,201,205,205, 45,144,173,214,225,126,226, 99,151,168, 99,123, 67,237,219, 13, 56, 5,162,123, 43,253, +218, 81,227, 47,152,206,193, 1, 35, 7,185, 19, 66, 96, 98,106, 82,227,125,230,230,230, 8, 11, 11, 67,120,120,184, 0, 64,231, +170,247, 85,159, 97, 96, 48,104, 29,103,255,119, 50, 68,124, 42, 30,208,175, 15, 49, 51, 51,107,178, 19, 0,236,173,244,189,130, + 60, 53,221,211,175, 76, 25,125, 37,106,113, 59,109,113,238, 95,174,116, 42,147,201,224,238,238,142, 89,179,102, 25,229,108, 42, +127,135,147, 82,170,240,246,246, 86,175, 90,181,202,115,206,156, 57,150,197,197,197, 38, 0,156,188,125, 67, 20, 12,195, 56,107, +181, 90,249,188,121,243,108,150, 45, 91,230,105,107,107,155, 75, 41,181,109, 72, 59, 29, 29, 29, 87,133,135,135, 79,219,180,105, + 19, 9, 8, 8,128, 92, 46, 71,151, 46, 93,176,117,235, 86,102,238,220,185, 95, 56, 58, 58, 46, 53,166,157, 0, 66, 3, 3, 3, + 9, 11, 32,167, 64,143,147, 75,252,112,246,171, 0, 20,105, 89,228,169, 11,160,209,104, 32,145, 72,164, 54, 54, 54,166,198, 62, +119, 0,157,253,253,253, 9,128,202, 80,165, 86,151,221, 10, 10, 10,161,213,150,130, 97, 24,179,150, 45, 91,138,107,208,213,232, +164,148,218, 5, 6,150,229,207,226,226, 98,254,224,193,131, 49,112,224, 64,168,213,106,126,126,126, 62,180, 90, 45, 24,134, 17, +150,127,176,215,235,212,202, 4,132,165,172,189,137, 76,106, 99, 34,147,218,176,148,181, 7, 0, 99,182,105,101, 2, 82,147,179, +185, 48, 98,106,182, 45,143,199,251,209,205,205,237, 22,143,199,219, 66, 8,113,104,138,147, 16, 18, 64, 8, 9,151,201,100,199, +189,189,189,147, 77, 76, 76,254, 32,132, 44, 37,132,116,105,140,147, 16, 34,146,201,100,127,132,135,135,239,138,139,139, 27,126, +226,196, 9,215,107,215,174,189,177,124,249,242,157,166,166,166,167, 8, 33,210,198,180,179, 2, 87, 87,215,141, 23, 46, 92, 8, + 8, 14, 14,222, 64, 8,169,245,111,168, 33, 78, 66, 8,143, 16,226, 75,140,188,240,224,223,253,186, 59, 57, 57,185,249,250,250, +218,240,120, 60,132,134,134,130, 82, 26,218, 68,103, 48,128, 52, 74,105, 20,165, 52,147, 82,106, 40,191,101, 81, 74, 79,163,236, + 68,165,198, 99,212,234,228,155,237,252,232,147,207,251,126, 58,249,125,121,108,146, 1, 63, 28, 77,197, 47,103, 50,161, 82,139, +209,123,200, 88,243,238,253, 71,245,225, 11,205,107,188,176,125, 93,206, 47,190,152,217,247,253, 49,163,229,215, 83, 24,236, 58, +155,133, 51,183,243, 81, 68, 44, 17, 54,100,188,165,119, 96,191, 1, 4,194,205, 13,124,238,141,230,223,236,124,217,168,177,130, + 53,119, 3,205, 89, 48,137, 44, 11,255,238,251,217, 12, 33,212,201,163,207, 77, 87,247,206,133, 44,203, 66,163,209,160,180,180, + 20, 2,129, 0, 26,141, 6, 73, 73, 73,184,112,225, 2,204,205,205, 27,116,224,220,188, 60, 40,157, 92, 33,147,201,154,197, 57, +238, 63, 67,249,143, 82, 83,249,209,177, 39,253,126, 94,179,221,207,185,117,239,219, 29,195, 62,191,110,106,222, 66,115,229,202, + 21,156, 59,119, 14, 57, 57, 57,168,248, 0,125, 25, 32,132,232, 86,172, 88, 17,155,146,146,130,211,167, 79,251,206, 95,189,173, +229,245,252,214,252,204, 2, 42,176, 53, 77,119,241,146,222, 49,228, 60,121,242, 96,218,180,105,127, 56, 58, 58,106, 39, 79,158, +220,221, 24,175,147,147,147,132, 16,226,215,191,127,255,255,190,243,206, 59, 72, 76, 76,196,167,159,126,170,189,114,229, 74,174, +159,159,159,229,138, 21, 43,132,227,199,143, 71,116,116,244, 52, 39, 39,167,221, 0,110, 60,126,252,184,174,107,169,137, 36, 18, + 9,144, 87,118,162, 90,170,167, 0,202,134,133, 21, 20, 20,128,161,185, 16, 10,133, 12,195, 48,182, 0,140, 58,243,100, 89, 86, + 40, 18,137, 80, 88, 88,136,130,130, 2,168, 50, 11,144,148, 94, 8,117, 97, 9, 52, 26, 29, 74,138, 41,196,114,123, 70,151,153, +105, 13,192,168, 37,225, 41,165, 76, 69,119,163, 86,171,133, 70,163,129, 86,171,133, 86,171,173,188,156, 15,143,199,147, 43,149, + 74, 51, 0, 57,245,249,120, 34,169,158,199, 8,195,103, 46,250,102, 30, 0,240, 24, 97,184, 41,138, 89, 99,182,241, 68,210,102, + 95,229,221, 88, 8, 33, 98, 91, 91,219,147,187,118,237,242,118,119,119,199,195,135, 15,189,134, 13, 27, 22, 68, 8,241,165,148, + 54,232, 44,158, 16, 34, 99, 24,102,217,187,239,190,251,193,200,145, 35,137,135,135, 7,248,124, 62,244,122,189, 83, 66, 66, 66, +143, 95,126,249,101, 58,159,207,255,193, 96, 48, 76, 51,118,149,119, 66, 8, 35, 18,137,126, 94,191,126,125,183,160,160, 32,108, +217,178, 5, 23, 47, 94,100, 3, 2, 2,152,183,223,126, 27, 46, 46, 46,157,223,126,251,237, 61,132,144,129,198, 84, 88,107,240, +187,140, 30, 61,218,153,199,227, 33, 56, 56, 88, 24, 29, 29,221, 9, 64,116, 67, 61,213,156,166, 78, 78, 78, 81, 97, 97, 97,190, +199,143, 31,143, 37,132,132, 53,100, 85,123,133, 66, 49,196,222,222,126,185, 92, 46,183, 52,246, 49, 5, 5, 5, 69,233,233,233, +159,170, 84, 42,163,174, 71, 74, 41, 13,110,223,190, 61,244,122, 61,204,205,205,225,224,224,208, 85,169, 84, 78, 51, 55, 55,127, + 45, 63, 63,127,234,227,199,143, 47, 26,123,108, 66,136, 18, 0, 67, 41,189, 87,254,115, 75, 0, 21,151, 89,186, 67, 41,125, 72, + 41,125, 64, 8, 81, 16, 66,156,141,233, 46,180,113,235, 49, 40,184, 87,255,174,161, 65,237,152, 37,187, 19, 97, 96, 89,240, 97, + 0,159,199, 34,203, 32, 0, 33, 4, 46,158, 1, 60,251,235,151, 59,219,120,246, 30,148,117,231, 88,189,213,107, 27,183, 30,131, +250, 14, 30, 26,218,198,211,131, 89,249,219, 35,228,170,174, 27,210,111,255,145, 69, 24, 6,173, 58,246,182,113,241,244,229,185, +249,190, 34, 72, 79,188,222,195,202,189,123,175, 39,247,162,142, 27,251, 59,224,224,168, 12, 88,132, 16, 74, 41,173, 60,179,154, +243, 29,157, 99, 99, 73, 90,222,188,126,149, 73, 78,211, 22, 94,189,122, 21,214,214,214,176,179,179,131,153,153, 25,226,227,227, +113,252,248,113,220,185,115, 7,148, 82,248,250,250, 54,232,192,233,105,105,200,126,162,110, 86,103, 11, 71, 71,180,112,116,228, +103,229,228,226,220,213,107,222,251,126,232,213, 38,157,153,176, 73,163,209, 84,238,163,211,189,124,189, 46,118,118,118,134, 15, + 63,156,156, 61,238,155, 7,173, 71,244, 84,242,134,116,113,192,111,209,169,188,157,145, 60, 58,251,189, 14, 89, 9, 9,119,141, +126,210, 46, 46, 46,139,123,244,232,241, 25,159,207, 23,140, 31, 63, 30, 0, 48,101,202,148,146,107,215,174,181, 77, 78, 78,126, +224,232,232,216,102,234,212,169,215,246,236,217, 35,120,255,253,247, 73,113,113,241, 69,129, 64, 64, 21, 10,197,130,148,148,148, +121, 53, 57,121, 60, 94,220,205,155, 55, 91,234, 37, 10,216,200, 25,244,153, 29, 11, 0, 48, 21, 83,100,165,171,112, 35,225, 18, +108,109,109,205,109,108,108,110,135,132,132,148,164,167,167,127,116,255,254,253,205,117,181, 83, 32, 16,220,184,118,237,154,147, +189,189, 61, 10, 10, 10,144,156, 81,136, 31,207, 17, 20,149, 72, 1, 72,193,131, 28,114, 27,103,121, 43, 90,116,165, 93,187,118, +165, 90,173,246,139,187,119,239,214,217,213, 35, 16, 8,114,110,221,186,101,162, 84, 42,193,227,241, 74,127,249,229, 23,161, 86, +171, 5,165, 84,127,240,224,193, 55,115,115,115,131, 91,183,110,205,184,184,184,172, 8, 9, 9,209,164,166,166,142,123,248,240, + 97,173, 23, 26, 62, 60,197,173,180,251,188,200,111,115, 31, 38,255, 2, 0,202, 32,239, 39,251,231,117,210,118,159, 87, 80,239, +182,195, 83,220, 74, 49,249,217,173, 81, 87, 15,239,206,156, 57,211,219,202,202, 10, 19, 39, 78,196,252,249,243, 49,103,206, 28, +247,137, 19, 39,142, 7,176,202, 88, 9, 33, 68,234,224,224,112,105,205,154, 53, 94, 33, 33, 33, 56,120,240, 32,118,236,216,129, + 7, 15, 30,232, 93, 93, 93,249, 65, 65, 65,152, 59,119, 46,250,244,233, 51,110,242,228,201,221, 9, 33,157,140, 12, 29, 99,231, +206,157, 59,164,107,215,174, 24, 51,102, 76, 73,100,100,228,112, 0, 71,143, 29, 59,214, 51, 42, 42,106,247,182,109,219,164,225, +225,225,125,167, 78,157, 58, 9,192,186, 70, 60,255,161,221,186,117, 3, 0,116,237,218, 21,203,151, 47,239,131, 38, 4, 44, 66, +136,200,218,218,250,192,150, 45, 91,124, 61, 61, 61,241,214, 91,111,117, 26, 62,124,248, 1, 66, 72,111, 74,169, 81,151, 54,114, +116,116, 92,182,126,253,122, 55,169,180,214,194,220, 95,208,106,181, 86, 19, 38, 76, 88, 10,192,232,128,213,174, 93, 59, 68, 70, + 70,162, 87,175, 94,240,241,241,113,155, 48, 97,194,138, 62,125,250,224,147, 79, 62, 57,227,224,224,160, 72, 75, 75, 51,246, 66, +207, 46, 0,226, 1,128, 16,210, 2,128, 59,128,179,229,247, 5, 17, 66, 64, 41,125,136,178,139,135,183, 1, 80,255,120, 44,137, +201,187,131, 7, 14,148,255, 95,116, 6, 12, 44, 11, 47,165, 4,222, 45,204,144,152, 81,140, 68, 85, 54, 4,164, 20,114,169, 24, +237,131, 7, 88, 62, 73, 79,124, 23,198, 12, 15, 16,203,222, 29, 58,120,160,233,175,231, 50,144,171,186, 65,147, 46,253,242,135, +174,184,112, 28, 0,220, 60,245,211,255,236, 45, 37,189, 61, 58,250,241,138, 66,135, 88, 70,253,246,221,187, 0,184,128,245,140, +169,158, 69, 94,100,234,156, 69,152,157, 11,141,181,131, 55,146,211,226,202,126,206,206, 70,118,118, 54, 90,181,106,133,136,136, +136,167,246, 45, 46,174,247, 98,240, 53, 31,227, 25, 56,109, 44, 45, 48,184, 71,119,222,245,248,239,120, 26, 86,243,212,125,141, +117,254, 83,161,148, 82, 66, 8, 73,202,210, 89,100,229,235,132,111,246,112,166, 2, 30,131, 17, 61, 90,144,117,251,146,132, 89, + 26,153, 5,143,199, 99,140, 57,147,247,243,243, 19,244,232,209,227,179,141, 27, 55, 10, 82, 83, 83, 97, 97, 97, 1,157, 78,135, +184,184,184,148,148,148,148, 7, 0,144,154,154, 26,239,228,228,148,110, 48, 24,156,188,188,188, 48, 97,194, 4,180,105,211,134, + 76,155, 54,109, 58, 33,100, 65, 77, 51, 22,211,211,211,195,103,205,154,213,109,241,242, 8,235,209, 65, 4,133, 69, 90, 20, 20, + 20, 32,241,238, 13,208, 2, 45, 86,174,252, 26, 82,169,148, 0, 16,102,102,102, 10,231,205,155,187,193,223,223,127,224,229,203, +151, 95,175,173,173,233,233,233,139,230,206,157, 27,184,114,229, 74,171,130,130, 2,104,138,139,161,214,136,112,225,235,178, 10, +101,208,212,139, 88,247,213, 10,166,157,139,137,117, 65, 65, 1, 62,251,236,179, 53,190,190,190,157,227,226,226, 62,168,205,169, + 82,169,174,204,156, 57,211,118,237,218,181,226, 54,109,218, 92,203,207,207, 71, 78, 78, 14,179,103,207,158,133, 46, 46, 46, 86, +107,214, 68, 16,153, 76, 6, 0, 72, 78, 78, 22,206,158, 61,235,231,246,237,219,111,187,118,237,218,152,218, 94, 27, 0, 37,132, + 32, 85,161,104,229, 86,116,142,153,167, 80, 20,159,137,156,171,218, 74, 8, 82,203,246, 1,117, 92,239, 56,250,209, 22,113,215, +146, 18,118,117, 90, 90,210, 29, 74, 65, 49,247,185,133, 43,216,216,216, 76, 30, 50,100, 8,150, 46, 93,138,125,251,246, 77,181, +178,178,250,122,254,252,249, 80, 40, 20, 31, 18, 66, 86, 83,227, 87, 39,254,106,213,170, 85, 94, 94, 94, 94,120,231,157,119,180, +199,143, 31,159, 9,224, 55, 0, 73,167, 79,159,110,177,121,243,230, 65, 63,255,252,243,210, 53,107,214, 72,214,174, 93,235,246, +198, 27,111,172, 6,240, 94,125, 82,123,123,251, 79, 70,142, 28,137, 21, 43, 86, 32, 50, 50,242, 13, 74,233,193,242,187, 14, 17, + 66, 6,133,135,135,159,152, 61,123, 54, 86,173, 90,245, 49, 26, 24,176, 8, 33,166,222,222,222, 95,246,237,219, 23,167, 79,159, + 70,104,104, 40,186,116,233, 50,149, 16, 18, 65, 41, 53, 54, 92, 84,245, 49,166,166,166, 63,111,218,180, 41,180,101,203,150, 88, +180,104, 17, 62,251,236, 51,108,220,184, 49,244,173,183,222,250,153, 16,242,186, 49,179,124, 77, 77, 77, 77,165, 82, 41,150, 46, + 93, 74, 31, 61,122, 84,111,245,212,209,209,209,242,203, 47,191, 36,230, 70,116, 3, 16, 66,120, 10,133,194,220,193,193,161,155, +131,131, 3,214,172, 89, 3, 59, 59, 59, 76,157, 58, 21,214,214,214, 40, 44, 44,196,235,175,191, 46, 56,127,254,252, 8, 0, 17, +245,249,202,177, 6, 80, 81,241,242, 70,217, 88, 43,117,249,241,206, 3,232, 10,224, 33,202,198,101, 89, 25, 35,100, 40,109,103, +105, 97,134,148,107,233,224, 67, 15,175, 22,114, 92, 78, 40, 68,169,129, 66,102, 98,138, 66,117, 46, 58,186,217, 34,191,200, 9, + 0,107,212,234,227, 66, 30,227, 39, 18, 75,145,145,159,135,180, 91, 39,178, 75, 13, 37, 19,114, 31,156, 73, 6, 0,171,214,221, + 38,220,184,112,248,242,235,253, 66,237, 50,115, 90,128, 82,246,229,233,254,224,248, 91,168,119, 12, 22,203,254,245,127,191,106, + 69,168,130,210,210,166, 77,204,123, 22,206,154,120, 22,206,127, 0, 84,105,201,207, 51,145, 48,250, 99,151, 51, 12, 58,189, 1, + 71, 46,167, 25,100, 98,162,183, 20,107,243, 89,150, 53,234, 3, 49, 38, 38, 70,119,250,244,233, 45, 51,102,204,192,170, 85,171, +112,255,254,125, 8, 4, 2,120,122,122,218, 59, 59, 59, 59, 2,101,179,247,124,124,124,108,120, 60, 30, 18, 18, 18,176, 99,199, + 14,204,155, 55,143,198,196,196,108,172,237,131, 34, 37, 37, 37, 46, 61, 61,125,253,146, 5, 51,115, 5, 37, 41,144, 25, 50, 97, +200,189, 15,129, 33, 15,147,167,206,192,195, 44, 3,226, 30,170, 17,247, 80,141, 52,141, 4, 95, 46, 90,201,115,119,119, 31,228, +228,228,212,167,182,182,170, 84,170,243,169,169,169, 91,231,204,153,147,151,149,149, 85,249,247, 83,170,103, 81,170,127,186, 25, +166,166,166, 88,178,100,137,133,163,163,227,155, 74,165, 50,172, 54,103, 70, 70, 70, 70, 74, 74, 74,194,140, 25, 51, 74, 51, 51, + 51,145,159,159,143,195,135, 15,191,209,170, 85, 43,171,105, 51, 22,144,135, 89,180,178,157,121,172, 5, 86, 68,252,192,107,221, +186,245, 40,133, 66, 81,231, 56, 34,133, 66,233,230,237,221,122,215,249,243,231,199,184,185,185,125, 0,148, 5, 43, 74, 65, 1, +192,213,213,117, 98, 76, 76,204, 88, 95,223,182,187,236,237, 29,218,212,229,122,214, 16, 66,122,188,249,230,155,109, 88,150,197, +174, 93,187,174, 81, 74, 87,253,250,235,175,151, 74, 74, 74, 48, 98,196, 8, 87, 0,125,141,244, 4,140, 26, 53,234,131,208,208, + 80,124,252,241,199,165,199,143, 31,247,163,148,126, 77, 41, 77,164,101, 36, 81, 74, 35,162,162,162, 58, 78,158, 60,185, 36, 48, + 48, 16, 99,198,140, 25, 75, 8,169,115,220, 15, 33, 36,120,228,200,145, 94, 44,203, 98,231,206,157, 87,171,132, 43, 0, 0,165, +244,143,221,187,119,159,215,106,181, 24, 61,122,116, 43, 66, 72,207, 6, 60,119,161, 88, 44,222,181,112,225, 66, 11,149, 74,133, +183,223,126,187, 36, 62, 62, 30,243,230,205,147,154,155,155, 31, 36,132,212, 58, 70,176, 54,196, 98,241,247,223,125,247,221,144, +246,237,219, 99,210,164, 73,218,111,191,253,118,202, 7, 31,124,160,245,243,243,195, 55,223,124, 51, 68, 36, 18, 53,104,133,234, +244,244,244,220,200,200, 72,235,250,110,105,105,105,233,198,248, 90,180,104, 97,225,227,227,115, 45, 32, 32, 32,171, 67,135, 14, +173, 1,224,198,141, 27,153,187,118,237,162,214,214,214, 56,124,248, 48,190,255,254,123,132,132,132, 64, 46,151,143,104, 64, 83, +105,249, 13, 85,190, 86,191,191,250,126,117, 67, 8,205, 43,210,131,207, 48, 16,240, 40,146,210,139, 81,106,160, 16, 10, 24, 8, +120, 0,159,161,176,150, 11, 32, 16,240, 0, 16,163,156, 12, 33,200, 41,212,129,207, 35, 16,136,132,132,209, 27, 42, 75,132, 12, +223, 32, 21, 75,196,196,206, 92, 8, 33,159,192,184,145,115, 28, 28,127, 82,239, 66,163, 6,195, 95, 11, 31, 53, 85,129,180, 90, +163, 42,221,181,242, 44,156, 53,241, 44,156,207,147,252,252,124,126, 84, 84,148,185, 64, 32, 48, 25,216, 62, 36,123,217, 47,119, +109,230,111,191, 3, 17, 15,100, 80, 7, 38, 53,242,228,113,146,147,147, 99,233,238,238, 94,239, 89, 47, 0,220,191,127,127,156, +163,163,227, 34,134, 97, 2, 13, 6,195, 47,171, 86,173,194,186,117,235,100, 19, 39, 78,140, 87, 40, 20, 42, 15, 15, 15,231,213, +171, 87,139, 1, 96,235,214,173, 56,114,228,200, 80,129, 64,112, 49, 41, 41, 41,173, 46,239,149, 43, 87,102,187,184,184, 68, 63, +120,240, 32,130, 16, 98, 33,151,203, 45,127,253,245, 87,146,154,171,197,236,173,247, 43,103, 22,154,136,121,152,241,154, 45,254, +243,159, 97,252,123,247,238,125, 5,224, 72,109,206,216,216,216,169,174,174,174, 81,119,239,222, 93, 37,180,246,180,150,180, 27, + 47,239, 57,163,172,251,209,209, 74, 12,166,252, 13, 49, 47, 47, 15, 89, 89, 89, 24, 59,118,172,197,226,197,139,167, 3,136,172, +205, 25, 23, 23,119,222,213,213, 53,245,238,221,187,157, 41,165, 34,115,115,243,144, 85,171, 86,145,164, 39, 90,124,177, 57, 1, +234,226,178,118,202, 37, 2, 44, 24,233,132, 49, 99,198,240, 31, 62,124,184, 12,101,103,228,127, 65,169, 84,186,123,123,123,239, +218,190,125,187,247,234,213,171,159,220,187,119,175, 80,161, 80,204,175,182, 91,201,146, 37, 75,178,183,110,221,234,249,246,219, +111,239,114,112,112, 24,222,216, 37, 53,154,138,153,153,217,210, 9, 19, 38,224,231,159,127, 70, 78, 78,206,106, 0,200,207,207, + 95,181,125,251,246,157,227,198,141,195,214,173, 91,151, 18, 66, 14, 27, 81,197,234, 55, 98,196, 8, 28, 58,116, 8, 39, 78,156, +248,146, 82,122,179,166,157, 40,165,119, 9, 33,211,247,238,221,187,102,228,200,145,248,241,199, 31,251, 2,168,107,225,217,222, +125,250,244,193,193,131, 7,145,157,157,253, 77, 77, 59,228,230,230,126,251,251,239,191,119,238,211,167, 15,150, 44, 89,210, 27, +192, 31,245, 61,111, 66,136,151,185,185,249,166, 53,107,214, 4,180,111,223, 30,163, 70,141, 42, 46, 45, 45,237,251,217,103,159, +237,219,177, 99,135,124,203,150, 45,254,227,199,143,191, 64, 8,121,159, 82,106,212, 34,182, 60, 30, 47,124,237,218,181,239,133, +133,133, 97,234,212,169,250, 35, 71,142, 12,166,148, 30, 37,132, 36,124,254,249,231, 7, 86,174, 92,201, 91,177, 98,197,123, 60, + 30, 47,211, 96, 48,204, 52,198,217,220, 16, 66, 86,172, 92,185,210,187,109,219,182, 40, 46, 46,198,253,251,247,145,158,158,190, +253,240,225,195, 71,175, 95,191,190, 60, 45, 45,109,143,189,189,253,184,169, 83,167, 58, 5, 4, 4, 4, 56, 57, 57, 89, 62,126, +252,216,152,247,146,138,202, 84, 6,128, 91, 0, 58,151, 87,174, 0, 32, 8,101, 93,131, 64,217,140, 66,163,222,155, 64,200,181, +187, 15, 85,173, 44, 77,205,144,195,138,240, 80,149, 5,169,137, 9, 24,202, 64,175,201,129,187,139, 29, 88, 10,228,103,169,192, + 48,228,154, 49, 74,157,129,141, 73, 76, 78, 87, 90,152, 72,224,238,215,223,250,234, 31, 63,254,100,222,186,235,120, 62,143,240, +132, 98,179,245,163, 70,190, 99,163, 51, 80, 20,228,164,130,240, 24,163,199,160,113,112, 0, 70, 4, 44,150,101, 33,149, 74,159, +170, 48, 85,175, 2, 73,165, 82,148,148, 52,108,185, 20,169, 84,138,210, 42,195,120,155,195,105,204, 49,155,219,249, 60,209,233, +116,242, 15, 62,248,160,107,231,206,157,147,251,245,235,151,224,229,101,155, 56, 32, 88, 98,179,118,227, 94,223,126,221,125,226, +242,159,164,103, 38,137,197,197, 57, 57, 57,214, 91,183,110,237,164,211,233,100,198,120, 83, 83, 83, 31, 1,120,164, 84, 42, 7, +244,232,209,227,173,129, 3, 7,226,212,169, 83,242,194,194, 66, 47, 19,147,178,217,164,123,246,236,193,239,191,255,254, 67, 74, + 74,202, 94, 99,219,155,148,148,116, 24,128, 91,139, 22, 45, 44, 90,180,104,145,110, 97, 97, 33, 84,169, 11, 43,103, 22, 10,249, + 12, 66, 62,187,132,220,124, 53, 44, 44, 44, 32,147,201, 92,235,115,150,175,115,181, 47,240,205,133,237,121, 15,182, 71,173, 93, +179,218, 28, 40, 59, 51,181,183, 16, 34, 55, 55, 23, 89, 89, 89,200,204,204, 4,165, 20, 6,131,193,219, 8,231, 35, 0,143,108, +108,108, 28,221,221,221,137,169,169, 41,232,147, 66,228, 20,148, 62,213, 5,169, 46, 40,132, 82,169,132, 92, 46,175,177, 59,194, +202,202, 74, 46, 22,139, 55,111,216,176,193, 75, 46,151,243,198,141, 27,103, 49,110,220,184,174,168, 37,140,201,100, 50,222,143, + 63,254,232,225,235,235,187,169,101,203,150,189, 19, 19, 19,243,234,107,107,115, 81, 62, 51,114,226,167,159,126,234, 47,145, 72, +176,110,221,186, 7, 0,182,149,223,189,235,219,111,191,157, 51,114,228,200, 54, 83,166, 76,241,153, 61,123,246,212,242,174,194, + 90,187,157,133, 66,161,159,183,183, 55,126,253,245, 87, 0,248,181,158,195,239,142,142,142, 94, 51,112,224, 64, 72, 36,146,128, +122,246,117,117,118,118,198,222,189,123, 1, 32,174,150,125,226,226,227,227,241,250,235,175,131, 16, 82,239,223, 16, 33,100,200, +171,175,190,186,123,201,146, 37,124,185, 92,142,247,222,123, 79,123,225,194,133,254,148,210, 83,132,144, 30,163, 71,143,142,218, +182,109,155, 73, 84, 84,148,215,226,197,139,163,121, 60, 94,184,193, 96,152, 93,143,115,236,162, 69,139,102, 12, 29, 58, 20,243, +231,207,167,191,252,242,203, 40, 74,233, 81, 0,160,148, 30, 33,132,188,109,105,105,185,109,214,172, 89, 36, 47, 47,111, 6, 33, +228, 49,165,244,187,218,124, 69, 69, 69,121, 6,131,193,161,168,168,200,168, 51, 68, 99,247,111,213,170, 85,191,182,109,219, 98, +239,222,189, 24, 52,104, 16,142, 29, 59, 6,134, 97, 14,168, 84,170,147, 0,142, 2,128,163,163,163,121, 66, 66,194,212,208,208, + 80,230,248,241,227,175, 3,248,193,136, 38, 60, 4,208, 30,192, 49, 74,105,114,249,196,201, 96,148, 45,217,112,139, 82, 90,177, +212, 73, 59, 0, 9,198, 60, 39, 86, 91,176,229,196,193,221, 61,122,191,241,129, 57,143,199,128, 15, 33,138,212,249,128,193, 0, + 55, 23,123, 4,122,219,227,106,162, 6,209,199,119,229, 22, 21, 20, 25,181,188,132,161,180,112,211,137,195,123,187, 7,188,250, +142,185,216,173, 45,156,237, 63,246,189,113,241,232, 49,177, 72, 72,222,120, 99,152, 69,143, 64,119,156,184,150,143,243, 39,126, +203, 41, 82,231,111, 50,198,201,193, 81, 65,101,192,170,101, 80, 89,198,212,169, 83,237,166, 77,155, 6, 51, 51, 51,100,103,103, + 67,167,211, 85, 86,155,196, 98, 49, 44, 44, 44,144,157,157,141,157, 59,119, 2,101,103, 43,181,194,227,137, 82, 23,125,179,214, +153,240, 76,180, 98,169,140, 90,201,154,238, 4, 0,173,142,159,241,221,206, 61, 86,253,186,117,225,183,112,116,252,203,253,141, +113,190, 8,232,116,186, 99,105,105,105,254,109,218,180, 73,115,113,113,209, 20, 23, 23,131,106, 52,234,131, 59, 87,183,118, 54, +159,116,159, 97, 24, 42,149, 74, 89, 11, 11,139,194,251,247,239, 19,189, 94,127,178, 33,126, 74,233,196,137, 19, 39, 50,167, 79, +159, 30,245,214, 91,111,161,101,203,150,136,139,139,195,214,173, 91,177,123,247,238,205, 66,161,112, 74, 99,218,157,156,156, 92, +224,237,237,253, 84, 5,164,250,204, 66, 93, 73, 38, 88,150, 53,122,112,126, 78,236,214, 59, 60, 27, 27,157, 79,139, 63,151, 19, +201,201,201, 65,102,121,184,170, 18,178,140, 46, 97, 18, 66,212, 90,173,182, 90, 59,255,236,126, 44, 44, 44, 68,105, 73, 6, 12, + 6, 67,141,206, 39, 79,158,168, 21, 10,197,218,136,136,136,149, 11, 23, 46,180, 91,181,106,213,147,219,183,111,231, 51, 12,243, + 84,185,150,101, 89,137,155,155,155,124,197,138, 21,246, 17, 17, 17, 79, 88,150, 93,251, 55,135,171,161,237,219,183,223,220,175, + 95, 63,249, 7, 31,124,128,136,136, 8,164,166,166,126, 65, 41,213, 3, 0,165,148, 37,132,124,254,205, 55,223,236,159, 62,125, + 58, 74, 75, 75, 87, 28, 60,120,112, 62, 33,100, 34,165,116, 91, 77, 78, 91, 91, 91, 39, 62,159,143,216,216,216,124, 74,233,253, +186,142, 79, 41, 77,243,244,244, 76, 39,132,216, 59, 58, 58,182,174,107, 95, 43, 43, 43, 55,185, 92, 14,149, 74, 5,148,125,136, +215, 68, 98, 74, 74, 10, 21,137, 68, 68,161, 80,184,215,247,252, 45, 45, 45, 63,223,176, 97, 3,255,228,201,147,152, 59,119,238, +227,164,164,164,209,229,203, 8,128, 82, 26, 75, 8, 9,237,209,163,199,142,233,211,167,123, 46, 91,182,140,196,199,199, 79, 2, + 80,103,192,114,113,113,153, 56,118,236, 88,172, 93,187, 22,235,215,175,159, 68, 41,221, 85,237, 57,239, 32,132, 88, 90, 91, 91, +175,157, 48, 97, 2, 54,109,218, 52, 26, 64,173, 1, 75,165, 82, 77,127,243,205, 55,231, 60,121,242, 36,188,190,231, 99,236,254, + 10,133, 98,240, 91,111,189,101, 79, 41, 69, 68, 68, 68,218,218,181,107,139,242,243,243,183,165,164,164, 60,245, 62,193, 48,204, +158,195,135, 15, 79,253,224,131, 15,112,242,228,201,117, 10,133,130,166,164,164,108,168,235,248,148,210, 84, 66, 72,107, 66,136, + 55,165,244, 86,249, 44,193,167, 6,178, 19, 66, 60,203,247,125,108,204,115,202,186,115,114,159,189, 79,255,179, 87, 46, 70,190, +234,234, 19, 42,176,179,148, 67,233,110, 3, 43, 83, 33, 40,128,235, 73, 26,156, 63,117, 84,151,145,250, 40,218,152, 25,132, 21, + 78,135,118, 3,162,101, 54, 46,175,182,106,219,149,239,234,238,129,222, 33, 29, 44,173,205, 4,208,234, 40,142, 93,201,195,185, +168, 67,186,140,244,228,147,220, 12,194,191,135,151,101,128, 59, 80,127, 5,107,222,250,245,235, 67, 54,110,220, 56,112,234,212, +169,242,119,222,121, 7, 82,169, 20,133,133,133,112,118,118,134, 94,175,199,193,131, 7, 17, 27, 27,171,102, 89,118, 63,254,156, + 37, 2,224,175, 87,219,158, 17, 81,212,130, 16,194, 0,133, 33,243,215,119,104, 22, 39, 0, 68, 63,208, 43, 21,169, 89,243,178, +115, 14,126,226,162,116, 20,246,233,218,153,111, 99, 89, 54,155,185,177,206,166,242,119, 56,245,122,253, 88, 66,136,207,231,159, +127,190, 92,169, 84, 42,230,207,159,255,168,109,219,182,154,252,252,124,170,213,106,217,204,204, 76,217,238,221,187, 93,179,179, +179,213, 58,157,238,109, 74,233,213,134,180, 51, 37, 37, 69, 3, 96,180,131,131,195,222,140,140,140,221, 35, 70,140,192,166, 77, +155,112,238,220,185, 1, 41, 41, 41, 7,107,122, 76,125, 78, 0,160,148,234,187,116,233,146,123,227,198, 13,123,158,185, 43,236, + 45, 4,232,251,101, 89, 49, 66, 46, 6, 52,133,106, 60,184,123, 11,249,249,249,151,141,117, 38, 36, 36,104,125,125,125,115, 51, + 51, 51,109,108,109,109,203,194, 85,149, 96,245,228,201, 19,228,229,229, 81,134, 97,206, 26,235,204,204,204, 44, 12, 14, 14, 46, + 74, 72, 72, 16,241, 68,142,112,180, 20,163,172, 11,146,194, 86,206,135,166,168, 16,215,226, 46, 35, 63, 63, 63,178, 54,103, 74, + 74,202, 78,133, 66, 1, 0, 43,231,204,153, 99,211,183,111,223,123, 23, 47, 94,236, 94,245, 56,126,126,126,191,205,159, 63,127, +192,226,197,139,179, 54,111,222, 60, 61, 53, 53,245,169,217,142,207,250,111,201,218,218,122,218,129, 3, 7,228,165,165,165,136, +136,136,192,215, 95,127,189,145, 82,250,212,236, 72, 74,233, 1, 30,143,247, 13,195, 48,255,253,240,195, 15, 49, 97,194, 4,153, +191,191,255, 84,252, 89,229,122,202,169, 82,169,102,251,249,249,205,201,200,200, 48, 42, 16,220,189,123,119,188,159,159,223,236, +140,140,140,229,181,181, 19, 0, 76, 76, 76, 76, 12, 6, 3, 30, 62,124,152, 67, 41,173, 49,132, 82, 74,139, 61, 60, 60, 84, 6, +131,193, 73, 38,147,253,101, 0,117,117,103, 78, 78, 78,184,191,191,255,188,244,244,244,163, 0, 22, 81, 74,139,171,249,174, 16, + 66,124, 62,250,232,163,201, 75,151, 46,125, 61, 45, 45,237, 47,235, 44, 85,119, 38, 37, 37,133,247,232,209,227,203, 59,119,238, +108,166,148,174,175,165,157,235, 8, 33,165, 63,253,244,211,164,135, 15, 31, 46,169,203,153,146,146,178, 31,192,254,154, 60, 53, + 81,219,254, 85,157, 86, 86, 86,211, 39, 79,158,140, 67,135, 14, 65,173, 86,175, 73, 73, 73, 89, 86,147, 75,165, 82,157,119,117, +117,253,189, 75,151, 46,131, 87,172, 88, 33, 28, 48, 96,192, 36, 0, 27,106,114, 86,227, 28,128,144,242,113,112,183, 1,100,151, +111,183, 66,217,204, 65,130,106,239,197,245, 57, 13,186,252,145,113,167,127,221,145,156,112,173,139, 95,247,161,150,121, 69, 78, + 16,242, 25, 20,228,164,226,220,241,255,203, 73,121,124,255,156,182, 56,119,100, 67,156,250,210,188, 17,215,206,252,182, 51, 45, +241, 86,231,162,144,254,150,185,106, 23, 8, 5, 4,185,153,143,113, 33,114,239,147,212, 71, 15, 79,235,216,146, 49, 13,113, 54, +133,127,179,243,101,131, 24, 51, 33,136, 16, 34, 2,208, 75, 46,151,247,254,228,147, 79, 68,125,251,246,197,226,197,139,113,236, +216, 49,173, 86,171, 61, 6,224,120, 77,149,129,186, 94,128,103,225,236, 23, 68,228, 14,246,204,234,150,142,204,232,182,238,110, +228,198,221,120,254,229,148,129,223, 55,197,217, 88,254,110, 39, 33,164,171, 64, 32, 88,230,229,229, 85,146,152,152,216,214,202, +202,234,142, 74,165, 18,233,116,186,207, 41,165,167,154,210, 78, 7, 7, 7,155,254,253,251,103,204,154, 53,139,204,159, 63, 31, +167, 78,157,178,168,171,194, 98,140,179, 69,139, 22, 61,253,253,253,143,172, 90,183,129,159,148, 94,128,124,181, 26,106,181, 26, +133, 5, 5, 40,206, 79,195,161,223,118,104,175, 95,191,238,153,150,150,150,100,172,211,197,197,165,111,135, 14, 29,118,108,216, +176,193, 60, 59, 59,187, 50, 96, 61,121,242, 4, 44,203, 98,253,250,245, 79,178,179,179,219, 63,126,252, 56,197, 88,103,203,150, + 45,135,132,132,132,236, 94,190,250,127,252,228,244, 2,168, 11, 11, 81, 84, 84,132, 98,141, 6,165, 5,233,216,252,125, 68,201, +173, 91,183, 90,102,102,102,166,215,229, 84, 40, 20,111,118,237,218,117,193,181,107,215, 78,198,199,199, 79,172,122,159,135,135, +199, 55, 29, 59,118,236,127,246,236,217, 57, 42,149,106,107, 99,126,159, 13,165,170,147, 16,210, 87,169, 84,126,157,153,153,249, +160,180,180,116, 23,165,244, 47,109,168,242,184, 17,124, 62,127,132,141,141,141,125, 90, 90,218, 82, 74,233,175, 53, 57,159, 69, + 59,203,127, 30,104,103,103, 55, 51, 35, 35, 99, 41,165,244,247, 58, 30, 87,177,223,114, 74,233,111,117, 57,159, 69, 59, 95, 4, +167, 66,161, 24,104,103,103,183, 32, 61, 61,253,100, 90, 90,218,231,117,117,249, 58, 57, 57, 73, 88,150, 93, 96,111,111, 31,156, +150,150,182, 50, 53, 53,245,255,140,109, 39, 41,187, 84, 78, 75,148,141,183, 2,202,198, 92, 37,209, 58,214,190,170,207,105,227, +217,123,144, 88, 38,125,151,178,134,142, 0, 1,195,227, 93, 41, 46, 44,218, 84, 87,229,202, 24,167,196, 68, 54,150,101, 13, 29, + 25, 16,150, 97,152,171, 26, 77,209, 15,153,183,143,213,122,169,156, 23,241,117,255, 39, 59,107, 57,206,120, 74,105,131, 38,131, +252, 83, 48, 42, 96, 85,238, 92, 54,139,102, 0,195, 48,193, 44,203, 70, 3, 56, 64,235, 88,183,198,152, 23,224, 89, 56,251,133, + 17,101, 75, 27,222,122,185,140,241, 95,186, 89,247, 81,115, 56, 27,202,243,114, 18, 66,134,240,249,252,207,244,122,253, 87,148, +210,122,199, 71, 25,219, 78, 15, 15,143, 13, 97, 97, 97,239, 30, 57,114,228,219,164,164,164,201,205,225,108,219,182,237,202, 86, +173, 90, 77, 30, 48, 96,128,192,206,206, 14, 89, 89, 89,184,123,247, 46, 98, 98, 98,180,105,105,105, 19,227,227,227, 55, 55,212, +217,161, 67,135,133,214,214,214, 19,223,127,255,125,107, 66, 8,178,179,179,161, 86,171,233,158, 61,123,178, 52, 26,205,251,241, +241,241,149,103,245,198, 58,219,183,111,255,189,171,171,235,152,161, 67,135, 10,148, 74, 37,178,178,178,112,243,230, 77,156, 61, +123,182, 36, 45, 45,237,173, 59,119,238, 84, 86,123,234,114,186,185,185,137, 18, 18, 18,106,236, 78,244,243,243, 19,196,196,196, +212,216, 37,250, 50,253,125,114, 78,206,201, 57, 57,103, 3,143,243,194, 6,172,122, 7,185, 87,165, 60,164,236, 36,132,236,174, + 24,159,209, 84,158,133,243, 80, 36, 85, 1,232, 79, 8,225, 55,151,243, 69,161, 60, 84, 25, 61,240,220, 88,238,222,189,251,190, + 66,161,152, 82,222,109,216, 44,220,188,121,115,154, 82,169,252, 41, 49, 49,113,133, 76, 38,243,101, 89, 86, 87, 82, 82,114, 38, + 59, 59,123,106, 74, 74, 74,163, 46, 4,123,245,234,213, 47, 21, 10,197,111, 43, 86,172,248,130, 82,218,129, 16,162,213,235,245, +209, 57, 57, 57, 11,146,147,147, 83, 27,227,188,118,237,218,120,165, 82,249, 99, 98, 98,226, 18,177, 88,220,129, 82,170,213,104, + 52,145, 25, 25, 25,159, 84, 84,174,140,161,182,112, 5,148, 45,145,209,152,182,113,112,112,112,112,252, 51,105, 80,192,170,224, + 89,132,150, 23,197,249,111,166, 57,195, 85, 5, 42,149,234, 42,128, 87,154,211,153,146,146, 18, 7, 96, 88,115, 58, 85, 42,213, + 5, 0,181,174,161,197,193,193,193,193,193, 46,169, 84, 2, 0, 0, 32, 0, 73, 68, 65, 84, 81, 21,163, 46,246,204,193,193,193, +193,193,193,193,193, 97, 60, 4,101,235,144,252,133,134,244,173, 18, 66,140,186, 44, 65, 67,252,156,147,115,114, 78,206,201, 57, + 57, 39,231,124,249,156, 53,184,223,168,118,151,170,154,239,133, 28,131,213,160, 65,238, 13,150,191, 32, 3,235, 56, 39,231,228, +156,156,147,115,114, 78,206,249,124,157, 47, 27, 92, 23, 33, 7, 7, 7, 7, 7, 7, 7, 71, 51,195, 5, 44, 14, 14, 14, 14, 14, + 14, 14,142,102,134, 11, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12, 23,176, 56, 56, 56, 56, 56, 56, 56, 56,154, 25, 46, 96,113, +112,112,112,112,112,112,112, 52, 51,207,116, 22, 33, 7, 7, 7, 7, 7, 7, 7,199,191,145,167, 42, 88,132, 16, 46,109,113,112, +112,112,112,112,112, 60, 55, 94,150, 44,194,117, 17,114,112,112,112,112,112,112,112, 52, 51, 92,192,226,224,224,224,224,224,224, +224,104,102, 24,224,229, 41,199,113,112,112,112,112,112,112,188,152,188,108, 89,164,162,130, 21, 86,254,196,194,158,103, 99, 56, + 56, 56, 56, 56, 56, 56,254,181,188, 84, 89,132,155, 69,200,193,193,193,193,193,193,193,209,204,112, 99,176, 56, 56, 56, 56, 56, + 56, 56, 56,154,153,103, 26,176, 8, 33,237, 56, 39,231,228,156,156,147,115,114, 78,206,201, 57,255,109,112, 21, 44, 14, 14, 14, + 14, 14, 14, 14,142,102,134, 11, 88, 28, 28, 28, 28, 28, 28, 28, 28,205, 12, 23,176, 56, 56, 56, 56, 56, 56, 56, 56,154, 25, 46, + 96,113,112,112,112,112,112,112,112, 52, 51, 92,192,226,224,224,224,224,224,224,224,104,102, 8,128, 26,103, 2, 80, 74,175, 27, + 45,105,196,108,130,250,252,156,147,115,114, 78,206,201, 57, 57, 39,231,124,249,156,245,185, 27,146, 63,254,201, 60,211,133, 70, + 9, 33,237,154,251, 23,197, 57, 57, 39,231,228,156,156,147,115,114,206,151,207,249,178,193,127,222, 13,224,224,224,104, 34,187, + 9, 15,118,109, 92,193, 82, 5,248,162, 84,252,113,237, 62,230, 82,182,201, 78, 69, 91, 23,104,117,246,144, 74, 50,113,228,234, +131, 38, 59, 57, 56, 56, 56,254, 69,112, 1,139,131,227, 69,199,209,203, 19, 6, 44, 1, 15,142,160,165, 9, 8,105,187, 4, 64, +211,206, 44,173,189, 60,161, 99, 23,129,207, 56, 65, 91,122, 7,221,218, 44, 5,112,179, 89,218,203,193,193,193,241, 47,224,185, + 12,114, 15, 8, 8,136, 9, 8, 8, 88, 24, 22, 22, 38,126, 30,199,231,224,120,105,184,222, 94, 6,189,161,159, 86,199, 42, 15, + 71,231,218, 21, 21, 27, 60, 33,212,247, 71,180,167,105,147,156, 2,242,106,177,142,109,241,211,177, 34,251,194, 98,189, 55, 24, + 52,205, 89, 78,187,118,237, 44, 2, 3, 3, 15,251,250,250,218, 52,213,197,193,193,193,241, 79,230,185, 4, 44,150,101, 59,217, +217,217, 77,213,104, 52, 73,254,254,254,131,159, 71, 27,158, 23,157, 59,119,142,238,210,165, 75,122,112,112,112,122,112,112,112, +108,125,219, 95, 70, 20, 10,133,103,251,246,237,147,124,124,124,238, 84,221,110,215,241,245, 96,239,110,239,204,181,241, 25,218, +253, 57, 53,237,197,163,144,181, 7,195,235,113, 51,177, 72,150,150,171,179,143,137, 47,146,131,242,194, 80, 10,199, 38, 57, 89, +218,243, 74,130,198,228,220,125, 91,251,211,215, 75,204, 64,153, 30,160,196,161,169,205, 21,137, 68,147, 40,165,189, 5, 2,193, +199, 77,117,113,188,216, 16, 66,218, 17, 66, 6, 19, 66, 2,154,209,185,204,203,203, 75, 69, 8,249,168,185,156, 28, 28,141,197, +232,128, 53,172, 21, 9, 25,213,154, 68,189,217,138,168, 71,180, 38, 5,111,181, 38,103,254,227, 70,186, 55,246,192,123,246,236, +145,110,221,186,213,174,109,219,182, 59,131,130,130,206,248,251,251,123, 52,198, 19, 16, 16,112, 56, 32, 32, 96, 88,245,109,254, +254,254,111, 86,221, 22, 24, 24,120, 35, 48, 48, 48, 47, 32, 32,224,190, 49, 94, 63, 63,191,123,126,126,126,133, 1, 1, 1,247, +170,110,247,247,247,127, 51, 48, 48,240,112,181,227, 13,171,190,173, 54, 24,134,113,218,183,111,159,221,129, 3, 7,236,248,124, +190,125,245,237,251,247,239,127,106,123, 67, 9, 8, 8, 24, 23, 16, 16, 16, 93,237,185,188, 95,125, 91, 93,248,251,251, 71,251, +249,249,189, 95,205, 27, 29, 16, 16, 48,174,177,237,170, 64,161, 80,120,118,235,214,237, 76, 92, 92, 92, 11,185, 92,110, 81,245, + 62, 7,107,139, 62,209,251,191,153, 58,102,216,171,147,236,218,190,214,190,169,199,122,233,185,221, 86, 8, 61,219,141,101,169, +237,205,251,197,182,253, 7,252,135,127,229,158,198, 86,167, 55, 88,129,240,194, 16,213,178,225, 21,226,219,109,133,208,233, 66, + 89, 74,237, 79, 92, 17,218,134, 13,250,144,119,242, 26,223, 86,103, 48, 88, 67,135,238,141,114,150,227,231,231, 39,224,241,120, + 83, 39, 76,152,192, 16, 66, 62,116,115,115, 19, 53,214,245, 34, 18,212,158, 40, 95,241,231, 95,244,107, 75, 66,154,203, 73, 8, +241, 49, 49, 49,185, 76, 8,241,108, 46,231,223, 1, 33,164, 19, 0, 25,165,244,119, 0,246,132,144, 38, 15, 87, 33,132,172, 90, +176, 96,193,231,215,175, 95, 87,180,106,213,106, 62, 33,132,215,244,150,114,112, 52, 30,163, 2,214,136, 86,100,158,189,131,242, +232,172, 85,219,187,109,136,122, 96,250,237,190, 88,147,169,211,195, 67, 28, 44,109, 15,190,229, 70,150,214,246,184,186,102, 24, +136, 68, 34,220,191,127, 31, 17, 17, 17,146,121,243,230, 5,155,155,155, 95, 13, 10, 10, 90,221,182,109, 91,147,186,218, 82,221, + 73, 41, 13, 17, 8, 4, 27,130,130,130, 54, 85,188, 97, 19, 66, 66,196, 98,241,247, 65, 65, 65, 63, 85,116, 67,250,249,249,181, +186,120,241,162, 25, 33,228, 47,225,165,166,118, 6, 6, 6, 58,198,196,196,200,128,178, 74, 64, 88, 88,152, 56, 48, 48,112,171, + 82,169, 92, 15, 32, 4, 0,220,220,220, 68, 65, 65, 65,155,156,157,157,127, 32,228,233, 55,205,218,158, 59,195, 48,176,176,176, +192,246,237,219,193,227,253,249,255, 79, 8,129,133,133, 5,182,109,219, 6, 66,136, 81,207,189, 42,109,219,182, 53, 9, 8, 8, +216,227,232,232,184,154,101,217, 46, 0,208,190,125,123, 89, 96, 96,224,110,165, 82,185,166, 98,155, 49, 78, 74,105, 23,161, 80, +184, 58, 48, 48,112,119,251,246,237,101, 0,192,178,108, 23, 62,159,191, 42, 32, 32, 96, 79, 67, 94,163, 78,157, 58, 77,232,208, +161, 67, 74,135, 14, 29, 82,218,180,105,179,216,222,222, 62,114,237,218,181,214, 85,159,123, 69,229, 42, 61, 35, 59, 39,250,210, +141,248,169, 19,254, 19,214,194,217,126,180, 69,199,161,230,198, 60,247,198,242,194, 59,179,137, 29, 8,237, 21,159,164,145,180, +116,247, 55,177,243,250, 15,108, 45,248,226,115,183, 10,229,224,225, 21, 8,100,182,141,115,242, 95,185,241, 64, 35,181,108,213, + 79, 22,208,185, 27,136,137,135, 56, 50,174,208, 12,124,166,113,206, 63,249, 79,151, 46, 93, 68,189,122,245,130, 66,161,224,153, +155,155,143,174,103,255, 23,255, 53, 42, 39,168, 61, 81,202, 37,162, 11, 43, 23,124,226,175,176,150,237, 53, 38,100, 25, 49,125, +222,199,206,206,238,228, 55,223,124,227, 39,151,203, 79, 25, 19,178,254, 9,191,207,242,112, 37,164,148,158, 47,223,116, 19, 64, +104, 19,157,171,230,205,155,247,241,140, 25, 51,160, 86,171, 49,102,204, 24, 51, 0, 43,141,117,202,229,114,247, 14, 29, 58,252, +228,227,227,243,200,215,215, 87,235,237,237, 93,220,166, 77,155,196,118,237,218,109,150, 72, 36,174,181, 61,238,159,240,251,124, +153,156,245, 32, 2,208, 3,192, 0, 0,175, 0, 8, 44,255, 62,160,252, 54, 0, 64,175,106, 95, 43,170,163, 21,247, 7,213,226, + 24, 80,195,227, 2,170,108,175,250,115,245,239,107,133, 1, 0, 66, 8,173,250,181, 42,195, 91,147, 96,107, 7,229,231,203,126, +187, 36,101,239, 94, 65,204,123, 61, 17,255,209, 80, 72,239, 93,193, 23,147,191,144,202,229,150,147,135,181, 38, 61, 26,246,123, + 42,227,206,157, 59,216,185,115, 39,108,108,108,200,198,141, 27,197,195,134, 13,155,100,102,102,150, 28, 16, 16, 80,239, 27,111, + 5, 60, 30,207,176,105,211, 38,211, 33, 67,134,140,176,178,178,186,225,231,231,215,138, 97, 24,195,150, 45, 91, 76,223,124,243, +205, 97, 90,173,246,150,191,191,191, 71,108,108,172,225,210,165, 75, 96, 24,227,138,118, 49, 49, 49,250, 67,135, 14, 1, 0,252, +253,253, 61, 40,165,183,150, 46, 93, 58,226,215, 95,127,149,155,155,155,179,126,126,126,173,156,157,157,111, 44, 91,182,108,244, +238,221,187,229,102,102,102, 70,205,176, 34,132,160,184,184, 24, 18,137,228,169, 32, 69, 8,129, 70,163,129, 88, 44, 54,186,141, + 21,248,249,249,249, 88, 91, 91,223, 94,178,100,201,144,223,126,251, 77, 42,151,203, 17, 16, 16,224,109, 97, 97, 17,191,124,249, +242,161,123,247,238,149,202,229,114,163,125, 66,161, 16,219,182,109,147,141, 26, 53,106,176, 88, 44,190, 29, 16, 16,224, 45, 20, + 10,177, 99,199, 14,217,232,209,163, 7,202,100,178, 91,126,126,126, 62,198,184,116, 58,221,156, 75,151, 46, 57, 70, 70, 70, 58, +186,184,184, 76,249,246,219,111,237, 5, 2, 1, 0,192, 96, 48, 0,248,179,114, 53,250,245,222, 65, 31,207,249,230,164,166,184, + 68,187,232,139,177, 97, 2, 3, 58, 55,232, 23,241,111, 98, 55,225,129, 53,116, 2,224, 22,123, 71, 99,211,177,219,104, 62, 50, +126, 71,160,183, 41, 63, 42,182,192,142, 82,234, 2, 61, 13, 68, 84,152,241,149,129,221,132, 7, 30,237, 8,194,122, 28,141, 35, + 54,193,189, 70,243,147,146,146,224,234, 29,198,219,127, 9,246,148, 82, 87,176,240,111,144,179, 10, 2,129, 96,238,240,225,195, + 77, 18, 19, 19, 17, 28, 28, 44, 19,137, 68,115, 26,227,121,138,219,109,133,184,208,198, 5,167, 60,195, 16,237,233,216,216,182, + 61, 75,130,218, 19,165,153, 68,116,126,199, 79, 63, 43,218,135,142, 35,235, 63,113,177,178,149, 11,140, 10, 89,181, 81, 30,174, +254,184,112,225,130,245,171,175,190,138,121,243,230,217,154,153,153, 25, 21,178,158, 39, 85,195, 21, 33, 68, 90,222, 61,168, 2, +224,212, 4,231,154,121,243,230,125, 60,115,230, 76,156, 63,127, 30,203,151, 47, 71,191,126,253, 96,105,105, 89,239,251,199,219, +111,191, 45, 11, 9, 9,137, 25, 60,120,240,149,143, 63,254,120,244,254,253,251,157, 55,109,218, 36,124,247,221,119,197,195,135, + 15,119,249,228,147, 79,222,233,223,191,255,245,160,160,160, 11,195,134, 13,147, 52,182,137,229, 55,142,122,168, 43,139, 0,232, + 48, 99,198,140, 64, 66,200,254, 25, 51,102,248, 3,176, 33,132,236, 7, 96, 11,192,182,252,123, 81,181,175,182, 40, 11, 77, 21, +247, 91,215,228,168,184, 85,123,156,109,149,237, 85,143, 81,253,251, 90,169,252, 36, 39,132,116, 7,112,170,250, 14,124,138, 5, + 19,166, 46,148, 60,220,252, 53, 82,127, 90, 5, 38, 75, 5, 94,110, 26, 74, 78,253, 14,221,233,125,120,187, 75, 23,169,148,144, + 69, 13,250, 45,150, 35,151,203, 33, 20, 10,113,247,238, 93,220,186,117, 11,253,251,247, 23, 70, 68, 68, 88,248,248,248,124, 31, + 18, 18,114, 37, 32, 32,160, 67,125, 14, 66, 8,220,221,221, 49, 98,196, 8,209, 71, 31,125,212, 90, 34,145,196, 82, 74, 5,174, +174,174,120,243,205, 55,133,211,167, 79,111, 41,145, 72, 46,177, 44, 43,148,201,100,181, 86,135,106,242, 74,165, 82, 0, 16,120, +120,120, 92,222,185,115,167,107, 72, 72, 8,255,232,209,163,200,207,207,231,123,122,122, 94,217,177, 99,135, 91,112,112, 48,255, +204,153, 51, 40, 44, 44, 52,106, 65, 49, 66, 8, 10, 11, 11, 33,149, 74,255, 18,176, 10, 11, 11,255, 18,188,234, 35, 32, 32, 96, +156,155,155,219,165,157, 59,119, 58,133,134,134,242, 78,158, 60, 9,181, 90, 13, 23, 23,151,203, 59,119,238,116, 10, 9, 9,225, + 69, 71, 71, 67,173, 86, 27,237, 20,137, 68,112,117,117,197,240,225,195, 5,159,126,250,169,147, 64, 32,184, 36, 18,137,224,226, +226,130,225,195,135, 11,167, 77,155,230, 36, 18,137, 46, 24,217,101,200, 3, 0,189, 94,143, 97,195,134,153, 72,165, 82, 36, 39, + 39,131,101, 89,176,108, 89, 38, 77,205,204,190,118,246,210,245,219, 83, 39, 14,235, 94, 88, 82, 82,114, 36,242,242,173,182, 30, + 46, 78,132,208,150, 70, 55,250,223,134,101, 91,107,240,208, 59, 41, 69, 43, 22,153, 56,201, 77,109,218, 0, 79, 78,161,149, 66, + 12, 80, 34,185,116,187,200, 4, 12,237, 13,100, 89, 55,200,105, 96,123, 63, 80,105,197,165,210,118,166, 10,101, 11,100,103,103, +195,217,213, 11, 37,176, 21, 69, 95, 47, 52, 5,109,160,179, 28, 95, 95,223, 80,103,103,103,135,150, 45, 91, 34, 43, 43, 11,238, +238,238, 48, 53, 53,181,244,243,243,235,221, 80, 87, 37, 81, 45,197,200, 67, 8, 74,201, 74, 16,102, 62, 40,127, 9,248,153,157, + 16,235, 39,104,180,179,153,169, 12, 87,219,126, 86, 90, 59,122, 1,215,223,131,189,149, 8, 27,103,116,180,178,149,139, 27, 21, +178, 8, 33, 62,246,246,246,127, 92,184,112,193, 70, 34,145, 32, 38, 38, 6,109,219,182,197,215, 95,127,109,107,105,105,249,143, + 13, 89,213,194,149, 21,165, 84, 3,128, 5, 48, 18,141,152,245, 74,202, 88,183,112,225,194, 41, 51,103,206,196,185,115,231,160, + 84, 42,145,145,145,129,208,208,208,164,156,156,156, 58, 63,151,124,124,124,156,238,222,189,171,250,228,147, 79, 58,109,221,186, + 85,106, 98, 98,130,220,220, 92,252,240,195, 15,152, 49, 99, 6, 8, 33,160,148,226,199, 31,127,148,141, 29, 59, 54, 48, 33, 33, + 65,213,178,101, 75, 99,135,111, 16,148, 85, 92,100, 0, 76,202,191, 74,166, 76,153, 34, 34,132,136,203,195,165,132, 16,242,143, +249, 91,253,167, 80, 91, 22, 1, 96,179,116,233,210,112, 74,233,192,165, 75,151,134, 87,217,127,127, 29,174,170,161, 9, 0, 80, +221, 65, 41, 29, 88,245,107,213,199, 82, 74, 7, 82, 74, 7, 86,125,124, 93,199,171, 78,213, 82, 73, 36,165,180,123,245, 29, 40, +208,193,161, 85, 27,228, 30,219, 5, 41,143, 60,117, 99, 30, 92,131,179,132, 15, 29,165, 70, 85, 51,170, 99,106,106, 90,121, 99, + 24, 6,169,169,169,224,241,120,152, 51,103,142,100,242,228,201,237,133, 66,225,185,110,221,186, 45,169,203, 81, 17, 70, 46, 94, +188, 8,119,119,119, 50,115,230, 76,179,238,221,187,243, 1,224,234,213,171,112,115,115, 35,139, 23, 47,150, 15, 26, 52,136,200, +100, 50,163,171, 67, 12,195, 64, 42,149, 34, 44, 44,140,108,218,180,201, 84, 44, 22,227,192,129, 3,200,202,202,194,171,175,190, +202,223,180,105,147,169, 68, 34, 65, 84, 84, 20,242,242,242,140,246, 18, 66, 80, 82, 82, 82, 99,192,170,169,178, 85, 23,193,193, +193, 27, 29, 28, 28, 86,111,221,186, 85, 44,149, 74,113,242,228, 73,228,229,229, 97,196,136, 17,250,109,219,182, 73,204,204,204, + 16, 29, 29,141,188,188, 60,163,124,213,185,120,241, 34,220,220,220,200,172, 89,179,164, 93,186,116,209, 1, 64, 92, 92, 28, 60, + 60, 60,200,172, 89,179,164,102,102,102,171,186,118,237,186,177, 46, 7,203,178, 72, 77, 77,197,245,235,215,241,224,193, 3,100, +101,101, 33, 51, 51, 19,106,181, 26,122,189, 30, 0, 32, 83,231, 31, 88,183,105,223, 21, 19,169, 84, 22,212,222,163,197,133,216, +155, 25, 38, 82,169,204,195,181,133, 39, 33,243,185,203, 57, 85,135, 16, 2,129,214, 3,148,116, 58,127,179,192, 42,180,207, 72, + 33, 50, 15, 1, 84, 7, 16, 62,122, 4, 57,241,247,158, 41,180, 7,139, 14, 16,194, 11, 48,226, 15,138, 16, 2,126,169, 59, 64, +252,143,198,232,173,187,246,153, 36,124,252,248, 49,132, 66, 33,196, 98, 49,124, 67,222,224,239, 56,169,115, 0,208, 17, 2,180, + 49,202, 89, 5,177, 88,252,229,216,177, 99, 77, 84, 42, 85,165,179, 95,191,126, 38, 50,153,108,110,163,126, 7, 81, 45,197, 96, +100, 93,160,167, 31,223,120,160,113, 89,188, 57,213,235,126,178,198, 11, 20,211,160,211,249, 54, 53,100,185,184,184,132,121,122, +122, 62,112,117,117,237,218, 88, 71,121,184, 58,183,115,219,207, 74, 43,135,178,112, 5, 67, 17,192,147,194,193,206, 18, 27,231, +134, 89,217,154, 73, 27, 20,178,202,195,213,137,243,231,207,219, 72, 36, 18, 92,190,124, 25, 34,145, 8, 18,137, 4,237,219,183, +199,250,245,235,109,173,172,172,254, 17, 33,139, 16, 98, 73, 8,233, 67, 8,249, 15, 33,228, 13,252, 25,174, 92, 1,244, 36,132, +244, 6,224, 0, 32,138, 82,122,197, 72,103, 87, 62,159,127,160, 99,199,142, 41,124, 62,255,102,120,120,248,127,167, 79,159,142, + 53,107,214, 32, 44, 44,236,254, 23, 95,124,129,248,248,120,125, 81, 81,209, 96, 74,105,157, 31,132, 5, 5, 5,191,207,154, 53, +203,252,181,215, 94,171,248, 25,103,206,156,193,150, 45, 91, 96, 98,242,231, 40, 8, 74, 41, 6, 13, 26,132,113,227,198, 89,106, +181,218, 61,117, 57,237,237,237, 95,137,140,140,244, 64, 89,184,146,224,207,128,101,114,252,248,113, 11,137, 68, 98, 21, 24, 24, +104, 86,190, 93,246,218,107,175, 89, 11, 4,130, 70,255,141,189,164,212,152, 69, 42,168, 30,112,170, 7,160,154,238,171, 41, 60, + 53,182,113,117, 29,175, 58, 85, 63,188,194, 8, 33, 81, 53,237, 84,250, 36, 29, 98, 24, 32,227, 17, 72,249,164,236, 43,143, 64, + 74, 88,240,115,210, 27,248, 86,251, 39,166,166,166,144,203,229,127, 9, 90, 26,141, 6, 5, 5, 5, 70, 5,141,138,177, 60,150, +150,150,149, 31,218,166,166,101,179,201,173,172,172, 80, 82, 82, 2, 66, 8, 76, 76, 76, 96, 98, 98,210,160, 10,150, 68, 82, 86, + 17,142,142,142,198,217,179,103,193,231,243, 97,101,101, 5, 0,184,124,249, 50,174, 93,187, 6,145, 72, 4,107,107,235, 6,121, + 75, 75, 75,107,236, 34,212,106,181, 13,234, 34,100, 24, 6,197,197,197,244,242,229,203,184,126,253, 58,196, 98, 49,108,109,109, + 33, 18,137,144,156,156,140,219,183,111, 67, 36, 18,193,214,182,206, 42,102,173,152,153,153, 33, 55, 55, 23, 44,203, 86, 84,243, + 96,102,102,134,130,130, 2, 48, 12, 99, 84, 59, 89,150,133, 74,165, 66, 86, 86, 22, 30, 61,122,132,204,204,204,202,144, 85,209, + 69,200,209, 64,206,248,152,131, 8, 94,205,204,213,137, 51, 11, 68,230,246,110,189,128,172, 67, 0,225, 1, 2, 75,116,238,212, + 10, 73,105, 6,147,248, 71, 90, 9,116,232,131, 63, 60, 45,141,114,242, 4,189, 51,242,116,226,196, 92, 91, 51,239,118,126,200, +200,200,128, 88, 44,134, 88, 44,134,127,231, 87,240, 32,133,149,221,124,168,145,129,226, 85,163,156,229,116,234,212,169,181, 84, + 42,237,210,169, 83, 39,146,158,158, 14,177, 88, 12,137, 68,130, 46, 93,186,128, 97,152,246,190,190,190, 94, 13,122,254,247,221, + 68, 16,200, 58, 3,244,227,219, 15,139, 20,123,163, 53,158,131,134,190, 97,181,234,151, 12,175,219, 15,139, 93,161,213,127,138, +194, 82,191,198,134,172,150, 45, 91,118, 55, 53, 53,221,255,229,151, 95,186,138,197,226, 67,174,174,174,161,245, 63,234,175,152, +138,121,255,251,242,227,145, 74,203,138,112,165, 47, 4,120, 82,128, 39, 43, 11, 89,246, 54, 88,244, 81, 47, 43,153, 80,240,127, +198, 58,165, 82,233,142,117,235,214,217, 86,132, 43,161, 80, 8,137, 68, 82,121,235,212,169, 19,230,204,153, 99,107,101,101,181, +189, 49,109,110, 46, 8, 33, 86, 40, 27, 87,117, 21,192, 30, 0, 39,170,132, 43,119, 0,255,135,178,170, 85, 44,165, 52,201, 72, +103,112,223,190,125, 79,222,191,127,191,255,149, 43, 87, 28,211,210,210,254,159,189,243, 14,143,162,218,223,248,123,102,182,151, +244,108, 26, 9, 9, 1, 82, 9, 45, 32,132,222,164, 73, 87, 4, 20,165, 11, 40,138,130, 8,162,162,116, 17, 41, 98, 1,165, 35, + 40, 32, 77,145, 34, 32, 32,210, 66,135, 16, 18, 66, 72,111,155,182,201,102, 55,219,102,206,239,143, 77, 48, 66,202, 6,184,191, +123,175,119, 62,207, 51, 79,118,206,206,188,243, 61,179,155,221,119,191,167,133,207,152, 49, 3,171, 86,173,194,123,239,189,183, +157, 82, 26,186,107,215,174, 86, 23, 47, 94,108,238, 72,255,160,156,156,156,151,102,207,158,157,159,159,159, 15, 0,136,138,138, + 66,113,113, 49,102,206,156,137,233,211,237,131, 92, 91,181,106, 5, 0,200,203,203,195,242,229,203,115,115,114,114,198,212,166, +201,113, 92,250,222,189,123, 99,204,102,115, 67, 0, 18, 0, 50, 0,202,212,212, 84,151,178,178, 50,103,150,101,157, 84, 42,149, +179, 76, 38, 83,141, 27, 55, 78, 18, 23, 23, 23, 97,179,217, 50, 29,169,255,255, 16, 53,122, 17,224,209, 76, 83, 77,101,143,123, +188, 35, 56,122,254,131,111, 72, 74,233, 41, 0, 93, 30, 62,128, 37,184,158, 22,123, 10,238,145,173,255,158,193, 18, 17, 40,157, +156,145,156,153, 14, 9,200,173,199, 8,240,129,169,170,106,178,178,179,179, 49,123,246,108,195,182,109,219,110,152,205,230,152, +211,167, 79,207,169, 77,167,210,164,120,121,121, 33, 45, 45,141,126,246,217,103, 37,135, 14, 29,178, 85,150,165,167,167,211, 15, + 62,248,160,244,199, 31,127,164,245,105, 34,172,204, 96,157, 58,117,138,206,155, 55, 79,151,149,149, 69,221,221,221,225,225,225, +129, 99,199,142,217,230,204,153,163, 75, 74, 74,162,238,238,238,112,119,119,175,151,193,178,217,108, 80, 40, 20,127, 51, 40,132, + 16, 88,173,214, 71, 50, 91,181,113,230,204,153,241, 58,157,238,237,153, 51,103, 26,111,223,190, 77, 53, 26, 13, 52, 26, 13, 54, +111,222, 44,122,245,213, 87,141,215,175, 95,127, 80,246, 56,120,122,122, 34, 33, 33,129, 46, 94,188,216,120,252,248,113, 49, 0, +104, 52, 26,220,185,115,135,206,159, 63,223, 88, 92, 92,252,246,153, 51,103,198,215,166,193,113, 28,146,147,147, 81, 82, 82, 2, +142,227, 96, 50,153,160,213,106,145,145,145,241,192, 96, 25, 85,206,125,223, 24, 59,176,101,153,209,104,184,112, 35, 49,173, 93, +235, 72,175, 50,163,209,144,120, 63, 45,129,210,121,194,236,225, 15, 67,121, 31, 80,218,233,204, 13,189,235,179,207,141,144,146, +146,139,128, 85, 15,136,221, 0,177, 43, 68,114, 15,244,235,217,138,221,116,164,196, 7,132,239, 0,185,172,238,254, 45, 60,245, + 6,207,119, 62,118,169,220,173, 83,255,105,210,194,194, 66, 48, 12,243,192, 96, 41, 85, 42,244, 28, 48,154,217,120,196,228, 3, +158,118, 4,203, 58,220,103, 70, 34,145,204, 26, 59,118,172,164,168,168,232,111,154, 10,133, 2, 67,134, 12,145, 57, 57, 57,125, +224,112,221,227, 35, 37,200,149,181, 7, 79,167,223, 73, 49,250,237,253,211, 24, 58,227,163,141,138,102, 45,218, 97,242, 96, 47, +197,162,173,121,145,215,146, 12,141,192,112,239,192, 96,110,131,111,235,103,178, 26, 53,106,212, 89,165, 82, 29,220,183,111,159, +178,123,247,238,152, 49, 99,134, 74, 38,147, 29, 10, 10, 10,122,228,179,177, 46,202, 74,185, 55,230,175,220,154,123,125,103, 31, +192, 86, 90, 97,174,254,218,242,116, 60, 62,250,242,119,157,149,163,163, 28,213, 52, 26,141,175, 78,152, 48,161,224,167,159,126, +122,196, 92,201,229,114,220,191,127, 31,139, 22, 45, 42, 44, 44, 44, 28, 83,223,120,159, 50,173, 0, 92, 5, 80, 14,160, 43, 0, +101,197, 72,193, 24, 0,199, 40,165, 28,165, 52,151, 82,154,237,168, 32,203,178,239,125,253,245,215, 34,163,209,136,137, 19, 39, + 34, 61, 61, 29, 89, 89, 89,152, 59,119,238,125,158,231, 95,173,208,188, 70, 41,141,119, 68,207,108, 54,223, 41, 42, 42, 26,208, +183,111,223,226,162,162, 34,180,104,209, 2, 3, 6, 12,128,143,143, 15,252,252,252, 48,104,208, 32,132,132,132,160,160,160, 0, +163, 70,141, 42,212,106,181,125, 40,165,181,142, 66, 47, 40, 40, 72,218,185,115,103,210,235,175,191,222, 54, 61, 61, 61, 10,128, +175,213,106,117, 55, 26,141, 78, 54,155, 77,237,236,236,236, 17, 29, 29,173,153, 60,121,178,107,108,108,108,100, 70, 70,134, 30, + 64,170,163,247,224,127,129,154,188,200, 19,112,240, 49,227, 24, 80,217, 7,235,113, 13, 25, 83, 33, 68,170,254,173,138, 5,248, +104,203,238, 45,229,210,192, 16,184,132,183,132, 82, 46,135, 66, 38,133,194,213, 29,229, 60,143,245,247,115, 12,101,148, 58,254, + 1,249, 87,240,127,203, 92,241, 60,143,117,235,214,149, 47, 92,184,176, 56, 39, 39,103,242,233,211,167, 91,198,198,198, 94,175, +179, 2, 12,131,146,146, 18,236,218,181,203,184,105,211,166,123, 70,163,177,181, 68, 34,177,154,205,102,108,223,190,189,124,213, +170, 85, 41, 6,131,161,173, 88, 44,182,212,167,249,173,178, 15,150, 88, 44,182,150,151,151,183,254,225,135, 31,146, 14, 30, 60, +104,116,118,118,134, 88, 44,182, 26, 12,134,230, 91,183,110,189,243,195, 15, 63, 24,157,157,157,235,101,220,120,158,175, 54,131, +197,113, 28,100, 50, 89,189,250, 96,197,198,198,126,103,177, 88,218,109,223,190, 61, 99,227,198,141,229,206,206,206, 0, 0,171, +213,218,118,203,150, 45, 25,107,215,174, 53,213,167,131, 59, 0,152,205,102,112, 28,135,173, 91,183,154,118,236,216,145, 97,179, +217,218, 86,150,109,220,184,177,124,235,214,173, 25, 22,139,165, 93,108,108,236,119,117,105,113, 28,199, 21, 23, 23, 67, 36, 18, +225,222,189,123, 38,153, 76, 6,150,101,145,152,152,248,192, 96,121,121,186, 71,118,108, 27, 21,190, 98,237,174, 83, 42,153, 76, +214,167, 91,155,136,184,196,212, 12, 74, 73, 74,189, 2,255, 95,193, 2, 37, 8, 20,137,233, 38, 39,185,216, 74,144,179, 7,144, +184, 85, 24, 44,251,230,215,192, 31,177,241, 6, 39, 16, 72, 97,182,122,213,169,105,165, 42, 16, 40,111,166,194, 73, 36, 81,144, +156,156,156, 7,153,166, 74, 67,212,168, 73, 4,174, 36,234,213, 32, 84, 6,192,225,169, 68, 40,165, 3,212,106,181, 40, 59, 59, +251,129,214, 3,205, 70,141, 88,171,213,218,199,225,186,107, 57, 95,240,252, 27, 9,105,229,126,251,254, 52,134,188,243,209, 70, +133,130, 45, 2, 82, 86,163, 89,136, 15,102,140,105, 41,157,187, 94,219, 44, 54,206,208, 24,132, 78, 70, 51,189,195,191, 46, 26, + 53,106,212, 73,169, 84, 30,218,183,111,159, 82,165, 82,225,222,189,123,104,209,162, 5, 22, 44, 88,160, 84, 42,149,191, 6, 6, + 6,118,115, 56, 78, 0,231,239,208, 84,125, 41, 23, 51,107, 93,122,206,245,251,156,221, 88, 49,118,115,165,213, 81, 76,248,240, +231,226,162,146,242,231,207,221,176,158,112, 84,147, 82,122, 85,167,211,245,254,240,195, 15, 11,242,243,243,255,102,174, 82, 83, + 83, 43,141, 64, 55, 74,105,189,127,244, 62,101, 84,176,119, 94, 15, 3,208, 4, 64, 75, 74,169, 13, 64, 41,165,244,177, 82,215, +145,145,145,173, 3, 3, 3,241,205, 55,223, 96,253,250,245, 69, 43, 86,172, 0,165, 20, 33, 33, 33,206,143,171,153,155,155,123, +241,206,157, 59,125, 90,182,108,121,123,205,154, 53, 25,190,190,190,252,196,137, 19, 49,126,252,120,104, 52, 26,110,245,234,213, +105,157, 59,119,190,153,148,148,212,171,172,172,236, 70, 93,122,148, 82,154,159,159,127,118,195,134, 13, 23,123,246,236,233, 52, +118,236, 88,239,245,235,215,251,196,199,199, 55, 52, 24, 12, 13,242,242,242, 84,167, 79,159,150,109,217,178,197, 39, 46, 46,238, +190,209,104,188, 72,255,149, 11, 2,255,151, 81,155, 23, 1,160,173, 48, 58,230,135,254,106,235,120,206,209,115,171,125,236,192, +113, 53, 82,231,136,155,157,247,232,217,209, 77,200,178, 5, 27,215,189, 59,186,121,184, 34,168, 81, 4, 56,125, 49,110,228,228, + 96, 75,182,206, 96,165,244,203, 93,247,232,239,117,233, 60, 76,165,193, 98, 89, 22, 71,142, 28,225,182,111,223,110,161,148,126, + 91, 82, 82,242, 65, 92, 92, 92,153,163, 58, 60,207,179,227,198,141,211, 23, 21, 21,237,201,206,206,158,156,148,148,100,238,220, +185, 51,251,210, 75, 47,233, 11, 11, 11, 15, 16, 66, 38, 94,186,116,201,212,169, 83, 39,212,231,125, 76, 8,129, 68, 34, 1, 33, + 4,177,177,177,247, 35, 35, 35,155,157, 63,127,254,171,132,132,132, 23, 41,165,236,229,203,151,211,163,163,163, 91,156, 61,123, +118, 77,124,124,252, 40,158,231, 29,154,115,133, 16,242, 32, 59, 86,213, 72, 49, 12,243,192,212,213,199, 96, 1,192,229,203,151, +111, 69, 70, 70, 70, 92,188,120,113,243,164, 73,147,250, 0, 80,198,198,198,222,110,222,188,121,248,249,243,231, 55,191,250,234, +171,125, 97,111,243,119, 8,139,197,130, 33, 67,134, 24,116, 58,221,225,210,210,210, 49, 55,110,220, 48, 68, 71, 71, 87,150, 29, + 41, 46, 46, 30, 83,143,215,104,254, 23, 95,124,241, 17, 0,240, 60,191,121,229,202,149, 19,102,206,156,169,201,204,204,124, 96, +176,242,242, 11, 79,116,120,110, 26, 87, 80,172, 51,111, 92, 57,235, 5,133, 92, 38,253, 96,233,198,147, 86, 22,231,107, 85,254, + 95, 69,202,149,128, 50, 89, 47,244,112,147,173,254,114,131,100,236,160,198,242,168,240, 64,187,185,146,184, 33, 54,174, 24, 31, +125,182,139,255,116,138, 38, 25, 60,210,193,225, 78,157,154,106, 81, 9,202,173,121, 19,250, 72,100, 75,190,157, 30,220,113,192, +187,178,136,168,103, 30, 24,161,248, 91,151,176,114,209, 52,254,211,201,238,201,224, 73, 22,108,112, 40, 75, 0, 0, 54,155,237, +133,165, 75,151, 30, 30, 59,118,172,170, 89,179,102, 15, 52,239,223,191,143, 79, 63,253,212,104, 50,153,158,119, 76,137, 16, 48, +145,173, 56,142,243,250,254,104, 65,211,183,223,156,172, 84, 48,133, 64,242,114,187,121, 17,187,160, 85,148, 39, 62,122,211, 71, + 60, 99,201,207,145,103,190, 10,214,195, 42,137, 0,144,229,136,186, 72, 36, 58,184,120,241, 98,165, 66,161, 64, 98, 98, 34, 20, + 10, 5,228,114, 57,162,163,163,177,106,213, 42,229,235,175,191,126,168, 91,183,110,234,147, 39, 79,218, 28,173,251,249, 59, 52, +181,125, 24,137,153,245,117,210,185,101,111,185,250,180, 8,243, 68,126, 41, 48, 97,222, 47, 69,133, 37,198,225,245, 49, 87,149, + 80, 74,175, 18, 66,122, 79,159, 62,253,232,166, 77,155, 60, 34, 34, 34,144,158,158,142,145, 35, 71, 22,104,181,218,238,255, 1, +230, 10, 0,202, 0, 52, 0,144, 0,123, 95,164,187,132, 16, 41,158, 96,121,182,184,184,184, 43,169,169,169,190,227,199,143, 71, + 73, 73,137,219,136, 17, 35,112,239,222, 61, 36, 36, 36, 92,125,146, 64,141, 70, 99, 44, 33,164,249,219,111,191, 61,122,214,172, + 89, 29,157,156,156, 26, 81, 74,105, 73, 73, 73, 50,199,113,103, 0,108,167,212,241,117, 56, 43, 12,211, 93, 66, 72,114, 82, 82, +146,247,230,205,155, 93, 97,191, 7, 0, 96, 4,160, 3,144,251,184,166,240,127,152,216,127,211,185,143, 15,165,212,161,237,133, + 70,232, 56,182, 49, 57,245, 82, 48, 74, 71, 5, 67, 63,182, 9, 57,243,124, 99,116,173,237, 28, 0, 81,213,149,183,110,221,154, +218,108, 54,122,244,232, 81,218,175, 95,191,178, 78,157, 58,157,137,142,142, 14,113, 36,142,135, 53,187,117,235,118,184, 77,155, + 54,195, 31, 46,123,230,153,103, 70, 84, 45,235,218,181,235,173,174, 93,187,234,186,116,233,114,207,145, 56,187,116,233, 18,223, +177, 99,199,178, 46, 93,186,196, 87, 45,111,219,182,237,224, 30, 61,122, 28,172, 90,246,204, 51,207, 12,122,184,172,166,186,247, +234,213, 43, 61, 33, 33,129,166,165,165,209,254,253,251,103, 85,150,247,236,217, 51,253,218,181,107, 52, 33, 33,129,246,237,219, + 55,171,186,115,107,210,172,186,181,105,211,102, 98,231,206,157,207, 62, 20,243,132,135,203,106,211,236,220,185,243,217,182,109, +219, 78,120,184,172, 77,155, 54, 19, 31,231, 53,170,186,249,250,250,134,182,106,213, 42,111,229,202,149, 52, 56, 56, 56,175,234, +115,205,186,141,251,176,184, 68, 95, 50,115,254, 55, 59, 53, 17, 67,154,215,183,238,245,221,254,107, 53,111, 71, 72,232,159, 17, + 29,233,233,136,131,241, 91, 3,111,143,233,173, 50, 93,222,222,151,210,248,119,233,249, 93,227,105, 76,132,148,251,243,171,128, + 4,122, 58,252, 16,253, 35,180, 11, 61,212, 88,234,144,230,233, 38,157,233,233,240, 67,113,155, 3,111, 15,233,162, 49,111,223, +186,142,222,189,123,151, 30,216,187,157,182,143, 80, 86,104, 70, 28,165,167, 35,186, 59,164, 89,101,107,221,186,117,199,152,152, + 24,253,206,157, 59,105, 98, 98, 34,253,237,183,223,104,135, 14, 29, 12,173, 90,181,234,238,120,221, 65,232,169,200, 33,182,223, +195,206,204, 25,169, 46,158,208, 71,110, 26,217, 93,106, 30, 28, 35,177,244,110, 45,177,117,140, 16,113, 45,130, 25, 62, 34, 0, +180,119,180,194, 68, 79,135,253, 65,207, 68,244,113, 52,206,144,144,144,180,160,160, 32, 90,211, 22, 26, 26,170,237,218,181,171, +232,113, 94,247,118,161, 8,236,213, 86,150,125,252,219,238,116, 96, 23,167,130,246, 81,162, 30, 79,250, 94, 2,208,202,211,211, + 51,127,211,166, 77,212,219,219, 91, 11,160,217,127,196,251,211, 94,230, 14, 96, 48, 0, 77,197,190, 26,246,249,135,130,159, 64, +179, 67,239,222,189,173, 87,174, 92,161,247,238,221,163,135, 15, 31,166, 29, 59,118,180, 1,232,246,184,154,255,138,186, 11,154, +194, 86,185,145,138, 27,245, 47,129, 16, 18, 69,171,233,108, 24, 29, 29, 77,251,244,233, 99, 60,117,234,148,222,108, 54,191,118, +233,210,165, 3, 79,170,249,175,136,243, 95,161,217,163, 71,143,179, 12,195, 4, 87, 12, 1,206, 58,118,236, 88,107, 0,232,222, +189,251, 89,150,101,131, 1,128, 82,154,117,252,248,241,214,255,206, 56,255,149,154,126,126,126,161, 12,195, 28, 1, 96,202,200, +200,120, 48,218,201,171,217,224, 24,119, 55,151,238,197,197,186,171, 57, 55,247, 31,250,119,199,249, 31,173,121,184,137, 20, 78, +210, 54,224, 48,251,230, 61, 67,163, 15, 54,228, 55, 30,208,187,131,120,243,174,211,252,178,169, 94, 73, 29, 34, 85,247, 65,248, + 79,193,153, 46,162,107,138,201, 97, 77, 37,121, 6, 16,207,190,150,100, 8,156,249,117, 81,211, 94, 3, 39,176, 63,239, 94,199, +127, 54,213, 35,169, 67,164, 58, 13,192,167,224, 13,231, 28,214,172, 66,116,116,116, 71,153, 76,118,104,212,168, 81,234, 29, 59, +118, 24,203,203,203, 7, 92,185,114,165,214,236,247, 35,154,231,194, 27,194, 70, 22, 1, 52,160,182,243,236, 48,119, 97,227, 23, +160,123,124, 90,125,226,124, 28, 28,209,108, 31, 70, 2, 85, 78,178, 95, 12, 38,219,116, 71, 50, 87,142,104, 18, 66, 90,185,185, +185,109, 43, 42, 42, 26, 65, 29,200, 92,253,127,214,157, 16,162,129,125, 34, 70, 17,236,211, 22,220,162,117,244, 97,114, 64,179, + 19,203,178,239, 53,110,220,184,197,189,123,247,110,114, 28,247, 25,165,244,228,147,104, 62, 9,130,230,255,251,100,163,255, 85, +252, 91, 12, 86,231,206,157, 47,115, 28,119, 88, 34,145, 44, 58,121,242,228, 35, 31,212,143,163,249, 36, 8,154,130,230,127,165, +102, 21,147,117, 57,161, 44,120,201,247,133,129,239,140,112, 75,171,203, 92,213,169, 89, 97,178, 46,222, 49, 4,125,186,189, 52, +112,198, 8,117, 90, 93,230,170, 86,205, 42, 68, 71, 71,119,148,203,229, 91,140, 70,227,196,186,204, 85,181,154,241,145, 18, 20, + 89, 27,192,198, 70,129, 65,205, 75,237,240,212, 0, 49,123, 19,217,200,197, 11,113,150,250,198, 89, 95, 4, 77, 65, 83,208, 20, +120,152,127,203,172,199,127,252,241, 71,244,191,227,186, 2, 2,255, 40,250, 38,153,113,184,201, 37, 56, 73,151, 70,135, 42,166, +237, 89,164, 48,128, 39, 25, 32,252,170,218,204,149, 3,154, 23,161,180, 46,125, 38, 84, 49,125,239, 34,133, 1, 64, 14, 40, 86, +214,102,174, 28,229,242,229,203,127, 2, 8,126,108,129,240, 56, 11,128,251, 0, 73,193, 39,181,204,142, 61, 15, 20,248, 23,254, +122, 20, 16, 16, 16,168,131,255,184,101, 37, 4, 4, 4,234, 65,223, 36, 51,226, 35, 99, 81,192,206, 4,135, 96,200,108,169, 40, +182,229,160,111,138,249, 9, 53, 47,160,128,188, 5, 30,161,144,218,146, 80,108,126, 50,205,167, 14,165,118, 19, 37, 32, 32, 32, +240,159,137, 96,176, 4, 4,254,219,177,103,117, 50, 42,182,255, 92, 77, 1, 1, 1,129,255, 33, 8,128,168,234,158,168, 79,219, + 42, 33,164, 90,141,218,112,160,243,166,160, 41,104, 10,154,130,166,160, 41,104, 10,154,255, 48,205,186,180,255, 41,125,187,254, + 45,157,220, 5, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208, 20, 52,255,201, 8, 11,233, 10, 8, 8, 8, 8, 8, 8, 8, 60,101, +254,173,125,176,148,158,161,190, 16, 49, 45, 8, 79,195, 1,128, 50, 36, 30, 54,254,186, 33, 63,193,225,245,169,106,130,120, 55, + 87,170,197,236,118,189,149,123,137,230,222, 48, 60,121,180,246, 57, 88, 0, 4, 2, 72,165,148,158,121, 26,154, 2, 2, 2, 2, + 2, 2, 2,255, 60,106, 52, 88,161, 29,134,254,161, 82,168,154, 2, 0, 79, 41, 56, 30, 40,183,246,204, 32, 0, 0, 32, 0, 73, + 68, 65, 84, 41,202, 59,151,122,253,183,161, 0,224,215,172,231, 94,169,202, 51,134,231, 41,120, 74, 97,227, 41,108, 38,227, 93, +109,220, 65,135, 86,158, 87,123,133, 13,237,213,187,215,176, 1, 3,158, 11,107, 30,213,188, 9, 0,220,184,121, 35,233,151, 95, + 14,222, 81,123,133,237,209,231,221,217,251, 36, 21, 83,139,197, 31,182,125,166, 93,159,216,216, 11,115, 1,188,255, 36, 90, 85, +144,208, 51,253,183,146, 78,191,246,124, 74,122, 2, 2, 2, 2, 2, 2, 2,255, 64,106, 52, 88, 42,133,170,233,137,253, 27,188, +246,254,145, 14, 0,232, 21,237,131, 79, 62,223, 52,132, 16,114, 7, 0,158,127,253,243,208, 15,222, 30,131,179,183,180,160,148, +162, 85, 83,119, 12,121,249,117,135, 46,170,240,137,108, 59,226,197, 23, 95,154, 57,115,198,160,187,119,239,166,236,216,177,227, + 15, 0,232,220,165, 75,211,197,139, 23,191,184,220,205, 93,166,240,137,204, 52,230,196, 61,214,250, 65,106,159, 38,158, 17,205, +218, 76,216,254,221,103,162, 30,253, 71,142, 87,251, 52, 89,169,207, 73,202,127, 28, 45, 89, 64,179, 96, 23,177,228, 19,194, 48, + 34, 23,175, 32, 47, 0,112, 11,104,245,139, 95,179,126,156, 92,174,184, 81,102, 52,110,201,187,125,120, 61,253, 87,118,102, 19, + 16, 16, 16, 16, 16, 16,248,175,162,214, 38, 66,181, 92,132, 59,247,237,173,117,174, 74, 96,210,171,207, 35, 55, 55, 39,212, 98, +227, 49,122,196, 80, 92,185,147,141,132,251, 90, 80, 10,132,250, 59,188,150, 48, 88,240,109,198,141, 31,215,245,200,209,163, 23, + 63,252,224,195,173,132,224, 28, 0,172,251,246,187,152,143,230,125, 52,113,244,171,163,159,221,189,123,247, 45, 60,230, 2,141, +140,196,117,229,167,139, 62, 81,103,230,151,151,191, 57,227, 93,118,230,219,111, 45, 7,240,106,125,117,100, 1,205,130, 35, 2, +252, 23,253,113,116,183, 82,169, 84, 98,253,250,245, 50, 96, 63, 62,158, 57, 78,254,220,128, 1,224,192,118,248,236,171, 29, 45, +142, 74,165,227, 61, 67,159, 29,154,159,240,219, 19, 55,109, 10, 8, 8, 8, 8, 8, 8,252,247, 83,107, 39,119,142,167,136, 79, +206, 65,124,114, 14, 46,196,107, 97,230, 68, 88,190,240, 61, 44,253,120, 22, 10, 12,192,190, 63,211,113,231,126, 14,238,220,207, + 65, 65,177, 30, 15, 79,251,247,240, 8,131,207,223, 82,182, 94, 53,203,229,179,190,109, 84,221,220,221,220,220, 18, 47,110, 45, +251,232,229,220,136, 79, 94, 76,151,136,229,222, 25,110,222, 13, 59,236,218,189, 59,210, 91,227,165,114,118,118,153,229, 30,222, +123,131,107, 80, 55,151,218, 52, 31, 70,237,211,172,235,192,231,250, 63,231,227,227,205,189,182,234, 82,124, 84,120,168, 45, 36, + 52,188,155,218, 39,172,107, 77,231, 84,167, 41, 11,104, 22,220,196,215,123,209,169,195,187,149,229,229,229,184,121,243, 38, 10, + 10, 10,236, 79, 18, 2,134, 97,209,176,129, 47,214, 44,153,161,252,248,189, 41,209, 50,185,114, 63, 33,132,212,166,249,164, 8, +154,130,166,160, 41,104, 10,154,130,230, 63, 85,243,159, 6, 3, 0,132,144,106,155,183,146,210, 11,112, 39, 57, 27,173,195, 27, +160, 73,144, 15, 46, 38, 22, 97,251,137,116,108, 60,154,130, 19,215,181,224,197, 78,200, 41, 37,184,155,154,139,132,148,252, 58, +167, 85,102,165,226, 17,211,151,233,102, 70, 6,151,180, 63,185,115, 26,252,212,137,145,239,125, 94, 60,141,149,138, 71,120,249, +184,238,152,249,214,228,151,157,148, 10,169,217,100, 70,163,160, 0,249,148,137,227,198, 74,212,170, 29,142, 86, 70,163,137, 84, + 73, 21,170,173,139, 62,154, 33, 95,177, 55, 49,173,204, 76,203,118,159,205,186, 55,115,246, 71, 37,172, 88,241,173, 70, 19,169, +114, 68, 71, 22,208, 44, 56,208,195, 99,209,153, 35,187,149, 22,139, 9, 89, 89, 89, 48,155,205,176,217,108, 15,142,161, 0, 74, +141, 54, 36,103, 27,209,181, 75, 71,182,117,171,102,225,154,240,126,175, 57, 26,171,128,128,128,128,128,128,192, 95,212,228, 69, +254, 91,169, 49,131, 85,102, 44,187,251,202,107, 51,243,154, 58,101,155,135,118,143, 0, 40,160,205, 78, 65,220,197, 35, 72,188, +124, 20,165,218, 52, 80, 10, 4, 5, 53,132,196,152,108, 94,183,246,235, 60,222, 86,126,183, 38,189,193,189,253,252,239,102,170, +152,101, 51, 27,158, 75, 76,200,246,156, 58,115, 19, 18, 19,178, 61,151,205,108,120,238,110,166,138, 81, 74,184, 14,175,142, 28, + 76, 6, 15,232,139,247,222,155,137,193, 3,250, 98,230,228, 23,137, 92, 42,110,239,104,101,202,165,242,165,179, 63,156,239,148, + 83,108, 49, 95, 72, 40, 49,169,149, 74,217,159,241,101, 6, 19, 85, 88, 6,141,152,164, 53, 73, 68,243,235,210,144, 5, 52, 11, +246,117,118, 94,116,246,216, 79, 74, 74, 41, 50, 50, 50, 96,177, 88, 96,181, 90, 97,181, 90, 31, 28, 87,172,183, 34, 77,107, 68, +106,158, 1, 55, 83, 74,208,175,111, 95,165, 72, 44,125,217,209, 88, 5, 4, 4, 4, 4, 4, 4,254,185,212,104,176, 18,206,238, +237,124,249,216, 86,239,252,220, 92,157, 74, 38,130,136, 97,144,151,113, 15, 91, 62,127, 11,187,191,156,129,226,236,187,160, 20, + 80, 72, 88,152,244, 5,186,236,171,187,188,243,107, 25, 65, 72, 96,125,246,171,109,247, 27,165,100, 83,151,237,135,245, 98, 0, +216,126, 88, 47, 78,201,166, 46, 95,109,187,223, 72, 74,181,224, 57, 14, 3, 6, 63,143,173,155,215, 35,166,199, 96,236, 62,157, + 6,131,209,226,208,250,103,114,239,208, 32, 47, 31,159,231,167,143,238,233,244, 76,168,155, 58, 36,192,149,101,197, 18,155, 84, + 44,227,127,190,164,203,236, 51, 96, 40,163, 84, 57,247,149,123,135, 6,213,166,227, 34,150,124,242,231,209,159,148, 44,203, 34, + 45, 45, 13, 22,139, 5,102,179, 25, 38,147,233, 65, 6,171,196, 96, 69,102,129, 17,233, 90, 3,210,180, 6,220, 78, 43,129, 84, +229, 6,171,213, 90,239, 25,111, 5, 4, 4, 4, 4, 4, 4,254,121, 56, 52,209,104, 86, 94, 33,220,157, 88,104,252, 26,225,165, +183,150, 3, 0, 56,222, 6, 10,251,244, 12,142,228,244, 40,196,191,189, 49,186, 81,114,144, 47,209,189,220, 79,105, 4,128,151, +251, 41,141, 65,190, 68,247,198,232, 70,201, 6,206,205,194,113, 28,206,220,202,195,178, 31,111,227,195, 77,215,113,228,146,227, +125,198, 69, 98,197,244, 79,151, 44, 86,138, 88, 66,110,165,150,234,179, 11,109,122,137, 68,108, 17, 75, 69, 86,189,153, 24, 83, +180, 92, 65,223,225, 83,239,179,172,120,106,157,177, 82, 30,148, 82,152, 76, 38,152,205,230, 7, 91,101, 6,171, 80,111, 65, 86, + 65, 57,210,180, 70,164, 87,108,185, 69, 70, 8, 3, 9, 5, 4, 4, 4, 4, 4, 4,128, 42, 6,139, 16, 66,171,107,255,228, 1, + 36,166,104, 33, 19,241,240,111,216,228,175,142,236, 20,160, 20,176,218,120,135, 46,180,255,104, 86, 70,112,131, 50, 58,107,121, + 90, 76, 84,184,199,245, 41,163, 2,226,163,194, 61,174,207, 90,158, 22, 19,220,160,140, 90,121, 41, 71, 41, 5,229, 41, 40,165, +160, 20,224,121,199, 13, 11, 33,108,251, 86,225,129,162, 79,118,220, 77,157,250,117, 66, 60, 17,137,172, 82,169,212,230,237,162, + 32,254,158, 10, 81,169, 9,229, 97, 81,173,173, 4,104, 93,155,142,206,106,153,215,177,207,112,131,197, 98, 67, 64, 64, 0,204, +102,243,131, 38,194,202, 12, 86,177,222,130,204,194,114,164,107,141, 72,211, 26, 97, 44,231,112, 35, 62, 5,132, 97,133, 78,127, + 2, 2, 2, 2, 2, 2,143, 73, 77, 94,228,191, 17, 6, 0, 40,165,164,114,171,238,160,192, 0,111, 92,184,153,138,134,222, 50, + 56,187, 56, 33, 62, 41, 3, 12, 43, 2,203, 16,216, 56,199,239, 3, 53, 91,127, 92, 49,203,101,121, 90, 54,119,254,235,109,247, +238,166,101,115,231, 87,204,114, 89, 78,205,214, 31,237,113,216, 39, 53,229,171,252,117, 88,155,242, 94,158, 46, 50, 81,108,146, +190,144,176, 34,147, 68, 44, 50,249,122,200,136,175,167, 66, 20,224,161,144,170,228, 98,198,215,219,155, 7,165,222,181,233,152, +210,111, 37,231,148,148,204,237,220,251,121,131, 88, 44, 70,112,112,240,131, 12, 86,165,193,178,103,176,140, 72,211, 26,144, 83, + 88, 14,133,140,193,181,115,199, 13, 28,103,221,226,120,196, 2, 2, 2, 2, 2, 2, 2,149,212,229, 69,254,219,168,123,169, 28, + 74,161, 82, 42,192, 51,114,156,185,148,132,240,136, 22,216,116,224, 34,154, 68,181, 67,118,169, 13,180, 30,203, 25,206, 88,109, +184, 2,224,202,224,222,126,254, 67,251, 53,120,150, 66,252,219, 87, 59,116, 25, 0,176, 33,102,104,133,177,178,103,174,120,106, +159, 38,194, 81, 8,144,149,150, 87,166,110,228,163,194,237,116,179,201, 73, 41,183,185, 42, 37, 34,141,139,148,117, 86,136, 68, + 34, 9,195, 20, 23,107, 75, 1,146, 85,151,150, 41,253, 86,178, 44,160,217,220, 46,253, 70, 46,250,227,240, 78,101,227,198,141, +113,237,218,181, 7, 77,132,134,114, 27, 72,169, 5, 98, 5, 69, 72, 3, 53,226,175,252,193, 21,228,101,198, 21, 37, 28, 94,239, +112,192, 2, 2, 2, 2, 2, 2, 2,255, 88, 28,114, 71, 60, 79,161,241,116,131, 76,237,130,100,173, 25,122,104,160, 51, 18,240, + 28,192,217,106, 54, 65,132,144,106, 59,125,239, 63,154,149,177,239,168,118,195,254,163, 89, 25, 85,203,237, 77,131,246,230, 65, + 74,105,181, 77,132, 53,105, 82,202, 29,250,229,183, 51,133, 67,218,123,185, 50, 98,177, 81, 42, 99, 45, 10,185,216,170,148,137, +224,229, 34,145,250,187, 73,100, 39, 15,254,192, 16,158,158,112, 68,211,148,126, 43,249,126, 94,222,220, 30, 3, 70, 25,188,125, +124, 48,122,244,104, 52,108,216, 16, 0,224,174, 98, 16,232,198, 64,100,202,193,169, 3, 27,202,226, 47,255,126, 25,156,105,104, +213,217,220,107,138,243, 73, 16, 52, 5, 77, 65, 83,208, 20, 52, 5,205,127,170,230, 63, 13,135, 22,123,110,236,171, 66,211, 6, + 42,148,155,189, 97, 52,115, 40, 51,217, 80,106,176, 66,103,176, 34, 37,199,128,132,147, 79, 30, 8,133,221, 84,129, 18,240,148, + 2,196,222, 76,232,104,162,176, 76, 92,178,252,211,197,159,140,220,185,107, 47,125,179,191,175,255,133,187,198,116, 25, 43, 54, + 43,101,140,200, 89,193,112,247,147,239,103, 29,253,229,135,102, 6,185, 97,140,163, 49, 85,102,178,194, 90,247,248, 4, 20, 34, +179, 81,167,154,221, 49, 18, 71, 14, 31, 52, 74,207, 92,182, 18,145,244, 38,207, 89,182, 21, 37, 8, 75,229, 8, 8, 8, 8, 8, + 8, 8,252, 69,157, 6,203, 96, 52,220,125,118,216,132,138, 5,159, 41, 56,206,158, 89,226, 42,155,242,120, 10,206, 98,172,113, +254, 43, 71,225,120,254,226, 55,155,126,236,223,178, 85, 59, 54, 50,208, 9, 37,197,249,184,116,225,156,141,242,252, 57, 71,206, +167, 41, 41, 38,181,119,248,139,195,159, 31,242,195,248,201,111,234, 59,119,237,174,244,240,112,182,229,231, 21,148,108, 89,191, +179,104,239,206,239,155, 17,158,127,133,166,164,152,234, 19,151, 41,253, 86, 50,128,151, 1,128, 16,210, 3,136,236, 90,150,117, +125,160,158, 62,154, 9, 19, 16, 16, 16, 16, 16, 16, 16, 0, 28, 48, 88,137,231,246,214, 56,183,213,211,164,176, 48,119,244,182, + 31,246, 44,252,126,231,129,142, 38,139,165, 1, 15, 54,157,179, 90, 79,201, 74, 11, 62,114, 84, 67,159, 27, 31, 71,130,130,218, +124,247,229,242,183,191,253,106, 69, 79,240, 92, 19, 16,114,159,240,244,132, 94,110, 24, 79, 51,235,103,174,170, 33,159,116,250, +181, 55,128,199, 90, 56, 90, 64, 64, 64, 64, 64, 64,224,127, 3,135,154, 8,255, 63, 40, 76,186, 80, 10,224,205, 39,213,169,200, + 80, 45,169,216,158, 42, 21,107, 47, 9, 83, 49, 8, 8, 8, 8, 8, 8, 8,212,138,227, 67, 0, 5, 4, 4, 4, 4, 4, 4, 4, + 4, 28,130, 0,168, 97, 84,158,227, 43,101, 63,206,104,130,186,244, 5, 77, 65, 83,208, 20, 52, 5, 77, 65, 83,208,252,231,105, +214,165, 93, 31,255,241,159, 12,249, 87, 14,126, 35,132, 68, 61,237, 27, 37,104, 10,154,130,166,160, 41,104, 10,154,130,230, 63, + 79,243,159,134,208, 68, 40, 32, 32, 32, 32,240, 63,135,103,232, 32,181,103,232, 32,181,163,199,107, 34,135,123,107, 34,135,215, +186, 18,136,128, 64, 85,254, 99, 58,185,255, 55, 67, 8,145, 1,224, 41,165,150,127, 87, 12,110,110,193,206, 54, 39,207,189, 12, +111,250, 84,151,126,253,183,167,169, 77, 8,145, 69, 70, 70,182, 2,128,184,184,184,171,148,210, 39, 29,141, 9,149,119,216, 40, + 55,103,215,215, 44,188,153, 51,148, 25,190,209,231, 36,236,126,242, 72,255, 66,163,137, 84,153,101,138,101, 32,180, 31, 40, 24, +202,144,227,108,137,245,157,226,226,107,186,218,206,107, 56,120, 73,248,248, 23,158,251, 96,195,238,131, 11,211,246,207,137,127, +248,121,247,126,107,156,222, 28,221,115,214,151, 63,254,242,105,254,129, 89,250,167, 25,243,255, 10, 13, 59,189,228,106, 19,249, +176, 89, 39,151, 23,212,231, 60,255,176,152, 91, 98,177, 88, 99,177, 88,242, 50, 19,206, 59,212,108, 17, 16,222,225, 10,203, 50, +126,156,141,207, 72,191,115,182,205,227, 69,252,191,133,210, 47,188, 21,225,184,247, 40,207,137,121,176, 43,203,181,137,103,158, + 68,207,207,207, 79,225,226,226,210,197,217,217, 57, 64,169, 84,202,139,138,138,140, 69, 69, 69,105,169,169,169, 39, 40,165,182, +167, 21,119,125,208, 52, 27, 50, 71, 36,101,230, 85, 60,254, 68,123,107, 95,173,131,162, 52,205, 6, 47, 36, 12,153, 83,241,120, +137,246,214,254, 15,254, 63,226,172, 11,239,230,195,218,129,242,111, 51, 12,219,129,163,182,197,121, 55,246,127, 93,159,243, 99, + 98, 98,134, 88,173, 86, 89,229,190, 88, 44, 54,157, 59,119,110,223,211,143,244,127,147,122, 27, 44,255,200,225,110, 86, 17,253, + 88,196, 50,207,243,148, 58,101, 95,221,165,250, 87, 4,246,180, 8,108,247,202, 37,134, 97,252,171,150,241, 60,159,145,122, 97, +235, 83,249,176, 37,132,248,127, 62, 61,250,189,220, 2, 99, 9, 33,100, 65, 77,230,195,187,213,168,179,132, 33,193,132, 16, 48, + 4, 96, 25, 2, 0, 89,105, 23,182, 61,178,248, 52, 33,196,215, 89, 37, 10, 45, 41,179,221,164,148,214,249, 37,164,240, 8,241, + 83,121, 52, 56,213,109,232,180, 70,151,142,108,138, 80,123,135,247,212,231,198,199, 61,133,186,105,154, 52,105,210, 54, 52, 52, +212, 99,218,180,105, 18, 0, 88,185,114,101,211,166, 77,155, 22, 36, 37, 37,197, 82, 74,181,143,163,171,242, 10, 31,189,122,249, +252,173,253,250,245, 67,150,182, 12,203, 86,126,221, 77,237, 19, 58,252,105,153, 44,226, 23,173,112, 85, 41,111,190,254,246, 71, +254,253,187,183, 21, 21,235,173,248,245,196,249,209,187, 55, 46,235,225,234,218,178,121,109, 38,139, 55, 20,127,224,237, 68,251, +242,134, 98, 0, 24,245,240,243, 13,212,214, 94,238, 74,244,243,149,137,174, 1,216, 83, 87, 44,126,109, 95, 61, 34,150, 72, 2, + 9, 97,236,175, 59, 75,192, 84,188, 7,108, 86,115,234,221, 63, 54,246,121,162,202, 62, 37,188,163, 71,231, 16, 16, 15,166, 34, + 62, 66, 0,134, 97, 32, 34, 0, 40, 45,185,119,118,147,199,147, 94,131, 16,226, 18,213,212,181,217,115, 29, 59,109, 56,149, 92, +168,110,216,245,237,131,132, 50, 95,167,158,254,252,154, 35,231,203,229,114,183,159,127,254, 89,211,183,111, 95, 23,239,168, 33, +167, 28, 57, 71, 45,149, 71,254,242,203, 1, 73,223,190,142,223,102,149, 87,216,179, 96,152,109, 4, 16,243, 60, 93,201,242,116, +167,190, 32, 33,169,190,147, 9,123, 69, 13,153, 15,130, 8,135, 79,160,184,157,119,115,159,195,211,210, 84,133, 16,194, 42,188, +194,198, 40,228,242,153, 77, 67,195, 67, 83,238,223, 75, 40, 41,209,173, 48,230, 37,108,160,148,242,245,210,178,113,211,143,158, + 56,251,130, 72, 44, 38,125,186,183, 85, 17, 66,250,212, 87,163, 42,222,222,222, 67,214,172, 89,211, 56, 38, 38, 6, 0, 96,179, +217,156,119,237,218,229,179, 96,193, 2, 21, 28,248, 31,170,142, 6, 13, 26, 52,112,113,113,105,168, 80, 40, 26, 0,128,209,104, +204,212,233,116,105,153,153,153,153,117,157,235,211,106,184, 39,195, 96,254,225, 61,223,138, 0,160,207,176,215, 22, 54,234,246, +174, 27, 97,197,198,234,142,231,108,102, 21, 67,200,219,199,127,222, 68, 0,160,231,160,177,179, 53,145,195,191,212,198,237,202, +125,156,216,159, 20, 50,124, 56,235,153,104, 25, 66, 40,121, 39,186, 77,219,246,195, 6,247, 67,100, 19, 63, 12, 25, 57,101, 38, +128,122, 25, 44,171,213, 42,219,189,123,183, 63,195, 48,172,197, 98, 41, 31, 57,114,100,222,147,196, 22,210,233,213,179, 32, 36, +192, 98,179,125,151,122,190,201, 66, 74,231,253,237,125, 67,134, 15,103,125,239,139,230,130, 48, 19, 41,207,167,103, 95,217,209, +225, 73,174,247,159, 78,189, 12,150,103,232, 32, 53, 43,147,220,236,214,185,189,199,156, 41, 67,165,107,119,254, 1,191, 86, 47, +102,102, 93,221,217,224, 95, 21,224,147,194, 48,140,255,254,237,107,188, 20, 50, 22, 0,160, 55,114, 24, 54,122, 90,157,231, 53, +104,251,242, 73, 16,132, 85,182,161,114,156, 77, 46, 18,137,203, 9, 0, 16,251,232, 0,133, 66,122,126,195,220, 24,221,216,129, +193,175,188,247,229,149,205, 0, 92, 1,228, 84,167, 71, 24,198,255,135,141, 43,189, 26,120,200, 33, 98, 9,244, 70, 27,134,190, +242, 14,247,200,113,132,248,111,152, 27, 51,127,116,191,160, 17, 94,125,127, 26, 6,224, 80,109,113,170,125, 34,195,157, 60,253, +126, 27, 54,105,190,159, 17,206,248, 96,225, 10,175,179, 71,119,255,209,107,200, 4, 75, 90, 70,134,193,102,177,222, 41, 40,204, +158, 81,154,149,144, 88,103,165,237,215,103,213,106,117, 99,181, 90,221,178, 95,191,126,242,153, 51,103,138,187,117,235,246,224, +249, 73,147, 38, 73, 78,158, 60,233,187,124,249,242,254,126,126,126,229,122,189,254,154, 94,175,191, 71, 41,125,164, 46, 53,225, +227,163,121,227,249, 33, 3,209,227,249,215,193,241, 4, 19,167, 78,199,145, 67,123, 38, 3,120, 42, 6, 75,205, 50,159, 76,156, +246,190,127,215,152,104,209,210, 93,119,225,162,148,160, 79,187, 54, 34, 25, 59,203,247,135,141,203, 87, 0, 24,247,240, 57, 13, + 7, 47, 9,231, 13,197, 31, 68,121, 90, 70, 14,234, 16,140, 3, 63, 88, 70,250,247,154, 5, 70,233,250, 32,147,213,164,223,155, + 78,110, 10,249,154, 6,174,172,151,140,203, 91,211,164,223,155,199,146, 14,125, 81, 90, 91, 44, 98,137, 36,112,195,151,139, 66, +220,213, 18,176, 44,129,136, 97,192,178, 4, 38, 51,135,209, 83,230, 60,141,234, 86,124,185,134,244,103,128,177, 0,192, 3,155, +140,121,137,191,214,231, 53, 33, 12,235,177,107,227,114,145,151,139, 20, 44, 75,192, 50,246,237,126,142, 17,111,190,251,177,203, + 19,198,167,233,215,209,171,237,201, 47,187,246,105, 31,229,222,226,199,115,196,181,125,191, 17, 30,249,229,138, 49, 63,236, 63, + 57,178, 97,151,119, 46, 80,202,127,150,254,199,170,163,181,233,152, 76,166,220, 62,125,251, 57, 19,145, 74,121,108,239,230, 46, +149,139,205, 91, 57,254,175,197,225, 41, 80,249, 35,134,167,192,164, 9,227,209,167,111, 63, 3,111,227, 51,106,211,254, 27, 12, +179,237,240,177, 51,154,114, 43,197,231,107,214,207, 47,211,229,207, 79,142,247, 72, 81,122,135,190,109,200, 77, 56,224,120,197, + 17,145,112,118,215,208,237,191,156, 67, 84,100, 4, 56,222,190,190,106,168,191, 10, 59, 14,158, 71,120, 88,184,125,242,102,158, + 34, 44, 64,141,174,207,189,226,176,244,223, 46, 67,186,137, 84,222,225, 59,134,140, 24,251,194,208,231, 71,194,213, 89, 13,179, +197, 20,122,226,232,161,111,191, 89,179,172, 35, 33,100, 76,125,204, 33,207,115,210,191, 30, 91,229, 0,196, 0,204,143, 21, 28, + 0, 63, 63, 63, 77,219,182,109, 31,236,219,108, 54, 52,106,212, 8,153,153,153, 97,245,213,242,246,246, 86,250,249,249, 61,183, +108,217, 50,175,238,221,187,139, 53, 26, 13, 0, 64,171,213, 54,248,253,247,223, 91,183,110,221, 58, 47, 43, 43,235, 96,110,110, +174,161, 38, 13, 43, 95, 46, 97,169,136,149,201, 20, 0, 0, 10, 48, 51,167,189,212, 66,163,209, 84,251,227,184,160,160, 80, 58, +111,222, 71, 68, 36, 18,219,143,167,148,161, 60, 87,227, 26, 35, 29, 58,116, 24,100,177, 88,228,213, 61,151,111,211,244, 47,231, +165, 35, 96,255, 10,129,136,101,139,178,174,238,214, 56, 86,123,192,171,197,224,222,190,140,248,155,129,131, 7, 7, 13,233,223, + 13,190, 26, 23,156, 56,127, 7,111,205,253, 28, 86, 27,183,202, 81,157,170,176, 44, 43,202,203,203, 75,113,115,115,243,121,156, +243,171,194, 48, 76,240,254,237, 95,120,253,254,199,165,217, 95,202,126,152,210,184,211, 88,107,229,242,119, 28, 79, 17, 38,119, + 22,119, 25,252,172,147, 71,131, 80,197,250, 47,151,138,159,244,122,255,233,212,203, 96,177, 82,118, 65,167, 14,109, 61,230, 76, + 31, 47, 93,176,254, 20,206, 29, 61,104,204,186,186,235,169,152, 43, 39,175,176, 24,194,138, 94, 35, 44,171, 34, 12,145,242, 28, +159,110, 51,155, 23, 26,242, 19,178,159, 84,155,227,129,159,254,172,167, 49,167,180,233,183, 95,125,238,229,237, 42,131,209,108, +195,184, 55, 62,196,186, 85,243,157, 52, 46, 82,152, 44, 28, 54,237,143,205,111, 81,182,130,142,237, 31,252,202,162, 13,183,246, +124,182, 45,126, 15,236, 43,254, 84, 11, 67, 24,120,185,200,176,112,199, 29, 56, 43,197,112, 87, 75,193, 60,212, 3,174,210, 92, +141, 29,104,215, 44, 46, 53,219, 8, 33, 82, 74,105,181, 31,110,106,223,168,206, 78, 26,255,221, 67, 39,204,215, 36,106, 9, 40, + 53,227,158,139, 12,195, 70, 79,113,109,226,163,128, 74,206, 34, 37, 61,187,209,187,179,102,181,145,251,134,183, 45,207,142, 79, +171,171,218, 65, 65, 65,195, 6, 12, 24,160,156, 49, 99,134, 56, 32, 32, 0,219,118, 29, 9,124,246,133, 55, 7,102,230, 20, 4, +240, 20,240,246,114, 79, 31, 63,162,255,207,191,254,250,107,106,122,122,186,120,217,178,101,237,246,238,221, 27,137,122,252, 18, +229, 40,133,209,204,129,227,120,112, 60,129,182,184,254, 45,142,132, 16,166,230, 95,213,116,112,239,110,207,136, 86,238,187,135, + 82,131, 21, 10, 9,139,187,217,101,136,137,105, 43,218,185,137,116,175,238,140,241, 47, 60,247,129,183, 19,237, 59,168, 67, 48, +188,220,148,216,248,229, 34, 28, 56,155,220, 55,183,148,192,115,208,178,215,124,101,162,103, 53, 74,201,154,110,109,154,250,244, +140, 14,196,165, 54, 77,125, 78, 95,142, 79,104,254,226,138,105,153,122,241,177,194, 67,211,170, 53, 90, 12, 97,224,174,150, 96, +253,145, 20,168,100, 98,168,228, 34,251, 38, 19,129, 97,158,108,193,120,133, 95,100, 0,203,115,227,157,253, 34,199,143,124,113, +184,223,168,145, 47, 80,194,176,216,181,231,231,193,223,127,191, 45, 91,237, 19,182,158, 99,216, 13,198,172,184,244,186,180, 8, + 1,188, 92,164,120,247,187,155,112, 82,138,225,172, 20,195, 73, 33, 70,207,150,154,199,142,147, 16,226, 54,121,112,227,254,215, +183,246,234, 30,214, 80, 29,114, 45, 73, 23, 55,126,225,165, 85, 39,139,187, 79, 95,179, 50,210, 67, 90,100, 18,125, 56,115,130, + 40, 51, 43,187,251,174,159, 79,245,240,123,102,252, 29,155,165,236,253,188,107, 59,247, 87,167,151, 30,127,182,181,127,204,112, +185, 69,111,189,113, 45, 33,163, 73, 97,185, 20,113,169, 37, 21,247, 84, 12,117,229,189,173,184,191,217, 25, 41, 40, 52,176,103, + 50, 61,152,238,244,228,217,122, 53, 69, 25, 45, 60,174, 37,235, 17, 20,218, 26, 62,190,126, 48,247,127, 41,232,226,137,159,246, +171,124, 35,150,148,101,223,126,223, 81,157,237,191,156,195,130, 37,171, 18, 65,112, 27, 0, 64, 17, 49,227,157,105, 33,159,175, + 88,243,183,178, 41,175, 79, 13,169, 79,124,149, 16, 66, 88,165,119,216,247,189, 6,141,121,161, 69,187,103,145,152,116, 15,137, +183, 46,161,103,175, 62,232, 55, 96, 40,204,166,242, 87, 54,124,187, 38, 22,192, 87, 15,159,235,228, 27,209,169,121, 84,196,247, +126,190,126, 1,148, 86, 44, 77, 70, 41,186,119,239,142, 89,111, 79,132, 65, 95,138,176,176,168,142,174,157,123,155,250,142,120, + 3, 60, 79, 81, 80,144, 95,118, 39, 62,174,151, 49, 55,254,130,163, 49, 26, 12, 6,171, 86,171,197,213,171, 87,145,144,144,128, + 91,183,110,161,160,160, 0, 46, 46, 46,245,106, 98,119,115,115,115,110,211,166,205, 75, 59,119,238,148,187,184,252,229,249,205, +102, 51,148, 74, 37,134, 12, 25, 34,238,212,169, 83,131,177, 99,199,190,234,230,230,182,189,168,168,168,164, 58,157,130,235,191, +100,249, 52, 31,178,182,255, 11,147,166, 0,128, 68,166, 78, 94,253,221,158, 91,181, 93, 91, 34,119, 14,236, 53,100, 92, 19, 80, + 10, 66,200,234,252,248, 61,213,254,144, 6, 0,139,197,162,248,241,199, 31, 27, 16, 66,254,246,253, 58,255,139, 31, 59,220, 72, +204,238,245,205,199,239,137,156, 84, 50,228,235,204,120,109,202, 52, 79, 71,235,239,213,124,240,212,182,173, 91,127,245,225,204, +137, 80, 41, 21, 56,122,254, 30,222,158,179,196, 86,152,159,183, 21,132,172,212,222,218,251,164,173, 22, 79,101,196, 91, 72, 3, + 53,156,250,196,200, 39,190,216, 77,110,182,114, 40,210, 91, 97,178,112,224, 41,133,174,204,138,184,212, 82,120,186, 72,176,254, +105, 92,236, 63,156,122, 25, 44,145, 88, 58,224,205, 49,253,165,203,183, 95,192,185,163,219,141, 89, 87,118, 41, 43,159, 11,104, + 51, 50, 57,253,210, 15,193, 85,143,119,100,132,129,194, 47, 50, 64, 68,216, 21, 29, 58,119,232, 61,233,181, 41,180, 69, 88,160, + 4, 96,112, 59,241,190,117,227,134,245, 99, 92, 2,154,175, 42,201,184,249, 65,229,151,105,125, 71, 45,240, 60,159,241,112,198, +138,231,249,135, 23,153,126, 68,147, 16,192, 85, 37,198,218,131,201,246, 95,198,160,112, 81,138,177,227,247, 12,148, 20,102,230, +183, 48,174,248,115,124,127,175, 65, 11, 55,196,237,255,250,231,220,203, 0,110, 81, 74,115,107,210, 36, 12, 32, 98, 9, 92, 84, + 18,184, 40,197,112, 81,139,193, 16, 82,229,122,127, 55, 87, 31,126,123,125, 51,128, 59, 85,205, 85, 85, 77,149,119, 88, 51,103, + 77,208,190,231, 39, 47,118,187,145,102, 1,195, 0,193, 62, 42,184,169,165, 48, 91,129, 20,173,165,162,174,206,152, 58,227, 99, +205,236,119, 38,255, 74, 72,183, 22,148,158,252,219, 23,205,195,113, 26, 12, 6,233,232,209,163,197, 86,171,213, 50,246,173,133, +189,179,115,243, 7,175, 90,252,174,204,211,211, 3,101,229, 54, 92,189,157, 18,177,228,179, 47,131, 15,157,188,184,119,246,228, +193, 7,250,246,237,235,242,227,143, 63,242,181,105, 62,140, 54, 55,255,203, 77,219,118,111, 93,185,124, 9,226, 83, 10,177,241, +219,175, 65, 57,219,218,218,206,121, 88,115,221,186,117, 94, 49, 49, 49,204,249,243,231, 11, 30, 54,160,132, 64, 85,168, 51,193, + 85, 37,129, 82, 38,130,143,171, 12, 30, 78, 18,200, 36, 12, 24,230,175, 15,145,170,154, 27,118, 31, 92,200, 27,138,113,224, 7, +203,200,141, 95, 46,194,184, 55,230,226,102,190,228, 48,163,116, 93,248,198,136,193,239,185, 43,209,175,129, 43,227,213, 51, 58, + 8, 42,185, 4,115,222, 28,141,182,151, 83,188, 50,138,249,185,133, 6,180, 4,240, 65,117,113, 50, 44,129,136,101,224,164, 16, +227,228,193, 29,121,134, 82,157,142,176,246, 12,139,213,108, 73,173,173,206, 53,213, 29, 0, 84,222, 97,179,163, 91,181, 88, 52, +101,210,120,166, 99,204, 51,148, 97, 68,200, 47,177, 16, 10,138,233,111, 76,198,212,201, 19,125, 50, 50,115, 63,250,234,235,117, + 31,168,189, 34, 22,232,243,110,127, 92,155, 38, 75, 24, 48, 12,129, 74, 33,134, 90,254,215, 86,110,230, 65, 8, 88,255,232,145, + 58, 16,128, 16,146,149, 30,187,163,218,102,175,135, 53,253,154,247, 59,126, 42, 79, 18,110,248,181,252,220,221,196, 43, 11, 47, + 94, 79,187, 72, 41, 45,108,216,245,157, 87,173, 86, 10,125,185, 13,247,115, 13,176,153, 41, 25,215, 55, 16,141, 94, 32, 97,139, + 55, 94,217, 74, 8,113,174,204,184, 60,172,153,113,110, 87,185,103,243, 97, 35, 86,126,177, 46,118,249,162,185,108, 65,137, 25, + 28, 5, 20, 82, 22,242,138, 77, 33, 97, 81, 94,166,195, 87,107,191,203,177,129, 12,163, 39,107,127,207, 63, 2, 79, 95, 30,214, +191,203, 15, 4,144, 18, 70,146,225, 23, 24, 20,216, 99,192, 24,121,207,129,175,128,179, 89,102,171,188,195,127, 47,203,141, 63, +238,136,102, 84,100, 4, 64,112, 59,239,198,190, 97, 0,224,213,124,200,158,240,176,240,144,135,203,154, 54, 13,125,196, 96,213, +164, 73, 8, 97, 20,154,144, 73, 77,195,155,207,154,242,225,186,160,172, 2, 19,220, 26, 52,197,213, 43,151,113,100,215, 87, 87, +140,165, 69,203,143,252,178,119,214,130,165,171, 90, 14, 24,242, 34,246,239,219, 57,131, 16,242, 53,181,243, 64,147,242,252,203, +155,215,175, 11, 16, 75,100,176,114, 20, 86, 27, 15, 43,199,195,106,163,200,206,206, 66,169, 94, 15,185,194, 9, 42,103,119, 88, +109,246, 76,161,201,100, 85, 77,126,101,192, 84, 0, 23,170,139,179, 81,187,209,151,192, 16,127,123,185,189, 76,194,184, 25,124, +125,125,183, 2,128, 76, 38,131, 76, 38,131,205,102,195,141, 44, 76,247,107,251,242, 28,208,138,111,118,158,207,200,190,178,163, + 77, 77,117, 15, 8, 8, 24, 88,157,185,210,235,245,248, 51,246,186,203,166, 31,143,246, 77, 73,207,105,204,115, 94, 38,133, 79, +203, 62, 0, 6,214,116, 63,115,110,236,155,218,176,219,116,102,198,148,209, 77, 87,127,183,251, 98,226,225, 5,181,166,147,131, +123,205, 54,207,154, 58,170,205,167,171, 55, 38,102,156, 90,245,118, 93,175,145, 68, 34, 17,107,181,218,212,202,253,249,107,126, +234,151,150, 91,210,235,179, 69,115, 37, 87,239,233,113,253,126, 54,198, 60, 27, 88,237,181,170,211,244,109, 54, 52, 44, 48, 40, + 96,213,170, 5,111, 33, 33,203,136, 53, 63, 93,196,169,131, 91, 47, 91,202, 75,159,203,187,117,160,206,236,129,131,223,155,245, + 50, 88,213,105, 86,126, 17,252,126, 61, 31,165, 70,187,177,178,114, 60, 74,141, 54,228, 21,155,160, 43,179, 66, 95,110,197,152, + 94,129,245,185, 84, 37,109, 1,104, 0,104, 1,196, 62,180,143,138,199,168,102, 63, 31,246,140,161, 7,236,153,216, 7, 25,218, + 42,251, 53,149, 87,158, 31, 7, 32,162, 66,147, 3,112, 17, 64, 81, 93, 1,139, 8, 33,148,210,191,150, 84,126,120,191, 42,156, +205,234,239,231,235, 11,158,102, 84,196,107, 39,168,221, 72,195,219,147,134, 43,252, 90,189, 80,150,117,117,183,195,125,178,156, +188, 66, 59, 40, 20,202,131, 75,150, 46,163, 35, 6,118,149,230,232,172,198,184,204,114,173,222, 68,109, 62,154, 38,178,165,159, +126,170, 94,188,116,249,235,123,247,240,197, 0, 62,171, 78,195,175,237,168, 75,132, 48,254, 15,146, 65, 4,160, 60,205,200,136, +221,222, 6, 0,158,164,175, 85, 89,185, 13, 44, 75, 32,174,232,147, 98, 48,115, 48, 20,231, 20,180, 48,172,250,115,124, 95,187, +185,186,144,233,115,143,101,181, 22, 74,105,173, 77, 16, 12, 33, 40, 49, 88,225,172, 16,195, 69, 37,129,171, 82,242, 32,131, 85, +131,185,186, 85,155,166,196, 98, 73,231,172,166,114,202,113,232,223, 86, 3, 47, 23, 41,124,221,100,144, 75, 69,176,114,128,209, +204,195,104,230,144,154,103, 64,169, 65,134,230, 93, 71, 54,245,244,189, 96,240, 12,106,187, 57, 63, 37,246,181,218, 98,229, 56, + 14,223,239, 62,210, 52, 51, 59,111,240,254,109, 43,100,121, 58, 43,174,167,232,145, 87,100, 6, 37, 46,152,243,193, 7,178, 15, + 63,156, 55,116,231,190,227,247, 59,180, 9,117,188,233,165,242,190,230,197,111,107,209,241,185, 47,159, 27, 56,196, 41,238,226, + 33, 36, 94, 61,254,161, 62,183,126,253,175, 2, 3, 3,185,175,190,250,202,117,237,218,181, 77,189,188,188,210,243,242,242,146, + 1,123,115, 84,163,200,152,172,223, 78,156,246,232,218,177,139, 40, 61,191, 28,158, 78, 18, 4,122, 43,113,249,236,239,102,134, +144,195,213,233, 85, 52, 3,142,242,239, 53, 11, 7,206, 38,247,189, 85, 32, 59, 57, 97,226,184,148,223, 14, 94, 44,248, 98,219, +241,101, 13,212,214,107,114, 62,111,205,229, 54, 77,125,102, 79, 27,141, 37, 95,108,195,169,203,241,121,101,140,223,162,108,147, +237,183,121, 35,171,111,237, 96, 25, 64, 44, 34,112, 82,136, 97, 40,211,233,110, 30,251, 58,180,190,247,171, 6, 94, 61,178,111, + 27, 83, 88,106, 69, 70,190,145,100, 21,148,194,198,243,112, 85, 73, 97,227,129,226,194,124,242,253,247,219, 16, 27,123,142, 1, +203, 76, 0,240,113,109, 98,164,162, 95,160, 90, 46,130, 90, 97,207, 2,169, 21, 34, 88,108, 60, 66,130, 3,176,106,254,155,206, + 26, 47,111,244, 30, 86,235, 91,231,111, 40, 84,110, 45,183,124,179, 0, 39,207, 93,235,246,251,221, 29,109,189,162, 90,126,225, + 31, 57,124, 57,227,238,103, 52, 89, 57,148,232,138, 80,110, 74,199, 51, 13,242,225,174,226,144, 82,226,139,155, 57,137,234,186, +154,179,242,111,236,185,170,137, 26,250,193,174,159, 79, 44,233,243,108, 55,220,186, 95, 98, 55, 87, 18,187,185, 18, 17, 30, 43, +214,174,179, 22,233, 74, 7,228,223,220, 87,239,101,173,202,242,226,143,193,254, 97, 12, 0, 80,123, 55,214,124,191,230,131, 45, + 19,103, 45,235,211,103,232,171,228,102,236,239,239, 3, 56, 94,179,194, 95,112,213,228, 88, 57,254,209,234, 85, 87, 86, 29,132, + 16,198,171, 73,155,237,155, 54,239, 24, 17, 25, 18,128,220, 98, 43,178,138, 44,248,227,242, 93,236, 93,247,126,113,113,238,189, +151, 97,209,235,121, 98,211, 29, 61,242,243,225,215,223,156,133,102,205, 90, 6,149,100,148, 56, 3,248, 91,223, 67,158, 37,235, + 94, 25, 63,121,132,183,151,183, 19, 95,145,193,226, 41, 69, 88, 88, 36,250, 15, 28,134,147,167,207, 34,238,214,117,123, 57, 15, + 80, 74, 81, 92, 84,144, 99,179,154, 55,215, 24, 31, 75,252, 55,173, 93,225,197, 16,192, 98,227, 97,182,242,152, 61,231, 67,243, + 91, 31,173,233,212,167, 99,139, 91, 44,248,146,180,236, 98,215,216, 59,217,205,137,216,217,247,165, 73,239, 73,140, 22, 14, 37, + 6, 43,142,239, 90, 93, 99,189,253, 26,183,140,105, 20,209,105,252,164,185,107,101, 50,150,177, 52, 11, 13, 72,238,218,190, 89, +122, 67, 63,207,210,197,171,191,127,230,236,229, 59,253,135, 61, 63, 84, 62,162,113, 36,241,243,144, 59, 77,158, 58,173,133, 79, + 72,167, 87,114, 18,207,108,173, 73, 83, 36,146, 21, 7,248, 7, 60,104, 74,244,138, 26,114, 29, 64,224, 67,135,165,230,221,220, +215, 2, 0,188,188,125,202,137, 88, 86,107,151,128,170, 84,190,143, 63,249, 98,119,255, 12,173,254,133,207, 22,205,149, 92, 77, + 46,195,213,123, 58, 72, 37, 44, 76, 22,199,187,181,113,132, 78,127,111,218, 56,113, 97,153, 13,191, 95,215,226,230,165, 19,212, +102, 41, 25, 67,137,104,172, 38,106,200, 43, 4,104, 68,129,251, 12,193,183,102, 6,155,139,175,237,171,117, 48, 79, 77, 33, 3, +128, 87,228,176, 14,132, 69,127, 86, 36,105, 11,240,225, 54,171,213,139, 97,217,252,156,107,187, 29, 30, 65, 73, 41,133, 33, 47, + 17,203, 22,127,132, 85,235,247,226, 98, 66, 33, 92,108,233,216,191,113, 17,102, 44,249, 30, 6,115,245,189, 23,234,240, 35, 26, + 66,200, 47,148,210, 1, 0,122, 1,144, 86,217, 7, 33,228,151,138,107,255,109,127,246,236,217,239, 47, 89,178,228, 86,229,177, +149,229,149,199,214, 86, 94,229,124,143, 57,115,230, 68, 45, 93,186,116,113, 76, 76,204, 15,103,207,158, 77,134, 35, 6,171,106, + 37, 8, 33, 53,254,151,123, 55, 31,252, 12,192,176, 62, 30,106, 52, 13, 14,128,106,248, 88,133,127,244,136, 50,150,101,152,205, +171,222,151, 23, 24, 69, 16,177,108, 89, 93, 23,172, 68,225, 29,222,206,201,201,233,215, 31,119,254, 68, 67,130,124,164, 63,157, + 47, 78,187,156,108,120,144,210, 45,209,166, 74,155,186,155,216, 17, 47, 14, 83, 29, 62,250,219,116,212, 96,176, 8, 97,252,191, + 88,241,169,151,147, 66, 12,134, 0, 37, 70, 27,166,191,243,158,163, 97,212, 8, 5,101,167,190, 51, 15, 12,177,127,249,232,117, +133, 88,180,114,147,126,152,255,137, 51,227,251,122, 14, 90,184, 33,110,255,209,219,138,187, 67,135,246,208,165,164,164,212,121, +163, 9,229, 50, 94,120,245, 45, 9,195,216,155,141, 8, 33, 0,184,220,199, 49, 87, 0, 80, 84,148, 92,162,240,105, 49,116,219, +138,105,235, 27,250, 55,112,119, 82,202,161, 86,201, 72,120, 88, 19,121,251,118, 49,138,192, 38,205, 36,167,111,235,145,166, 53, +226, 94,102,255, 91,126,158, 0, 0, 32, 0, 73, 68, 65, 84, 9,100,154, 40,241,136,110,207, 98,219,234,247,250, 59, 82,255, 19, +231,110, 14,252,122,249, 92, 89,110,145, 5,183,211, 75,145, 83,104, 66, 78, 81, 57,114,138, 76, 80,203, 69,104,223,115,152,236, +192,241,221, 67, 58,180, 9,253,194,161, 27,250, 16,247,146,146,247,166,102,102,143,105,209,234, 25,124,191,101, 83,123,226,239, + 47,167, 25, 25,229,142,158,191,126,253,250,194,214,173, 91,123,126,246,217,103,101, 97, 97, 97, 45,195,194,194,130, 19, 18, 18, + 78, 54,110,220,120,224, 55,171, 23,156,124,107,238,242, 64, 17,108, 46,237, 59,118,100,149, 82,130,243,167,143,154, 54,175, 95, +155,101, 41,214,207,170, 77,151, 81,186, 46,204, 45, 37,208,248, 5,220, 84,137,173,189,197, 74, 75, 66,225,214,105,219, 0,236, +105,210,239,205, 99,191, 95,186,147, 16,125, 57,197,235,196,229,132,188, 66,131, 53, 52,233,208, 59,181,126,224,178,164, 34,131, +165,252, 43, 99,233,221,114,248, 93, 74,136, 6,176,191,183, 8,236, 25, 45, 2,128, 0, 89, 25,151,127,116,160, 99, 52,161, 60, + 15, 36,100,232, 81,106,180,161,220,106, 67,128,167, 10,218,220, 12,124,243,197,102, 92,185, 20,139,222,253, 6,225,171,239,190, +199,196, 87,134,215,121, 95, 25,134,128, 97, 72, 69,230,202,110,174,212,114, 17, 64,128,226, 50, 43,246,156, 73, 71,147, 96, 6, +164, 30,173,133, 78,106, 5,116,165,229, 96,196,106,196,255,177, 85,121,232,196,197, 57, 31, 47,223,240,110,137, 62, 55, 45, 41, +238, 28,194,220, 10, 16,236,103,198,173, 92, 23, 92, 42, 12, 66, 88,147,198, 96, 36,177, 14,105,231,223,106,190,236, 0,243,211, +128,182,173, 34, 99, 26,122,185,192,104,230, 42,178, 88, 34,108,222,180, 9, 41,247, 51,198,231,223,218,119,197,241,104,107, 70, +159,123, 79, 43,247, 14,121,253,198,249,227,201, 67, 94,158, 10,159, 6, 13, 91, 58,122,174,163,102,138,119,192, 96, 17, 66, 24, +247,160, 86, 91,182,108,219, 53, 34,184,161, 15,126,187,120, 31, 87,146,138,224,236,228, 10, 86,229,139,208,174, 99, 93,111, 28, + 94,253,188, 49, 95,191, 69, 44, 81, 78,120,166,125, 71, 80, 74,113, 39,254, 86,161, 78,231,242,200,103,179, 33, 43,254, 42, 0, +231,170,101, 74, 77, 68, 75, 39, 23,247,171,229, 22, 14,153,153, 25,248,243,236,201,214, 21,199, 57,140, 76,194,224,232,229, 60, + 88,108, 60, 44, 86, 30,173,155,135,151,139, 37,138,206,159,174, 63,216, 62, 39, 55,143, 81,170, 93,120, 23,207,198, 18, 87,107, +142,233, 90,178, 78, 98,177,241,104,236, 91,251,239,114,165,123,227,197,111,191,243, 86,132, 72,170, 64, 73,153,201,156,157,145, +233,243,237,142,223,245,183,239,196, 53,104, 20,212,208,121,193,130,143, 37, 37,229, 20,121,197, 38,228,151, 90,200,139,163,198, +251,109,221,248,213,203, 0,106, 52, 88,213,208,252,135,173,107,173,238,106, 9, 41, 53, 88,169,182,164,156,155,250,250,244,230, +245,169,251,195,252,205, 92,221, 43,195,213,228, 98,200, 36, 44,100, 18, 22, 86,155, 99, 93, 36, 53,145,195, 85, 26,141,235,203, +237, 90, 53,197,145,203, 90,136, 88, 2, 99, 89,137, 89, 46, 83,223, 12, 15, 15, 97, 90,181,140, 66,183, 78, 29,144,148,156, 18, +118,228,183, 19, 43, 47,198, 94, 89,164,137, 26, 58, 75,123,115,239, 35,205,194,181,145,154,169, 85,229,218, 2, 70,122,249,120, + 70, 13, 26, 52, 80,214,176,129, 55,241,244,112, 5, 7, 9,166, 76,125,195,203, 81, 29,158, 82, 80, 0, 75,231,207,129,201,108, +134,151,171, 20,148, 2, 27,215,124, 2,179,217, 12, 63, 15, 57,116,101,214, 26,207,175,203,143, 84,103,136, 30, 54, 90,149,143, + 43,143, 91,178,100,201,128,170, 26,149,207, 63,204,195,229, 85,207, 95,186,116,233,226, 42,207,215,216,199,175, 42,162, 10, 17, + 82, 91,165, 52, 45,134,118, 84,200, 84, 71,191, 90, 50,157, 41, 46,179, 64, 38, 97,208, 56,184, 17,166,189,249,150,178,103, 43, + 47, 24,225,140,159,118,108, 46,177,113,214, 95, 30,189,196,163, 40,125, 66,218,168,149, 78,135, 55,110,217,193,251,120,121,146, +111,143,105,147,181, 37,182, 7, 83, 28, 36, 92, 56,192, 95, 58,242,173, 47, 5, 57,172,148, 43,154,154,204, 38,183,154,180, 24, +216, 95,208,141, 71, 83,192, 50, 12,216,167, 52,179, 23,195, 48,220,119, 95, 44,128,167,179,189,207,213, 39,171,182,149, 14,212, + 28, 62, 81,213, 92,181,106,213, 74,215,178,101,203, 98,230,225,206, 84,213,144,118,241,251, 71, 70, 75, 60,174,185,170,196,152, +115, 61, 22, 15,205,196, 79, 72,180,216,179,209,174, 25, 35, 95,122,121,142,119,179,129, 78,247,179,117,144, 50, 86,180,141,240, +197,201, 35,123,248,244,228,219,147, 29,209,206, 43,208, 5,120,122,120,224,202, 61, 61,178, 10,202,145, 93,104, 55, 87, 57,133, +229, 40, 49,218,208,170,145, 23,138,117,250, 0, 71,180,170,131, 18,186,239,200,225, 35, 99,250, 13, 30,129,105,239,126,220,111, +253,215,159, 95, 87,120, 71,188, 98,204,189,125,209,145,243,119,237,218,197, 5, 5, 5, 37,231,231,231,183,157, 53,107, 86,105, +163, 70,141,124, 22, 44, 88, 48,169,113,227,198,126, 61,187,119,215,197,254,222,126,203, 91,239,126,220,253,253,183,214, 7, 51, + 12,147, 75,121,122, 32,171,204, 58,143,106,227,170, 29, 41, 84, 73,218,254, 57,241, 36,242,147, 49, 61, 59,123, 28,240, 80, 48, +145, 98, 98, 26, 69, 34, 63,217, 73,227,230, 89,146, 14,125, 81,218,252,197, 21,211, 50,139,249,185,229,140,207,162,186,204, 21, + 96,207, 10,153, 45, 60,156, 21,226,202,145,163, 0,133,239,215,107, 62, 87,106, 92,100, 16,177, 4, 98,150,129,206, 96, 69, 65, +137, 25,239,206,170,213,255, 85,129,242, 28,207,195, 96,226, 96, 52,219, 64, 64, 80, 90,146,143, 57,239,190,141,126, 3,135, 97, +252,228,119, 80,108, 4, 46, 37,151,194, 98,181,214,105,139, 88, 2, 24, 76, 54,140,239, 19,136,130, 82, 11,202,202,109, 48, 91, +120, 40,229, 34,136, 68, 12, 84, 50, 17,156, 20, 98, 16, 66, 37,190,190,190,147, 0, 64, 44, 22,151,167,165,165,109,171, 73,147, +231, 41,130, 2,188, 97,180, 48,120,102,196,114,244,138, 9,197,213,223, 54,136, 78, 95,184, 17,252,238,199, 43, 49,117, 84, 12, +118,223,105, 2,119,175, 32,168,149,114, 88, 41, 3,192,177, 41, 64, 40,157,199,251,134, 15, 27,181,246,187,141,119,230,127,248, +158,188,168,140, 64, 38, 17,225,196,137, 99, 56,119,225,210,106,237,173,125, 53,198,245, 56,136, 41,227,237,236,226, 12,185,148, +133,197, 98,114,184,195, 55,199, 83,128, 34,194,171,249, 16,123, 31, 69,138, 8,190,154,178,186, 50, 88,132, 16,226,226, 23,181, +105,237,250,239, 95,246,245,241,194,222,227,215,177,101,253,151,104, 16,213, 15,119, 47,175, 69, 64,244, 16,168,131,123, 64,234, +180,107, 18,195,138,154, 79,125,107,206,176,232, 54, 49, 56,251,199,239,200,203,201, 94, 75,105,188, 67,125,208, 88, 49,121,179, +123,175, 1, 48, 89, 56,116,238, 49, 0,135,127,222, 59, 13, 21,131, 39, 30, 23,150,101,248, 55, 38,142, 20,231, 21,155,197,121, + 58, 19, 50,243,141, 72,206, 41,195,254, 31, 55, 56,220, 36, 69, 88,166,109,215,150,254,226, 73,203, 78,164, 7,248,251,154,196, + 38,163, 34, 33, 41, 41,124,194,152,151,197,141,154,134, 49,218, 98, 19,180, 58, 51,180, 58, 51,202,202,173,104,226,215,144, 49, +217, 68, 49,245,141,213,203, 69, 46,254,234,151,100, 56, 43, 69,232, 16,225,241,216,157,176,121,158,255,203, 92, 45,180,103,174, +174, 37,235, 32,151,176,144,138, 89,200, 36, 12,172,156, 99,213,103, 24,219,200,215,198,188,168, 48, 91, 41,242, 75,204, 96, 25, + 2, 31, 79, 15, 89,128,111, 40, 54, 46,127, 3, 0, 48,241,189,175, 49, 97,220,104,132,133, 54,133, 78, 87,170,152, 48,229,173, + 21,168,166,223, 93,117, 80, 74,233,247,251, 79, 71, 94,186,153, 58,227,213, 49,175,136, 71, 12,234,194, 92,185, 87,130,236, 66, + 19,238,221, 53,192,108,173,223,108, 52, 54,206,222,230,187,105,231, 47, 80, 74, 88,104,117,246,127,151,133,107,118, 66,173, 16, + 33,167,200, 12,158,175, 57,123, 87,151, 31,169, 41,235, 84, 31,170,154,176,218,202, 9, 33,191,204,158, 61,251,125, 0,116,246, +236,217,239, 87,238, 47, 89,178,196, 8, 32,171,174,235, 60,232,131, 85, 83,179,160,166,197,208,142, 10,169,252,232,214, 53,239, + 43,142, 39, 80,172, 62,122, 25,253,219,251, 66, 34, 34,144,171,125,112, 53,185, 24,199,143,239, 47,253,227,220,133,114,194, 88, +235, 28, 22,165,244, 13,107,173,148, 59, 29,251,114,221, 22,155,183,143, 15,118,156, 41,202, 42,208,219, 30,216, 89,142,179,146, + 75, 71,190, 13,182,241,214,190,198,156,196, 58,127,206,242,148, 74,150,124,115, 0,148, 82,128,231,192,131, 7, 43,145,169, 2, +219,141,206, 5, 1, 56,142,151,139, 88,166,188,226,110,217,235,202,115, 25,169, 23,182,215,218,116, 72, 0, 56, 43,197,248,241, + 84, 6,116,133, 89,249, 3, 53,135,255,172, 52, 87,135,111,201,238, 70, 71,183,210,181,107,215,174, 88, 38,147,129,101,217,186, +194,124, 84,255, 9,205, 85, 77, 80,122,217, 10, 96,169, 95,120,151, 65,253, 84, 81,237,164, 68,140,232,112, 95,156, 60,186,151, + 63,119,104,195, 80, 67,110,194, 65,199,116,236,125,100,178, 10,141,200,204, 55, 34,187,168, 34,131, 85,104, 2, 33, 64,185,249, +201,166,175, 49,228, 38,252,172,110,208,108,173,201,138,201,157,123, 15,193,140,143,191,108,186,109,237,178, 63, 84, 94, 33,109, +203,242, 18,111, 56,162,145,146,146, 98,242,246,246,190, 82, 90, 90,250,236,138, 21, 43,244, 17, 17, 17, 82,133, 66, 81, 0, 64, +158,120,231,142,228,196,175,187,238,107,179,178, 94,179, 88, 44,142,165, 69, 0, 4,117, 27, 43, 11,119, 46,156, 20,168,236,208, +167,177,143, 18,129,202,178, 62,225,234,107,159,121,245,156,190, 56,239,248,170,188,108,147,237,183, 66, 3, 90,102,234,197,199, + 28,209,179, 89,204,169, 47,189, 54, 27, 44, 67, 96, 49,153, 83, 43,203, 53, 46, 50,124,188,237, 54,156, 20, 98,168, 21, 98, 56, + 41, 68,232, 24,225,129,122, 36,136,168,213, 70, 97, 52,219, 96, 52,113, 48,154,108,240,108,232,138,239,182,238, 70,154,214,136, + 3,177,249,136, 79, 41, 65,104,128, 10,148,214,157,119,226, 41, 87,246,226,164,185, 78, 44,195,128, 37, 96,194,155, 6,161, 80, +111,134, 68,196, 64, 42,149, 66, 41, 23,193, 89, 41,134, 88, 36,198,197,235,215, 97, 50,153,208,174, 93,187,106, 71, 74,253, 21, +161, 61,139, 21, 18,236, 7,139,213,134, 95, 79,199, 97,225,244,161,120,182, 75, 27,188,203, 74, 17,111,106, 5, 39,119, 39,240, +132,133,197,198,195,100,229, 0,144, 26, 13, 48, 33,164, 3,236,253, 34,202, 41,165,231,179,227,247,164,121, 53, 27, 50,233,208, +209, 19,219, 6,246,239,141, 43,215,110,225,167,189, 7,254,200,247,208,205,172,114, 78,115, 84,140,130,163,148,214,218,145,185, +150,235, 18,149,119,248,244,152,142,221,160, 47,202, 67,110,250,125,135, 63,212, 35, 27, 58,225,237,233,211, 66,194,194,194, 66, + 56,158,130,231, 41, 34, 3,157,240,218,148, 41, 33, 77,154,134,134,240, 21,163, 8,195, 3,156,106,213, 81,121,135, 77, 93,180, +226,155, 87, 2, 2, 2,112,248,204,109, 44,153, 59,249,138, 82,169,110,212,198,221,201,149, 15,107,137,228,155,191,193, 61,168, + 24,206,222, 33,254,131,158, 29,227,223,239,185, 33,184,113,237, 50, 86,125,182,224, 92, 25,171, 88,236, 72,172,106,239,198,154, + 86,109,187,188,228,236,238,141, 34,157, 30,106, 55, 47, 68,180,104,243,146,218,187,241,123,250,220,123,143, 53, 37, 11, 96,255, + 1,108,178,240, 40,212, 91,144,161, 53,226,126,174, 1,247,115, 12,224,249,191,154,130,235,122,135, 18, 16,162,146,137, 68,238, +214,187, 13,175, 31, 59, 65, 3, 3,188,201,178, 5,179, 88, 11,149, 33, 79,103,134,182,196, 12,173,206, 4,109,137,221, 96,185, +169, 69,224, 41, 95,239,209, 25,133,122, 11,156, 20, 34,184,168, 36,224, 28, 52, 64,213,241,241,202, 29, 29, 50,180,250,158,159, + 45,156, 43,185,122,191, 12,215,147,117,144, 73, 24,123,246,170,194, 96, 57,218, 44,204,138,152,105,207,245,106,135,116,109, 57, + 68, 44, 3, 17,203,160,105,179,214,240, 84,242,232, 57, 98, 54, 0, 96, 96,127,251, 52, 36,201,217,101,248,249,124, 54, 0, 72, + 28,141, 53, 47,191, 68,190,247,183, 43,111,237,248,110,153,180,156, 19,227,155,131, 41, 40, 55,115,144, 73, 42,154,221,165,245, +251,126,179,113,246, 12, 86,186,214,130, 50, 19,135, 18,131, 5,148, 2, 23,239,150,194, 96,226,160, 51, 88,208, 62,204,189, 86, +141,154,252, 72,149,231,171,205, 64, 57, 74,197,249, 90,252,213, 79,171, 90,221,170, 25,172, 37, 75,150,220, 90,178,100, 73,181, + 25,177,154,168,181,147,187,166,197,208,142, 10,137,252,232,150, 47,222, 87, 28,187, 67,113,242,122, 1, 94,232,236,143,130,188, + 12,172,255,122, 53, 79, 41, 32,147, 75,115, 56, 27,127,168,156,183,205, 42,190,246,115,173,237,190, 42, 77,100, 11,133, 82,121, + 98,201,170,181, 22, 31, 95,127,126,207,249,226, 60,157,129,251, 91,174,144, 51,153, 24,202, 83,137, 35,230, 10, 0, 24,134, 88, + 62,158, 54, 20, 60,165,152,183,122, 39,150,204, 24, 9,181, 92,164, 36,132, 40,203,202,109,152,190, 96, 3, 86,124, 48,206, 73, + 41, 19, 85, 24, 3, 14,147,167,189,235,136, 52,140, 38, 14,101, 69, 57, 5,205,245, 43, 31, 50, 87,209,186,182,109,219, 22,187, +185,185, 65,165, 82,213,219, 96, 85,103,174,124,124,124,252,148, 74,165,123, 72,136,189,175, 43,203,178,224, 56,174, 44, 49, 49, +241,177, 38,125, 43, 41,206,223,151,117,255,102,187,142,221,158,195,169,163,251,248,115,191,174, 31, 90,159, 33,230,174, 46,206, +233,151,227, 82, 35, 0, 53, 50, 11,202,145, 83, 84,142,236, 66, 19, 44, 54, 30,129,222, 74,100,164,167,193,213, 69, 93,231,232, +180, 74,148, 62, 33,125, 25,202,190,198, 19,124,103,200,137,255, 21, 0,244,153,183,166, 40,189, 66,111,220,186,117,109,213,128, +145,211,164,207, 62, 63, 69,178,110,233,235,179, 1,140,116, 84, 55, 55, 55,215,224,229,229,117,206,207,207,111,192,188,121,243, + 76, 0,164, 38,147, 73, 57,110,220, 56,101,106,106,234,219,148, 82,135, 98,236, 60,110,147, 39,145,211,190,141,195,162, 71, 5, + 42,203,122,247,232, 18,131, 14, 81, 1,200,232, 18, 3, 0,111,166, 26,212,161,157, 38,175,255, 49, 88,227,118,232,155,205,191, + 46,153, 56,162,199,219,126, 3, 63, 89,145,245,243,188, 90, 51, 98,119, 78,111,120,116, 2, 38, 2,136, 43, 58,190, 87, 53, 88, + 54,142,214,167, 9,142, 90, 57, 30, 6,147, 13, 6,147, 13,250,114, 43,142, 95,205, 67,110,177, 25, 69,101, 22,148,155, 56, 80, + 0, 22, 43,173,156, 85,164, 86, 82,206,110,118,173,124,236, 31, 61, 82,183,122,254, 52,231,159,206,100, 64, 37,179,247,199,114, + 81, 73,225,172, 20, 3,160, 56,121,242, 36, 42,135,199,215, 6,207,243,248,233,240, 69,172,216,124, 2,135, 55,204,130, 92,202, +162,229,144,249, 24, 51,164, 29,120,158, 34,233,206,205,220,144,136, 86,222,140, 90, 9,134, 65,101,159,148,218,238,167, 7,165, +244, 0, 33,100, 0, 33,228, 57,216,251,140, 20,237,227, 10,202, 78, 28,220,161, 42, 51,154,108, 69,169,183,191, 68, 89,126, 87, +123, 19, 60,120,216,127,160,159, 36,132,116,169, 51,224,106, 32,132, 48, 10,175,208,213, 19,166, 76,127,161, 73,147,198,216,185, +125, 35, 40, 37, 63, 57,122,254,182,159,207, 97,229,170,191,143, 24,124,109,202,148,144,117,223,124,243,183,178, 87,198, 77,170, +113, 20, 33, 33,132,248, 71,245,152, 21, 22, 30,137,243,183, 50,176,236,195,169, 87,202,243,146, 71,153,213, 30,175, 89,202,178, +223,137,140,106, 5, 31,111, 15,228,100,231,162,251,224,103,209,175, 79, 31,220,184,118, 25, 11, 63,122,247, 28, 12,230,222,117, +101,109, 43,225,169,120,114,183, 62, 67,196, 6,147, 5,107,150,125,132,215,102, 46, 66,251,238, 3,197, 55,175, 94,152, 12, 96, +190,163,117, 54, 91,121,116,111,161,129,217,202,193, 98,229,113, 32,153,125,228,123,134, 16, 64,196, 50, 76,171,198,246,230,221, + 18, 99,205, 77, 70, 0,192,136, 72, 78, 81, 73,105,208,151,139,222, 98,203, 76, 28,180, 58, 19,242,138,205,208,150,152,144,175, + 51,217,205,149,206,140,124,157, 9, 34,150, 32, 49, 57, 19, 44, 75,234,221,255,174,184,204,130,103, 66,221, 0, 16, 48,143,217, + 28,146,111,211,244,187,150,144,209,115,217,130,185,146,171,201,122, 92,191, 95, 82, 97,172, 24, 72,171, 24,172, 90,146, 56, 15, +240,138, 28,212,225,149,145,131,155, 57,171,228,200,188, 83, 10, 17, 67, 32, 98, 9,156, 53, 1,112,145,151, 99,218,212,215,224, +225,238,130,180,252,114,172,222,155,128,235,113,119,193, 27,235, 87,237,175,191, 63, 60,244,149,151, 71,200, 24,177, 28,219,142, + 38, 67, 42, 97, 33,130, 25,113, 23, 78,155,114, 51,238, 91, 74, 75,138, 85, 34,145,216, 33, 81, 2, 80, 27,199,131, 82,138,197, +159,204,193, 15,155,191,198,225, 75,185,160,176, 79,213,240,231,158,207, 49,125,246, 66,104, 75,204, 0,106,238,146,228, 0, 7, + 1, 60, 87,185, 83, 53,155, 85, 67, 6,170, 58, 98,171,106, 84, 30,255,176,198,195,207, 85,232, 57,148,105, 23, 61,236, 20, 43, +247, 53, 45,134,118,148, 75,165, 71, 55,175,158,163, 56,158,128, 7,230,202,168,207,199,214, 13,235,244, 20,124,175,220,155,251, + 29,106,206, 1, 0,149, 87,104,148, 76,165, 58, 53,119,225,106,147,159,127,176,237,215,171, 37, 5,165,229,220, 35,105, 16,137, + 82,197,169, 92, 52,229,174,129,173, 87,136,141,230,143,180,218,184, 58,250,117, 17,240,148,226,231, 11, 57, 0,111,127, 17,119, +158,206,180,207,227,195, 18,112,188,189,157,251,183, 43,121, 15,202, 28,129, 16,224,199,163, 87,242,107, 50, 87,174,174,174,112, +117,117,133, 90,237,240, 74, 11, 21,186,213,103,174,148, 74,165,251,145, 35, 71,228,206,206,206, 96, 89, 22, 38,147, 9,207, 62, +251,108,189,180, 43, 81,121,135,141,108,223,115,216,146, 78,221,159,195,239, 71,246,240,231,126,221, 52,204,144, 87,143,249,123, + 0,244,235,210,226,231,101,159,175, 9,158, 57,123,174, 76, 37, 23,161, 72,111, 1,203, 16, 4,122, 41,224,161,102,113,238,196, + 47,229,163,250,182,114,216,252, 5,248, 7,109,253,124,245, 90,143, 21,159,126,210,219,205, 45,216,187,168, 40,185, 4, 0, 12, +121, 9,107,213, 62, 97,119,252, 27, 30, 61,213,178,203, 80,120, 53,104,234, 80, 31,177,170,228,229,229,229, 69, 69, 69,221,142, +140,140,108, 51,108,216, 48,186,120,241, 98,183,140,140,140, 93,142,154, 43, 0,232,209,167,195,116,149,216, 26,227,161, 96, 34, + 27,251, 40,209, 33,202,222,250, 57,226,185, 78,240, 15,104,136,123, 57,134, 86, 5, 70, 94, 82,102, 21, 55,254,102,237,198,216, + 64,119,209, 68,155,222, 24, 7,160,218, 41, 5,106,131,160,226, 67, 82, 89, 97,174,228, 34,168, 21, 98,240,212,254,156,131, 80, +171,141,135,217,194,195, 96,182,193, 96,226,236,102,203,204,129,231,237,157,149, 9, 33,176, 88, 57,251, 37,235, 23, 32,156,221, + 60, 17, 28,100,143,241,193,166, 16,131, 16, 64,163,209,192,195,163,238,121, 71,121,158,135,217, 98,255, 23, 55, 91,185, 7,131, + 58,204, 22, 27, 40,165, 72, 72, 72,156,149,146,156, 50,184,105, 72,147, 46,145, 45, 90,185, 43,164, 12, 0,212,214, 95,140, 16, + 66, 70, 1,176, 82, 74, 31, 12,138, 8,106,214,169,124,239,158,159, 84, 3, 6, 14, 44, 50,235,181,187,171, 28,204, 2,232, 91, + 97,198, 28, 50, 25, 85, 47,164,210,132, 14, 9, 8,239,176,104,244,216,215, 66,187,247,234,131,147,199,127,195,129, 61, 59,182, +148,229,221,169,117,190,174,170,132,133,133, 61, 50,138,176, 73,211,208, 71, 70, 17, 6, 5,135,212,104,176, 92, 92, 90, 56,183, +104,219, 45, 32, 53,223,130, 67,135,126, 69,153, 46,231, 67,179, 89,111,128,152,174, 63,182,231,219,241,163, 38,207,115,110,223, +182, 13, 92,157,148,240,116, 83,227,242,165,115,248,116,254,220,115, 48,152,123,215,253,249, 89, 81,223,200, 72, 73,211,134, 65, +111, 5, 54,110,134,203, 23,206, 32, 41,225,230,173,171,177,231,154, 53,141,106, 7,141, 95,224, 91, 36, 50,114, 41,141,139,171, +115,165, 10,202,209,140, 87, 39,189, 99,127, 92,241,245,217,190,101,176, 20,120,248, 77, 72, 96,179, 90,184,109,235, 62,205,171, + 58,138,176, 38,221,242,210,226,221,127, 92,184,241,238,160, 62,157, 73,101, 83, 96,165,169,122,120,191,105, 3, 21,146,110,196, +243,214, 50,157,195, 70,184, 34,250,220, 41, 83,223, 84,216, 99,231, 65,237, 19,171,213,235,125, 3, 0,229,156,228,165,111, 62, +121,159, 92, 75, 41,195,141,251, 37,246,102,193, 10,131, 37,147,176,144, 86,252,117,104,106, 50,134, 89,246,202,240, 62,200,215, +153,193, 83, 90, 49,151, 30,129, 72, 36, 70,106, 9,144, 94,162,135,182, 56, 23,201,247, 83,160,203, 73, 6,195,176,240,104,208, + 20,134, 58, 39,228,177, 83,202,169, 67,173, 60,154, 12, 31,208,153,221,119, 54, 27, 10,153, 8,165,249,233, 56,115,100,167,145, +114,220, 90,179,213,252,131, 23,149,222,140,187,177,203,161, 85, 74, 8,160, 45, 41, 51,123,203, 36, 44,118,110,250, 18, 47,142, +153, 98,127,162,162,170,239,206, 93, 0, 66, 8,138,116,122, 0,228,145,172,104, 77,126,164, 2,109,149,204,211, 35,251, 85, 76, + 81,117,251,164, 98,223, 92,131,134,249, 33, 83,101,126,168,220,252,144,158, 67,147, 35,215,152,193, 18, 51,236,111,155, 86,189, + 47,191,149, 39,195,197,248, 28,188,208,217, 31,134,146,124,172,251,106,165,190,220,106,233,167,189,225,184,185, 2, 0, 48,255, +199,222,121,135, 69,113,173,127,252,123,182,179, 75, 47,130, 44, 69, 1, 21, 16, 80, 81,209, 24, 75,176, 36,246, 24, 73,212, 36, +154,104,138, 37,215,154, 98,139,209, 24, 77, 52,198,154,102, 44,177,183,196, 88, 98,139,133,136, 37, 18, 11, 54, 64, 68,186,192, +194,210, 97,217,101,219,204,156,223, 31,128, 33,132,178,139,222,252,238,205,157,207,243,240,184, 59,156,249,206, 57,187, 43,243, +238,123,222, 34, 24, 60,246,141,247, 18, 2,218,119, 52, 70,199,107,210,203,180,230, 70,227, 24,122,190,180, 48,225,230,137,175, +135,149,155,211,223,177, 83,134,178, 28,195,172,210, 21,220, 95,218,208, 88,142,163,210, 37, 27,126,168, 54,174, 56, 14,243, 62, +223, 5,202,177, 53, 5,252, 88, 80,150,195,244,143,190, 5, 83,243,152,229, 88, 16, 51,171,104, 72,171, 46,118, 54,146, 51,157, + 42,215, 57,214, 55,174,186,118,237, 90,230,228,228, 4, 87, 87, 87, 56, 59, 59,163,214, 32,178,132,166,182, 5, 59,116,232, 0, + 59, 59, 59,196,196,196,192,206,206, 14,182,182, 45, 43,144,111,231, 17, 60,182,231,128,209,123,250,143,124, 67,112,238,240, 38, +246,106,204,241,151,170, 10,146, 44, 54, 2, 88,150, 37,102,179, 25,131, 35,187,101,221,186,255,240,151,101, 75,151, 14,137, 24, +240,162,236,233, 32,119, 84, 25, 25,228,100,103, 35,246,252,207,250,246,190,110,191, 60,221, 61, 48,199,108, 54,131,101, 27, 47, +186, 87,139,193, 96, 44, 22,136,109, 92,199,189,252,170,236,250,181,107,123,108, 61,130,246, 9,132,220,109,202, 10, 59, 3,116, +108,231, 78, 29, 97, 98, 56, 84,233, 42, 74, 90,178,238,132,132,132,235,107,214,172, 9, 18,139,197,222, 7, 15, 30, 44, 42, 45, + 45,181,170, 93,208,217, 19,215, 54,136,236,204, 15, 36, 84,255, 74, 27,133,246,185,236,190,189,240,242,136, 62,216,127,226, 50, +206, 95,140, 69,150,206,238,150,214, 40, 60,146,147,163, 50,132, 56,151, 31,122,161,183,159,240,167, 93, 21, 63,185,247,159, 55, +134, 82,249,217,194,152, 37, 22, 39,120, 16, 2, 84, 84,153,235,120,176,170,227,155, 4, 2, 98,177, 7,139, 0,233, 23,175,196, +133,117, 11,236,136, 91,105, 21, 40, 44, 53, 64,103,172,254,220, 83, 80,184, 58, 72, 32,147, 8,145,149,145, 14,142,154, 50,172, +121, 45, 64, 81, 56,244,165, 41,213, 9, 48,224, 68, 98,177, 8, 20, 53,197,117,109,164,149,238,238,238, 22, 25, 88,102,150, 69, +212,224,158,120, 42,162, 51, 70, 77, 93, 3, 0,136,222, 57, 15,206,118, 18, 28, 60,120, 16, 15, 47,175,219, 29,240,244,180, 51, +241,119, 19, 95, 76,184,121,229,213,161,221,228,225,173, 69,121,141,110,109, 80, 74,143, 18, 66,164, 0,250, 19, 66,158, 5, 16, + 67, 41, 53,179, 12,247,112,200,144,193, 28,203,114,143, 98, 34, 8, 33,206, 0,122, 1, 40, 1, 16, 71, 41,109,210, 69, 98,235, + 30, 60, 8, 2,236, 3, 33, 54,118,114, 69, 86,175, 65, 47, 43, 35,158,234,233,248, 66,212, 24, 72, 37, 82,156, 59,123, 26, 95, +174, 91,249, 67,101,222,189,191, 20,169,109,138,134,130,215, 27, 58,214,212,118, 81,121,185,163, 54, 57,241, 86,105,186,218,232, + 44,114,234, 0,177,204,126, 10,113, 84,110, 16,202,236,150,120, 61, 53,209, 33,250,242, 53, 36,220,186, 2,165,155, 28,233,169, + 41,186,248,219, 55,191,213, 17,241, 82, 90,152,104, 81, 32, 46, 0, 40,138,217, 23,159,154, 48,196, 89,111, 98,113,233,215, 19, +122,142,225,134,252,126,225,100,170, 79, 96,132, 77, 88,196, 64,231,162,163, 91,163, 0,236,111, 78, 39,227,234,238,191,132, 94, + 4,244, 28,171, 58,121,246,162,157,210,183,189, 16, 68, 0, 67,149, 22,133, 89,241,140,190, 66,173, 83,223, 61,162,180,100,126, + 89, 76,238, 71,139, 87,126,247, 78,183, 46,161,182,148, 74,255,228,177,170,125, 92,172, 49, 86,199,204,106,203,144,118,247,178, +190, 48,165,188,201,144, 21,150, 53, 43,138,139, 75, 30,165,230,203, 43,157,218,150, 59,150, 87,183,141, 33, 0,132,128, 99,185, +211, 35, 79, 69,113,113,137,148,101,205,205,222, 59, 0, 16, 39,123, 27,220,205, 80, 61, 10,104,151, 73, 4, 53,177, 87,127,120, +178, 44,129, 0,221, 68, 82, 91,228, 22,235, 33,160, 20, 28,199,128, 49, 27, 81, 89, 81, 1, 85,110, 62,212,234, 2, 84,106,202, + 33,183,115, 66, 88,120,119,216,219,219,227,222,141,243, 0,200, 49, 75,244,245,156,164, 67, 68,247,238,226,132, 76, 13, 76,102, + 14, 98,152,112,233,151, 3,122,198,108, 28,169,190,123,228, 87,139, 38, 89, 7,134,163,231,226,239,103,133,250,184,121,146,155, +105,101,216,181,249,171,234,108, 82,166,218,155,153,240, 80, 11, 85,177, 22,185,217, 89, 20, 28,107, 81,152, 69, 29,234,239,106, + 89, 28,250, 97,133,230, 19,165, 81, 3,139, 97, 24, 27,223, 54,109,241,242,148, 9,248,246,219,141, 72, 78,203,194,230,111,214, + 87, 27, 87,119, 14,255,102,137,120,221,110,219,218,252,164, 85,111,124,155,145,115,236,118,169,160,202,216,116,255, 41, 69, 43, + 63,244,125, 99,237,233, 42, 77,137,148, 53,232, 68,199,118,191,177,175, 33, 77, 0, 16, 10,136,177,102, 91, 16,132, 16,212,110, + 11,126,251,201,219, 80,200,132, 32,132, 64,103, 96,240,218,156,181,216,185,182,250,155,213, 91,239,188,247,167, 63, 60,245, 53, +107, 12, 33, 50,105,136,255,243,203,191, 79, 60,122, 57,211, 53,109,248,240,103,202,195,195,195,203,228,114, 57,108,109,109,225, +224,224, 0, 7, 7, 7, 56, 57, 57,161, 33, 26,208,244,104, 46,230, 74, 32, 16,192,193,193, 1,114,185,188, 65,195,173,185,238, +229,118,173, 3,199,244,232, 63,122,223,128,231,223, 20,156, 59,188,153,187, 17,115,108, 76, 85,193,253, 38,189, 76,245, 53, 57, +142,187, 29, 21, 21,213,105,202,148, 41,146,133,239, 68,157, 62, 29, 19,151,124,232,236, 79, 35, 75,202, 52, 62,148, 82, 56, 57, +218,101,191,244,108,167, 99,125, 35,130,178,162,163,163,185,125,251,246, 25, 8, 33,119,155,210, 4,128,162,162,130,237,209,209, +191,126,222,239,153, 72,108,222,177,111,120, 98,226,189,225,169, 41, 15,224,211, 38, 0,126, 1, 29,160, 35, 78,136,190,112, 9, +154, 18,245,118, 75,230, 89,151, 78,157, 58,121,117,233,210,197,187,172,172, 76,255,209, 71, 31, 5,177, 44,251,115, 88, 88, 88, +247,208,208,208,188,132,132,132, 70,191, 21,215,213,188,178,107, 66, 33,128, 93,109, 35, 39,253,168, 50,149,205, 2,176,210,199, +215, 23,231, 47,198,226,247,223,174,110, 44, 82,248, 46,157,244,234,235,111,183,117, 21,191, 61,234,233,182, 66,119,103, 5,246, +110, 94, 35, 60,122, 37,115, 93,102,177,121, 11,128,229,205,205,179, 46, 37, 26, 19,122,135,184,130, 97, 40, 88, 74, 33, 32, 4, +246,114, 81,131, 6, 86, 67,154, 34,163,236,141,105, 83,167,164,134,117, 14,159,253,234,196, 41,146,240,118,190,184,246,160, 20, + 0,129,171,131, 2, 42, 85, 30, 46,253,188,133, 41,205, 77,218, 40, 20,114,127,217,222,105,106,158, 57,113,251,219,215, 62,246, +244,244,156,124, 43, 62, 30, 49, 49, 49,112,117,117, 69,173,113,213,208, 22, 97,125,205,210, 82,205,111,203,214,108,233,253,246, +248, 81, 24, 17, 25,138, 11,215, 83, 97, 52,115, 48, 49,220,163, 32,215,244,216,239,164,179,198, 5, 24,223,137, 10,172,208,153, +165,153, 75, 50, 43, 46,212, 45, 34, 91, 95,147, 82,106, 36,132,156, 6,208, 19,192, 40, 66,200, 25, 74,105,247, 58,115, 32, 0, + 58, 1, 8, 5, 16, 75, 41, 77,183,104,237, 2,236,141,187,126,195,213,196,112,184,116,245,118,199, 1,189,195, 65, 57,138,235, +215,111, 96,235,182,173,250,187,119,110,173,214,170, 91,127, 66, 27, 41,110,219,216,235,105,105, 22, 97, 67,199,106, 53, 41,141, + 97,236, 60,130, 55, 94,185,124,225, 67,153,178, 59,130,135, 45,124, 62,247,246,207,207,183, 14, 25, 12,183,118,189,161,186,125, + 4, 55,127,219,123,242, 6,195,204,183,225, 4, 89,218,194,164, 70,141,253,198,230, 41,179, 81,204, 8,237,250, 12,178, 31,102, + 34,227, 65,252,206,170,226, 7, 42,187,214,193, 59,115,115,178,166,250,133,244,198,229,211,251,103,162, 17, 3,171,185,207,188, +155,180,124, 99,204,229, 43, 47,231,254,248,179,135,166,178, 74, 46, 18, 9,116, 50, 33,212, 18, 93,234, 1, 75,231, 73, 19, 19, + 77,238,237,158,142,122,117,202,162, 19,235, 62,255, 72,236,238, 36, 67,126,169, 30, 21, 58, 51, 42,170,204, 16, 18,160,189,210, + 14, 85,218, 10,252,126,114,151,153,154, 74,162,106,226, 81, 27,212,108, 21, 58,106, 57, 33,152,190,104,209, 2, 8,165, 14, 74, +255,129, 11, 77, 2,255,214,112, 70,189, 98,230, 46,128,255,192,133, 48,104,212, 35, 23, 45, 90, 16, 68, 41, 29,216, 42,116,148, +166,182, 23, 97, 99,107, 47,214,152, 48,190,191, 15,140,230,234,250, 97, 44, 91, 29,107,199,213, 84, 53,175,158, 80,243,107,167, +128,228,135, 19,177,200, 85,151,162,202, 96,134,209,196,192,200,176, 16, 8,132,112,118,118, 70,123,255,174,112,114,116, 64, 65, + 81, 49,174,199, 94,198,239,201,183,210, 41,176,188,200,165,124,143, 37,239, 17, 17,217,182,247,112,119, 35,106,141, 17, 54, 50, + 33,126,143,185, 96, 6,176,221, 18,227,170, 33,205,114, 93,217,218,249,203, 54,188,242,237,154, 37,173, 59,251, 57, 32,187, 72, +143,156,194, 42,104,244, 12, 0, 10,134,165, 48,234,203,113,255,250, 47,249, 12,116,107,155,187,198,127, 59,141,123,176,196, 98, +195,245, 59,201,178,249, 31,127,129,123, 41,233,216,186,241, 43,173,193, 10,227,170, 33,182,189,227,215,236, 55,160, 63, 83, 83, +183,244,147,204, 38, 71, 53,180, 45,200, 81,138, 99,191,231, 63,106,251, 81,187, 85, 24,151, 82,214,164, 22, 33, 68,252,197,140, +240,185,181,134,208,151,135,115,127,151,201,138,184,135, 15, 31,150,238,217,179,231,145,209, 35, 20, 10, 81,155, 61,104, 52, 26, +155,205, 42,114,118,144,134, 78, 24,218,118, 92, 99,198,149, 80, 40, 4,199,113,143,188, 87,214,110, 61,218,186, 7, 61,219, 99, +192,232,253, 3, 70,189, 37,136, 62,178,133,187, 17,243,243, 75,149, 5,247, 15, 91, 37, 2,160,180,180, 52,129, 16,242, 96,245, +234,213,225, 91,183,110,245,127,255,253,247,211,182,172,152,250, 37, 0, 20, 23, 87,183, 69,188,121,243, 38,157, 54,109,154, 65, +175,215,167,151,150,150,198, 81, 11,154, 92,235,212,247, 87,111,255,118, 85, 80,118,110,222,196,118,161, 61,225,230,215, 3,173, +219,245, 68, 73,165, 9, 87, 83,114,145,150, 24,141,123, 87, 14, 30,168, 42,244,176, 40, 32,183,150,240,240,112, 95,177, 88, 60, +146, 82, 26,104,107,107,235, 71, 41,149,138, 68,162, 49,132,144, 7, 12,195, 36,134,132,132, 68, 39, 38, 38, 90,220, 51, 44, 51, +102,187,161,109,228,164, 13, 89, 58,219,200,180,124, 93,215, 44,157,237, 77,157,204,241,221,130,232,245, 6,143,231, 86,175,131, +185, 56,225,224,206,242, 67,123, 55,175, 17,142,159,252, 30, 27, 95,226, 48, 75,100, 39, 63,187,114,146,197,153,251, 16, 16,146, +247,254,251, 31,252, 81,166,129, 84,111, 12,214,148,108,104, 54, 51, 5, 0,106,250, 41,206,147, 43, 67,191,142,159, 61,117, 89, +167,136,222, 19,158, 25, 50, 78, 96, 39,177,197,217,195,223,209,244, 59,231,127, 20, 81,246, 67, 93, 65,234, 95, 12, 12,107, 49, + 26,141,127, 50,172, 44,241, 94, 1, 64,161,107,121,228,137, 51, 49, 19,143,255,114, 97,197,208,103,251,184,126,243,209, 88,172, +218,116, 20,118, 10, 25, 40,199, 98,220, 0,223,151,238,237, 27, 60,210,199,195,198,235,167,243, 57, 23,167,175,139,159,167,211, +153,146, 27, 51, 98,106,169,169, 47,244, 59, 33,164, 61,128,145,132, 16, 14,128, 45, 0, 45,128, 74, 84,111, 72, 28,161,148, 90, +236, 85, 4,170,235, 54,101,168,245, 56,122,232, 32,110, 95,141,198,189,123,247, 53,247, 18,239,125, 69, 68,116, 93,101,126,114, +139, 60,171, 13,101, 17,178, 28, 26,206, 44,108, 2,173, 80,254,217,205,227, 95, 68,118, 24, 48,179,151,107,187,222,112,110, 83, +109, 83,150,231,196, 35,251,250,193,163, 26,149,100, 12,165,241, 77, 7, 50, 53,129,210,199,191, 3, 39,148,226, 74,204, 73, 80, +142,219, 8, 0,148,227, 54,222,186,124,114,106,207,161,111,194,197,189, 77,151,218,212, 46,107,181,229, 34,166,252,196,142,207, +126,204,200,200, 64, 82, 82, 18, 82, 82, 82, 80, 82, 82,130,189,123, 47, 89, 85,171,169, 32,245,202, 89,143,192,126,131, 95,153, + 52,251,216,232, 23, 71,219,248,250,181, 19, 4,121, 59,192,213, 94,132,251,169,185, 72,141,127,192,165,220,185,168,167, 85, 5, + 47, 20,164,252,214,168,119,164, 85,200, 24, 15,129,144,204,143,254,185,186,183,224,160, 81,111, 4,205,157,254,254, 83, 46,174, +206, 13,254, 29, 47, 41, 46,149,126,252,241,226,160,218,241,205,245, 34, 20, 8,133,154,201, 83,103,216, 10,136,224,209, 54, 32, +173,221, 35,171,253,135, 82,128, 0, 18,177,168,217,207,232,196,209,125,192,112, 28, 42,171, 76,168,212,153, 80, 86,169, 71,126, + 81, 25, 18, 18, 83,113,237,210, 41,100,164,166,104, 24,134, 57, 15,138, 67,133,174,229, 7,234, 23,214,109, 10, 14, 66, 95, 23, +103,123,100,148,234, 33,151,136,160,122,152,194,152, 24,125,139,139,172, 23,221,250, 57,207, 35,108,212,115,147,222, 89,248, 75, +191,126,125, 29, 58,119,237,110,235,230, 96, 15,137,136, 32,245,161, 26,119,111, 94,215,102, 37,223,170, 96,205, 85, 67,138,226, +127,126,236, 46, 45,255,233, 52,106, 96,153, 88,102,208,123, 11, 87,158, 97, 89, 86, 46, 18, 10,171,204,148, 27,242, 56,198,213, +191, 11, 74,185,156,119,102, 85, 7,173,215,126, 33, 48,179,156,252,173,119,222,175,170,251, 5,129,152, 89, 69,173,231,170,153, + 76, 61, 97, 97,153, 65,179,224,219,219, 59, 63,223,153,120, 16, 64,226,227,102,246, 1, 64,105,133,241,182,235,179, 63,140,210, +232, 24, 2,224, 94, 3,154,218, 1, 3, 6, 84, 79,160,198,136, 99, 89,214,226, 27,132,212, 70, 49,181,255,200, 55, 4,209, 71, +183,114,215,207, 31, 29,211, 18,227,170,150, 26,131,233, 42, 33, 36,254,195, 15, 63,140,240,240,240,240, 88,188,120,177, 77, 69, + 69,133,248,155,111,190,209, 23, 21, 21,229, 87, 84, 84,196, 82,106,121,124, 66,205, 77,115,146,220,163,227,119,228,224,247,207, + 57,187,123, 13,118,114,243, 9, 44, 45,204, 73,173, 40,206,249,133,112, 56,171, 41,184, 31,107,237, 92,111,221,186,245,176, 83, +167, 78, 71,132, 66,161, 55,203,178,110,132, 16, 59, 74,105, 41,195, 48,165, 28,199,229, 89, 99, 92,213,146, 25,179,221,208,239, + 95,219,246, 21, 87,113, 82, 19,177,217,151, 25,179,221, 0, 0,234, 51,239,235, 0,252,236,209,127,222,232,163, 87, 50,190, 74, + 40,117,152, 81, 16,243,185, 69,174,248,186,228,222, 60,208,220,165,181, 73, 0, 0, 32, 0, 73, 68, 65, 84,190,249, 81,150, 81, +165, 74,200, 1, 48,209,214, 35,104, 77,252,205,216, 37,132, 66,204,130, 89,174, 83, 63,184,241, 36,244,197, 98,177,190,123,247, +238, 13,102, 11,202,100,178, 38,235,107,213,252,161,223, 74, 34, 35,119,252, 18,125,105,226,169,179,151, 87, 60,213,171,143,171, +141, 76,137, 54,206, 38,236,248,160,219,204,232,155,133,215,158,255,224,226,183,105, 42,253, 29, 74,169,197,117,208, 0,128, 82, +154, 66, 8, 41, 7, 48,138, 82,186,153, 16, 50, 25,192, 61, 0,241, 86, 27, 2, 28, 94,237,213,171,199, 94, 66,136,136, 50,220, +170, 88,177,112,159, 62,239, 94, 78, 75, 12,138,186,116,246,115,192,228,169, 83, 59, 4,180,251, 35,139, 48,180,173, 61,198, 79, +124,187, 67, 27,255, 14,143,142, 5,249, 52,253,133,138,170,226,170,136, 71,167,103,239,159, 89,253,145,107,234,111,239,200, 93, +188,237,180, 69,153, 37,165,153, 55, 86,235, 10, 60, 86,215,239,208, 96, 45, 25, 41, 9,235,190, 95, 51,239,253,188,220,212,173, +218,130,228,234, 93,135,130,228,120,133, 71,224, 71, 69,249, 57,239, 23, 23,164,173,110,233,107,161,213,106, 85,123,246,236,113, +234,221,187,183,192,195,195, 3,133,133,133, 56,127,254, 60,199,113, 92,179,141,153,235,163, 78,190,120,158,180,107,231,178,111, + 71,249, 42,145,220,126, 24,195, 66, 73, 41,133, 72, 64,242, 76,134,242, 95, 10,157,170, 62,160,119, 98,155,254, 92,114, 44,161, + 2, 42,168,237, 45,200,113, 28,249,226,235, 93,153, 66,177,180,193, 45, 85,214,108, 84,112, 28,103,113, 47, 66,181, 48,203, 53, +204, 28,220,124, 22, 31, 5,226, 73, 82, 51, 95, 78,233,233,167,135,190, 54,152, 97, 88, 51,170,227, 19,107,127, 10, 40, 37,191, +130,176,103,138, 92, 52,177,214, 24, 85,117, 49,153, 76, 78, 16, 72, 96,175, 48, 67, 0,130,138,242,114, 89, 43, 86,122,175, 37, + 90,181,168,227,143, 38,144,200,200, 54,198,115,191,190,126,225,210,111, 99, 40,199,249,177, 20, 0, 37, 25, 70,147,254,199, 2, +135,162,157, 45,157,239,127, 27,228, 49,255,126, 52, 45,110,225,118,201,127,154, 38, 33, 68, 2,192, 13, 0, 75,235,180,191,121, + 28,205, 58,199, 27,237, 45,216, 82, 77,160,186,175,152,204, 70,241,129, 78,167,217,170, 83, 39, 91,124,211,183,228,245, 36,132, + 56,202,100,178,174,118,118,118,226,162,162,162,171,148,210, 38,191,121,254,183,190,239,117,233,251,198,118,183, 1,131,159,158, +125,246,196,181, 13, 53,219,135,143,240, 30,179,206,102,252,176,126,239,238, 58,116,124, 93,253, 44,194,127,194,218,255, 93,154, + 36, 50, 82,228, 94,234, 48,145,101,185,229, 3, 58,104,116,249,233,247,167, 93,186, 91,120,149, 82,218,104, 61, 49, 11, 63,159, +175,160,198,131, 69, 41,221,215,212, 88, 75, 53,173,165, 33, 77,247,176, 23, 62, 1,129, 5, 69, 99,107,160,184, 87, 16,127,100, +113, 83,154, 64,117, 64,186,162, 16,206,186, 34,183, 98,107, 13,171,255,151,247,157, 16, 97,167, 78,157,250, 74, 36, 18, 95,150, +101, 21, 70,163, 81, 87, 85, 85,149,145,153,153,121,133, 54,210,144,252,223, 61, 79,143, 78, 47,172, 19,139,197,179, 0,192,108, + 54,111, 80,223, 61, 50,167,169,115, 27, 27,255,183,220,143,198,140, 17,210, 31,127,180,184,113,187, 37,154,181,120,117,125,169, +204,108,102, 30,245, 30,146,136, 69,229, 57, 55, 15, 54, 28,247, 98,161, 38,207, 31,240, 6, 22,175,201,107,242,154,127,187, 38, +105,178, 89,119,203, 52, 45,133,215,228, 53, 1, 64, 25, 50,210, 7, 0, 84,137,199, 44,202, 54,110,104,252,127,235,218,255, 83, + 53,255,105, 88,213,236,153,135,135,135,231, 73, 96,137,113,197,195,243,239,196, 82,195,170,165,227,121,120, 8,234,181, 90,169, +197, 26,203,148, 16,210,160, 70, 83, 88,224,246,231, 53,121, 77, 94,147,215,228, 53,121, 77, 94,243, 31,166,217,156,246, 63,197, + 51,198,111, 17,242,154,188, 38,175,201,107,242,154,188, 38,175,249,255,174,249, 79,227, 9,181, 70,254,231, 65, 8,241, 32,132, +120, 60,233,177, 60, 79, 6, 66,136, 23, 33,196,203,202,241,158, 45,188, 22,255,254,242,240,240,240,240, 88,197,223, 30,131, 85, +123,163,106, 46, 59,207,210,113, 79,250,220,154,243, 87, 16,130,185, 53,143, 87, 81, 74, 27,173, 8,108,225,216,102,235,115, 7, + 6, 6,218,202,229,242,151, 88,150, 13,224, 56, 14,132,144, 84, 66,200,143,119,239,222,173,194,163,234, 41, 77,227,235,235,235, +103, 99, 99, 51,145, 16,210, 17, 0, 40,165,247,244,122,253,142,135, 15, 31, 90, 87,201,187, 1, 8, 33, 4,192,100,153, 76, 54, +214,201,201,169,125,105,105,105,138,209,104,252, 17,192,166,150,164,111, 43,149,202, 64, 0,175,115, 28, 39, 18, 8, 4,251, 84, + 42,149, 69,173, 7,106,230, 98,241,251, 83, 51,102, 45, 1,102,131,128, 90, 50,254,113,174, 85,143,199,253, 2,195,199, 41,241, +240,240,240,252,151, 98,149,129,229,237,237, 61,148,227,184, 87, 0, 64, 32, 16,236,203,201,201, 57,101,205,249,150,222,172, 30, +231,166, 86,239,220,117,148,210,247,173,156,163, 7, 33,152,203,113, 84, 0, 0, 2, 1,153,231,225,225,225, 34, 18,137,254, 82, +243,137, 97, 24, 57, 33,120,139,227,170,251, 37, 9, 4,100, 46, 33,100,131,181,134, 93, 96, 96,160,173,131,131,195,162,141, 27, + 55, 58,116,236,216,145, 0, 64, 92, 92,156,211,140, 25, 51, 58,116,234,212,105,217,221,187,119,155,109,121, 17, 16, 16,240, 66, +120,215,136,153,115, 62,152,231,225,238,234,102,207,176,140, 41, 55, 55, 79,185,126,221,231, 79, 5, 4, 4,124,155,150,150,102, + 81,223,192, 90, 67, 74, 36, 18,141,181,177,177,105,167,215,235, 83, 25,134, 57, 40, 20, 10, 7, 47, 95,190, 60,108,248,240,225, + 54,229,229,229, 82,134, 97,218,239,217,179,231,221,109,219,182, 13, 37,132,140,106, 42,104,185,214,211, 68, 41,173, 91,247,230, +149,171, 87,175, 14, 20,137, 68,164, 71,143, 30,114, 66,200, 12,250, 71,245,238,134,198,215,106,253,229,253, 33,132,124, 73, 41, +205,247,241,241,233,206,178,236,107, 0, 32, 20, 10,119,101,103,103,223, 32,132,180,182,145,201,102, 87,233,245, 4, 0,177,230, + 61,106,232, 90,118,118,118,187, 42, 43, 43,239,215,254,190,102,158, 45, 50,228,121,120,120,120,120,254,185, 88,101, 96, 81, 74, + 95, 75, 73, 73, 81,112, 28,135,160,160,160, 9, 0, 44, 54,176, 26,186, 89, 13, 28, 56,176,171, 92, 46,255, 83, 77,168,170,170, + 42, 41, 33, 24,216, 18,163,165,246, 26, 70,163, 65, 32, 22, 75, 33, 20, 10,222,235,210,165, 75,247,162,162,162,104,150,101,191, +203,207,207,183,186,187, 58, 33, 4,223,127,255,125, 71, 15, 15,143,191, 20,132, 83,171,213,146,145, 35,255,210,116,219,106,228, +114,249, 75,223,125,247,157, 67,112,112, 48,209,233,116, 48,155,205,240,245,245, 21, 44, 90,180,200,241,211, 79, 63, 29, 3,160, +193,246, 49,181,248,248,248,248,119,139,232, 57,115,199,246,237, 61,203, 75, 74,244, 91,215,110,188,105, 16,201,116,109, 58, 6, + 74, 62, 90,178,220,241,147,197, 11,166,248,248,248,196,103,103,103, 55, 89,213,155, 16, 34, 0,112,120,246,236,217,161, 35, 70, +140,144,106, 52, 26, 27,157, 78,215,118,207,158, 61,139, 34, 34, 34,236,186,118,237, 42,221,191,127, 63, 41, 43, 43, 3,165, 84, + 17, 28, 28, 76,199,140, 25,163,255,225,135, 31,166, 3,248,178, 17,205, 6,141,101,150,101,197,181,142, 47,134, 97,164,168,254, + 44,154, 90,224,157, 34,174,174,174, 19, 1,172, 96, 24,230,173,243,231,207,119, 5,128,254,253,251, 75, 0,220,112,112,112,232, +109, 50, 26,173,107,118,220, 8,195,135,143, 0,128,205,158,158,158, 23, 11, 11, 11,189, 9,193,120, 75,231,201,195,195,195,195, +243,191,133,181, 6,150, 4, 0, 46, 94,188, 8, 74,169,180,185,241, 13,240,232, 70, 71, 8,193,172, 89,179,224,233,249,231,176, +152,188,188, 60,196,196,156,111,129,244, 95,175, 1, 0,159,126,250,169, 99,113,113,241,243,223,127,255,253,224,214,173, 91, 47, +202,207,207,143,105,234,100, 74,169,154, 16,178,170,198, 51, 2,169, 84,150, 49,101,202,148, 27, 53,191, 11, 56,118,236,152, 98, +228,200,145, 58, 66, 72, 26, 0, 72,165, 50,119,161, 80,224, 71,171,123, 76,173,106,137, 55,195,100, 50,181, 11, 14, 14, 38,149, +149,149, 48, 26,141,200,204,204, 68, 97, 97, 33, 90,181,106, 69, 24,134,105,215,220,249, 10,133,226,205,217,115,222,111, 85, 94, + 82, 90,101,214,104, 76,118, 28,203, 56,216,136, 73, 69, 97,113, 89, 70,182,131,238,205,105, 51, 69,139,231,191,251, 38,128,133, +205, 72, 77,159, 51,103, 78,199, 30, 61,122,120, 29, 56,112,128,148,151,151, 67, 36, 18,217,133,135,135,163,123,247,238,108,116, +116, 52,241,247,247, 71, 88, 88, 24, 46, 95,190,140,223,126,251,141,116,237,218, 85,113,248,240,225, 9,104,192,192,170,111, 84, + 11,133,130,249,227,198,141, 27,170, 80, 40,204,145,145,145,120,251,237,183,161,213,106,209,177, 99,199,206,145,145,145,177, 81, + 81, 81, 98,129,128,132,177,108,181, 51,172, 33,227,186,222,251, 67, 38, 78,156,164,182,179,179,139, 82, 42,149,247, 9, 33, 34, +137, 68, 82,123,109,161,135,135, 71,171,206,157, 59, 79,115,113,113, 41, 16, 10, 4,238,180,186,201,138,197,239, 81,237,181, 70, +142, 28, 49, 15, 32, 24, 48, 96, 64,241,204,153, 51,217,123,247,238, 69, 70, 69,141,126,234,193,131,148,199,242, 92,242,240,240, +240,240,252,115,177,202,192, 34,132, 20,221,186,117,203, 83,175,215,131, 16,210,172, 55,168,110,134, 1,165, 84, 45, 20, 10,191, + 21, 8,200, 59,132, 16,132,133,117, 74, 95,191,126,125, 67, 21,205,141, 97, 97,157,210,133, 66,129, 63,165, 20,132, 8, 54,114, + 28,171,110, 72,179,129,235,169, 9, 33,171,164, 82,217, 92, 0,240,244, 84,170,143, 31, 63,110,126,233,165,151,240,197, 23, 95, + 72,231,207,159,191, 92,169, 84,142, 83,169, 84, 57,245,206,139,175,247,124,129,135,135,135,203,247,223,127,223,113,202,148, 41, + 55,114,115,115,103, 3,128,151,151,215,122, 0,157, 8, 33,105,117,142, 97,211,166, 77,221,223,124,243,205,123,106,181,122, 65, + 99,154,141,209,174, 93, 59,191,145, 35, 71,202, 0,192,108, 54, 35, 59, 59, 27,217,217,217, 40, 46, 46,134,217,252,231,214, 98, +141,105, 18, 66,130,157,157,156,109,183,174,217,120,163,149, 76, 72,220,124,148, 68,226,224, 36, 18,216,217,203,168, 80, 88,213, +198, 71,105, 79, 8, 9,110,228, 53,123,164, 41,145, 72, 38, 12, 30, 60, 88,177,127,255,126, 18, 22, 22, 6, 39, 39, 39, 92,188, +120, 17,183,110,221, 66,105,105,169,128, 97, 24, 68, 68, 68, 96,213,170, 85,240,241,241, 65,121,121, 57, 50, 51, 51,221, 36, 18, + 73,171,198, 52, 81,207,224,157, 59,119, 46,220,221,221,193,178, 44,242,242,242, 80, 89, 89, 9, 91, 91, 91, 56, 58, 58, 66,165, + 82,225,232,209,134,119, 50,235,125,150, 22,200,100,178,239,219,180,105,179,118,230,204,153,158,174,174,174, 48, 24, 12,139,138, +139,139, 49,119,238, 92, 0, 64,143, 30, 61, 58, 83, 74, 79,189,249,230,155,240,243,243,203, 45, 41, 41,121, 24, 23, 23,247,182, + 86,171,141,111, 72,179, 49,188,188,188,206, 20, 20, 20,246,237,223,191, 63,202,202,202, 76, 75,150, 44, 65,120,120, 56, 58,116, + 8,108,118,158, 79, 10, 94,147,215,228, 53,121,205,255, 5,205,127, 26, 34, 0, 32,213, 61, 60, 73,253,199,245,161,148,150,122, +121,121,121,202,229,114, 80, 74, 75,173,189, 24,203,178,211,221,220,220, 10, 22, 44, 88,208, 39, 48, 48,208, 56,125,250,244,248, +140,140,140, 15,235,142,241,243,243,251,244,235,175,191, 70,114,114,114,230,138, 21, 43, 46, 23, 21, 21, 45,179,230, 26,148,210, +249,132,144,245, 0,160, 82,169,138,142, 29, 59,214,227,194,133, 11,243,215,175, 95,239, 57,125,250,116,233,204,153, 51,167,161, +121, 79, 14, 68, 34, 81, 85, 67,219,130, 13,225,225,225, 97,106, 40, 70,171, 41, 34, 35, 35,133, 15, 31, 62,236, 40,151,203, 95, +126,247,221,119,229, 38,147, 9, 42,149, 10,217,217,217, 40, 43, 43,131, 64, 32, 64,114,114, 50, 71, 8,185,111,129, 92,165,209, +108, 54,216,250, 40,205, 35, 71, 13,238,116,247,218,173,100,185,139,139,160, 83, 68,120, 72, 82, 74,102, 28, 1,140,168,254,105, + 18, 71, 71,199,192,162,162, 34, 84, 84, 84,160, 85,171, 86,216,176, 97, 3, 60, 60, 60,160,211,233,144,144,144, 64,189,189,189, +201,165, 75,151,160, 84, 42, 81, 88, 88, 8,163,209, 8,157, 78, 87, 96, 52, 26, 27, 92, 59,165, 84, 45, 18,137,182, 10, 4,228, +109, 66, 8,218,183,239,160,254,242,203, 47,205,148, 82, 4, 7, 7, 99,244,232,209,184,120,241, 34, 18, 18, 18, 64, 41, 5,199, +113,102, 63, 63,127,181, 64, 64,220,171, 79,111,220,219,100, 48, 24,210, 60, 60, 60,222,122,239,189,247,246,124,247,221,119,206, + 11, 23, 46, 4,165, 20, 44,203,130,101, 89,112, 28, 7,142,227, 64, 41,197,225,195,135,145,154,154,250,105, 93,227,170, 57,188, +189,189,109, 88,150,157, 26, 20, 20, 52,226,149, 87, 94, 49, 73, 36, 18,232,116,186,218,215,194, 52,100,200,144,226,145, 35, 71, +184,158, 56,113,194, 42,175, 24, 15, 15, 15, 15, 79,195, 88,106,139,252,183,240,200,131,245,119, 45, 70, 40, 20,110, 58,115,230, + 76,120,191,126,253, 68, 3, 7, 14, 12,243,246,246, 14,203,201,201,137, 7, 0,111,111,239,176, 33, 67,134,132,185,187,187, 99, +195,134, 13, 58,161, 80,184,169, 37,215,168,119,179,139,245,242,242,250,232,208,161, 67,223, 79,153, 50, 5, 30, 30, 30,225, 79, +100, 33, 45, 96,233,210,165,228,171,175,190, 90, 43,151,203,163,164, 82,169, 67,171, 86,173,202,135, 14, 29,154, 98,111,111,159, +158,145,145, 1, 74, 41, 92, 92, 92, 80, 89, 89,137,228,228,100,238,204,153, 51,101,118,118,118, 63, 53,167,107, 50,153,174, 63, +204,202, 10,236,221,183,183,231,197, 27,137, 55,163, 94, 24,209, 95, 32, 18, 8, 50,178,242,174,183,114,117,177,253,237,202,229, + 10,147,201,116,189, 57, 29,173, 86,155,193, 48,140, 11,165,180, 85, 76, 76, 12,220,220,220, 80, 90, 90, 10,179,217, 12,147,201, +100,212,233,116, 54, 73, 73, 73, 48, 24, 12, 48, 24, 12,112,112,112,192,221,187,119,213, 12,195,252,218,152, 38,195, 48,147, 9, + 33,159, 80, 74,113,255,254,253, 92, 0, 80, 42,149, 29,156,156,156,246, 50, 12, 3,149, 74,133,152,152,152,241, 42,149, 42,185, +246,156,166,130,220,235,162, 86,171, 11,189,188,188,166, 79,158, 60,249,147,160,160,160, 0, 74, 41,218,183,111,143,193,131, 7, +227,228,201,147,120,240,224, 1,180, 90, 45,251,251,239,191,239, 83,169, 84,199,154, 91,127, 45,238,238,238, 97,182,182,182, 11, +102,204,152,225, 17, 26, 26, 10,189,190,186,119,172,157,157, 29,116, 58, 29, 28, 28, 28,240,244,211, 79,223, 91,182,108,153,137, + 82, 76,164,148,230, 91,170,205,195,195,195,195,211, 56,255, 4,195,170,150, 71, 6, 22,165,148, 16, 66,254,125, 85, 71,107, 80, +171,213,133,222,222,222,191,196,197,197,141, 24, 59,118, 44, 98, 98, 98, 38, 2,120, 23, 0,100, 50,217,196,177, 99,199, 34, 46, + 46, 14, 73, 73, 73,191,168,213,234,194,166,213, 44,131, 16,162, 51, 26,171, 29, 56, 54, 54, 54,114,107,206,165,148, 6,212,108, + 13,130, 82, 26,208,216,177,230, 88,186,116, 41,249,250,235,175, 31,204,158, 61,187,205,140, 25, 51, 68, 14, 14, 14, 40, 43, 43, +179,219,185,115,167,251,235,175,191,174, 92,182,108,217,165,252,252,124,108,223,190,189, 42, 41, 41, 73, 47, 20, 10,147,164, 82, +233,225,216,216, 88, 67,115,218,122,189,254,251, 79,151,125,212,127,247,158, 31,130,131,130,219, 59,159, 60,115,254,166,171,171, +131,220,207, 47, 64, 86, 94, 86,102,248,122,253, 23, 34,173, 86,187,173, 57,157,170,170,170,195,209,209,209, 47,248,248,248,180, +138,143,143,135,209,104, 4,203,178, 24, 52,104, 16, 40,165, 50, 0,156, 72, 36,194,189,123,247, 96, 50,153, 10, 30, 60,120,144, +155,154,154, 42, 3,176,178,153,215,240, 79,134,146, 64, 32, 24, 55, 98,196, 8, 48, 12,131,193,131, 7,227,200,145, 35, 99, 1, + 44,109,108,124, 83,228,230,230,166, 0, 24, 23, 18, 18, 34, 41, 43, 43,235,254,236,179,207,110,120,246,217,103,113,243,230, 77, + 92,190,124,249,101,153, 76, 86, 96, 50,153, 24, 79, 79,207,201,132, 16, 7,147,201,180,183,168,168, 40,175, 49, 61, 79, 79,207, + 62,129,129,129, 75, 87,175, 94, 69, 60, 60, 60,193,178, 12,204,102, 19, 10, 11,139,161,209,104, 16, 18, 18, 2, 95, 95, 95,172, + 92,185, 18, 0,142,240,198, 21, 15, 15, 15,207,147,227,239,178, 69,254, 14,254, 20,131,213,212,194, 60, 60, 60, 20, 21,101,197, +179,252,252,252,108, 0, 64, 38, 17, 14,112,115,115,251,172,168,168,168,210,218,139,234,116,186, 31,246,236,217,243,220,218,181, +107, 37,195,134, 13,107,231,237,237,221, 3, 0,162,162,162,218,217,219,219, 99,207,158, 61, 38,157, 78,247, 67, 75, 22,212, 16, + 28,199, 13,142,136,136, 64, 73, 73, 9, 50, 51, 51,111, 88,115,238,177, 99,199, 20, 0, 58, 53,119,172, 57,190,250,234,171, 13, +179,103,207,110,179, 96,193, 2,145, 94,175, 71, 69, 69, 5,196, 98, 49, 38, 77,154, 36,209,104, 52,126,235,215,175, 87,253,254, +251,239, 55,140, 70,227,214,212,212, 84,171,234, 86,169, 84,170, 42,165, 82, 57,115,249,167,203,247,174,254,226, 11,247,146,226, +210,100,137, 84,174, 87,200,101, 46,243,222, 95, 70,213,106,245,123,106,181,186,217, 82, 15, 0, 86,238,221,187,119,200,115,207, + 61,119,199,199,199,199,189,168,168,168,117, 69, 69, 5, 45, 41, 41, 33,168,142,165, 34, 0,112,231,206, 29,100,101,101, 49, 44, +203, 94, 2,240, 9,165,180,217,237,199, 90,188,189,189,157,123,244,232, 49,196,213,213,245,209, 86,100,215,174, 93,135,120,123, +123,127,149,147,147, 99,245,182,115, 45,229,229,229,163,158,126,250,233,247,166, 77,155, 6,179,217,140, 23, 94,120, 1, 57, 57, + 57,107, 50, 50, 50, 14, 40,149,202,241,147, 38, 77,106,229,234,234,138,247,223,127, 95,142, 58,198, 92,125, 8, 33,175,141, 27, + 55,142,200,229,182, 96, 24, 6, 50,153, 4, 50,153, 12,118,118, 14,112,113,113, 65, 86, 86, 22, 6, 12, 24,192,165,167,167, 31, + 85, 40, 20, 77,102,119,242,240,240,240,240, 88,207, 63,197,200,178, 40,200,221,219,219, 59,194,221,221,125,122, 65, 65,129, 77, +109,106, 61, 33,196,166, 75,187,118,155,148, 74,229,183, 42,149,234, 55,107, 46, 90, 90, 90, 90,225,233,233,121, 52, 54, 54,118, + 76, 84, 84, 20,206,158, 61,251, 58, 0, 68, 69, 69, 33, 54, 54, 22,233,233,233, 71, 75, 75, 75, 43,172, 94, 77, 3,120,121,121, +189,216,191,127,255,215,123,244,232,129, 99,199,142,129,101,217, 70,183,179, 26,162,110,198, 96, 67, 89,132,181,199,154,211, 17, +137, 68, 47,205,152, 49, 67,164,215,235, 65, 41,133, 68, 34, 65, 69, 69, 5,242,243,243,209,183,111, 95,201,236,217,179,219,107, +181,218, 15,178,178,178, 90, 84, 20, 84,165, 82,229, 4, 6, 6,166, 86,233,245, 98,103, 87, 23,157,189,173,148, 86,104, 52,130, + 59,119,110,230,169,213,234, 76, 75, 52, 40,165, 70, 66,200, 51,167, 79,159, 94, 44, 20, 10,199,122,121,121, 97,204,152, 49,100, +224,192,129,144, 74,165,168,170,170, 66, 89, 89, 25,142, 29, 59, 6,134, 97,252, 1,160, 85,171, 86, 30,109,219,182,253, 73, 32, + 16,168,211,211,211,223,108,238, 26, 44,203, 70,141, 26, 53, 74,100, 54,155,177,108,217, 50,124,252,241,199, 24, 58,116,168,232, +250,245,235, 81, 0,182,180,100,237,222,222,222,147, 39, 78,156, 56,121,204,152, 49,208,104, 52,136,141,141, 69,239,222,189,177, +114,229, 74,207,203,151, 47,191, 27, 17, 17, 1,145, 72,132, 11, 23, 46,128, 97,152, 70, 27,182, 70, 70, 70,138,132, 66, 97,128, +151,151, 23, 50, 51, 51,161, 80, 40,224,225,225, 1, 39, 39, 39,184,185,185, 97,237,218,181, 88,183,110,221,109,161, 80,184, 81, +165, 82,165,182,100,174, 60, 60, 60, 60, 60,255, 27,136,128,106,107,177,246, 64,221,199,206,206,206, 14, 54, 54, 54, 83, 70,140, + 24,209,231,133, 23, 94,192,224,193,131,255,116,242,134, 13, 27,236, 98, 98, 98,230,121,121,121, 61, 3, 96, 99,110,110,110,137, +165, 23,230, 56,238,240,222,189,123,135,245,234,213, 75,209,191,127,255, 0, 0,144,201,100,198,189,123,247,234, 56,142, 59,108, +237, 66,234, 23,125,244,246,246,142, 16, 10,133, 19, 71,142, 28, 25,241,198, 27,111, 32, 33, 33, 1,123,246,236,185, 23, 24, 24, +120,214, 74,221,180,102,178, 8,215,195, 2,111, 22,195, 48, 78, 14, 14, 14,168,168,168,128, 68, 34, 1,195, 48, 40, 46, 46,198, +253,251,247,225,234,234,138,242,242,114,135,182,109,219, 38, 88,187,238,186,200, 37, 92,183, 69,115, 39,183,215,235,171, 66,202, +203,203, 25,145, 72, 36,146,137,217, 38,107, 95,213,135, 82,106,240,245,245, 29,197,178,172,155,209,104, 52,123,120,120,136,207, +157, 59, 7,169, 84,138,234,236,207, 48, 72,165, 82,163,183,183,183, 6, 0, 92, 93, 93, 5, 43, 86,172, 16,207,153, 51,167,217, +185,119,235,214, 77,220,182,109,219,113,129,129,129,184,114,229, 10, 18, 19, 19,211,174, 92,185, 18,208,173, 91, 55,248,248,248, +140,235,214,173,219,142,184,184, 56,115,115, 58,117, 9, 9, 9,145,132,135,135,191, 62,102,204, 24,164,165,165, 97,197,138, 21, + 69,121,121,121,231, 79,159, 62,253,226,180,105,211,132,189,123,247, 70, 81, 81, 17,118,236,216,193,220,184,113, 99, 91,126,126, +254,174,198,180, 46, 92,184,192, 41,149, 74, 16, 66, 32, 20, 10,161,211,233,144,158,158,142,167,159,126, 26,219,182,109,195,250, +245,235,119,229,229,229,241, 94, 43, 30, 30, 30,158,127, 3,141,217, 34,255,173, 52,234,193,242,242,242, 26,238,226,226,242,214, +184,113,227,132, 65, 65, 65, 80,171,213,176,183,149, 25, 9, 33, 82, 0,176,183,181, 49,154,205,102, 76,155, 54, 13,225,225,225, + 61,230,205,155, 23,209,186,117,235, 93,249,249,249,205, 6,101, 3,128, 90,173,214,121,122,122, 30,124,231,157,119, 86,222,186, +117,211, 31, 0,174, 93,187,150,174, 82,169,230, 91,184,157,245,136, 58,197, 41,137, 66,161,184,211,190,125,251,226, 33, 67,134, + 56,143, 30, 61, 26,110,110,110,184,121,243, 38, 86,172, 88,145,160,215,235,167,199,196,196, 48,214,104, 63, 41, 68, 34, 81, 89, + 73, 73,137,187, 84, 42, 69,121,121,249, 35,227, 74,171,213,162,164,164, 4,148,210,138,152,152, 24,182,165,250,222,222,222,207, + 12, 27,242, 76,216,234,181, 95,162, 74, 87,137,107,177,199, 81, 90, 82,132, 77, 91, 14,117,242,246,246,126, 38, 39, 39,231,130, +165, 90, 12,195, 4, 28, 60,120, 16, 0, 32,149, 74,241,201, 39,159, 64,169, 84,194,193,193, 1,149,149,149,152, 60,121,178,116, +214,172, 89, 0,128,196,196, 68,216,217,217, 89,164,155,151,151,215,127,202,148, 41, 14,102,179, 25,167, 78,157, 50,176, 44, 59, +243,236,217,179,135,187,116,233, 34,235,215,175,159,195,238,221,187, 7, 0, 56,109,205,186, 25,134,145, 42, 20, 10, 41,203,178, + 56,120,240, 32,178,178,178,222, 40, 42, 42,202,247,240,240, 56,244,193, 7, 31,188,223,161, 67, 7,191, 7, 15, 30,100,105, 52, +154, 85,106,181,186, 73,239, 32,165,148, 83, 42,149, 15,207,156, 57,227, 59,102,204, 24, 72, 36, 18,148,150,150,194,222,222, 30, +171, 87,175,166, 38,147,201,162,207, 54, 15, 15, 15, 15, 15, 79, 83, 91,132,175,254,242,203, 47, 66,142,227,176,121,243,102,196, +197,197, 81, 59, 7,151,217,246,142,100,167,131,131, 3, 91, 86, 86,246,234,170, 85,171, 94, 88,188,120, 49,233,219,183, 47, 98, + 99, 99,137,191,191,127, 20,128, 71, 55,161,230,186,109,151,151,151, 95, 87,171,243,253,235, 84,109,247,151,201,108,154,204,118, +171,175,217, 64, 49,203, 46,159,126,250,105,188,187,187,187, 57, 62, 62, 30, 27, 55,110,228,226,226,226, 78, 0, 88,173, 86,171, + 27, 44, 39,240,119,116, 26,103, 24,230,224, 23, 95,124, 49,101,254,252,249,226,188,188, 60, 36, 39, 39, 67,171,213,194,108, 54, +227,228,201,147,140, 78,167,107,214,107,215,212, 60,115,114,114, 46,116,104,231,139, 29, 91,214,194,100, 50, 32, 47, 55, 11, 0, + 80, 84, 92,142,166,140,171,134, 52, 5, 2, 65,217,196,137, 19, 21, 70,163,145,140, 27, 55, 78, 92, 80, 80,128,118,237,170,235, +157, 86, 84, 84,224,196,137, 19, 8, 14,174, 46,171,117,247,238,221, 71,143,155,155,167, 66,161, 24,219,167, 79, 31,100,102,102, + 34, 33, 33,225,164, 90,173, 46,244,244,244, 60,153,149,149, 21,213,189,123,119, 28, 62,124,120, 12, 26, 49,176,154, 90,123,109, +121, 6,142,227,224,226,226,162, 5,128, 26, 99,234,157,198,214,221,152, 38,195, 48,243, 14, 31, 62, 60, 37, 54, 54,246,153,119, +223,125,151, 12, 28, 56, 16, 0,160,213,106, 89, 75,226, 13,255, 91,186,214,243,154,188, 38,175,201,107,254,167,105,254,211,104, +202,192, 98, 56,142, 67, 76, 76, 12, 14, 29, 58,196, 26,141,198, 5,121,121,121,117,107, 50,109,247,241,241,185, 20, 21, 21,181, + 38, 57, 57, 89,152,152,152, 8, 74,169, 85, 30, 24,189, 94,111, 38,228,175,199,172,209,104,136,109,219,182, 33, 63, 63,223,152, +149,149,245,179,201,100,218,211, 84,214, 88,115, 60,169, 44,194, 25, 51,102,204,250,250,235,175, 7,107, 52, 26,223,168,168, 40, +177,139,139, 11, 74, 74, 74,112,234,212, 41,230,230,205,155, 89, 51,102,204,120,183,165,115, 4, 30,121,176, 48,241,173, 57,168, +170,170,196,239, 87,142,163,172,164, 8,177,215,147, 97,173, 7, 75, 36, 18,249,154,205,102, 25,195, 48,185,148, 82,188,246,218, +107, 96, 89, 22,122,189, 30, 26,141, 6, 37, 37, 37,250, 25, 51,102, 8, 0, 64,161, 80,224,185,231,158,179,168,170,127, 64, 64, +128,175, 72, 36,194,233,211,167, 33, 20, 10,127, 2, 0,161, 80,248, 83,116,116,116,212,184,113,227,224,229,229, 21, 72,106,114, +116,173, 89, 59,199,113, 96, 24, 6, 86,158,214, 32, 5, 5, 5, 5, 0, 62, 81, 42,149, 63,206,157, 59,119, 90,143, 30, 61,194, +150, 46, 93, 10, 0,194,199, 22,231,225,225,225,225,249,159,161, 81, 3,139, 16,178,191,127,255,254, 47, 83, 74,133, 2,129, 96, + 79, 61,227, 10, 0,144,157,157,157,238,237,237,189,217,207,207,239, 81, 3,104,107, 46, 94, 83,121,253,115,129,128,204,173,126, +110,125,193, 70,250, 71,235,148,185, 0,136, 72, 36,222,115,245,234,213,133, 42,149, 42,223, 90,131,175, 33,158, 84, 22,225,146, + 37, 75, 40,128, 14, 95,125,245,213,134,195,135, 15,191, 84, 85, 85,229, 36,151,203,203, 24,134, 57, 56, 99,198,140, 89, 53,191, +111, 49, 57, 57, 57, 23,218, 5,120,159,121, 41,106,216,115, 1,126, 74, 0, 64, 90,134, 10, 69, 37,229,103,172, 49,174, 0, 32, + 51, 51,211, 0,192,224,233,233, 25,245,195, 15, 63, 28,172, 49,122,192,113,143,250, 57, 27, 68, 34, 81, 7, 0,208,104, 52,109, + 14, 31, 62,188, 87, 36, 18,229, 52, 42, 88, 67, 98, 98,226,254, 37, 75,150,140, 79, 79, 79,255, 57, 39, 39, 39,181,102,222,169, + 74,165,114,163, 74,165, 26,159,149,149,181,219, 90,227,202,104, 52,154, 13, 6, 3,195,178,172,200,100, 50, 81,163,209,248,216, + 6, 58, 0,212,212,229,154,165, 84, 42,123, 13, 30, 60,120, 34,165,180,224, 73,232,242,240,240,240,240,252,111, 64,158,196,183, +254, 70,197, 45,116, 33,214, 15, 80,111,137,166, 53, 26,150,104, 42,149,202,233,132, 16,139,188, 83, 53,215, 77, 83,169, 84, 95, + 55,162,249,184,193,122,180,177,121, 54, 68,135, 14, 29,104, 74, 74,138, 69, 65,130,205,105,122,123,123,219,136, 68,162,250, 30, + 42, 67,141, 17, 86,171, 65, 0, 8, 41,165,140, 53,243,180,134,166, 52,253,252,252,254, 21, 18, 18, 50,225,214,173, 91, 7,114, +115,115,215, 63, 9,205,150, 82, 79, 83,240,152,114, 92, 3,154, 79, 4, 94,147,215,228, 53,121,205,255, 52, 77, 11,136, 0, 80, +219,154,173,182, 78,102,171,122,143,141, 0,234,222,179,106,159, 23, 2,184, 94, 71,163,238,241,230,206, 5,128, 34, 0,119, 96, + 65, 87,148, 90,172,234, 69,248,239,226, 73,180, 25,121,210,173, 74,234, 26, 75, 79,128,191,181,158,199,131, 7, 15,158, 88,246, + 69, 78, 78,142, 30,128,190,169, 49, 53, 94,167,255,151,228, 1, 0,200,200,200,248, 38, 50, 50,114, 83,110,110,238,255,219, 28, + 26,129,107,126, 8, 15, 15, 15, 15,143, 5, 68, 0,104, 69, 8, 57, 14, 0,148,210, 17, 0, 64, 8, 57, 94,255,113,237,152,218, +113,117,199,212,106,212, 63,222,212,185, 0, 48,127,254,252,133, 43, 86,172, 80, 0, 56,111,233,132, 31,247, 27, 54, 15,207,127, + 4,255, 95,217,161, 60, 60, 60, 60, 60,127, 11,143, 12,163,250,134, 80,125,106,141,166, 58, 70, 85,163, 52,164, 83,123,141,186, +207, 87,174, 92,249, 25, 0,171, 58,193,136, 8, 33, 97,141, 76,208, 98,215, 95, 99, 26, 77,253,174, 57,125, 94,147,215,228, 53, +121, 77, 94,147,215,228, 53,255,121,154, 79,234,252, 39, 65, 67,198, 90, 61,143, 23, 8, 33,199,231,207,159,191, 16, 86,108, 15, +214,138,255,219,126, 0,132,241,154,188, 38,175,201,107,242,154,188, 38,175,201,107, 62,230,207,240,106,147,133, 14,175,251,184, +161, 99, 77, 61,110,238, 92, 11,198, 90, 60,231,255,136, 24, 44, 30, 30, 30, 30, 30, 30, 30,158, 38, 40,164,117,188, 77,180,218, +195,196,206,159, 63,127, 97,221, 56, 41, 0, 6, 0,178,250, 39,215,143,221,106, 10,107,198, 54, 5,111, 96, 53, 66,120,123,225, + 50, 95, 95,247,238, 64,141,151,175,166, 68, 1, 87, 19,175, 78,107, 76,120, 80, 14,148,163, 80,229,149,197,221, 73,163, 31, 53, + 34,215,108,172, 91,223,190,173, 93,132, 85,149,235, 88,142,237, 13, 0, 4,130,139, 98,177,211,187,209,215,114,203, 96, 97,176, +116,199,118,164,163,141, 8, 31,112, 28, 58, 19, 2, 16,130, 59,122, 6, 95,220, 75,165,247, 44, 57,191, 41, 8, 33, 36,212, 31, +147,165, 50,197, 56, 71, 39,231,246,165,197, 69, 15, 76, 38,195,143,137, 25,216,244,232,181,176,130,224,118, 36, 28, 44,230,177, + 28,196, 34, 1,214,221,203,160,151, 31,119,142, 60, 60, 60, 60, 22,242, 68, 50,124,235,241, 68,178,197,121, 26,229, 58,128,136, + 58, 70, 79, 33,128,187, 43, 86,172, 40, 93,177, 98, 69,221, 99,183, 1,116,169, 25, 87, 8,252,197, 80, 50,214, 60, 55, 54, 48, +198,104,201, 88, 75,177,202,192, 10,245, 33,211, 64,241, 49, 8, 40,128,165, 9,217,116,163, 85,231,183, 39,131,108, 68,194,173, +160, 16,234,205,236,123,148,197,197,134,198, 17, 33,250,217,136,133,107, 64,192,233, 25,246,205,132, 20,122,206,210,107,132,117, + 32, 67, 68, 68,176,155,227,168,152,229,232, 78,112, 56,110,103,198,111,177, 57,180,201, 76,184,250,248,250,186,119, 63,114, 46, +239,185,243,251,103,162,103,120,123, 80,206, 12, 80, 6,138,224, 15, 16,189,235, 53,244,236,228, 91,125,140, 51,195,174,235, 26, + 12,237,227,216,226,255, 28,125,251,182,118,145,115,220,157,141,223,239,110,237,219,190, 23,161,156, 1, 41,183, 78,189, 58,107, +238,135,253, 7,246,240,234, 28,125,173,249, 30,143, 93, 58,144,183,218,181, 13,250, 96,206,135,107, 5, 74,165,183, 29,199, 24, +153,188,236,196,110, 95,173, 93,242, 83,151, 14,100,205,237, 7,116,171, 37,115, 33,132,144, 16, 63, 76, 17,137,165, 99,228, 10, +219,246, 58,157, 38,133, 53,155,127, 12,107, 39, 26,242,197,170,245,225,207,244, 31,106,199, 25,242, 5,102,134,132, 28,248, 97, + 95,155,175,191,221, 56,140, 16,242, 60,165,212,186,140, 57, 22,179,239, 30,157,252,146, 88, 36, 36,193,195,183,216, 18, 66, 6, + 91,173, 1, 32,204,159,132, 82,224, 95,205,174, 11,248, 38, 62,157,182,168,215, 99, 71,127,242, 61, 1, 2, 1, 28, 36, 20,251, + 19, 50,248,154, 88, 60, 60,255, 52,188,188,188,206,231,230,230,246,127,194,154, 61,115,115,115,175, 62, 73,205,255,113, 26,234, +244,114,205,194,113,127, 59,214,122,176,150, 39,164,100, 59,131, 51, 33, 52, 48, 96, 25, 0,171, 12, 44, 27,145,112,231,245, 59, +234,214,160, 38,108, 89,251,206, 1,163, 25, 96, 24, 19, 88,198, 12,150, 49, 87, 63,102,205,224, 24, 61,150,172,139, 1, 24, 13, +186,135,119,216, 9,192,211,210,107,136, 33,216, 29,247,219, 25, 23,194,148,227,192,142, 21, 51,178, 84,149, 51,206, 93, 83, 21, +133,250,145, 5,137,153,216,110,205, 77,252,252,254, 89,216,243,211,201,156, 13, 91,126, 72,226, 64,225,108, 39, 11,154, 16,149, +224,179,235,167,243,217,235,183,233,147, 40, 71,225,100, 47, 11,122,253,249, 20, 95,107, 94,135,250, 8,171, 42,215,125,187,101, +123,107,223, 54,109,136, 57, 99, 57, 96, 54,192,199,119,152,240,195, 57,111,121, 46, 93,245,205, 90, 0,175, 55,117,126,112, 0, + 9, 9,236,208,241,189,157, 7,174,248,106, 43, 11,140,191,158, 88,152, 74, 40, 53,187,185, 5, 75, 62, 89,190, 90,190,104,193, +156,119,131, 3,200,213,164, 52,154,216,148, 14, 33, 68,208,209, 15, 71, 63,251,236,139,206, 3,159, 29,105,199, 26, 11,133,250, + 74, 77,224,214,237,223,127, 28, 28,218, 67,209,167,171,183,164,240,183,169, 68,167, 41,129,137,202,101, 3,186, 15,116,208, 77, + 24,107,254,126,215,190,233, 0,190,180,102,205, 44,243, 71,173, 17, 19, 3, 27, 0, 98, 88, 27, 64, 8,128, 2,255,186, 21,123, +126, 10, 83,122, 29,224, 76, 53, 70,175, 9,224,204,160,117,254,125,234,149,237, 0, 48,213, 90,125, 0, 16, 16, 60,119,238,220, +117, 79,181, 58, 47, 98,221,186,207, 22,132,248,147, 83, 32,216,125, 47, 29, 23, 90, 98, 20,242,240,240,252,103,162, 84, 42, 89, +149, 74,245, 68,187, 54,120,121,121, 13,203,205,205, 61,249, 56, 26, 74,165,242, 3, 0,111,213, 60,221,170, 82,169,190,120,220, +121, 69, 68, 68,120, 83, 74, 91, 3, 0, 33, 36,255,250,245,235,205, 22,139,230,177, 14,107, 13, 44, 27, 80, 14,248,237, 5,128, + 88,151,174, 8, 0, 20,176, 1, 17, 2,230, 74,140, 26, 49, 8,110,174,158, 0,171, 5,216, 42,128,209, 1,108,245, 79, 81, 97, + 22,192,104,129,194, 83, 96, 40,253,203, 94,106,179,152,203,129,130, 31,241, 92, 47, 95, 56,217,219, 96,214,203, 33,110,155,143, + 36,111,221,122,228,254, 32, 0,227, 44,154, 43,165,232,217,181, 61, 54,108,209, 38,253,124,190, 96, 48, 0, 12,143,116,251,165, +103,167, 54, 62,235,183,233,147, 78, 92, 40, 25, 2, 0, 67,251, 56,158,234, 17,214,218,151,179,126,151,236, 17, 44,199,246,241, +109,215,149, 48, 15, 87, 65, 32, 40, 69,101,101, 17,178,211,118,192,205, 99,176,128,225,184,126,205,157, 47, 23, 97,254,172, 15, + 86,138,180,149,106, 35,101, 10, 56, 15,187, 34,137, 24, 68,200,105, 47, 25,171,242,203, 42,103,255,107, 2,243,222,252,207,230, + 3, 24,223,148, 78,136, 63,166,175, 89,181,190, 83,239, 30, 65,238,249,151,103,145,202,114, 53,204, 84, 46,123,254,153,222,112, +110, 19,194,169,111,173, 33, 50,207, 65,112,246, 11, 64,206,221, 61,200,186,115,136,244,237, 17, 37,219,185, 87, 50, 1,141, 24, + 88, 29, 60, 73,159,193,207,245, 56, 16,208, 70,233, 73, 41, 7,142,227, 64, 41,135,215,199, 13,193,130,175, 83,161,173, 98, 48, + 98,208, 83,189, 93, 29,133,134, 21,239, 69,130, 82, 14,217,170, 98,221,175, 87,146, 6,166,230,210,102,191,249, 17,224,155, 46, +189,250,247,185,115, 45, 54,216,164, 58,142,136,209, 43,146, 8,240,104,187,145, 2,125,110, 70,111, 15, 6,182, 55, 39,213,176, + 62, 33,164,163, 31,216,135,191,175,132,119,215,201,194, 77,219,127,105, 85, 94,156,251,250,161, 31,190,125,233,219,205,155,246, +160,133, 70, 27, 15, 15,207,127, 30, 42,149,234,137, 27, 89, 87,174, 92, 81, 61,142,145, 21, 17, 17,209, 15,192, 42,149, 74, 5, + 0, 80, 42,149,171,122,246,236,185, 24, 0, 26,136,206, 40,167,148,142,191,126,253,122,131,187, 67,181,188,251,238,187, 74, 0, +126, 55,110,220,168,189,134, 95, 68, 68,132, 95, 67, 99, 21, 10, 5,219,165, 75,151,204,181,107,215,170, 90, 50,255,255,101,172, + 53,176,146,242, 47,205,238,106, 44,209, 1, 64, 82,115,131,105,189, 84, 75,189,153, 93,185, 99,253,235, 43, 67, 3,157, 81,161, + 49,226,236,165,204, 26, 15, 22, 3,150, 53, 63,250,119,112, 47, 55, 60,205, 76,197,151,251,239,131, 97,185, 21, 77,105,214,199, +196,113,175,132,247, 27,251, 3, 71,169, 84,161, 16,148,183,243,113,117,127,111, 66, 23,193,172,151, 67, 81, 84,101, 50, 10, 0, + 0, 32, 0, 73, 68, 65, 84,165,103,198,134,248,145, 95, 19, 51,232, 22,139, 52,185,191,150, 86,170, 41, 86,254,231, 99,220, 95, + 59,242, 52, 55,207, 90,186, 4,201,123,142, 30,218,215, 1,230, 18,176,218, 12, 24, 89, 14,121,121, 90,164,171, 36,112,228,254, + 92, 59,181, 49, 77,142, 67,231,214,173, 61, 21, 87,206,204,203,112,183, 47,149,184,202, 89,137,132,112, 84, 96,166, 66,163, 49, + 73,239,172, 28, 36,230, 56,116,110,232,220,186,154,114,185,253,107,125,251, 15,119,124, 24,253, 22,145,251, 12,133,187,191, 55, + 50,226,118,160, 32,254, 56,138, 11,178,136, 35, 45,133,162, 67, 0,134, 70,189,140, 85,211,187,163,162,162, 18,164, 48,205, 81, + 42,149, 57, 53,166, 73, 5, 24,191,230,243, 79, 61, 69, 34, 65,245,235, 73, 25,128,154, 1,106,134,166,210, 0,163,209, 8, 27, + 9,133,173, 13, 5,106,182, 97, 89,214,168,232, 60,112,254, 59, 0,174, 54,164, 89,151,248,116,154, 16,234, 79, 46,131, 50,193, +148,173, 2, 1, 46, 39,164,211, 71, 70, 79,152, 63, 9,237, 54,112,210,191, 8,240, 77, 83,107,111,140,176,182, 24,209, 61,216, +206, 86,206, 36, 33, 39,102, 6, 82, 89, 27,234,209,233, 45,188, 60,126,186, 98,211,214,205, 35, 9, 33,211,234,198,160, 89,250, +190, 91, 3,175,201,107,254,183,106, 58, 58, 58,250,183,109,219,118,177,217,108,238, 39,145, 72, 60, 76, 38, 19, 56,142,203,151, + 74,165,151, 50, 51, 51, 63, 41, 47, 47, 79,255, 79,152,103, 93, 78,157, 58,101,177,145,101,137,166, 88, 44,198,201,147, 39, 83, + 44, 53,178,234,107, 10, 4,130,221, 7, 15, 30,196, 15, 63,252, 0, 0, 56,127,254, 60, 58,116,232, 96,219,208,185,217,217,217, +182, 47,190,248,226,110, 0, 62, 77,105, 62,120,240,192,255,211, 79, 63,197,193,131, 7, 1, 0,187,118,237, 66, 96, 96, 96,131, +243,185,125,251,182,112,209,162, 69,254, 0,254,100, 96,253, 59,222,163,127, 26,143, 12,172,154, 30,187,205, 5,233,165,181,182, + 23,119,133,217, 12, 0,105,214, 94, 44, 49,149,126,222, 37, 80, 60, 36,250,208, 55,253,108,164, 2,124,188,238,189,236,194, 66, +205, 83, 34, 97,117,192, 32,195, 66,224,236, 36,141, 93, 49,163,139,111,105,185, 30, 63, 95,200,189,152,144, 70,173,114,133, 38, +164,210,179, 0, 30,221,240,195,218,146,192,215, 63, 60,187,127,255,231, 67, 58,207, 25,223, 25, 71, 99, 50,231, 0,216,210,184, + 66, 53,148,227, 64, 41,243, 40,168,189,230, 96,205,150,211, 31,199, 56, 74, 1,106, 6,181, 50, 62,113,233,210, 49,162,163,251, + 15, 15,177,149,137,190,154,250,246, 20, 7,115,113, 34,202,203, 88,228, 23,105,145, 85,232, 4, 86,222, 14,201, 9, 87, 89,161, + 64,208,108,252, 25, 17,160,130,154,181,246,206,114,185, 32,164,199, 59,158,229,241, 11, 43,100, 66,179,208, 41,252, 83,123,245, +221, 53, 15, 25, 67, 65, 37, 17,192,212,156,142,131,163, 99, 7,131, 38, 83, 88, 94, 86, 12,167, 78, 33, 24,250,252, 72,124,252, +102, 71,104, 52, 90, 20, 22, 95,161,237,219, 56, 18,253,205,189,248,240,181, 96, 20, 23,229,193,104, 6, 4, 21,250, 18,189, 81, + 95,217,152, 38,165,216, 52,251,189,185,175,180,241,110,101, 91,155, 44, 64, 57, 22, 93,194, 2,240,108,255,158, 56, 27,123, 5, +215,111, 38,131,163, 92, 77, 50, 1,139,156,130, 50,181,222,196,238,176,230,245,164, 28, 83,237, 9,173, 71, 77,220,149,213, 94, +166, 78,157,136,130,213,226,163,167, 66,236,223,156,247, 90, 27,123,123, 41,129, 94,206, 66,175, 55, 67,147,244, 53, 92,189, 59, + 65, 97, 99, 67,186,118,173, 18, 1,120, 34,253, 15,121,120,254, 41,140, 25, 51,198, 70,173, 86,199, 12, 31, 62, 60,100,208,160, + 65,138,126,253,250, 65,171,213,226,244,233,211,208,233,116,109,124,124,124,218,156, 57,115, 38,170,103,207,158,137, 62, 62, 62, +145, 63,254,248,163, 85, 49,178, 53,212,222,175,158,104,112,184, 84, 42, 69,108,108,236, 19,245,100, 73,165, 82, 92,187,118,205, + 98, 35,171, 46, 90,173, 86,210,186,117,107,184,186,186,130,101, 89,104,181, 90, 28, 57,114, 4, 21, 21, 21,224, 56, 14,114,185, + 28,107, 78,149, 67,127,255, 32,182,126,245, 41,202,203,203, 37,205,105, 22, 21, 21,145,160,160, 32, 24, 12, 6, 48, 12, 3,189, + 94,143,115,231,206, 61,122, 46, 18,137,176,236,160, 26,134,228,253,216,185,105, 13,138,138,138,158, 88,119,144,230,176,208, 22, +249,175, 64, 4,252,177,160,191, 99, 97, 44,203, 44,216,188, 99,127,236,130, 25,227, 48,253,181,129, 62,159,124,121,120, 80, 98, + 26,221, 9, 0, 33, 1,228,245, 9,195,218,251, 58,217,138,177,244,187, 27, 0,232,130,199,189, 94,124, 38, 77, 14,109, 71,230, + 28,142,201,138, 89,248,102, 87, 4,248, 56,116,104,215,142, 72, 83, 83,105,243,241, 62,156, 25,206,118,178,160,225,145,110,191, +128,114,112,178,147, 5,131,178,112,178,151, 5, 13,237,227,120,138,163, 20, 78,182,146, 96,218,128,167,171, 49,122,132,201,222, +150,139, 5,111,219,218, 59,249,206,158, 58, 65, 62,124,248,139,114, 91, 41, 69,113,226, 73, 84,208, 80, 24,109,109, 65,117,101, + 72,127, 16,207,158,186,112, 35, 87,230,234,249,126,179,211,100,113, 81,149,125,111,116,219,246,131,156, 10,111,124, 88,224, 63, +112,175,159, 0,172, 64, 27, 27, 85, 96,107, 31, 34,185,124, 59,158,225, 88, 92,105, 78, 71, 83, 81,145,105, 54,193, 83,111, 22, +219,167, 94,219,142,249, 19, 66, 81, 86, 90, 8,189,129, 65,153,150, 49,121,186,153,100,250,210,187, 48, 24, 25, 24, 76, 20, 98, +133, 18,103, 98,227,139, 56,198,124,170, 49,205, 84, 21,189, 5,192,174,238,177,118, 74,210,101,158,179,252, 22,216, 42,100, 61, + 84, 97,231, 79,177, 93,107,198,181, 28,202,128, 50,127,252,141,174, 13,126,111, 73,112,123,199,182,164,135, 92, 46,254,106,233, +252,225, 33,145,161,172,140,232,243, 64, 0, 40,108, 68, 48,216,176,112,180, 9, 0, 53,105,168, 78,175, 47, 75,136,255,255,107, + 17,196,195,243,159, 72,112,112,112,107, 71, 71,199,132,247,222,123,207,101,244,232,209,143,140,129, 29, 59,118, 96,253,250,245, +248,248,227,143, 97, 54,155,177,121,243,102,197, 79, 63,253,212,227,155,111,190,201,105,211,166, 77,104, 86, 86, 86,190, 5,242, + 4,128, 4,213,247, 46, 1,170,141, 43,118,233,210,165,244,227,143, 63, 70,221, 99,148,210,102,191, 84, 54,132, 84, 42,133, 84, + 42, 69, 82, 82,210, 19, 49,178,196, 98, 49, 36, 18, 9,164, 82, 41,238,223,191,111,181,145,197, 48,140, 48, 39, 39, 7, 21, 21, + 21,120,118,228, 72,172, 95,185, 18,253,250,245,195,160, 65,131, 64, 41, 69,116,116, 52,158,118, 78,134,203,200,103,112,239,222, + 61,152,205,102,139,118,166,114,114,114, 80, 92, 92,140, 33, 35, 71, 98,203,183,223,162, 91,183,110, 8, 10, 10, 2, 0,196,196, +196, 96,160, 87, 38,236,130, 6, 33, 57, 57,185,133, 43,183,158,191,211, 22,249, 59,248,219,203, 52,196,167,210,223, 67,252,201, +241,151,135, 71,140, 24, 57, 32, 4, 91,246,255,250,105, 72, 8,217, 15, 0,174,142,178,229,175, 13, 15, 64, 98, 90, 41,162,175, +169,142, 39,166,211,223,159,196, 53, 57, 22,110,174, 78, 10, 64, 32,133,206,200, 50, 14, 14,205,151, 61,224, 64,161,232, 56, 31, + 19, 70,223,243,233,217,201,199,135, 82,166, 38, 99,112, 45, 94,127, 62,197, 55, 34,212,195,183,122,203,203, 12,135,167,247, 2, + 92,131, 30,219, 63,209, 55,220,230,204,251, 51,103,244, 26, 62,242,101,185, 68,225, 10,174, 42, 27,230,146, 59, 40, 78, 63, 15, +131, 60, 28,133, 57, 25,216,127,244,231,242,164,116,117,133, 80, 40, 56, 43,114,244,152,123,238, 92,122,163,222,161, 90,244, 66, +172,248,120,241,130,225,251,247,236,115,148, 43,251,226,193,209, 97,101, 82,161, 89,230,238, 21,136, 42,198,158, 93,189,237,184, +147, 22, 88,217,156,142, 78, 91,113,232, 92,244, 47,227,218,123,246,177,207,136, 63, 14,157,206, 8,131, 25, 8,235,214, 31, 44, + 71,165, 68, 64, 56, 7,161,144,168,213, 37, 32,102, 78,125,233,102, 70,222,229,235,105, 66,131,160,121,237,186,136, 36,194,153, + 35, 7,117, 1,216, 42, 60,255,108, 24,214,109,139,158, 1, 96,146, 53, 26,127,129,154, 65,217, 42, 80,160, 79,168, 63,249,142, + 2,125,226, 78,173, 11,238, 62,116, 14, 96,133, 7, 43,204,159, 12,237, 20,172,220,190,238,211, 5, 46, 46,238, 62, 66,176, 85, + 32, 76, 5,229, 74,126,135, 72,251, 0, 14,222,195,193, 58,246,198,166,111, 87, 87,114, 28,221,223,146, 18, 21, 60, 60,255,100, +244,122,253,161,149, 43, 87,186,140, 24, 81,157,237, 94, 89, 89,137, 43, 87,174, 96,235,214,173,176,181,253,227,239, 36,165, 20, +195,134, 13, 3,165,212,101,201,146, 37,135, 0,244,106, 76,179,119,239,222, 35,215,174, 93,251, 48, 34, 34,226, 1,170,107, 28, + 73, 0, 8, 1,208,115,231,206, 9, 0,160, 71,143, 30,236,181,107,215, 56, 0,116,252,248,241, 98, 59, 59,187, 14,149,149,149, + 23,172,157,127,173,129, 37,149, 74,145,155,155,251,216, 70,150, 88, 44,126,164, 39,145, 72,144,155,155,107,149,145,197, 48,140, +232,196,137, 19,184,121,243, 38,150,118,237,138, 89,158,158,112,117,117,197,133, 11, 23, 64, 41,133,173,173, 45, 74, 74, 74,176, +127,255,126,244,239,223, 31, 12,195, 52,235,193, 2,128, 35, 71,142, 32, 46, 46, 14,203,186,119,199, 12, 91, 91, 56, 57, 57, 33, + 38, 38, 6, 0, 32,147,201,144,155,155,139,115,231,206, 33, 50, 50,178,165, 75,255,159,199, 98, 3, 43,146, 16, 17,241, 65,107, +179,169, 10,148,161, 0,129, 50, 36,132, 72, 18, 19,173,255,150, 32, 0, 62,220,176,237,248,240,117, 11,158, 39,147, 95,234,170, +252,228,155,243,211, 0,224,205,177,129, 94, 10,153, 8, 27,246, 39, 82, 1,240,161,181,186, 13, 17, 18, 66, 36, 2, 1,166, 61, +219, 59, 8,170, 34, 35,210, 30,150,255,154,152, 78, 45,218,210,137,222, 57, 1,187, 14,197,100,175,223,254,231,140,193,237, 71, +226, 30,174,217,169, 79,162,160,112,146,139,131, 39, 61,255,116,179, 89,132, 61,194,100,111,207,155, 51,167,215,168, 87,231,202, +205, 57,135, 97,200, 60, 1,176, 58,232,180, 4, 21, 76,123,228, 61,204,193,210,117,251,178, 13,102,193, 43, 55, 18,245, 86, 25, +150,201,201,180, 50, 36,128,140, 94,249,249,226,179,159, 45, 93, 98, 39,203,141,174, 16,139,160, 21,184,246, 19, 47, 95,188, 81, +164, 41, 55,190,152,154, 69, 53,205,233, 24, 4, 88,249,249,154, 47,135,191, 53, 97,116, 82,160, 79,164, 43,155,159,230,170, 43, + 47, 47,216,123, 42,174, 53,170,191, 57, 18, 0, 72,205, 40, 70, 97,137,150, 97, 25,243, 5,123, 19, 62, 73,200,177,192, 27, 88, + 67,128, 7,105, 53,122,120,231, 87, 91, 57, 73, 81,165, 45,133,187,179, 4,131,251,180,123, 53,192,131,204, 75, 83, 83,171,106, +140,212,165,118,139, 48,118,235,128, 96,112,166, 96,202,153, 97,204,218,109,189, 14, 48,103,206,184, 54,142, 46,182, 70, 1, 97, +181,128,216, 25,144,182, 34, 2,185, 31,132,114, 95,100,166,220, 96,230,188, 51,174, 56, 51, 51,255,123, 55,138,199,206,228,225, +225,249,167,145,149,149,245,218,194,133, 11, 47,247,236,217,211,195,205,205, 13, 97, 97, 97, 56,118,236, 24,222,127,255, 15,103, +124,120,120, 56, 0,160,184,184, 24,159,127,254,121,190, 74,165,122,173, 41,205,132,132,132,164,221,187,119,247,233,220,185,179, + 81, 34,145,148,162,198,200,202,202,202, 18,105,181, 90, 98, 52, 26,169,173,173, 45, 39,147,201,204, 99,198,140, 49, 93,187,118, +173,131, 86,171,205,106,201,252,107,141,161,238,221,187,223, 45, 43, 43, 43, 39,132, 60,118, 9,135, 90,227, 42, 56, 56,184,149, +209,104,100, 1,148,180,164,132, 3,195, 48,232,222,189, 59,206, 93,188,129, 83, 23,239,162,178, 48, 13,227, 95, 28,140,224,224, + 96,156, 62,125,186,165,211,171,214, 60,119, 25, 49, 55,238, 67,157,149,136, 9, 47,191,128,160,160, 32,156, 59,103,113,133, 36, +158, 6, 16, 1, 64,115, 46,185,142,109, 72, 23,143, 48,233,174, 15,159,111, 23, 34, 10,251, 24, 68, 36,199,225,237,199,122, 47, +248,236,187,164, 78, 94,100,252, 93, 11,178,189,234, 82, 19,152,188,239,118, 98,240,171,207,247,243,193,150, 31, 21, 31, 1,192, +216,103,253,113, 45,177, 16, 87,227, 11,246, 37,180,176,102, 81, 93, 58,121, 16, 5,108,177,239,243,185,163, 34,219,120,183,198, +214, 31, 46,131, 80, 28,178,228, 92, 74, 41,237,217,217, 23,235,183,215,207, 24,244,244, 93,179, 83,159,116,250,183,138,161, 0, +240, 92, 47,219, 83, 17, 29, 93,124,155,243,100,216,136, 5,147,135, 62,255,154,156, 81,159, 6, 87,242, 35,196, 82, 9,170,180, + 44,242, 10, 12,168, 82,200,241,235,165, 11, 85,149, 58,102,206,157, 20,166, 69, 94,187,196, 52,154, 22, 30, 72, 30,106,171,170, + 60,237, 92,218,105, 5, 4,180,210, 40,166,113,137,185,218,132, 44,122,223, 18,141,212, 84,106,236,229, 77,250,110,218,249,227, + 98,177, 88, 58, 86, 40, 4,113,119,178,109,245,221,134,101,176,183,183, 3,101, 52,160,134, 34,140,126,243,179,194,187, 15, 76, +254, 0, 16, 24, 72,236,250,117,145,236, 20, 9, 72,206,175, 55,141,139,154,187, 6, 17, 98,234,248,231,187,136, 57,179, 22, 51, +151, 28,192,166,229,207, 99,194,200,142,226, 19,191, 38, 79, 5,240, 73, 75,214, 14, 0,224,170,183, 8,123, 77,190,152, 68,128, +203, 20,232,115,227,248,242, 96,192,242,157,199,110,221,136, 88, 36, 34, 29, 59,122, 25,197,108,206,126, 16, 27, 47, 42,116,139, + 4,108, 59, 16,106, 23,134,175, 55, 44,174,220,178,117,235, 25,142, 96,105, 82, 70,211, 37, 47,120,120,254, 87,161,148,166, 57, + 57, 57, 13, 25, 54,108, 88,244,233,211,167, 93,194,194,170,219,205,197,197,197, 1,192,163,173, 40,181, 90,141, 87, 94,121,165, + 40, 47, 47,111, 8,165,180,201,152, 94,141, 70,147,126,248,240, 97,143,170,170,170,136, 69,139, 22,169,219,182,109,171, 49,155, +205, 84,163,209,128, 97, 24,218,170, 85, 43,113,183,110,221, 72,104,104,104, 85,116,116,180,107,118,118,182, 6, 64,102, 75,230, +255,214, 91,111,225,167,159,126, 2, 0, 60,137,186, 88, 18,137, 4,195,134, 13,243,186,114,229, 74,110,141,102,139,235, 98, 81, + 74,113,231,206, 29, 92, 74, 97, 33,181,117, 70,102, 82, 5,206,253,124, 20,227, 39, 79, 1,195,180, 60, 90,225,246,237,219,216, +127,238, 54, 60,188,218,161,220,112, 7, 71,142, 28,193,180,105,211, 30, 75,179, 37,252,147,182, 7,129, 58, 30,172,134, 22,212, +174, 29,145,202,140, 88, 50,248, 41,175,185, 99, 6,182, 19, 50, 58, 21, 56,142,131, 16,128,155,189, 0,219,182,108,242,255,241, +240,201,216, 78,190,194, 47, 97,228, 62,188,171,166, 58,139,175, 44,192,146,181, 59,126, 27,187,123,217, 51,162,105, 47, 5,187, + 0,128, 68, 44,192,134,125, 9, 12, 4, 88,242, 56,139,234,229, 77,108, 42, 37,152,220,218,207,241,163, 5,239, 12,119,137,236, + 25,136, 11,177,241,248,114, 79,236, 69,169, 51,118, 89,170, 67, 57,230, 79, 1,237,213,199, 26,112,126, 53,144, 89, 88, 31,150, +163,173,165, 10, 55,232, 51, 79, 66, 36,149,129, 97, 76, 40, 84,235,144,145,207,193, 70, 41,198,181, 59, 89, 85, 47,188, 58,250, +132,165,115,171, 15, 33,132,244, 9,183, 81, 46, 89,190,218,187,170, 74,195, 84,148, 21, 49, 34, 73,172, 72, 33,151, 89, 18,215, +240,136,216, 28,170,127, 38, 92,210, 13,148, 19,202,132, 84,183, 96,206, 68,219,220,228,211,104,223, 74, 5, 2, 10,185,114, 56, +236,109,133,146,190, 93, 36, 15, 1,192,207,213, 81,250,249, 39,239, 59,206,158,183,244, 82,115,218, 33, 33, 68,210, 41,176,245, +236,176,246, 46,184,112,245, 30, 46, 94,207, 74,184,248,123,114,104,255, 30, 74, 4,250, 59,205, 10, 9, 33, 43, 91,226, 17, 5, +240,104,139,176, 54,139, 48,204,159,132, 70,140, 88,212, 96,246, 96, 99,248,221, 4,151,236, 79, 65,136, 16, 20, 4,208,231,130, +201,222, 13,161,255, 12,122,232,232,242,170,173, 91,182, 46, 75,204,176, 46,233,130,135,231,127,145,178,178,178, 59, 10,133, 98, +112,151, 46, 93,118,204,156, 57,211,254,213, 87, 95, 85,190,245,214, 91, 2, 0, 80,171,213,220,250,245,235, 85, 95,125,245, 85, +121, 81, 81,209, 36,147,201,116,183, 57,189,154,192,156, 43,219,182,109, 43,188,124,249,114,232, 83, 79, 61,165,136,136,136,224, +220,221,221, 37, 58,157,142,205,206,206,174,138,141,141,101, 83, 82, 82, 28,203,202,202, 82, 0,164,182,100,251, 94,169, 84, 66, + 32, 16,124,226,227,227,179, 56, 55, 55,183,211,147,136,193,106,223,190,189, 18, 64,138,151,151, 87,123,107,183, 7,235, 35, 18, +137, 80, 90, 90, 10, 77, 78, 42,116,197, 69, 8, 18,234, 16,238,226, 6,123,123,251,199, 50,134,202,203,203, 33, 50,168,145,118, + 39, 11,101,249,153, 8,105,211, 29,182,182,182, 48, 24, 12, 45,214,108, 41,255, 20,227, 10,104, 98,139, 48,212,135, 76,115,150, + 98,253,196, 49,254, 18,255, 54,222, 48, 22,198,225, 86,106, 37, 22,125,223, 35, 81, 40,177, 55, 76,127,253,217,110,253, 7,181, +194, 51,145, 61, 72,219, 54, 78,179, 86,174,220,248,175, 80, 95,242,126,194, 67,186,193,146, 11, 39,164,210,244,142,254,100,235, +249,235,185, 83,189, 91, 85,129,130,226,252,141, 60,220, 77, 45,221,122, 47,157, 54,152,186,219,232, 92,219,147, 65, 34, 34, 56, + 64, 89,106,227,104,111,171, 9,239, 23,236, 54,168, 79,103,193,144,254, 17,144,136,128,203, 87,111, 99,206,242, 67,191,115, 82, + 58, 60, 46,206,178,237, 65, 80,238, 47,134, 83,117,198, 32,243,167,140, 65, 74, 41, 5,199,160,185,122,147, 66, 1,201,215,170, +111,180,150,218,135,192, 84,252, 43,212,234, 74, 36,164,153, 80, 9, 31,148,230,228,128, 82,246,225,146, 37, 63,182,248,127,136, +155,155,155,187,127,135,192,118, 95,109, 57, 8,147,161, 28,105,137,219, 81, 89,145,143,229, 43,126,110,231,237,237,253, 76, 78, + 78,206, 5, 75,181, 8, 72, 96,244,175,251,220, 65, 1,161, 72,134, 19,155,127, 64,145, 72, 14, 55, 71, 9, 56,125, 1, 38,191, + 61,222,113,216,240,241,142, 0,240, 48,245, 54,124, 93, 44,179,171, 77,101,136, 26, 59, 41,200, 9,172, 14,187,142,220,214, 11, + 8,134,236,250, 57, 33,181,127, 55, 39,155,177,207,182,113,254,100, 83,217,139, 0,246,181,100,253,148, 99,255,148, 69,216,146, +236,193, 31, 41,101, 59,250,147,212,125,231, 10,237,198, 12,235, 42,151,136, 8,161,250, 92,112, 68, 66, 54,124,179, 77, 35, 37, +216,220,146,185,241,240,252, 47,162,211,233,226, 8, 33,157, 62,248,224,131, 87, 22, 46, 92,216,207,214,214,214, 31, 0,180, 90, +109,186,217,108,190, 8, 96, 31,165,244,175, 53,110, 26,161,198, 96, 74, 33,132,164,167,166,166,122,236,218,181,203, 9,128, 77, +205,175,245, 0,202, 0,168,173,209,172, 79,173, 49,165, 84, 42, 23,183, 84,163, 62,181,198,148,151,151, 87,251,150,156, 47, 20, + 10, 89,129,160,186,179,143, 76, 38,195,165, 75,151, 48,180, 79, 95,220, 62,151,133, 96, 15, 31,244, 31, 63, 17, 71,206,159,135, + 80, 40,172, 29,111,213,125, 68, 36, 18,225,242,229,203,120,105, 68, 36,142, 28, 57,130,128,238, 93, 48, 99,198, 12,252,242,203, + 47, 16,137,248,110,122,143, 67,227,175, 30,197, 39,103, 15,124, 38, 1,103,198,193,189,171,112,246,186,206,120, 63, 23, 31, 6, +229, 96,253, 65,104,184,130,162,159,166,158,136, 73,251,226,141, 73, 35, 20, 3,158,121, 22, 3,250,245, 23,133,118,121,230, 35, + 0,143, 12, 44, 66, 72, 88, 83,181, 50, 88, 51,150,109,254, 41,105,202,129,147,201, 4,140, 6,227,158,143,160,172, 25,203,154, +154,112, 67,154,142, 10,187, 3,151, 47,197, 58,131,173, 68,126,198,121,155,214, 30,254, 0, 53,227,193,131,100,124,189,237, 8, + 23, 19,123,127,183, 81,136,153,169,137, 84,107,169, 38, 0,128, 99,224,104, 39,253, 75,198,160,147, 92, 28,252, 92, 47,219, 83, +148, 82,106,175, 16, 7, 55, 84, 27,171,190,166,222,204,109,222,189,115,203,234, 55,223,124,203,182,216,144,139,228,236, 4,232, +133, 94, 16, 42,218, 33,225,198,233,170, 42, 51,215,108,233,136,166, 94,207,162,162,162,130,184, 27, 37, 56,176, 99, 5,204,102, + 3, 10,242,170,109,212, 60,117, 5, 28, 28,188, 98,173,209, 52, 49, 92,121,212,232,201, 18,185, 13,228,227,199, 14,151,166,170, + 12,232, 26,100, 15, 0,160,166, 34, 36,197, 92, 66,127,247,234, 96,200,212, 36, 33,124,159, 82, 90, 52, 79,123,123,201,204,161, +125,189,144,158,149,143, 75,113,185, 59,211,114,169, 42,192,139,236, 76,125, 88, 54,117, 84,127, 95,172,219,157, 56, 3,141, 24, + 88,141,105,214,100, 11,246, 1, 53,131, 50,122, 80,160, 79,152, 63, 9,181, 36,115,176, 33, 77,145, 0,175,174, 61,144,185,232, + 96, 76,225,168,185,111,245,117,232,221,107,168, 20,156,153,106,116, 6,115, 98, 58,173,104,137,230,227,194,107,242,154,255,173, +154, 53,198,206,238,154,159, 39,169,169, 66,189,186, 76,143,163, 9,252,121, 59, 80,165, 82, 9,149, 74, 37,219, 92,144,187, 5, +154, 87,235, 60, 62, 89,227,189,106,210,139,213,128,166,170,103,207,158, 46, 35, 71,142, 4,195, 48, 72, 73, 73, 65, 86, 86, 22, + 70,190, 49, 9,206,206,206,184,154,152,136,148,148, 20, 44, 94,188, 24, 12,195,224,218,181,107,127,169,200, 94, 95, 83, 44, 22, +155,186,116,233, 34,121,225,133, 23,192, 48, 12,210,210,210,144,153,153,137, 25, 51,102,192,209,209, 17,137,137,137, 72, 75, 75, +195,226,197,139, 97, 48, 24,144,158,158,254,151,157,133,127,199,103,233,159, 70,227, 6, 22, 1, 11,206,140,242,235, 75,240,221, +113,152, 76, 12,130, 19,178,105, 70,157, 17, 27, 59,123,147, 99,119, 18,146,210,227,174, 14,144,162,226, 46, 0, 88,245,205, 33, + 57,155,230, 69, 4,137, 52, 96, 52, 14, 40, 60,133,140, 92, 77,101,114, 54,205,179,118, 17,148, 99, 9, 88, 29, 80,126, 3, 71, +142,199, 64,102,115, 11,215,111, 38,177, 87,226,146, 15, 8, 40,150, 37,102,208, 7,214,107, 82,216,117, 91,143,137,207,167, 86, +103, 12, 82, 51, 40,199,192,177,247, 62, 76,122,254,105,223,136, 96, 39, 95,112,102, 80,106,134,243,192,243,192, 34,155, 38,245, +174,197, 27,182,244, 13,183,121, 81, 83, 81,212,243,217,254,145,182,173, 2,199,162,252, 65, 34, 18,110,158,173,186,113, 55, 57, +246, 90,188,161, 89, 3,171, 41,188,188,188,250, 13, 28, 24,132,113, 19, 23,192,100, 40, 67, 90,194, 54,104, 42,242,113,233, 55, + 59, 36, 61,172,232, 5,224,130,165, 90, 87,226,205,161, 0,208,167,147,228,161,131,212,216,250,181,151, 70, 64, 38,210,131, 51, +107, 64, 76, 69, 72, 45, 49,149,191,184, 36,135, 5, 0,133, 13, 17,217,138,202, 29, 44,209, 13, 9,112,237,160,144,152,177,235, +104, 2, 56, 82,221,102,137, 35,216,184,235, 88,234,212,101,211,187, 34, 36,192,185, 75,237, 6,188,165,115,165,192,191,110,252, +188, 52, 88,159,240, 17, 40,103,198,229, 47,156,131,251,126, 80,250, 47,180,176,194,250,221, 84,154, 11, 96,106,199, 54,100,211, +172, 79,127,249,168,123, 88, 98,159,247,166,142,114, 0,225, 27,163,243,240,240,252,253,232,116,186, 41,243,230,205,219, 36, 20, + 10, 91, 1, 32,148, 82, 24, 12, 6,209,214,173, 91,197, 12,195, 8,132, 66, 33,107, 99, 99,195,196,197,197,153, 57,142, 43, 52, +153, 76, 83,154,211, 52, 26,141,169, 95,127,253,117, 59,179,217,252, 40,227,208, 96, 48, 96,247,238,221, 48, 24, 12,144,201,100, +176,179,179, 67, 90, 90, 26, 8, 33, 38,150,101, 83,255,173,139,252,135,210,212, 77, 99,105,239,168, 37, 75, 64, 65, 64,240,113, + 61,227, 10, 0,112, 39,135,170, 66,125,200,156,208,240,103,170, 99,166, 8,150, 90, 59, 1, 61,203,190, 20,209, 45,112, 63, 0, + 24, 56,118,130,181,231, 3, 64,133,190,106,108,120,143, 94, 7, 56, 74, 69, 12, 75,183, 10, 4,248, 73, 15,220, 75, 77,111, 62, +115,174, 49, 84,121,101,113, 67,251, 56,210,218, 22, 56,143,182, 5,107,202, 49, 80, 74,255,104, 67,183,200, 6, 69,197,134,102, +163,169, 47,221,210, 63,215, 35, 76,246,246,233, 11, 55, 39,179, 28,109, 45, 20,144,124,189,153,219,252,184,198, 21, 0,228,228, +228, 92, 8, 9, 32,103,238,244,241,120,206,173,166,204,106, 81, 25, 80, 84,142, 51, 57, 57,154, 11, 45,209, 44,173, 50,143, 90, +248,197,209,159,165, 34,161, 8,160,224,184,234,245,234, 77,108, 73,173, 17,214,249,255,216, 59,239,240, 40,170,182,141,223,103, +182,101,147,108,122,221,146,132, 36, 36, 33,161,134,208, 67, 7, 33,161,136, 32,138,136, 40,136, 40,160,188,190,160,130, 2, 34, + 2, 2,162,136, 8, 34,160, 47,160, 72, 47, 74,239, 77, 58,129,132, 18, 66, 11,105,155,205,166,144,190,125,103,206,247, 71,216, + 24, 32,101, 3, 40,202, 55,191,235,218,107,179, 83,238,125,102,119, 51,115,207,115,206,115, 78, 56, 81,124,248,163,117,157, 64, + 64,210,235,210, 59,115, 73,243,205,144, 15, 15,124,112,229,102,225,143,119,178, 42,238,124,238,100,209,203, 97, 74, 50,237, 86, +102,233, 7,151,111, 22,126, 85,223,126, 19, 4, 88,210,250,249,233, 15, 45,171,143, 70,117, 36,167,211, 68, 0, 3,155, 4,147, +231,134,140,249,110, 34, 33,245,187, 91,230,225,225,249,119, 99,203, 98, 49, 12,243,232,197, 55, 15, 96,203, 98, 1,184, 89,143, +125,206, 0,104,246,164, 98, 0,128,132,132,132, 2, 0, 5, 79, 82,147,231, 97,200, 95, 57,140,207,179,144,226,126, 66,154,204, + 99,202,113,213,104,214, 72,120,120, 56,189,121,243,166, 93,157, 5,255,165,159, 39,175,201,107,242,154,188,230,227,104,254, 21, +231,228,199,237,156, 77,171,209,124, 34,252, 91, 52,159, 53,248,102,143,191,135, 58, 7, 54,125,146,220,184,113,227,153,169,194, +224,225,225,225,249, 11,248, 43,206,201,252,160,195, 60,247,241,184, 46,158,135,135,135,135,135,135,135,135,231, 1, 8,128,166, +213,173,168, 79,234,143, 16, 82,173, 70,109,212,165,207,107,242,154,188, 38,175,201,107,242,154,188,230,179,167, 89,151,246,179, +210,244,200,247,193,226, 53,121, 77, 94,147,215,228, 53,121, 77, 94,243,169,107, 62,107,240, 77,132, 60, 60, 60, 60, 60, 60, 60, + 60, 79, 24,222, 96,241,240,240,240,240,240,240,240, 60, 97,120,131,197,195,195,195,195,195,195,195,243,132,225, 13, 22, 15, 15, + 15, 15, 15, 15, 15,207, 19,134, 55, 88, 60, 60, 60, 60, 60, 60, 60, 60, 79,152,191,180,138,144,135,135,135,135,135,135,135,231, +255, 35, 12, 0, 16, 66,232,189, 71,151,167, 28, 15, 15, 15, 15, 15, 15, 15,207,255, 67,158, 53, 47, 82, 57, 85, 14,165,148, 16, + 66, 40, 30,127, 62, 37, 30, 30, 30, 30, 30, 30, 30,158,122,243, 44,121,145,202, 62, 88,247, 14,168,235, 83,140,133,135,135,135, +135,135,135,231,255, 49,207,146, 23,185, 47,131,245, 52, 3,225,225,225,225,225,225,225,249,255,205,179,228, 69,248, 42, 66, 30, + 30, 30, 30, 30, 30, 30,158, 39, 12, 95, 69,200,195,195,195,195,195,195,195,243,132,225, 51, 88, 60, 60, 60, 60, 60, 60, 60, 60, + 79,152,191,212, 96, 17, 66,154,242,154,188, 38,175,201,107,242,154,188, 38,175,201,107,254,127,131,207, 96,241,240,240,240,240, +240,240,240, 60, 97,120,131,197,195,195,195,195,195,195,195,243,132,225, 13, 22, 15, 15, 15, 15, 15, 15, 15,207, 19,134, 55, 88, + 60, 60, 60, 60, 60, 60, 60, 60, 79, 24,222, 96,241,240,240,240,240,240,240,240, 60, 97, 8,128,106, 43, 1, 40,165,151,237, 22, +121,132,106,130,186,244,121, 77, 94,147,215,228, 53,121, 77, 94,147,215,124,246, 52,235,210,174,143,255,248, 39,243,151, 14, 52, + 74, 8,105,250,164, 63, 40, 94,147,215,228, 53,121, 77, 94,147,215,228, 53,159, 61,205,103, 13,190,137,144,135,135,135,135,135, +135,135,231, 9,243,212, 12, 22, 33,132, 33,132, 8,239, 61, 24, 66,200, 99, 79,240,248, 87,104,242,240,240,252, 51, 33, 15,240, +180,227,225,225,249, 55,115,254,252,121,154,159,159, 79,229,114,249, 53, 66,200,152,167, 29,207,179,128,240, 73,138, 53,242,117, +108,215, 32,192,167,239,238,243,233, 83,106,219,142, 16,194, 40,149,202,185, 62, 62, 62, 99,116, 58,157, 1, 0,101, 24,134, 70, + 69, 69,129, 16, 2,219,185,146,101,217,188,107,215,174,217,213,254,251, 36, 53, 35, 34, 34,206, 51, 12,163,170,122,206,174,235, +111,142,227,178,174, 94,189,218,170,174, 56,229,114,121,111,134, 97, 38,215,181, 29,199,113,115, 53, 26,205,222,218,182,105,214, +172,217, 5,103,103,103, 63,134, 97,106,188,184, 84,109, 2,182, 90,173, 84,167,211,105,175, 92,185,210,178,174,247,127, 16,165, + 82, 57,133, 82,218, 18,192, 42,141, 70,179,139, 82,202,214, 87,227, 1,189, 23, 41,165, 83, 1,128, 16, 50, 75,173, 86,111,174, +207,254,225,225,225,231,197, 98,177, 74, 32, 16,144,123, 26,247,173,127,240, 53,199,113,212,100, 50,101,165,164,164,212,249, 29, +241,252,243, 33,132,144,128,128,128,104, 63, 63,191, 96,189, 94,207, 2, 64,147, 38, 77,168, 64, 32,184,111, 59,179,217,108,190, +118,237,218,174,167, 18, 36, 15,207,191,136,253,251,247, 99,244,232,209,184,116,233, 82,163, 93,187,118,125,175, 80, 40,198,105, + 52,154,110,148,210,188,167, 29,219,191,149, 39,102,176,194,228,178, 70,254,222, 94, 59,230,205,158, 1, 0, 53, 26, 44, 66, 8, + 35,151,203,231,117,234,212,105,228,154, 53,107,156,183,110,221,234, 28, 28, 28, 12,177, 88, 12,129, 64, 0,129, 64, 0,134, 97, + 32, 16, 8, 48, 96,192, 0,187,238, 74, 31,212, 60,120,240,160,115, 68, 68, 68,229, 69,150, 82, 90,105,178,250,244,233, 83,167, + 38,195, 48,170, 11, 23, 46,248, 74,165,210,202,253, 57,142,187,239, 65, 41,173,124,176, 44,139, 78,157, 58,217, 19, 42, 24,134, +153,156,156,156,220,185,188,188,252, 62, 13,219,123,216,254,238,220,185, 51, 0,212,106,176, 24,134, 81,156, 56,126,208,151,152, + 83, 1,235, 93, 80,129, 39, 32, 9, 1, 24,135,106,183,191,123,247, 46,186,117,235, 38,168,118,101, 29,248,248,248, 12, 63,114, +228, 72,216,157, 59,119, 94,248,226,139, 47, 10, 20, 10,197,247, 0,126,202,206,206,206,124, 20, 61, 74,233,172,212,212,212,112, + 74, 41, 66, 67, 67,103, 2,168,151,193, 18, 8, 4,170,253,251,247,251, 74, 36,146,202,239,185,166,103,150,101, 97, 54,155, 17, + 23, 23,103,125,148, 88,121,254, 89,216,204, 85,124,124,124,208,210,165, 75,133,201,201,201,194,168,168, 40,176, 44, 91,249,224, + 56,174, 94,255,151, 60, 60,255, 31, 9, 26,244,227,247,156,213,124, 47, 91,229, 14, 96, 57, 74, 75, 75, 49,106,212, 40,252,246, +219,111, 81,237,218,181,155, 11, 96,228,211,140,241,223,204, 19, 49, 88, 13,149,142, 74, 23, 7,231,125,203,126,248,142, 88, 74, +181, 30, 53,109, 71, 8, 97,252,253,253,103,117,234,212,233,181, 53,107,214,120, 16, 66,112,240,189, 55,225,110, 54, 64,241,233, +151,240,240,246,129,105,242,104,184,176, 86, 52, 59,148,104,215,123, 87,167,153,146,146,130,187,119,239,194,199,199, 7, 78, 78, + 78,112,112,112,128, 88, 44,134, 68, 34,177, 87, 19, 82,169, 20,251,247,239,135, 80, 40,172,124, 8, 4,130,106, 95,251,249,249, +217,247, 65,161, 34, 51, 21, 25, 25,217,252,250,245,235,174,133,133,133,104,223,190,125, 9, 33, 36,201,182,158, 82,218, 60, 41, + 41,201,213, 94, 61, 98, 78, 69, 89,198, 15,160,133,155, 1,247, 65, 96, 93,135,192,128,144,251, 46, 50, 54, 83,200,178,143,158, +116,202,203,203, 51, 31, 59,118, 12,209,209,209, 88,191,126,189, 87, 97, 97,225,167,171, 86,173,154,170, 80, 40,166,100,103,103, +207,125, 4, 73, 79, 0, 72, 73, 73, 1,128, 26,127, 51,181, 33,145, 72,112,250,244,105, 80, 74, 43, 77, 57,195, 48, 96, 24, 6, +219,111,122,163,220,196, 64,167,189,140,241,253,131, 16, 28, 28,252, 80, 86,139,231,223, 7, 33,132,200,229,242,230,189,122,245, + 10, 88,186,116,169, 24, 0, 46, 95,190, 12,141, 70, 3, 95, 95, 95, 72,165, 82,136, 68, 34, 8, 4, 2,136,197,226,167, 29, 46, + 15,207, 63, 26,206,106, 30,211,162, 85,135,202,215,171,247, 47,130,209,173, 37,212,159,125,134,133, 11, 23, 34, 60, 60,188,205, + 83, 12,239, 95,207, 99, 27,172,166,129,110,238, 14, 68,180,239,199,165, 11, 36, 48,151,123,164,156, 59,129, 38,241,111, 3,184, +191,212,242, 94, 31, 9,198,207,207,111,236,218,181,107, 93,109, 23,187, 8,194,194, 29,102, 52,104,220, 24, 78,110,238,208, 90, +205,160, 22, 51, 36, 98,113,181, 23, 68,123, 52, 25,134,129, 72, 36,186,239, 33,145, 72, 80, 53,219, 81,147,102, 85,108, 38,106, +255,254,253,176, 88, 44, 24, 60,120,112,181,102,171, 58,106,210,212,104, 52,123,149, 74,101, 18,165,180, 51,199,113, 32,132, 36, +169,213,234, 46,182,245,114,185,188,119,139, 22, 45, 38,115, 28,247,144,105,121, 80,147, 82, 10, 88, 11, 64,239,174,133, 75,251, +124,148,156,242, 6,113,238, 9, 22, 65,184,124, 51, 7, 7,207,167, 33,255,110, 25, 98, 34,124,209,171,125, 40, 56,142,179, 59, +206,170, 40, 20,138,240,198,141, 27, 71, 90, 44, 22, 28, 59,118, 12, 44,203,162, 89,179,102, 24, 49, 98, 4,179,104,209,162, 17, + 0,238,139,213,206,202,146,196,132,132,132,158, 57, 57, 57, 0,112,169,174,141,171,211, 36,132,224,231,159,127,134,193, 96,120, +104,123,143, 46, 95,224,131, 65, 65, 24,241,222,106,124,121,125, 35,150, 44, 89,114, 95,115,105, 61,226,172, 23,188,230, 95,175, + 41,151,203, 67,150, 47, 95, 46,170,186, 76, 44, 22, 87,102,193,171,102,195, 31,108, 50,252, 59,227,228, 53,121,205,127,186, 38, + 35, 20, 47, 77, 60,127,114, 12, 0,148, 36,111,193,127,134,118, 64,105,233, 77,188,243,206, 52,168,213,106,220,184,113, 35,225, +239,140,243, 89,163,210, 29, 16, 66, 40,165,180, 94,183,248, 42, 21,145,186,176,142, 59,190,255,102,174,155,139,204,201,231,252, +190,109, 72, 79,207,169,117, 31,157, 78,103,250,237,183,223,176,111,220, 72,132, 19, 43, 60, 62,157, 15, 95,133, 2,197, 35, 7, +160,204, 98, 70,195,221,103,225, 32,147, 65,226, 44,179, 59,227,160,211,233, 76,135, 15, 31,198,149, 43, 87, 32, 20, 10, 33,147, +201,224,236,236, 12, 7, 7,135, 74, 99,101, 59, 1,219,171, 73, 41,133, 80, 40,196,229,203,151,145,158,158, 14,119,119,119,156, + 56,113, 2, 61,123,246,188,207, 92, 9, 4,130,251,250,120,217,139,173,105,241, 65,238,245,187,170,181,105,240, 62, 68,222,128, +231,107, 40, 61,173, 0, 60,134,193, 66,221,192, 81, 14, 23,111, 22,224,237, 97,125, 1, 0, 99,167,254,128,158,109,131, 43,155, + 32,235,131, 82,169,124,187,121,243,230, 11,198,140, 25,195, 56, 59, 59,195,104, 52,194,104, 52, 34, 37, 37, 5, 94, 94, 94,112, +114,114,122,164, 52, 1,165,244,142, 66,161,128, 84, 42, 5,165,244,206,163,104, 16, 66,176, 97,195,134,106,215,189,177,224, 42, +132, 21,221,179,176,116,233, 82, 88,173, 86,212,247,247,205,243,207, 68,167,211,177,201,201,201,162,196,196, 68, 8, 4, 2,184, +186,186,194,201,201, 9, 98,177, 24, 14, 14, 14,149,198,138,207, 96,241,240,212, 78,250,150, 81, 99, 9, 33, 51, 3, 3, 3,143, +254, 48,103, 78, 88,143, 30, 61, 0, 0, 7, 15, 30,196,255,134, 14,197,103,192,240, 69,132,104,198, 83,250,241,223, 21,211,163, +120,145,127, 42, 66,224,207, 3,170,207,129, 17, 66, 72, 67, 63,151,141, 51, 62,121, 55, 56, 48, 36,212,255,204,206, 13, 72, 77, + 85, 67,171, 45,172,118,251,123,111,192, 17, 66,184,144,144, 16,184, 90, 12,112,163, 38,248,202, 21,112,241,244, 66,161,229, 94, +230,202,217, 25, 18,103,153, 93, 39,199,170,154,141, 27, 55,134, 86,171,133, 88, 44,134, 76, 38,131,139,139, 75,165,193,178,153, + 43,123, 79,184,132, 16,112, 28, 7,161, 80,136,164,164, 36,116,236,216, 17, 1, 1, 1, 88,191,126, 61,122,247,238,253, 80, 22, +235, 81,154,158,108,125,174,108,216, 58,191,219,211,185,253, 62, 36, 13, 97,117,121, 25,140, 83, 15,152,169, 43,140, 84,126,175, + 73,144, 98,231, 89, 45,174,167,231,223,215, 92,104, 47, 42,149, 74, 33,149, 74, 87,207,156, 57,179,123,171, 86,173, 96, 54,155, + 1, 0, 78, 78, 78, 48, 26,141, 16,137, 68, 48,155,205,208,235,245,106,251,143,250,201, 97,251,204,247,237,219, 7, 66, 72,165, +209,181, 53, 21,150,107, 50, 49, 98,252, 26, 72,132, 64, 82, 82, 18, 34, 35, 35,159, 70,152, 60,127, 17, 17, 17, 17,200,205,205, +133, 64, 32,128,139,139, 11,155,116,163, 79, 0, 0, 32, 0, 73, 68, 65, 84,156,157,157,209,168, 81, 35,100,102,102,222,151,197, +226,225,225,169, 29,129, 64, 48,119,219,182,109, 97, 82,169, 20,179,103,207,134,139,139, 11, 78,207,156,137,255,137,197,112, 4, +176,212,108,158, 12,224,111, 49, 88,143,226, 69,254,201, 60,114, 19,161, 74,165,250,186, 93,108,219,206, 33,141, 91, 75,207,236, +217,130,155, 55,210,145,159, 95, 12, 10,232,107,217,141, 18, 66,168, 72, 36,130,239, 71,159, 35,176, 89, 51,232, 70,191,136, 66, +139, 25,161, 59, 79,195, 65, 38,195,181,231, 90,130,154, 76,232,148,172,181,215,184, 80, 66, 8, 5, 0,111,111,111,136,197, 98, + 72,165, 82, 72,165,210,202,190, 87, 85, 31,246,154, 33,142,227, 80, 82, 82,130, 59,119,238, 96,244,232,209,112,114,114, 2, 33, + 4, 90,173, 22, 65, 65, 65, 16, 8, 4, 80,171,213, 56,116,232, 16, 66, 66, 66, 32,145, 72,234,245, 99,168,210,169,189,185, 82, +169, 60, 74, 8,105,126,254,252,121,215, 86,173, 90, 1,245,201, 96, 17, 49,140, 8, 2, 11, 21, 56,250,103, 95, 43,139,245,254, +254,220, 54,147,101, 15,254,254,254, 81, 77,155, 54, 61,245,221,119,139, 92,124,125,253,192,113, 44, 44, 22, 11,138,139, 75,160, +211,233, 16, 24, 24, 8,103,103,103, 58,127,254,124,194,178,236,210,122, 28,246, 19,197,102,168,108, 25, 68, 91,255, 43,134, 97, + 48,254,249, 64, 20, 22,186, 64, 32,168,120,109,239,177,243,252,179,161,148,210,166, 77,155, 82,129, 64, 0, 95, 95,223, 74, 51, + 37, 18, 85,180, 24,250,249,249,161,164,164, 4, 2,129,160,114, 25, 15, 15, 79,205,132,135,135,199, 40,149, 74,188,255,254,251, + 48,172, 93,139, 50, 0,253, 0,108,187,119, 83,237, 2, 76,124,170, 1,254,139,121, 36,131,165, 82,169,222,109,209,162,197,168, + 21,171,214,200,230, 77,251,168,164, 48,249,146,192,164, 55, 59, 27, 45, 22,211, 45, 77,193,162,154,246,163,148,210,200,200,200, +138,187, 78,119, 15, 56,185,186,193,248, 64,230,138,154, 76,224,204, 38,136,237, 60, 57,218, 52, 41,165,112,116,116,132, 68, 34, +169, 54,115, 85,159, 12, 22, 0, 20, 21, 21, 97,195,134, 13,104,211,166, 13,156,156,156, 32, 16, 8,208,188,121,115, 36, 39, 39, + 35, 52, 52, 20, 0,176,109,219, 54, 12, 26, 52, 8, 55,111,222, 68, 84, 84,148,204,110,113,252,217, 68,184,111,223, 62, 87, 74, +105,103, 74, 41,242,242, 30,173, 26,150,101, 89,148,151,151, 99,223,190,125,200,206,206,134,191,191, 63,138,139, 93,224,170,168, + 48, 21, 85,171, 31,237,129, 16,242,209,155,111,190,233, 34,147,201,192,178, 86,136, 68,162, 74,227, 42, 18,137,145,146,146,130, +161, 67,135, 22,167,165,165,125,152,157,157,189,182,190,241, 18, 66,136, 74, 37,247, 43, 46, 46, 68,105, 73, 17, 4, 2, 4, 16, + 66, 4,143, 50,244, 3,195, 48,149,207,182, 7, 33, 4, 98,145, 0,254,126, 62,149, 29,223,239,101,239,254,245,119, 68, 60, 21, +176, 44,139,115,231,206,225,216,177, 99,248,227,143, 63,112,231,206,159,173,204,174,174,174,216,191,127, 63,186,117,235,246, 20, + 35,228,225,249,119,112,227,198,141,179,233,233,233,145,211,166, 77,195, 74,165, 18, 46, 46, 46,152, 48,125,250, 41,171,213,218, +161,238,189,121,106, 67, 8, 0,245, 73,201,169, 84,170,129,114,185,124,222,154, 53,107, 28,179,179,179,161, 8,111,226,186,125, +211, 6,163,175, 76,172,215,220, 45,124,253,162,186,172,206,114,123,134, 97, 96,157, 57, 1, 5, 86, 19,130,183,159,132,131, 76, +134,235,189, 91,129,154, 76,232,144,144, 6, 7,153, 12, 66,169, 99,189, 15,166,186,140, 85,213,135,237, 98, 92, 23, 38,147,201, +189,103,207,158,232,209,163, 7, 94,124,241,197,202,166,192,232,232,104,172, 91,183, 14, 3, 7, 14, 68, 98, 98, 34, 20, 10, 5, + 26, 53,106,132, 70,141, 26,225,240,225,195,245,138,213,150,193,234,221,187,119, 9, 33, 36,137, 82,218,252,236,217,179,118, 87, + 15,218, 52,128, 10, 3,181,111,223, 62,244,237,219, 23,161,161,161,184,112,225, 2,246,127, 62, 31, 66,153, 55,192,248,130,114, +180, 50,179,101, 79, 31, 44,177, 88,220, 49, 36, 36, 4, 57, 57, 90, 56, 56, 56,192,195,195, 29,142,142,142,112,112,144, 98,206, +156, 57,220,242,229,203, 23, 19, 66, 62,207,206,206,190, 91,175,131, 6,160, 82,169, 26,182,104,209,226,231,215,135, 15,107,235, +229,229, 13, 63, 63, 57, 38, 79,250, 56,110,237,186,245, 87,148, 74,229, 43,106,181,186,206, 14,239, 54, 8, 33, 48,153, 76, 16, + 8, 4,216,118,221, 7,229, 38,130,146,172, 4,252,231,249,160, 74,179,101,107,234,181, 13,127,193,243,108,192,178,108,229,119, + 92, 29, 53,117,112,231,225,225,185, 31,150,101, 39, 15, 24, 48,160,245,236,217,179,163, 38, 76,152, 0, 0, 80, 40, 20,237, 21, + 10,197,213,191,123, 28,172,103,169,121, 16,168,146,193,170,235,192,186,118,237,186,194, 98,177,188,224,236,236,236, 49,106,212, + 40,115,126,126, 62,182,110,221,138,255,253,239,127,186,114,139,224,124, 81,129,117,248,237,236,178,172,186,222,208,214,148, 35, +182, 88, 64,173,127,102,174, 56,163,177, 50,147, 37,114,116,170,215, 65, 16, 66, 64, 41,173,214, 84,217, 50, 89,245, 57,217, 58, + 56, 56, 20,253,241,199, 31,190, 89, 89, 89,247,117,104, 15, 14, 14, 6, 0,156, 61,123, 22,167, 79,159,198, 43,175,188, 2,161, + 80, 8,177, 88,140,164,164,164,210,250,196,108, 51, 60,182, 42, 66,185, 92,222,187,109,219,182,213, 86, 15,218,163,149,145,145, +129,208,208, 80, 24,141, 70,184,187,187,163, 64,115, 7, 25,119, 82,161, 51, 94, 71,136,191, 20,185,185,185,112,112,168,126,124, +172, 7, 97, 89,150,181, 93,184,140, 70, 35, 52,154, 28, 40, 20, 10,252,242,203, 26,172, 88,177,226,149,236,236,236,141,245,141, +145, 16, 34,148,203,229, 19,251,245,235, 55,235,133, 23, 94, 16,234,202,203, 64,185, 10,195, 35,150,136,241,237,183,223, 54, 58, +116,232,208, 69,165, 82,249,133, 84, 42,157,117,235,214, 45, 83, 29,122, 0,128,149, 43, 87, 2, 0,156,218, 77,199,228,151, 26, +224,181,177,171,241,245,215, 91,238, 59, 86,129, 64,128, 25, 51,102,212, 55,100,158,127, 56, 61,123,246, 68,239,222,189, 43,155, + 9,189,189,189, 97, 54,155, 97,181, 90,121,115,197,195, 99, 7, 65,131,126,252, 94,213,127,201, 24, 0,152,248,237, 65, 76,153, +249, 13,134,189,216, 27, 35, 70,140,120,106,227, 96, 61, 75, 38,235,190, 38,194, 90,204,213, 27, 30, 30, 30, 67, 71,142, 28,233, +120,246,236, 89,204,156, 57, 83,184,127,255,126,243,185,115,231,172, 44,203, 78, 84,171,213,203,234,243,166, 12,195, 32,100,205, + 78, 40,252,253,113, 35,174,245,125,153,171,163,205, 85,224,140, 70, 60,151, 90, 92,239,131,177, 53,101,217,140,149,205, 92,213, + 52,148, 66,109,216,238,128, 31, 28,247,234,157,119,222,193,138, 21, 43,208,161, 67, 7,132,133,133, 65, 40, 20, 86, 54, 75,213, +135, 7, 59,185,215,187,122,176, 10, 44,203, 34, 48, 48, 16,151, 46, 93,130,155,155, 27,126,254,249,103, 4,168,148, 24,222, 43, + 24, 38,147, 9, 22,139, 5,229,229,229,182, 12, 86,157,129,114, 28,119,101,235,214,173,161, 47,189,244, 18, 21, 10,133,196,104, + 52, 2, 0, 22, 45, 90,148,155,157,157, 93,175, 1, 65,129,138, 81,219, 67, 66, 66,126,122,229,149, 87, 92, 26, 53,106, 4,173, + 86,139, 51,103, 78,225,227,143, 39,159, 17,137,132,134,184,248, 62, 93,163,162,154, 96,236,216,177, 76,116,116,244,212,143, 63, +254,120, 98, 64, 64,192,136,204,204,204,234, 75, 4,239, 65, 8,193,186,117,235, 0, 0,111,126,123, 13, 38,147, 5, 64, 69,213, +160,191,191,255,125,219,222,186,117,139,175, 34,124,134, 96, 89,246,190,106, 65,155,161,226,205, 21, 15,143,253,220, 55, 14, 86, +171, 14, 56,177,101, 62,214, 93, 15,132,122,230,204,167, 58, 14,214,179,114,174,174,211,121,180,109,219,214,197,104, 52,126,251, +223,255,254,215,177,188,188, 28,249,249,249, 40, 40, 40,192,153, 51,103,246, 91, 44,150,255,104,181,218, 26, 75,236, 73, 53,179, +109,219, 42,190, 60,125,124,225, 32,115, 1, 53,153, 42, 51, 87, 98, 39,103,112, 70, 35, 56,179, 9,168,161, 57,167, 38, 77, 66, +200, 67, 89, 43,123,205,213,131,154,182,140, 88,117,131,138, 6, 4, 4,224,139, 47,190,120,104,152, 6,123,226, 4, 42,170, 5, + 9, 33,205, 1, 84,118,114,151,203,229,189,237,169, 28,172, 73,147,227, 56,116,233,210, 5,251,247,239,199,165, 75,151,192, 48, + 12,226,227,227, 65, 8,129,155,155, 27,132, 66, 97,165,153,179, 21, 4,212,166,201,178,236,107,255,251,223,255, 62,216,189,123, +247, 71,239,189,247,158, 99,231,206,157,109,253,188,242, 40,165,117,118,228,122, 80,147,227,184,207,146,146,146, 92,172, 86, 43, +102,207,158,141,243,231,207,151,223,186,117,235,191, 26,141,230, 39, 74, 41,149,203,229,195,110,223,190,179,228,211, 79, 63,117, +233,222,189, 59,206,158, 61, 43, 13, 8, 8,248, 20,192,134,154, 52,109,156, 57,115, 6, 2,129, 0,214,187,233, 24, 59,121, 61, +100, 78, 34,164,164,164,160,160,160,160,242,183, 86, 83, 83, 82, 77,154,143, 3,175,249,247,105, 86, 53, 87, 34,145, 8,122,189, +222, 46,115,245, 44, 28, 59,175,201,107, 62, 9,205,199, 25, 7,235,175,136,243, 89,163, 78,247,161,211,233,102, 70, 68, 68, 72, +146,147,147,113,235,214, 45, 92,191,126, 29, 44,203,222,204,202,202,234,247,168,111,202, 48, 12,220,220,220, 32,145, 72,208,254, +146, 26, 18,177, 24, 18,231,138, 62,226,207,165, 22, 3,148,130,145,216,215,156, 85, 85,243,193, 49,175, 30,167,138,136,101,217, +202, 17,218,109, 6,174,186,106,181,250,102,174, 24,134,153,124,234,212, 41,215,244,244,116, 80, 74,177,101,203, 22,215, 23, 95, +124,113, 50, 30, 33,123, 69, 41, 69, 65, 65, 1, 56,142,131, 72, 36, 66,247,238,221,209,178,101, 75,148,149,149,129,101,217,202, +230, 75,177, 88, 92,175, 42, 66,173, 86,171, 3, 48,195,199,199,103,217,212,169, 83,103, 52,109,218,116,212,251,239,191,207,224, + 17,139, 34, 8, 33, 86,171,213,138,141, 27, 55, 98,243,230,205,165,148,210,136,236,236,236,202, 1,211, 52, 26,205, 26, 63, 63, +191,253, 3, 7, 14,188,121,251,246,109,215,226,226, 98, 0,168,115, 90, 27,157, 78,135,176,176, 48,176, 44,139,121, 99, 85, 40, + 45,109, 6,150,101, 97,181, 90,225,228,228,116,223, 20, 68,252, 40,238,207, 30, 85,205, 21,223,231,138,135,167,254,164,111, 25, + 53, 22,192, 88, 66,200, 43,211,167, 79, 95, 59,118,236, 88,112, 28,135, 35, 71,142, 96,201,164, 73,248,140,101,135, 47, 34, 68, + 55,158,210,177, 79, 59,214,127, 35, 53, 94, 48,219,180,105,211,160,188,188,252,103,139,197, 18,205,113,156,228,232,209,163, 48, + 24, 12, 72, 78, 78,214,115, 28,183,233, 49,222, 51, 61, 62, 62,158,121,112,190,184,234, 96, 89,214,222,206,117,233, 61,123,246, +124, 98,154, 28,199,101, 85,157,195,172, 38,221,170,175,173, 86,107,157,253,207,238,105,207,109,223,190,253, 67,203,236,217,183, + 26,173,212, 30, 61,122,152,171, 46,171,218,145,187,186, 78,221, 44,203,218, 21, 39, 0,228,229,229,105, 1,188, 45,151,203, 23, +142, 24, 49, 98, 58,128,155,143, 18, 39, 33,100, 86, 84, 84,212,212,138, 63,201, 76,181, 90,253,208,104,180, 90,173, 54, 79,169, + 84,142, 10, 8, 8,168,156, 0,186, 54, 77,142,227, 82,159,123,238, 57,115,109,223, 9,128,251, 50, 87, 28,199,217,125,236, 60, +255, 92, 8, 33,101, 15,254, 15,213, 4,165,244,225, 97,254,121,120,120,238,195, 65, 44, 30, 62,110,220, 56,252,242,203, 47,216, +186,112, 33,122,103,101, 97,157, 88, 12, 71,177, 24, 75,205,230, 49, 0,120,131,245, 8,212,104,176, 74, 75, 75,191,184,123,247, +110,187,146,146, 18,107,106,106,170,158, 16, 98, 37,132,232, 57,142,251,156,227,184, 31, 30,245, 13,175, 94,189,106,223,153,241, + 41,106, 94,189,122,181,213,147,212,171,202,227,244,181,122,144,171, 87,175,254, 45,101,180, 26,141, 38, 5,192,144, 71,221, 95, +173, 86,111,134, 29,147, 57,219,187, 29, 0, 92,187,118,141, 47, 33,254,127,202,165, 75,151, 14, 61,237, 24,120,120,158, 37, 18, + 47, 93,234, 13, 0,241,241,241,208, 79,172, 24,246,106,245,159,227, 96, 61,181,177, 14, 31,160, 53, 0,159,123,127,231, 3, 72, + 1, 16, 3,192, 17,128, 17, 64, 25, 0,239, 42,219, 23,220, 91,103, 91,127, 12,128,229,239, 10, 22, 0,106, 28,183, 32, 37, 37, +229,149,188,188, 60,161,201,100,114, 96, 89,214,201,106,181,186, 90, 44, 22,127,150,101,151, 82,190,222,157,135,135,135,135,135, +231,153, 32, 34, 34,130,120,123,123,147,136,136, 8, 50,149,210,251, 30,255,160,230, 65, 31, 66,200, 14, 66,200,142,143, 63,254, +184, 27,128, 14, 31,127,252,113,155,123,175, 91, 1,240,182,173, 39,132,236, 0,224,245,192,250, 22,127,119,192,246, 13, 12,197, +195,195,195,195,195,195,195,243,148,161,148,246,155, 59,119,238, 23, 0, 4,115,231,206,253,162,202,107, 80, 74,251, 85,125,126, + 96,189, 79,205,170,127, 13, 4, 64,211,234, 86,212,167, 58,128, 16, 82,173, 70,109,212,165,207,107,242,154,188, 38,175,201,107, +242,154,188,230,179,167, 89,151,118, 13,251,247, 37,132,236,160,148,246,171,250, 92,101,159,126,247, 52,119, 84,253,251,129,245, + 59,235,115, 28,143,141,173,210,234,175,120, 0,104,202,107,242,154,188, 38,175,201,107,242,154,188, 38,175,249,152,143,190, 21, +150,165,230,231,154,254,174,178,236,239,140,183,150,178,251, 77,155, 4,234, 40,184, 74, 28,157,196, 0, 96,210,235,204,202,100, +148, 96,240,224,122,207, 23,199,195,195,195,195,195,195,195,243,184, 16, 66,118, 76,158, 60,249,147,167, 29,135, 61, 84,111,176, + 54,109, 18,228,183,114,242, 22, 26, 11, 35, 88,171, 57, 18, 0,132, 12,189,150,223,202,227,186,247,166, 77,249, 79,218,100,197, +199,199,127, 66, 41,245, 19,137, 68, 59,253,253,253,143, 44, 91,182,236,111,237,233,207, 83, 73,157,125,242, 98, 98, 98, 60,140, + 70,227,124,142,227,186,223,155,231,239,136, 88, 44,254,224,226,197,139,119, 1,212, 56,208, 86, 80, 80,208,218,208,208,208, 8, + 90, 1, 0,220, 55, 46,151,109,153,109,125, 70, 70,198,141,204,204,204, 87,237, 13, 60, 48, 48, 48, 88, 42,149,190, 65, 8,137, +186,167,147,108, 48, 24, 86,101,100,100,212, 56, 16,238,179,138, 66,161,112,164,148,190, 32, 18,137, 94,247,244,244,108,147,151, +151,247,153, 90,173,254,230, 81,180, 8, 33, 66, 0, 19,221,221,221, 95,113,119,119, 15,185,123,247,238,237,146,146,146, 13, 0, +190,166,148,214,249,127, 58,243, 93,101,187,206,125,186, 76, 59,182,235,232,204,105,139,213,167, 31, 92, 63,227, 3,133, 87,247, + 30,177,211,118,239, 60,249,249, 23,139,213,245,154,219,146, 16,194,224,207,223, 44,135,123, 63,159,250,104,252,157, 40, 20,138, +104, 0,147, 88,150, 21, 49, 12,243,141, 70,163,249,227,105,199, 84, 23,145,145,145, 31, 73, 36,146, 49, 12,195,220,214,106,181, + 35,179,179,179,159,200, 80, 39,132, 16, 38, 40, 40,200, 37, 61, 61,189,148,218, 49,120, 49, 79, 5,237,219,183,215,154,205,102, +223,218,182, 17,139,197,185,167, 78,157,242,251,187, 98,250, 27,201,167,247,154,254, 0,228, 2, 16,220,123,109,186,247,172,173, +178, 76, 91,195,250,191,149,106, 13,150, 58, 10,174, 66, 99, 97, 68,129,246,234,144, 60,205,197,151, 1,192, 71, 30,189,193,203, +175,241,122,117,148,196,220, 58,114,144, 76,228, 36,252, 94, 32, 16, 69, 27, 76, 70,111,145, 80,148,111,182, 90, 46, 50, 38, 58, + 86,115,109, 75,134, 61,111,220,191,127,255, 8, 0,110, 45, 91,182, 60,103, 50,153,218,124,243,205, 55,242,205,155, 55, 55, 79, + 72, 72, 24,250,252,243,207,111,167,148,238,221,190,125,187,190, 62, 7, 67,186,118, 21,250, 22,121, 14, 23, 8,133,253, 1, 52, +167, 20, 0, 17, 36,113, 22,243,206, 92,143,130, 85,244,200,145, 58, 7,175,172,137,246, 49, 94, 17,132, 51,127, 40, 18,208, 78, + 22,150, 28,167,140,120,254,169,132,130,235,246,238, 31, 24,168,232, 41, 17,146, 31, 1,192,100,165,163, 50, 50,178, 15, 60,206, +118,213,161, 80, 40,158, 3,176,134, 16, 34, 2,176,148,101,217,109, 90,173, 54,145, 82,250,200,199, 93,149,198,141, 27,251, 16, + 66,146, 22, 44, 88,224,213,182,109, 91, 1,199,113, 56,116,232,208,171, 83,167, 78,237,221,164, 73,147,166, 87,174, 92,201,173, +105,223,208,208,208,136,131, 7, 15,182,216,179,103, 15, 58,116,232, 0,142,227,192,113, 28,220,221,221,241,251,239,191,163,109, +219,182,149,203,252,252,252,208,165, 75, 23,187,227, 10, 13, 13,125, 33,186,101,235,241,255,253,112,146,159,175,151,183,139,149, +181,154,213,106,141, 98,225, 55,243,218,133,134,134,126,127,251,246,237,109,245, 61, 86, 66, 8, 81,169, 84, 67, 68, 34, 81, 63, + 0, 81,247, 22, 39, 91, 44,150, 29, 89, 89, 89,235,237,189,144,183,104,209,226, 24,195, 48, 13,234,243,222, 44,203,102, 36, 37, + 37,117,172,111,204, 0,160, 84, 42, 95, 82, 42,149,255,107,215,174,157, 83,116,116, 52,196, 98, 49,190,252,242,203,137, 0,106, + 53, 88, 54, 35,229,228,228, 52,196,217,217, 57,180,172,172,236,150, 94,175,223, 44,145, 72,122,126,251,237,183, 1,177,177,177, + 46, 90,173,150, 8, 4, 2,191,237,219,183, 15,255,238,187,239,122, 19, 66,122,212,245,219, 42,188,205, 77,115, 16, 69,118, 42, +188,117,120, 26,128,248, 7,215, 91, 13,210,215, 5,162,128,126, 2,122, 33, 19,192,215,246, 30, 39, 33,132, 81,169, 84,223,250, +249,249,141,208,235,245, 6, 66, 8, 37,132,208,102,205,154,217,214, 3, 0, 76, 38, 83, 97, 74, 74, 74,163,218,180,130,219,123, +158, 23, 48, 2, 85, 77,235, 89,142,205,186,115,234,238, 99, 15,221, 66, 41,125, 63, 49, 49,113,176, 80, 40, 36, 45, 90,180,112, + 38,132,244,182,215, 92, 40, 20,138, 8, 66,200, 20, 74,233, 57,141, 70,243, 61,165,148, 85, 42,149,221, 40,165, 31, 1, 0, 33, +228, 75,181, 90,125, 24, 0,148, 74,229,247, 97, 97, 97,207,223,188,121,115,169, 90,173,174,117, 60,185,218, 8, 15, 15, 31,251, +159,255,252,103,250,152, 49, 99, 28, 11, 10, 10,130,122,245,234,245, 43,128, 78,117,238, 88, 11, 49, 49, 49,162,156,156,156,137, +205,155, 55,127,175,117,235,214,242,171, 87,175,230, 40, 20,138, 69,254,254,254, 95, 39, 36, 36,212,105,216,155, 55,111,174, 16, + 10,133, 35, 0, 12, 71,197, 5,116, 29,128, 85, 23, 46, 92,184,253, 56,113,253, 91, 48,155,205,190, 7,102, 77, 3, 17, 8, 32, +237,212, 19, 28,199, 33,127,254,116, 88,239,230,195,123,214, 34, 88,173, 86,244,236,217,179, 86, 3,246, 47,230,236,211, 14,160, +190, 84,107,176, 36,142, 78, 98,214,106,142,204,211, 92,124,185, 77,220, 34, 55, 0, 56,187,103,252,203, 94,202, 38,151, 37, 66, +167,235, 14,174,210, 45,131,250,247,140, 30,220,175, 11, 81,201,125,145,165,201,245,251,105,221,222,184, 29,123, 15,111, 65,197, +184, 20,117, 82, 82, 82, 50, 59, 40, 40,200,231,224,193,131,105, 18,137,196, 81, 42,149,146,151, 94,122,201,113,232,208,161,141, + 15, 29, 58, 20,186,103,207,158,193, 3, 6, 12,216, 35, 22,139,119,110,220,184,177,176, 46, 61,191,102, 3, 27,251, 11,253, 55, + 13,120, 33,190, 65,223,231,124, 37, 65,254, 62,224, 56, 41, 82, 82,205,129,251,143, 95,136,219,181,103,223,135,190,141, 7,190, +148,123,117,235, 37,123, 63,156,166, 77,221,220, 29, 25, 58,193, 81, 66, 95,137,235,212, 56,184,127,124, 7, 18,210, 48, 4,215, +147,175,135, 30, 62,122,110, 68,183, 54, 46,119,244, 38,178, 78,207,145, 5,151, 47, 23, 23,213,166, 37, 17,146,149, 73, 87,110, + 42, 88,150,197,151,243,190,216, 63,101,202,148,202,209,213,109, 15,150,101,209,183,239, 0,124,245,213, 87, 48, 26,141,104, 29, +221,100, 37, 0,165,189,241, 2,248,245,234,213,171, 94, 58,157, 14,123,246,236,249, 88,163,209,124,188,119,239, 94,141, 66,161, +248, 80,163,209,172,123, 2,119,247,139,151, 46, 93,234,213,166, 77, 27,129,249,222, 24, 41,177,177,177,130, 79, 62,249,196,115, +206,156, 57, 11, 1,188, 82,211,142,148, 82,186,103,207, 30,252,252,243,207,249,243,230,205,203, 2, 0,111,111,111,229,171,175, +190,234,179,102,205,154,188, 5, 11, 22,100, 81, 74,225,229,229,165, 26, 50,100,136,143,189,161, 6, 4, 4,132,196,180,110, 59, +126,213,202,149,109,139,239,222, 53,252,184, 96,233, 5,163,208, 65, 23, 20, 21, 33,158, 54,125,150,219,231,159,126,252,118, 64, + 64,192,229,204,204,204, 84,123, 15, 82, 46,151, 7, 54,104,208, 96,203, 39,159,124,210,180, 99,199,142, 34, 95, 95, 95,104,181, + 90,164,164,164, 52, 61,113,226,196, 11,219,182,109,155, 40,151,203, 7,105, 52,154, 58,111, 38, 40,165,225,191,125,249,133,175, +131,151, 55, 56,139, 5, 30,205,162, 43,215,101, 31,218, 11,206, 98, 1,103,177, 32,160,239, 11,182,237,209,173, 91,183, 71, 26, +146, 92,165, 82, 41, 34, 34, 34,126,153, 60,121,178,216,104, 52,226,226,197,139, 56,117,234, 20,151,155,155, 91,235, 64,182,132, + 16, 33, 33,100,223,244,233,211, 85, 29, 59,118,116,201,207,207, 7,203,178,222,219,182,109, 27,219,178,101, 75, 87,149, 74, 37, + 89,189,122,181,109,134, 0,207,208,208, 80,207,161, 67,135,154,126,254,249,231,137, 0,230, 85,167, 57,243, 93,101,187,162, 91, +220,180, 28, 97,104, 92,163, 86,111, 32, 71,184, 55,110, 66,111,249,110,247, 80,166, 50,147, 21,223,176,161, 75, 72,164,211, 36, +153,107, 83,207, 98,245,254, 73,241, 13, 27,174,216,125,235, 86,157,147,166, 19, 66, 24,165, 82,249,109,159, 62,125, 94, 93,186, +116,169, 83,114,114,178, 83, 84, 84, 20, 56,142,131,213,106, 5,203,178,182,121, 55, 81,117,192,224,154, 16, 48, 2,213,137, 45, + 87,124, 29, 29, 29, 43,255, 15,109,207,229,229,229,232,253,122,187, 58, 53,236,129,227, 56,137,237,119,109,181, 90,165, 0, 68, + 0,106,157,212,188, 10, 51, 78,158, 60,249,210,238,221,187,135,205,154, 53, 43, 28,192,187, 28,199, 77, 75, 78, 78,238, 2, 0, + 81, 81, 81, 18, 0,135, 21, 10,197,200, 49, 99,198,140, 25, 55,110, 28, 94,127,253,245,105,132,144,217,143,250,127, 47,145, 72, + 62,125,231,157,119, 28, 45, 22, 11, 28, 29, 29, 97, 54,155, 27, 62,138,142,141,198,141, 27,139,117, 58,221,230, 25, 51,102,244, + 27, 48, 96,128,109, 10, 47,255, 99,199,142,205,249,224,131, 15, 58,196,196,196, 12,172,201,100,197,196,196, 68, 3,248, 60, 44, + 44,172,247,235,175,191, 46,136,141,141, 69, 89, 89, 25,246,237,219, 55,101,203,150, 45, 83, 98, 98, 98, 78, 2,152,150,144,144, +112,228,113, 98,124,224, 61,211, 1, 4,222,123,153,145,144,144, 16,244,164,180, 31, 7,129,204, 5, 41,131,186, 33, 52,185, 0, + 0,144,243,253,124, 0,128,235,167, 95, 61,205,176,120,170,225,145,166, 62,209,233,116, 45, 63, 30, 63, 28, 12, 83,113,151, 24, + 22, 18,136, 57,159,140, 38,191,237,216,219,178,182,253,218,183,111,191,128,101,217,112, 79, 79,207, 15, 13, 6,131,116,225,194, +133, 82,181, 90, 29,185,121,243,102,154,152,152, 8,177, 88, 12, 55, 55, 55,116,239,222,221, 33, 46, 46,174,225,201,147, 39, 3, +183,108,217, 50,160,111,223,190,171,118,238,220,185,189, 38, 93,239,102,207,135,251,249,248, 31,253,106,214, 91,158, 77, 67, 66, + 97,178, 88,144,149,171, 6,133, 4,254,190,206, 24,246, 66, 11,113,108, 43,113,216,215, 75, 14, 30,241,107, 58,160,179,246,242, +111, 87,234, 58,198, 78, 49,206,103, 7,118,105, 24,243,124,239, 14, 76, 88, 84, 99,136, 29,156, 42,215, 53,107,217, 18,205, 90, +182, 36,163, 71,151,134, 36, 94, 72,156,186,231,224,153, 79, 58,197, 56, 39, 28, 79, 40,175,121, 98, 76, 10, 7,219,220,105,131, + 94,124, 25, 17, 17, 17,247,157,204,109,127,167,165,165,129, 16,130,252,252,124,112, 20,146,186,226,124, 16,157, 78,135,211,167, + 79,163, 69,139, 22,232,213,171, 23, 94,121,229, 21,249,182,109,219,126, 93,188,120,113, 23, 0,163,235,171, 87, 21,150,101, 99, + 91,182,108, 41, 48,155,205, 16, 8, 4, 40, 40, 40, 64,106,106, 42, 66, 67, 67, 5, 44,203,118,173,109, 95, 74, 41, 58,116,232, +128,121,243,230,101, 29, 61,122,180, 37, 0,116,238,220,249, 66,219,182,109,125, 22, 44, 88,144,117,252,248,241, 24, 0,136,141, +141, 77,104,213,170,149,221,229,180, 78, 78, 78,111,190,255,223, 15,124,138,239, 22,234, 45,165,165,102, 25,199, 90, 93,165, 34, + 82,146, 87, 80,116, 39,211, 85,247,230,152,241,194, 79, 39, 79,120, 19,128, 93,109,246,114,185, 60, 48, 50, 50,242,236,138, 21, + 43,124,189,188,188, 80, 84, 84,132,130,130, 2,156, 61,123, 22, 28,199, 33, 46, 46,206,161,101,243,230, 45,191, 94,176,224,148, + 92, 46,111,111,143,201,114,240,242,198,230, 46, 21,255, 26, 47,221,174, 56, 41, 18, 66,176,231,149,254,149,219, 12, 77,175,152, +220, 92, 42,149, 62,242,180, 62,148,210,246,177,177,177, 98, 0,152, 56,113, 98, 73,121,121,249, 28, 66,200,175,217,217,217,234, + 58,118,157, 56,117,234, 84,101, 72, 72, 72,208,175,191,254,138,178,178, 50, 0,240, 13, 9, 9, 65,120,120, 56,123,244,232, 81, + 68, 68, 68,192,197,197, 5, 71,143, 30,197,233,211,167, 17, 29, 29,237, 34, 22,139, 95, 70, 13, 6,171,115,159, 46,211, 28, 68, +145,157, 26,181,122, 3, 50, 87, 57, 86,172, 93,143,148,243,171, 58, 25, 45,215,166,125,242,174,242, 53, 1,117,120, 67, 25, 46, +155, 28,220,170,171, 87, 88,147, 1,104, 16,115,209,219,200, 30, 75,157, 54, 46,116,174, 80,106, 88, 61,253,171,236,130,234,116, + 9, 33,140,191,191,255,252,248,248,248,151,150, 46, 93,234, 14, 0,151, 46, 93, 66, 78, 78, 14,124,124,124, 32,149, 74, 33, 18, +137, 32, 20, 10,235, 53, 85,150,163,163, 35, 52, 26, 13,108, 55, 14, 44,203,162,180,180,180,114,210,240, 25, 51, 8, 51,125,186, +125,217, 38,185, 92,222,177,101,203,150,107, 84, 42, 85, 64,213,229,241,241,241, 24, 61,122, 52,202,203,203, 17, 29, 29, 29,235, +231,231,103,124,235,173,183,192,113, 28,180, 90,109,217,165, 75,151,158, 83,171,213,103,106, 56,110,125, 78, 78, 14,198,140, 25, +131,140,140,140,113, 10,133, 34,157, 97, 24,169, 68, 34,177,173,151, 40, 20,138,136,136,136,136,111,223,122,235, 45,164,165,165, +225,250,245,235,103, 31,231,166,202,193,193,161,156,101, 89, 95,171,213, 10,189, 94,143,184,184, 56,105,100,100,164, 86, 36, 18, + 93, 43, 42, 42, 26,150,153,153,169,177, 71,135, 16, 34,148,203,229,254, 34,145,104,233,248,241,227,251,116,233,210, 5,215,174, + 93,195,158, 61,123,240,252,243,207,163,107,215,174,152, 50,101, 74,223,105,211,166, 77, 4, 80,211,205,192,166,205,155, 55, 7, +171, 84,170,202, 41,145, 92, 93, 93,241,230,155,111, 98,248,240,225,216,181,107, 87,135, 47,190,248, 98,115,215,174, 93,125,143, + 60, 70, 75,197, 3, 4, 38, 36, 84, 76,197, 23, 19, 19, 19, 88,199,182,127, 27, 14,173, 58, 32, 52,185, 0,183,163,188, 0,160, +210,104,217, 94, 67, 89,235,101,152,231,111,164, 90,131,101,210,235,204, 66,134, 94,243,145, 71,111, 56,187,103,124,101, 19, 33, +172,244,154,201,172, 51, 3, 0,203, 81,148,232,172,112,116, 96,144,166, 41,197,229,219,249, 15,233,208, 7, 74, 45,117, 58,221, +127, 23, 45, 90,132, 47,191,252, 50, 94,175,215,151,165,166,166,106,202,202,202,202,135, 13, 27, 70, 68, 34, 17, 78,156, 56,129, + 59,119,238,160, 89,179,102,112,119,119, 71,199,142, 29,197,189,122,245, 10, 24, 57,114,228,107, 0,182, 87,167, 73, 94,122, 73, + 32,151, 56,252, 62,127,214, 16, 79, 34,184,142,235, 25, 69,104,168,106, 3, 47,183, 0,168,243,202,144,112,117, 23,174,223,218, +137,134,170, 64,140,126,181,161,251, 55, 63,228,237, 32, 49,111, 55,164, 9,127,246,243,122, 80, 19, 0,164, 98,182,245,103,139, + 18,193,150,223, 2,181,100,128,154, 31,154,221, 5, 78,238, 1,136,108,225, 7, 39,137, 15,115, 41,249,155,214,181, 29,187,209, + 74, 63,154, 61,115,198, 79,205,163, 99, 80, 92, 92,140,239,190,251,174,210, 88, 81, 74, 43,239,184,219,181,107, 7,139,197,130, +159,126,250, 9, 22,174, 34,253, 95, 91,156, 15, 48,180,109,219,182,235, 41,165, 18, 71, 71,199,156, 22, 45, 90, 4,189,251,238, +187,194, 33, 67,134, 64,175,215,191, 37,151,203,247,106, 52,154,173,245,212, 4, 0, 52,104,208,160, 99,215,174, 93, 29, 5, 2, + 1,204,102, 51,138,139,139,145,149,149,133,212,212, 84,120,123,123, 3, 85,250,111,213,164,249,224, 92,136,148, 82,106, 59,254, + 42,203, 42, 63, 23,123,226, 36,132, 68,122,184,123, 56,255,248,245,210,243, 62, 14, 2,226, 29,160, 32, 98, 87,119, 33, 35,115, +113,160, 2,129, 62, 40, 64,225, 66, 8,137,172,110,223,135,126, 75,132,144, 6, 13, 26,108, 89,185,114,165,175, 72, 36, 2,203, +178,240,241,241, 65,106,106, 42,138,138,138, 80, 90, 90,138,212,107,201, 8, 86,169,240,159,209,163,228, 51,190, 90,176,133, 16, +210,170,234, 69,172,186, 56, 57,203,253, 55,229, 53, 25,168,154,150,219,251, 29,113, 28,119, 39, 59, 59, 27, 78, 78, 78,136,138, +138,146,157, 59,119,238,184, 90,173,174,214, 92, 85,213,148, 74,165, 47,199,198,198,186,172, 93,187, 22, 49, 49, 49,112,115,115, +195,225,195,135,113,233,210, 37,152,205,102,166,180,180, 20, 50,153, 12,115,231,206, 69, 96, 96, 32,138,139,139,145,158,158,238, + 37, 18,137,188,107,210, 60,182,235,232,204,194,219,135,167,229, 8,246,198,173, 88,187, 30,111, 13, 29, 2,127,235,237,227, 30, + 13,153,153,241,125, 59,124, 42, 16, 5,244,115,118,105,234, 17,222,116, 0,196, 18, 25,222,253,232,115, 92,191,252,187,135,174, +244,210, 56,214,146, 25, 0,224, 63, 15,106,146,138, 15,136, 81, 40, 20,163,150, 45, 91,230, 98, 91,206, 48, 12, 68, 34,209,125, +198,202, 54, 25,123,117,159,105,117,159, 39,203,178, 48,155,205, 48,155,205,224, 56, 14,121,121,121, 40, 45, 45,133,135,135, 71, +197, 6,211, 1, 2, 66, 40,170, 55, 44, 85, 53, 25,134, 25,182,126,253,250, 0, 39, 39,167,135,182,203,204,204, 68,113,113, 49, +156,157,157,225,238,238, 14,139,197, 2,171,213, 10,163,209, 40,235,218,181,235, 88, 0,103,170,211, 20, 8, 4, 19,198,140, 25, + 19,187, 99,199,142,208, 89,179,102,193,108, 54,207,207,203,203,131,205,160,117,236,216,177, 29,165, 52,101,252,248,241, 0,128, + 25, 51,102, 88,202,202,202,222,177,231,216,171,195,207,207,175,113,255,254,253, 61, 14, 28, 56,128,142, 29, 59,194,104, 52, 98, +236,216,177,174,163, 70,141,114, 61,121,242,164,207,194,133, 11, 87, 3,232, 89,155,102, 76, 76,140, 72,171,213, 78, 26, 54,108, +216,196,158, 61,123,186,229,231,231,195,193,193, 1, 27, 54,108,192,143, 63,254,184,219,108, 54, 79,221,188,121,243,236,229,203, +151,199, 13, 24, 48, 0,203,151, 47, 31, 79, 8,249,146, 82,202, 85,163,169, 8, 8, 8, 64, 82, 82, 18, 60, 60, 60,224,237,237, +141,226,226, 98,156, 62,125, 26,103,207,158, 69,100,100, 36, 8, 33, 30,168,184,166, 85,107,176,106,137, 51, 29,143,152,169,178, +247,243,172, 15,117,105,218, 42,212,108,103, 72,150,173,232, 18,205, 2,168,201, 77,219, 19, 39, 33, 68,168, 80, 40, 6,184,187, +187,143,163,148, 10, 11, 11, 11,151, 57, 57, 57,109,186,117,235, 86,181, 89,214,191,226,216,159, 53,132, 0, 64, 8,177,125, 47, + 93, 41,165, 71,149,201, 40,201,111,229,113,221,203,175,241,122, 47,101,147,138, 15,209, 74,175, 9, 28, 60,174,251,157,215,149, + 0,128,217, 66,113,242, 90, 33,146,110,106,145,116, 35, 7, 50,105,221,119,221, 94, 94, 94,232,208,161, 3,126,251,237, 55,100, +102,102,202,230,206,157, 27,110, 54,155,205,253,251,247,207,110,208,160, 65, 97,199,142, 29, 33, 18,137,112,230,204, 25,148,148, +148, 64, 32, 16, 64, 34,145,128,227,184, 26, 51,109,190, 55,216, 55, 94, 31,221, 50,212,219,157,193,246, 19,123,209, 46,114, 32, +156, 28, 68,200, 43,212,131, 33, 4,183,238, 28, 0,203, 58, 35,241, 90, 6,218, 55,117, 70,167,182,110,170,178,131,119, 71, 3, + 88, 98,207, 7,100, 86, 31,129,164,193, 32, 64,218, 4,212,116, 11,156, 73, 13, 42,242, 69,185, 78,138,252,180,116, 92, 59,189, + 9,212,170,171, 83, 39, 51, 51,251,127, 10,133,162,227,145,225,111,188,193,113, 28,230,205,155,119,228,198,141, 27,221,170,110, +211,176, 97,195,195, 83,166, 76,233, 90, 88, 88,136,189,123,247,174,202,206,206, 94,105, 79,140, 54,178,179,179, 15, 0,240,180, +189,150,203,229,129, 23, 46, 92, 88,251,203, 47,191,180,127,237,181,215,176,113,227,198, 15, 1,108,173, 89,225, 97,198,143, 31, + 47,250,237,183,223,122, 59, 58, 58,126, 55,109,218, 52,153,201,100,130, 70,163, 65, 78, 78, 78,101,182,237,202,149, 43,172, 80, + 40, 60, 89,155, 78,117,166,201,182,252,193,155,236,123,203,236,189,243, 46, 51, 89, 44, 70,231, 0,133,165,255,128,222,205, 46, +157,189,120,221,209,211,147,105,214, 58,186,241,181,155,105, 9,164,162, 9,198,174,102, 24,149, 74, 53,100,250,244,233,205, 92, + 93, 93,193,113, 28,220,220,220,144,151,151, 87,105, 40, 77,165, 37, 48,151, 20, 35, 41, 61, 21, 29,187,118, 71,175,246,237,162, +118, 90, 44, 67, 0,172,171, 77,215,179,121,203,202,204,213,198, 80,175,202,229,175,164, 21, 85, 26,128, 93,109,194,224, 32,115, + 70,211,247, 63,182,243,176, 31, 70,163,209, 92, 8, 10, 10,218, 21, 23, 23,215,103,244,232,209, 76, 78, 78,206, 30, 63, 63,191, + 88,173, 86,123,181,182,253,100, 50, 89,195,252,252,124,148,150,150,194,205,205, 13, 11, 23, 46,132,175,175, 47,116, 58, 29,206, +157, 59, 71, 85, 42, 21, 57,124,248, 48,148, 74, 37, 10, 10, 10, 96, 54,155,161,211,233,114, 76, 38, 83,141,125, 36,239, 53, 3, +198, 79,232, 37,223,157,114,126, 85, 39, 37, 82,207, 13,254,176,211,141,196,179,215, 51, 15, 29, 60, 49,211,106,144,102, 22,101, +237,159, 20,210, 58,209,123,220,135, 51,176,120,254,116,164,156, 57,122,215, 47,176,116, 9, 75,140,171, 98,123,215, 28,175, 78, +167, 51, 36, 39, 39,187, 36, 38, 38,130, 97, 24,184,186,186,194,217,217,185,114, 98,115,155,185, 18, 10,237, 79,208,219,110,112, +108,230, 42, 47, 47, 15,183,210,175, 99,243,161,213,176, 88, 45,222, 43,219,186,230,132,138,197, 73,222,197,228,147,252,203,244, + 66,109, 90,148,210,101,175,188,242,202, 16,165, 82,233, 82,117,121,139, 22, 45,240,234,171,175, 98,207,158, 61, 56,127,254,252, +125, 55, 88,121,121,121, 26,150,101, 87,213,164,153,145,145, 81,164, 82,169,226, 70,141, 26,149,176,117,235, 86,215,175,190,250, +170,114, 98,115, 91,179,168,237,121,237,218,181, 72, 72, 72,152,150,147,147,115,205,238, 15,160, 10,254,254,254,145,253,251,247, + 63,182,100,201, 18,119,173, 86,139,252,252,124,148,151,151, 67, 36, 18,193,106,181, 34, 44, 44,140,176, 44, 27, 92,155, 70,227, +198,141,197, 12,195,252,126,232,208,161,222,225,225,225, 0, 0,139,197,130, 19, 39, 78, 96,244,232,209, 5, 78, 78, 78, 47,167, +165,165,149, 43, 20,138, 41, 59,118,236,136,107,209,162, 5,154, 53,107,230,159,155,155,235, 2,160,184, 58, 77, 91,150,223,246, +253,252,244,211, 79,149,235, 12,134,138, 41, 39, 77, 38, 19,105,221,186,117,240,185,115,231,234, 83,220, 82, 83,166, 42,163,202, +107,187,250, 22,255, 29,164,255,178, 2,105,159,188,135,160,227, 41, 0,128,132,198, 21, 93,174,130,142, 38, 87,108, 48,124,120, +189,244, 20, 10,133, 23,165,244,173,158, 61,123,190, 31, 23, 23,231, 35,151,203,225,229,229,133, 75,151, 46,197,238,221,187,247, + 59,149, 74,245, 3,203,178, 63,216,147,173,127, 92, 30,244, 34,127,245,251,253,213, 84,158,129, 40,165,228,222,193, 17, 12, 30, +204,122,111,218,148,175,142,146,152, 37, 66,167,235, 0, 96, 50,235,204,126,231,117, 21,195, 52,204, 92, 11, 10, 10,150,187,151, +109,160, 20,172,157,117, 32,134,107, 47,130, 43,250, 29,190, 30, 3,176,124,249, 86,228,230,230,138, 23, 46, 92,216, 96,235,214, +173,170, 97,195,134,101,132,133,133, 21,119,239,222, 29,171, 87,175,134,191,191, 63, 76, 38, 19, 56,142,171,209,189,185,120,178, +131,219, 54, 11, 19, 92, 79,191,132, 86,225, 47, 34, 88,222, 17,183,212,197, 3,211, 49,224, 0, 0, 32, 0, 73, 68, 65, 84, 40, + 44, 53,162,160, 88,143,136,136, 15,161,189,171, 67, 73,185, 1,151, 82,126,133, 74, 30,194, 8, 68,183,226, 96,167,193, 50,222, + 90, 3, 99,234,122,136,229,221, 32, 9, 25, 2,145,119,123,100,166, 28,193,197, 3, 11,144,117,227, 15, 80,142,133, 95, 64,181, + 9,146,135,160,148,126,182,104,209,162, 97,115,230,204, 17,190,247,222,123, 93,149, 74,101, 87,181, 90,125, 4, 0,148, 74,101, +215, 49, 99,198,116,117,113,113,193,236,217,179, 45,148,210,207,236, 18,173, 5,141, 70,147,161, 84, 42,199, 29, 56,112, 32,113, +228,200,145,136,140,140,108, 73, 8, 97,236,233, 88, 27, 22, 22, 54, 90, 34,145,140,176, 90,173,225, 67,135, 14,101,222,122,235, + 45,153,175,175, 47,210,210,210, 96, 52, 26,193, 48, 12,196, 98, 49,174, 92,185,194,253,254,251,239,197, 98,177,120,124, 93,154, + 28,199,193,219,219, 91,217,169, 83,167, 4, 0,240,244,244, 84,113, 28, 7, 47, 47, 47, 85,135, 14, 29, 18, 0,192,195,195, 67, + 89,157, 17,171, 9,179,217,124, 46, 35, 61, 61, 34,182, 83,172,252,216,249,171, 23, 6,189,208,175, 27, 35,100,152, 59,233,154, +115, 62, 94,158,206, 39, 78,254, 81, 98, 54,155,207,217,163, 37, 18,137,250,117,236,216, 81, 88, 88, 88, 8,133, 66,129,188,188, + 60,168,213,106, 88, 44, 22, 24,138, 11, 97, 46, 41,129,185,184, 8, 84, 87,134,219,231,206, 32, 42, 64,233,176,175,162, 19,124, +173, 6,203,230, 21,171,155,152,218,182,204,193, 69, 6, 71, 23,151,202,230, 15,123, 81, 40, 20, 3, 92, 93, 93, 39,149,150,150, +238, 82,171,213,179, 76, 38,211,187,115,230,204,105,253,249,231,159,123, 79,154, 52,201,117,210,164, 73, 27, 27, 52,104, 16,157, +150,150,102,172, 73,163,172,172,236,150,197, 98,241, 2,224,119,240,224, 65,248,248,248,160,164,164, 4, 22,139, 5,122,189,222, +228,225,225, 33, 45, 40, 40,128,193, 96,128,201,100,130,171,171, 43, 18, 18, 18,238, 90,173,214, 26,155,237,109,184, 55,100,102, + 26, 45,215,166,121, 54,118, 86,179,212,171, 75,169,158, 43,156,254, 85,246, 76, 0, 95,199, 55,108,184,194,196, 29, 77,189,126, +249, 55,143,212,115,135,239,102,223,208,133,174,216,121,187,198, 62, 88,180,226, 36,197, 17, 66,104,163, 70,141,144,151,151, 7, +129, 64, 0,103,103,103,200,100, 50, 68, 70, 70, 34, 51, 51,243,145, 13, 86, 85,115,117,224,212, 14,228,151,105,176, 98,254, 90, + 40,253, 3, 24, 0, 62,234,156,204,231, 70, 78,124,169,109, 72, 71,143, 57,169,127, 20,214,216,175, 45, 59, 59,251, 34, 0,215, +170,203,148, 74,101, 55, 15, 15,143, 67,102,179, 25,105,105,105,216,183,111, 95,215,172,172,172,163,118, 7, 8, 32, 43, 43,235, +182, 82,169,140,123,225,133, 23, 86, 55,107,214,172, 33,165, 20,145,145,145, 24, 48, 96, 0, 54,111,222,140,171, 87,175,162,164, +164,132, 59,126,252,248, 74,141, 70,243, 72, 29,114,228,114,121,163,190,125,251,254,177,120,241, 98,143,252,252,124, 24, 12, 6, +148,149,149, 97,211,166, 77,136,141,141,133, 84, 42,197,162, 69,139, 74,172, 86,235,226,154, 52, 26, 55,110, 44,166,148,254,182, +117,235,214,222,161,161,161,184,118,237, 26,142, 31, 63, 14, 31, 31, 31, 56, 58, 58,162,127,255,254, 94,235,215,175,127,183,113, +227,198, 11, 68, 34,209,204, 62,125,250,128,101, 89,156, 63,127, 94,147,158,158, 94,227,247,111,203,212, 84,135,193, 96, 0,165, + 20, 22,139,101, 33,195, 48, 47,199,196,196,244, 74, 72, 72,120,172, 78,209,255,148, 62, 87, 0,160, 82,169,154,136, 68,162,255, +120,120,120, 32, 47, 47, 15, 69, 28, 32,187, 91, 81,116, 91,124,239,116,121,247,238,221,202,115, 77,120,120,248, 78,189, 94,255, + 73, 86, 86, 86,141, 89, 38,165, 82,217,220,201,201,233,253,254,253,251, 15,235,219,183,175,192,108, 54, 99,199,142, 29, 88,188, +120, 49,226,226,226, 16, 22, 22,134, 15, 63,252,208,205,104, 52, 78,222,179,103,207,164,168,168,168, 61,165,165,165, 31,215,166, +249, 36,184,207,139,252,203,169, 60, 3,221, 59,160, 63,251,209, 12, 30,204, 42,129, 66, 0,240,247,247,247,246,244,244, 92,204, +178,108, 55,124,250, 41, 92,132,110, 72,187,117, 3,165,133, 28, 44, 38, 35, 56,142,130,214,236,129,238,131, 43,250, 29,174,157, + 41, 74,142, 17,152,205,102,248,250,250, 98,238,220,185, 40, 46, 46, 22,142, 28, 57, 50,120,198,140, 25, 23, 13, 6, 3,202,203, +203,161,215,235,161,215,235,107, 53, 88, 98,169,177, 89,144, 95, 56, 74,245,109,224, 36,145,160,160,196,136,194, 82, 35,242,139, + 12,216,242,219, 80, 24,245, 58, 88, 77, 38,176,102, 43,100,126, 3, 17,230,217, 13,192, 77,187, 70,166,173, 76,162,112, 86,152, +213,251, 97, 86,239,135, 83,139, 41,248,109,209,107,247,109,103,181,218,215,228,175,209,104, 50, 20, 10,197,247, 35, 70,140, 24, +255,194, 11, 47,224,135, 31,126,248, 18, 64, 43, 0,144,201,100, 95, 14, 28, 56, 16, 87,174, 92,193,177, 99,199,150, 62,169,187, + 5, 74,169,151,167,167, 39, 24,134,129, 78,167, 51,214,101,174, 54,109,218, 68,102,204,152,177,167,127,255,254,237,223,125,247, + 93, 39,127,127,127, 80, 74, 97, 50,153,144,149,149, 5,134, 97, 80, 84, 84,132,159,126,250,169,252,252,249,243, 84, 34,145,156, + 20,137, 68,111, 95,185,114, 37,187,174, 88, 60, 60, 60, 48,116,232, 80,159, 54,109,218,248, 84,173, 24,124,249,229,151,125, 90, +181,106, 85,185, 76,165,170,177,160,235, 33, 12, 6,195, 79,179,103, 78,235,246,203,154, 13,145,141, 34,195, 60,118,237, 59,124, +193,203,203,213, 49, 56, 56,212,161,184,168,200,184,120,225,124, 97,121,121,249,255,236,148,139,242,246,246, 70, 78, 78, 14,110, +222,188, 9,163,209, 88,209,132,163, 43,131,169,168, 8,230,226, 66,192,160,135,132,101, 97,204,215, 34, 56, 52, 24,248,179,194, +176, 86,170,154,169,170,203,108,207,142,110,174,144, 56, 59, 67, 32,170,190, 89,171, 58,228,114,121, 76,203,150, 45, 55, 44, 95, +190, 92, 60, 97,194,132,182, 13, 26, 52, 88,156,147,147,147,174, 82,169,122,204,159, 63,255,236,172, 89,179, 28,134, 13, 27,214, +104,217,178,101,175, 3, 88, 86,147,142,193, 96,216,176,107,215,174, 87, 3, 3, 3,253, 46, 95,190, 12,131,193, 0,142,227, 16, + 31, 31, 15, 0, 82,219,118, 41, 41, 41,122,189, 94,175,189,114,229, 74,105,122,122,186, 25,118, 84,253, 77, 91,172, 62, 61,225, + 37,213, 32,185, 92,113, 74,226, 16, 20,194,232, 18, 6, 78,120, 73,245,213,130,141, 89,134,221,183,110,149, 78, 27, 23, 58, 87, + 87,122,121,156,135,170,124,201,146,237, 53,155,171, 42,208,123, 21,131,240,246,246,174,108, 18, 20,139,197, 0, 0, 63, 63, 63, + 20, 23, 23,215,218, 68, 88, 29, 44,203,162,184,184, 24,197,197,197,184,113,231, 26,242, 74, 53,216,191,238, 20, 88,150,173,204, +142, 40,252, 84, 56,176,238,172, 75,215,193,173, 63,241,106, 78, 14, 23, 36, 81,187,140, 59, 0, 48, 12,243,254,139, 47,190, 8, +179,217,140, 1, 3, 6, 96,237,218,181,239, 3, 56,106,239,254, 54,212,106,245,105, 66, 72,248,205,155, 55, 93, 45, 22,203,243, +253,251,247, 95,213,167, 79, 31,156, 58,117, 10, 7, 15, 30,236,106, 50,153,174,179, 44,171,151,203,229,115,228,114,185, 47, 33, +100, 78,118,118,118,173,213,206, 17, 17, 17,195, 92, 92, 92,102, 59, 58, 58,150,246,233,211, 71, 97,203, 92,149,151,151,195,106, +181, 34, 43, 43, 11,187,119,239,214,236,218,181, 75, 67, 41,117, 42, 43, 43,155,158,145,145,177,169, 58,173,152,152, 24,145,197, + 98,217,246,251,239,191,199,133,134,134,226,232,209,163,152, 55,111, 30, 26, 54,108,136,149, 43, 87,162, 67,135, 14, 8, 14, 14, +134,167,167,231,127, 74, 74, 74,218,207,155, 55,175, 79,203,150, 45,177,117,235, 86,228,230,230,126, 87,219,249,169,182,243,172, + 94,175, 7,165, 20,221,187,119, 31, 61, 97,194, 4,244,239,223,127, 95,171, 86,173,218,156, 63,127,254,134, 29, 31,235, 63, 50, + 83,101, 67,161, 80,204,237,217,179,231,164,230,205,155, 99,205,154, 53, 48,182,234, 8,231,149,219,113,185, 95, 44, 40, 0,197, +202,223, 0, 0,151,159,175, 40,232, 8,238, 49, 24,147, 38, 77,234, 51,112,224,192, 64, 0, 77,106,208,252,234,181,215, 94,155, +248,218,107,175,225,194,133, 11, 88,182,108, 25, 46, 94,188, 88,121,205,179, 88, 44, 72, 78, 78, 70,114,114, 50,228,114, 57,250, +245,235, 71,222,126,251,237,248,248,248,120, 31,220,187,102,253, 85, 60,228, 69,254,197, 84,159,193,170,130,191,191,191,183,135, +135,199,149,197,139, 23,123,181,109,219, 86, 96,181, 90,113,240,208, 33,124,240,222, 72,196,245, 27, 7,131, 81, 2,171,129,128, + 21,203,236,123, 71,215,126, 40, 57, 70,192,201,250,192,100, 50, 97,244, 90, 49,220,137, 22, 11,223,240, 3, 0,162,215,235, 97, + 52, 26,161,215,235, 81, 94, 94,142,242,242,114,176, 44, 91,227, 89,178,180,200,217,108,182,112, 80,231,166, 35, 75,115, 25,110, +178, 64, 80, 38, 0,218,187, 58, 16,248,194, 98, 72, 1,119,239, 31,211,168,207, 66,185,241,241, 76, 49, 91,250,112, 49, 26,199, +217,223,167,146,101,217,217,243,231,207, 31,189,120,241, 98,135,113,227,198,197, 40, 20,138,231, 1, 96,226,196,137, 49, 82,169, + 20, 75,150, 44, 49,178, 44, 59,251,177,130,188, 7, 33, 68,160, 84, 42,223,239,220,185, 51, 74, 74, 74,112,229,202,149, 29,117, +237, 51,101,202,148,177, 47,190,248, 98,251, 25, 51,102, 56, 25, 12, 6,232,116, 21,205,159,197,197,197, 40, 47, 47,135, 86,171, +197,196,137, 19, 11,205,102,243,152, 59,119,238,108,182, 55, 22, 74, 41,126,255,253,119,252,242,203, 47,247, 85, 12,190,252,242, +203, 62,107,215,174,205, 93,180,104,145,154, 82, 74, 61, 61, 61, 85,131, 7, 15,246,181,183,133, 48, 59, 59, 91,175, 80, 40,198, +207,154, 61,235,215,175,230,207,247,189, 91, 80,120, 93, 44,113, 52, 56, 57, 58,120, 78,250, 96, 38,213,106,181, 19,181, 90,109, +221,109,184,247, 40, 44, 44, 68,106,106, 42, 28, 29, 29, 33, 22,139,193,234,202,192,149,151,195, 88, 88, 0,198,100,132, 3,203, +194,211,201, 1, 1,126,126, 8,244,181,175, 47,190,230,240, 62,236, 30, 82, 49,124,139,173, 89,144, 16,130, 61, 29, 26, 65, 34, +115,134, 84, 38, 67,199,109,199, 1,160,194, 40, 44, 92, 94,167,166,191,191,191,183, 66,161,248,253,187,239,190, 19,231,231,231, +227,202,149, 43,137,105,105,105,197,158,158,158, 46, 34,145,136,187,113,227,198,129,148,148,148,126,193,193,193,160,148,214, 85, +253,245,245,150, 45, 91,158,139,141,141,181, 6, 7, 7, 59,231,229,229, 5, 22, 22, 22, 18,141,230,254, 62,204,231,206,157,147, +102,100,100,232, 56,142,219,138,138,113,176,234,252,225, 79,120, 73, 37, 61,121, 1,227,187,120, 7, 55,119,243,105,142,124,203, +197,230,167, 19,115,198, 79,120, 73,181,104,193,198, 44, 3, 75,140,171, 88, 75,102,128, 80,106, 88, 93,231, 65,163, 34,139,213, +184,113, 99, 80, 74,113,238,220, 57, 28, 63,126, 28,199,143, 31, 71, 90, 90, 90,229, 54,110,110,110,216,191,127, 63,186,117,235, + 86,139,210,253,232,116, 58,200,229,114,184,187,187, 99,235,145,159,241,227, 87,107, 43, 59,186,219,200,207,207,135,147,147, 19, +102,127,176, 64, 54,242,163,193, 51, 1,244,178, 71, 59, 32, 32, 32, 36, 54, 54,182,175,159,159, 31, 10, 11, 11,225,227,227,131, +214,173, 91,247,247,243,243, 11,214,106,181,143, 52, 78,155,201,100, 26,219,173, 91,183, 89, 19, 39, 78,132,197, 98,193,144, 33, + 67,144,154,154,186,225,246,237,219, 11,131,130,130,198,143, 27, 55,206,207,219,219, 27, 99,199,142,117, 6, 48,168, 38,157,200, +200,200,255, 78,158, 60,249,139,225,195,135, 59, 88, 44, 22, 28, 60,120,176, 50, 75,109,181, 90,145,158,158,142,233,211,167,107, + 74, 74, 74,186,100,101,101,221,170, 43,174,156,156,156,137,219,182,109,139,143,136,136,192,158, 61,123, 48,102,204,152,157, 50, +153,172, 73,223,190,125, 3,157,157,157,145,152,152, 8,179,217, 12,185, 92,238, 55,121,242,228,126,189,123,247,198,129, 3, 7, + 48,115,230,204, 29,254,254,254,181, 26,118,150,101, 33, 20, 10, 97,121,160, 79,163, 64, 32,192,197,139, 23,209,189,123,119, 76, +154, 52, 9, 0,112,224,192, 1,215, 94,189,122, 93,238,218,181,171,235,145, 35, 71,106,204,222, 2, 53,103,170,254, 41, 85,132, +206,206,206, 35, 86,174, 92,137,155, 55,111,226,143, 63,254, 64, 65, 65, 1, 76, 38, 19,138,185,138, 62, 87, 14,247, 50, 87, 84, + 25,132, 14, 19, 63,193, 43,253, 6, 65,163,209,128, 97, 24,239,154, 52, 9, 33,195, 62,249,228, 19,236,222,189, 27,115,231,206, + 69, 73, 73, 73,181,219, 57, 58, 58,162,117,235,214,136,142,142, 70,106,106, 42, 0,212,168,249,164,120, 38, 51, 88, 53,225,225, +225,177,240,251,239,191,247,138,141,141, 21,148,151,151,131,227, 56,180,111,215, 14,175,191,241, 58,246,110,221, 4,121, 72, 55, + 8, 12,142,176,186, 60,220,161,179, 58,216,128, 85,184,123,247, 46, 28, 28, 28, 32,189,215,161, 52, 41,171, 50,189, 11,131,193, + 80,105,174,108,207,181, 97, 53, 73, 18,146,111,179, 1, 37,101, 23,113, 38,225, 23, 88, 76, 38, 4,135,127, 12,163,213, 27,206, +190,111, 66,111,254, 29,230,162,138,202, 93,137,107, 87,104,181,249, 0,136, 93, 41,206,234, 46,242,156,254,225,206,238, 28,107, +191,193,210,106,181,121,114,185,252,235,139, 23, 47, 78,137,143,143,199,143, 63,254, 56,151, 82,138, 62,125,250,224,220,185,115, + 72, 76, 76,252, 90,171,213,230,217, 45, 88, 3,132, 16,161,191,191,255, 79, 75,150, 44,233,227,231,231,135, 45, 91,182,128, 82, + 90,167, 33,146, 72, 36,111,141, 31, 63,222,201,150,197,144, 72, 36,208,235,245,200,201,201,129,217,108,198,214,173, 91,141, 38, +147,105, 66, 90, 90,154,221,230, 10,168,184, 48,182,105,211, 6, 11, 22, 44,200,250,227,143, 63, 98, 0,160, 67,135, 14, 9,173, + 90,181,242, 89,180,104,145,250,244,233,211, 49, 0,208,182,109,219,243,209,209,209,245, 26,199, 37, 59, 59, 59, 43, 34, 34,226, +150,222, 96, 16,121,120,121,234, 92,156, 37,180,164,180,148, 73, 74,186,160,209,106,181,105,117, 43, 84,146,124,229,202,149,166, +106,181, 26,233,233,233, 96,117,101, 96,140, 70, 16,163, 30, 61,218,183,131, 35, 40, 28,192, 65,204, 89, 32, 18, 8, 81, 90, 90, + 6, 0,201,117,137, 86,237,228,110, 51, 87,132, 16, 72,101, 50, 72, 92,100,112,144,201, 42,215, 1,213,255,238, 30,196,209,209, +241,215,101,203,150,201,229,114, 57,190,249,230, 27,200,229,242,200,158, 61,123,234,186,116,233,226,232,237,237,141,136,136, 8, +180,106,213, 10,135, 15, 31, 6, 33,164,214, 11, 35,165,212, 74, 8,233,245,199, 31,127, 76, 60,121,242,228, 75, 10,133,130, 12, + 31, 62, 28,113,113,113,112,112,112,128, 94,175, 71, 97, 97, 33,118,238,220, 73, 88,150,109, 9, 0,254,254,254, 65, 13, 26, 52, + 88, 75, 8,201,186,115,231,206,203, 15,106,254, 48,187,185,162, 84,207,141,148,251, 43, 6,117,233, 29,220,172,123,239,158, 8, + 9,239,129,238,189, 51, 1, 96,174,183,232,206,144, 47,167, 52,221, 26, 28,224,185,242,228,182, 3,159,118,140,239, 54,117,198, +120,207,153,211, 23,221,181,103,152,134,202,139, 45,195, 48,213,102,169, 4, 2, 1, 24,198,190,185,236, 89,142,205,138,123,163, +125,229,107,139,213,236,173,244, 15, 96,108,153, 43, 0, 40, 41, 41, 65, 70, 70, 6, 44, 22, 11,188,188,188, 96,177,152,155,219, + 37, 14,128,101,217,241, 67,134, 12, 33, 6,131, 1, 19, 39, 78,196,252,249,243, 49, 96,192, 0,114,230,204,153,241, 0,222,183, + 87,199,134, 66,161,152, 63,118,236,216,137, 35, 70,140, 64, 81, 81, 17, 14, 29, 58,132,110,221,186,225,251,239,191,247, 57,116, +232,208, 23, 29, 58,116,128, 64, 32,192,254,253,251, 97, 54,155, 83,106,211,146, 72, 36,239, 13, 31, 62,220, 33, 51, 51, 19, 98, +177, 24,173, 90,181, 66, 86, 86, 22,202,203,203,145,155,155,139,207, 63,255, 60,167,184,184,184,171, 90,173,174,211, 92, 17, 66, +152, 78,157, 58,253, 39, 44, 44, 12, 7, 15, 30,196,216,177, 99,119, 59, 59, 59, 15, 42, 44, 44,124,219,104, 52, 46,234,215,175, + 31, 58,116,232,128,148,148, 20,244,239,223, 31,173, 91,183,198,161, 67,135, 48,105,210,164,157, 78, 78, 78, 47,214, 49, 14,214, +141, 35, 71,142, 52,109,213,170, 21,202,203,203, 81, 90, 90, 10,145, 72, 4,119,119,119, 36, 39, 39, 35, 60, 60, 28,147, 38, 77, +194,130, 5, 11, 48, 97,194, 4,174, 87,175, 94, 86,179,217, 44,182, 85, 89, 62, 34,255,136, 42,194,242,242,114,170,209,104,224, +234,234,138,141, 27, 55,226,210,129,189,216,245,222,155,144, 78,157, 15, 74, 41,178,102, 77, 70,247,143,166,162, 93,226,109,104, + 52, 26,172, 94,189, 26, 12,195, 84, 86,196, 86, 7,165, 20,197,197,197,136,142,142,198,185,115,231,176,122,245,106,124,243,205, + 55,149,217, 90,145, 72,132,174, 93,187,226,185,231,158,195,141, 27, 55,176,108,217, 50,184,186,186,214,168,199, 83, 61, 66,160, +194, 49, 86,125,174, 10,199,113,221, 91,183,110, 45, 40, 43, 43,131,193, 96,128, 86,171,197,157, 59,119,224,232,232, 8,117,110, + 6,218, 52, 44, 67, 14, 49,225,202,197,235, 44, 17,136, 46,214,246,102,182, 74, 29,147,201,132,164,164,164,138,210,247,240, 57, +149,157,159,239,245,249,128,193, 96,192,145, 35, 71,168,163,163, 35,156,157,157, 73,109,109,239,156,213,184,251,240,137,196, 62, +175, 13,236, 46,217,127,228, 71, 88,140, 86,148, 25,221, 81,110, 48,161, 84, 47,130,201,161, 55, 8, 57, 14, 70,224,128, 14,209, + 13,113,232,143, 27, 6,214, 98,222, 99,215,167, 67, 89, 8, 60,155,131,189,155,244,231,251,233,239,191,171, 23, 59,200,192,218, +217, 68,104, 67, 42,149,206,255,250,235,175,223,251,233,167,159, 92,222,126,251,237, 8,219,197, 98,201,146, 37,165, 82,169,116, +126,189,196, 30,224, 94, 73,244,107,177,177,177,159, 79,159, 62, 93, 25, 29, 29,141,132,132, 4,204,153, 51,103,103, 78, 78,206, +111,117,237,111, 50,153, 84, 94, 94, 94, 40, 43, 43,131, 68, 34, 1,203,178,200,205,205, 69, 70, 70, 6, 28, 28, 28,112,246,236, + 89, 83, 80, 80,208,150, 71,137,205,158, 14,237, 85, 43, 42,235,131,163,152,139,153,250,209,232, 48,131, 65,223,184,180,180,212, + 42, 20, 10,133, 14, 34,214,238,177,175, 0,192, 98,177,236, 56,126,252,248, 11, 29, 59,118,116,184,158,116, 17,230,226, 98, 88, + 74,138, 32,102,173,240,140,137, 6, 99, 50,128,152, 44, 80, 70, 81,232,139,156,113,226,194,109,139,197, 98,169, 51, 43,104, 51, + 88,140, 64,112,127,191, 43, 87, 23, 72,100, 21, 6,171,234,114, 82, 71,187,150,159,159,159, 83,124,124,124,143,150, 45, 91,130, + 82,138,249,243,231,195,100, 50, 73, 44, 22, 11, 44, 22, 11,204,102, 51, 74, 75, 75,177,121,243,102,252,252,243,207, 39,220,220, +220,234, 44,150,160,148, 90, 85, 42,213,187, 28,199,249, 90,173, 86,179,143,143,143,120,195,134, 13,144, 74,165, 96, 24, 6,209, +209,209,144, 74,165, 70,133, 66, 97,190, 23,131,229,235,175,191, 22,142, 26, 53, 74, 92,157, 94,139, 54, 17, 31,176,212,171,139, +196, 33, 40,216,205,167, 57, 66,194,123, 0, 0,158,235, 55, 18, 33, 97, 1, 40,206, 75, 10, 49, 25,211, 7, 10, 72,129,199, 47, +167,212,201,157,156,154,142, 40,200, 58,114, 29,192, 79,213,233, 61,244,153,114, 28,122,244,232,129, 94,189,122, 85, 54, 7,250, +250,250,194,100, 50,193,106,181,218,109,174, 0,192, 54,136,232,140, 25,132,193,116, 96,101, 91,151, 28, 0,149,233,201,226,226, + 98,100,102,102, 34, 61, 61, 29, 64,197,121,138,163,246,221, 93, 43, 20, 10,199,144,144,144, 55,154, 52,105,130, 67,135, 14, 33, + 41, 41, 73,125,244,232, 81,101,155, 54,109,160, 82,169, 70, 40, 20,138, 79,178,179,179,237, 30, 80,217,199,199,199,185, 83,167, + 78,239,141, 24, 49, 2, 41, 41, 41,152, 52,105, 82, 65, 78, 78,206,214, 29, 59,118,140,250,239,127,255,203,116,233,210, 5,185, +185,185,248,225,135, 31,216,179,103,207,126,229,225,225,241,121,109,122, 28,199,165,102,103,103, 55, 48, 24, 12, 40, 40, 40,128, +109, 72,134, 61,123,246, 96,239,222,189,218,162,162,162,174,217,217,217, 55,237,137, 45, 40, 40,200, 37, 38, 38,198,239,250,245, +235, 88,183,110, 29,204,102,243,212,180,180, 52,179,155,155,219,154, 37, 75,150, 76, 15, 13, 13,245,236,220,185, 51, 58,116,232, + 0, 74, 41,182,111,223,142,207, 62,251,108,167,163,163,227,160,171, 87,175,214,236, 6, 42, 24, 56,115,230,204,153,222,222,222, + 47,191,250,234,171, 76, 76, 76, 12,206,159, 63, 15,150,101,209,163, 71,143, 74,115,181,103,207,158, 95,247,236,217, 51, 24,128, + 88, 38,147, 73,235,202, 94, 1, 0, 33,164, 63, 0, 91,134, 64, 71, 41,173,179,111,225,223,141,193, 96,192,245,235,215,225,231, +231,135,176, 54,237, 49,233,242, 29, 28, 63,121, 10,148, 82,116,188,114, 7,101,101,229, 88,185,114, 37, 18, 18, 18, 32, 16, 8, + 16, 26, 26, 90,167,166,217,108,198,205,155, 55,145,151,151,135, 1, 3, 6, 96,216,176, 97,248,242,203, 47, 97, 54,155, 49,101, +202, 20,220,189,123, 23,203,151, 47,199,205,155, 55, 33, 20, 10, 33,147,217,217, 74,245, 24,212,230, 69,254,141,216,213, 11,212, +106,181,130,227, 56,100,103,103,227,220,185,115,184,115,231, 14,156,157,157,161,183,114,220,119,167, 19, 57,134,136,212, 44,197, + 31,212,138,143,106,211, 41, 47, 47,167, 22,139,133, 8,133, 66,156, 60,121, 18,183,110,221,130,107, 24,173,204, 94, 89, 44, 22, + 24,141, 70,232,116, 58,136, 68,162,178, 83,167, 78,165,157, 63,127, 62, 68, 40, 20,214, 88, 5,150, 27, 46, 88,181,255,192,193, + 15, 98,162, 27, 71,244,236,242, 25,118,236,248, 20, 69, 37, 37, 40, 55, 10, 81,166, 55,163,220, 64,161,112,105,136,182,205, 91, + 34,175,192,132, 27, 87, 18,178,242,197,158,117,182,193, 88, 88,166,248,215,197,111,187, 61, 63,120, 44,164,254,157, 97,186,179, + 1,156, 94, 91,105,176,196, 82, 23,184,122, 7,162,164, 76,143, 19,201,169,176,176, 76,181,149, 47,213,145,154,154, 90,162, 80, + 40,102,159, 56,113, 98,158,173,242,231,216,177, 99,184,125,251,246,236,236,236,236,234,115,181, 53,160, 80, 40,122, 2, 88, 11, + 64,234,235,235,171,125,251,237,183,229,189,122,245,146,118,233,210, 5, 2,129, 0, 23, 46, 92,192,219,111,191,189, 79, 38,147, + 13,178,167, 50, 79, 34,145,104,139,139,139,221, 28, 28, 28, 96,177, 88,144,147,147,131,148,148, 20,232,245,122,104,181, 90, 16, + 66,178,143, 28, 57, 82,175, 17,246,129, 63,135, 95,168,138,173, 42,232, 65,234, 89, 69, 8,149, 74,213,165, 79, 92,151,166, 95, + 45, 88, 4,189,174, 12,103, 79,237, 64,225,221,124, 44, 91,177,165,153, 74,165,234, 98,111,103,226,172,172,172,245, 91,182,108, +153,216,162, 73,147,150,161, 1, 1,184,148,126, 7, 98,142,133,132,101, 33, 48, 25,192,176, 70,168,154, 82, 48,140, 12,218,156, + 82, 44,221,119,232,114, 86, 86,214,250,186,116,149,241,207, 99,104,122, 49, 8, 33,216,215,169, 49,164, 50, 25,196, 50,103,116, +216,124,164,210, 84,165,205,253, 16, 98,103, 25, 60, 90,215, 61, 48,166, 86,171,213,133,133,133,157,191,118,237, 90,235, 70,141, + 26, 97,198,140, 25,200,204,204, 4,165, 20,185,185,185,134,188,188, 60,117, 65, 65, 65, 26, 33,100,107,118,118,246, 10,123,138, + 26, 0,128,227, 56,223,237,219,183, 3,128, 24, 0, 14, 30, 60, 8,133, 66, 1, 55, 55, 55,148,148,148, 96,248,240,225, 14,211, +166, 77, 3, 0, 92,184,112, 65, 36,149, 74,107,212,186,114, 49,229,235,194, 18, 90,200,148, 39, 12,202,183, 94,108,214,189,119, + 22,158,235, 55, 2,251,119,172,196,161,189, 7,224, 45,186,147,202, 58,150,237,206, 75,205, 47,213,148,135,255,208,184,213, 40, + 65,118,217,222,101,227, 6,120, 8, 85,114,110,227,228,239,107, 31,184,151, 82, 10,129, 64,240, 80,135,246,250,154,171,170, 76, +159, 78, 57, 2, 66, 66, 68,194,139,234,156,204,222, 10, 63, 85,229,205, 69, 70, 70, 6, 50, 51, 51, 17, 22, 22,134, 59,233,183, + 33,145,136,107,189,153,172, 18,231,171,253,250,245,115, 49,153, 76,216,182,109,155,149, 16,210,111,251,246,237,231, 91,180,104, + 33,236,214,173,155,203,202,149, 43, 95, 5,176,162, 30, 97, 58,203,100, 50,177,197, 98,193,170, 85,171,160, 86,171,187,228,228, +228, 36, 43, 20,138, 31,222,121,231,157,239,163,162,162,194,146,147,147,111,232,245,250,177,217,217,217, 73,117,137, 21, 21, 21, +189, 30, 23, 23,183,145,227,184,160,216,216, 88,231,161, 67,135,186, 82, 74, 17, 21, 21,133, 93,187,118,101,103,103,103,219,211, +135, 9, 0,144,158,158, 94,122,252,248,113,109,227,198,141,253,228,114, 57,196, 98,241, 92,185, 92, 62, 75, 38,147,125,213,191, +127,127,207, 13, 27, 54, 96,211,166, 77,112,118,118, 70,106,106,106,246,181,107,215, 22,250,251,251,127,107,207, 8,238, 9, 9, + 9,169, 0,134,182,105,211,230,179,111,190,249,102, 42,195, 48,175,237,219,183,175,114,172, 51,155,185, 10, 14, 14,126,125,227, +198,141,195,236,141,249, 30, 78,182, 33, 7, 8, 33, 85,251,231,254, 83,250,102, 89, 76, 38, 19,188,188,188,144,151,151,135,220, +220, 92, 4, 6, 6,162,125,251,246,176, 88, 44,248,109,199, 78, 28, 63,126, 28,148, 82,120,123,123,195,213,213, 21,137,137,137, + 0, 80, 91,245,176,197,108, 54,195,211,211, 19, 69, 69, 69, 72, 76, 76,132,175,175, 47, 38, 76,152, 0,147,201,132, 13, 27, 54, +224,226,197,139, 96, 24, 6, 62, 62, 62,112,113,113,193,197,139, 23,235,210,228,121,128, 58, 13,150, 64, 32, 56,124,248,240,225, +193,205,155, 55, 23,222,184,113, 3, 55,110, 84,252,191,233,245,122,171, 80,128, 77,218,164,109, 67,107,218,151, 16,210,180,234, + 88, 25, 18,137,100,233,224,193,131,199,142, 28, 57, 18,227,198,141, 3,195, 48,248,233,130, 17, 25, 25, 28,204,102, 51,180, 90, + 45, 46, 93,186, 68, 91,183,110, 77, 56,142, 51,119,237,218,245,173,132,132,132, 54, 2,129,160,164, 38, 77,186,113, 35,235,221, +236,249, 1, 75,150,174, 56,249,198, 27,111,120, 62, 63, 96, 9, 46, 92,189,130,162,242,138, 86, 38,133,183, 51,218, 54,250, 16, +185, 5, 70,236,221,189,163,144,179, 26, 94,164,151,215, 89,106,139, 19, 0,242,116,122,223, 31, 86,111,153,191,110,243,214,183, + 70,191, 62, 84,218,181,235,235, 16,149, 94, 2, 91,144, 0, 69,120, 44,136,192, 9,103, 18, 47, 32,233,102,166, 65,103, 16,172, + 40, 49,235, 63,172, 75,179, 42, 12,195,124,183,124,233,162, 47,246,236, 63, 34, 48,155,205,232, 19,215,131,101, 24,230,187,218, +190,139,234, 52,157,156,156,214, 37, 38, 38,122, 26,141, 70,100,101,101,133, 68, 68, 68,128, 82,138,244,244,116, 44, 92,184,208, +186,107,215,174, 37, 82,169,116, 82, 77,119,136, 15,106, 90, 44,150,181,171, 86,173,250,248,221,119,223,149,230,230,230,226,218, +181,107, 40, 47, 47,135,217,108, 70, 66, 66,130,193, 98,177,212, 90, 49, 87, 83,156, 54,131,229,233,233,169,108,215,174,157,173, +138, 80,201,113, 28, 60, 60, 60, 84,109,218,180, 57, 15, 0,110,110,110,213, 86, 17,214,246,121,102,101,101, 29, 13,111, 24,136, + 85, 43, 22,192,108, 54, 66,163, 78, 7, 0,228, 23, 20,163, 54,115,245,208,111,137, 82, 42,151,203, 7,125,179,112,225,255,177, +119,230,113, 81, 85,239, 31,255,156,123,103,135, 1, 17,100, 27,192, 61, 77, 16, 69, 64,113, 43,113, 43, 51,115,169,204, 37,151, + 44, 45,247,114,203,165,114, 23,210, 50,119, 77,203,180, 82,203, 45,203, 29, 83,220, 21,217, 20, 81,113,151,101, 64, 64,100, 17, +102,159,123,126,127,192, 16,203,108, 40,125,179,126,247,253,122,241,154,185,219,231,158, 59,119,152,249,204,115,158,243,156, 11, + 99, 71, 12,243,122,169, 91,119,164, 93, 78,132, 54, 47, 7,140,209, 0, 33, 21,160, 36, 91,134,135, 15,159, 96,201,193, 99,217, + 42,181,186,154,105,181,212,206,242,110, 65,103, 39, 72,228,114,136,203,162, 86,166,109, 98,185, 19,132,142,114,176, 34,145,185, +100,248,106,154, 37, 37, 37,111,141, 25, 51,230,242,193,131, 7,235, 14, 25, 50, 4,125,251,246,141,207,207,207,239,154,151,103, +187,139,205,146, 38,195, 48,217,189,123,247,246,208,106,181,134, 65,131, 6, 9,114,115,115, 97, 26, 98, 95, 84, 84,132, 67,135, + 14,225,197, 23, 75,103,157,185,122,245, 42, 2, 2, 2, 44,106,126, 48,227, 74, 6,128,133, 83, 6,250,126,117, 33, 49,107, 18, +128,200,198, 47,248,226,248,145, 99, 56,125,252,220,204,246,129,220,170,215,135,182, 91, 32,237,246,206,244,128,144, 15, 88,185, +179, 55,182,238,217,205, 38,199,125,183, 88, 93,156,212, 4,192,116, 75,237, 36,132,148,206, 84, 95,193, 92, 9, 4, 2,148,148, +148,216,101,174,172,189,151, 40, 40,173, 87, 72, 62, 27, 57,101, 96,135, 63,119, 92,116,114,116,116, 44,207,249,105,218,180, 41, + 4, 66, 1,190,223,187,186, 56, 63, 63,247,115,123, 52, 29, 29, 29, 39,116,237,218, 21,119,238,220,193,229,203,151,119, 43,149, +202,203, 10,133, 98,247,221,187,119, 7,181,107,215, 14,191,252,242,203, 4, 88, 48, 88,150, 52, 77, 21,235,203,162,189,121, 0, +160, 84, 42, 19, 1,216, 44, 57, 95, 85,179,172, 88,104, 39, 0,240,247,247, 79, 27, 48, 96,128,179,193, 96, 64,153,121,118,179, + 32, 99, 86,147, 82,202, 41, 20,138,149, 49, 49, 49, 17,109,218,180,193,224,193,131,123,198,198,198,246, 12, 10, 10, 66,147, 38, + 77,240,248,241, 99, 68, 71, 71,255,196,113,220, 71,153,153,153,106,107, 63,162, 44, 93,123, 76, 76,204, 45, 0,195, 67, 66, 66, +222, 17, 8, 4,112,118,118,102, 51, 50, 50,216,163, 71,143, 2,192,152,157, 59,119, 90,236,238,176,245,153, 92, 21,123,114,174, +106,170,105, 15, 85, 53, 9, 33,115, 70,140, 24,177,225,195, 15, 63,148,182,107,215, 14, 5, 5, 5,229,166,255,224,193,131, 40, + 27,137, 13, 55, 55, 55,220,186,117, 11,123,247,238,213, 22, 20, 20,172, 16,137, 68,145,214, 52,135, 15, 31, 94, 73,211,100,222, +246,239,223, 15,211, 32, 18, 55, 55, 55,220,188,121, 19,123,246,236, 81, 23, 20, 20, 44,215,106,181, 75,255,206,107,255,175, 97, +211, 96,229,229,229, 77,158, 53,107, 86,215,247,223,127,223, 77,165, 82,177,245,234,213,131, 82,169, 52, 28, 57,114, 36,175,168, +168,104,114, 77, 78,118,238,220,185,241,125,250,244, 89,177,121,243,230,141, 27, 55,110,236, 50,120,240, 96, 12,239,221, 27,227, + 58, 56, 66,163,209,128, 16,130, 35, 71,142,220, 56,113,226, 68, 99,145, 72,164,153, 59,119, 46, 7,160,218, 4,177, 85,201,189, +242,251, 77,207, 86, 3,186,172, 90,189,110, 87,112,104,251, 6, 13, 27, 53,148,116,242,171, 3,157,222,136,135,217,143,112,242, + 92,178,230,102,114, 98, 26,167,211, 14,204, 78,182, 93,197, 29, 0,146,147,169, 14,192,228,128, 0,231,249, 75,215,111, 91,255, +227,206,221, 3, 70, 15,126, 83, 16,210,170, 43,238,101,237,195,169,216, 19,134,199, 69,116,111,145,150, 29,155,156, 92,104,115, + 42,159,170,164,167,167,171, 95,104,228, 83,160, 86,171, 93,239,221,187,135,135,153,202,194,244,244, 12,181,237, 35, 43,195,113, + 28, 52, 26, 13,238,220,185,131, 99,199,142, 33, 62, 62, 30,103,207,158,213, 29, 61,122,116, 51,195, 48,139, 45, 21,154,180, 68, + 96, 96,224,151,223,125,247,221,219, 70,163,177, 73,120,120,184,212,213,213, 21,185,185,185,136,137,137,209, 38, 36, 36,220, 9, + 12, 12, 92,106, 91,197, 60, 94, 94, 94, 24, 56,112,160, 71, 72, 72,136,135,105,196,160,159,159, 31,222,122,235, 45,143,160,160, +160,242,117,245,235,215, 55, 91, 51,203, 18,101, 17, 44,140,252,224, 19,168, 84, 79,112,225,220,126,228,231,229,226,252,165, 20, +212, 36,130, 5,148,142,244,244,246,246,110,191,104,197,170, 61,189,194,218,250, 55, 87,120, 73,220, 26, 53,132,163,187, 23,242, + 30, 61,194,133,196,219,250, 53, 81, 39,147, 84,106,181, 93, 83,229, 0,165,247,200, 52,202, 45, 96,210, 76, 48, 12, 83, 62, 11, +130,105,187,115,104,103, 48, 2, 33,140, 20,208,233,116, 54,163,119, 74,165, 50,221,199,199,231,173,137, 19, 39,254,185,101,203, + 22, 38, 60, 60,188,205,239,191,255,254, 76,147,230,166,167,167,251, 2,128, 66,161, 40,116,118,118, 22,188,247,222,123,208,235, +245, 40, 41, 41, 65, 97, 97, 33, 30, 61,122,164,249,248,227,143, 37, 0, 32, 18,137,244,189,122,245,178,249,249,177,124,103,186, +122,202, 64,223, 85,245,132,247, 6, 21,228, 92,110, 92, 79,120,239,110,251, 64,110,213,242,157,233,234, 47, 63,172,187, 40, 35, + 39, 58, 69,249,228,200,183, 91,247,236,102, 71, 12,120,203,232, 45,191, 57,179,158, 31,118,118,237,107,187,189, 85, 13,214,211, + 70,174,170,146,155, 68,227, 27,119,168, 19,209,117, 96,187,217,139,166,126, 45,175,231, 94, 15, 6,131, 1,119, 83,239, 96,243, +158, 53,197, 69,154,199,139, 31, 37,211, 88,123,180, 26, 55,110,220,136,101, 89,236,219,183, 15, 0, 76,165, 13,214, 28, 58,116, +104,208,208,161, 67, 81,191,126,253,128,134, 13, 27, 74,172,149,209,168,138, 41,226, 95,211,110,116, 91, 16, 66,238, 36, 38, 38, +250,248,248,248,144, 29, 59,118, 60,209,233,116,243,106,170,225,229,229,245,245,129, 3, 7, 94,162,148,246, 10, 14, 14, 70,131, + 6, 13, 0, 0,201,201,201, 56,125,250,244,246,140,140,140,145,246, 70, 84,109, 64, 9, 33, 40, 44, 44, 52,213, 53,209,201,229, +242,167,213, 45,169, 16,185,178,123, 64,204,255,138,140,140,140, 31, 61, 61, 61,143,204,155, 55,239,139,166, 77,155,126, 52,102, +204, 24,182,121,243,230, 40, 40, 40,128,179,179, 51,188,189,189,145,145,145,129, 31,127,252,209,152,157,157,189,153, 97,152,249, + 74,165,210,234,168,110,107,154,117,235,214,133,183,183, 55,210,211,211, 77,154, 27,245,122,253,130,156,156,156,255,249,100,201, +255,118,136, 61,255,164,101,101, 26, 86, 26,141,198,174, 64,105, 84, 43, 47, 47,111,114, 86, 86, 86,245,242,237, 21,197,173, 56, +220, 62,125,250, 52,205,205,205,221,168,211,233,186,244,237,219, 23,131, 7, 15,198, 27,111,188,129,193,131, 7,179,166,168,213, +190,125,251,170, 21,202,179,166,105,154,236,153, 97, 69,125, 40,165,173, 1, 16,194, 48, 54, 39,123,182,199,137, 7, 7, 56, 55, +145, 73,184, 77, 50, 49,215, 89,165,101,206,168, 52,204,232,248,228, 66,139, 19,140,218,163, 89, 54,177,243,207, 0,160,209,211, + 97,105,105,202, 40,107,251,155,211, 44,235, 34,220, 65, 8, 97, 41,165,171, 41,165, 59,188,189,189,239,216, 19,118, 55,163,201, + 0,165,197, 69,143, 29, 59,246, 5, 33,100,152, 70,163,113,151, 72, 36, 57,148,210,159,122,244,232,177, 96,213,170, 85,214,116, + 57, 75,237,244,243,243,219,166, 80, 40,154, 1,168,150,115,101,122, 52,173, 47,171, 71,116, 59, 61, 61,125,168,181,107,175, 72, +211, 38,190, 71,154, 52,242,121,165, 73, 35, 5, 0,224,206, 61, 37,238,220,203, 56,122,251, 78,186,197,146,149, 86,223, 75,228, +175,201,158, 73, 89, 41, 6,106,199,100,207, 85, 53, 91,182,108, 25,203,178,150, 39, 18, 54, 7,199,113,202,164,164,164,242,249, + 46,172,181, 83,161, 80, 12,241,243,243,139, 84, 42,149,123,210,210,210, 62,177,247, 28, 54, 52, 59, 50, 12,115,144,227, 56, 89, +197,245, 12,195,100,155, 76,152,151,151, 87, 3,137, 68, 82, 41,201,221,154,230,210, 57,129,159,119,234,242,210,128,179, 39, 79, +239,157,177, 56,105, 97,197,109, 19, 6,184,142, 26, 58,126,242,210,109,107, 87,206, 88,179, 55,175, 82, 73, 13,115,154,173, 91, +183,142, 6,208,172,108,187,213,235, 52, 26,141,202,164,164,164, 74,195,202,237,253,229,237,214,154,180,117,113,172,183, 80,171, +211, 5, 49, 4, 84, 40, 18, 37,230,231,231,126,110,206, 92, 89,210,244,245,245,141,124,225,133, 23, 38,223,190,125,123,123, 90, + 90,218,251,166,245, 10,133,226,171,134, 13, 27,142, 79, 75, 75, 91,147,150,150, 54,189,234,113,150, 52, 27, 55,110,236, 28, 20, + 20,244,120,254,252,249,204,220,185,115, 17, 19, 19,227,154,158,158,110,247, 15, 60,107,215,222,160, 65, 3, 47,169, 84,186,149, +227,184, 38, 70,163,113,237,157, 59,119,236,154,124,187,170,102, 64, 64,128, 40, 63, 63,127,178,159,159,223, 20, 79, 79, 79, 19, + 69,177,168, 0, 0, 32, 0, 73, 68, 65, 84,207,135, 15, 31, 62, 72, 77, 77,141,200,202,202,250,206, 94,115,101,207, 61, 10, 9, + 9,209, 0,165,211,137,217,147,111,245,191,136, 54,253,221,154,190,190,190, 77, 56,142, 91, 28, 20, 20,244,246,168, 81,163,200, +181,107,215, 16, 21, 21,133,251,247,239,239,165,148,206,182,212,165, 91, 83,205, 35, 71,142,208, 7, 15, 30,236,100, 24,230,179, +244,244,116,179,223,115,124, 4,203, 14,202,190,216,254,150, 63, 0,129,182,246,121,253,245,215,155,182,107,215, 46,186, 85,171, + 86, 92,171, 86,173,138,106, 67,243,239,104,167,233,175, 75,151,122,142,181,173,249,119,180,243, 41, 53,153,103,252,251,199,175, +253,133, 23, 94,160, 40,243,112,207,193,235,201,107,150,253,173, 95,212, 74,113,241,216, 59,223,108,250, 50,208,167,234,182,121, + 19,235, 58,253,185,239,205,165,243, 38,214,117,250,167,219,249,119,104, 2, 96, 44,172, 39, 79,163,233,231,231,183,161,127,255, +254, 70, 63, 63,191,141,207,243,181, 3, 32, 13, 26, 52,144,252, 27,238,209,191, 77,211,211,211, 51,212,219,219,251, 15,111,111, +239, 63,124,124,124,218,213,178,230,111, 94, 94, 94,193,255,196,181,255,215,254,158,106,178,231,218,100,255,254,253,183, 1,132, +247,237,219,215,131,101,217,218,154,164,243,111, 35, 58, 58,199,122,221,136,127, 55,181, 17,186,255, 71,185,121,243,230,127, 98, +244,201,127,141,143,230, 92, 86, 2,248,164, 93,247,234,219,202, 74, 51,204,232,102, 71,183,224,191, 17,106, 33,106, 67,203,190, +165,106, 74,106,106,234, 71, 10,133, 98, 74, 77, 70, 31,254, 19,148, 93,159,221, 93,159, 60,246,147,149,149, 21, 11,224, 13,155, + 59,254,195,154,255,223,249,199, 13,150,137,223,127,255, 61,251,159,110, 3, 15, 15, 15,207,191,129,231,221, 92,241,240,240,148, + 86, 74, 53, 59,109, 12,173, 65,223,106,149,161,173,118, 97, 75,159,215,228, 53,121, 77, 94,147,215,228, 53,121,205,255,158,166, + 45,237,154,248,143,231, 25,187,146,220,159, 90,252, 63,144, 84,200,107,242,154,188, 38,175,201,107,242,154,188,230,223,175,249, + 95,163,118,198, 53,243,240, 88, 97,245,104,226,179,122, 52,241,249,187,246,231,225,225,225,225,225,121,222,120,110,114,176,106, +139,208,208,208, 0, 74,233, 80, 66,200,219, 0, 64, 41,221, 69, 8,217, 22, 27, 27,107, 87, 5, 90,153, 76,150,165, 86,171, 61, + 0, 64, 42,149,102,171,213,106,239, 10,155, 73,133, 63,160,116,174, 77,211,168, 53,139,161,192,198,141, 27,103,105, 52, 26,123, +230,215, 75, 32,132,196,115, 28, 23, 39,151,203,207,220,188,121, 51,197,158, 54, 3, 64,207,158, 61, 63,114,116,116,252, 92,165, + 82, 45, 61,114,228,200, 74,123,143,123, 90, 8, 33, 97,126, 10,175, 31,244, 6, 29,151,149,157, 55,135, 82,106,118, 26,158,117, +239,147, 8, 1, 41, 45, 26,185,238,125,178,108,220,247,116,150, 53,221,154,238,111,165,125,161, 66,161,112,130,167,167,231,107, +233,233,233,177, 0,102, 80, 74,249, 42,196, 60, 60, 60, 60, 60,255, 19,106,100,176, 58,132,184, 53, 39,156,110,186,144,165, 47, +233,141,228, 52,101, 68,203,206,199, 61,178,219, 4,152, 67,161, 80,248, 17, 66,194, 41,165,254, 12,195, 92,225, 56,238,168, 82, +169,124, 84, 19,141,144,144, 16, 63, 0,131, 1, 12,105,223,190,125,224,216,177, 99,241,194, 11, 47, 64,173, 86, 35, 38, 38,102, +230,207, 63,255, 60, 51, 36, 36, 36, 9,165, 83,202,236,136,139,139, 75,179,164,165, 86,171, 61, 76, 94,137, 16,226,241,246,219, +111,199,144,191, 38,225, 37,166,201,101, 41,165, 23, 0,156, 39,132,156,219,177, 99, 71,250,139, 30,178,246, 13,253,220, 95, 63, + 20,251, 96, 78, 85, 77,141, 70,227,145,240,199, 94, 80,131, 17, 79, 50, 82,209,244,205,193,229,219,162,222,236, 14, 90, 92, 8, +161, 68,148,208,245,247,115,241, 0,226, 82, 83, 83,227,235,215,175,159, 98, 77,179, 42,109,218,180, 89, 48,111,222,188,122,125, +251,246,157, 0,192,162,193,170,137,166, 37, 8, 33,146,246,161,173, 79,252,177,123,135, 20,132, 65,255, 1,111,111, 39,132, 12, +167, 85, 38,147, 94,247, 30,241, 36, 44,166,143,253,120, 44, 11, 0,235, 86,172,159,177, 98, 24, 89,245,241, 79, 52,203,199,199, +167, 43,165,116, 70,153,222,210,140,140,140, 19,235,222, 35,158, 96,240,233,216,143,199, 18, 0, 88,191, 98,253,244,117,239,145, +149,227,126,160, 53, 42,112, 71, 8, 25, 55,114,228,200, 85,139, 23, 47,102,203,138,240,245, 10, 8, 8,104, 78, 8, 9,160,148, +242,201,193, 60, 60, 60, 60, 60,127, 59, 54, 13, 86, 96, 96, 29, 23, 25, 67,167,200,196,116,112,175,151, 2, 26,189,241, 90, 71, +210,184,105, 99,164, 92, 75,105,114,226,228,165,247,186,182,115,186,167,210,146, 29, 42,142, 44, 79, 74,178, 62,127,216,231,163, +137,222, 96, 40, 61,167, 64, 0,227,214,163,190,123,123,244,232,209,104,212,168, 81, 8, 14, 14, 70,108,108,108,215,157, 59,119, + 78,246,243,243,187,164,215,235, 15, 74, 36,146,104, 91, 21,142, 67, 66, 66, 34,125,124,124,102, 76,157, 58,149,132,134,134, 66, + 34,145,148,111,147,203,229,232,222,189, 59,186,119,239,142,172,172,172,192,232,232,232,192,109,219,182, 69,132,132,132, 44,141, +139,139,155,105,207, 11,244,249,231,159,135,152, 89,125,132, 16,114,155, 97,152,184, 22, 45, 90,164,191,224, 45,127,209,211,221, +109,255,151,139,231, 3,128, 69,227,242,219,171, 29, 1,160,146,193,210,229, 62,132,212, 73,158, 32,146,201,226, 1,196, 1,136, +175, 95,191,126,130,189,154, 0, 16, 30, 30, 46,113,114,114, 34,148, 82,180,107,215,206,245,213, 87, 95, 77, 97, 24,102,229,161, + 67,135,214, 87,220,175, 38,154, 54, 8,155, 55,125,188, 40,247, 78, 2,174,159, 59,138,126, 33, 62,210,248,171, 55, 22, 1,216, +109,237, 32, 66, 24,102, 75,108,189,153, 31, 3,147, 57,142,251,252,218,181,107, 93, 0,192,223,223, 95, 12,224,196,214,152,186, +189, 71,118, 44,120,234, 50, 11,132, 16, 17,203,178,107,183,110,221,250,193,240,225,195,241,224,193, 3,156, 57,115, 6,114,185, + 28, 11, 22, 44,104, 56,117,234,212, 8, 0, 53,154,125,128,135,135,135,135,135,231,105,176,106,176, 94, 10,113,140, 25,208,165, +105, 72,223, 87, 59, 50, 47,248, 7, 64, 36,113, 40,223,214, 42, 56, 24,173,130,131,201,152, 49, 69,141, 19,227, 19, 63, 59,252, +231,197,217, 47,133, 56,198,157,142, 43,110,103, 73,207, 96,128, 32, 98,241, 54, 0,192,214, 77, 67,217,148,148,148, 70, 50,217, + 95,197,162,187,116,233,130, 46, 93,186, 48, 17, 17, 17, 97, 39, 78,156, 8,219,177, 99,135,206,199,199,103, 69, 70, 70,198, 78, + 43,205,156,177,115,231, 78,194,178, 44, 88,150,181,184,147,151,151, 23,122,246,236, 9, 47, 47, 47, 50,125,250,244, 25, 0,204, + 26, 44,169, 84,154, 77, 8,241, 0,128,186,117,235, 26,231,205,155,151, 72,203, 0, 0,142,227, 46,176, 44,123,158, 16,114, 97, +207,158, 61, 25, 77,125,100, 62, 78, 18,135,163, 27, 55,172,134,190,240,161,171,165,243,151, 40,211, 75,159, 84,169, 60, 45,118, +116, 72, 16, 59, 58,198,139,229,242, 56, 0,241, 0, 18,236,213, 4, 74,205,149, 76, 38, 59,181, 97,195,134,186, 0, 48,113,226, + 68,151,146,146, 18,151,209,163, 71,207, 4, 80,110,176,106,162,105, 9, 66,136,203, 75, 29, 66,239,175,138,252,194, 57, 56,172, + 51, 46,236, 90,135,252,252, 98, 20, 23,149,128,227,184,106, 51,255,142,251,129, 62, 92,247, 62, 89,182,238,155,245,159, 18,134, + 33, 65,175,206,192,171,174,116,146, 66,161,184, 74, 8, 17,138,197, 98,147,174,192,215,215, 87,209,188,121,155,101, 47,116,126, + 17,235, 87,174, 5,229, 56, 10, 96,153,189,209, 43, 66,136,135,147,147,211,190,163, 71,143,134,181,109,219, 22, 23, 46, 92,192, +157, 59,119, 48,126,252,120,237,248,241,227, 69, 35, 70,140, 32, 83,166, 76,153, 72, 8,217, 69, 41, 61,251, 52,215,207,195,195, +195,195,195, 99, 47, 86, 13,150, 84,100,108, 59,111, 85, 34,140,197,183, 65,245,169,160,186,172,106,251, 56,184,248,161, 69,144, + 39, 28,196,238,204,149,107,223,180,173,184,205,214, 8, 3,147,185,218,245,181,162,165,170, 56, 83, 4, 0, 50, 71,111,221, 91, + 83, 50,174,182,109,219, 22,238,238,238,162,115,231,206, 77, 1, 80,110,176,204,104, 18,237,229, 88, 92,127,163, 19,154, 94,207, +131,131,131, 3, 76, 95,220, 38, 82, 82, 82,112,234,212, 41, 60,120,240, 0, 77,154, 52, 1,254,202,161,170,166,169, 82,169,188, +122,245,234, 21,189,116,233,210,151, 35, 35, 35,175,108,223,190, 61,156, 82,106,118,126,170,192,250,117, 92,196, 84,120,116,211, +250,111,132,208, 22,187,222,184,116, 22, 45, 95,251,208,108, 59, 27,189,241, 22,198,230,151,118, 61,254, 26,160,128,212, 89, 14, +137,220, 41,161,231,145, 75,229,145, 43, 0, 9,246,106,118,235,214,237, 61,129, 64, 48, 7, 64,157,111,191,253,214,197,197,197, +133,217,183,111,159,110,195,134, 13, 69, 34,145, 72, 75, 8, 89,242, 52,237,180,134,144,101, 23,126, 53,111,186,179, 3, 99, 64, +252,193,159,144,254, 32, 21,151,111,101,232,127, 57,157,108,212,234,141,163,204,189,158,227,190,167,179,166, 14,144,252, 16,155, +217,228,143, 62,115,199, 55, 91,212,215, 19, 58,157,110, 83, 78, 78, 14, 70,143, 30, 13,142,227,208,185,115,231, 78,148,210,140, + 73,147, 38,161, 73,147, 38,216,244,251,205, 18, 65,225,197,240,159,255, 44,140, 53,167, 89, 21, 66, 72, 96,131, 6, 13,142,158, + 56,113,194,211,199,199, 7,209,209,209,200,202,202,130,183,183, 55,198,143, 31, 47,142,140,140,220, 90, 88, 88, 56,112,241,226, +197,210,164,164,164, 29,132, 16,191, 50,207, 92,235, 35, 96,120, 77, 94,147,215,228, 53,121,205,191,133,182, 0,220, 1,228, 0, +184, 84,101, 25,101,207, 97,102, 57, 23,165,223,249, 21, 39, 47,207, 69,105,254,180, 59, 0, 35,128, 24, 0, 53,158, 83,216, 22, + 2, 0, 32,132,116, 1, 16, 13, 96, 62,165,116, 94,213,157,116, 25,209, 16, 55,124, 19,144,182, 4,213,222, 6,167,205, 0, 21, +122,160,184, 68,138,220,251, 15,112,253,194, 46, 80,131,237, 57, 50, 5, 2, 24, 86,175, 24, 42,112,114, 0, 68, 18,119, 93, 81, + 81, 17, 28, 29, 29,161, 42,206, 20,141, 24, 93, 30,217, 18,157, 56,113, 2,113,113,113, 80, 40, 20,229,109,180, 6,213,150,246, + 34,106,181, 90,104,181, 90,100,245,110, 7,199,246, 47,227,241,176,241, 56,118,236, 24,114,114,114, 32, 18,137, 32, 18,137, 96, + 48,216, 46, 22,207,148,205,196,107, 10, 90,153,219,199,215,151, 72,157,140,178,253,171,151, 47,113,118,150, 59,120,198, 30,253, + 13, 15, 30, 84, 55,160,230, 16, 59, 58, 64, 44,115, 72, 16, 59,202, 42,153,171,154,104,178, 44,187, 96,247,238,221, 62, 26,141, + 6, 34,145, 8,187,118,237,210,109,217,178,229,106,113,113,241, 75,113,113,113,229,121, 70,207,210,206,170,184,185,187, 31,120, +243,221, 15,199, 47,122,191, 39, 84,197,106,236, 61,157,140, 63,175,220,235, 11,224, 12,165,212, 98,133,251,175,247,106,110,249, +248,248,116, 31, 61,122,116,194,158, 61,123,234,125,245,213, 87, 48, 26,141, 48, 24, 12, 48, 24, 12,229,207,141, 70, 35,182,111, +223,142, 51, 23,147, 39, 41,149,133,118, 77,166, 75, 8, 81, 52,106,212,232,216,197,139, 23,221, 29, 28, 28, 16, 21, 21,133,252, +252,124,140, 27, 55,174, 60,114,149,159,159, 63,120,253,250,245,111,221,191,127,255,171,211,167, 79, 63, 2,192, 2,120,238,103, + 13,224,225,225,225,249,255,132, 13, 47,226, 78, 8,217, 79, 41,237, 3,160, 7, 0,113,133,101, 16, 66,246, 3, 64,213,229,153, + 51,103,206,142,136,136,184,106, 90, 54,237, 51,107,214,172,150,145,145,145, 75, 58,116,232,176,227,220,185,115,119,241,119, 25, + 44, 0,209,148, 82,139,185, 47,154,219, 63, 67,115,247, 23,136,188,187, 66,220,120, 16,132,245, 58, 32,237, 70, 52, 18,142, 45, + 71,250,205, 51,160,156, 17,158,126, 45,108,158,108,225, 38, 42, 84, 40, 20,113, 74,165, 18,241,241,241,184,125,251, 54,164,210, +106, 61, 75,248,243,207, 63, 1, 0,158,158,158,118, 93,132,184,109, 39,248, 37,102, 34, 45,168,116,192,159, 95, 98, 38, 0, 96, +201,172, 89, 16,139,197, 16,137, 68,229,251, 26,141, 70,155,122,164, 44,171,189,172, 91,176,218,232, 64, 66, 8,105,234,233,180, +115,238,204, 9, 13, 26, 53,121, 65,113,241,192,175,184,123, 55, 3, 15, 31,218,119,127, 36,114,199, 4,137,147, 99,188, 88,246, + 87,183,224, 83,104,254, 58,112,224,192,247, 6, 12, 24, 32,107,223,190,189,228,251,239,191,207,175,106,174,158,181,157, 21,241, +246,246,126,245,245,215, 95, 63, 48,102,204, 24,244,235,213, 3, 67, 59,251,211,244,236, 2, 21,128, 40, 74,169,205, 23, 53, 35, + 35, 35,195,199,199,167,231,155,111,190,249,115,203,150, 45,253, 41,165,104,209,162, 5,250,245,235,135,221,187,119, 35, 57, 57, + 25, 69, 69, 69,186,211,167, 79,175, 80, 42,149,155,109,233,149, 93,159, 67,221,186,117, 15, 31, 63,126,220,221,193,193, 1, 71, +143, 30, 69, 73, 73, 73,181,200,213,146, 37, 75,164,247,238,221, 91,115,228,200,145,134, 40,157, 23,142, 55, 87, 60, 60, 60, 60, +207, 31, 86,189, 8, 80,106,156, 40,165,125, 42, 26,166,170, 70,203,244,220,180, 95, 68, 68, 68,249,178,233,152,200,200,200, 37, + 21,150,109, 71,136,158, 2,147,193, 10, 39,132, 80, 0,225,148,210,147, 21,119, 40,175, 62,192, 25,160,203,136,130, 46, 35, 10, + 14, 65,115,176,111,213,176, 74, 66,246, 68,134,204,161, 86,171, 33, 20,187,233,182,110, 26, 42, 2, 0, 35,117,212, 85, 59,183, + 13,106, 82, 44,213,158,118, 18, 66,152, 10,186,213,204,131,175,175,239,215, 29, 58,133,117,126,161, 85, 59,135,139,135,247,224, +214,205, 7,200,205, 45, 0, 40,212,150, 52,163, 6,189,134,226, 59, 41,144, 57, 59, 39,188,122, 60,177, 82,228,234,105, 52,163, +162,162,166,117,232,208,225,243, 93,187,118, 41,155, 52,105, 34, 17, 8, 4,186,138,230,234,105,219, 89, 17,133, 66,209, 73, 32, + 16, 28,101, 24, 70,214,171, 87, 47, 76,154, 52, 9, 43, 87,174, 52,112, 66,105,159,245,135, 99, 7, 62,209,232,230,216, 99,174, + 76,100,100,100, 92, 6, 16,208,176, 97, 67,137,193, 96,232,250,198, 27,111, 28,236,221,187, 55,206,159, 63,143, 99,199,142, 53, +211,233,116,153,101,231, 93, 0,192,147, 97,152,165, 86,102,114,103, 68, 34,209,142, 99,199,142,181, 84, 40, 20,136,138,138, 66, + 73, 73, 73,121,228,106,228,200,145,149, 34, 87,231,206,157,123, 4,222, 92,241,240,240,240, 60,207, 88,244, 34, 38, 76,166,169, +170,201,178,135, 10,230, 75, 53,115,230,204,217,132,144,253,101, 17, 46, 21, 0,229,179, 55,191, 50,130,178, 6,159, 44, 61, 55, +161,168,146,159,100, 14, 99,209,221,106,235, 56,238,233,191,183,154,245, 56,114, 85, 38,147, 97,253,250,245,112,112,248, 43,145, +222, 94,227, 84,124,112, 15,210,198,191, 91, 30,185, 50, 69,178,240,234,136,106,251,218,105,176, 76, 17,172, 11,168,210, 69,232, +235,235, 59,161,117,235,214,239,111,220,242,179, 83,228,231, 51, 10, 10,175, 95, 21,168, 75, 52,142, 26,189, 65,119,251, 97,174, +197,242, 8,134,194,124, 72, 28, 29, 19,132, 14, 50,115,230,234,169, 52,207,159, 63,175,238,222,189,251, 15, 75,150, 44,105,207, +113,220,150,218,104,167, 9,133, 66,209,201,205,205,237,200,154, 53,107,100, 50,153, 12, 26,141, 6, 75,151, 46,197,159,127,254, +217, 39, 51, 51,243, 8,128, 35,182, 52, 44,161,211,233, 62,232,209,163,199, 55,211,166, 77,131, 94,175,199,160, 65,131,112,255, +254,253,163,183,110,221, 90,233,235,235, 59,109,220,184,113,138,122,245,234, 97,236,216,177, 34, 0, 35, 45,200,124,185,109,219, +182, 62, 65, 65, 65, 56,121,242, 36, 10, 10, 10,224,237,237,141, 9, 19, 38,136, 35, 34, 34,182, 22, 21, 21, 13,140,136,136,224, + 35, 87, 60, 60, 60, 60,255, 18,236,245, 34, 21, 35, 81, 53,212, 55, 29, 39,140,136,136,184, 26, 17, 17, 81, 41,194, 85,219,152, +114,176, 76, 78, 38,220, 76,131,170, 29,196,169,170,231,240,112, 70,251,191,187,236, 53, 78,246,116,231, 1,127,229, 96, 85,133, + 84, 25,177, 71, 8,169, 73, 14,214, 17, 74,233, 57, 84, 48, 88,190,190,190,253,189,188,188,190,220,182,109,155, 76,169, 84,194, +183,121, 96,157, 3,187,127,209,120, 58, 74,212,233,121,121, 35, 18, 51,158,236,178,164,201,169,139, 19,164,142,242,120,169,131, +188,170,185,122,106, 77, 0,248,243,207, 63,167, 86, 93,247,172,154, 10,133,162, 83,189,122,245,142,172, 89,179,198, 65,169, 84, + 66, 36, 18, 65, 46,151,227,248,241,227, 40, 51, 87, 79,141,175,175,239,188,137, 19, 39,206, 29, 57,114, 36, 30, 63,126,140, 99, +199,142,161,107,215,174, 88,179,102, 77,131,227,199,143,127,211,177, 99, 71,176, 44,139,168,168, 40,232,245,250,155,230, 52, 8, + 33, 3,198,140, 25, 51,237,173,183,222, 66, 76, 76, 12, 50, 51, 51, 49,118,236, 88,237,132, 9, 19,202,115,174,214,173, 91,247, +214,189,123,247,248,200, 21, 15, 15, 15,207,191, 4,107, 94,164, 10, 7, 0,188,110, 90,168, 24,205,170,104,190, 76, 17,170,138, +203, 85,247, 47,219,110, 87,175, 78, 77, 49, 69,176, 44, 71,173,168, 17,172,107,107, 24,243, 46,151,175,226, 84,153,149,118, 17, + 73,228, 48,218, 97, 92, 62, 31, 77,244, 51,135, 66,240,227, 2, 6, 66,177,155,174, 89,143, 35, 87, 45,237, 43,151,203,193,113, +102,243,203,171, 98, 20,245,126,139,109,250,106,127,220,105,229, 5,170,215,149, 71,178, 48,187,252,117, 5, 33, 4, 34,145, 8, + 90,173, 22, 48,211,237, 87,133, 24, 66,200,125,150,101,207, 83, 74,105,120,120,248, 38,189, 94,223, 95, 46,151,215, 29, 61,122, +180, 46, 55, 55, 23,123,247,238,197, 15, 63,252,160,122,162, 19,196, 62,126,164, 31,118, 71,249, 36,221,138, 94,194,235, 39,175, + 86,138, 92,213,130,102, 53,106, 67, 83,161, 80,116,242,240,240, 40, 55, 87, 18,137, 4,114,185, 28, 25, 25, 25, 16, 8, 4,207, + 84,164,179, 97,195,134,146,176,176,176, 79, 71,140, 24,129,235,215,175, 99,230,204,153,153, 74,165,114,207,190,125,251,198, 78, +153, 50, 69,208,165, 75, 23,100,103,103, 99,195,134, 13,250,152,152,152, 37, 89, 89, 89,203,204,233, 8, 4,130, 15, 22, 46, 92, + 72,149, 74, 37,185,115,231, 78,165,200, 85, 97, 97,225,192,136,136, 8,233,221,187,119,249,200, 21, 15, 15, 15,207,191, 8, 27, +249, 87,185,101,230,233,161,153,101,182,130,177,170,186,156, 93,101, 25, 0,180, 85,182, 39,214,206, 21, 84,198,234, 8, 61,189, +145, 41,216,182,230,195, 58,125,223, 30, 7,169,215,203,208,222,251, 21,156,234, 97,185,193, 18, 73,157,224, 92,175, 62, 10,159, +168,112,246,218, 93,232,141, 76,129, 53, 61,131, 1,130,137, 31,255, 53, 90,208,197,197, 5, 5, 5, 5,149, 34, 90, 14, 14, 14, + 80, 40, 20, 40, 44, 44,196,174, 93,187, 96,171,102, 17,165,116,225,136, 17, 35,190, 24, 55,110, 28,211,116,200, 40, 60,185,112, +186,210,118, 66, 8,164, 82, 41,100, 50, 25, 50, 50, 50,112,227,198, 13,142, 82,186,208,154, 38, 33,228, 34,195, 48, 9, 59,118, +236, 72, 15, 15, 15, 31, 89,183,110,221, 33,163, 70,141,146,197,196,196, 96,225,194,133,130,168,168, 40,221,165, 75,151, 12, 70, +163,113,106, 70, 70,198, 6,107, 90,101,122, 85,205,213, 51,107, 86,165, 54, 52, 21, 10, 69, 71,133, 66,113,100,229,202,149, 14, + 89, 89, 89,144, 72, 36,112,114,114, 66,106,106, 42, 22, 46, 92, 88,108, 48, 24,122,213,180, 93, 85,144, 56, 58, 58, 74,244,122, + 61,182,108,217,130,140,140,140, 14,153,153,153,169, 94, 94, 94, 27, 62,250,232,163, 85,254,254,254, 45,110,220,184,113,243,201, +147, 39,227,179,178,178,174, 91, 18,113,113,113,233,224,238,238, 78,206,159, 63,143,177, 99,199,106, 39, 78,156, 88,158,115,197, + 71,174,120,120,120,120,254,147,196,216, 88,126,238,176,106,176,114, 74, 84, 30, 27,182,238, 89,182, 99,247,222,209, 99, 70, 12, +145,134,135,143,128,176,232, 10,140,143,226,160,104,214, 9,132,117,192,197,132,120, 92,190,157,166, 46, 81,179,155, 10,117,170, +233, 21,143,183, 53,219,118, 65, 65, 1, 26, 54,108,136,163,155, 94,108,169, 85,103,139,130, 93, 1,130, 58,186,168,227,189,175, +158, 58,117,234, 9,128, 77,205,154, 53,171, 84,100,180,170,102,124,124,252,252, 54,109,218,236,155, 53,107, 86, 68,179,102,205, +122,141, 89,176, 22,162,143, 71, 64,149,124, 25, 14,225, 3,225,226,226,130,188,188, 60,196,198,198,162,168,168,232, 48,165,116, + 86, 66, 66,194, 21,107,154,148,210, 11, 45, 90,180, 72, 15, 11, 11,115,210,106,181, 43, 63,249,228, 19, 89,113,113, 49,114,115, +115,241,232,209, 35, 92,188,120, 49, 74,175,215, 79,126,248,240,225, 61, 75,215, 86, 81,147,227,184,114,115, 85, 91,154, 21,169, + 45, 77, 71, 71,199,233,123,247,238,173, 20,185,122,240,224, 1, 22, 44, 88, 80,172, 86,171,123, 41,149, 74,187, 10,116, 90,187, +239, 28,199,193, 96, 48,128, 82, 10,177, 88, 92, 8, 0,101,102,170,187,189,154,185,185,185,209,247,239,223,239,231,232,232,136, +137, 19, 39,138,151, 44, 89,178,181,160,160,160,198,145,171,127,203, 12,243,188, 38,175,201,107,242,154,255, 31, 52,255,107, 88, + 53, 88,201,201, 84, 7, 96,114, 64,128,243,252,165,235,183,173,255,113,231,238, 1,163, 7,191, 41, 8,105,213, 21,247,178,246, +225, 84,236, 9,195,227, 34,186,183, 72,203,142, 77, 78, 46,180, 57,246, 95, 32,128, 97,214,156,161, 2, 0, 16, 10, 97,152,221, +167, 79,116,203,150, 45, 59,247, 13,202, 22,141,157, 88, 26,217, 90,191,122,168, 40, 58, 58,122,167, 68, 34,249,246,238,221,187, +133,246, 92, 68,153, 97,122,173,109,219,182, 47, 79,155, 54,237,203,222,141,124,219, 13,232, 16, 14,161, 80,136, 75,151, 46, 33, + 47, 47, 47,134, 97,152, 79,227,227,227, 79,217,163,183,111,223,190,116, 0, 40, 41, 41, 89,216,172, 89, 51,241,181,107,215,112, +251,246,109,164,164,164,192,104, 52,222, 74, 79, 79,175, 81, 66,156, 84, 42,189, 8,224,106,109,106, 86,164,182, 52, 85, 42,213, +146, 69,139, 22,189, 50,127,254,124,137,147,147, 19, 18, 18, 18, 48,127,254,252, 26,153, 43, 91, 80, 74,161,215,235,107, 52,242, +211, 12,159, 6, 5, 5,189,184,104,209,162,102,101,185, 92,124,228,138,135,135,135,135,231,185,194,174,201,158,203,204,211, 59, +193, 1,206, 77,150,172,253,121,147, 76,204,117, 86,105,153, 51, 42, 13, 51, 58, 62,185,208,236, 48,122,115, 44,220, 68,133, 21, +151, 23, 0, 8, 8, 8,112, 76,243,194, 19,211,186,180,135,128, 82,169, 92,106,175,102, 69, 46, 93,186,116, 10, 64, 88,112,112, +240,128,131,132,204, 6,238,130, 82,186, 36, 62, 62,126,111, 77,116,218,181,107,215,176,184,184,248, 71,157, 78,215,134,227, 56, +241,201,147, 39,161, 86,171,113,237,218, 53, 21,199,113, 86, 19,196,205,113,247,238,221,171,181,173,249,119,180, 51, 61, 61,253, +146, 66,161,232, 65, 8, 57,246,233,167,159, 74,106, 26,185,178,133,171,171,107, 73, 86, 86,214, 35,181, 90,237,246,240,225, 67, +173,171,171,235, 83,213, 30,161,148,222, 34,132,180,250,228,147, 79, 22, 76,155, 54,109,250,151, 95,126, 41,226,115,174,120,120, +120,120,120,158, 39,236, 50, 88, 38,202,204, 84,120,120,184,187,227,153,115, 57, 22, 43,119,215,132,228,228,228,226,207, 71,147, +242,200,150, 64,240,236, 21,182,203, 12, 85,141, 76, 85, 69,138,138,138,150,228,229,229,181, 47, 44, 44, 52,220,187,119, 79, 69, + 8, 49, 16, 66, 84, 28,199, 45,224, 56,174,198,249, 81,255, 38, 77,165, 82,121,214,203,203,235,165,179,103,207, 78, 41, 46, 46, + 94,163, 84, 42,207, 61,141,142, 57,226,226,226,244,222,222,222,239,190,241,198, 27,163, 56,142,219,144,145,145,161,127, 90, 45, + 74,169, 22,192,167,132,144, 61, 87,174, 92,249,245,220,185,115,153,224,205, 21, 15, 15, 15, 15,207,115, 66,141, 12,150,137,232, +232,218, 49, 87, 38,170, 70,182,254,105,110,220,184, 49, 24,192,224,255,143,154, 0,144,149,149, 21,251,119,232, 2, 64,102,102, +230, 81, 0, 71,107, 75,143, 82,122,137, 16,210, 8,165,163, 68,120,115,197,195,195,195,195,243, 92,240, 84, 6,139,135,231,121, +162,108, 74, 35,222, 92,241,240,240,240,240, 60, 55, 16, 0,129,230, 54,212,100,116, 0, 33,196,172,134, 53,108,233,243,154,188, + 38,175,201,107,242,154,188, 38,175,249,223,211,180,165,253, 95, 25,157, 72,158,113, 52,151,117,241,127,201,208, 80, 94,147,215, +228, 53,121, 77, 94,147,215,228, 53,255, 89,205,255, 26,204, 63,221, 0, 30, 30, 30, 30, 30, 30, 30,158,255, 26, 53,206,193,106, +215,174,221, 11, 0, 16, 19, 19,115,171,246,155, 83, 10, 33,100,130,183,183,247,232,214,173, 91,251,139, 68, 34,166,160,160, 96, +126,116,116,244,124,115,251, 6, 5, 5,197,190,242,202, 43, 77, 78,156, 56,161, 45, 59, 22, 21, 31,141, 70, 99,122,108,108,108, +232,223,213, 86, 30,235,120,123,123, 31,145, 74,165, 13, 74, 11,140, 82, 24, 56, 35,140, 28,133,209,200, 65,111,164,208,105,213, + 15, 52,197, 5,175, 62,149,118,155, 55,235, 27,141, 92, 4, 5, 93, 79, 40, 25, 75, 9, 93, 79, 40,249,136, 50,100, 61,225,232, +135, 16, 24,190,130, 65, 48, 77,192, 9,231, 40,147,119,166,213,246,181,253, 19,204,159, 63,255,153,126, 20,205,157, 59,215,236, +252, 83,193,193,193,251,165, 82,105, 83, 75,199,149,148,148,100, 38, 38, 38,118,125,150,115, 63,239,120,121,121,189,204, 48,204, +106, 0, 45,171,108,186, 14, 96,178, 82,169,252,243, 31,104,150, 85, 60, 60, 60, 78,177, 44,219,172,184,164,164,184,168,176,176, +137,147,147,211, 29,153,131,163,163,209, 96,188,153,155,155,253,242, 63,221, 62, 30,158,255,207,216, 52, 88, 33, 33, 33,205, 1, +116, 33,132,116,161,148,190,220,162, 69, 11,207,146,146, 18,132,132,132, 60, 36,132,156, 42,155,253,250,100, 92, 92, 92, 74,109, + 52,136,101,217,101, 43, 87,174,156, 58,113,226,196,114,147,148,148,100, 57, 10,201,178,172,111,100,100,100,157,212,212, 84,136, + 68, 34,136,197,226,242, 63,150,101,209,190,125,251, 26,157,223,213,213,213,201,195,195, 99, 62, 33,100, 32,195, 48,172,173,253, + 57,142, 51, 82, 74,119,102,103,103,207,205,203,203, 43,170,201,185,218,134,182,214, 3,196,194, 57,168,241, 82,236,101,171,163, + 43, 95,124,241,197, 88,129, 64,224, 11,152,159,216,218,220,115,163,209,152,126,245,234, 85,187, 12,167,171,171,171,147,212,193, + 97, 58, 97, 4, 61, 64,185, 22,165, 98,204,117,202, 25,142,169, 75, 74,150,217,115,189, 18,137,164, 65, 92,124,124,179,228, 27, +119,209,164,113,125,104,117, 6,104,180,122,236, 59,118, 9, 65,254,141,208,183,119, 79,123,154, 98, 22, 3, 71,230,205,153, 48, +172,219,146,213,219,219,206,158, 56, 68,190,100,245,246,208,217, 19,135, 56, 45, 89,179, 61,116,206,164,161, 78,139, 86,111, 11, +157, 51,105,104,157,197,171,183,105, 1,124,240, 52,231,120,191, 85,131, 98,198,104,144,152,219,198,177, 2,205,247, 87, 30, 56, + 62,245, 5, 60, 3, 75,150, 44,105,174,211,233,174,141, 28, 20,186,176,197, 11, 30,217,230,246, 41, 40,200,246,184,125, 61,246, +115, 8, 69,254,254,237,102, 91,253,255, 20,137, 68,141, 79,157, 58,213,204, 84,105,223,104, 52,194,104, 52,194, 96, 48, 64,171, +213,226,173,183,222,170,149, 1, 49,161,161,161,163, 40,165,139, 1, 16, 66,200,162,216,216,216, 53, 79,171, 69, 8,145, 11, 4, +130, 79,196, 98,113, 23,131,193,224, 15, 0, 66,161,240,154, 70,163, 57,105, 48, 24,190,161,148, 62,177,165, 81, 17,134, 97, 86, +196,196,196, 4, 56, 57, 57, 65,167,211,149, 79, 12,207,178,108,139,176,176,176,181, 0,154,217,171,229,235,235, 27, 75, 8,241, +173,201,249, 41,165,233,233,233,233, 53,250, 49,200,178,108,179,251,169, 74,143,134,245, 21, 0, 0, 7, 7, 71,199, 75, 73,247, + 60, 66, 90, 54,172,137, 12, 15, 15,207,223,128,197, 15,205,144,144,144,131, 0,186,180,104,209, 66,214,179,103, 79, 4, 7, 7, +163, 65,131, 6,144, 74,165, 0,128,188,188, 60,207,228,228,228,119, 18, 18, 18,222, 57,127,254, 60, 66, 66, 66, 84, 0,206,196, +197,197,153,141, 70,244,120,227,165,137, 82,185,100, 37, 0,228,100, 60,202, 76,191,147,189, 58, 51, 51,115, 25,165,180,252, 23, + 53, 33,164,201,200,145, 35,167, 76,154, 52, 9,251,247,239,199,246,237,219,161,209,104, 80, 80, 80,128,232,232,104,179,237, 52, + 26,141,233,195,135, 15, 23,164,164,164, 24,202, 52, 80,241,209,104, 52,214,104,194,100, 15, 15,143,249,131, 6, 13,250, 56, 32, + 32,160,124, 90, 23,189, 94, 95,254,248,248,241, 99, 76,153, 50, 5, 64,105, 85,114,142,227,112,252,248,241,137, 51,102,204, 0, +128, 79,204,105,246,236,210, 52, 86, 64,136,175,233, 66, 57,142, 75,143, 58,117, 39, 20, 32,236,165,216,196, 74,206,200,148, 19, +215,174,109, 27,155,230, 78, 32, 16,248,198,199,199,123,136, 68, 34,187,174,141,227, 56, 4, 7, 7,219,181,175,143,143, 79, 87, + 71,185,243,246, 1,131,223,175,219, 38, 56, 88,232,171,240,134,222, 96,192,221,123,169,237, 18, 19,226,218, 28,253,227,151,209, + 62, 62, 62, 67, 50, 50, 50, 78, 88,211,209, 27, 57, 36, 94,189,133,168, 51,241,120, 67, 36, 69,137, 90,139,162, 18, 45,126,252, +253, 44,210,179,173, 78, 93,105,149,176,176, 48, 31, 71, 65,189,176, 73, 31,244,119,252,106,221, 86,199, 73, 31,244,199,215,235, +127, 44,127,156,248,126, 63, 44, 91,183, 85, 62,233,253,126, 88,189,225,135, 14, 97, 97, 97, 62, 23, 47, 94,204,176,164,103,233, + 30, 49, 70,131,100, 83,114, 6, 11, 0, 57, 27, 54, 64,247,240, 33, 20,115,231, 2, 0,198,180,244, 53,107,188, 44, 17, 24, 24, + 88,110,136,173, 97, 48, 24,210,147,146,146, 44,126,209,154,204,149,193, 96,160, 2,129,224,243,211,135,230,239,234,216,174,121, +165, 23, 51,229,102, 74,157,121, 95,204,125,251,215,195, 69,244,157, 94, 78,215,174,197, 44,177,106,178, 56,142, 99, 52, 26, 13, +110,222,188,105,182,202, 62,195, 48,182, 38, 72, 55, 75,120,120,184,164,184,184,120,155, 92, 46,111, 93, 92, 92, 60,138, 82,250, + 69,116,116,180, 39,195, 48,232,209,163,199, 23,161,161,161,247, 36, 18,201, 58,181, 90,157, 32,151,203,135, 68, 71, 71,107,236, +209, 37,132,188,236,228,228,244,227,111,191,253, 86, 55, 56, 56,152,201,205,205, 69,163, 70,141,144,151,151,215,238,212,169, 83, + 33,239,191,255,254,251,132,144,225,148, 82,187,102,111, 40,227, 69, 71, 71, 71, 58, 98,196, 8, 98, 52,254,117,185,223,127,255, + 61, 66,154, 62,108, 58,246,109, 89,137, 90, 71, 11, 78, 95,150,126, 68, 25,122,230,254,253,124,139,111, 96, 66,136,239,252, 77, +147, 61,196, 98, 49,244,122,125,249, 31,229, 0, 80,128,114, 0,229, 40, 40, 5, 64, 9, 56, 35,135,175,103,109,170, 65, 83, 43, +227,224,232,232,224,229,229,253, 80,230,224,224,240,247,101,213,242,240,240,212, 4,107,191, 74, 95,139,142,142,134,193, 96,128, +147,147, 19, 88,182,242,247,189,171,171, 43, 94,126,249,101,132,133,133,161, 71,143, 30,184,113,227,134,236,203, 47,191,180, 24, +142, 24, 58,181, 15,252,154,121, 2, 0, 40,165,222,167,247,199, 71,124, 55,127,119, 61, 0,211, 42,236, 54,106,204,152, 49,228, +209,163, 71, 24, 56,112,224, 41,141, 70,211,143, 82,106,117,186,156,196,196,196, 90,237,254, 35,132, 12,244,246,246,198,142, 29, + 59,160,213,106,171,109,119,118,118,198,213,171, 87,203,151, 89,150, 69,155, 54,109, 88, 66,200, 64, 88, 48, 88, 12, 33,190,135, +162,111,121,152,150, 7,245,109, 35,122,165, 75,211,135, 2, 70, 76, 1,144, 57,115,230, 0, 40, 53, 87,148, 82, 44, 88,176,192, +238,246,138, 68, 34, 92,191,126, 29, 44,203,226, 78,231,230, 0,128,192,248, 52,176, 44,139,196,214,165,191,106, 59,220,124, 12, +129, 64, 0,185, 92,110,151,166,143,143, 79,184,167,183,239,111,179,230, 70, 56,169,245, 20, 7,142,199, 32, 85, 25, 5, 74, 41, +188, 61, 92,209, 49, 36, 88,232,223,170,181,199,230,181,203,126,243,241,241,233,151,145,145, 97,222,253, 2, 48, 24,140,240,111, +222, 24, 91,126, 59,133,197,235,118,225, 81,161, 26, 69, 37,165,175,107,143, 14, 1,248,254,107,187, 47,181, 18, 44,203, 46,107, +209,184,177,223,150, 95,143,160, 99,251,118,216,242,235, 97,116,104,223, 14, 91,118,150, 46,111,221,121, 4, 47,117, 8,195,214, +157, 71, 16,232,223,172,254,163,251, 5,203, 96,165,182, 87,181,123,212,175,244, 30, 53, 98, 69, 4, 40,189, 55,247,199,142, 5, +128,114,131, 85, 83, 76,134,216,214,126,214, 76,112, 5,115,133,236,236,108,146,159,159, 79, 93, 92, 92,222,174,104,178, 76,230, +234,151, 67,133, 80,165,172, 38, 63,255,124,146,123,247,221, 46,215,174,197, 44,241, 7,230,154,157, 68, 91,167,211,221,123,229, +149, 87, 40, 0,104,181, 90, 31,177, 88, 92,201,181,115, 28,167,232,212,169, 83, 53,131,102,171,235,176,184,184,120,219,206,157, + 59, 7,120,122,122,162, 95,191,126, 71, 3, 2, 2,196, 14, 14, 14, 56,116,232, 16,124,125,125,235, 57, 59, 59, 31,140,136,136, +192,242,229,203,235, 31, 61,122,116, 59,128, 1,182, 94, 31, 66, 72,143,174, 93,187,238,216,191,127,191, 84, 36, 18, 65,165, 82, +225,234,213,171,168, 83,167, 14,196, 98, 49,250,245,235,199,118,236,216,209,173,107,215,174,187, 9, 33, 67, 40,165,199,108,105, +154, 80,169, 84,116,214,172, 89,112,112,112,128,163,163, 99,249,159, 76,108, 36,235,231, 53,150,125, 28,153, 37,155, 51,227,221, +200,141,155,255, 56, 81,191,126,157, 47, 82, 83, 11,242, 45,105,249,178,173, 48,115,218, 76, 0, 0,195, 48, 16,139,197,149,162, +236,166,231, 34,145, 8,109,218,180,177,217, 54,127,127,255, 13, 44,203,186, 87, 92,199, 48, 12,251,249,103,179, 13, 87,174,222, +112,212, 27,224,168,214,234,177,104,193, 23, 6,150, 97,217,192,192,192,189,148,210,156,171, 87,175,126,100,239,245,243,240,240, +212, 30, 86,195,254,114,185, 28,151, 46, 93, 2, 33, 4, 78, 78, 78,112,118,118, 70,157, 58,117, 80, 88, 88,136,228,228,100, 92, +191,126, 29,247,238,221, 3,195, 48,104,210,164, 9, 80, 90,246,161,156,138, 35, 12,182,125,189, 31, 82,185, 4,132, 0,109,123, +182, 70,104,183, 32, 36, 93,188, 51, 89,161, 80,108, 82, 42,149, 55, 9, 33,130,192,192,192,247,219,183,111,143,229,203,151, 67, +163,209,124, 99,206, 92,153, 27,181,240,209, 0,225,105,145,128,241,211, 25,184,180, 13,123,245, 47,181,105,211, 38, 54, 56, 56, +184,209,149, 43, 87,244, 64,105, 52,171,106, 55, 89,197,188,172,170,154,185,185,185,224, 56,179,169, 42,213,224, 56, 14,249,249, +213, 63, 99,171, 76, 30, 93,105,219,162,136,229, 46, 69, 5,217, 88,184,244, 39,232,245,122, 76,157, 58, 21, 28,199,129,227, 56, + 24,141, 70, 60,126,252, 24, 48,243, 51,180,106, 59, 77,215,196,178,108, 37, 3,108,107,217,154,166,187,187,187,163, 68,234,176, +125,218,156,133, 78,151, 83,210,177,255,120, 12, 40,165,216,183,241, 11, 0, 64,191, 49, 11,144,145,153,131,142, 33, 45, 48,242, +195, 79,156, 86, 68,204,217,238,238,238,222, 52, 39,231,175,226,179, 21, 53,245, 6, 14,187, 14,159, 71,230,163, 39, 24, 62,160, + 27, 52, 90, 61,178, 31,102,226,135,117, 95, 97,220,123,123, 80, 87, 46,243,106,210,164, 73, 74,197,215,200,201,201,137, 85,171, +213,167, 82, 82, 82, 62, 48,167, 9, 0,122,189,254,181, 89, 31,143,198,138, 77,187,208,178,137, 39,246, 71, 93, 64,219,192, 6, + 56,120, 60, 6, 29, 90, 53,194,225,147,177,232, 24,212, 4, 39,206, 39, 97,242, 71,239, 98,250,228, 83,175, 89,187,246,106,247, +104,201,114,151,162,194,108, 28, 88,178, 21,217,107,214,224,193,196,137,104, 91,246,158,184,196, 48, 16,249,248, 0,206,182, 95, + 79,115, 92,191,126, 29, 26, 77,245, 64,141, 68, 34, 65,139, 22, 45,172,106,154, 34, 87, 15, 31, 62, 36, 15, 31, 62,132,163,163, + 35,185,118, 53,201,232,223, 50,240,109, 99,222,175,155, 0,160, 52,114, 85,136,146, 27,171,160,186,185, 26,162,252, 43,204,198, + 5, 31,106,199,124,241,237, 53,148,253,143, 86,109,103, 98, 98, 98,249,235,211,190,125,251,235,103,206,156,121,177, 66, 20, 24, + 6,131, 65,100, 48, 24,154,153,186, 13, 13, 69,136,103,115, 0, 0, 32, 0, 73, 68, 65, 84, 6, 3, 52, 26, 13,134, 12, 25, 82, +254,198, 50,119,237, 50,153,172,181,167,167, 39, 46, 94,188,136,121,243,230,137, 91,182,108,137,155, 55,111,130, 97, 24,140, 26, + 53, 10, 1, 1, 1,200,201,201, 65,219,182,109,113,250,244,233,106, 46,195,204,123,222,201,209,209,113,243, 31,127,252, 33,101, + 24, 6, 69, 69, 69,224, 56, 14,157, 58,117, 2, 33, 4, 87,174, 92,193,103,159,125,134, 61,123,246,224,183,223,126,147,133,132, +132,108, 38,132,248, 83, 74,139, 44,105, 86, 60,157, 70,163,161, 82,169, 20, 82,169, 20, 18,137, 4, 18,137, 4, 34,145, 8, 42, + 45,139, 15,231,222,211, 8, 37,114,174,117,171, 38, 77,199,141, 25,192, 44,140,252,225, 56,128,125,150, 52,149,244, 42, 92, 91, + 18, 28,253, 33, 22,253,198,190, 12,145, 80, 12,145, 80, 4,177, 72, 12, 97,217,115,145, 80, 4,177, 80, 2,182,158,186,122, 99, +170,104, 10,133,194,122,241,241,241, 46, 21,255,151, 13, 6,195,181,137, 19, 39, 54, 25,208,183,143,231,175,123,246,179,195, 6, +245, 51,122,121,122,228,166,165, 61,184, 5,192, 37, 36, 36,132, 90,211,172, 13,120, 77, 94,243,127, 68, 91, 0, 21,127, 96,104, + 1,136,203,158,231,162,244,179,205,173,202,122, 0,200, 41,123,116,183,176,156, 11, 32, 25,128,127,217, 58, 35,128, 24, 0, 54, +231, 87,182,133, 0, 0, 8, 33,229,255,132,148, 82, 82,117, 39, 74, 41, 10, 11, 11, 81, 88, 88,136,180,180, 52,172, 95,191, 30, + 66,161, 16, 2,129, 0, 2,129, 0, 12,195,148,231, 43, 88,226,216, 31,167, 87, 3, 88, 29, 18, 18, 34,252,238,252,174,131,115, +182, 76,238, 30,214, 51,132,141,141,186,242, 54,128, 69, 0, 94, 27, 49, 98, 68, 61, 0,216,186,117,107, 46,128, 67,246, 94,132, + 72,192,248,173, 90,249, 83,253, 73,147,135, 1, 40,205,203,218,180,105, 83,221,244,244,244, 74,191, 18, 69, 34,145,205,188, 44, + 74,233,206, 91,183,110,125,236,237,237, 93,254, 69, 82,177,155,208, 96, 48, 64, 42,149,150,155, 33,141, 70,131,109,219,182, 25, + 40,165, 59,173,104, 34,229,234,159,184,121,245, 4,140, 70,174,146,153, 82,171,213,152, 55,111, 94,121,244, 10, 0,198,150, 69, + 74,236,197, 90,228,138,101, 89,156,105, 82,234, 4,122,231,208,106,185, 90, 85, 17,138,165, 83,123,191,249,174,171,129,178,229, +230,170,244, 26, 74,205,133, 88, 40,128, 76, 34,196,205, 59,105,104,228, 19,130,238,189,250,215, 61,118,112,247, 84, 0,102, 7, + 33,232,141, 28,122,135,135, 96,221,142, 19, 40,124,162, 70, 97,126, 30,114,211,174,227,218,229, 24,136,197, 98, 92,184,112,193, +169, 78, 29, 23,167,198,141, 27,193,104,228,112,230, 66, 44, 28, 28,100,216,177,253,231, 70, 13, 26, 53,198,131,123,119,205,230, + 78,113, 28, 39,232, 24,234,143,194,220, 84, 8, 4, 2,116, 12,110, 10,129, 64,128, 78, 33,205,192,178, 44, 58,183,125, 17, 44, +203,162, 75, 88, 0,154, 54,109, 10,142,227,172,254,152,160,148, 34, 37,233, 79,164, 36,159, 0,229, 56, 24,185,210,238, 95, 10, + 64,151,153, 89,253,186,178,178, 64,157,109, 6,163,204,158,231,211, 79, 63,205, 87, 42,149,186,170,219, 20, 10,133,104,207,158, + 61, 46,214, 74,167,136, 68, 34,127,129, 64,112, 45, 47, 47,143,115,112,112, 96,140, 70, 3,231,223, 50,144, 61,125,104,126,249, +220,147,243, 22,204,223,245, 78, 47,231,183,127,250,225, 15, 42,114,239, 68, 8, 43, 49,140,254,226, 91, 49,132, 34,127,123,218, +104,234, 46,188,113,227,134,205, 73,185,205,125, 94, 84,164,184,184,120,100,191,126,253,142,126,244,209, 71, 82,160,244,199,139, + 64, 32, 40, 55,253,183,111,223, 6,195, 48,216,184,113, 35, 52, 26,141,205, 55,190, 64, 32,248,120,247,238,221,117,196, 98,113, +185,185,162,148,130,101, 89, 92,191,126, 29, 95,127,253, 53, 70,140, 24,129,212,212, 84,120,123,123, 99,234,212,169,242,200,200, +200,143, 81, 58,245,169, 45, 46,107,181,218, 80,153, 76, 6,137, 68, 2,147,209, 2,128,184,219,158, 73,119,239,222,109,213,160, + 65, 61,175, 70, 1, 87,126, 15,239,220, 58,200,205,205,165, 3,202, 12,150, 57,228, 79,234,163, 40, 69,128, 46, 93,186,224,228, +201, 83,232,211,167, 15,140, 34, 17, 56,177, 24,156, 88, 12, 42, 18, 1, 98, 49,136, 88, 12,234,224, 96, 71,243, 64, 89,150, 69, + 86, 86, 86,165,117, 99,198,140,121,240,238,187,239,122, 0, 20, 74,101, 6,253,228,227, 73, 25,185,185,185,212,211,211,211, 30, + 77, 30,158,231, 6, 27, 94,196,157, 16,178,191,194,246, 62,166,229,153, 51,103,206,142,136,136,184, 74, 8,217, 95,113,189,105, +191, 50,237,253,230,150,203,142,117,155, 53,107, 86, 96,100,100,228,146, 14, 29, 58,236, 56,119,238,220, 93,212,150,193,162,148, + 18, 66, 8,181,245, 97,105,194,220,151,180, 45,131,101, 34, 46, 46, 78,239,227,227,243,221,245,216,187,221, 95, 12,109, 6,153, +163,164, 39, 33,100,181, 68, 34,249,100,248,240,225,184,112,225, 2,146,146,146,190,167, 53,152,246, 68,103,224,210, 38, 77, 30, + 6,157,129, 75, 3, 74, 35, 84, 83,167, 78, 21,157, 57,115, 70,103,106,111,213, 8,150, 37,173,236,236,236,185, 49, 49, 49,176, +150,228,254,206, 59,239,148, 63,175,152,228,110, 73,147,114, 20, 58,157, 30,197,197,170, 82, 99, 85,246,229,109, 52, 26, 81, 92, + 92,140, 65,131, 6,149,155, 46,142,227,144,157,109, 54,103,217, 38, 12,195,216, 29,185,178,168,193,178,175,182, 14, 10, 22, 30, + 63,119,185,210,151,107,255, 15, 23, 65, 44, 42, 53, 87, 50,169, 8, 50,137, 16,105,202,135,104,225,223, 82,116, 50,106,255,171, +176,100,176, 12, 70,172,254, 57, 10, 32, 4,187,246, 31, 71,104, 35, 7,204,255,236, 83, 12, 28, 56, 16, 98,177, 20,187,119,239, +196,178,181, 91, 48,182, 65, 3, 80, 0, 97,161,109,176,116,195, 14, 44, 92,176,128,217,249,235,174,206,182,218, 43, 20, 10,193, +178,108,249,151,118,213, 71,150,101,109,154, 4,160,236, 30,233,245, 40, 41, 86,193,200,113,224, 56, 10,202,113, 0,165,240, 89, +188, 24, 62,139, 23,227, 18, 83, 58,128, 47,160,184, 24, 42,149, 10, 8,111,109,231,171, 90,118, 14, 74,161,213,106,161, 84, 42, +117,137,137,137,213,190,253,130,130,130, 30,106,181, 90,171,237,157, 61,123,118,202,146, 37, 75,252, 93, 93, 93,175, 93,190,156, +168,111,221, 58, 72, 88, 53, 7,171,121,179,230, 5,243, 22,204,223, 53,236,189, 55,222,222,240,217, 96,195, 71,115,127, 20,216, +147,232,110, 66,167,211,221,235,209,163,135, 93,169, 60, 42,149, 42,203,210,182,208,208,208, 81,132,144,197,205,155, 55,151,116, +235,214, 13,167, 78,157,194,226,197,139, 57,131,193,144, 11, 0, 29, 59,118,116, 95,184,112, 33, 73, 78, 78,134,139,139, 11,178, +179,179,183,132,134,134, 46,180,150,248, 46, 22,139,195,219,182,109,203,104, 52,154,242, 31, 37, 12,195,224,250,245,235,136,140, +140,196,144, 33, 67,208,188,121,243,242,255,173,174, 93,187, 10, 87,173, 90, 21, 14, 59, 12, 22,195, 48,147,187,119,239,254, 21, + 74, 71, 17, 86,252,144,187, 6, 96, 58, 0, 60,120,144,155, 53,228,173,142, 87,187,119, 9, 14,109,218,200,199,219,154,222, 35, +225,109,120, 7,203, 32, 18,138, 48, 98, 70, 95,236,223,191, 31,227,231,189, 91, 22,201, 42,141, 96, 9,133, 34,136,132, 98,136, +221,159,110, 34,130,178,207, 17,226,236, 92, 7, 0, 80,167, 78,233,163,209,104, 36, 0, 40,195, 48,124, 74, 22,207,191, 6,123, +188,136,201, 32, 85, 92, 38,132,236,143,136,136,232, 83,117, 93, 69, 51,101,238,121,197, 99, 35, 35, 35,151, 84,208, 46,169,141, +235,169,181,169,114,244,122,235,243,246,118,235,214,109,162,147,147,211, 74, 0, 8, 13, 13,197,253,179, 25,184,127, 54, 3,254, + 47,182,236, 20, 28, 20,154, 63,100,200, 16,184,185,185, 97,250,244,233, 20,192,230,154,156,123,195, 94,253, 75, 21,151, 19, 18, + 18,158, 58, 47,171,108,100,220, 39,176,144, 79,245, 52, 80, 74,161,215,233, 81, 92,162,134, 78,167,131, 94,111,132,193, 96, 68, + 72,128, 19,126,252,246, 83,104,181, 58,232,141,165,235, 74, 35,101, 70, 72, 68, 26,116,105,239,167, 7, 97, 84, 39,207, 63, 48, +211, 25,245, 23, 45,227, 82,193,178, 44, 46, 7,249, 0,168, 30,185,234,169,212,217,109,180, 40,103,124,209,211,211, 3,169,135, + 47, 2, 0,228, 14, 82, 28,217,186, 16,142, 14,165,191,228, 95, 27, 49,187,212,100, 73, 68,208,233,180,240,240,108, 8,131, 81, +255,162, 37, 61,131, 94,167,109,221,204, 7, 46, 78, 50, 36, 94, 58,143, 79, 38,124,128, 81,163,222,135, 72,234,132,147, 39, 79, + 32, 85,153,141,219,233,143, 49, 97,238, 58,232,245, 70,232, 12, 70,232, 13, 28, 86,252,176, 31, 58,163,109,103, 36, 18,137, 48, +117,234, 84,153,165,237, 59,118,236, 80,217,101,176,104,153, 9, 46, 81, 65,163,214, 64,171, 43,189, 23,198,198, 66, 44,250,236, + 93,232,245,122,168, 6,119,128, 78,175,135,113,242, 0,232,116, 58,164, 57, 8,152,206,161, 10, 61, 8,163, 58,115, 41,221,234, + 61, 50,157,195,154,129,162,148,154,237, 58,172,138,201,100,181,110, 29,116,109,196,160,208,136,179,231, 46,229,156, 61,119,169, +218,126,141,155,135,222,249,104,209,142, 89, 53, 49, 87, 64,229,238,194,103,193,148,208, 46,151,203,145,146,146, 2,150,101, 65, + 8,121, 20, 23, 23,231, 9, 0,243,230,205,203, 21, 10,133,110, 44,203,226,227,143, 63, 6,203,178,238,227,199,143,255, 28,128, + 69,131,101, 48, 24,252,157,156,156, 80, 84, 84, 84,254, 58,138,197, 98,204,156, 57, 19,195,134, 13, 43, 55, 87, 98,177, 24, 91, +182,108, 65, 72, 72, 8,180, 90,173, 93,145,187,244,244,244, 75, 0, 94,178,181, 31,199,113,165,221,172, 28,103,245,141, 37, 47, +246,131,250,158, 24, 70,145, 8, 59,246,237,195,176, 97,195, 32, 22, 75,202, 35, 87, 16,137, 64,196, 98, 48, 34, 17,140,108,141, +198, 75,152,218,129,194,194, 66,118,203,150, 45,141, 91,182,108, 73, 40,128, 22, 45, 2,200,254, 3, 7,234,203,229,242,187,174, +174,174,213,162,164, 60, 60,255,118, 42, 26,164,218,208,154, 57,115,230,108, 0,116,230,204,153,179, 77,203, 17, 17, 17, 42, 0, +202,103,213,175, 53,131,101, 43,130,181,124,249,114,180,106,213,202,226,118, 74, 41, 86,173, 90,133, 31,127,252,113, 57,165,244, + 78, 77,206,253, 97,127,225, 69, 7,153,200,187, 68,165,203,252,246, 55,125, 88, 80, 80, 80,108,135, 14, 29, 26,199,198,198, 90, +140, 96, 89,170,141,245,119,148,105,160,148, 66,171,211,163,164, 68, 5,181, 86,139, 41,159,174,181,231,178,136, 78, 91, 36,120, +189,215,203, 22,205, 67, 77,114,176,108,117, 13, 86, 68,175, 55,192,228, 1,158,148,168,209,117,200, 76, 92,250,125, 37, 0,148, +155, 43,153, 68, 8,169, 88, 8,134, 0, 4,150,181,245,170,194,190, 51, 38,126,112,122,253,247, 63,250,246,127,121, 52, 38, 77, +154, 4,129,216, 1,117,221,220, 97, 48, 82,212, 87,120,224,118,250, 99,236, 94,243,105, 89,218, 25,197,203, 67,231, 97,249,103, +163,177,108,158,237, 95,245, 44,203, 98,205,154, 53,170,170, 81,171,138,145, 44,123, 40, 55, 88,197, 42,168, 52, 90, 76,155,181, +206,158,195, 74,239,209,171, 47, 89,188, 71, 85, 49, 55,112,162, 98, 27,108, 69,176, 76,204,158, 61, 59, 5, 0, 11, 0,150,190, + 69, 37,110,128,127,167,222,159,217,219,182,191, 3,142,227,112,224,192,129,106,209,213,138,152,238,153, 61, 63, 2, 56,142,195, +131, 7, 15,144,148,148,132, 14, 29, 58,160,160,160, 0, 2, 0, 83,175, 92, 65,192,240,225,208,148,165, 46,136,197, 98,140, 25, + 51,166,150,175,166,140,178, 55, 60, 37,214,111, 84,177, 67, 58, 60, 3, 37,216, 28,185, 23, 19, 23,140,128,123, 11, 41,190,158, +181,177,124,251,178,239,230,149,229, 97,137, 33,181,111,252, 73, 37, 10, 11, 11, 5, 95,125,253,117,235,176,118,237,101,195, 70, +140, 98,180, 6, 14,139,190, 92,201,254,186,125,171,219,214,173, 63,201,164, 82,233,181,154,171,242,240, 60,223,212,150,185, 50, +105,153, 34, 88, 17, 17, 17, 87, 35, 34, 34,170, 69,195,158, 5,155,223, 62, 44,203,162,226,144,229,170, 16, 66,236,202,193,154, + 50,101, 10,156,156,156,204,110,211,233,116,244,242,229,203,201,153,153,153,155, 40,165, 53,174,139, 35, 22, 50,158,203,191,250, +193,119,210,228, 97, 28, 80, 58, 90,107,237,218,181, 46,166, 28,172,138,121, 88,182,114,176, 60, 60, 60,230, 47, 93,186,116,210, +107,175,189,198, 48,204, 95, 53, 29, 77,221, 17, 21,187,242, 56,142,131, 94,175,199, 31,127,252, 49, 41, 34, 34, 2,176, 16,245, +162,180,180,251,169,184, 68, 5,181,166,244, 11,246,118,210, 46,115,187,154, 59,216,230, 46,166,200, 85,251,148, 60,179,145,171, +195,158,165, 95, 92,189,115,108,107, 17,134, 77,185,247, 32,173,157, 87, 61, 23, 60, 46,120, 2, 73, 89,183,160, 9,147,185,146, + 73, 68,168, 91, 71,142,188, 71,217, 16, 10,133, 22,163, 35,148,210, 7,132,144,151, 6, 13,232,125,148, 97, 5,210,138,219,132, + 50,103,135,168,179, 87,234, 62,124, 92, 2,174,194,117,114,148, 98,226, 66,251,130,152, 66,161, 16,227,199,143,183,104,112,246, +237,219,167,178, 71,167,178,193, 42,141, 34,217,125,143,236,196,158, 8,150,189, 6,171, 42,166,209,133, 34,145,200,191,204,124, +217, 77, 80, 80,208, 33, 7, 7,135, 70,246,238,111,111,209, 81, 66,200,130,110,221,186, 45,246,245,245,245,248,232,163,143,136, + 64, 32, 64,104,104,104,189, 47,190,248,162, 0, 0,252,253,253,157,128,210,207,152, 21, 43, 86,224,218,181,107, 57,132,144,133, +214, 52,197, 98,241,245, 58,117,234,132,118,235,214, 13, 5, 5, 5, 72, 77, 77,133, 92, 46, 71,192,215, 95,227,202,184,113, 8, +218,176, 1, 76,183,110, 0, 74, 7, 13, 92,185,114, 5, 18,137,196,236,200, 73, 0,240,241,241, 9,163,148, 46, 5,208, 9,127, +117, 11, 82, 0,103, 9, 33, 51, 50, 50, 50, 46, 86, 59,136, 33, 12, 0, 24,109, 68, 88,197, 5,158,208,164, 73, 48,114,228, 72, +136, 68, 98, 64, 44,198,180,105,211, 42,124, 30,137,193,150,229, 99,113, 70,177, 53, 41, 0,149,243, 83, 0, 64,171,213, 18,137, + 88, 44, 25,241,222,251,204,140,105,159,112,122,131,129, 19, 8,132,204,212, 57, 75,152,155, 55,146, 36,197,197,197, 12,169,201, + 47, 43, 30,158,127, 1,230,114,169,202,162, 80,150,200,169,152,151,101,201,160, 85,204,201, 2, 96, 87,185, 24, 91,148, 27, 44, + 51,125,158, 55, 19, 19, 19,155,181,108,217, 18,169,169,169,102, 71,202, 1, 40, 29,194, 44,147,225,214,173, 91, 0,112,211,210, +137,142, 31, 63,190, 26,192,106,211,178, 66,161,232, 16, 62, 48,252,108, 80,183, 96,236,250,230,215,130,204,204,204, 32, 83, 77, + 44, 66, 8, 81, 40, 20,195,132, 98,193, 59, 77, 3,235,119, 49,114,220,210,227,191,159, 49,155,227, 3, 84,207,193, 50, 24, 12, + 79,157,131, 69, 8, 25,248,218,107,175, 49,201,201,201, 24, 52,104, 16,126,250,233, 39, 75,187, 98,216,176, 97,216,177, 99, 7, + 94,125,245, 85, 38, 50, 50,210, 98,153, 6, 74, 1,189,206,128,226, 18, 53,212,234, 90,185,111,102,121,214,200, 21, 0, 80,206, +112,236, 74, 66, 92,155, 86, 33, 29,132,247,210,178, 32, 21, 11, 43, 25, 44, 7,137, 8, 82, 73,233, 58, 47,247,186,136, 57,119, + 82,103, 48,232,173, 14,131,167,148, 62,128,153, 34,141, 18,167,122, 41, 61, 59,181,170,107,238,152,229,179, 70,160,213, 47,203, +109,182, 87, 40, 20,226,251,239,191, 87, 89,138, 94,217,251, 26, 80,138,242, 46,194, 18, 85,237,222, 35, 79, 79, 79,119, 15, 15, +143,245, 46, 46, 46, 82, 83,238,144,165,237,214, 34, 92,150,168, 82, 23,235,218,146, 37, 75,106,100,178,196, 98,113,163,179,103, +207, 54, 51,229, 5, 90,123,212,106,181,120,231,157,119,236, 10, 11,198,198,198,110, 14, 14, 14,190,237,238,238, 30,213,177, 99, + 71, 73,114,114, 50, 22, 45, 90, 68,132, 66,161, 51, 80,250,127, 89, 84, 84, 4,129, 64,128,199,143, 31,131, 16, 50, 50, 54, 54, +246,176, 53, 77,141, 70, 19, 29, 29, 29,221,166,111,223,190,236,181,107,215, 32, 16, 8,192,113, 28, 52,237,219, 35,104,195, 6, + 36,125,242, 9, 94,190,119, 15, 26,189, 30, 82,169, 20,135, 15, 31,214,149,148,148, 88, 44, 35, 34, 22,139, 55,158, 63,127,190, +165, 84, 42,133, 78,167, 3,199,113, 96, 24,134,176, 44,219,185,101,203,150,171, 80, 58,114,169,156, 70,141, 60, 60,198,127,208, +251, 69, 35,199, 25, 51,148, 57, 57, 22,100, 1, 0, 90,167, 28,184,251, 75,202,243,173, 68, 66, 17, 68,130, 82, 99,101,138, 92, +137,132, 34,136, 68, 98, 72,196,118,117,225,211,170,239, 29, 83,238,149,163,163, 3,247,194, 11, 47, 36,223,188,117, 59, 0, 0, + 83,167,142,139,221,121,177, 60, 60,207, 19, 86,242,175,114,170,152, 35,109,133,229, 28,148,206,173,220,167,236, 57, 42, 60,191, + 4,160,109,149,125, 77,219,181, 85, 30, 77,219, 19,107,227, 90,172,125, 80,246,254,224,131, 15, 54,188,242,202, 43,221,167, 78, +157, 10,185, 92,142,204,204,204,242,127, 90,177, 88, 12, 63, 63, 63,168, 84, 42,156, 58,117, 10,249,249,249,199, 1,124,104,239, +137, 51, 51, 51, 47,220, 74,184,249,168,115,223, 48, 55,255,176, 23, 93,210, 83,210,219, 3, 56, 71, 8, 33, 62, 62, 62,223, 13, +254,228,181,247,186,190,217, 14, 34,177, 16,105,183, 44,230,209, 2,168,158,131,245, 44,181,177, 24,134, 97, 9, 33, 24, 52,104, +144, 93,251, 15, 30, 60, 24, 39, 79,158,132,181,238,196,210, 46, 66, 29, 74,138, 85, 40,169, 69,131, 69, 8,129,209,104, 44,143, + 92,153,254,122, 42,117, 96, 24,166,220, 88,188,150,109, 95,201, 9, 0, 80,151,148, 44, 59,125,108,223,152, 23, 3, 90,187,119, + 8,110,142,155,119,211,176,108,246, 95, 93, 45,211,198, 14,198,150, 29,127, 64,225,229, 6,141,234, 9,142, 28,252,163,160,176, +176,112,217,211, 94,195,150,189, 39, 1, 0, 47, 13,173, 60, 70, 96,208,199, 43,236, 58, 94, 32, 16, 96,212,168, 81, 22, 35, 88, + 81, 81, 81,170,138,145, 72, 75,152,238, 81,113,177, 26, 37, 42,187,130, 94,118,161, 80, 40,130,218,183,111, 31,245,237,183,223, +186,213,171, 87, 15, 74,165,178,146,193, 82, 40, 20, 65, 97, 97, 97, 81,223,126,251,173,155,187,187, 59, 82, 83, 83,237, 46, 17, + 2, 84,174,139,149,147,147, 67, 30, 63,126,204,213,173, 91,183, 70, 38,139, 97, 24,104, 52, 26, 92,187,102, 95,143, 82, 77,138, +142, 54,106,212,232,167,149, 43, 87, 74,238,223,191, 15,189, 94,143,228,228,228,106,131, 16, 88,150,197,204,153, 51, 49,103,206, +156,245, 0, 26, 88,211, 51, 24, 12,223, 12, 31, 62,252,131,140,140,140,186,158,158,158,200,204,204,132, 72, 36, 2,165, 20,164, +107, 87,188,116,247, 46,116, 70, 35,100, 50, 25,110,220,184,129, 77,155, 54, 21,235,116,186,111,204,105, 53,109,218, 84,204, 48, + 76, 51,145, 72,132,119,223,125,183,210,182,173, 91,183,162,131,255,227,208, 15,223, 20, 63, 49, 82,145,230, 9,252, 15, 49, 12, + 67, 38,140,238,221,188,115,135, 86,129, 87,147,239,221, 86,102,231,157,181,214, 86, 97,129, 27,116, 74, 9, 32, 18,253,149,111, + 85,150,115,197,138,197,229, 35, 10,169, 88, 12, 78,108, 95,177,224,138,166,137, 16, 2, 55, 55, 55,205,138,111,150, 73, 28, 29, + 29,141, 0,224, 36,119, 52,254,186,117, 45,220, 92, 93, 53,213,220, 24, 15,207,191,155,234,137,166,255,155, 99,159, 26,139, 6, + 43, 46, 46,238, 46,128, 30,193,193,193, 67, 79,157, 58,181,124,202,148, 41,238,157, 59,119, 70, 94, 94, 30, 26, 52,104, 0,111, +111,111,196,198,198, 34, 49, 49, 49,151, 82, 58, 53, 54, 54,182, 90,168,199,218,108,219,148, 82,170, 80, 40,118,234, 74, 74,198, + 5,117,126, 17, 39,119,157,142,240,246,246,254,208,215,215,119,242,136, 89,125,223, 11,239,223, 22, 41,241,247,112,225,232, 21, +100,166,230, 98,228, 75, 51, 44,106,218,147,131, 85,241,177,106, 14, 86, 69, 77,142,227,140, 90,173, 22,191,252,242,139, 93, 38, +107,251,246,237, 80,171,213,224, 56,174,210,151, 78, 69, 77, 35,103, 36, 78,206,238,240,169,239, 15,157,182, 24, 28,103,255, 47, +203,138,159,144,230,174,221, 96, 48, 96,254,252,249,152, 62,125, 58, 22, 46,180,220,187, 34, 16, 8,176,118,109,245,220,175,170, +154,121,121,121, 69, 10,133, 98,216,142,239, 87,238, 26, 58,122,146,147,111,199, 32,108,254,245, 32,244, 58, 61,164, 18, 1,234, + 58,203,241, 66, 35, 31,104,213, 37, 88,183,122,121,161, 90,173, 26, 86, 53,247,172, 38,179,172,143, 28,208, 5, 95,110,250, 29, +167,183,253, 21,160,124,105,232, 92,252,252,213, 68, 4, 7,255, 96, 85,211,104, 52, 66, 40, 20, 98,219,182,109, 42, 75,163, 9, + 89,150,133, 37,131, 85,245, 30, 57, 59,187,195,183, 97, 0,180,234, 39,181,118,143,220,220,220,166,127,247,221,119,110, 42,149, + 10,215,175, 95,199,245,235,215, 65, 8,185, 86,117,123,113,113, 49,146,146,146, 76, 38,167,146,211,177,246,122,154, 34, 87, 57, + 57, 57, 36, 51, 51, 19, 14, 14, 14,204,229,203,151,213,173, 91,183,190,134,178, 28, 45, 91,215,174,209,104,238,119,239,222,221, +236,126, 26,141,198, 71, 34,145, 84,154,178,201, 84,116,180,106, 87,161,185,118,166,165,165, 37,172, 92,185,178,126,243,230,205, +177,113,227, 70,141,147,147,147,120,202,148, 41, 96, 89,150,172, 88,177,130,230,229,229,233,102,206,156, 41, 62,115,230, 12,138, +139,139, 19,172,181, 19, 0, 40,165, 69,132,144, 49, 29, 59,118,252,241,208,161, 67,178,102,205,154,161,160,160,116, 0,229,150, + 45, 91, 48, 97,194, 4,200,100, 50,164,164,164,160, 95,191,126, 37, 37, 37, 37, 99, 42,214,192,170,168,105, 48, 24,136, 80, 40, +164, 28,199,225,179,207, 62,171, 84, 88,212,193,193, 1, 50,177, 17,223, 46,104,226,248,201,151, 89,142,147,198, 13, 31, 14, 0, + 70,142, 51, 94, 77,190,119,251,219,205,191,159, 0,112,202, 82, 59, 1,128,171, 83,128,122,205, 74, 35, 88, 66, 83,205, 43,145, +164,210,232,193,210, 58, 88,165,117,177,108, 93,123,213, 84, 12, 87, 87, 87, 67, 72, 72,112,178, 74,165, 98, 77, 94,170, 94,189, +122, 73,101,251, 82, 63, 63, 63, 45,170, 84,212,171,201,255,166,189,240,154,188, 38,143,121,108,134,250,227,227,227,183, 5, 6, + 6, 30,138,140,140,140,220,187,119,239,232, 73,147, 38, 17,103,103,103,236,220,185,147,230,229,229,253, 32, 22,139,167,159, 63, +127,254,169,234, 69, 80, 74,183,156,249,227,194,216, 33,159,188, 65, 38,125, 53,178, 83, 66,116,210,181,214,157,154,161, 85,199, +102,136, 61,158,140,181,179,119,252,100,208, 27,190,200,204,204, 76,181,166, 99, 79, 14,150,233, 79, 32, 16,216,172,131,181,119, +239,222, 73,189,123,247,102, 98, 98, 98,170,229, 92, 85,204,195,138,138,138,130, 78,167,195,206,157, 59, 57,107,117,176, 56, 96, +223, 55, 95,125, 49,226,251,173, 7,196, 12,209,225,252,169,221, 40,120,108, 61, 42, 39, 18, 9,241,243,246,125, 58,129,128,189, + 97,165,173, 15,226,226,226,220,190,252,242, 75,150, 97, 24,172, 93,187,182, 82,228,170, 42, 87,174, 92,225,244,122,189,205,123, +165, 84, 42,163,188,188,188, 6,111,248,102,193,150,174,175,246,117,105,209,162,165,192,195,163, 62, 4, 12,131,252,188, 28, 92, +186,112,198,112,248,192,111,249, 90,173,118,164, 82,169,140,178,165,103,141,136,111,127, 51,187,254,173, 73,214,187, 7, 25,134, + 49,232,245,122,129,163,163, 35, 12, 6,131, 89,115,213,189,123,119,217,217,179,103, 85, 58,157, 14, 44,203, 90,117, 76,165,247, +104,238,136,239,127,172,221,123,100, 52, 26,253, 31, 63,126,140,226,226, 98,196,198,198,210,181,107,215,230,228,231,231,207,174, +184, 61, 47, 47, 15, 69, 69, 69,184,116,233, 18,221,184,113, 99, 78, 97, 97,161,181,124,130, 42,109, 40,173,139,245,248,241, 99, +206,193,193,129,209,235,245,250,214,173, 91, 75, 69, 34,251,106, 94, 1, 64, 66, 66, 66, 47, 75,219, 58,117,234,116,243,236,217, +179, 47, 84,156,155,208, 96, 48,136, 52, 26, 77,179,126,253,250,217,252,252,144,201,100, 67,118,239,222,189, 77, 42,149,182, 82, +171,213, 31,100,103,103,111, 1, 80,159,101, 89,220,186,117, 43,215, 96, 48, 12,252,236,179,207,190, 47, 46, 46,190, 34,151,203, +135,218,211, 94, 74,233, 97, 66,200,208,128,128,128,205,243,230,205,115, 12, 15, 15, 23, 42, 20, 10,132,132,132, 32, 37, 37, 5, + 7, 14, 28,208,173, 91,183,174,164,164,164,100, 20,165,212,226,251, 83, 32, 16, 80, 0,196, 96, 48, 84,154,195, 84, 44, 22, 67, + 40, 20,162, 68,195, 96,244,103,119, 84, 28,132,170, 37,203,126, 58, 64, 41,136, 50, 51, 55, 55,235, 97,254, 69,129, 94,127,234, +190,178,200,234, 92, 79,198, 92, 7, 52,116, 14, 4,240, 87,154, 2,195, 49, 32, 58, 2,214,200,130,213,179, 32, 2, 65,105,116, +203,190,233,174,168,193, 96, 64,159, 62,125,176,127,255,126,244,239,223,159,194, 74,174,200,254,253,251, 45,254,184,224,225,225, +249,251,177, 43,151, 34, 41, 41, 41, 31,192,135,109,219,182,221, 58,113,226,196,253, 28,199, 9, 57,142,123, 61, 33, 33,225,244, +179,156, 60, 51, 51, 51, 78,161, 80,204,118,247,113,137,232, 53,180, 19, 90,182,109, 0,163,193,136,179, 7, 19,240,195,146,223, +118,164,167,165,191, 71, 43,204, 85,104, 9,123,114,176, 42, 62,218,170,131,181,104,209, 34, 44, 94,188,184,198,163, 8, 45,237, +115,238, 82,198,135, 29, 66,189,125,223,234,219,233, 85,134, 16,170,177,146,103, 67, 8,168, 41,211, 66, 32, 96,111,156,188,144, +102,177,216, 82, 86, 86, 86,247,113,227,198,253,201, 48, 76,131,191,142,183,156,111,100, 52, 26, 51, 31, 61,122,244,138,173,107, + 42,211, 62,228,235,235,219,252,228,225,223,103,157, 57,118, 40,220,104,212, 53, 37, 32, 16,137, 68,183,245, 70, 67,180, 94,171, +141, 72, 79, 79,127,230, 66,108,179, 62,236,143, 7,202, 92, 8, 4,108,105,237,169,178,219,189,123,213, 20, 4, 7,255,108,241, + 56,137, 68,114,104,243,230,205,125,134, 15, 31, 78, 4, 2, 65,121,183,155,233,250, 25,134,193,133, 11, 23, 84, 90,173, 22, 63, +252,240, 3,149,201,100, 86, 11,215,254, 93,247,232,201,147, 39,163,250,245,235,183, 5,128, 4,192,173,130,130,130,143,148, 74, +101,122,197,237,253,251,247,223, 2, 64, 66, 8,169,182,221, 22,166,146, 13,117,235,214,189, 86, 22,185,146, 62, 77,162,187, 37, + 56,142, 99, 45,117, 31,218,211, 85, 88, 54,183,224,155,166,229,208,208,208, 5, 99,199,142,173, 56,217,243, 41, 0, 77,106,218, + 46, 74,105, 20, 33,164,229,103,159,125, 54, 89, 38,147,117, 85,169, 84, 45, 0,192,193,193,225,122, 73, 73,201, 9,157, 78,183, +146, 82,106,113, 26, 27, 0,184,125,251,182,182,113,227,198, 41, 6,131, 33,208,195,195,163,124,244,161, 88, 92, 26, 77,186,112, +221, 53, 54, 35, 35,163,173, 53, 13, 43,237, 75,183, 22, 81,182,116,140,181,237, 90,173, 54,231,220,185,115,174,199,142, 29, 99, +141, 70, 35, 14, 31, 62, 92,254,163,207, 92,111,224,157, 59,119,160,213,106,171,151,136,231,225,225,249,159, 64,254,206,110,122, +123, 67,136, 10,133, 98,144,212, 81, 50,174, 65,115,239,214,202,187,217,201, 69,249, 37, 63,103,102,102,126, 75, 41,173,246, 1, +254,111, 9,117,242,154,182, 53,197, 14,206, 71, 8, 43,106, 96,105, 59, 53,234, 30,104, 75, 10, 95, 53,167, 25, 22, 22,230, 35, + 18,137,150,105, 52,154,215,172, 85,105,103, 89,214, 32,147,201, 14,169,213,234,233, 85, 39,123,254, 55,190,158,243,231,207, 55, + 27,146,176,119, 20,225,220,185,115, 77, 3, 73,236,106,103, 80, 80,208, 9, 7, 7, 7,179, 5, 53, 75, 74, 74, 82, 19, 19, 19, +203, 13,251, 63,249,122,154, 70,203,217,147,119, 84, 81,243,169, 70, 17, 62, 67, 59,107, 66, 85, 77, 95, 95, 95,169,179,179,243, + 50,134, 97,172, 22, 56, 53,193,113,156, 54, 59, 59,123, 74,110,110,110,121, 40,246,223,248,158,231, 53,255,255,104,254,215,168, +181, 58, 88,207,130, 82,169,252, 5,192, 47,255,116, 59,120,254,183,152,204,211,211, 80,102,150, 44, 78,222,252, 95,197,100,144, +204,172,191, 14, 88, 41, 72,246,148,216, 83,142,225,121,224,105, 19,186,203, 12,148,205,226,162,207, 3,233,233,233,106, 0, 19, +254,233,118,240,240,240,216, 7,223, 65,207,195,195,195,195,195,195,195, 83,203, 16, 0,129,230, 54,212, 36,244, 71, 8, 49,171, + 97, 13, 91,250,188, 38,175,201,107,242,154,188, 38,175,201,107,254,247, 52,109,105,255, 87,186, 30,159,139, 28, 44, 94,147,215, +228, 53,121, 77, 94,147,215,228, 53,255,127,107,254,215,224,187, 8,121,120,120,120,120,120,120,120,106, 25,187, 13,150,220,203, +223,223,189, 97,208, 22, 87,191,214,151, 93,253, 90, 95,118,111, 24,180, 69,238,229,111,119,173,157,255, 18, 10,133, 66,230,237, +237, 61,180,126,253,250, 81,109,218,180, 41,244,241,241, 49, 59, 69, 14,143,117,194, 9, 17, 12, 38,100,252, 8, 66, 82, 71, 16, +146, 58,152,144,241,225,132, 60, 23, 3, 47,106,147,133, 19,124,218,159, 62,252,238,161,133, 19,124,204, 22, 96,155, 63, 77,225, +118,246,200, 59, 43,103, 79,240,113,173,141,243, 17, 66,156, 60, 61, 61, 55,122,121,121,221,247,244,244,124,224,233,233,185,153, + 16, 82,167, 54,180,121,120,120,120,120,236,195,174, 47, 51,215, 6,173, 62,240,111,241,226,244, 5,115,103, 17, 31, 47,119, 7, +189,193,168,187,119, 63, 61, 96,238,162,200, 93,174, 13, 90, 45,207,123,112,229,187,154,158,152, 16, 66,124,125,125, 7, 9,133, +194, 62, 0, 76, 70,237,154, 94,175,223,159,158,158,254,139,189,163,130, 90,183,110,125,134,101,217,250, 53, 57, 55,199,113,247, + 19, 19, 19, 95,174,105,155, 1,192,199,199,103,160,143,143,207,230,246,237,219, 59,180,105,211, 6, 34,145, 8, 75,151, 46,157, + 10,192,236,116, 28,230, 32,225,225, 2,143,124,215,225,172, 64,240, 6,128,214,148, 2, 32,236,101, 78,175, 59,144, 93,247,209, + 22, 26, 29,109, 87, 25,113,111,111,239,217,132,144,145, 40, 29, 86,254,157, 82,169,124,234, 41,107,172,161, 80, 40,252, 8, 33, + 93, 41,165, 45, 24,134,185,194,113,220, 81,165, 82,249,232, 89,117, 61,129, 15, 59,118,238,188,114,196,212,169,172,234,212, 41, +172,220,188,121, 5, 10, 11, 1,160,122,201,121, 43, 16, 66, 72, 88, 88,155,183,157,156,208,135, 0,193, 32, 32, 12,104, 66, 94, + 62,115,240,210,165,248, 95,236,169,165,102,137,144,144,144, 3, 0,122,151, 45, 30,140,139,139,123,189,166, 26,143,239,112,159, + 75,132, 45, 94,122,124,251,196,231, 0, 94,171,186,221,160,150,142, 96,133,126,125, 88, 26,159, 6,224,235,167,109, 43, 0, 16, + 66, 28,220,221,221, 47,255,246,219,111,190, 97, 97, 97, 2, 0,136,141,141, 29,222,167, 79,159,110,101, 33,253,194,103,209,127, + 90, 58,116,232, 80,215, 96, 48,108,101, 9,105,207,113,156, 11, 0, 48, 12,147,111,164,244,130, 64, 32, 24,241,180,197,138,121, +120,120,120,158, 87,108, 26, 44,185,103,139,128,150, 45,253,167, 30,222,187,213, 47, 63, 47, 95,189,118,217,150,120,149, 64, 92, +210, 40,160,153,104,213,242, 47, 93, 38,124, 60,237, 99,185,103,139,139, 79, 30, 94, 79,182,247,164,222,222,222,245, 27, 54,108, +184,103,246,236,217,129,157, 59,119, 22,122,120,120,224,225,195,135,184,113,227, 70,224,217,179,103,251,255,246,219,111, 83,189, +189,189,223,180, 85,193, 29, 0, 28,197,162,198,191,124,185,196, 75,236, 82, 23,212,104,128, 75,203, 32, 0, 0,229, 56,100, 70, + 71,129,211,235, 65, 57, 35,124,123,245, 45, 93, 79, 41,218,181,107,103,223,196, 95, 85,240,245,245, 85, 52,111,222,252,167,153, + 51,103,138, 52, 26, 13, 18, 18, 18,112,254,252,121, 46, 59, 59, 59,210, 94, 13,207, 86, 3, 2,188, 4, 94,187,250,245,127,173, +225,235, 61, 61,196, 13,188,220,193,113, 82,220,184,171,171, 31,117, 58,190,215,193,195, 71,167,123, 4, 12, 24,152,157,188,247, +138, 53,157,192,192,192,246, 12,195, 44,206,200, 40, 45,237,164, 80, 40,150,134,133,133,125, 81,113,159,170, 30,149,227, 56, 8, + 4,130,135, 37, 37, 37,131,146,146,146,226,205,233,126, 62,154,232, 13,134,210,247,133, 64, 0,227,214,163,190,123,123,244,232, +209,104,212,168, 81, 8, 14, 14, 70,108,108,108,215,157, 59,119, 78,246,243,243,187,164,215,235, 15, 74, 36,146,232,251,247,239, + 63,213, 4,139, 34, 96,198,136,169, 83, 89,249,253,251,144, 39, 36,224,221,194, 66,193,151,192, 12,212,192, 96,133,132,132, 52, +126,165, 71,240,174,254,111,118,241,247,242, 10, 16, 9,133,245, 64, 41,133, 94,159,215, 60, 39,231,218,219,117,234, 96,102,187, +118,237,222,138,137,137,185,101,143, 94,219,182,109, 61, 57,142,219, 64, 41, 21, 17, 66, 38, 2,232,125,248,240, 97, 24,141, 70, +188,254,250,235,189, 67, 66, 66, 26, 83, 74, 87,203,229,114,170, 82,169,222,191,116,233,210, 67, 75, 90, 11, 39,248,180,207,191, +205,125,158, 37,104,210,235,197,208,145,200, 18, 28,233, 53,229, 85,239, 67, 46, 77,152,133,159,175,201,184, 0, 0,175, 53,109, +234,212,184,133,195,167,114,231, 64,215,130,140,168, 79, 95,107,218,116,211,161,219,183,139, 44,105,218, 66,161, 80, 44,219,186, +117,171, 95,251,246,237,203,139,228,182,105,211,134, 93,186,116,169,207,148, 41, 83, 86, 0,120,207, 78,157,230,110,110,110, 71, + 56,142,211, 92,189,122,181,185,105,189, 71,208,155, 29,221,156, 28,187,231, 60, 46, 58,149,123,245,183,147,246,104,133,134,134, +142, 18, 49,255,199,222,121,135, 71, 81,117, 97,252,189,179,125,179,155, 77, 79,216, 77,161, 36,132, 18, 2,132,132, 94, 2,138, + 72, 9,130, 10, 40, 69,138,130, 72,147, 15, 69,193, 70,149, 32, 72, 71,138,160,128,128, 32, 77,145, 46,189,151, 36,212, 0, 9, + 73, 8,164,247,158,205,182,153,251,253,145,108, 12, 49,201,110, 40,130, 58,191,231,217,103,103,118,102,222, 57, 51, 41,243,238, +185,247,158,203,124,191,248,139, 9,130,166, 45, 90,192,198,217, 21,134,228,100, 20,153,140,142, 23,175,221,234,243,205,146,239, + 51,130,130,130,198,132,133,133,253, 88,219,235,229,225,225,225,121, 81,177,104,176,164, 82,201,180, 25,159,127, 74,114,178,114, +181,134,130,124,131, 13,213,155, 84, 54, 50,146,159,158,145,123, 95,101, 83, 60,101,242, 36,217,167,211, 62,159, 6, 96,168, 37, + 45,160,212, 92, 53,105,210,228,242,186,117,235, 92, 29, 29, 29,145,151,151,135,172,172, 44, 92,190,124, 25,148, 82,244,234,213, + 75,218,178,121,243, 86,139,151, 44,185,160, 86,171,219, 91, 50, 89, 66,145,144,136, 20, 10,236, 10,110, 5, 70, 44,198,155,119, + 82, 0, 0,212,104,192,161,183,251, 2, 0, 4, 18, 9, 6, 69,167, 3, 0,100, 50,153, 53, 97, 86, 9,165,180,125,199,142, 29, +197, 0,240,209, 71, 31,229, 23, 21, 21,133, 18, 66,182, 38, 39, 39, 39, 89, 58, 22, 0,156,155,191,230,235,230, 82,231,212,183, +115, 71, 59,250, 55,240,134,222,104, 68, 98,122, 18, 40, 36,168,227,170,192,208,254, 45,197, 29,131,196, 13, 23,125,119,236,164, +155,127,191, 46,105, 55,127,187, 85,157,150, 66,161,216,180,116,233, 82,252,242,203, 47, 0,128, 19, 39, 78,192,215,215, 87, 97, + 41,134,187,119,239,122,143, 24, 49, 98, 27,128,134, 85,109, 55,153, 32, 12,253,122, 43, 0, 96,211,186, 33,130,168,168,168,250, +114,249,159,115, 41, 7, 7, 7, 35, 56, 56,152, 9, 13, 13,109,123,226,196,137,182,219,182,109, 51,184,187,187, 47, 77, 74, 74, +170,118,170,160,154,208,158, 62, 13,229,213,171,192,233,211,150,119,174, 68, 64, 64,128, 87,179,102, 46, 23, 22,125,251,149,203, +239,251,110,225,219,111,127, 68, 76, 76, 12, 0,192,219,219, 27, 67, 6, 15, 20,109,221,178,166,217,180,105, 51,207, 7, 6, 6, +118, 10, 15, 15,183, 88,221,156,227,184, 53,161,161,161,175, 41,149, 74, 76,155, 54, 45,170, 65,131, 6, 80,169, 84, 88,187,118, + 45, 28, 28, 28, 96, 52, 26,163, 22, 44, 88, 32, 76, 78, 78,198,242,229,203,127,192,159,217,173,191,208,165,119,240,151, 82, 81, +147,206,141,131, 70, 64,169, 82, 99,221,207,219,113, 55,108, 99,103,157,241,206,151,159, 77,112, 31, 38,160,210, 17,238,190,202, +105,245,131,186, 58, 53,108,214, 15,245, 2,175, 58,235,216,211,113, 95,142,247,158, 47,148,149,108,154,241,237, 95,179,132,100, +224, 78,129,127,254, 21,199,155,127, 40,178, 40, 45, 47, 26, 74, 80, 86, 3,171,142, 90,211,174,113, 81, 38, 0, 0, 32, 0, 73, + 68, 65, 84, 55, 56, 56, 88, 0,148, 26,236,248,248,120,232,245,122,248,249,249, 49,122,189,222,170,154, 86, 26,141,166, 81,151, + 46, 93,206,110,222,188,217,169,115,231,206, 25, 21,183,213,113,178,127,245,212,238,165,147,190, 94,182,165,137,171,223,235,185, +150,190, 8, 4, 5, 5,141,106,222,200,123,253,210, 5, 51,136,160, 40, 17, 66,251, 44,128,203, 66,202,182, 31, 0, 27, 71,244, + 25, 59, 5,173,219,182, 21, 76,154,252,217,250,214,173, 91,211, 43, 87,174,108,168, 73,143,135,135,135,231,159,130, 69,131,197, + 81,174,133,139,139,163,108,249,194,141, 97,106, 25, 67,234,120,104,136, 68,101, 47,132, 82, 33,101, 4, 34,173,183,183,135,152, +163, 92,149, 83,133, 84, 30, 97, 64, 8, 33,245,234,213,219,189, 97,195, 6, 87,145, 72, 4,142,227,224,226,226,130,184,184, 56, +228,228,228,160,176,176, 16, 49,183,111,163,158,167, 7, 38,141, 25,173,158,243,237,162,221,132,144,160,138,205,133,149, 53, 41, + 71,193,153, 30,109, 81, 35,132,160,170,246,197,234,166,145,177,118, 36, 4,199,113,247,147,147,147, 97, 99, 99,131,166, 77,155, + 42,175, 92,185,114, 38,201,156, 66,178,116,237, 3, 7, 10,212, 18,233,222,133,115,223,114, 36,130, 40, 68, 61,204,133,143, 71, + 27, 56,217,121, 34, 41,163, 16,225,145, 7, 16, 21,179, 31, 62, 30, 94, 24, 51,196,199,126,201,154,140,125, 36,240,125, 31, 26, +190,214, 88,149,102, 65, 65,129,210,203,203, 11,238,238,238,224, 56, 14, 44,203,226,214,173, 91,229,203,230,249, 18,205,203, 75, +183,158,131,131, 32, 19,111,189,222, 27,217,217,217, 74,107,175,221,108,174,118, 46,210, 52,211, 22,165,136, 1, 64,174, 80, 27, +222,156,146,116,171,117,235,214,112,113,113, 17,159, 63,127,126, 10,128,114,131,101,237,253, 52, 0, 11,150,109,216,176,124,104, + 94, 30, 3, 0,235, 9,225, 12,165, 85,181, 45,223, 79, 66, 72,143, 87, 2,246, 44, 89,242,165, 11,161,145,112,180,251, 6,151, + 47, 63,128,193, 80,250,147,207,202, 74,199,196,241,249, 16, 10,109,177,104,209, 12,167, 65,111,125,176,171,172,137,140,171, 78, +179,236, 51,241,157, 59,119,208,172, 89, 51,108,219,182, 77, 40, 16, 8,112,233,210, 37,200,229,114,140, 24, 49, 2,254,254,254, + 66,185, 92,142, 51,103,206, 32, 63, 63,255, 47,191, 80, 21, 53, 79, 31, 56, 53, 39, 39,246,196,151,169,130,195, 61,215,253,188, + 29,163, 7,191,133, 58,166,216, 51, 14, 62,204,156, 94,125, 58,124, 37, 16,121,134, 40,108,253, 29,124,253,251, 65, 44, 81, 98, +194, 39,179, 17,117,115,175, 67,113,193,141,241,172, 49,193, 19,192,135,149, 53,233,142, 1,236,226,141,174,129, 71,189, 34,234, +106, 2,223,191,148, 18,241,253,245, 63,207,222, 84, 8, 70,107, 95,118, 12,238,221,187,135,152,152, 24, 8, 4, 2,104,181,218, + 71, 38, 10,174,168,217,170, 85,171,247, 89,150,253, 10, 0,244,122,253, 70, 55, 55,183, 81, 43, 86,172,112, 18, 8,254,156, 41, +202,156,185,202,206,205,207, 57,127,229,214,221, 41,239, 15,232,122,250,226,205, 4,251,150,253, 31,230, 94,251, 53,175,170,251, +217,190,125,123, 7,137, 64,240,253,178,111,103, 17, 54,246, 24,164, 77,187, 66,168,244, 5,107, 76, 66, 73, 78, 33,180,113,169, + 48,172, 93, 9,239,177,147,177,112,193,215,100,240,176,119,191,247,241,241,217, 29, 83, 33,131,247, 44, 70, 41,241,154,188, 38, +175,249, 98,106,254,219,176,104,176, 8, 97,242, 13, 6,163, 72,229,233,110,124,243,141, 46,205, 35, 46,221,140, 82, 58,218, 49, + 45,219, 52,247,187, 25,149, 24, 14, 19,107, 32,132,177,170, 95,135,135,135,199, 91, 51,102,204,104,174, 82,169,192,113, 28,236, +236,236,144,145,145, 1,131,193,128,252,252,124,232, 10, 11, 96, 40,200,199,181,135,241,232,212,181, 43, 94,105,223,190,233, 1, +163,241, 45, 0,219,170,211,100, 25, 1,117,106,213, 6, 3, 99,179,192, 25,244,216,225,237, 4,160, 52,107,245,118,124, 46, 8, + 33, 96,245, 58, 28,104,211, 16, 82,165, 2, 45,166, 86, 59,101,160, 69, 82, 82, 82, 34,234,214,173,123,176,103,207,158,189,198, +140, 25,195,164,166,166, 30,114,115,115,235,152,150,150,102,177,121,212, 53,154, 29, 49,124, 76, 43,111,103,123, 6,191,159, 59, +140,118, 77, 94,135,141, 84,132,140, 28, 45, 24, 66, 16,115,255, 40, 88, 86,129,107,119, 30,162,189,191, 2,157,219,218,121, 20, + 30,203, 30,131,234,155,203, 72, 78, 78, 14,210,211,211, 97, 52, 26, 97, 50,153, 48, 96,224, 64,108,218,184, 17, 69, 69, 69, 40, + 41, 41,129, 94,175, 7,199,149,250,137,212,140, 66, 92,190,118, 8, 65,205, 27, 1, 53, 84,252, 22, 10, 97, 90,177,116,136,208, +214, 6, 16, 75, 93, 12, 5, 5, 5, 80, 40, 20,208, 22,165,136,135,143, 46,207,108,137, 79,156, 56,129,240,240,112,104, 52, 26, +224, 49,103, 4,136, 1,190,191,207,178, 95,244,218,179,199,245,220,158, 61,220,197,223,127, 79,148, 22, 20,172,181,230,216,182, +109, 3, 6, 76,152,208,167,169, 92, 38, 71,226,195,165,104,210, 68,140,143,254,231,132,208,111, 50, 1, 0,147, 38,120, 32, 40, +200, 9,249,185, 59,225,236,250, 25, 62,154,210,223,167,176,144,190, 3, 96, 99, 77,186,132,144,137, 91,182,108,137,234,209,163, +135, 48, 34, 34, 2, 82,169, 20,114,185, 28, 50,153, 12,114,185, 28,169,169,169,208,235,245,216,177, 99,135,169,172, 9,177, 90, +202,154, 1,123, 77,233,161, 62,120, 55,108, 99,103,119, 38,238, 90,255, 41, 29,238, 71, 92,186, 86,120,252,216,185, 57,166, 18, + 89, 66,110,226, 31,159, 54,104,125,205,121,252,212, 89, 88,185,112, 6,238, 94, 58,149,237,230, 85,240, 29, 75,116, 27, 59, 86, + 81,231,190,107,215, 89,194,113, 95, 12, 54,142, 27,245,166,221, 62,245,249,209,251,132,200, 76,203,190,241, 45, 98, 47,107,165, +190,205,134, 53,106, 64,244,199,143, 31,151,119,233,210, 5, 90,173, 22, 0, 32, 16, 8,176,101,203, 22,206,100, 50,157,168, 42, + 78,163,209,248, 85,120,120,184,186,184,184, 24,131, 7, 15,158, 52,115,230, 76,133, 72, 36, 2, 0,176,108,233,108, 85,230,204, +213,220, 37, 63, 29,158,252,213,119, 39, 14,111,251, 70, 51,119,218,168,174, 67, 39,124,125, 2,192,161,170,116, 77, 38,211,166, + 37,223, 76, 23, 72,237, 13, 32,173,123,192,144,174,197,131,245, 99,160,207,211,162,209,156,217, 0,196,208, 27, 4,216,215,127, + 32, 4,142, 26,188,215,165,163,112,237,169,179,155, 0,244,175,233,190,242,240,240,252, 39,105, 13,192,165,108, 57, 19,165,207, + 49, 39, 0,230, 44,187, 11, 0, 61, 0, 73,133, 99, 42,175, 87,220,183,242,122,197,229, 76,148,246,109,118, 1,192, 2,184, 12, +160,214,253, 68, 25, 0, 32,132,148, 39,124, 42, 46, 3, 0,199,113,167, 99, 98,227,181, 93,131,131,212, 39, 46, 71, 71,244,124, +253,149, 54, 93, 94,106,219, 46, 45, 43, 63,182,142,139, 74,113,254,210, 69, 41,199,113, 86,181,239,136, 68,162,144, 78,157, 58, + 9,115,114,114, 96, 99, 99,131,140,140, 12, 36, 37, 37,193, 96, 48, 64,155,151, 11, 93,110, 14,180, 57,217, 48, 22,228, 34,230, +202, 37, 52,246,114,151,150,117,130,183,138,202, 25, 42,243, 12,246,132, 97, 32, 83,217, 66,174, 82, 65, 32,168, 93,101, 10,141, + 70,211,175, 73,147, 38, 23,221,221,221,191, 0, 0,189, 94, 63, 62, 52, 52, 52,147, 82,138, 79, 63,253, 84,165, 82,169,118,212, +171, 87, 79,106, 73,199,214,145, 29,208,182,121, 67, 65,212,131, 27, 8,242,125, 19,245,213, 93, 16,147,148,135,140,188, 18,164, +102, 23,161, 81,163,169,112,209,140,134, 93,157,177,184,113, 55, 1,234, 58,245, 25,129, 72,220,179, 38,205,212,212,212, 71,214, +127,222,186, 21,197,197,197,104,216,176, 33,222,126,251,109,124,242,201, 39,120,235,173,183,160,209,104,208,185,161, 16,163,134, + 13, 64,122,122,122,141,113,206, 89, 71, 69,243,183,170, 35,134,207,160, 17, 13, 95, 62,120, 43, 38, 38, 6, 81, 81,127,109, 89, + 59,118,236, 24,242,242,242,202, 31,192,214,224,230,230, 54, 93,173, 86, 95, 87,171,213,183,212,106,245,129, 52,141,230,142,209, +219,219,173, 99,255,254,196,111,208, 32, 65,130, 66, 65,238,123,122, 42, 45, 43, 1, 42, 21,250, 4, 5,117,146,228,230,252, 8, +160,212, 68,142, 26,233,130,179,167,154,225,220,153, 64, 76,156,224, 13,134,200, 64, 24, 49,138,139,142,193,175,153,191,216,214, +150,214,248,187, 84,214,161, 61,182, 89,179,102,194, 15, 62,248, 0, 82,169, 20,155, 54,109,194,234,213,171,177,120,241, 98, 68, + 69, 69,161,110,221,186, 80,171,213,112,115,115, 19, 2,136, 45, 59,166, 70,236,125,152, 57, 58,227,157, 51, 14,190,138, 88,194, +184,118,208,153,100,111,206,248, 54, 57,107,206,119,177,139,238,223,213,122,223,185,116, 42, 43,234,230,111, 92,220,149, 19,153, +201,209,133,222,115,190,139, 93, 52,111,101, 82,118, 85, 90,167, 78,205, 96,127, 61,112,202, 80, 84, 88, 44,236,215,235,101,237, +216,145,111, 55,114,180,105,188, 5,238, 61, 2,234,121,170,135,205,152,183, 92,255,222, 7,147, 13,235,127,248,145, 22, 20, 20, + 32, 63, 63, 31,203,150, 45, 51,253,254,251,239, 73, 44,203, 78,174, 38, 68, 1, 0,152, 76, 38, 12, 28, 56, 80, 33,151,203,145, +144,144, 80,158, 5, 5,128,148,140,172, 27,231,174,220,188, 51,101,236,192,224, 34,157, 78,119,248,100,216,109, 63,223,186, 30, +132,208,122,213, 93,183,128,144,118,205, 90,180, 0,165,185, 96,132, 94, 72,252,233, 91,104, 83,179, 81,156,145, 13, 70,164,128, + 17, 50, 24,168, 4,178, 22,109,240, 32,252, 42,220,148, 42, 8, 9,233,104,233,126,242,240,240,252, 59,169,201,139, 0,112, 33, +132,236, 35,132,236,155, 62,125,122, 55, 0, 78,132,144,125, 40, 53, 65, 46,101,203, 18,243, 62,213,172,187, 84,212,169,116,108, +197,101,231,233,211,167,191, 68, 8,217,215,161, 67,135, 97, 40, 53,114,181,198,162,219, 16,148,232, 67,167,127, 49,131, 81, 41, + 37,182,126, 77,235, 59,252,126,228,116,196,185,139, 87,111,219,218,200,164,133, 69, 69,146,197, 43, 86,123,145, 98,173,181,157, +188,155, 58, 59, 59,195, 96, 48,224,222,189,123, 72, 76, 76,132,193, 96,128,169,184, 8,186,220, 92,148,228,228,128, 43, 46,132, +152,229,160,205,204,128,131, 76, 2,252, 57,194,176, 90, 40,165,229,102,170, 34,230,117, 66, 8,100, 42, 91, 72,108,149, 96,132, +130,170, 36,170, 68,173, 86, 7, 6, 4, 4,252,114,252,248,241,182,157, 58,117,154, 83,175, 94, 61,187,212,212,212, 7,105,105, +105, 47, 47, 92,184, 80,231,226,226,130,161, 67,135, 54, 54, 26,141,195, 45,105,137,101,186,230,117,221,124,225,229,214, 15, 26, +167,118,200,202,215, 33, 35, 87,139,212,172, 98,108,223,245, 54,254, 56,248, 54,174,158, 25,134,123,151, 70, 33,171, 72, 5,153, + 99, 55, 0,180,198, 10,186, 23, 47, 94,196,154, 53,107,202, 95, 43, 87,174, 68,118,118, 54,154, 53,107,134,132,132, 4, 28, 58, +116, 8,169,169,169,112,113,113,193,213,171, 87,177,118,237, 90, 92,186,100,213,220,181,143, 80, 82, 82, 2,145,196,201,176,105, +221, 16,108, 90, 55, 4, 44, 85, 24,204,219,106, 83,168,150, 97,152, 17, 41,253,251, 55, 79,177,183,247,107,209,162, 69,175, 65, +131, 6,121,183,109,219,182,124,187,143,143,143,151, 80, 40, 76,213,104, 52,235, 53, 26, 77, 64,141, 98, 28,109,229,224,216, 20, +122,221, 29, 0, 0, 33, 66, 16, 34,197, 75,175,220, 70,199,206,225, 48, 24, 37, 32,140, 20, 12,145,193,100,202,130,202,214, 13, +148, 90,172, 72,220,251,208,161, 67, 88,179,102, 13,226,226,226,202,155, 71, 67, 66, 66, 38, 14, 30, 60,120, 55,203,178,216,183, +111, 31,126,253,245, 87, 52,104,208, 0, 1, 1, 1, 48, 24, 12,213,246,193, 50,243,229,202,164,139, 91, 23, 31,124, 91,100,178, + 15,144, 72,235, 54, 96, 10,108,250,141,239,234,162, 0,128,131, 49, 49, 5,110, 94, 5,243,139, 11,110, 62,116,240, 40,250,198, + 82, 7,119, 74, 65,195,162,110, 93,218,182,235, 72, 94, 90,102,150,168, 85, 75,127,237,215,179,166,138,235,213,111,184, 96,198, +167,227,220,146,242,101,121,175, 76, 58,120,103,247,161,203,133,239,140, 26, 99,122,119,204,132,146,195, 71,142,237,225, 56,174, + 69,117, 35, 8, 57,142, 67, 74, 74, 10,110,222,188,137,184,184, 56,100,102,102, 34, 35, 35, 3, 5, 5, 5,229,205,138, 54, 5, +249,251, 87,110,248,253,154, 66, 46,183,105,219,220,215,235, 82, 68,100,186, 66, 46,183,241,173,239,213,136,144,170, 39,160,230, + 56,206,190,244, 30, 18, 20,220, 60,141,146,236, 2,104,115, 11,161,205, 46,132,206, 32, 64,137,142, 65,137,129,129,115,231, 30, + 40, 44,210,162, 36, 59, 23, 28,165, 14,150,238, 39, 15, 15,207,127, 23, 74,105,200,252,249,243,231,213,180,189,194,187,190,210, + 58, 8, 33,251, 40,165, 33,148,210,144, 50, 51, 5,243,231, 21,117,230,207,159, 63,143, 82, 26,114,254,252,249,159, 1, 20, 63, + 78,172, 22,155,118, 50, 51,163, 10, 85, 46,126,111, 76,254,244,171, 3, 91,214, 45,119,205,206,206,137, 18,203,228, 37, 50,153, +196,241,147, 79,103,217, 23, 21,231,189, 81,152,109,253,168,167,156,156,156,242,135,151, 88, 44, 6, 91, 92, 4, 86, 91,140,146, +156, 44, 16,131, 14, 98,150,133,163,141, 13,188, 52,110,168,231, 86,199,162,158,128, 99, 73,242, 31, 7,112,120,216,235,143, 52, + 11,114, 6, 61, 14,117,104, 12,137, 82, 1,185,189, 3, 58,253,122, 6, 0, 32, 22,139,129, 25,223, 88,212,173, 83,167,142,179, + 70,163,217,187, 98,197, 10,113,102,102, 38,110,221,186,117, 45, 62, 62, 62,207,209,209,209, 86, 36, 18,113,209,209,209, 71,239, +222,189, 27, 82,191,126,125, 80, 74,125, 44,233, 21,228, 42, 12, 6, 35,135,164,244, 7, 72, 76,185, 9, 59,165, 23, 40,227,137, +180,236, 98, 16,184,194, 88,114,183,188, 47,153, 78,155,136, 34,157,117,243,246, 26, 12, 6, 24,141, 70, 24,141, 70,232,245,122, +188,243,206, 59, 56,127,225, 2,182,254,122, 18, 9, 9, 9,104, 80,199, 6,111,191, 53, 16, 45, 91,182, 68, 88, 88,152, 85,154, + 85,225,219,253,240, 45,185, 92,142,213,171, 87,195,198,198,166,252,115,107, 13,150, 90,173, 94,212,164, 73,147,134,119,139,138, + 16,121,231, 14,218, 12, 28, 8, 0, 56,123,246,108,249, 62, 90,173, 22, 67,134, 12,145,196,197,197,189,123,231,206,157,119,213, +106,245,226,148,148,148,143,170,211,220,191,255, 2,198,142,141, 68, 70, 70,105,102,119,251,207,126,229,219,238,199, 25,208,179, + 79,105,203,149,189,189, 61, 22, 45,178,110,182, 7,150,101,177,118,237, 90,200,229,242,114,131, 37, 22,139, 59, 78,153, 50,229, +141,170,246,247,243,243,171,234,227, 71,152, 50,208, 67,118,245,129,124,188, 93,195,250,254,118, 46, 45,144,105,186,218, 60, 34, + 41,117,226,148,129, 30, 75, 23,239, 72, 44, 97,137,110, 35,107, 76,240, 20,202, 74, 54, 89, 19, 99,204,193,229,122,135, 6,239, +111, 74, 77,207,251,124,194,152,161, 78,246, 14,110,133,235, 87,132,218, 51, 12,131,223,195,245, 57,205,188,157, 28,250,181, 91, + 86, 56,246,127, 95, 70,232, 77, 15, 38, 34, 97,223, 93,160,202,110,137, 0, 74, 13, 86, 82, 82, 18, 50, 51, 51,241,240,225, 67, +100,100,100,128, 16,130,140,140,140, 90,101, 40, 43, 67, 8,129, 62, 49, 9,169,123,126, 64,157, 33, 67,209,104,246,108,112,156, + 8,218, 98, 19,118,118,126, 25,249,121, 90,232, 57, 2,251,192, 14,120,101,223, 25, 48,156, 9,184,112,254,177,207,199,195,195, +243,239,135, 16,178,111,218,180,105,159, 89,185,251, 81, 0, 86,149,214,169,108,184,166, 77,155,246,153,249, 92,161,161,161, 90, + 0,201,181,141,213,170,190, 51,249, 25,145,177, 78,117, 91,164, 20, 22,107,101, 14,142, 14,197,182, 74, 9,205,203,205, 19,220, +185, 23, 85, 82,152,114,239,110, 45,206,119,251,214,173, 91,254, 73, 73, 73,120,248,224, 1,140,197, 69, 32,122, 29, 80,162, 69, +247,206, 29, 33, 3, 32, 35,128,152, 51, 64, 32,144,160,176, 48, 31, 0,110, 91, 18,229,140,229,253,192, 31,109, 22,180,181,133, + 68,169,128, 84,101, 91,190,205, 90,228,114,249,214,181,107,215,170,213,106, 53,150, 44, 89, 2,181, 90,221,164,123,247,238,197, +193,193,193,114,103,103,103, 52,106,212, 8, 65, 65, 65, 56,113,226, 4, 8, 33, 49,150,244, 76,122, 73,248,237, 88,214, 51,191, +240, 42, 46,133,111,134, 81,175, 71,125,223,233,208,153,156,161,112,125, 23, 90,195, 94, 24,114, 79, 2, 0, 36,170,174, 72, 75, +203, 4, 64,106,236, 68, 88,217,220, 80, 74,113,253,250,117,108,220,115, 22, 94, 77,187, 34, 53,251, 16,110,222, 12,131,155,195, + 17,248,250, 53,131,177,194,125,178,132,181,198,201,218, 7, 48, 33,100,200,244,233,211,145, 39,151, 3,125,250, 64, 28, 27, 11, +131,193,128,118,237,218,161,117,235,214, 0,128,118,237,218, 65, 32, 16,160, 97,195,134,112,116,116,196,238,221,187,135, 0,168, +210, 96, 81, 66,174,114,108, 86, 19,111,111,239,114,131,181,233,167, 12, 68,132,117, 7,129, 4,203, 87,254,249, 35,241,242,242, + 66,106,106, 28, 8,177,216, 41,243, 64,159, 62,125,122, 59, 56, 56, 96,228,200,145,144,203,229,120,253,245,215,161,213,106, 7, + 1,192,252,249,243, 49,125,250,116, 0,192,140, 25, 51, 48,115,230, 76, 20, 23, 23, 87, 91,162, 98,205,215, 45, 52, 5, 90,110, +148, 90,173,121,189,155,115,253, 22, 47,189,218, 29, 13,124, 95,198, 75,175, 38, 0,192, 60,103,209,253,129, 11, 62,247,223, 83, +223,211,113,195,249, 95,143,126,213,169, 87,183, 47,102, 77,114,156, 51, 99,121,182,197, 47, 44,185,247,191, 47,184, 35,234,187, +116,249, 26,211,146, 25,159, 77,145, 62,200, 52,100, 39,231,112,133, 10,169,208,214,199, 13,202,137,159,204,137, 75, 78,190,247, + 49, 18,142, 88, 28, 57,201,178, 44,226,226,226,160,211,233,192,178, 44,116, 58, 29, 10, 11, 11,145,152,152, 88,254,243,213, 42, + 84, 61, 39,140,236,219,178, 72,171, 45,190,116, 35,250,225, 23,147,134,182, 47,210,106,139,163,239, 63,140,162,116, 89,149,117, +198, 8, 33,185,197, 5,133,142,250, 2, 35,114,175, 69,193,249,165,186,208,155, 8,116, 38, 1,178, 51, 11, 96, 96, 1, 35, 35, +130,199,128,119, 96, 34, 66,228,103,164,130, 33,132,175,135,197,195,195, 83, 45,102, 35, 20, 26, 26,106,117,247,161,218,106, 3, + 64,104,104,232,173,208,208,208, 39, 58,151,217, 96,117,173,208,222,217,181,242, 78,132, 16, 18,208,194,203,125,222,103,111,104, +140, 70,125,147,194,194, 66, 86, 40,148, 8, 61,237,180,169,149,247,173, 9,163,209,184,239,204,153, 51,253, 59,119,238, 44,141, +190,113, 13,186,188, 60,232,242,114, 33,230, 76,112,148, 5,129, 49,234, 65,244, 58,184, 55,230,160,205,151,225,194,149,187, 70, +163,209,184,175, 38, 77, 10, 74, 57, 83,169,113, 96, 24,193, 35, 77,133, 82, 91, 37, 36, 74, 37,164, 74,219, 42,155, 16,171,195, +205,205,205,166, 87,175, 94, 47,183,106,213, 10,148, 82, 44, 92,184, 16,122,189, 94, 98,206, 20, 25, 12, 6, 20, 20, 20, 96,215, +174, 93,248,233,167,159,206,217,217,217, 89, 28, 90,206,153,116, 7, 79,156,187,214,123,216,235, 47, 73,254, 56,185, 30, 70,157, + 9,133, 58,123, 20,149,232, 81,160, 21, 65, 47,125, 21,132,156, 1, 35,144,162, 67,128, 15,142,159,141, 46, 97,141,134, 42, 59, + 15,255,229, 30,148,153, 33, 66, 8,116, 58, 29,210,211, 51,144, 93,112, 2, 40, 72,130,179,161, 0,133,247, 99, 16,240,206,112, +232,245,122,139, 90, 95,142, 38,198,105, 67, 32,252,105, 54, 3,145,196,201,224,219,253,112,181,165, 34,148, 74,101,121, 31, 29, +107,200,207,207,199,230,205,155,209,174, 93, 59, 4, 7, 7, 35, 41, 41, 9,177,177,177,232,221,251,207, 86,182,107,215,174, 33, + 34, 34, 2, 62, 62, 53, 39, 5,243,243,233,129,236,236,123, 3,251,245,235, 39,190,120,241, 34, 40,165,240,245,181,131,202, 86, + 9,194, 72,209,180,169, 11,128,187, 32,132,160,107,215,174, 48, 24,146, 77, 69, 69, 56, 80,147,102,120,120,120,159,192,192,192, + 6, 70,163, 49,202,223,223, 95,152,154,154,138, 1, 3, 6, 96,251,246,237, 0,128,105,211,166, 97,218,180,105,143, 28, 83, 88, + 88, 88, 82,157, 94,203, 54,141, 62,102,169, 83,176, 68, 90,183,129,157, 75, 11, 52,240,125, 25, 0,240, 74,200, 40, 52,104,232, +137,188,140,235, 13,244,186, 7,175, 11, 72,150,195,150,139, 73,145,157,109,252, 71,102, 38,156,140, 6, 96,177,112, 47,165,148, + 18, 66,210, 30,138, 84,191,236,252,109,223,251,125,251,190, 38, 52,178,156,201,223, 75,104,183,125,247,254,244,164, 7, 15,151, +225,225,145, 91, 21,247,175, 78,139,101, 89, 54, 55, 55, 23, 74,165, 18,177,177,177,186,190,125,251, 74,181, 90, 45,162,163,163, +203, 13,150,171,179,163, 95,199,214,254, 77,230, 46,249,233,176, 66, 42,149,190,218, 53,168,105,100,244,131, 68, 74, 73,124,181, +186,148, 94,140,190,125,187,143,139,179, 23, 82, 78,158,135,162, 83, 47,232,116, 4, 37, 6, 14,122, 22, 48, 9,196,176,107,217, + 6,114,239,166,224, 40,112,251,198, 53,152, 40, 61,103,233,218,121,120,120,254,181,212,232, 69,128,210, 12, 86,251,246,237,183, + 1,127,102,153,204,203, 0,116, 0,106,234, 19,157, 81,209, 68,153,155, 13,171, 59, 79, 37,221, 90, 35, 44, 59,201, 41,212, 48, +178,204,217,217,217,181,105,227,102,222,235,126, 88, 15,131, 46, 15,177,145, 27, 80, 84,144,134, 47,231, 93,240,241,240,240, 8, + 78, 76, 76, 60,101,205,201, 18, 19, 19,183,239,222,189,251,163,150,205,154,181,170,231,225,129,235,241,247, 33,166, 44,196, 44, + 11,198,160,131,144,213,195,195,143, 3,195, 40,144,154, 90,128,181,135,142,221, 76, 76, 76,220, 94,147, 38, 75, 4,240,236,251, + 38, 6,191,210, 7,212,104,192,145,206,126,144, 41,149,144,218,219,163,195,174,147,165, 37, 27, 76, 70,196,207,159, 10,177, 66, + 9,199,118, 85,254,204, 30, 33, 45, 45,173,184, 97,195,134, 97,119,238,220,105,221,184,113, 99,204,154, 53, 11, 9, 9, 9,160, +148, 34, 61, 61,189, 36, 35, 35, 35, 41, 43, 43, 43,158, 16,178, 39, 57, 57,121,157, 53,149,194,211,125, 5, 27,255, 56,122,236, +227,192, 0,191, 70,221,131,103, 98,223,190,175,144,155,159,143, 34,157, 16,133, 90, 3,138, 74, 40, 52,182, 62,104,219,162, 21, + 50,178,244,136,190, 21,158,152, 41,118,252,222,154,251,106,134, 16,130,107,215,174,161,174, 35, 65,100, 84, 4,156, 75,178,209, +216, 94,137, 86,157, 58, 35, 46, 46, 14,128,229,204,148,201, 4,225,196,201,127,142, 22,180,183,183, 71, 94, 94,222, 35,199,217, +216,216, 64,163,209, 32, 63, 63, 31, 59,119,238, 4,181,238,161,104,212,235,245,104,210,164, 9,174, 92,185,130,163, 71,143,226, +165,151, 94, 66,151, 46, 93,112,242,228, 73,132,133,133, 33, 34, 34, 2,132, 16, 56, 57, 57,153,179,109,213,166,220, 46, 95,190, +182, 67,169, 36,211, 71,142,252,192,127,232,208,161,216,181,107, 27, 70,141,108, 12,194, 72, 65,136, 20,175,245,109,130,217,115, +194,208,182,109, 87, 56, 59,139,113,244,232,173, 56,161,208,238, 39, 75, 65, 82, 74, 87, 44, 88,176, 64, 40,147,201,160,215,235, + 81, 88, 88,136,172,172,210,114, 84, 85,101,176,180, 90,109,181,133,213,110, 93,189,187, 40, 39,159,230, 48,197,225,175,103, 26, +175,182,120,233,213, 68,188, 18, 50, 18,127,236,219,128,227,135,143,194, 89,116, 63,142,149, 23, 30,204,136,203, 44, 72, 46,244, + 93,235, 23,244,158, 32,165,232,240,154,241,253, 28, 4, 30,106,110,199,180, 85,121,185,150,226,205,142,220,188,119, 47,197,107, +157,218,181,241,105,238,165,145,100,103,165, 99,247,111, 7,111, 25,238,239,218,135,210,102, 65,107, 82,145,179,151, 47, 95,254, + 21, 0,112, 28,183,113,201,146, 37,239,125,252,241,199, 46, 73, 73, 73,229, 6, 43, 61, 51,251,120,135, 62, 19,217,172,220, 60, +253,143, 75, 62, 25, 32,151, 73, 37, 95,204,255,241,164, 81,128,139,213,137, 10,133,194,225,159,173,218,146,177,115,199, 6,129, +139, 76,140,179,159,206, 64,236,177, 19, 48, 16, 49, 94, 61,114, 9,122, 3,139,252,244, 44, 28, 31, 57, 14, 14,106, 71, 28,200, +138,102,243, 10,242, 45,246,103,228,225,225,249,119, 98,193,139,100, 84, 48, 68,217, 0,226, 67, 67, 67, 51, 43,100,151, 50, 0, + 92, 3,208,178,108,191,140, 74,199,101, 0,184, 2,160,117, 5,157,140,178,243,134, 84, 90,214, 87,218,231,218,227, 92,143, 85, + 77,132,153,153,153,233,151,195,110,226,220, 31,171, 97, 50,234,144,151, 93, 90,251, 51, 57,173, 4, 42,149,234, 66,117,199, 85, +158,109,155, 82, 74,213,106,245, 27, 75,150, 46,189,248,254,240, 97,117,186,188,252, 50, 30,220,184, 14, 93,118, 38, 4, 44, 11, + 1, 17,161, 48, 83,134,180,212,124,132,238, 61,152,174, 45, 41,121,163,242, 55,239,170,102,240, 54,119,114,167,132, 64,102,167, +130, 84,161,128,212, 78,245,103,198,138, 16, 72,148,182, 16, 41,148, 16,136, 43,142,216,172, 94,179,184,184,248,205, 49, 99,198, + 92, 63,112,224,128,195,224,193,131,241,218,107,175, 69,228,230,230,118,203,206,182,220,124, 83,229,181,239,216,193, 58, 55,127, +173,223,119,171,215,157, 31, 49, 98,132,227,107,253,190, 67, 68,228, 45,228, 22,185, 2, 0, 52,206, 10,180,109, 60, 21,233, 89, + 58, 28, 62,184, 47,135, 51,149,188, 73,111,110, 51, 86,167, 73, 41,165,206,206,206,143,100,229, 4, 2, 1, 78,158, 60,137, 15, + 63,252, 16,206,182, 39, 81, 16, 31,139,230,157,131,241,202,208,225, 24, 53,106, 20, 4, 2, 1,156,156,156,128, 10, 15, 93, 75, + 51,162,231,229,229,161, 94,189,122, 56,178,174,113, 51,125, 73,186,184,149, 35, 64, 96,103,248,227,120,239, 91,167, 79,159, 46, + 4,176,206,215,215,247,145, 34,163, 85,105, 18, 66, 62,159, 55,111,222,234,142, 29, 59,202,149, 74, 37,124,125,125,113,238,220, + 57,156, 59,119, 14,103,206,148,246,143,115,114,114,130,163,163, 35,114,115,115,145,144,144,160, 37,132,124, 94,237,253,164,148, +107,221,186,117,255, 63,254,216,115,169,111,223, 55,156,123,246,108,143, 58,117, 10, 96, 50,101,130, 48, 98, 72,101,174, 88,183, +110, 62,210,211,178,113,254,194,133,236,194, 66,225,155, 97, 97,143, 78, 65, 84, 77,156,134, 67,135, 14, 65, 38,147, 97,215,174, + 93, 38, 55, 55, 55,161,189,189, 61,128,170, 51, 88, 37, 37, 37,210, 74,199,151,107,190,247,201,141, 36, 0,115,166, 12,244,248, +246,252,173,180,254, 0,182, 54,104,232,129,227,135,143,226,204,241,243,211,218,249,115,203,251, 12,105, 51, 91,246,210,160,169, +126,129,239, 9,148, 42, 53, 54,237,222, 37,136, 12, 95,255,117, 73,209, 77,111, 0, 83, 45,252,140, 40, 0, 20,166,167, 77, 15, + 93,188,114, 99,232,172,175,228, 11,151,173, 74,214,102,166,126,134,210,161,149,180,226,126,213,197, 25, 27, 27,187, 22, 64,121, +121, 12,141, 70,179,121,254,252,249,167,135, 13, 27,230, 98,206, 80,166,223,250,237, 2,128, 11,254,221,222,253,178, 67,235,102, +141,191, 94,182,229,240,195,132,180, 45,185,145,165, 53,176,170,138,243,194,133, 11, 57, 65, 65, 65, 99,166,126, 58,115,253,172, +217, 51, 72,147,201,211, 16,117,238, 10,116, 90, 3, 12, 84, 0, 35, 8,194,231, 46,134,173,139, 10,103,105, 54,213, 9,152,209, + 49,149, 58,249, 91,250,253,124, 28,120, 77, 94,147,215,124, 49, 53, 45,112,165,138,207,170,154, 73,163,242,126,150,214,159, 25, + 86, 25, 44,119,119,247, 46,175,188,220, 14, 29, 95,249, 0, 6, 93, 46, 98,111,253,136,194,130, 52,184,215,145, 34,246, 97,126, +123, 0,167,172, 61, 97, 74, 74,202, 67,181, 90,221,238,235,165,203,119,191,218,166,117, 83, 95,119,181,212,190, 94, 93, 40, 92, +221,144,153,145,129, 75,225, 81,198, 85,135,143,223,212,150,148, 88, 53, 85, 14,199,113,148, 82, 10,177, 88, 12, 42, 16,192,111, +226,167, 96, 24,166,210,104, 65, 2, 85, 80, 39, 48, 66, 17,140, 86,246, 25, 74, 78, 78, 78,116,119,119,127,115,226,196,137,199, + 54,110,220,200,116,237,218, 53, 96,239,222,189,143, 61,167, 29, 0,100,222,216, 27,237,214,252,245,224,229, 43, 86,237,108, 21, +212,174,110,189,250,245,164, 29, 61,237, 96, 48,178, 72, 75,207,194,169,243,145,186,232,200,107, 9,156, 65, 63, 48, 61,178,250, + 42,238, 0, 96, 52, 26, 31,106, 52, 26,183,153, 51,103,194,100, 50,129,101, 89,152, 76, 38,100,102,102, 34, 34, 34, 2,129,237, +218,163,201,187,239, 33, 59, 59, 27, 63,252,240, 3, 60, 60, 60,208,187,119,111, 20, 20, 20,224,244,233,211,213,222, 87,161, 16, +166,233,159, 15, 17, 2,128, 72, 4,211,103, 33, 33, 39,155, 53,107,214,233,181,150,233,226, 15, 38,150,102,182,190,153, 63, 68, +124,242,228,201, 29, 82,169,116,109, 92, 92, 92,141, 53,208,124,124,124, 36, 37, 37, 37, 1,148, 82, 97,126,126,254, 82,157, 78, + 55, 98,202,148, 41,234, 5, 11, 22,160, 69,139, 22,200,204,204,132,163,163, 35,212,106, 53, 10, 11, 11, 17, 23, 23,199, 26, 12, +134, 53, 44,203,206, 78, 75, 75,203,168, 73,251,202,149, 43,247, 91,181,106,213, 62, 45,117,245,238, 15,198,246,240, 53, 26,131, + 36, 42,187,206,160,212,132,220,156, 4, 16,122,221,176,231,215, 99, 49,185,185,130, 55,194,194,194,162,107,210, 50,195, 48,204, +216,223,127,255, 29,230,169,114,146,147,147, 99, 25,166,116,144, 92, 85, 25, 44,107, 88,188, 35,177, 4,192,207,223,254,175,253, +228,188,140,235,141,156, 69,247,227,218,249,115,203, 23,239, 72, 44,249,230,125,135,185, 73, 25, 39,163,146, 11, 15,175,221,180, +123,151, 96,248,235,111,178,106,101,244, 52,103, 79,236,232,246, 90,205,186,148, 82,218,178,101, 75, 47,134,201,174,159,158,117, + 55,108,212,232,247, 7,217,137,181, 7, 90,184,103, 54, 52,185,249,201, 34, 35, 35,227,203,118,179,126,168, 39,128,228,228,228, + 40,141, 70,211,101,209,162, 69,135, 81, 41, 53,158,158,153,125,188,125,200, 4,154,155,155,119, 53, 61,242,183, 26,171,184, 3, + 64, 88, 88,216,143, 65, 65, 65,120,103,216,168,239, 71,191, 59, 70,224, 63,233, 19, 36,158, 56, 6,152,140, 72, 57,115, 10, 54, +182, 44,246,101,198,179,197, 2,102, 76, 88, 88, 24, 95,197,157,135,135,231, 95, 3,177,246,127,175,143,183,199, 97,239,250,238, + 61,188,235,107, 0, 0,177,247,147, 17,123, 63,233, 72, 76,108, 98, 21,229, 16,203,196,107,112,184, 21, 39,123, 38,101,165, 24, +168, 21,147, 61, 87,214,244,247,247,143, 96, 24, 70, 99,213, 69,148,193,178,108,226,173, 91,183,130,172,137, 83,163,209, 12,246, +244,244,156,159,156,156,188, 59, 33, 33,225,127,214,158,163,198,107, 47,155,236,153, 17,136, 67, 40,165, 45, 0, 16,194, 48, 22, + 39,123,174,168,233,238,238,222, 92, 46,151,175, 21, 10,133, 94, 40, 75,169,154,111,153,193, 96, 16,228,229,229,201,244,122,189, + 0, 0, 17,139,197, 38,165, 82, 89, 34, 18,137, 76, 44,203, 62, 52, 26,141,239, 39, 37, 37,221,176, 20,167, 25, 63, 63, 63, 69, + 72,208,237, 66,243, 20, 58,211, 63, 31,130,208, 13,180,218, 38,229,138,154,247,238,221,107,228,224,224,240, 22, 33,100, 0,165, +180,113, 65, 65,129,238,171,175,190,186,122,234,212,169,124, 47, 47,175,158,157, 59,119, 38,215,175, 95, 71,124,124, 60, 45, 44, + 44,220,201, 48,204,231,137,137,137,177,181,186,159,132, 48, 29, 58, 4,188,109,171, 68, 31,142,162, 37, 64, 9, 33,228, 70, 97, + 33, 57,160, 86,215,223,178, 99,199,142, 42, 93,181, 53,215, 30, 24, 24,184,191,176,176,176,119,116,116,213,254,140, 16, 2, 74, +255,188, 23, 53,105,126,251,121,243,207,219, 7,119,122,243,220,169, 51,123, 62,249,250,230,156,138,219, 38,188,238, 56,106,200, +248, 15, 23,108,253,110,217, 39, 43,247,100, 63, 50, 39, 95,117,154,129,129,129, 13, 0,188, 77, 41,109, 70, 8,241,229, 56,200, + 8,161,217,132,144, 72,142,227,174,113, 28,247,251,245,235,215,171, 28,249,242,119,127,163,173, 56,217, 51, 97, 89,123,150, 16, +171, 38,123,254,167,124,243,230, 53,121, 77, 94,147,167, 50, 86, 87,224, 54, 27, 41, 95, 95, 95,122,239,222,189, 71, 30, 42,143, + 67,153,129,218,134, 26,170,180, 91,195,205,155, 55, 91, 61,201,241,150, 72, 78, 78,254, 25,192,207, 79, 83,179,204, 64,253, 88, +246,122, 44,202, 12, 82, 91,139, 59, 62, 5, 34, 35, 35,139,190, 28, 77,202, 51, 91, 66, 33,170, 52,128, 85,209,163, 71,143, 7, + 6,131,225, 40,128, 68, 0,246, 0,178,141, 70,227,161,140,140,140,180, 58,117,234, 4, 61,120,240,224, 75, 0,224, 56,110, 78, +106,106,234, 99,213,145, 40,235, 3,183,181,236,245, 84, 9, 15, 15,239,163,209,104, 34,156,156,156,124, 74, 74, 74, 36, 37, 37, + 37,162,138,191,251,114,185,188,198, 44, 91, 69,236, 84,216, 36, 32, 89, 78, 14, 42,242,151, 76,141,179, 59,118,105,139,110, 54, +114,118,199,174, 90,196, 22, 23, 16, 16,176,153, 97,152,250, 28,199,185, 1, 80, 81,138, 76, 74,105, 38,203,178,137, 55,110,220, +168,245,176,226,103, 69,153,129,122,234,163,126,120,120,120,120, 94, 84,106, 61,197, 73,116,116,244, 19, 25, 43,158,127, 38,115, +214, 81,209,227, 28, 23, 31, 31,175, 3,112,190,236,245, 8,101,134,170,239, 19,134,246,204, 73, 78, 78,126, 42, 38,190,172, 79, +214,255,218,188,252,215,109,101,165, 25, 62,121,201, 66,179, 96,101,174, 94,189,250, 16,128,197,166,116, 30, 30, 30, 30,158,191, +151,218,205, 27,195,195,195,195,195,195,195,195,195, 99, 17, 2,160,202, 18,215,181,105, 91, 37,196,226, 20, 36,181,214,231, 53, +121, 77, 94,147,215,228, 53,121, 77, 94,243,223,167,105, 73,251,223,210,183,203,234, 78,238,143, 37,254, 15,233, 88,199,107,242, +154,188, 38,175,201,107,242,154,188,230,243,213,252,183,193, 55, 17,242,240,240,240,240,240,240,240, 60,101,120,131,197,195,195, +195,195,195,195,195,243,148,225, 13, 22, 15, 15, 15, 15, 15, 15, 15,207, 83,134, 55, 88, 60, 60, 60, 60, 60, 60, 60, 60, 79, 25, +222, 96,241,240,240,240,240,240,240,240, 60,101,158,233, 40, 66, 30, 30, 30, 30, 30, 30, 30,158,255, 34,124, 6,139,135,135,135, +135,135,135,135,231, 41,195, 0, 0, 33,132, 86,124,231,225,225,225,225,225,225,225,249, 59,249,183,121, 17, 62,131,197,195,195, +195,195,195,195,195,243,148,225, 13, 22, 15, 15, 15, 15, 15, 15, 15,207, 83,198,108,176,186,150,165,228,186, 62,207, 96,120,120, +120,120,120,120,120,254,179,252,171,188, 72,249, 40, 66, 66, 8,165,148,146,231, 28, 15, 15, 15, 15, 15, 15, 15,207,127,148,127, +147, 23,225,203, 52,240,240,240,240,240,240,240,240, 60,101,158,105, 31, 44, 66,136, 63,175,201,107,242,154,188, 38,175,201,107, +242,154,188,230,127, 13,190,147, 59, 15, 15, 15, 15, 15, 15, 15,207, 83,134, 55, 88, 60, 60, 60, 60, 60, 60, 60, 60, 79, 25,222, + 96,241,240,240,240,240,240,240,240, 60,101,120,131,197,195,195,195,195,195,195,195,243,148,225, 13, 22, 15, 15, 15, 15, 15, 15, + 15,207, 83,134, 0,168,114, 36, 0,165,244,166,213, 34,143, 49,154,192,146, 62,175,201,107,242,154,188, 38,175,201,107,242,154, +255, 62, 77, 75,218,181,241, 31, 47, 50,207,180, 14, 22, 33,196,255,105,223, 40, 94,147,215,228, 53,121, 77, 94,147,215,228, 53, +255,125,154,255, 54,248, 38, 66, 30, 30, 30, 30, 30, 30, 30,158,167, 12,111,176, 30, 3, 66,200, 59,132,144, 67,132,144,155,132, +144,195,132,144,119,158, 64, 75, 78, 8,153, 86, 65,239, 32, 33,228, 19, 66,136,244,105,198,204,243,116, 33,132, 8,158,119, 12, + 60, 60, 21,209,104, 52,141,252,252,252,194, 53, 26, 77,163,231, 29, 11, 15, 15, 15, 32,172,110,131,143,143,207,121,134, 97, 26, + 48, 76,169, 7, 35,228,207,169,129,204,203,149,223, 41,165,113,145,145,145, 29,170,211,108,208,160, 65,185, 38,195, 48, 32,132, +128, 97, 24, 24,141, 70, 91,129, 64, 80, 80,149, 38,203,178,137,119,239,222, 13,122,130,107,124,170, 16, 66, 54, 59, 56, 56, 24, + 87,173, 90,245, 93,171, 86,173, 26,102,103,103, 23,141, 25, 51,230, 85, 66, 72,119, 74,233,176, 90,106,249, 19, 66,126,106,221, +186,245,238, 9, 19, 38,236,240,243,243,179, 45, 42, 42,146,110,223,190,189,206,154, 53,107,206, 16, 66, 70, 81, 74, 35,159,213, +181,240,212, 30,181, 90,221,138, 16,178,210,215,215, 55, 72,163,209, 92, 1, 48, 62, 57, 57,249,218,243,142,235,191, 4, 33,228, + 61,137, 68, 91,165,206,121, 0, 0, 32, 0, 73, 68, 65, 84,210,211,215,215,183,141, 78,167,203,137,139,139,187,204,178,236, 87, +148,210,212,167,164,111, 7,224, 43,169, 84,218,214,199,199,199, 51, 58, 58, 58,193, 96, 48, 92, 2, 48,155, 82,154,247, 52,206, +241,180,209,104, 52,141,218,182,109,123,118,222,188,121, 78,211,167, 79, 63,171,209,104, 58, 37, 39, 39, 71, 61,239,184,120, 94, +124,188,188,188,236,139,138,138,214, 51, 12,211, 74, 38,147,213,177,181,181,133, 82,169, 76,149, 74,165, 87,109,108,108,222,221, +191,127,127,238,243,142,241,159, 74,181, 6, 75, 32, 16,120, 92,190,124,217,213,214,214, 22, 44,203,130,227, 56,112, 28, 7, 74, +105,249,187, 25, 74, 41, 88,150, 69,183,110,221, 12, 53,158, 76, 40,244, 12, 15, 15,119, 85, 42,149,229,159, 25, 12, 6,180,104, +209,130,139,136,136,112,149,201,100,143,236,175,215,235, 17, 24, 24,248,194, 76,150, 72, 8, 25,234,228,228,164,127,240,224, 97, +251, 18,157,161,195,184,169,115,190,122,235,181, 96,187, 11, 23, 46, 48,125,251,246, 21, 17, 66,222,161,148,254,100,165,150,156, + 16,242,195, 23, 95,124, 49, 95, 40,182,113,221,121,224,188,112,197,218,173, 9,254, 77,235,147,201, 19,199,217, 76,154, 52,233, +114,147, 38, 77,126, 36,132,116,166,148,234,158,245,181,241, 88,134, 16, 34,244,244,244,252, 45, 52, 52,212, 61, 53, 37, 5,139, +151, 44,105, 7, 96, 21,128,118,207, 59,182,255, 10,132,144,105,179,102,205, 10, 29, 50,100, 8, 76, 38, 19,180, 90,173, 38, 38, + 38,166,217, 23, 95,124,241, 58, 33,164, 13,165, 52,246, 9,245, 93,124,125,125,239, 76,158, 60,217,177, 77,155, 54, 96, 24, 6, +185,185,185,154,179,103,207,182,251,225,135, 31,222, 33,132, 52,161,148,102, 60,129, 62,227,228,228, 52, 9, 64, 55,142,227,164, + 0, 46,229,228,228,204,165,148,214,248,191,211, 18, 14, 14, 14, 91,190,253,246, 91, 39,169, 84,138, 13, 27, 54, 56, 13, 26, 52, +232,140, 70,163,233,204,155, 44,158,154,112,118,118,126,175,160,160,224, 59, 27, 27, 27,177,189,189, 61,228,114, 57,196, 98, 49, + 36, 18,137,151,131,131,131,151, 82,169,236, 61,120,240,224,241, 63,255,252,243,250,231, 29,235, 63,145,106, 13, 22,195, 48,144, +203,229,216,190,125, 59, 4, 2, 1,196, 98, 49, 68, 34, 17, 68, 34,209, 35,203,230,117, 79, 79, 79,139, 39, 51,103,165,246,238, +221, 11, 59, 59, 59,168, 84, 42, 52,109,218, 20,132, 16, 72,165, 82, 28, 61,122,244, 17,221,160,160,160, 71, 50,103,127, 7, 3, +187, 19, 10, 0, 59,150, 54, 41, 93,159,124, 7,230,245, 62, 93,148,232, 59,100,222,155,197, 58, 99, 23, 74,137, 54, 53,199,152, + 61,123,225,119,145, 1,205,154,146, 95,126,249, 37,208,217,217,121, 48, 0,171, 12, 22,128, 15,219,180,105,179,215, 4,137,219, +168, 17, 35, 71,140,100,136,233,141,145, 31,205, 58, 27, 17,147,179,222,175,213,214,140,140,196,177, 43, 86,172,136, 26, 55,110, +220, 36, 0, 11,172,141,191,117,235,214, 15, 57,142,243, 4, 0,129, 64,144, 41,151,203,213, 39, 79,158, 52,213,226, 22, 60, 19, + 8, 33, 26, 0, 11, 1, 24, 1,124, 67, 41,189, 83, 97, 91, 35,177, 88,188,192, 96, 48,100, 3,152, 65, 41, 77,120, 94,113,214, +132,187,187,123,147, 97,195,134, 57,103,101,100, 96,241,146, 37,230,143,131, 8, 33, 2, 74, 41,251,119,198, 18, 24, 24,216, 64, + 38,147, 45, 4,208, 74,167,211,185, 3,128, 92, 46, 79,162,148,238,209,106,181,159,135,135,135,107, 31, 71,151, 16,226, 9,160, + 25, 74, 71, 24, 87, 5, 93,176, 96, 65,212,212,169, 83,227,254,110, 77, 66, 72, 61, 55, 55,183,121, 3, 7, 14,196,254,253,251, +113,224,192, 1,163, 76, 38, 19,142, 24, 49,130,140, 31, 63,222, 97,242,228,201,189, 1, 44,179, 54,174,106,232, 61,107,214, 44, +199,166, 77,155, 98,231,206,157,184,118,237,154,182, 81,163, 70,242,224,224, 96, 8, 4, 2,199,207, 63,255,188, 23,128,141,181, + 17, 44,107,238,159, 4,160,155, 64, 32,232, 60, 98,196, 8,211,196,137, 19, 69, 12,195, 24,151, 46, 93,234,178,126,253,250,183, +156,157,157, 91,101,102,102, 22, 62,110,208, 57, 57, 57,115,231,204,153,179,105,229,202,149,182,177,177,177,152, 53,107,150,243, +132, 9, 19, 78,105, 52,154, 96,222,100, 85,143, 64, 32, 48,112, 28, 39, 2, 32,163,148,234, 44,173, 63,231,112,159, 42, 78, 78, + 78, 31,228,228,228,172,210,104, 52,112,113,113, 41,127,214,114, 28,135,162,162, 34,104,181, 90, 52,104,208, 64,220,180,105,211, +117, 19, 38, 76, 16,173, 92,185,114,245,115, 14,249, 31,135,144, 16, 18, 76, 41, 61,101,254,192,188, 78, 8, 1,199,113, 16,137, + 68, 16, 8, 4, 16, 10,133,229,198,167,226,178,249, 85,149, 17,170, 60,194,128, 97, 24, 82, 80, 80, 80,110,174,236,236,236,202, + 51, 97, 70,163,241, 47,154, 44,203,130, 97, 24, 90,147,230,211,160,162,230,142,165, 77,176, 49,108,234,219, 27,195, 74,215,123, + 13, 41,125,223, 24, 6, 28,189, 52,118,225,130,213, 29, 61, 63,156,187, 33, 52, 43, 43, 55,221,207,195,197, 52,120, 72,112, 93, + 73,102, 90,166, 83,253,250, 33, 0,210,107, 17,103,167,177, 99,199,238,220,121,226,158, 66, 42,149, 72, 4, 12, 4,141,188, 27, +136,220, 85, 13, 29, 93, 94,109, 35,137,143,141, 61,243,206, 59,239,140, 29, 55,110,156, 19,202, 12,150, 53,215, 78, 41, 85, 31, + 57,114, 4, 66,161, 16,221,187,119,119, 64,169,137,174,214, 96, 61,235,251, 89,129, 47,210,210,210,222, 46, 41, 41, 65, 80, 80, +208,107,132,144,110,148,210,171,132,144,230,253,250,245, 59,179, 99,199, 14,219,136,136, 8,180,107,215, 78, 14, 96,208,115,140, +243, 47,104, 52,154, 35, 0, 94, 17, 8, 4,208,151,148,232, 23, 46, 90, 84,113,115, 88, 69,115,245,119,196, 25, 16, 16,208,196, +198,198,230,252,162, 69,139, 84,126,126,126, 68, 36, 18,193,100, 50, 33, 58, 58,218,115,243,230,205,239, 95,185,114,165, 87, 96, + 96,160, 95,120,120,184,209, 90,205, 10, 52, 59,115,230, 76,145,183,183,119,149,134,177,184,184, 88,224,237,237,221, 21,192, 95, +204,208,223,160,153,152,150,150,214,255,149, 87, 94, 25,155,154,154,122,199,100, 50,125, 10,192,223,217,217, 57,226,205, 55,223, +132, 92, 46,239, 6, 43, 12, 86, 77, 63, 35, 87, 87,215,126, 29, 58,116,192,202,149, 43,241,205, 55,223,116,167,148, 30, 35,132, +188,156,159,159,127,244,181,215, 94,131,189,189,125,127, 84, 97,176,170,211, 36,132,248, 73,165,210,141, 63,255,252,179,210,219, +219,219, 91, 44, 22, 51,222,222,222,200,206,206, 70, 73, 73,137,116,238,220,185,205,101, 50,217,181,101,203,150,109, 4,240,134, +181,113, 86, 68,163,209, 52,106,211,166,205,186, 41, 83,166,216,238,219,183, 15,190,190,190,200,207,207,199,168, 81,163, 92,151, + 47, 95,126, 82,163,209,116, 53,155,172,191,251,239,136, 16,146, 7, 64, 5,192,190, 54,205,171, 53,220,207, 60, 0,229,253, 83, + 69, 34, 17,164, 82, 41,100, 50, 25,100, 50, 25,226,226,226,118, 9, 4,130,145, 40,253, 34,103, 81,147,252,249,224,106, 73, 8, +185, 44, 16, 8,106, 92,167,148,114,214,196,249, 36, 88, 81, 54,193,131, 16,178, 20, 64, 55,148,246,163, 62,229,234,234,250, 97, +106,106,234, 3,107, 53, 53, 26,141, 83, 97, 97,225, 50,141, 70, 3, 87, 87, 87, 0,128, 64, 32, 64, 80, 80, 16, 74, 74, 74,112, +235,214, 45,112, 28,135,152,152, 24,168, 84, 42, 52,111,222,124,217,172, 89,179,118,206,152, 49, 35,203,218, 56,107, 75,117, 94, +228,105,158,227,239, 70, 8,224, 36, 74,127,207,204, 23,115, 18,101,223, 52, 89,150, 45, 55, 88,149,205, 79,101,195, 69, 8, 1, +165,180,198,116, 19, 33,132,209,235,245,229,230, 74,165, 82,149,155, 51,147,201, 84,165,193,122, 92, 28, 28, 28, 14,231,230,230, + 46,161,148, 30,121,156,227, 71,140, 24,241,151,254, 28,211,166, 77, 75,200,200,200, 96,251,117,106, 36,253,233,167,253, 89,239, +132,116,173,227,231,227,209, 88,225,228,218,178,184,184,248, 10, 0, 81, 45, 78,225,238,231,231,103,187,250,231, 83,233, 67, 38, + 45,156,237,225,166,100, 91,251,186,169,124, 28, 21, 18, 39,153,208,100, 79, 77,185, 54, 54, 54,205, 0,100, 89, 84,170,132,157, +157, 29,246,238,221, 91,219,195,158, 53, 14, 90,173, 22, 57, 57, 57, 88,179,102,141,106,236,216,177, 39, 8, 33, 31,246,235,215, +111,229,206,157, 59, 21,185,185,185, 48, 24, 12, 0,240, 88,153,151,103,204, 28, 7, 7,135, 46,221,186,117,147,108,251,229, 23, + 9,165,180, 8, 0, 5, 80, 72, 41,157,240,119, 7, 35,147,201, 62,158, 59,119,174,202,207,207,143,100,102,102,130, 82, 10,134, + 97,224,236,236,140,169, 83,167,202, 62,255,252,115,247,168,168,168,207, 0,204,122, 12,121, 82,157, 17, 2, 0, 27, 27, 27, 22, +181, 31, 28, 83,165,166,201,100, 34, 29, 59,118,156,154,153,153,217, 92,171,213,126,109, 73,132, 82,106, 2,176,183,236, 85, 42, + 76,200,181, 59,119,238,104,133, 66,161,188,126,253,250,109,107, 25,215, 95,104,212,168, 81,123,145, 72,132, 75,151, 46,233, 0, +156, 42,251,248,212,245,235,215,117,111,188,241,134,212,211,211,179,189,181, 90,132, 16,169, 84, 42,221,120,239,222,189,198,106, +181, 90,126,241,226, 69,180,104,209, 2,153,153,153, 72, 77, 77, 69, 97, 97, 33, 82, 83, 83,241,238,187,239,186, 46, 94,188, 88, +109,141,166, 70,163,105,228,227,227,243,135,179,179,179,156, 82, 10, 74, 41,250,244,233, 35, 90,176, 96,129,109, 98, 98, 34, 76, + 38, 19,166, 79,159,142,144,144, 16, 56, 56, 56, 96,228,200,145,110,235,214,173,219, 2, 32,176,246,119,227,169,146, 43, 18,137, +160, 80, 40,236,115,115,115,159,164, 31,155, 20,128, 4, 0,132, 66, 97,185,185,146, 74,165,144, 74,255,253,227,130, 8, 33,238, +132,144, 72,145, 72, 36, 85, 40, 20, 98,134, 97,160, 80, 40, 94,245,240,240,184,245,206, 59,239,248,255,244,211, 79,241,214,232, +148,148,148,252, 36,151,203, 69, 46, 46, 46, 0,128, 30, 61,122, 96,196,136, 17,200,200,200,224,146,147,147,209,184,113, 99,230, +212,169, 83, 72, 75, 75,195,181,107,215,208,186,117,107,145,163,163,227, 79, 0,122, 61,195,203,171,214,139,252, 83,169,216, 68, +248,151,139,225, 56,238, 17,115, 85, 85,230,170, 98, 6,203, 82,115, 30, 33, 4, 44,203,162, 78,157, 58,176,177,177,129,141,141, + 77,249, 54,179,153,171,248,162,148, 62,118, 19, 97,195,134, 13, 95,178,177,177,233, 76, 8,121,141, 82,122,212,218,227, 6, 78, +190, 83,158,181,170, 76,203,150, 45,207, 79,159, 62,189,231,241,227,199,115,218,183,104,192, 73,147, 19,178,108, 28,156, 91, 16, + 23,215,238,227, 70,143,185, 0,224,231, 90,132,152, 92, 82, 82, 34,173, 87,135,209, 38,231,229,235, 27,168,236,236, 27,216, 41, +109,234, 57,219, 57, 57,200, 36,140,194,205, 85, 99, 52, 26,115, 1, 36, 91, 18,170,216, 44, 40,147,201,244,132, 16,161,189,189, + 61,236,236,236, 12, 57, 57, 57, 37,129,129,129,144, 72, 36,153, 98,177,216,234,230,194, 54,109,218,164,177, 44,235, 90,211, 62, + 98,177, 56,253,194,133, 11,110, 86, 93, 45,240,121,203,150, 45,131, 87,173, 90,229,226,235,235,139, 53,107,214,168,118,238,220, +185,113,203,150, 45,200,205,205,197,253,251,247, 49,106,212,168,124,148, 54, 35,190, 80, 56, 58, 58,158, 29, 48, 96, 0,214,175, + 95, 79,203,190, 68, 40, 8, 33, 45,236,236,236,238, 70, 70, 70, 62, 81,223,153,199,129, 97,152, 87, 27, 55,110, 76,242,242,242, + 64, 41,133, 64, 32,120,228, 53,117,234, 84,249,187,239,190,251, 69,251,246,237,167,138, 68,162,124,147,201,180,173,176,176,240, +235,155, 55,111,190, 80,157, 85, 59,119,238,252,191,132,132,132,144,186,117,235,254,254,184, 26,148, 82,218,186,117,107, 61,165, + 84, 46, 16, 8,106,243, 5,167, 74,204,163, 67, 89,150, 45, 41, 51,116,160,148,154, 2, 3, 3, 75, 80,250,112,175,205,232,209, + 73, 59,118,236,176, 85,171,213,114,173, 86,139,216,216, 88, 4, 6, 6,162,160,160, 0, 69, 69, 69, 40, 46, 46,134,193, 96, 64, + 94, 94,158, 61,203,178,122,107, 4, 29, 29, 29,183,108,222,188,217,195,195,195, 3, 70,163, 17, 70,163, 17, 69, 69, 69, 56,117, +234, 20,116, 58, 29,140, 70, 35, 26, 55,110,140,249,243,231,151,140, 31, 63, 94,246,203, 47,191,164,107,181,218,161,181,190, 17, + 79, 25,129, 64, 0,169, 84, 10,145, 72,148,235,229,229, 5,134, 97,100,241,241,241,143,211,228,166, 2,144, 47, 20, 10, 37, 21, +141,149, 76, 38,195,205,155, 55,183, 87,151,189,170, 14, 90,169, 16,164,165,245,231, 13, 33,100,169, 72, 36,146, 58, 57, 57,137, +205,159, 25, 12, 6,177,131,131, 3,234,214,173,187, 18, 64,111, 43,117, 2,156,156,156, 64, 8,129, 88, 44,198,232,209,163,113, +249,242,229, 61,137,137,137,239,164,167,167,163,176,176,240, 39,149, 74,245,122,122,122, 58, 88,150, 69,124,124, 60, 90,182,108, + 25,240,204, 46,236, 81,254,241,198,202,140, 16, 40, 77,197, 85,124, 47, 91, 6,165,212, 98,230,170,166, 38,194,202, 24, 12, 6, +101, 72, 72, 8,103, 54, 99,230, 81,132, 0, 8,203,178, 16,139,197,143,104,150, 25,172,199,250, 5,151, 74,165,232,221,187,183, +204,198,198,230,215, 50,147,117,252,113,116, 0, 96,239,206,173,110, 11,102, 76,159,225,168,169,239,243,217,103,159, 9,123,245, +234,117,116,219,182,109,173,157, 59,189,212,243,244,177,237,110,107, 62,221,251,251,246,237,219, 11,172,237,224, 94,198,185, 61, +123,246,168, 63,158, 56, 78, 28, 28, 28,188,107,120,243, 41, 66,181,132,179,117,148,138, 5, 54, 2, 33, 35,245,172,215,243,216, +169,211, 41, 0, 78, 91, 18,162,148,170,143, 30, 61, 10,123,123,123, 0,144,232,245,122,216,219,219, 99,205,154, 53, 50,149, 74, + 5,149, 74,133, 14, 29, 58, 56,136,197,226, 26,155, 11, 43,194,178,172,235,201,147, 39,161, 84, 42, 81, 84, 84, 4,157, 78, 7, +147,201, 4, 74,105,249, 55,199,174, 93,187,214,104,192, 42,197, 24, 75, 8,233, 50,110,220,184,211,171, 86,173,114,241,241,241, +193,236,217,179,145,149,149,133,135, 15, 31, 98,232,208,161,249,113,113,113,221, 42,246,205,122, 17,104,222,188, 57, 61,119,238, + 28, 14, 30, 60,136,190,125,251,146,189,123,247, 26, 88,150, 21, 39, 37, 37,221,120, 94, 49,153, 76, 38, 91,137, 68, 2,163,209, + 8,161, 80, 88,222,132,111, 54, 88,238,238,238,248,227,143, 63,132,197,197,197,194,172,172, 44,155, 31,126,248, 97, 98, 88, 88, +152, 26,192,224,231, 21, 51, 0,172, 94,189,186,238,232,209,163, 31, 10,133, 66,218,179,103,207, 97, 15, 30, 60,232,175, 86,171, +143,157, 56,113, 98, 17,128, 90,151, 22,240,247,247, 15, 19, 8, 4, 30, 0,196,191,254,250,171,145,101, 89,113,243,230,205,211, +204,153, 29,243,179,209,100, 50, 37, 70, 69, 69, 89, 28,137,236,239,239, 31, 38,147,201,196,223,127,255,189,177,164,164, 68,220, +162, 69,139,180, 10, 58,226,223,126,251,205,104, 52, 26,197,141, 27, 55, 14,179,114,100,115,215,182,109,219,214,205,205,205,133, +157,157, 29, 10, 11, 11, 17, 22, 22, 6, 63, 63, 63, 36, 39, 39,131, 97, 24,216,219,219, 99,245,234,213,197,132,144,108,107,174, + 57, 59, 59,123,232,228,201,147,207,108,223,190,221, 89, 32, 16,224,193,131, 7,200,206,206,134,189,189, 61, 54,111,222,140,122, +245,234,225,232,209,163,217, 44,203,190,183,126,253,250, 47,180, 90,237,208,231,221, 7,139, 97,152,114, 35, 84,193, 16,149,180, +107,215, 14,231,206,157,219, 90, 27, 83, 68, 41,213,155,155, 5, 43, 54, 13, 74,165, 82, 8, 4,130, 90, 55,121,176, 44, 43, 38, +132, 4,224,207, 86,155, 26,215, 95, 0,130, 21, 10,133,184,242,135, 57, 57, 57,226,198,141, 27,119,182, 86, 68, 42,149, 58,201, +229,242, 82,193,224, 96,164,167,167,179,222,222,222,111, 13, 26, 52,200, 8, 0,239,191,255,254, 91, 25, 25, 25, 37, 70,163, 81, + 32, 20, 10,145,145,145,129, 6, 13, 26, 56, 61,181,171,168,134,170,188,200, 63, 25, 33,165,148, 16, 66,104,197,119,243, 70,115, + 31,172,154, 50, 87,230,109,102,163, 84,211,201, 24,134,201, 13, 15, 15, 87, 40, 20,138,242,207,140, 70, 35, 2, 2, 2, 56,142, +227, 72,229,115, 61, 73, 6, 75, 42,149,194,222,222, 30,131, 7, 15,182, 73, 74, 74,218, 8,192,195,154,227, 74,251, 96,253,185, +190,119,231, 86,183,181,223,204, 94,185, 98,193, 92,167,152,131, 27,176,126,249,183,172, 66,161,140,104,217,178,101,151,188,188, + 60,157,189, 66,135,212, 44,236,164,148,110,177, 54, 54, 66, 8, 3, 96,251,133, 11, 23,174,246,232,209,227,194,253,251,247, 29, + 30,220,187,119, 86,165, 47, 44, 84,122,214, 55,137, 93,221,250,105, 13, 70,225,128, 1, 3,220, 0, 44,183, 66, 15, 28,199, 97, +255,254,253,176,181,181,133, 74,165,130,189,189, 61,204,230,234,113,137,139,139, 67, 98, 98, 34, 20, 10, 5, 20, 10, 5,148, 74, + 37,148, 74, 37, 36, 18,201, 35,217, 71,107,161,148, 70, 17, 66, 62,220,189,123,247,182,208,208, 80,228,228,228,160,168,168, 8, + 51,102,204, 64,108,108,236,100, 74,233,213,199, 14,246, 25,208,162, 69, 11,122,225,194, 5,156, 61,123, 22, 69, 69, 69, 88,185, +114, 37,212,106,245, 75, 0,190,124,158,113,113, 28, 39, 54,151, 58, 97, 24,230, 47, 25, 44,179,217,146,203,229,112,118,118,198, +244,233,211,197,253,250,245, 11,121,158, 49, 47, 88,176,160,225,210,165, 75,127,216,180,105,211,193,161, 67,135,254,114,243,230, +205,145,118,118,118, 55,142, 31, 63, 62, 87, 42,149,114,150, 21,254,138, 80, 40,244,184,122,245,106, 69,147, 47, 98, 89,214,134, +101, 89,152, 76, 38, 24,141, 70, 20, 23, 23,163,123,247,238, 86,235, 93,190,124,217, 6, 0,190,252,242, 75, 17, 0, 27,142,227, + 80, 81, 79,171,213,138, 94,126,249,101,171,254,151, 0,208, 56, 56, 56,136, 30, 62,124, 8,147,201,132, 86,173, 90, 97,245,234, +213, 24, 52,104, 16,154, 53,107,134,130,130, 2, 68, 70, 70, 98,227,198,141, 14, 98,177,248, 77,107, 4,147,147,147,163, 52, 26, + 77,231,183,222,122,235,252,182,109,219, 28,234,214,173,139,196,196, 68, 36, 39, 39,195,199,199, 7,203,151, 47, 47,162,148,118, + 44, 51, 85,191, 89, 25,231, 51,131, 97,152,114, 19, 84,213,235,113, 48,153, 76, 42,153, 76,150, 47,147,201, 36,102,163,117,229, +202,149, 90,103,175,204, 84,254,191, 99,105,253,121, 98,254, 31,108, 52, 62,122,153, 10,133, 2,190,190,190, 86,235, 40, 20, 10, + 98,126,198, 26,141, 70,164,164,164,176, 55,111,222,100, 91,181,106, 5, 0, 80,171,213,236,197,139, 23, 89,157, 78, 39,176,181, +181, 5, 0,216,219,219, 63, 83,147, 89,147, 23,249,167, 98,110, 34, 60, 93,233,189, 60,131,101, 54, 60, 53,117,114, 23, 10,133, +214, 26, 44, 8, 4, 2, 28, 58,116, 8, 74,165, 18,182,182,182,104,210,164,116,180,158, 57, 91, 86, 57, 43,246,184, 6, 75, 34, +145,192,206,206, 14, 71,142, 28, 41,185,118,237,218,232,199,209, 48,155,171,249, 95,207,114,202,186,125, 1,137,201, 41,200, 74, + 51,132,157,187, 25,127, 24,192, 97, 0,192,237,166,167,208,244,182,213,230,170,169,139, 77,203,118,190,117,126,235,246, 74, 79, +247,254,195,199, 49,227,199,143,111, 63, 98,196,136,236, 97,195,134, 77,146,203,229,205, 76, 38, 83,206,209, 83,167,226, 7, 14, + 28,232,148,151,151, 55,130, 82,106,177, 79,146, 64, 32, 72,233,209,163,135, 39, 0,216,218,218,234,127,252,241, 71,137,189,189, + 61,134, 12, 25, 82,146,154,154, 42, 43,187, 31, 57,176, 50,123, 5, 0, 66,161, 48,253,189,247,222,171, 49, 67, 37,145, 72,210, +107,218, 94, 25, 66, 72, 64, 72, 72,200,186,237,219,183, 35, 43, 43, 11, 69, 69, 69, 16,139,197, 88,184,112, 33, 30, 62,124,184, +140, 16,114,243, 69,249,103,214,178,101, 75,122,233,210, 37,220,184,113, 3, 58,157, 14,163, 71,143,174,216,199,176,199,115, 13, + 14, 32, 73, 73, 73,216,188,121, 51, 88,150,197,208,161, 67, 81,175, 94,189,114,131,149,154,154,138, 31,127,252, 17, 44,203,226, +189,247,222,131,151,151, 23,140, 70,163,172,107,215,174,194,231, 53,162,116,202,148, 41, 49,123,246,236, 57,152,144,144,208,235, +155,111,190, 9, 38,132,112, 83,167, 78,157,175, 82,169,158,104,244,101, 78, 94, 1,238,222,123, 0,147,201, 84,229,203,197,217, +177,214,122,209,177, 15, 97, 50,177,229, 26, 44,251,167,158,147, 99,173,244,146,178,179,179,125, 5, 2,129,248,222,189,123,168, + 91,183, 46,218,180,105,131,121,243,230, 33, 35, 35, 3, 38,147, 9,174,174,174,156,209,104,140,208,235,245, 22, 51,213,102, 82, + 82, 82,138,179,178,178,138,222,123,239, 61,251,117,235,214, 17, 95, 95, 95,220,191,127, 31, 34,145, 8,182,182,182,197,119,238, +220,121, 97, 70, 13, 86,206, 92,153, 95,101,153, 43, 6,192,239, 0,106,101,176, 41,165,122, 79, 79,207, 71,250, 95, 61, 78,246, +234, 89,241, 44, 71, 38,250,250,250,158, 82,169, 84, 33,119,238,220,121, 36,139, 53,120,240, 96,131,143,143,207, 25,107,117, 84, + 42, 85,142, 68, 34,113, 42, 41, 41,193,133, 11, 23,208,164, 73, 19,113, 94, 94, 94, 40, 33,100, 26, 0,180,104,209, 34, 52, 45, + 45, 77,236,238,238, 14, 0,104,220,184, 49,242,242,242,114,172,169, 22,240,132,252,197,139,252,147, 17, 2, 0,165, 52,184,226, +187,153,202, 77,132, 53,153, 44,115, 65,210,154, 32,132, 64,171,213,150,103, 68, 20, 10, 5, 56,142,123,164, 57,178,178,193,170, + 60,138,208, 90,164, 82, 41, 78,156, 56, 81,178,118,237,218, 1,148,210,195,214, 30, 87,177, 15,214,247,139,231, 46, 48,155,171, +235,103,255,192,111,119,242, 50,167,206, 91,188,244,113,226, 1, 0, 63, 23, 69,139, 58,110,206, 39, 23, 47,156,175, 74,186,116, + 16,191,172, 93, 76,175, 95,190,220,250,131,203,151,223,252,224,131, 15, 28, 81,218,223, 42, 9,192, 89, 0,203,172, 49, 87, 0, +112,241,226, 69, 47,243,114,155, 54,109,140, 42,149, 10, 74,165, 18, 25, 25, 25, 98,165, 82, 41, 59,121,242,100,173,251, 58, 92, +186,116,201,218,190, 85, 86, 65, 8,105,212,183,111,223,211,187,118,237, 82,228,230,230, 34, 62, 62, 30,159,124,242, 9,190,251, +238, 59,168, 84, 42,236,223,191,223, 54, 36, 36,228, 36, 33,164, 3,125,206,197, 85, 3, 2, 2,232,149, 43, 87, 16, 31, 31, 15, +147,201,132,254,253,251, 91, 28,192,241,119,194,113, 28,157, 60,121, 50,214,173, 91, 7,134, 97, 48,124,248,112,228,231,231,151, +111,119,116,116,172,106,155, 0, 22, 70,148, 62, 75,132, 66, 33, 61,117,234,212, 55,193,193,193, 72, 72, 72,232, 21, 24, 24,184, + 98,228,200,145, 73, 79,170,235, 96,103,139,150,126,222,208,233,116,208,233,116,208,104, 52, 40, 40, 40, 64, 76, 76, 12,116, 58, + 29,220, 92,237,107,173, 23,208,172, 33,244,122, 61,116, 58, 29, 92, 93, 93, 81, 84, 84,132,251,247,239, 67,167,211,193,197,197, +161, 54,114,167,206,158, 61, 91,183,123,247,238,141, 35, 35, 35,113,250,244,105,232,245,122, 4, 4, 4, 32, 58, 58, 26,237,219, +183, 71,126,126,254,165, 43, 87,174, 88, 61, 34,133, 16,226,249,234,171,175,158,216,186,117,171,211,150, 45, 91,244,111,188,241, +134,100,246,236,217, 68,165, 82, 33, 45, 45,237,145,250,132, 47, 2,149,141, 85, 88, 88,216,118,177, 88, 76, 1, 60, 86,182,201, + 76, 66, 66,130,180,121,243,230, 58,169, 84, 42, 57,127,254,124,173,154, 25,159, 53, 79, 58, 50,177, 38, 26, 54,108, 56,217,195, +195,163,123,171, 86,173, 16, 25, 25, 41,150, 74,165, 24, 54,108,152,161,119,239,222, 6,161, 80,104,245,128, 27,153, 76,118,219, +214,214,182,139, 78,167,131, 94,175,199,209,163, 71,225,232,232,248, 73, 72, 72,200,135, 41, 41, 41, 72, 78, 78,150, 72,165,210, +242, 44,121,183,110,221,144,157,157,125,219, 90,253,199,165, 58, 47,242, 79,165,218, 58, 88,149, 51, 88, 53, 53, 15, 90,107,176, + 24,134,129, 94,175,135,141,141, 77,185,193,170, 88, 41,254,113, 52,171,227,234,213,171,231, 99, 99, 99, 23, 81, 74, 15, 60,206, +241, 59,182,108, 82,219,113,197,158,201,151, 14,224,238,245, 48,236,137,204,205,156, 58,111,241,196,215, 6, 12, 73,171,184,223, +192,201,119,176,195,138, 46,244,141, 92, 21,254,238,110, 78, 39, 23, 47,156,175,202,186,125, 1,247,110,132,225,192,165,196,112, + 29,165,209, 0, 44,142,160,170, 13,230,182,245, 23, 9,169, 84, 58,217, 60, 90, 48, 54, 54, 22, 67,135, 14,205,141,143,143, 31, +215,191,127,255,239, 14, 31, 62,236,224,224,224,128, 35, 71,142,216,122,122,122,134, 2,120,110,205, 89,132, 16,202,178, 44,178, +178, 74, 7,111,118,236,216,241,133, 50, 87, 0, 16, 22, 22, 38,238,219,183,239, 49, 0, 47,221,190,125, 27, 28,199,157, 15, 15, + 15,239,104,222, 94,211, 54, 43,224, 10, 10, 10, 68,182,182,182, 85, 62,172,196, 98,177, 24,181,204, 56, 84,212, 60,119,238,220, +252, 69,139, 22,237,249,232,163,143,238, 61,161, 38,128,191,102,176, 66, 66, 66, 80,162, 51, 34, 49, 45, 15, 38,147, 9,197,250, + 52,203, 34,149,244, 42,102,176, 66, 66, 66,160, 45,209,227, 97, 74, 54, 76, 38, 19, 10, 75,106,149, 40, 89, 62,120,240,224, 1, +231,206,157,203,110,220,184,177,227,149, 43, 87,144,158,158, 14,163,209,136,151, 94,122, 9, 82,169,244, 65,104,104,168, 24, 86, +116, 3, 0, 0, 66,136,205, 43,175,188,114,120,219,182,109,117,206,159, 63, 15,189, 94,207,133,133,133,221, 31, 51,102,140,234, +221,119,223,117, 42,189,141, 47, 22,102, 99,117,251,246,109,179,177, 26,142,167,100,132,204, 25,172,255, 18, 91,182,108, 73,218, +176, 97,131,159, 90,173, 94, 58,108,216,176,110, 26,141,134,145, 72, 36,167,132, 66,225,135, 0, 30, 88,171, 35,149, 74, 71, 58, + 56, 56,196, 8, 4, 2, 65, 82, 82, 18,238,221,187, 7,129, 64, 0, 74,169, 68,171,213,194,205,205, 13, 2, 65,233,120,142,193, +131, 7,195,195,195,131,141,142,142, 30,249,140, 46,235, 95, 75,181, 6,203,204,156, 57,115,176,118,237, 90,188,255,254,251, 53, +238, 87, 86, 22,224,145, 7, 17,169, 52,219,182,121, 20,225,204,153, 51, 31, 57,206,220, 20, 56,110,220,184, 71, 52,127,253,245, +215,191, 52, 17, 86,214,172,142,152,152,152, 96, 75,251, 84,165,105,238,131, 53,112,232,240,148,149,243,103,220,216,184,247, 88, +243, 20, 45, 77,153, 58,111,241,148,202,230,202, 90,205,166,117,148, 77, 61, 92,157, 78, 45, 90, 56,223,206,156, 13,219, 22,145, +154, 7, 19,173,249,166,214,160, 89, 29, 34,145, 40,165, 67,135, 14,158,128,117,205,130,214,222,207,218, 80,149,166, 78,167,195, +197,139, 23, 1, 0,163, 70,141,202,141,143,143,239, 66, 41,189, 69, 8,185,221,179,103,207, 83,135, 14, 29,114, 40,251,246, 93, +101, 89,138,191, 43, 78,160,116, 68,171, 80, 40,132,175,175,111,173,205,213,223, 21,103, 74, 74,202,251, 99,199,142, 93,171,211, +233,132, 69, 69, 69,239, 91,187,205, 82,156, 59,118,236,184,231,235,235, 27,140,234, 75, 49,112, 0, 46, 60,137,230,210,165, 75, + 1,160,241,147,104,154,169,156,193,218,190,125, 59, 88,150,133,135,155, 29,116, 58, 29, 42,246,247,180, 70,179,114, 6,235,151, + 95,126, 1,199,113,240, 82, 59, 66,167,211, 85,219,247,176, 42, 77, 74,169,142, 16, 50,178, 67,135, 14, 63,205,157, 59, 55,174, + 73,147, 38,158, 29, 58,116,112,200,206,206, 78,191,122,245,106,252,218,181,107,149, 38,147,105,100,117,205, 68,149, 53,157,156, +156, 22,111,218,180,201,227,246,237,219, 72, 74, 74,194,146, 37, 75, 30,100,100,100,244, 22, 10,133,210, 21, 43, 86,156,236,211, +167,143,155,201,100,170, 49, 91,253,119,254, 29, 1, 64,114,114,242, 94,148,150,175,169,149,177,178, 38,206,203,151, 47,255, 82, +166,125,192, 26,237,191,235,218,159,116,100,162,165, 56, 71,142, 28,153,136, 74, 53,211,106, 27,231,145, 35, 71,226,223,126,251, +237, 57,254,254,254, 51,149, 74, 37,162,162,162,202,203, 34,153,191,160, 19, 66, 48,112,224, 64,124,240,193, 7, 56,114,228,200, +156, 1, 3, 6,196,215,164,201,243, 87,170, 53, 88, 44,203, 38,196,199,199,171, 55,109,218, 36, 32,132, 96,243,230,205,168,220, +177,214,252, 14, 0, 23, 47, 94, 52, 81, 74, 99,106, 58, 25,203,178, 9, 97, 97, 97,110, 27, 54,108, 16,201,229,114, 72,165, 82, + 36, 39, 39,131,227, 56, 46, 45, 45,141,217,186,117,235, 35,157,117, 47, 92,184, 96, 50, 24, 12, 15,159,242, 53, 91,205,153,200, + 7, 31, 30,218,191,199,185,125,187, 46,185, 42, 71,199, 42,141,138,185,226,123, 77, 40,108, 85,243, 23, 45,156,111,111, 54, 87, +219, 35, 82,115, 75,116,108,183,219, 25,197,215,159,118,204,231,206,157,243,178,188,215,115, 97, 70,112,112, 48, 7,192, 25,192, + 23,180, 52,115,135, 50,147,213,206,215,215,247, 35, 0,114, 0, 51,158, 87,128,132, 16,202,113, 92,121,230,244, 69,203, 92, 85, + 36, 60, 60, 60, 14,192,203,181,221,102,137, 1, 3, 6,196, 2,120,162,233,102,254, 14, 77, 51,217,185,249,136,185,159, 84, 54, +149, 23, 11,246, 65,106,133,254, 83, 70,100,231,215,174,140, 92, 78, 94, 1, 98,238, 39,130,227,104,169, 30,155, 84,222,201,221, +100, 50, 33, 51,183,118,101,218, 40,165,145,132,144,246,159,126,250,233, 36, 0,157, 0,120, 1,120,136,210,110, 0,203,173,237, +131, 35, 18,137, 58, 45, 93,186,180, 55,195, 48,204,197,139, 23,117, 11, 23, 46, 76,200,200,200,232, 71, 41,125, 8, 0, 26,141, +166,235,175,191,254,186,229, 69, 40,201, 80,137,225,255, 80,237,199,230,159, 50, 50,113,219,182,109,179,198,141, 27, 39,108,219, +182,237,103,173, 91,183,102,238,223,191,143,244,244,244,242, 47,151,175,190,250, 42,234,214,173,203, 29, 56,112, 96,222,235,175, +191,254, 56, 53,245,254,243, 84,107,176, 50, 51, 51, 95, 29, 62,124,248, 31, 12,195,212, 55,103,145,170,123, 7, 0,142,227,226, +211,210,210,106, 44, 66,150,153,153,249,234,140, 25, 51,254, 16, 10,133,229,154, 44,203,234,178,178,178,198, 13, 28, 56,112,149, + 72, 36, 42,175, 20, 87, 54, 50,238, 65, 74, 74,202,223,218,161,184,114, 29,172,158,125, 94,207,124, 82, 77,133, 4,222, 9, 23, +247,227,222,141,112,108,143, 72,205, 41,208,179, 93,163, 50,138,254, 83,206,159, 82,154, 14, 96, 92, 53,219,238, 1,168, 85, 54, +239, 89,240,111, 26,189,242, 95,192,100, 50, 37,118,127,169,107,121, 73, 6,115, 98,160,242, 58,203,178,137,214,234,189,220, 45, +184, 90, 29,243,178,181,122,102,202, 76,212, 2,212, 98,202,171,202, 8, 4,130,143,218,182,109, 43,248,232,163,143,210, 14, 30, + 60,120, 44, 39, 39,103, 10,165,180,216,188,189,108,212,224,243, 46, 38,202, 83,198, 63,101,100,226,170, 85,171,190,252,228,147, + 79, 54,106, 52,154,205,157, 58,117,106,236,227,227,163,178,181,181, 69,126,126,126, 65,118,118,246,221,253,251,247, 15, 29, 62, +124,184,213,211, 98,241, 60, 74,181, 6, 43, 35, 35,163, 8,128,213, 85,139,173,193,130,102,221,167,121,174, 39, 97, 68,208,194, +109,184,189,240,145,121, 8, 1, 84,191,110,161, 15, 86, 74,102,254, 7,115, 55,238,255, 86,103,162,156,193,196,141,138, 74, 47, +122,174,157,184,121,170,135, 55, 87,255, 28,110,222,188,105, 77, 45,170,231,166,247, 52,209,235,245, 31,118,232,208, 97, 25,203, +178,139,140, 70,227,217,231, 29, 15,207,191,135, 5, 11, 22,196,161,236,185, 60,112,224, 64, 1, 0,236,216,177,227,133, 25,149, + 89,129,214, 0, 92, 0,152, 39, 91,119, 1,160, 71,105,101,255, 12, 0, 87,158, 83, 92,213, 98,177, 15,214,127,141, 29, 71,255, +124,192, 86, 54, 78,150,214,171,227,110,106,225, 41,240,223, 46,121,120,120, 30,147,178,166,192,126,207, 59, 14,158,127, 55, 47, +168,177, 50,227, 66, 8,217, 71, 41, 13, 1, 0,243,114,197,207, 94, 52, 30,127,152, 30, 15, 15, 15, 15, 15, 15, 15, 15, 79,149, + 16, 0,254, 85,109,168,205,232, 0, 66, 72,149, 26, 53, 97, 73,159,215,228, 53,121, 77, 94,147,215,228, 53,121,205,127,159,166, + 37,237,106,142,239, 99, 33,131,181,191,182,113, 62,107,200,179, 44, 76,247,119, 15, 9,230, 53,121, 77, 94,147,215,228, 53,121, + 77, 94,243,159,169,105,129,127,156,193,226,251, 96,241,240,240,240,240,240,240,188,232,104,167, 77,155,246, 25, 33,100, 31, 0, + 76,155, 54,237,179,231, 29,144, 37,120,131,197,195,195,195, 83, 1,141, 70,211, 23,192, 44,148,118,161, 8, 77, 78, 78,254,229, + 57,135,196,195,243, 84,113,113,113, 81, 56, 57, 57, 29, 99, 24,166, 46,240,104,201,165,202,197,189, 1,128,227,184,148,236,236, +236, 30,169,169,169,213,150, 45,122, 22,154,149, 56, 31, 26, 26, 90, 28, 26, 26,106,238,208,158,129,210, 86,184, 16,252, 57,178, +240,133,162,214, 6,107, 90,143,250,157, 53,238,238, 91,115,179,178, 34,116,197, 5,239,206, 59,150,148,253, 56, 39, 38,132, 56, + 73, 36,146,183, 20, 10, 69,119, 74,169,183, 64, 32,184,147,151,151,119,212,104, 52,110,163,148, 22, 62,142, 38, 15,207,211, 36, + 32, 32,160,185, 68, 34,249,132, 16,210,206,100, 50,121,136, 68,162,100, 0,151,116, 58,221,194,136,136,136,136,231, 29, 31,207, +211,129, 16,194,168,213,234,101,246,246,246,109,115,115,115,135, 2,248, 44, 42, 42,170, 5,195, 48,240,243,243,251, 76,163,209, +196,216,218,218,174, 47, 40, 40, 56,159,146,146,242, 33,173,197,220,113, 60, 47, 46, 62, 62, 62, 97, 12,195,120, 84,156,174,205, + 76,117, 53, 31, 41,165,113,145,145,145, 29,170,211,244,240,240,240, 86,169, 84,171, 0,180,174,202, 84, 84,164,172,123,206,149, +252,252,252,113,137,137,137, 85, 22,226,117,116,116,180,117,117,117,157, 69, 8, 25,200, 48,140,192,210, 53,113, 28,199, 82, 74, +119,164,167,167,207,200,206,206, 46,168,110, 63, 39, 39,167,163,167, 79,159,110,237,236,236,108,177, 44,141,201,100, 66, 98, 98, +162, 75, 72, 72,200,105, 0,213, 86,214,126, 22,154,149,208, 3,184,108,229,190, 47, 4,181, 54, 88,132,197,176,119, 71, 15,119, +207, 77,136,114,223,180,237, 80,163,207, 95,173,219,245,235,195, 15, 82,107,163, 33,151,203,223,242,247,247, 95,190,124,249,114, +167,250,245,235, 19,185, 92,142,148,148,148, 38,215,174, 93,123,125,230,204,153, 51, 68, 34,209, 72,163,209,248, 71,109, 99,123, + 36, 78, 66,236, 29,149,194, 79,178, 10,140,211,159, 68,135,231,191,199,192,129, 3, 5, 9, 9, 9, 51,157,157,157, 63,254,244, +211, 79,165, 13, 26, 52,128, 82,169, 68,122,122,186, 87,116,116,180,231,170, 85,171,250,118,232,208, 97,133, 88, 44,254,252,228, +201,147,207,101,242,100,158,167,135, 90,173, 94,118,250,244,233, 9, 26,141, 6, 29, 59,118, 60, 31, 16, 16,160,178,177,177,193, +193,131, 7,225,237,237,221,204,206,206,238,210,154, 53,107, 68,179,102,205,106,185,123,247,110, 0,152,248,188, 99,230,121,114, + 24,134,241,136,136,136,112,181,177,177, 1,203,178,101,179, 1,112,160,148,150,191,155, 41, 43, 48,139,110,221,186, 25,106,210, +148,201,100,223,221,184,113,163,187,121,134, 19,243,177,213,145,156,156,220,189, 91,183,110,223, 1,168,178,160,182,171,171,235, +172, 65,131, 6, 77,110,214,172, 89,249, 84,115, 28,199,149,191,103,102,102, 98,252,248,241,229,231,224, 56, 14,167, 79,159,158, +244,191,255,253, 15, 0,254, 87,195,181,215,117,118,118, 38,150,166,192,155, 57,115, 38,102,206,156,137,229,203,151, 19,161, 80, + 88,227,204,233,207, 66,243,159, 78,237, 13, 22,232,129, 3, 59,127,121, 55, 36,184, 49, 25,209,175,149,239,150,189, 97, 23,166, +117,111,208,101,254,209,184, 4,107,142,151,203,229,147,198,142, 29, 59,127,246,236,217,178,187,119,239, 34, 50, 50, 18, 38,147, + 9, 74,165, 18,205,155, 55,103, 14, 28, 56,160,158, 52,105,210, 78,137, 68, 50, 74,175,215,239,174,253, 37,149, 82,199, 65,176, + 80, 33, 23, 12,145, 8,133,151,244, 38,147,213,179,213,255,157,180,109,219,246,136,209,104,252, 38, 34, 34,226,196,243,142,197, + 90, 2, 3, 3, 59,138,197,226, 25, 18,137,164,231,191,213, 92, 60,120,240, 96, 70,231,206,157, 63,158, 57,115,166,244,254,253, +251,136,138,138, 66, 74, 74, 10,234,215,175,143,250,245,235,147,229,203,151,203, 86,172, 88, 49,241,218,181,107, 12,128,169,214, +234, 18, 66,152, 58,117,234,188,247,242,203, 47,191,233,236,236,108,151,148,148,148,119,238,220,185,223, 82, 82, 82,190,167,148, + 62,214,189, 36,132, 48,206,206,206, 35, 66, 66, 66,222,116, 74,241,242,177, 0, 0, 25, 53, 73, 68, 65, 84,116,116,116, 76, 73, + 73,201, 62,118,236,216,111,233,233,233,235,159, 36,211, 66, 8, 81, 3,104, 1,192,169,236,163,148,122,245,234,221,186,127,255, +126,250, 83,212, 76,174, 87,175, 94,228,227,104,186,184,184, 40,132, 66,225, 47,132, 16, 77,117,251, 80, 74,147, 77, 38,211,160, +178, 2,199,213,162, 82,169,218,169,213,106, 92,186,116, 9, 95,124,241,133, 99,183,110,221, 16, 29, 29, 13,134, 97,240,241,199, + 31, 19, 63, 63, 63, 81,106,106, 42,130,130,130,112,244,232,209,106,179, 23, 60,127,133, 16,178, 3,128, 61,128,193,148,210,204, + 10,159, 59, 3,248, 21, 64, 58,165,180, 86,243,234, 61, 77,228,114, 57,126,254,249,103,136, 68, 34,136,197, 98,228,228,228,192, +221,221, 29, 98,177, 24, 34,145,168,252, 37, 22,139,225,233,233,105, 81,143,227,254,223,222,153, 71, 69,113,166,107,252,249,170, +170,187,122, 7, 26, 65, 64, 80, 80, 65, 65, 65, 17, 16,140,122, 53, 49,152,184,141, 38,113, 25, 39,137,154,113,137,193, 61,198, + 16, 69,130, 43,142,142,163,137,113, 4,163, 68,163,102, 49, 30, 39, 99,226,141, 26,146, 25, 73,226,130,178,196,157,237, 10, 42, + 40, 59, 34, 75, 87,111, 85,247, 15,232, 22, 9, 75, 55, 65, 81,211,191,115,234,208,221,213,253,244, 91, 13,116, 61,245,126,239, +247,126,124, 40, 77,211,168,170,170,130,209,104, 52, 47,179,116,247,238, 93, 8,130, 0,150,101,205,143,155,246,241, 60, 31,218, +156, 30, 33,100,114,151, 46, 93,240,197, 23, 95, 64,171,213,254,102,191,157,157, 29, 46, 94,188, 95,103, 78,211, 52, 2, 3, 3, + 41, 66,200,100,180, 96,176, 8, 33, 2, 0,204,158, 61,251,129,229,233, 26,111,166,181,131, 5, 65, 48, 47, 33,246, 40, 53,159, +116, 90, 52, 88,203,159,239, 17,225, 31, 20,248,119,150, 21,201,120,163, 30,188, 65, 15,255,128, 94,224,121, 3,254, 47,239, 54, +122,118,102,241,215,209,222,158,251, 78,100, 94, 92,241, 66,175,176,216, 19,153, 25, 13, 95,223,120,134, 1, 33,196,107,224,192, +129,171,215,173, 91, 39,253,225,135, 31,112,237,218, 53,196,198,198, 2, 0, 20, 10, 5,190,251,238, 59, 24,141, 70,108,217,178, + 69, 53,106,212,168, 29,132,144,147,130, 32,148,181,164,217, 20,132, 16,207, 97, 33, 30, 19, 14,111, 30, 38,241,127,249,208, 7, +132,144,163,130, 32, 52,219, 64,237, 97,204,132,176, 68,211, 96, 48,140, 20,137, 68,131,131,130,130,254,100,137,201,234,168, 56, + 77, 4, 7, 7, 15, 17,137, 68,199,116, 58,157,156,101, 89, 6,205, 44, 36,221,209,113,254, 30,205, 1, 3, 6,244,115,116,116, +124, 39, 38, 38, 70,114,230,204, 25,148,151,151,163,168,168, 8,139, 22, 45, 66, 92, 92, 28,252,253,253,161, 80, 40,176, 96,193, + 2,233,188,121,243, 34, 6, 14, 28,248,213,185,115,231,206,183, 22, 39, 33,132, 26, 62,124,248,231,251,247,239,239,110, 48, 24, + 40, 0,208,235,245,234,188,188,188,233,203,151, 47, 31, 78, 8,249, 75,115, 38,171, 37,205,193,131, 7,239, 63,112,224,128, 55, +203,178, 84,253,151,181,243,180,105,211,102, 70, 69, 69, 61, 71, 8,121,181,185,191,251,150, 62, 79, 66,200, 0,185, 92,222, 39, + 34, 34,162,100,194,132, 9,249, 0,144,146,146, 66,210,210,210,134,172, 94,189, 58, 55, 38, 38,166,201,101, 62, 90,209, 12,150, +203,229,190,243,231,207, 47, 30, 51,102, 76,129, 88, 44,230,207,156, 57, 67, 95,188,120,113,104,108,108,108,206,138, 21, 43,154, + 92,151,179, 57, 77,145, 72,244,229,225,195,135,135,187,187,187, 27, 1, 8,245,239, 33, 16, 66, 4,138,162, 4,138,162,144,147, +147,227, 53,105,210,164,207, 0,140,111, 73,179,162,162, 98,250,208,161, 67,147, 86,174, 92,233, 8, 0, 73, 73, 73, 96, 24,198, +124, 66,184,118,237, 26, 56,142,195,182,109,219,116,247,238,221,155,101,237,177,183,149,167, 68,179, 43,128, 80, 0, 63, 18, 66, + 70, 8,130, 80, 82,111,174,254, 3,160, 47,128, 95, 58, 42, 78,138,162, 96, 52, 26,205, 38,234,251,239,191, 71, 92, 92, 28,190, +248,226, 11,184,187,187, 63, 96,176, 68, 34, 81,147,117, 68, 77,156,227, 0,212, 13,129, 25,141, 70, 36, 39, 39, 99,247,238,221, +232,220,185, 51,156, 58,117,130,147,179, 51,194,194,194, 96,202,154, 25,141,198,223,232, 54,214, 44, 41, 41, 1,207, 91,118,173, + 36, 8, 2, 42, 43, 43, 91,141,211, 68, 75, 70,168,225,214,204,123,181,187,230,211, 70,139, 6,203,205,213, 41,106,210,196,145, + 50, 24, 13,128,174, 26,208,213, 64,208,213, 64,208, 86,131,176, 50, 8,122, 13, 20,116, 41,222,124,222,197,238,208,233,194, 43, +239,141,240, 28,251,183, 31,243,142, 53,167,103,103,103, 23,189,115,231, 78,251, 11, 23, 46, 32, 35, 35, 3, 91,183,110,197,154, + 53,107,204, 87, 14,227,199,143,199,169, 83,167,160,213,106,177,114,229, 74,199,200,200,200,249,168, 43, 54,181, 10,215, 78, 76, +220,193,125,219, 28, 29,101, 37,248,235,132,115,157,254,121, 48, 55, 2,192, 71,214,234, 60, 10, 34, 35, 35,229,155, 54,109,250, +198, 82,147,213, 81, 4, 7, 7, 15,145, 72, 36,199,162,163,163, 21,209,209,209,237,210,237, 55, 56, 56,216,159, 97,152, 47,245, +122,253,210,212,212,212,227,237,161,249,123,145, 72, 36, 11,223,121,231, 29,233,173, 91,183, 80, 81, 81, 1,137, 68,242,192,151, +155, 68, 34, 1, 69, 81, 96, 89, 22,211,166, 77,147, 38, 36, 36,188, 13, 96,106,107,186,174,174,174,179,246,237,219,215, 93,167, +211, 81,213,213,213, 16,139,197, 16,139,197,232,215,175, 31,189,108,217,178,174,139, 23, 47,158, 11, 96,187, 53,177,170,213,234, +233,251,247,239,247,102, 89,150,186,125,251, 54,134, 12, 25,130,179,103,207, 34, 44, 44,140, 94,182,108, 89,183, 5, 11, 22,204, + 1, 16,103,141, 38, 33,196, 77, 46,151,251, 39, 37, 37,221,236,210,229,126,114,168,123,247,238,194,232,209,163,203, 50, 50, 50, +124, 83, 83, 83, 75,131,130,130, 44,202, 88,215,107,186,203,229,114,191,227,199,143,223, 94,179,102,205,243,113,113,113, 19, 0, + 32, 52, 52,244, 72,108,108,236, 15,165,165,165,125,147,147,147, 75, 67, 67, 67,243,173, 8,181,147,171,171,171, 33, 34, 34, 66, +213,120, 71, 76, 76, 12, 86,175, 94,141,189,123,247,150, 2,232,220,146, 72,151, 46, 93,254, 68, 81,212,106,127,127,127,187, 17, + 35, 70, 32, 41, 41, 9, 11, 22, 44,224,244,122,125, 38, 0,132,135,135,247, 94,181,106, 21,155,154,154, 10,181, 90, 45,186,125, +251,246, 39, 93,186,116,177, 21,190, 91,206, 4, 0,255, 5,224,143, 58,147, 53, 5,192, 33, 0,125, 0,100, 0,152,212,129,177, +153, 13, 86,126,126, 62, 18, 18, 18, 16, 27, 27,139, 94,189,122, 65,167,211,129, 97, 24,179,185, 98, 24, 6,132, 16,139,151,210, + 50, 26,141, 56,119,238, 28,246,237,219,135,149, 81, 81, 80,169,234,254, 76,117, 58, 29,202,202,203, 33,149, 74,205, 38,172, 37, + 4, 65,248, 42, 43, 43,107,177,187,187,187,121,152,178,225, 16, 33, 0, 40,149, 74,240, 60, 15,131,193, 0,142,227,176,107,215, + 46,131, 32, 8, 95,181,164,107, 50,117, 52, 77, 99,201,146, 37,224,184,251,107,142,247,239,223, 31, 0,224,229,229,133,192,192, + 64,243,125, 83,134,202, 18,205,221, 67,250,161,182,193,179,125, 87,109, 6, 0,120,120,120,192,215,215, 23,110,110,110, 22,105, + 62,233, 48, 64,221, 65, 10, 77, 44,116,123,231, 78,209,198,189,241,159,108,102, 69,148, 40,124,176, 47,212, 18, 3,136,220, 17, +226,225,239,129, 56,120, 2, 0,132,178, 28,104,143,191,135, 41,129, 37,212, 62,142,254,122,245,104,111,231,152,239,178,155, 44, +174,163, 40,106, 80,183,110,221,144,148,148,132,238,221,187, 35, 58, 58, 26,126,126,126,144,203,229, 40, 44, 44, 68,117,117, 53, + 20, 10, 5,140, 70, 35,130,130,130,104,149, 74,245, 28,172, 52, 88,132,144,160, 89, 83,194, 66, 25, 59, 63, 12, 25,245, 12, 78, +236, 24,174,216,251,109,193,114, 66,200, 39, 13, 23, 71,125, 92,120,233,165,151, 80, 88, 88, 40,223,191,127,127,155, 77, 86, 88, + 88,216, 9,131,193, 48,178,181,231,201,100,178,255,252,244,211, 79, 35,172,213, 55,153,171,132,132, 4,133,131,131, 67,147, 87, +114,109,208,244,103, 24,230,231,233,211,167,219,237,223,191,255, 95, 65, 65, 65, 47, 63, 14, 38,139, 16, 50,184, 71,143, 30,184, +113,227, 6, 10, 11, 11,193,113, 28, 10, 11, 11, 1, 0,183,110,221,130,135,135, 7,212,106, 53, 60, 60, 60,208,187,119,111, 66, + 81, 84,152, 37,186,207, 61,247,220, 4, 0, 84, 78, 78, 14,138,139,139, 97,111,111, 15,133, 66, 1,119,119,119,140, 24, 49,130, +241,246,246, 30, 3, 43, 13,214,232,209,163, 39,202,229,114, 42, 47, 47, 15,185,185,185,224, 56, 14,153,153,153,176,183,183, 71, +120,120,184,200,219,219,123, 28,172, 52, 88, 0, 2,230,204,153, 83,212,208, 92,153, 80, 40, 20,196,215,215,183,204,193,193, 33, + 4,128,197, 6, 11, 64,192,130, 5, 11, 10, 55,108,216, 48, 44, 49, 49, 49,210,244, 96, 98, 98,226,187, 0,176,125,251,246, 36, + 71, 71,199, 16, 0,214, 24, 44, 8,130,192,207,156, 57, 51,139,101, 89,152, 54,147,113,221,188,121, 51, 40,138,178,183, 64,102, + 69, 70, 70, 70,127,165, 82,137,140,140, 12,208, 52, 13, 66, 72, 86, 65, 65, 65,127, 0,136,140,140,204,214,104, 52, 61, 53, 26, + 13, 38, 77,154, 68,198,142, 29,219,111,235,214,173, 81, 0, 30, 11,131, 69, 8, 25, 8, 96, 11,234, 10,128,163, 4, 65, 56,219, +193, 33, 61,128, 32, 8,133,132,144,103,113,223,100,165, 1,144,160,206, 92, 61, 43, 8, 66, 97, 71,197, 70, 8, 1,207,243, 96, + 24, 6,155, 55,111,134, 78,167,195,129, 3, 7,112,232,208, 33, 80, 20, 5, 66, 8, 8, 33,176,179,179,195,135, 31,126,104,190, +111, 9, 6,131, 1,123,246,236,193,123,145,145,102,115, 5, 0, 98,177, 24,174, 46, 46,232,228,228,132,156,156,156, 86, 13, 86, + 81, 81, 81, 76,114,114, 50, 90, 42,114,127,229,149,251, 35,172, 13,139,220, 45,137,147,166,105,112, 28,135,145, 35,239,159, 62, +230,207,159,111,190, 93, 94, 94,110,250,159, 0,177,240,224,105,154, 70,173, 0,188, 36,189,255,216,152,165, 75,205,183, 75, 74, + 74,154,213,108,206,139, 60,169,180,152,193, 98,135,230,109,191,126,138, 10,156, 60,238,153, 25,142,118, 50,240,247, 10, 32,126, +126, 21, 46,148,201,241, 65,124,221,185,112,241,164, 32, 4,140, 92, 7,238,147, 23, 48,194, 75,203,126,146, 42, 91, 6, 32,186, + 41, 61, 39, 39, 39, 39,131,193, 0,138,162,160, 80, 40,224,232,232, 8,153, 76,134,146,146, 18, 44, 92,184, 16,199,142, 29,131, + 86,171,133, 88, 44, 70,143, 30, 61,160,211,233,122, 90,123, 64,174,106,102,247,214,205,177, 14,165, 57,159, 33,229, 90, 5,228, +246, 30,136,154, 19,162, 94,181,227,124, 12,128,119,173,213,123, 20,244,237,219, 23,139, 22, 45,146,127,244,209, 71,109, 50, 89, + 6,131, 97, 45,195, 48, 67,150, 46, 93, 42,155, 52,233,183, 23,132,151, 47, 95,198,220,185,115,107,107,106,106,214, 91, 27, 91, +112,112,240, 16,150,101,143,237,222,189, 91, 97,111,111,143, 27, 55,110, 88, 43,209,148,166, 63,195, 48, 63,111,219,182,205,174, +103,207,158, 16,137, 68,210, 61,123,246, 60, 22, 38,203, 96, 48,116,147,203,229, 40, 41, 41,193,226,197,139, 31, 40, 80, 53, 13, +103, 3, 64, 70, 70, 6, 60, 60, 60,160,209,104,220, 45,209,117,116,116, 84, 11,130,128,217,179,103,227,230,205,251,222,196,221, +221, 29, 55,111,222,132,193, 96,112,180, 54, 86,181, 90,237,168,215,235, 49,124,248,112,104, 52, 26, 0,192,148, 41, 83, 32, 18, +137, 80, 84, 84, 4,157, 78,215,169, 21,137,166,112, 26, 59,118,108, 65,115, 59, 21, 10,133, 94,173, 86,123, 89,169,217,105,220, +184,113,249, 59,119,238, 28,223,120, 71,114,114,242,120,123,123,251, 68, 71, 71, 71, 95,171, 35, 5,120,137, 68, 2,137, 68, 2, +145, 72, 4,150,101, 33,145, 72,192,178, 44, 68, 34, 17,104,154,182,104, 92,133,231,121, 28, 61,122, 20, 20, 69, 61, 48,116, 17, + 29, 29,253,166,131,131,131,203,201,147, 39,205, 23,128, 85, 85, 85,240,241,241,233, 17, 30, 30,158,126,231,206,157,220,203,151, + 47,191,220,134,184,219,147,191, 3, 48,213,133,197, 1, 8,236,192, 88,154,164,222,100, 77, 6,112, 30,117,230, 74, 11, 96, 98, + 71,154, 43, 19, 38,131,101,250, 63,151, 74,165, 8, 10, 10, 50,155, 41, 66, 8,106,106,106,204, 67,132,150,158,244,239,222,189, + 11, 55, 55, 55,168, 84, 42,248,244,234,133,172,204, 76, 0, 48,223,102, 89, 22, 64,157, 17,107,137,250,153,128, 75,208, 66, 61, + 85, 91, 48,101,142, 24,166,229, 50,108, 55, 55, 55,240, 60,111, 50,150,173,101,176, 44,210,116,114,114, 66, 85, 85,149, 69,154, + 79, 58, 12, 0, 52,229, 24, 87,175, 38, 20,119,170,123,194,228, 49,161, 51,250,120, 40,192,149,228,128, 85,118, 2,113,240,194, + 7,241,199,113, 37,183,174, 52,234,131, 67,169,216,187,252, 69, 16,185, 35,220,106,175, 65, 37,149,188,140,102, 12, 86,105,105, +105,149, 78,167,115,148,201,100, 96, 24, 6, 98,177, 24, 37, 37, 37,120,255,253,247,113,240,224, 65,120,121,121,193, 96, 48,128, +101, 89, 20, 23, 23, 67, 44, 22, 91, 53, 59,145, 97,200,216, 85,139, 70,119, 87,116,234,133,210,212, 53,117, 15,218, 5, 97,206, + 20,154,253,199,190, 75,211, 9, 33,255, 16, 4,161,205, 69,186, 15, 11,165, 82,137,192,192, 64,188,250,234,171,242, 3, 7, 14, +124, 10,192,195,154,215,167,164,164,252, 18, 28, 28,252,194,150, 45, 91, 78,220,190,125, 91, 54, 96,192, 0, 40,149, 74, 40,149, + 74,228,228,228, 96,205,154, 53, 26,142,227,198,181, 37, 59,198, 48,204,158,153, 51,103, 42,236,236,236,144,147,147, 3, 71, 71, +171,125,192, 3, 4, 7, 7,251,139, 68,162,159,183,109,219,102,231,237,237,141,171, 87,175, 34, 56, 56, 24,174,174,174,210, 13, + 27, 54,116,184,201, 18,139,197,183,138,139,139,189,187,118,237,138,132,132, 4, 80, 20,133,130,130, 2, 68, 69, 69, 97,195,134, + 13, 8, 11, 11,131, 74,165, 66,215,174, 93,145,149,149, 5,169, 84,122,219, 18,221,252,252,252, 50, 0,157,143, 29, 59,134,226, +226,251, 45, 91, 60, 61, 61, 81, 86, 86, 6,142,227, 74,173,141, 53, 63, 63,191, 20,128, 75,122,122, 58,114,115,115, 49,106,212, + 40,124,253,245,215, 8, 9, 9,129,209,104,132, 94,175,183, 90, 19,128,145,166,233,102,191,244,234,175, 56,213, 86,106, 26, 90, +210, 68, 93,191, 41,107, 53, 33, 8,130,208,156,185, 98, 89, 22,173,188,167,137, 88, 63, 63,191,213, 61,122,244,232, 19, 21, 21, + 37, 98, 24, 6, 67,135, 14,237,189,108,217,178, 60,153, 76,214,233,189,247,222,147, 55,241, 26, 25,128,254,125,250,244, 81, 88, + 27,243, 67,160, 97,150,238,177,156,116, 66, 8,233,140,186,140, 31, 11, 64, 87,255,243, 11, 83, 77, 86, 7,198, 5,158,231, 33, + 22,139,177,106,213, 42,188,245,214, 91,112,113,113, 65,100,100, 36, 24,134, 49,111, 64, 93, 86,198,148,213,178, 4, 65, 16,224, +210,185,197,209,105,115,145,123, 75, 60,172, 54, 13, 38, 51,100, 73, 45, 84,131,108, 83,139,207,107, 15,205,167, 41,123, 5, 52, + 51, 68,104, 54, 87,163,130,103,248,121,200,144,150,122, 17, 1,174,122, 8, 34, 81,243, 74, 70, 61,136, 88, 1, 7, 25,211,172, + 57, 32,132,164,230,230,230,122, 58, 56, 56, 64,167,211,129,101, 89, 4, 4, 4,224,244,233,211,224, 56, 14, 90,173, 22, 18,137, + 4, 98,177, 24,151, 46, 93,130, 78,167, 75,178,244, 64, 8, 33,180,139,154,222,246,238,138, 53, 42,228, 39,192, 65,197,226,185, + 65,222,128,162, 15,232,234,107,216,178,114,156,227,155, 81, 95,127, 0, 11,234,101, 30, 53, 74,165, 18,121,121,121,248,252,243, +207,107, 56,142,155,222, 22, 13,147,201, 58,120,240,224, 9, 7, 7, 7, 89, 88, 88, 24, 50, 51, 51,177,126,253,122, 13,199,113, + 99,219, 90,223,101, 48, 24,222,216,181,107,215, 49,131,193,160, 48,153,139,182, 98,202, 92, 45, 92,184, 80,229,227,227,131,236, +236,108,216,219,219, 67,165, 82,161,123,247,238,112,115,115,147, 46, 92,184,176, 67, 77, 22,207,243,167,178,179,179,123,250,249, +249,145,222,189,123,131,101, 89,184,187,215, 37,169,250,247,239, 15, 63, 63, 63,136,197, 98, 0, 64,118,118, 54, 96, 97, 95,150, +159,126,250,233,223, 25, 25, 25,179, 66, 66, 66,104, 87, 87,215, 7,102, 39,109,216,176, 65,151,151,151,103,245, 50, 15, 63,254, +248,227,215, 23, 47, 94,156, 61,116,232, 80, 70,173, 86, 67, 34,145, 32, 32, 32, 0,110,110,110, 88,191,126,189,238,250,245,235, +109, 89, 58,226, 70,122,122,186,180, 87,175, 94, 77,142, 93, 40,149, 74, 21, 0,107, 51, 15,183, 82, 82, 82,196,131, 6, 13, 58, +242,221,119,223,249, 55,220, 17, 26, 26,122, 68,169, 84,218, 3,176,200,168, 54,130,111, 56, 52,216,112,168,144,101, 89, 48, 12, +211,106, 6,171,160,160,224, 27, 87, 87,215,255,115,113,113,249,101,240,224,193,246,231,207,159, 71,116,116,180,152,227,184,110, +137,137,137, 0,154,110,146, 40, 8, 2,170,171,171,165,191,217,241,232, 89, 12, 96, 43, 0, 57,128,200, 86,158,251,200, 33,132, +184,160,174,160,221, 23,117,195,130, 83, 80,103,182, 76, 53, 89, 29,106,178,120,158,135, 72, 36,130,175,175, 47,150, 44, 89,130, +141, 27, 55, 34, 34, 34, 2, 62, 62, 62,166,248,205, 53, 88,245, 51,222, 44, 58,241,139,197, 98,184,184,186, 66,175,215,155,179, + 87, 0,144,149,153, 9,134, 97,192,243, 60, 56,142,107,117,136,176,115,231,206,171, 55,109,218,180,112,244,232,209, 84,195, 25, +119,130, 32,152,219, 73, 52,220,244,122, 61,190,249,230,155,133, 27, 54,108, 0, 44,200,122,209, 52,141,254,253,251, 63, 48, 44, +184,125,251,253, 74,133,160,160, 32,132,135,135, 91, 53,219,143,166,105,248,174,218,252,192,176,224,255, 58,223,255,216,186, 78, +155, 3,159,245,219,154,212,124,218,134, 8,155,252,212,116,167, 61,215, 77,122, 49,112,134,159,187, 4,233,169,151,240,109,242, +237,107, 37, 37, 21,224, 11, 47,130, 47,190,138,197,147,130,208,199,203, 17,125,188, 28,177,120, 82, 16,248,162, 75, 16,202,115, + 32, 72,213, 40,170, 38,205, 14, 47,148,149,149,253,125,237,218,181,229,106,181, 26, 82,169, 20, 44,203,226,214,173, 91,232,219, +183,175,249,126,253,149, 39,162,163,163,139,139,139,139,227, 45, 61, 16,133,140,154,179, 49,106,170,139, 88,162, 2,202,146, 96, +103,167, 68, 66,252,102,128, 43, 0, 40, 22,127, 10, 15,164,221, 92, 28, 70, 16, 66,122,183,229,131,122,152,220,184,113, 3,171, + 86,173,170,169,173,173,253, 93,133,238, 41, 41, 41,191,232,116,186, 23,226,227,227,107,191,253,246,219,223,109,174, 76,154,122, +189,126,212,167,159,126, 90,125,227,198, 13, 40,149,202,182, 74, 65, 44, 22,191,103, 48, 24,236,182,110,221,202,143, 28, 57,210, + 56,111,222, 60,227, 27,111,188, 97,124,229,149, 87,140,225,225,225,198,185,115,231, 26, 57,142,147,200,229,242, 77,109,126,147, +223, 9,199,113,219,227,226,226, 52, 20, 69, 65,169, 84,130,101, 89, 56, 59, 59, 3,168, 51,194,166, 19,185, 78,167,195,142, 29, + 59,106,107,107,107, 63,176, 68,183,180,180, 52, 97,217,178,101,215, 79,156, 56,161, 55,205,242, 41, 40, 40,192,250,245,235,117, +241,241,241,249, 21, 21, 21, 31, 91, 27,107,101,101,229,158,119,223,125, 55,247,232,209,163,122,138,162, 80, 94, 94, 14, 7, 7, + 7,172, 95,191, 94,247,241,199, 31,231,223,187,119,207,106,205,103,158,121, 38, 59, 63, 63, 95,197,113,220,111,178, 63, 34,145, +136, 72,165,210, 80, 0, 63, 90,163, 25, 18, 18,146,157,155,155,107,183,110,221,186,147,225,225,225, 27, 85, 42, 85,166, 74,165, +202, 12, 15, 15,223,180, 99,199,142,255,212,107, 38, 90, 27, 43, 69, 81,102,131,101, 26, 42, 52,101,177,234, 51, 89, 22, 13, 17, +250,249,249,125,182,111,223, 62,251,204,204, 76, 84, 86, 86, 34, 45, 45, 13,169,169,169,230,161, 92,211,201,172,225, 6, 0, 53, + 53, 53, 50,107, 99,110,111, 4, 65,248,175, 32, 8,253, 5, 65,240, 22, 4,225,113,156, 36,115, 8,247,205,213,179,245, 51,207, +158,173,191,239, 15,224,223, 29, 21, 88,253,144,159,249, 98,103,234,212,169, 72, 76, 76,132,143,143,143,217, 84, 53,156, 69,104, +141,201, 48, 26,141, 8, 8, 8, 0,167,213, 62, 96,208, 25,134,129,179,179, 51,178,179,179, 97, 48, 24, 90,205, 96, 17, 66, 38, +143, 30, 61,154,186,124,249, 50,252,252,252,144,154,154,138,212,212, 84,164,165,165, 33, 61, 61, 29, 23, 46, 92,192,165, 75,151, +112,229,202, 21, 4, 7, 7, 35, 47, 47, 15, 47,190,248,162,169, 77, 67, 75, 88,149,109,178, 48,123,247, 48, 52,159,104,204, 67, +132, 13,127,186,168, 21,111,244,113, 99,144,158,126, 5, 71, 82,202,246, 18, 66, 29, 78,189,206,125,251, 98,143,123,208, 29,252, + 11, 2, 38,239,199,222,229, 47, 2, 0,248,162, 75,208,125,245, 58,136,220, 9, 89,149, 10,212,106, 43,154,189,106, 22, 4, 33, + 89,173, 86,127,185,111,223,190,153, 51,102,204, 96,121,158,135, 76, 38,195,219,111,191,109,238, 17, 66,211, 52, 34, 34, 34,170, +138,138,138,182, 10,130,144,109,201, 65, 16, 66,100,238,206,236,202,215,102, 71, 75,113,115, 39, 64,137, 81,130, 1,232, 63,108, + 38,138,114, 79, 3,213, 87, 0, 34, 70,252,223,102, 57,141,127,227, 31, 31, 3,248,159,223,251,193,181, 23, 87,175, 94, 69, 76, + 76,204,239, 54, 87, 38, 76,153,172, 35, 71,142,124,202,113,220,236,118,212, 28,181,113,227,198, 99,157, 59,119,110,243,176,136, +187,187,251,180,146,146,146,153, 22, 60,181,195,134, 58, 82, 83, 83, 83, 7, 13, 26, 20,183,117,235,214,136, 69,139, 22, 73,101, + 50, 25,236,236,236,144,145,145,129,110,221,186, 1, 0,106,107,107,177,124,249,242, 90,189, 94,191,247,220,185,115,167, 45,209, + 21, 4,129, 39,132,188, 54,119,238,220, 89,189,123,247, 30,207,243,124, 39,173, 86, 91,154,151,151,119,244,222,189,123,109,234, +131, 85,175,249,234, 91,111,189, 53,163, 87,175, 94, 19,117, 58, 93, 39,131,193, 80,122,243,230,205, 35,149,149,149, 9,109,209, + 60,117,234, 84,241,238,221,187,115,238,220,185,211,215,205,205,237,174,189,189,189, 86,171,213,210, 74,165, 82,197,178,108, 48, +128,211, 0,174, 88,163,121,238,220,185,194,248,248,248, 92,142,227,122,239,218,181, 43, 73,161, 80,252, 64, 8, 33, 98,177, 88, +173, 80, 40,158, 3,112, 18, 64,150,181,177, 82, 20,197, 55, 52, 84, 13,179, 88, 98,177, 24,132, 16,139, 12, 86,118,118,246, 47, +107,215,174,237,215,163, 71, 15,196,199,199,151, 41,149, 74,213,196,137, 19,153,187,119,239, 18,160,249, 12, 86,109,109,237,227, +144,193,122,220, 41, 69, 93,150,119,130,169,230,170, 65,225,251, 33, 0, 21, 29, 25,156, 32, 8, 15, 24,169,110,221,186, 61, 96, +170, 26,238,179,198, 96, 25, 12, 6,136,197, 98, 48, 12, 3, 87, 55, 55,179,153, 19, 4, 1,153, 89, 89, 40, 47, 47, 55,183,105, +104, 9,138,162,104, 66, 8,254,252,231, 63, 91,244,190, 83,167, 78,197,201,147, 39,209,218,112, 98,195, 25,127, 94, 94, 45,151, + 84,154, 12, 19, 69, 81, 22,207, 34,244,240,104,185,202,165, 57,205,198, 94,228, 73,167,201,106,180,130,178,154,117,187,255,149, +182,188,160,210,112, 88, 50, 56,111,201,170, 85, 16,150, 63,239,117,194, 67,193,190,208,135,202, 7,247,241, 80, 16,187,186,147, +141, 80, 85, 0,162,112, 69,185,168, 27,190, 73,189,115,135, 18,209, 45,102, 31, 42, 42, 42, 22,127,248,225,135,244,177, 99,199, + 38,199,198,198, 58,248,250,250,226,181,215, 94,131, 86,171,197,133, 11, 23, 48,119,238,220,178,226,226,226,157, 21, 21, 21, 27, + 45, 61, 8, 39, 59,230,253, 15, 86,188,208,137,226,171,128,202, 20,128,177,135,147,163, 10,191,158, 79, 2,238,158, 7, 40, 49, + 64,177, 8, 25,224,135,254,254,222,126,132,144,161,130, 32,252,108,213, 39,245,144,120,243,205, 55,219,205, 92,153, 72, 73, 73, +249, 5, 64,143,246,210, 51,105, 6, 7, 7,143, 90,186,116,233, 49,158,231,155,170, 75,105,149,175,190,250,202, 8,160, 93, 90, + 60, 60, 76,244,122,253,242,203,151, 47, 99,254,252,249,111,189,254,250,235, 50, 95, 95, 95,120,122,122, 34, 51, 51, 19, 25, 25, + 25,136,139,139,211,240, 60,159, 80, 81, 81,241,142, 53,186,245, 61,169,118,214,111,237, 66,125, 51,209, 79,234,183,118, 97,214, +172, 89, 23,179,178,178,202,220,221,221,195,104,154,238,135,186, 70,145,183,235,223,195,106, 35, 4, 0,115,231,206, 77,207,201, +201, 41,113,117,117, 13, 19,139,197,222,245,154,249, 0, 18,218,168, 89,250,235,175,191,122,135,134,134,242, 52, 77, 11, 34,145, + 72,168, 63, 25, 10, 12,195, 8,132, 16,225,248,241,227, 82, 0,173,214, 92,222,186,117,107,225,222,189,123, 5,165, 82, 25, 86, + 85, 85,245, 26,128, 79,107,107,107, 67, 43, 42,234,206,253,205,117,226,214,104, 52,146, 54,196,253,135, 66, 16,132,151,154,121, +188, 16,192,208, 71, 28, 78,147,172, 93,187, 22, 59,119,238, 68,107, 29,200,143, 28, 57, 2,180, 50, 68,104,250, 91, 49,213, 87, +105,181, 90, 92,190,124, 25,132, 16,243,253,134, 77, 70,141, 70, 99,139,157,222,121,158, 55,106,181, 90,124,249,229,151, 22,153, +172,207, 63,255, 28, 26,141, 6, 60,207, 91,244, 61, 91,223,152, 20,229,229,229,230,214, 9, 65, 65, 65,230,253, 58, 93,139,141, +235,155,213,244,245,245, 69, 73, 73, 9,156,156,156, 0,212, 13, 11,154, 48, 84,183,216,247,247,169,130,180,244,203,109,200,234, +103,189,236, 53, 12,245,175, 64,119,254,217, 16, 79, 9,156, 28,164,160, 69, 18, 84,106, 8, 46, 23,104,240,243,149,202,155, 70, +131, 48,110,253, 15,215, 45,106, 16, 71, 8, 25,228,230,230,182,194,104, 52,250, 83, 20, 37, 23, 4,161,138,166,233,180,130,130, +130,213,130, 32, 92,178,230, 32, 28, 84,116,150, 90, 65,219,139, 88, 86, 48, 26,120, 0, 20, 64, 81, 0,161, 0,208,245, 63,235, +238,215,214,234,196, 70,158, 28, 46, 44, 46,105,178, 97,224,163,100,216,176, 97, 39,170,171,171,159,184, 78,238, 50,153, 44,134, +166,233,167,182,147,187,137,129, 3, 7,134,200,100,178, 21, 60,207, 15,212,104, 52,174, 50,153,172,144, 16,114,254,222,189,123, +127, 75, 75, 75, 59,211,209,241,253,145,105,207, 78,238,141, 49, 45,246,236,228,228,212,235,215, 95,127,149, 54,204, 96, 53,252, +190,180,102, 86,153,141,199,143, 62,125,250,156,253,236,179,207, 66,186,117,235, 70,153, 10,174, 41,138, 50,111,166, 97, 44, 83, +182,229,204,153, 51,134,121,243,230,157, 78, 79, 79, 31,214,156,166,143,143,207,137,196,196,196,145, 13, 51, 84, 38, 35,213,248, +182,209,104, 68, 77, 77, 13, 98, 98, 98,190,207,202,202,106,114,169, 28, 63, 63,191,173, 43, 87,174, 92, 56,102,204, 24,138,162, +168,223,212, 92, 53,174,195,210,233,116, 56,124,248, 48,191,103,207,158,109, 87,175, 94,109,182, 6,107,192,128, 1, 55,211,210, +210, 60, 76, 45, 19, 26,111,141,103,212, 2,192,160, 65,131,110,159, 61,123,182,217,255,183,135,161,249,164, 99,177,193, 2,234, +102, 16, 69,142,240,156, 66, 64, 77,166, 8, 31, 0, 66, 88, 94, 64, 6, 1, 78,176, 82,237,142,152,111, 10,106, 27, 61, 63,160, +189, 59,242,218, 52,109,154, 29,161, 73, 8,161, 4, 11,150,158,233,232, 56,109,154,237,167,233,227,227,147,149,149,149,229,221, +130,142,217, 96, 61,109,199,254, 71,208,116,118,118, 86, 56, 59, 59,255, 64, 81,148,167,201, 68, 55,247, 19, 0,120,158,207, 45, + 44, 44,124,190,176,176,176,166, 57, 77, 15, 15,143,158, 82,169,244,159, 60,207,135,182, 86, 95, 36,212, 45, 21,147,172,209,104, +230, 53, 92,236,185,161,102,123,205, 34,108, 28,167,191,191,127,118,114,114,114, 79,153, 76,246, 64, 93, 97,227, 99, 54,113,253, +250,117, 76,156, 56, 49, 47, 61, 61,221,171,193,243,218, 93,243,105,195,170,181, 8,133,186, 79,236,203,250,205,134,141, 63, 12, +150,152, 43, 27, 79, 23,181,181,181,229,206,206,206, 85, 26,141, 70,196,113,156,200, 96, 48, 60,112,130,147,201,100,197,205,189, +214,198,227, 79,125,102,211,162, 70,193,150, 82,111,148,154,204, 70,181,133,135,213, 7,171,188,188,124,220,192,129, 3,143, 51, + 12, 35,105,108,126,154, 50, 67, 70,163, 81, 83, 90, 90, 58,234, 81,107, 62,233, 88,189,216,179, 13, 27, 54,108,252, 17,200,207, +207,111,215,147,175, 13, 27,143, 11, 5, 5, 5, 25, 0, 60, 31,119,205, 39,157,167,123, 41,107, 27, 54,108,216,176, 97,195,134, +141, 14,192,102,176,108,216,176, 97,195,134, 13, 27, 54,218, 25,155,193,178, 97,195,134, 13, 27, 54,108,216,104,103,108, 6,203, +134, 13, 27, 54,108,216,176, 97,163,157,249,127,251,242,228,233,243, 39,139,130, 0, 0, 0, 0, 73, 69, 78, 68,174, 66, 96,130, 0}; diff --git a/source/blender/editors/include/UI_resources.h b/source/blender/editors/include/UI_resources.h index 100b26b198b..09635f3d914 100644 --- a/source/blender/editors/include/UI_resources.h +++ b/source/blender/editors/include/UI_resources.h @@ -377,8 +377,8 @@ typedef enum { /* MODIFIERS */ ICON_MOD_CLOTH, ICON_MOD_EXPLODE, - ICON_BLANK155, - ICON_BLANK156, + ICON_MOD_FLUIDSIM, + ICON_MOD_MULTIRES, ICON_BLANK157, ICON_BLANK158, ICON_BLANK159, @@ -652,7 +652,7 @@ typedef enum { ICON_BLANK314, ICON_BLANK315, ICON_BLANK316, - ICON_BLANK316b, + ICON_DISK_DRIVE, /* SHADING / TEXT */ ICON_MATPLANE, diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 8f3053f5312..dc346be7af2 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -235,6 +235,10 @@ int UI_GetIconRNA(PointerRNA *ptr) return ICON_MOD_EXPLODE; else if(rnatype == &RNA_CollisionModifier) return ICON_MOD_PHYSICS; + else if(rnatype == &RNA_FluidSimulationModifier) + return ICON_MOD_FLUIDSIM; + else if(rnatype == &RNA_MultiresModifier) + return ICON_MOD_MULTIRES; else return ICON_DOT; } diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index b4b1145f429..84e0f264275 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -551,9 +551,9 @@ static void file_draw_fsmenu_category(const bContext *C, ARegion *ar, FSMenuCate short sx, sy, xpos, ypos; int bmwidth = ar->v2d.cur.xmax - ar->v2d.cur.xmin - 2*TILE_BORDER_X - ICON_DEFAULT_WIDTH - 4; int fontsize = gFontsize; + int cat_icon; int i; - sx = ar->v2d.cur.xmin + TILE_BORDER_X; sy = *starty; @@ -562,6 +562,15 @@ static void file_draw_fsmenu_category(const bContext *C, ARegion *ar, FSMenuCate sy -= linestep; + switch(category) { + case FS_CATEGORY_SYSTEM: + cat_icon = ICON_DISK_DRIVE; break; + case FS_CATEGORY_BOOKMARKS: + cat_icon = ICON_BOOKMARKS; break; + case FS_CATEGORY_RECENT: + cat_icon = ICON_FILE_FOLDER; break; + } + for (i=0; i< nentries && (sy > ar->v2d.cur.ymin) ;++i) { char *fname = fsmenu_get_entry(fsmenu, category, i); @@ -590,7 +599,7 @@ static void file_draw_fsmenu_category(const bContext *C, ARegion *ar, FSMenuCate xpos = sx; ypos = sy - (TILE_BORDER_Y * 0.5); - file_draw_icon(xpos, ypos, ICON_FILE_FOLDER, ICON_DEFAULT_WIDTH, ICON_DEFAULT_WIDTH); + file_draw_icon(xpos, ypos, cat_icon, ICON_DEFAULT_WIDTH, ICON_DEFAULT_WIDTH); xpos += ICON_DEFAULT_WIDTH + 4; file_draw_string(xpos, ypos, bookmark, bmwidth, fontsize, FILE_SHORTEN_FRONT); sy -= linestep; diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index fc25f4c0bf9..ae986d71258 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -3595,6 +3595,10 @@ static void tselem_draw_icon(float x, float y, TreeStoreElem *tselem, TreeElemen UI_icon_draw(x, y, ICON_MOD_EXPLODE); break; case eModifierType_Collision: UI_icon_draw(x, y, ICON_MOD_PHYSICS); break; + case eModifierType_Fluidsim: + UI_icon_draw(x, y, ICON_MOD_FLUIDSIM); break; + case eModifierType_Multires: + UI_icon_draw(x, y, ICON_MOD_MULTIRES); break; default: UI_icon_draw(x, y, ICON_DOT); break; } From 33322ad1ffa0f9828f56b428b31c460e4c859f63 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Tue, 5 May 2009 04:07:08 +0000 Subject: [PATCH 44/60] 2.5 Buttons: * Some minor code cleanup * More tweaks to match the Layout Guidelines "Dependencies ". --- release/ui/buttons_data.py | 8 ++-- release/ui/buttons_scene.py | 14 +++--- release/ui/buttons_world.py | 91 +++++++++++++++++++------------------ 3 files changed, 59 insertions(+), 54 deletions(-) diff --git a/release/ui/buttons_data.py b/release/ui/buttons_data.py index 6eb11a76823..5d82221b134 100644 --- a/release/ui/buttons_data.py +++ b/release/ui/buttons_data.py @@ -114,7 +114,7 @@ class DATA_PT_cameradisplay(DataButtonsPanel): layout.split(number=2) sub = layout.sub(0) - sub.column_flow() + sub.column() sub.itemR(cam, "show_limits", text="Limits") sub.itemR(cam, "show_mist", text="Mist") sub.itemR(cam, "show_title_safe", text="Title Safe") @@ -122,10 +122,10 @@ class DATA_PT_cameradisplay(DataButtonsPanel): sub = layout.sub(1) subsub = sub.box() - subsub.row() + subsub.column() subsub.itemR(cam, "show_passepartout", text="Passepartout") - subsub.row() - subsub.itemR(cam, "passepartout_alpha", text="Alpha") + if (cam.show_passepartout): + subsub.itemR(cam, "passepartout_alpha", text="Alpha") sub.row() sub.itemR(cam, "draw_size", text="Size") diff --git a/release/ui/buttons_scene.py b/release/ui/buttons_scene.py index cae02666abe..6b3c7dca49d 100644 --- a/release/ui/buttons_scene.py +++ b/release/ui/buttons_scene.py @@ -18,7 +18,7 @@ class RENDER_PT_shading(RenderButtonsPanel): layout.split(number=2) sub = layout.sub(0) - sub.column_flow() + sub.column() sub.itemR(rd, "render_shadows", text="Shadows") sub.itemR(rd, "render_sss", text="SSS") sub.itemR(rd, "render_envmaps", text="EnvMap") @@ -26,7 +26,7 @@ class RENDER_PT_shading(RenderButtonsPanel): sub = layout.sub(1) subsub = sub.box() - subsub.column_flow() + subsub.column() subsub.itemR(rd, "render_raytracing", text="Ray Tracing") if (rd.render_raytracing): subsub.itemR(rd, "octree_resolution", text="Octree") @@ -122,19 +122,19 @@ class RENDER_PT_render(RenderButtonsPanel): sub = layout.sub(0) subsub = sub.box() - subsub.column_flow() + subsub.column() subsub.itemL(text="Threads Mode:") subsub.itemR(rd, "threads_mode", expand=True) if rd.threads_mode == 'THREADS_FIXED': subsub.itemR(rd, "threads") subsub = sub.box() - subsub.column_flow() + subsub.column() subsub.itemL(text="Distributed Rendering:") subsub.itemR(rd, "placeholders") subsub.itemR(rd, "no_overwrite") subsub = sub.box() - subsub.column_flow() + subsub.column() subsub.itemR(rd, "fields", text="Fields") if (rd.fields): subsub.itemR(rd, "fields_still", text="Still") @@ -142,14 +142,14 @@ class RENDER_PT_render(RenderButtonsPanel): sub = layout.sub(1) subsub = sub.box() - subsub.column_flow() + subsub.column() subsub.itemL(text="Extra:") subsub.itemR(rd, "panorama") subsub.itemR(rd, "backbuf") subsub.itemR(rd, "free_image_textures") subsub = sub.box() - subsub.column_flow() + subsub.column() subsub.itemL(text="Border:") subsub.itemR(rd, "border", text="Border Render") if (rd.border): diff --git a/release/ui/buttons_world.py b/release/ui/buttons_world.py index 699f7c331f4..44ce472bf5d 100644 --- a/release/ui/buttons_world.py +++ b/release/ui/buttons_world.py @@ -46,13 +46,16 @@ class WORLD_PT_mist(WorldButtonsPanel): layout.row() layout.itemR(world.mist, "enabled", text="Enable") - layout.itemR(world.mist, "falloff") + if (world.mist.enabled): - layout.column_flow() - layout.itemR(world.mist, "start") - layout.itemR(world.mist, "depth") - layout.itemR(world.mist, "height") - layout.itemR(world.mist, "intensity") + layout.column_flow() + layout.itemR(world.mist, "start") + layout.itemR(world.mist, "depth") + layout.itemR(world.mist, "height") + layout.itemR(world.mist, "intensity") + layout.column() + layout.itemL(text="Fallof:") + layout.itemR(world.mist, "falloff", expand=True) class WORLD_PT_stars(WorldButtonsPanel): __label__ = "Stars" @@ -63,12 +66,13 @@ class WORLD_PT_stars(WorldButtonsPanel): layout.row() layout.itemR(world.stars, "enabled", text="Enable") + if (world.stars.enabled): - layout.column_flow() - layout.itemR(world.stars, "size") - layout.itemR(world.stars, "min_distance", text="MinDist") - layout.itemR(world.stars, "average_separation", text="StarDist") - layout.itemR(world.stars, "color_randomization", text="Colnoise") + layout.column_flow() + layout.itemR(world.stars, "size") + layout.itemR(world.stars, "min_distance", text="MinDist") + layout.itemR(world.stars, "average_separation", text="StarDist") + layout.itemR(world.stars, "color_randomization", text="Colnoise") class WORLD_PT_ambient_occlusion(WorldButtonsPanel): __label__ = "Ambient Occlusion" @@ -81,46 +85,47 @@ class WORLD_PT_ambient_occlusion(WorldButtonsPanel): layout.row() layout.itemR(ao, "enabled", text="Enable") + if (ao.enabled): - layout.row() - layout.itemR(ao, "gather_method", expand=True) - - if ao.gather_method == 'RAYTRACE': layout.row() - layout.itemR(ao, "samples") - layout.itemR(ao, "distance") + layout.itemR(ao, "gather_method", expand=True) - layout.row() - layout.itemR(ao, "sample_method") - if ao.sample_method == 'ADAPTIVE_QMC': + if ao.gather_method == 'RAYTRACE': layout.row() - layout.itemR(ao, "threshold") - layout.itemR(ao, "adapt_to_speed") + layout.itemR(ao, "samples") + layout.itemR(ao, "distance") - if ao.sample_method == 'CONSTANT_JITTERED': layout.row() - layout.itemR(ao, "bias") - - if ao.gather_method == 'APPROXIMATE': - layout.row() - layout.itemR(ao, "passes") - layout.itemR(ao, "error_tolerance") - - layout.row() - layout.itemR(ao, "correction") - layout.itemR(ao, "pixel_cache") + layout.itemR(ao, "sample_method") + if ao.sample_method == 'ADAPTIVE_QMC': + layout.row() + layout.itemR(ao, "threshold") + layout.itemR(ao, "adapt_to_speed") + + if ao.sample_method == 'CONSTANT_JITTERED': + layout.row() + layout.itemR(ao, "bias") + + if ao.gather_method == 'APPROXIMATE': + layout.row() + layout.itemR(ao, "passes") + layout.itemR(ao, "error_tolerance") + + layout.row() + layout.itemR(ao, "correction") + layout.itemR(ao, "pixel_cache") - layout.row() - layout.itemS() + layout.row() + layout.itemS() + + layout.row() + layout.itemR(ao, "falloff") + layout.itemR(ao, "strength") - layout.row() - layout.itemR(ao, "falloff") - layout.itemR(ao, "strength") - - layout.column() - layout.itemR(ao, "blend_mode", expand=True) - layout.itemR(ao, "color", expand=True) - layout.itemR(ao, "energy") + layout.column() + layout.itemR(ao, "blend_mode", expand=True) + layout.itemR(ao, "color", expand=True) + layout.itemR(ao, "energy") bpy.types.register(WORLD_PT_world) bpy.types.register(WORLD_PT_mist) From 42bc76511d829e2fc9002ee7a6f95f30cbb00a42 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 5 May 2009 09:43:11 +0000 Subject: [PATCH 45/60] Cycles FModifier - Repeat Mirrored now works for cycles before the start of the keyframe range --- source/blender/blenkernel/intern/fcurve.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/source/blender/blenkernel/intern/fcurve.c b/source/blender/blenkernel/intern/fcurve.c index 3d780ee97d5..cade555a07a 100644 --- a/source/blender/blenkernel/intern/fcurve.c +++ b/source/blender/blenkernel/intern/fcurve.c @@ -1774,8 +1774,14 @@ static float fcm_cycles_time (FCurve *fcu, FModifier *fcm, float cvalue, float e /* calculate where in the cycle we are (overwrite evaltime to reflect this) */ if ((mode == FCM_EXTRAPOLATE_MIRROR) && ((int)(cycle) % 2)) { - /* when 'mirror' option is used and cycle number is odd, this cycle is played in reverse */ - evaltime= (float)(lastkey[0] - fmod(evaltime-ofs, cycdx)); + /* when 'mirror' option is used and cycle number is odd, this cycle is played in reverse + * - for 'before' extrapolation, we need to flip in a different way, otherwise values past + * then end of the curve get referenced (result of fmod will be negative, and with different phase) + */ + if (side < 0) + evaltime= (float)(prevkey[0] - fmod(evaltime-ofs, cycdx)); + else + evaltime= (float)(lastkey[0] - fmod(evaltime-ofs, cycdx)); } else { /* the cycle is played normally... */ From 71c38978e14ebf3522fe60fc239ad04f10ef30ab Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 5 May 2009 09:56:22 +0000 Subject: [PATCH 46/60] 2.5 Buttons - Insert/Delete Keyframe Menu Tweaks * Added 'Replace Keyframes' entry that appears in addition to delete, since it is often useful to be able to directly replace values instead of having to delete and reinsert keyframes. Internally, this just calls the Insert Keyframe operator. * Separated the code to for Driver editing from the tests for keyframes, since they're independent. * Added separators between keyframe and driver operations. This could be removed if the UI-mafia consider it overkill. --- .../editors/interface/interface_anim.c | 37 +++++++++++++------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/source/blender/editors/interface/interface_anim.c b/source/blender/editors/interface/interface_anim.c index af8aa91f358..ac6f5d970eb 100644 --- a/source/blender/editors/interface/interface_anim.c +++ b/source/blender/editors/interface/interface_anim.c @@ -121,36 +121,49 @@ void ui_but_anim_menu(bContext *C, uiBut *but) if(but->rnapoin.data && but->rnaprop) { pup= uiPupMenuBegin(RNA_property_ui_name(but->rnaprop), 0); layout= uiPupMenuLayout(pup); - + length= RNA_property_array_length(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); - - uiItemBooleanO(layout, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 1); - uiItemBooleanO(layout, "Remove Single Driver", 0, "ANIM_OT_remove_driver_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); - - uiItemBooleanO(layout, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); } } 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, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 1); + uiItemBooleanO(layout, "Remove Single Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); + } + else + uiItemBooleanO(layout, "Remove Driver", 0, "ANIM_OT_remove_driver_button", "all", 0); + } + else if(RNA_property_animateable(&but->rnapoin, but->rnaprop)) { + uiItemS(layout); + + if(length) { uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 1); uiItemBooleanO(layout, "Add Single Driver", 0, "ANIM_OT_add_driver_button", "all", 0); } - else { - uiItemBooleanO(layout, "Insert Keyframe", 0, "ANIM_OT_insert_keyframe_button", "all", 0); - + else uiItemBooleanO(layout, "Add Driver", 0, "ANIM_OT_add_driver_button", "all", 0); - } } uiPupMenuEnd(C, pup); From 405cf80eb8dc2df8ae160aee70aef34052add24a Mon Sep 17 00:00:00 2001 From: Diego Borghetti Date: Tue, 5 May 2009 23:10:32 +0000 Subject: [PATCH 47/60] Big, big commit!! 1) Remove WITH_FREETYPE2 from code, so now blender always need freetype2 2) Remove the old bmfont 3) Remove ftfont and bFTGL library 4) Implement a new BLF_draw_default function for place that still need/use the old BMF api. I try to update both, scons and cmake, but I only can test with make, so hope all work fine. MSVC is broken, but I don't have Windows, things to search and fix are any reference to WITH_FREETYPE2, FTGL and BMFONT (take in care that blenkernel also have a BKE_bmfont.h, this don't have anything to do with bmfont). Always have to link/include the freetype2 library Remove any reference to libbmfont Remove any reference to libftfont Remove any reference to libbftgl (or libbFTGL) --- CMake/macros.cmake | 4 +- CMakeLists.txt | 4 - SConstruct | 1 - blenderplayer/CMakeLists.txt | 3 - config/darwin-config.py | 5 - config/irix6-config.py | 5 - config/linux2-config.py | 5 - config/linuxcross-config.py | 5 - config/openbsd3-config.py | 5 - config/sunos5-config.py | 5 - config/win32-mingw-config.py | 5 - config/win32-vc-config.py | 5 - config/win64-vc-config.py | 5 - extern/Makefile | 4 - extern/bFTGL/CMakeLists.txt | 32 - extern/bFTGL/COPYING.txt | 481 -------------- extern/bFTGL/README.txt | 51 -- extern/bFTGL/SConscript | 12 - extern/bFTGL/cleanup | 4 - extern/bFTGL/include/FTBBox.h | 124 ---- extern/bFTGL/include/FTBitmapGlyph.h | 76 --- extern/bFTGL/include/FTBufferGlyph.h | 76 --- extern/bFTGL/include/FTCharToGlyphIndexMap.h | 130 ---- extern/bFTGL/include/FTCharmap.h | 136 ---- extern/bFTGL/include/FTContour.h | 88 --- extern/bFTGL/include/FTExtrdGlyph.h | 71 -- extern/bFTGL/include/FTFace.h | 149 ----- extern/bFTGL/include/FTFont.h | 260 -------- extern/bFTGL/include/FTGL.h | 100 --- extern/bFTGL/include/FTGLBitmapFont.h | 65 -- extern/bFTGL/include/FTGLBufferFont.h | 76 --- extern/bFTGL/include/FTGLExtrdFont.h | 55 -- extern/bFTGL/include/FTGLOutlineFont.h | 64 -- extern/bFTGL/include/FTGLPixmapFont.h | 68 -- extern/bFTGL/include/FTGLPolygonFont.h | 53 -- extern/bFTGL/include/FTGLTextureFont.h | 151 ----- extern/bFTGL/include/FTGlyph.h | 89 --- extern/bFTGL/include/FTGlyphContainer.h | 127 ---- extern/bFTGL/include/FTLibrary.h | 97 --- extern/bFTGL/include/FTList.h | 112 ---- extern/bFTGL/include/FTOutlineGlyph.h | 54 -- extern/bFTGL/include/FTPixmapGlyph.h | 68 -- extern/bFTGL/include/FTPoint.h | 85 --- extern/bFTGL/include/FTPolyGlyph.h | 55 -- extern/bFTGL/include/FTSize.h | 132 ---- extern/bFTGL/include/FTTextureGlyph.h | 89 --- extern/bFTGL/include/FTVector.h | 190 ------ extern/bFTGL/include/FTVectoriser.h | 275 -------- extern/bFTGL/license.txt | 27 - .../make/msvc_7_0/ftgl_static_lib.vcproj | 406 ------------ .../make/msvc_9_0/ftgl_static_lib.vcproj | 537 --------------- extern/bFTGL/src/FTBitmapGlyph.cpp | 66 -- extern/bFTGL/src/FTBufferGlyph.cpp | 59 -- extern/bFTGL/src/FTCharmap.cpp | 62 -- extern/bFTGL/src/FTContour.cpp | 149 ----- extern/bFTGL/src/FTExtrdGlyph.cpp | 141 ---- extern/bFTGL/src/FTFace.cpp | 154 ----- extern/bFTGL/src/FTFont.cpp | 271 -------- extern/bFTGL/src/FTGLBitmapFont.cpp | 66 -- extern/bFTGL/src/FTGLBufferFont.cpp | 53 -- extern/bFTGL/src/FTGLExtrdFont.cpp | 35 - extern/bFTGL/src/FTGLOutlineFont.cpp | 66 -- extern/bFTGL/src/FTGLPixmapFont.cpp | 68 -- extern/bFTGL/src/FTGLPolygonFont.cpp | 33 - extern/bFTGL/src/FTGLTextureFont.cpp | 178 ----- extern/bFTGL/src/FTGlyph.cpp | 17 - extern/bFTGL/src/FTGlyphContainer.cpp | 93 --- extern/bFTGL/src/FTLibrary.cpp | 64 -- extern/bFTGL/src/FTOutlineGlyph.cpp | 57 -- extern/bFTGL/src/FTPixmapGlyph.cpp | 109 --- extern/bFTGL/src/FTPoint.cpp | 14 - extern/bFTGL/src/FTPolyGlyph.cpp | 62 -- extern/bFTGL/src/FTSize.cpp | 105 --- extern/bFTGL/src/FTTextureGlyph.cpp | 87 --- extern/bFTGL/src/FTVectoriser.cpp | 229 ------- extern/bFTGL/src/Makefile | 60 -- extern/bFTGL/win32_vcpp/README_WIN32.txt | 206 ------ extern/bFTGL/win32_vcpp/ftgl.dsw | 92 --- extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp | 357 ---------- .../ftgl_static_lib/ftgl_static_lib.dsp | 342 ---------- .../win32_vcpp/unit_tests/unit_tests.dsp | 168 ----- intern/CMakeLists.txt | 2 +- intern/Makefile | 2 +- intern/SConscript | 1 - intern/bmfont/BMF_Api.h | 162 ----- intern/bmfont/BMF_Fonts.h | 74 --- intern/bmfont/BMF_Settings.h | 67 -- intern/bmfont/CMakeLists.txt | 32 - intern/bmfont/Makefile | 52 -- intern/bmfont/SConscript | 10 - intern/bmfont/intern/BDF2BMF.py | 177 ----- intern/bmfont/intern/BMF_Api.cpp | 183 ----- intern/bmfont/intern/BMF_BitmapFont.cpp | 323 --------- intern/bmfont/intern/BMF_BitmapFont.h | 140 ---- intern/bmfont/intern/BMF_FontData.h | 55 -- intern/bmfont/intern/BMF_font_helv10.cpp | 494 -------------- intern/bmfont/intern/BMF_font_helv12.cpp | 525 --------------- intern/bmfont/intern/BMF_font_helvb10.cpp | 492 -------------- intern/bmfont/intern/BMF_font_helvb12.cpp | 565 ---------------- intern/bmfont/intern/BMF_font_helvb14.cpp | 623 ------------------ intern/bmfont/intern/BMF_font_helvb8.cpp | 455 ------------- intern/bmfont/intern/BMF_font_scr12.cpp | 484 -------------- intern/bmfont/intern/BMF_font_scr14.cpp | 510 -------------- intern/bmfont/intern/BMF_font_scr15.cpp | 525 --------------- intern/bmfont/intern/Makefile | 41 -- intern/bmfont/make/msvc_6_0/bmfont.dsp | 176 ----- intern/bmfont/make/msvc_6_0/bmfont.dsw | 29 - intern/bmfont/make/msvc_7_0/bmfont.sln | 21 - intern/bmfont/make/msvc_7_0/bmfont.vcproj | 314 --------- intern/bmfont/make/msvc_9_0/bmfont.vcproj | 413 ------------ intern/bmfont/test/Makefile | 60 -- intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp | 109 --- intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw | 44 -- intern/bmfont/test/simpletest/BMF_Test.cpp | 226 ------- intern/bmfont/test/simpletest/Makefile | 42 -- intern/ghost/test/multitest/Makefile | 2 - source/Makefile | 22 +- source/blender/blenfont/BLF_api.h | 25 +- source/blender/blenfont/CMakeLists.txt | 8 +- source/blender/blenfont/SConscript | 7 +- source/blender/blenfont/intern/Makefile | 5 - source/blender/blenfont/intern/blf.c | 149 ++++- source/blender/blenfont/intern/blf_dir.c | 4 - source/blender/blenfont/intern/blf_font.c | 20 - .../blender/blenfont/intern/blf_font_helv10.h | 487 -------------- .../blender/blenfont/intern/blf_font_helv12.h | 519 --------------- .../blenfont/intern/blf_font_helvb10.h | 487 -------------- .../blenfont/intern/blf_font_helvb12.h | 559 ---------------- .../blender/blenfont/intern/blf_font_helvb8.h | 449 ------------- .../blender/blenfont/intern/blf_font_scr12.h | 479 -------------- .../blender/blenfont/intern/blf_font_scr14.h | 504 -------------- .../blender/blenfont/intern/blf_font_scr15.h | 519 --------------- source/blender/blenfont/intern/blf_glyph.c | 69 +- source/blender/blenfont/intern/blf_internal.c | 435 ------------ source/blender/blenfont/intern/blf_internal.h | 9 - .../blenfont/intern/blf_internal_types.h | 21 - source/blender/blenfont/intern/blf_util.c | 102 +-- source/blender/blenkernel/BKE_global.h | 4 - source/blender/blenkernel/CMakeLists.txt | 6 +- source/blender/blenkernel/SConscript | 4 - source/blender/blenkernel/intern/Makefile | 10 +- source/blender/blenkernel/intern/depsgraph.c | 2 - source/blender/blenkernel/intern/font.c | 20 +- source/blender/blenkernel/intern/gpencil.c | 2 - source/blender/blenkernel/intern/image.c | 8 +- source/blender/blenlib/CMakeLists.txt | 4 - source/blender/blenlib/SConscript | 3 - source/blender/blenlib/intern/Makefile | 3 - source/blender/blenlib/intern/freetypefont.c | 6 - source/blender/editors/CMakeLists.txt | 4 +- source/blender/editors/armature/Makefile | 1 - source/blender/editors/armature/SConscript | 2 +- .../blender/editors/armature/editarmature.c | 2 - source/blender/editors/armature/reeb.c | 2 - source/blender/editors/curve/Makefile | 1 - source/blender/editors/curve/SConscript | 2 +- source/blender/editors/curve/editcurve.c | 2 - source/blender/editors/gpencil/Makefile | 1 - source/blender/editors/gpencil/SConscript | 2 +- source/blender/editors/gpencil/drawgpencil.c | 5 +- .../editors/gpencil/editaction_gpencil.c | 2 - source/blender/editors/gpencil/gpencil_edit.c | 2 - source/blender/editors/interface/Makefile | 2 - source/blender/editors/interface/SConscript | 4 +- .../editors/interface/interface_style.c | 15 +- source/blender/editors/interface/view2d.c | 5 +- source/blender/editors/mesh/Makefile | 1 - source/blender/editors/mesh/SConscript | 2 +- source/blender/editors/mesh/editmesh_tools.c | 2 - source/blender/editors/object/Makefile | 1 - source/blender/editors/object/SConscript | 2 +- source/blender/editors/object/object_edit.c | 2 - source/blender/editors/physics/Makefile | 1 - source/blender/editors/physics/SConscript | 2 +- source/blender/editors/preview/Makefile | 1 - source/blender/editors/preview/SConscript | 2 +- source/blender/editors/screen/CMakeLists.txt | 4 +- source/blender/editors/screen/Makefile | 2 +- source/blender/editors/screen/SConscript | 2 +- source/blender/editors/screen/area.c | 6 +- source/blender/editors/sculpt_paint/Makefile | 1 - .../blender/editors/sculpt_paint/SConscript | 2 +- source/blender/editors/space_file/Makefile | 1 - source/blender/editors/space_file/SConscript | 2 +- source/blender/editors/space_file/file_draw.c | 1 - source/blender/editors/space_node/Makefile | 1 - source/blender/editors/space_node/SConscript | 2 +- source/blender/editors/space_node/drawnode.c | 2 - source/blender/editors/space_node/node_draw.c | 1 - .../blender/editors/space_outliner/outliner.c | 3 + .../blender/editors/space_sequencer/Makefile | 2 +- .../editors/space_sequencer/SConscript | 2 +- .../editors/space_sequencer/sequencer_draw.c | 19 +- source/blender/editors/space_text/SConscript | 2 +- .../blender/editors/space_text/text_intern.h | 1 - source/blender/editors/space_view3d/Makefile | 2 +- .../blender/editors/space_view3d/SConscript | 4 +- .../editors/space_view3d/drawarmature.c | 21 +- .../blender/editors/space_view3d/drawobject.c | 55 +- .../editors/space_view3d/view3d_draw.c | 25 +- .../editors/space_view3d/view3d_header.c | 2 - source/blender/editors/transform/Makefile | 1 - source/blender/editors/transform/SConscript | 2 +- source/blender/nodes/CMakeLists.txt | 4 - source/blender/nodes/SConscript | 3 - source/blender/python/CMakeLists.txt | 5 - source/blender/python/intern/Makefile | 1 - source/blender/windowmanager/CMakeLists.txt | 4 +- source/blender/windowmanager/SConscript | 4 +- source/blender/windowmanager/intern/Makefile | 2 - .../windowmanager/intern/wm_init_exit.c | 9 +- source/creator/CMakeLists.txt | 5 +- .../gameengine/BlenderRoutines/CMakeLists.txt | 1 - .../BlenderRoutines/KX_BlenderGL.cpp | 11 +- source/gameengine/BlenderRoutines/Makefile | 1 - source/gameengine/BlenderRoutines/SConscript | 2 +- source/gameengine/Converter/CMakeLists.txt | 1 - source/gameengine/Converter/SConscript | 2 +- .../GamePlayer/common/CMakeLists.txt | 1 - .../GamePlayer/common/GPC_RenderTools.cpp | 4 +- .../GamePlayer/common/GPC_RenderTools.h | 4 +- source/gameengine/GamePlayer/common/Makefile | 1 - .../gameengine/GamePlayer/common/SConscript | 1 - .../GamePlayer/common/unix/Makefile | 1 - .../GamePlayer/common/windows/Makefile | 1 - .../GamePlayer/ghost/CMakeLists.txt | 1 - source/gameengine/GamePlayer/ghost/Makefile | 1 - source/gameengine/GamePlayer/ghost/SConscript | 1 - source/gameengine/Ketsji/CMakeLists.txt | 1 - source/gameengine/Ketsji/SConscript | 2 +- source/nan_definitions.mk | 35 - tools/Blender.py | 4 +- tools/btools.py | 8 +- 233 files changed, 331 insertions(+), 20598 deletions(-) delete mode 100644 extern/bFTGL/CMakeLists.txt delete mode 100644 extern/bFTGL/COPYING.txt delete mode 100644 extern/bFTGL/README.txt delete mode 100644 extern/bFTGL/SConscript delete mode 100755 extern/bFTGL/cleanup delete mode 100644 extern/bFTGL/include/FTBBox.h delete mode 100644 extern/bFTGL/include/FTBitmapGlyph.h delete mode 100644 extern/bFTGL/include/FTBufferGlyph.h delete mode 100644 extern/bFTGL/include/FTCharToGlyphIndexMap.h delete mode 100644 extern/bFTGL/include/FTCharmap.h delete mode 100644 extern/bFTGL/include/FTContour.h delete mode 100644 extern/bFTGL/include/FTExtrdGlyph.h delete mode 100644 extern/bFTGL/include/FTFace.h delete mode 100644 extern/bFTGL/include/FTFont.h delete mode 100644 extern/bFTGL/include/FTGL.h delete mode 100644 extern/bFTGL/include/FTGLBitmapFont.h delete mode 100644 extern/bFTGL/include/FTGLBufferFont.h delete mode 100644 extern/bFTGL/include/FTGLExtrdFont.h delete mode 100644 extern/bFTGL/include/FTGLOutlineFont.h delete mode 100644 extern/bFTGL/include/FTGLPixmapFont.h delete mode 100644 extern/bFTGL/include/FTGLPolygonFont.h delete mode 100644 extern/bFTGL/include/FTGLTextureFont.h delete mode 100644 extern/bFTGL/include/FTGlyph.h delete mode 100644 extern/bFTGL/include/FTGlyphContainer.h delete mode 100644 extern/bFTGL/include/FTLibrary.h delete mode 100644 extern/bFTGL/include/FTList.h delete mode 100644 extern/bFTGL/include/FTOutlineGlyph.h delete mode 100644 extern/bFTGL/include/FTPixmapGlyph.h delete mode 100644 extern/bFTGL/include/FTPoint.h delete mode 100644 extern/bFTGL/include/FTPolyGlyph.h delete mode 100644 extern/bFTGL/include/FTSize.h delete mode 100644 extern/bFTGL/include/FTTextureGlyph.h delete mode 100644 extern/bFTGL/include/FTVector.h delete mode 100644 extern/bFTGL/include/FTVectoriser.h delete mode 100644 extern/bFTGL/license.txt delete mode 100644 extern/bFTGL/make/msvc_7_0/ftgl_static_lib.vcproj delete mode 100644 extern/bFTGL/make/msvc_9_0/ftgl_static_lib.vcproj delete mode 100644 extern/bFTGL/src/FTBitmapGlyph.cpp delete mode 100644 extern/bFTGL/src/FTBufferGlyph.cpp delete mode 100644 extern/bFTGL/src/FTCharmap.cpp delete mode 100644 extern/bFTGL/src/FTContour.cpp delete mode 100644 extern/bFTGL/src/FTExtrdGlyph.cpp delete mode 100644 extern/bFTGL/src/FTFace.cpp delete mode 100644 extern/bFTGL/src/FTFont.cpp delete mode 100644 extern/bFTGL/src/FTGLBitmapFont.cpp delete mode 100644 extern/bFTGL/src/FTGLBufferFont.cpp delete mode 100644 extern/bFTGL/src/FTGLExtrdFont.cpp delete mode 100644 extern/bFTGL/src/FTGLOutlineFont.cpp delete mode 100644 extern/bFTGL/src/FTGLPixmapFont.cpp delete mode 100644 extern/bFTGL/src/FTGLPolygonFont.cpp delete mode 100644 extern/bFTGL/src/FTGLTextureFont.cpp delete mode 100644 extern/bFTGL/src/FTGlyph.cpp delete mode 100644 extern/bFTGL/src/FTGlyphContainer.cpp delete mode 100644 extern/bFTGL/src/FTLibrary.cpp delete mode 100644 extern/bFTGL/src/FTOutlineGlyph.cpp delete mode 100644 extern/bFTGL/src/FTPixmapGlyph.cpp delete mode 100644 extern/bFTGL/src/FTPoint.cpp delete mode 100644 extern/bFTGL/src/FTPolyGlyph.cpp delete mode 100644 extern/bFTGL/src/FTSize.cpp delete mode 100644 extern/bFTGL/src/FTTextureGlyph.cpp delete mode 100644 extern/bFTGL/src/FTVectoriser.cpp delete mode 100644 extern/bFTGL/src/Makefile delete mode 100644 extern/bFTGL/win32_vcpp/README_WIN32.txt delete mode 100644 extern/bFTGL/win32_vcpp/ftgl.dsw delete mode 100644 extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp delete mode 100644 extern/bFTGL/win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp delete mode 100644 extern/bFTGL/win32_vcpp/unit_tests/unit_tests.dsp delete mode 100644 intern/bmfont/BMF_Api.h delete mode 100644 intern/bmfont/BMF_Fonts.h delete mode 100644 intern/bmfont/BMF_Settings.h delete mode 100644 intern/bmfont/CMakeLists.txt delete mode 100644 intern/bmfont/Makefile delete mode 100644 intern/bmfont/SConscript delete mode 100644 intern/bmfont/intern/BDF2BMF.py delete mode 100644 intern/bmfont/intern/BMF_Api.cpp delete mode 100644 intern/bmfont/intern/BMF_BitmapFont.cpp delete mode 100644 intern/bmfont/intern/BMF_BitmapFont.h delete mode 100644 intern/bmfont/intern/BMF_FontData.h delete mode 100644 intern/bmfont/intern/BMF_font_helv10.cpp delete mode 100644 intern/bmfont/intern/BMF_font_helv12.cpp delete mode 100644 intern/bmfont/intern/BMF_font_helvb10.cpp delete mode 100644 intern/bmfont/intern/BMF_font_helvb12.cpp delete mode 100644 intern/bmfont/intern/BMF_font_helvb14.cpp delete mode 100644 intern/bmfont/intern/BMF_font_helvb8.cpp delete mode 100644 intern/bmfont/intern/BMF_font_scr12.cpp delete mode 100644 intern/bmfont/intern/BMF_font_scr14.cpp delete mode 100644 intern/bmfont/intern/BMF_font_scr15.cpp delete mode 100644 intern/bmfont/intern/Makefile delete mode 100644 intern/bmfont/make/msvc_6_0/bmfont.dsp delete mode 100644 intern/bmfont/make/msvc_6_0/bmfont.dsw delete mode 100644 intern/bmfont/make/msvc_7_0/bmfont.sln delete mode 100644 intern/bmfont/make/msvc_7_0/bmfont.vcproj delete mode 100644 intern/bmfont/make/msvc_9_0/bmfont.vcproj delete mode 100644 intern/bmfont/test/Makefile delete mode 100644 intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp delete mode 100644 intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw delete mode 100644 intern/bmfont/test/simpletest/BMF_Test.cpp delete mode 100644 intern/bmfont/test/simpletest/Makefile delete mode 100644 source/blender/blenfont/intern/blf_font_helv10.h delete mode 100644 source/blender/blenfont/intern/blf_font_helv12.h delete mode 100644 source/blender/blenfont/intern/blf_font_helvb10.h delete mode 100644 source/blender/blenfont/intern/blf_font_helvb12.h delete mode 100644 source/blender/blenfont/intern/blf_font_helvb8.h delete mode 100644 source/blender/blenfont/intern/blf_font_scr12.h delete mode 100644 source/blender/blenfont/intern/blf_font_scr14.h delete mode 100644 source/blender/blenfont/intern/blf_font_scr15.h delete mode 100644 source/blender/blenfont/intern/blf_internal.c diff --git a/CMake/macros.cmake b/CMake/macros.cmake index 145e344509e..df8e7515e67 100644 --- a/CMake/macros.cmake +++ b/CMake/macros.cmake @@ -43,9 +43,9 @@ MACRO(SETUP_LIBDIRS) CMAKE_POLICY(SET CMP0003 NEW) endif(COMMAND cmake_policy) LINK_DIRECTORIES(${PYTHON_LIBPATH} ${SDL_LIBPATH} ${JPEG_LIBPATH} ${PNG_LIBPATH} ${ZLIB_LIBPATH} ${ICONV_LIBPATH} ${OPENEXR_LIBPATH} ${QUICKTIME_LIBPATH} ${FFMPEG_LIBPATH}) + LINK_DIRECTORIES(${FREETYPE_LIBPATH}) IF(WITH_INTERNATIONAL) LINK_DIRECTORIES(${GETTEXT_LIBPATH}) - LINK_DIRECTORIES(${FREETYPE_LIBPATH}) ENDIF(WITH_INTERNATIONAL) IF(WITH_OPENAL) LINK_DIRECTORIES(${OPENAL_LIBPATH}) @@ -62,6 +62,7 @@ MACRO(SETUP_LIBLINKS TARGET_LINK_LIBRARIES(${target} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${PYTHON_LIB} ${PYTHON_LINKFLAGS} ${JPEG_LIB} ${PNG_LIB} ${ZLIB_LIB} ${SDL_LIB} ${LLIBS}) TARGET_LINK_LIBRARIES(${target} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY} ${PYTHON_LINKFLAGS} ${JPEG_LIB} ${PNG_LIB} ${ZLIB_LIB} ${SDL_LIB} ${LLIBS}) + TARGET_LINK_LIBRARIES(${target} ${FREETYPE_LIB}) # since we are using the local libs for python when compiling msvc projects, we need to add _d when compiling debug versions @@ -78,7 +79,6 @@ MACRO(SETUP_LIBLINKS ENDIF(WIN32) IF(WITH_INTERNATIONAL) - TARGET_LINK_LIBRARIES(${target} ${FREETYPE_LIB}) TARGET_LINK_LIBRARIES(${target} ${GETTEXT_LIB}) ENDIF(WITH_INTERNATIONAL) IF(WITH_OPENAL) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2d11ea02aa4..f2bf65dfb57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -436,10 +436,6 @@ ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux") #----------------------------------------------------------------------------- # Common. -SET(FTGL ${CMAKE_SOURCE_DIR}/extern/bFTGL) -SET(FTGL_INC ${FTGL}/include) -SET(FTGL_LIB extern_ftgl) - set(OPENJPEG ${CMAKE_SOURCE_DIR}/extern/libopenjpeg) set(OPENJPEG_INC ${OPENJPEG}) set(OPENJPEG_LIb extern_libopenjpeg) diff --git a/SConstruct b/SConstruct index 63bc4cd1625..f7986ec8789 100644 --- a/SConstruct +++ b/SConstruct @@ -281,7 +281,6 @@ if 'blenderlite' in B.targets: target_env_defs['WITH_BF_QUICKTIME'] = False target_env_defs['WITH_BF_YAFRAY'] = False target_env_defs['WITH_BF_REDCODE'] = False - target_env_defs['WITH_BF_FTGL'] = False target_env_defs['WITH_BF_DDS'] = False target_env_defs['WITH_BF_ZLIB'] = False target_env_defs['WITH_BF_SDL'] = False diff --git a/blenderplayer/CMakeLists.txt b/blenderplayer/CMakeLists.txt index b9ac3c7a8c6..5b13a5f4521 100644 --- a/blenderplayer/CMakeLists.txt +++ b/blenderplayer/CMakeLists.txt @@ -100,14 +100,11 @@ IF(UNIX) extern_bullet bf_guardedalloc bf_memutil - bf_bmfont bf_blenlib bf_cineon bf_openexr extern_libopenjpeg bf_dds - bf_ftfont - extern_ftgl bf_readblenfile blenkernel_blc bf_quicktime diff --git a/config/darwin-config.py b/config/darwin-config.py index 8ac83ce4a0d..78a8c71b7dd 100644 --- a/config/darwin-config.py +++ b/config/darwin-config.py @@ -138,11 +138,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'intl' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = '#extern/bFTGL' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE=True WITH_BF_PLAYER=True diff --git a/config/irix6-config.py b/config/irix6-config.py index 711d16e623c..1ef271b5074 100644 --- a/config/irix6-config.py +++ b/config/irix6-config.py @@ -77,11 +77,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gettextpo intl' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = 'true' -BF_FTGL = '#extern/bFTGL' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE='false' WITH_BF_ODE = 'false' diff --git a/config/linux2-config.py b/config/linux2-config.py index d7c09258152..eb93d8084f1 100644 --- a/config/linux2-config.py +++ b/config/linux2-config.py @@ -71,11 +71,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gettextlib' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = '#extern/bFTGL' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE=False WITH_BF_ODE = False diff --git a/config/linuxcross-config.py b/config/linuxcross-config.py index 4214ca52aac..4b17224eacc 100644 --- a/config/linuxcross-config.py +++ b/config/linuxcross-config.py @@ -74,11 +74,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gnu_gettext' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = LIBDIR + '/ftgl' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE = False WITH_BF_ODE = True diff --git a/config/openbsd3-config.py b/config/openbsd3-config.py index 3a36f8df663..6a7518a7928 100644 --- a/config/openbsd3-config.py +++ b/config/openbsd3-config.py @@ -59,11 +59,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'intl iconv' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = '#extern/bFTGL' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE=False WITH_BF_ODE = False diff --git a/config/sunos5-config.py b/config/sunos5-config.py index 6fa9529e1cd..25f200fe346 100644 --- a/config/sunos5-config.py +++ b/config/sunos5-config.py @@ -67,11 +67,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gettextlib' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = '#extern/bFTGL' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE=False WITH_BF_ODE = False diff --git a/config/win32-mingw-config.py b/config/win32-mingw-config.py index 80082002b21..a579d21a544 100644 --- a/config/win32-mingw-config.py +++ b/config/win32-mingw-config.py @@ -75,11 +75,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gnu_gettext' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = LIBDIR + '/ftgl' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE = False WITH_BF_ODE = True diff --git a/config/win32-vc-config.py b/config/win32-vc-config.py index b5ad19890e1..b94a9c4effe 100644 --- a/config/win32-vc-config.py +++ b/config/win32-vc-config.py @@ -87,11 +87,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gnu_gettext' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = True -BF_FTGL = LIBDIR + '/ftgl' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE = True WITH_BF_PLAYER = True diff --git a/config/win64-vc-config.py b/config/win64-vc-config.py index 62440baae56..945efecdc3c 100644 --- a/config/win64-vc-config.py +++ b/config/win64-vc-config.py @@ -90,11 +90,6 @@ BF_GETTEXT_INC = '${BF_GETTEXT}/include' BF_GETTEXT_LIB = 'gettext' BF_GETTEXT_LIBPATH = '${BF_GETTEXT}/lib' -WITH_BF_FTGL = False -BF_FTGL = LIBDIR + '/ftgl' -BF_FTGL_INC = '${BF_FTGL}/include' -BF_FTGL_LIB = 'extern_ftgl' - WITH_BF_GAMEENGINE = True WITH_BF_PLAYER = False diff --git a/extern/Makefile b/extern/Makefile index 38bec4b73dd..256837d660f 100644 --- a/extern/Makefile +++ b/extern/Makefile @@ -32,10 +32,6 @@ SOURCEDIR = extern DIR = $(OCGDIR)/extern DIRS = qhull/src solid glew/src -ifeq ($(WITH_FREETYPE2), true) - DIRS += bFTGL/src -endif - ifeq ($(WITH_FFMPEG), true) ifeq ($(NAN_FFMPEG), $(LCGDIR)/ffmpeg) DIRS += ffmpeg diff --git a/extern/bFTGL/CMakeLists.txt b/extern/bFTGL/CMakeLists.txt deleted file mode 100644 index 529dc74a4d2..00000000000 --- a/extern/bFTGL/CMakeLists.txt +++ /dev/null @@ -1,32 +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) 2006, Blender Foundation -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): Jacques Beaurain. -# -# ***** END GPL LICENSE BLOCK ***** - -SET(INC include src ${FREETYPE_INC}) - -FILE(GLOB SRC src/*.cpp) -ADD_DEFINITIONS(-DFTGL_LIBRARY_STATIC) -BLENDERLIB(extern_ftgl "${SRC}" "${INC}") -#, libtype=['international','player'], priority=[5, 210]) diff --git a/extern/bFTGL/COPYING.txt b/extern/bFTGL/COPYING.txt deleted file mode 100644 index 92b8903ff3f..00000000000 --- a/extern/bFTGL/COPYING.txt +++ /dev/null @@ -1,481 +0,0 @@ - GNU LIBRARY GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is - numbered 2 because it goes with version 2 of the ordinary GPL.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Library General Public License, applies to some -specially designated Free Software Foundation software, and to any -other libraries whose authors decide to use it. You can use it for -your libraries, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if -you distribute copies of the library, or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link a program with the library, you must provide -complete object files to the recipients so that they can relink them -with the library, after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - Our method of protecting your rights has two steps: (1) copyright -the library, and (2) offer you this license which gives you legal -permission to copy, distribute and/or modify the library. - - Also, for each distributor's protection, we want to make certain -that everyone understands that there is no warranty for this free -library. If the library is modified by someone else and passed on, we -want its recipients to know that what they have is not the original -version, so that any problems introduced by others will not reflect on -the original authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that companies distributing free -software will individually obtain patent licenses, thus in effect -transforming the program into proprietary software. To prevent this, -we have made it clear that any patent must be licensed for everyone's -free use or not licensed at all. - - Most GNU software, including some libraries, is covered by the ordinary -GNU General Public License, which was designed for utility programs. This -license, the GNU Library General Public License, applies to certain -designated libraries. This license is quite different from the ordinary -one; be sure to read it in full, and don't assume that anything in it is -the same as in the ordinary license. - - The reason we have a separate public license for some libraries is that -they blur the distinction we usually make between modifying or adding to a -program and simply using it. Linking a program with a library, without -changing the library, is in some sense simply using the library, and is -analogous to running a utility program or application program. However, in -a textual and legal sense, the linked executable is a combined work, a -derivative of the original library, and the ordinary General Public License -treats it as such. - - Because of this blurred distinction, using the ordinary General -Public License for libraries did not effectively promote software -sharing, because most developers did not use the libraries. We -concluded that weaker conditions might promote sharing better. - - However, unrestricted linking of non-free programs would deprive the -users of those programs of all benefit from the free status of the -libraries themselves. This Library General Public License is intended to -permit developers of non-free programs to use free libraries, while -preserving your freedom as a user of such programs to change the free -libraries that are incorporated in them. (We have not seen how to achieve -this as regards changes in header files, but we have achieved it as regards -changes in the actual functions of the Library.) The hope is that this -will lead to faster development of free libraries. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, while the latter only -works together with the library. - - Note that it is possible for a library to be covered by the ordinary -General Public License rather than by this special one. - - GNU LIBRARY GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library which -contains a notice placed by the copyright holder or other authorized -party saying it may be distributed under the terms of this Library -General Public License (also called "this License"). Each licensee is -addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also compile or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - c) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - d) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the source code distributed need not include anything that is normally -distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Library General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library 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 - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/extern/bFTGL/README.txt b/extern/bFTGL/README.txt deleted file mode 100644 index a679d86c22e..00000000000 --- a/extern/bFTGL/README.txt +++ /dev/null @@ -1,51 +0,0 @@ -FTGL 2.0.11 -16 August 2004 - -DESCRIPTION: - -FTGL is a free open source library to enable developers to use arbitrary -fonts in their OpenGL (www.opengl.org) applications. -Unlike other OpenGL font libraries FTGL uses standard font file formats -so doesn't need a preprocessing step to convert the high quality font data -into a lesser quality, proprietary format. -FTGL uses the Freetype (www.freetype.org) font library to open and 'decode' -the fonts. It then takes that output and stores it in a format most efficient -for OpenGL rendering. - -Rendering modes supported are -- Bit maps -- Antialiased Pix maps -- Texture maps -- Outlines -- Polygon meshes -- Extruded polygon meshes - -FTGL is designed to be used in commercial quality software. It has been -written with performance, robustness and simplicity in mind. - -USAGE: - - FTGLPixmapFont font( "Fonts:Arial"); - - font.FaceSize( 72); - - font.render( "Hello World!"); - -This library was inspired by gltt, Copyright (C) 1998-1999 Stephane Rehel -(http://gltt.sourceforge.net) -Bezier curve code contributed by Jed Soane. -Demo, Linux port, extrusion code and gltt maintainance by Gerard Lanois -Linux port by Matthias Kretz -Windows port by Andrew Ellerton & Max Rheiner -Bug fixes by Robert Osfield, Marcelo E. Magallon, Markku Rontu, Mark A. Fox, -Patrick Rogers -Containers and optimisations by Sebastien Barre -Autoconf Marcelo E. Magallon. - - -Please contact me if you have any suggestions, feature requests, or problems. - -Henry Maddocks -ftgl@opengl.geek.nz -http://homepages.paradise.net.nz/henryj/ - diff --git a/extern/bFTGL/SConscript b/extern/bFTGL/SConscript deleted file mode 100644 index 03a17a62a17..00000000000 --- a/extern/bFTGL/SConscript +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/python -import sys -import os - -Import('env') - -incs = 'include src ' + env['BF_FREETYPE_INC'] + ' ' + env['BF_OPENGL_INC'] -defs = '' - -sources = env.Glob('src/*.cpp') - -env.BlenderLib ( 'extern_ftgl', sources, Split(incs), Split(defs), libtype=['extern'], priority=[5]) diff --git a/extern/bFTGL/cleanup b/extern/bFTGL/cleanup deleted file mode 100755 index c6d24edb287..00000000000 --- a/extern/bFTGL/cleanup +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -fx -# script to get rid of the grabage that MAC OSX drops in all the directories - -find . -name .DS_Store -print -exec rm {} \; diff --git a/extern/bFTGL/include/FTBBox.h b/extern/bFTGL/include/FTBBox.h deleted file mode 100644 index 7ff530166ca..00000000000 --- a/extern/bFTGL/include/FTBBox.h +++ /dev/null @@ -1,124 +0,0 @@ -#ifndef __FTBBox__ -#define __FTBBox__ - -#include -#include FT_FREETYPE_H -//#include FT_GLYPH_H -#include FT_OUTLINE_H - -#include "FTGL.h" -#include "FTPoint.h" - - -/** - * FTBBox is a convenience class for handling bounding boxes. - */ -class FTGL_EXPORT FTBBox -{ - public: - /** - * Default constructor. Bounding box is set to zero. - */ - FTBBox() - : lowerX(0.0f), - lowerY(0.0f), - lowerZ(0.0f), - upperX(0.0f), - upperY(0.0f), - upperZ(0.0f) - {} - - /** - * Constructor. - */ - FTBBox( float lx, float ly, float lz, float ux, float uy, float uz) - : lowerX(lx), - lowerY(ly), - lowerZ(lz), - upperX(ux), - upperY(uy), - upperZ(uz) - {} - - /** - * Constructor. Extracts a bounding box from a freetype glyph. Uses - * the control box for the glyph. FT_Glyph_Get_CBox() - * - * @param glyph A freetype glyph - */ - FTBBox( FT_GlyphSlot glyph) - : lowerX(0.0f), - lowerY(0.0f), - lowerZ(0.0f), - upperX(0.0f), - upperY(0.0f), - upperZ(0.0f) - { - FT_BBox bbox; - FT_Outline_Get_CBox( &(glyph->outline), &bbox); - - lowerX = static_cast( bbox.xMin) / 64.0f; - lowerY = static_cast( bbox.yMin) / 64.0f; - lowerZ = 0.0f; - upperX = static_cast( bbox.xMax) / 64.0f; - upperY = static_cast( bbox.yMax) / 64.0f; - upperZ = 0.0f; - - } - - /** - * Destructor - */ - ~FTBBox() - {} - - - /** - * Move the Bounding Box by a vector. - * - * @param distance The distance to move the bbox in 3D space. - */ - FTBBox& Move( FTPoint distance) - { - lowerX += distance.x; - lowerY += distance.y; - lowerZ += distance.z; - upperX += distance.x; - upperY += distance.y; - upperZ += distance.z; - return *this; - } - - FTBBox& operator += ( const FTBBox& bbox) - { - lowerX = bbox.lowerX < lowerX? bbox.lowerX: lowerX; - lowerY = bbox.lowerY < lowerY? bbox.lowerY: lowerY; - lowerZ = bbox.lowerZ < lowerZ? bbox.lowerZ: lowerZ; - upperX = bbox.upperX > upperX? bbox.upperX: upperX; - upperY = bbox.upperY > upperY? bbox.upperY: upperY; - upperZ = bbox.upperZ > upperZ? bbox.upperZ: upperZ; - - return *this; - } - - void SetDepth( float depth) - { - upperZ = lowerZ + depth; - } - - - /** - * The bounds of the box - */ - // Make these ftPoints & private - float lowerX, lowerY, lowerZ, upperX, upperY, upperZ; - protected: - - - private: - -}; - - -#endif // __FTBBox__ - diff --git a/extern/bFTGL/include/FTBitmapGlyph.h b/extern/bFTGL/include/FTBitmapGlyph.h deleted file mode 100644 index 89154a97fac..00000000000 --- a/extern/bFTGL/include/FTBitmapGlyph.h +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef __FTBitmapGlyph__ -#define __FTBitmapGlyph__ - - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - - -/** - * FTBitmapGlyph is a specialisation of FTGlyph for creating bitmaps. - * - * It provides the interface between Freetype glyphs and their openGL - * Renderable counterparts. This is an abstract class and derived classes - * must implement the Render function. - * - * @see FTGlyphContainer - * - */ -class FTGL_EXPORT FTBitmapGlyph : public FTGlyph -{ - public: - /** - * Constructor - * - * @param glyph The Freetype glyph to be processed - */ - FTBitmapGlyph( FT_GlyphSlot glyph); - - /** - * Destructor - */ - virtual ~FTBitmapGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - private: - /** - * The width of the glyph 'image' - */ - unsigned int destWidth; - - /** - * The height of the glyph 'image' - */ - unsigned int destHeight; - - /** - * The pitch of the glyph 'image' - */ - unsigned int destPitch; - - /** - * Vector from the pen position to the topleft corner of the bitmap - */ - FTPoint pos; - - /** - * Pointer to the 'image' data - */ - unsigned char* data; - -}; - - -#endif // __FTBitmapGlyph__ - diff --git a/extern/bFTGL/include/FTBufferGlyph.h b/extern/bFTGL/include/FTBufferGlyph.h deleted file mode 100644 index 9795f4de5d4..00000000000 --- a/extern/bFTGL/include/FTBufferGlyph.h +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef __FTBufferGlyph__ -#define __FTBufferGlyph__ - - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - - -/** - * FTBufferGlyph is a specialisation of FTGlyph for creating pixmaps. - * - * @see FTGlyphContainer - * - */ -class FTGL_EXPORT FTBufferGlyph : public FTGlyph -{ - public: - /** - * Constructor - * - * @param glyph The Freetype glyph to be processed - */ - FTBufferGlyph( FT_GlyphSlot glyph, unsigned char* clientBuffer); - - /** - * Destructor - */ - virtual ~FTBufferGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - // attributes - - private: - /** - * The width of the glyph 'image' - */ - int destWidth; - - /** - * The height of the glyph 'image' - */ - int destHeight; - - /** - * The pitch of the glyph 'image' - */ - unsigned int destPitch; - - /** - * Vector from the pen position to the topleft corner of the pixmap - */ - FTPoint pos; - - /** - * Pointer to the 'image' data - */ - unsigned char* data; - - - unsigned char* buffer; - -}; - - -#endif // __FTBufferGlyph__ diff --git a/extern/bFTGL/include/FTCharToGlyphIndexMap.h b/extern/bFTGL/include/FTCharToGlyphIndexMap.h deleted file mode 100644 index 6e40d3c9574..00000000000 --- a/extern/bFTGL/include/FTCharToGlyphIndexMap.h +++ /dev/null @@ -1,130 +0,0 @@ -#ifndef __FTCharToGlyphIndexMap__ -#define __FTCharToGlyphIndexMap__ - -#include - -#include "FTGL.h" - -/** - * Provides a non-STL alternative to the STL map - * which maps character codes to glyph indices inside FTCharmap. - * - * Implementation: - * - NumberOfBuckets buckets are considered. - * - Each bucket has BucketSize entries. - * - When the glyph index for the character code C has to be stored, the - * bucket this character belongs to is found using 'C div BucketSize'. - * If this bucket has not been allocated yet, do it now. - * The entry in the bucked is found using 'C mod BucketSize'. - * If it is set to IndexNotFound, then the glyph entry has not been set. - * - Try to mimic the calls made to the STL map API. - * - * Caveats: - * - The glyph index is now a signed long instead of unsigned long, so - * the special value IndexNotFound (= -1) can be used to specify that the - * glyph index has not been stored yet. - */ -class FTGL_EXPORT FTCharToGlyphIndexMap -{ - public: - - typedef unsigned long CharacterCode; - typedef signed long GlyphIndex; - - enum - { - NumberOfBuckets = 256, - BucketSize = 256, - IndexNotFound = -1 - }; - - FTCharToGlyphIndexMap() - { - this->Indices = 0; - } - - virtual ~FTCharToGlyphIndexMap() - { - if( this->Indices) - { - // Free all buckets - this->clear(); - - // Free main structure - delete [] this->Indices; - this->Indices = 0; - } - } - - void clear() - { - if(this->Indices) - { - for( int i = 0; i < FTCharToGlyphIndexMap::NumberOfBuckets; i++) - { - if( this->Indices[i]) - { - delete [] this->Indices[i]; - this->Indices[i] = 0; - } - } - } - } - - const GlyphIndex find( CharacterCode c) - { - if( !this->Indices) - { - return 0; - } - - // Find position of char code in buckets - div_t pos = div( c, FTCharToGlyphIndexMap::BucketSize); - - if( !this->Indices[pos.quot]) - { - return 0; - } - - const FTCharToGlyphIndexMap::GlyphIndex *ptr = &this->Indices[pos.quot][pos.rem]; - if( *ptr == FTCharToGlyphIndexMap::IndexNotFound) - { - return 0; - } - - return *ptr; - } - - void insert( CharacterCode c, GlyphIndex g) - { - if( !this->Indices) - { - this->Indices = new GlyphIndex* [FTCharToGlyphIndexMap::NumberOfBuckets]; - for( int i = 0; i < FTCharToGlyphIndexMap::NumberOfBuckets; i++) - { - this->Indices[i] = 0; - } - } - - // Find position of char code in buckets - div_t pos = div(c, FTCharToGlyphIndexMap::BucketSize); - - // Allocate bucket if does not exist yet - if( !this->Indices[pos.quot]) - { - this->Indices[pos.quot] = new GlyphIndex [FTCharToGlyphIndexMap::BucketSize]; - for( int i = 0; i < FTCharToGlyphIndexMap::BucketSize; i++) - { - this->Indices[pos.quot][i] = FTCharToGlyphIndexMap::IndexNotFound; - } - } - - this->Indices[pos.quot][pos.rem] = g; - } - - private: - GlyphIndex** Indices; -}; - - -#endif // __FTCharToGlyphIndexMap__ diff --git a/extern/bFTGL/include/FTCharmap.h b/extern/bFTGL/include/FTCharmap.h deleted file mode 100644 index 74ca6f2cacb..00000000000 --- a/extern/bFTGL/include/FTCharmap.h +++ /dev/null @@ -1,136 +0,0 @@ -#ifndef __FTCharmap__ -#define __FTCharmap__ - - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTCharToGlyphIndexMap.h" - -#include "FTGL.h" - - -/** - * FTCharmap takes care of specifying the encoding for a font and mapping - * character codes to glyph indices. - * - * It doesn't preprocess all indices, only on an as needed basis. This may - * seem like a performance penalty but it is quicker than using the 'raw' - * freetype calls and will save significant amounts of memory when dealing - * with unicode encoding - * - * @see "Freetype 2 Documentation" - * - */ - -class FTFace; - -class FTGL_EXPORT FTCharmap -{ - public: - /** - * Constructor - */ - FTCharmap( FTFace* face); - - /** - * Destructor - */ - virtual ~FTCharmap(); - - /** - * Queries for the current character map code. - * - * @return The current character map code. - */ - FT_Encoding Encoding() const { return ftEncoding;} - - /** - * Sets the character map for the face. - * Valid encodings as at Freetype 2.0.4 - * ft_encoding_none - * ft_encoding_symbol - * ft_encoding_unicode - * ft_encoding_latin_2 - * ft_encoding_sjis - * ft_encoding_gb2312 - * ft_encoding_big5 - * ft_encoding_wansung - * ft_encoding_johab - * ft_encoding_adobe_standard - * ft_encoding_adobe_expert - * ft_encoding_adobe_custom - * ft_encoding_apple_roman - * - * @param encoding the Freetype encoding symbol. See above. - * @return true if charmap was valid and set - * correctly. If the requested encoding is - * unavailable it will be set to ft_encoding_none. - */ - bool CharMap( FT_Encoding encoding); - - /** - * Get the FTGlyphContainer index of the input character. - * - * @param characterCode The character code of the requested glyph in - * the current encoding eg apple roman. - * @return The FTGlyphContainer index for the character or zero - * if it wasn't found - */ - unsigned int GlyphListIndex( const unsigned int characterCode); - - /** - * Get the font glyph index of the input character. - * - * @param characterCode The character code of the requested glyph in - * the current encoding eg apple roman. - * @return The glyph index for the character. - */ - unsigned int FontIndex( const unsigned int characterCode); - - /** - * Set the FTGlyphContainer index of the character code. - * - * @param characterCode The character code of the requested glyph in - * the current encoding eg apple roman. - * @param containerIndex The index into the FTGlyphContainer of the - * character code. - */ - void InsertIndex( const unsigned int characterCode, const unsigned int containerIndex); - - /** - * Queries for errors. - * - * @return The current error code. Zero means no error. - */ - FT_Error Error() const { return err;} - - private: - /** - * Current character map code. - */ - FT_Encoding ftEncoding; - - /** - * The current Freetype face. - */ - const FT_Face ftFace; - - /** - * A structure that maps glyph indices to character codes - * - * < character code, face glyph index> - */ - typedef FTCharToGlyphIndexMap CharacterMap; - CharacterMap charMap; - - /** - * Current error code. - */ - FT_Error err; - -}; - - -#endif // __FTCharmap__ diff --git a/extern/bFTGL/include/FTContour.h b/extern/bFTGL/include/FTContour.h deleted file mode 100644 index 895d9edeff8..00000000000 --- a/extern/bFTGL/include/FTContour.h +++ /dev/null @@ -1,88 +0,0 @@ -#ifndef __FTContour__ -#define __FTContour__ - -#include "FTPoint.h" -#include "FTVector.h" -#include "FTGL.h" - - -/** - * FTContour class is a container of points that describe a vector font - * outline. It is used as a container for the output of the bezier curve - * evaluator in FTVectoriser. - * - * @see FTOutlineGlyph - * @see FTPolyGlyph - * @see FTPoint - */ -class FTGL_EXPORT FTContour -{ - public: - /** - * Constructor - * - * @param contour - * @param pointTags - * @param numberOfPoints - */ - FTContour( FT_Vector* contour, char* pointTags, unsigned int numberOfPoints); - - /** - * Destructor - */ - ~FTContour() - { - pointList.clear(); - } - - /** - * Return a point at index. - * - * @param index of the point in the curve. - * @return const point reference - */ - const FTPoint& Point( unsigned int index) const { return pointList[index];} - - /** - * How many points define this contour - * - * @return the number of points in this contour - */ - size_t PointCount() const { return pointList.size();} - - private: - /** - * Add a point to this contour. This function tests for duplicate - * points. - * - * @param point The point to be added to the contour. - */ - inline void AddPoint( FTPoint point); - - inline void AddPoint( float x, float y); - - /** - * De Casteljau (bezier) algorithm contributed by Jed Soane - * Evaluates a quadratic or conic (second degree) curve - */ - inline void evaluateQuadraticCurve(); - - /** - * De Casteljau (bezier) algorithm contributed by Jed Soane - * Evaluates a cubic (third degree) curve - */ - inline void evaluateCubicCurve(); - - /** - * The list of points in this contour - */ - typedef FTVector PointVector; - PointVector pointList; - - /** - * 2D array storing values of de Casteljau algorithm. - */ - float controlPoints[4][2]; -}; - -#endif // __FTContour__ diff --git a/extern/bFTGL/include/FTExtrdGlyph.h b/extern/bFTGL/include/FTExtrdGlyph.h deleted file mode 100644 index 01e7c9e1d76..00000000000 --- a/extern/bFTGL/include/FTExtrdGlyph.h +++ /dev/null @@ -1,71 +0,0 @@ -#ifndef __FTExtrdGlyph__ -#define __FTExtrdGlyph__ - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - -class FTVectoriser; - -/** - * FTExtrdGlyph is a specialisation of FTGlyph for creating tessellated - * extruded polygon glyphs. - * - * @see FTGlyphContainer - * @see FTVectoriser - * - */ -class FTGL_EXPORT FTExtrdGlyph : public FTGlyph -{ - public: - /** - * Constructor. Sets the Error to Invalid_Outline if the glyphs isn't an outline. - * - * @param glyph The Freetype glyph to be processed - * @param depth The distance along the z axis to extrude the glyph - */ - FTExtrdGlyph( FT_GlyphSlot glyph, float depth); - - /** - * Destructor - */ - virtual ~FTExtrdGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - private: - /** - * Calculate the normal vector to 2 points. This is 2D and ignores - * the z component. The normal will be normalised - * - * @param a - * @param b - * @return - */ - FTPoint GetNormal( const FTPoint &a, const FTPoint &b); - - - /** - * OpenGL display list - */ - GLuint glList; - - /** - * Distance to extrude the glyph - */ - float depth; - -}; - - -#endif // __FTExtrdGlyph__ - diff --git a/extern/bFTGL/include/FTFace.h b/extern/bFTGL/include/FTFace.h deleted file mode 100644 index 26bb3966462..00000000000 --- a/extern/bFTGL/include/FTFace.h +++ /dev/null @@ -1,149 +0,0 @@ -#ifndef __FTFace__ -#define __FTFace__ - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTPoint.h" -#include "FTSize.h" - -/** - * FTFace class provides an abstraction layer for the Freetype Face. - * - * @see "Freetype 2 Documentation" - * - */ -class FTGL_EXPORT FTFace -{ - public: - /** - * Opens and reads a face file. Error is set. - * - * @param filename font file name. - */ - FTFace( const char* filename); - - /** - * Read face data from an in-memory buffer. Error is set. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTFace( const unsigned char *pBufferBytes, size_t bufferSizeInBytes ); - - /** - * Destructor - * - * Disposes of the current Freetype Face. - */ - virtual ~FTFace(); - - /** - * Attach auxilliary file to font (e.g., font metrics). - * - * @param filename auxilliary font file name. - * @return true if file has opened - * successfully. - */ - bool Attach( const char* filename); - - /** - * Attach auxilliary data to font (e.g., font metrics) from memory - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - * @return true if file has opened - * successfully. - */ - bool Attach( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Disposes of the face - */ - void Close(); - - /** - * Get the freetype face object.. - * - * @return pointer to an FT_Face. - */ - FT_Face* Face() const { return ftFace;} - - /** - * Sets the char size for the current face. - * - * This doesn't guarantee that the size was set correctly. Clients - * should check errors. - * - * @param size the face size in points (1/72 inch) - * @param res the resolution of the target device. - * @return FTSize object - */ - const FTSize& Size( const unsigned int size, const unsigned int res); - - unsigned int UnitsPerEM() const; - - /** - * Get the number of character maps in this face. - * - * @return character map count. - */ - unsigned int CharMapCount(); - - /** - * Get a list of character maps in this face. - * - * @return pointer to the first encoding. - */ - FT_Encoding* CharMapList(); - - /** - * Gets the kerning vector between two glyphs - */ - FTPoint KernAdvance( unsigned int index1, unsigned int index2); - - /** - * Loads and creates a Freetype glyph. - */ - FT_GlyphSlot Glyph( unsigned int index, FT_Int load_flags); - - /** - * Gets the number of glyphs in the current face. - */ - unsigned int GlyphCount() const { return numGlyphs;} - - /** - * Queries for errors. - * - * @return The current error code. - */ - FT_Error Error() const { return err; } - - private: - /** - * The Freetype face - */ - FT_Face* ftFace; - - /** - * The size object associated with this face - */ - FTSize charSize; - - /** - * The number of glyphs in this face - */ - int numGlyphs; - - FT_Encoding* fontEncodingList; - - /** - * Current error code. Zero means no error. - */ - FT_Error err; -}; - - -#endif // __FTFace__ diff --git a/extern/bFTGL/include/FTFont.h b/extern/bFTGL/include/FTFont.h deleted file mode 100644 index 5b3d9e46f68..00000000000 --- a/extern/bFTGL/include/FTFont.h +++ /dev/null @@ -1,260 +0,0 @@ -#ifndef __FTFont__ -#define __FTFont__ - -#include -#include FT_FREETYPE_H - -#include "FTFace.h" -#include "FTGL.h" - -class FTGlyphContainer; -class FTGlyph; - - -/** - * FTFont is the public interface for the FTGL library. - * - * Specific font classes are derived from this class. It uses the helper - * classes FTFace and FTSize to access the Freetype library. This class - * is abstract and deriving classes must implement the protected - * MakeGlyph function to create glyphs of the - * appropriate type. - * - * It is good practice after using these functions to test the error - * code returned. FT_Error Error() - * - * @see FTFace - * @see FTSize - * @see FTGlyphContainer - * @see FTGlyph - */ -class FTGL_EXPORT FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * The buffer is owned by the client and is NOT copied by FTGL. The - * pointer must be valid while using FTGL. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - virtual ~FTFont(); - - /** - * Attach auxilliary file to font e.g font metrics. - * - * Note: not all font formats implement this function. - * - * @param filename auxilliary font file name. - * @return true if file has been attached - * successfully. - */ - bool Attach( const char* filename); - - /** - * Attach auxilliary data to font e.g font metrics, from memory - * - * Note: not all font formats implement this function. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - * @return true if file has been attached - * successfully. - */ - bool Attach( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Set the character map for the face. - * - * @param encoding Freetype enumerate for char map code. - * @return true if charmap was valid and - * set correctly - */ - bool CharMap( FT_Encoding encoding ); - - /** - * Get the number of character maps in this face. - * - * @return character map count. - */ - unsigned int CharMapCount(); - - /** - * Get a list of character maps in this face. - * - * @return pointer to the first encoding. - */ - FT_Encoding* CharMapList(); - - /** - * Set the char size for the current face. - * - * @param size the face size in points (1/72 inch) - * @param res the resolution of the target device. - * @return true if size was set correctly - */ - virtual bool FaceSize( const unsigned int size, const unsigned int res = 72); - - /** - * Get the current face size in points. - * - * @return face size - */ - unsigned int FaceSize() const; - - /** - * Set the extrusion distance for the font. Only implemented by - * FTGLExtrdFont - * - * @param d The extrusion distance. - */ - virtual void Depth( float d){} - - /** - * Get the global ascender height for the face. - * - * @return Ascender height - */ - float Ascender() const; - - /** - * Gets the global descender height for the face. - * - * @return Descender height - */ - float Descender() const; - - /** - * Get the bounding box for a string. - * - * @param string a char string - * @param llx lower left near x coord - * @param lly lower left near y coord - * @param llz lower left near z coord - * @param urx upper right far x coord - * @param ury upper right far y coord - * @param urz upper right far z coord - */ - void BBox( const char* string, float& llx, float& lly, float& llz, float& urx, float& ury, float& urz); - - /** - * Get the bounding box for a string. - * - * @param string a wchar_t string - * @param llx lower left near x coord - * @param lly lower left near y coord - * @param llz lower left near z coord - * @param urx upper right far x coord - * @param ury upper right far y coord - * @param urz upper right far z coord - */ - void BBox( const wchar_t* string, float& llx, float& lly, float& llz, float& urx, float& ury, float& urz); - - /** - * Get the advance width for a string. - * - * @param string a wchar_t string - * @return advance width - */ - float Advance( const wchar_t* string); - - /** - * Get the advance width for a string. - * - * @param string a char string - * @return advance width - */ - float Advance( const char* string); - - /** - * Render a string of characters - * - * @param string 'C' style string to be output. - */ - virtual void Render( const char* string ); - - /** - * Render a string of characters - * - * @param string wchar_t string to be output. - */ - virtual void Render( const wchar_t* string ); - - /** - * Queries the Font for errors. - * - * @return The current error code. - */ - FT_Error Error() const { return err;} - - protected: - /** - * Construct a glyph of the correct type. - * - * Clients must overide the function and return their specialised - * FTGlyph. - * - * @param g The glyph index NOT the char code. - * @return An FT****Glyph or null on failure. - */ - virtual FTGlyph* MakeGlyph( unsigned int g) = 0; - - /** - * Current face object - */ - FTFace face; - - /** - * Current size object - */ - FTSize charSize; - - /** - * Current error code. Zero means no error. - */ - FT_Error err; - - private: - /** - * Render a character - * This function does an implicit conversion on it's arguments. - * - * @param chr current character - * @param nextChr next character - */ - inline void DoRender( const unsigned int chr, const unsigned int nextChr); - - /** - * Check that the glyph at chr exist. If not load it. - * - * @param chr character index - */ - inline void CheckGlyph( const unsigned int chr); - - /** - * An object that holds a list of glyphs - */ - FTGlyphContainer* glyphList; - - /** - * Current pen or cursor position; - */ - FTPoint pen; -}; - - -#endif // __FTFont__ - diff --git a/extern/bFTGL/include/FTGL.h b/extern/bFTGL/include/FTGL.h deleted file mode 100644 index 2b76de8b8bd..00000000000 --- a/extern/bFTGL/include/FTGL.h +++ /dev/null @@ -1,100 +0,0 @@ -#ifndef __FTGL__ -#define __FTGL__ - - -typedef double FTGL_DOUBLE; -typedef float FTGL_FLOAT; - -// Fixes for deprecated identifiers in 2.1.5 -#ifndef FT_OPEN_MEMORY - #define FT_OPEN_MEMORY (FT_Open_Flags)1 -#endif - -#ifndef FT_RENDER_MODE_MONO - #define FT_RENDER_MODE_MONO ft_render_mode_mono -#endif - -#ifndef FT_RENDER_MODE_NORMAL - #define FT_RENDER_MODE_NORMAL ft_render_mode_normal -#endif - - -#ifdef WIN32 - - // Under windows avoid including is overrated. - // Sure, it can be avoided and "name space pollution" can be - // avoided, but why? It really doesn't make that much difference - // these days. - #define WIN32_LEAN_AND_MEAN - #include - - #ifndef __gl_h_ - #include - #include - #endif - -#else - - // Non windows platforms - don't require nonsense as seen above :-) - #ifndef __gl_h_ - #ifdef __APPLE_CC__ - #include - #include - #else - #include - #if defined (__sun__) && !defined (__sparc__) - #include - #else - #include - #endif - #endif - - #endif - - // Required for compatibility with glext.h style function definitions of - // OpenGL extensions, such as in src/osg/Point.cpp. - #ifndef APIENTRY - #define APIENTRY - #endif -#endif - -// Compiler-specific conditional compilation -#ifdef _MSC_VER // MS Visual C++ - - // Disable various warning. - // 4786: template name too long - #pragma warning( disable : 4251 ) - #pragma warning( disable : 4275 ) - #pragma warning( disable : 4786 ) - - // The following definitions control how symbols are exported. - // If the target is a static library ensure that FTGL_LIBRARY_STATIC - // is defined. If building a dynamic library (ie DLL) ensure the - // FTGL_LIBRARY macro is defined, as it will mark symbols for - // export. If compiling a project to _use_ the _dynamic_ library - // version of the library, no definition is required. - #ifdef FTGL_LIBRARY_STATIC // static lib - no special export required - # define FTGL_EXPORT - #elif FTGL_LIBRARY // dynamic lib - must export/import symbols appropriately. - # define FTGL_EXPORT __declspec(dllexport) - #else - # define FTGL_EXPORT __declspec(dllimport) - #endif - -#else - // Compiler that is not MS Visual C++. - // Ensure that the export symbol is defined (and blank) - #define FTGL_EXPORT -#endif - - -// lifted from glext.h, to remove dependancy on glext.h -#ifndef GL_EXT_texture_object - #define GL_TEXTURE_PRIORITY_EXT 0x8066 - #define GL_TEXTURE_RESIDENT_EXT 0x8067 - #define GL_TEXTURE_1D_BINDING_EXT 0x8068 - #define GL_TEXTURE_2D_BINDING_EXT 0x8069 - #define GL_TEXTURE_3D_BINDING_EXT 0x806A -#endif - -#endif // __FTGL__ diff --git a/extern/bFTGL/include/FTGLBitmapFont.h b/extern/bFTGL/include/FTGLBitmapFont.h deleted file mode 100644 index 12feae00cb6..00000000000 --- a/extern/bFTGL/include/FTGLBitmapFont.h +++ /dev/null @@ -1,65 +0,0 @@ -#ifndef __FTGLBitmapFont__ -#define __FTGLBitmapFont__ - -#include "FTFont.h" -#include "FTGL.h" - - -class FTGlyph; - -/** - * FTGLBitmapFont is a specialisation of the FTFont class for handling - * Bitmap fonts - * - * @see FTFont - */ -class FTGL_EXPORT FTGLBitmapFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLBitmapFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLBitmapFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - ~FTGLBitmapFont(); - - /** - * Renders a string of characters - * - * @param string 'C' style string to be output. - */ - void Render( const char* string); - - /** - * Renders a string of characters - * - * @param string 'C' style wide string to be output. - */ - void Render( const wchar_t* string); - - // attributes - - private: - /** - * Construct a FTBitmapGlyph. - * - * @param g The glyph index NOT the char code. - * @return An FTBitmapGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int g); - -}; -#endif // __FTGLBitmapFont__ diff --git a/extern/bFTGL/include/FTGLBufferFont.h b/extern/bFTGL/include/FTGLBufferFont.h deleted file mode 100644 index 2f74b5cdef9..00000000000 --- a/extern/bFTGL/include/FTGLBufferFont.h +++ /dev/null @@ -1,76 +0,0 @@ -#ifndef __FTGLBufferFont__ -#define __FTGLBufferFont__ - - -#include "FTFont.h" -#include "FTGL.h" - - -class FTGlyph; - - -/** - * FTGLBufferFont is a specialisation of the FTFont class for handling - * Pixmap (Grey Scale) fonts - * - * @see FTFont - */ -class FTGL_EXPORT FTGLBufferFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLBufferFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLBufferFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - - void SetClientBuffer( unsigned char* b) - { - buffer = b; - } - - - /** - * Destructor - */ - ~FTGLBufferFont(); - - /** - * Renders a string of characters - * - * @param string 'C' style string to be output. - */ - void Render( const char* string); - - /** - * Renders a string of characters - * - * @param string wchar_t string to be output. - */ - void Render( const wchar_t* string); - - private: - /** - * Construct a FTBufferGlyph. - * - * @param g The glyph index NOT the char code. - * @return An FTBufferGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int g); - - unsigned char* buffer; -}; - - -#endif // __FTGLBufferFont__ - diff --git a/extern/bFTGL/include/FTGLExtrdFont.h b/extern/bFTGL/include/FTGLExtrdFont.h deleted file mode 100644 index dc784bbb5b0..00000000000 --- a/extern/bFTGL/include/FTGLExtrdFont.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef __FTGLExtrdFont__ -#define __FTGLExtrdFont__ - -#include "FTFont.h" -#include "FTGL.h" - -class FTGlyph; - -/** - * FTGLExtrdFont is a specialisation of the FTFont class for handling - * extruded Polygon fonts - * - * @see FTFont - * @see FTGLPolygonFont - */ -class FTGL_EXPORT FTGLExtrdFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLExtrdFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLExtrdFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - ~FTGLExtrdFont(); - - void Depth( float d) { depth = d;} - - private: - /** - * Construct a FTPolyGlyph. - * - * @param glyphIndex The glyph index NOT the char code. - * @return An FTExtrdGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int glyphIndex); - - float depth; -}; - - -#endif // __FTGLExtrdFont__ - diff --git a/extern/bFTGL/include/FTGLOutlineFont.h b/extern/bFTGL/include/FTGLOutlineFont.h deleted file mode 100644 index a7f4b23092d..00000000000 --- a/extern/bFTGL/include/FTGLOutlineFont.h +++ /dev/null @@ -1,64 +0,0 @@ -#ifndef __FTGLOutlineFont__ -#define __FTGLOutlineFont__ - - -#include "FTFont.h" -#include "FTGL.h" - -class FTGlyph; - - -/** - * FTGLOutlineFont is a specialisation of the FTFont class for handling - * Vector Outline fonts - * - * @see FTFont - */ -class FTGL_EXPORT FTGLOutlineFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLOutlineFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLOutlineFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - ~FTGLOutlineFont(); - - /** - * Renders a string of characters - * - * @param string 'C' style string to be output. - */ - void Render( const char* string); - - /** - * Renders a string of characters - * - * @param string wchar_t string to be output. - */ - void Render( const wchar_t* string); - - private: - /** - * Construct a FTOutlineGlyph. - * - * @param g The glyph index NOT the char code. - * @return An FTOutlineGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int g); - -}; -#endif // __FTGLOutlineFont__ diff --git a/extern/bFTGL/include/FTGLPixmapFont.h b/extern/bFTGL/include/FTGLPixmapFont.h deleted file mode 100644 index f781ddf68dd..00000000000 --- a/extern/bFTGL/include/FTGLPixmapFont.h +++ /dev/null @@ -1,68 +0,0 @@ -#ifndef __FTGLPixmapFont__ -#define __FTGLPixmapFont__ - - -#include "FTFont.h" -#include "FTGL.h" - - -class FTGlyph; - - -/** - * FTGLPixmapFont is a specialisation of the FTFont class for handling - * Pixmap (Grey Scale) fonts - * - * @see FTFont - */ -class FTGL_EXPORT FTGLPixmapFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLPixmapFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLPixmapFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - ~FTGLPixmapFont(); - - /** - * Renders a string of characters - * - * @param string 'C' style string to be output. - */ - void Render( const char* string); - - /** - * Renders a string of characters - * - * @param string wchar_t string to be output. - */ - void Render( const wchar_t* string); - - private: - /** - * Construct a FTPixmapGlyph. - * - * @param g The glyph index NOT the char code. - * @return An FTPixmapGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int g); - -}; - - -#endif // __FTGLPixmapFont__ - diff --git a/extern/bFTGL/include/FTGLPolygonFont.h b/extern/bFTGL/include/FTGLPolygonFont.h deleted file mode 100644 index 54e624a1893..00000000000 --- a/extern/bFTGL/include/FTGLPolygonFont.h +++ /dev/null @@ -1,53 +0,0 @@ -#ifndef __FTGLPolygonFont__ -#define __FTGLPolygonFont__ - - -#include "FTFont.h" -#include "FTGL.h" - -class FTGlyph; - - -/** - * FTGLPolygonFont is a specialisation of the FTFont class for handling - * tesselated Polygon Mesh fonts - * - * @see FTFont - */ -class FTGL_EXPORT FTGLPolygonFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLPolygonFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLPolygonFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - ~FTGLPolygonFont(); - - private: - /** - * Construct a FTPolyGlyph. - * - * @param g The glyph index NOT the char code. - * @return An FTPolyGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int g); - -}; - - -#endif // __FTGLPolygonFont__ - diff --git a/extern/bFTGL/include/FTGLTextureFont.h b/extern/bFTGL/include/FTGLTextureFont.h deleted file mode 100644 index f0575143f4b..00000000000 --- a/extern/bFTGL/include/FTGLTextureFont.h +++ /dev/null @@ -1,151 +0,0 @@ -#ifndef __FTGLTextureFont__ -#define __FTGLTextureFont__ - -#include "FTFont.h" -#include "FTVector.h" -#include "FTGL.h" - -class FTTextureGlyph; - - -/** - * FTGLTextureFont is a specialisation of the FTFont class for handling - * Texture mapped fonts - * - * @see FTFont - */ -class FTGL_EXPORT FTGLTextureFont : public FTFont -{ - public: - /** - * Open and read a font file. Sets Error flag. - * - * @param fontname font file name. - */ - FTGLTextureFont( const char* fontname); - - /** - * Open and read a font from a buffer in memory. Sets Error flag. - * - * @param pBufferBytes the in-memory buffer - * @param bufferSizeInBytes the length of the buffer in bytes - */ - FTGLTextureFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes); - - /** - * Destructor - */ - virtual ~FTGLTextureFont(); - - /** - * Set the char size for the current face. - * - * @param size the face size in points (1/72 inch) - * @param res the resolution of the target device. - * @return true if size was set correctly - */ - virtual bool FaceSize( const unsigned int size, const unsigned int res = 72); - - /** - * Renders a string of characters - * - * @param string 'C' style string to be output. - */ - virtual void Render( const char* string); - - /** - * Renders a string of characters - * - * @param string wchar_t string to be output. - */ - virtual void Render( const wchar_t* string); - - - private: - /** - * Construct a FTTextureGlyph. - * - * @param glyphIndex The glyph index NOT the char code. - * @return An FTTextureGlyph or null on failure. - */ - inline virtual FTGlyph* MakeGlyph( unsigned int glyphIndex); - - /** - * Get the size of a block of memory required to layout the glyphs - * - * Calculates a width and height based on the glyph sizes and the - * number of glyphs. It over estimates. - */ - inline void CalculateTextureSize(); - - /** - * Creates a 'blank' OpenGL texture object. - * - * The format is GL_ALPHA and the params are - * GL_TEXTURE_WRAP_S = GL_CLAMP - * GL_TEXTURE_WRAP_T = GL_CLAMP - * GL_TEXTURE_MAG_FILTER = GL_LINEAR - * GL_TEXTURE_MIN_FILTER = GL_LINEAR - * Note that mipmapping is NOT used - */ - inline GLuint CreateTexture(); - - /** - * The maximum texture dimension on this OpenGL implemetation - */ - GLsizei maxTextSize; - - /** - * The minimum texture width required to hold the glyphs - */ - GLsizei textureWidth; - - /** - * The minimum texture height required to hold the glyphs - */ - GLsizei textureHeight; - - /** - *An array of texture ids - */ - FTVector textureIDList; - - /** - * The max height for glyphs in the current font - */ - int glyphHeight; - - /** - * The max width for glyphs in the current font - */ - int glyphWidth; - - /** - * A value to be added to the height and width to ensure that - * glyphs don't overlap in the texture - */ - unsigned int padding; - - /** - * - */ - unsigned int numGlyphs; - - /** - */ - unsigned int remGlyphs; - - /** - */ - int xOffset; - - /** - */ - int yOffset; - -}; - - -#endif // __FTGLTextureFont__ - - diff --git a/extern/bFTGL/include/FTGlyph.h b/extern/bFTGL/include/FTGlyph.h deleted file mode 100644 index c38d51e728e..00000000000 --- a/extern/bFTGL/include/FTGlyph.h +++ /dev/null @@ -1,89 +0,0 @@ -#ifndef __FTGlyph__ -#define __FTGlyph__ - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTBBox.h" -#include "FTPoint.h" -#include "FTGL.h" - - -/** - * FTGlyph is the base class for FTGL glyphs. - * - * It provides the interface between Freetype glyphs and their openGL - * renderable counterparts. This is an abstract class and derived classes - * must implement the render function. - * - * @see FTGlyphContainer - * @see FTBBox - * @see FTPoint - * - */ -class FTGL_EXPORT FTGlyph -{ - public: - /** - * Constructor - */ - FTGlyph( FT_GlyphSlot glyph); - - /** - * Destructor - */ - virtual ~FTGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen) = 0; - - /** - * Return the advance width for this glyph. - * - * @return advance width. - */ - float Advance() const { return advance;} - - /** - * Return the bounding box for this glyph. - * - * @return bounding box. - */ - const FTBBox& BBox() const { return bBox;} - - /** - * Queries for errors. - * - * @return The current error code. - */ - FT_Error Error() const { return err;} - - protected: - /** - * The advance distance for this glyph - */ - float advance; - - /** - * The bounding box of this glyph. - */ - FTBBox bBox; - - /** - * Current error code. Zero means no error. - */ - FT_Error err; - - private: - -}; - - -#endif // __FTGlyph__ - diff --git a/extern/bFTGL/include/FTGlyphContainer.h b/extern/bFTGL/include/FTGlyphContainer.h deleted file mode 100644 index de668b61dbd..00000000000 --- a/extern/bFTGL/include/FTGlyphContainer.h +++ /dev/null @@ -1,127 +0,0 @@ -#ifndef __FTGlyphContainer__ -#define __FTGlyphContainer__ - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTBBox.h" -#include "FTPoint.h" -#include "FTVector.h" - -class FTFace; -class FTGlyph; -class FTCharmap; - -/** - * FTGlyphContainer holds the post processed FTGlyph objects. - * - * @see FTGlyph - */ -class FTGL_EXPORT FTGlyphContainer -{ - typedef FTVector GlyphVector; - public: - /** - * Constructor - * - * @param face The Freetype face - */ - FTGlyphContainer( FTFace* face); - - /** - * Destructor - */ - ~FTGlyphContainer(); - - /** - * Sets the character map for the face. - * - * @param encoding the Freetype encoding symbol. See above. - * @return true if charmap was valid - * and set correctly - */ - bool CharMap( FT_Encoding encoding); - - /** - * Get the font index of the input character. - * - * @param characterCode The character code of the requested glyph in the - * current encoding eg apple roman. - * @return The font index for the character. - */ - unsigned int FontIndex( const unsigned int characterCode ) const; - - /** - * Adds a glyph to this glyph list. - * - * @param glyph The FTGlyph to be inserted into the container - * @param characterCode The char code of the glyph NOT the glyph index. - */ - void Add( FTGlyph* glyph, const unsigned int characterCode); - - /** - * Get a glyph from the glyph list - * - * @param characterCode The char code of the glyph NOT the glyph index - * @return An FTGlyph or null is it hasn't been - * loaded. - */ - const FTGlyph* const Glyph( const unsigned int characterCode) const; - - /** - * Get the bounding box for a character. - * @param characterCode The char code of the glyph NOT the glyph index - */ - FTBBox BBox( const unsigned int characterCode) const; - - /** - * Returns the kerned advance width for a glyph. - * - * @param characterCode glyph index of the character - * @param nextCharacterCode the next glyph in a string - * @return advance width - */ - float Advance( const unsigned int characterCode, const unsigned int nextCharacterCode); - - /** - * Renders a character - * @param characterCode the glyph to be Rendered - * @param nextCharacterCode the next glyph in the string. Used for kerning. - * @param penPosition the position to Render the glyph - * @return The distance to advance the pen position after Rendering - */ - FTPoint Render( const unsigned int characterCode, const unsigned int nextCharacterCode, FTPoint penPosition); - - /** - * Queries the Font for errors. - * - * @return The current error code. - */ - FT_Error Error() const { return err;} - - private: - /** - * The FTGL face - */ - FTFace* face; - - /** - * The Character Map object associated with the current face - */ - FTCharmap* charMap; - - /** - * A structure to hold the glyphs - */ - GlyphVector glyphs; - - /** - * Current error code. Zero means no error. - */ - FT_Error err; -}; - - -#endif // __FTGlyphContainer__ diff --git a/extern/bFTGL/include/FTLibrary.h b/extern/bFTGL/include/FTLibrary.h deleted file mode 100644 index 1e5ed6b1a08..00000000000 --- a/extern/bFTGL/include/FTLibrary.h +++ /dev/null @@ -1,97 +0,0 @@ -#ifndef __FTLibrary__ -#define __FTLibrary__ - -#include -#include FT_FREETYPE_H -//#include FT_CACHE_H - -#include "FTGL.h" - - -/** - * FTLibrary class is the global accessor for the Freetype library. - * - * This class encapsulates the Freetype Library. This is a singleton class - * and ensures that only one FT_Library is in existence at any one time. - * All constructors are private therefore clients cannot create or - * instantiate this class themselves and must access it's methods via the - * static FTLibrary::Instance() function. - * - * Just because this class returns a valid FTLibrary object - * doesn't mean that the Freetype Library has been successfully initialised. - * Clients should check for errors. You can initialse the library AND check - * for errors using the following code... - * err = FTLibrary::Instance().Error(); - * - * @see "Freetype 2 Documentation" - * - */ -class FTGL_EXPORT FTLibrary -{ - public: - /** - * Global acces point to the single FTLibrary object. - * - * @return The global FTLibrary object. - */ - static FTLibrary& Instance(); - - /** - * Gets a pointer to the native Freetype library. - * - * @return A handle to a FreeType library instance. - */ - const FT_Library* const GetLibrary() const { return library;} - - /** - * Queries the library for errors. - * - * @return The current error code. - */ - FT_Error Error() const { return err;} - - /** - * Destructor - * - * Disposes of the Freetype library - */ - ~FTLibrary(); - - private: - /** - * Default constructors. - * - * Made private to stop clients creating there own FTLibrary - * objects. - */ - FTLibrary(); - FTLibrary( const FT_Library&){} - FTLibrary& operator=( const FT_Library&) { return *this; } - - /** - * Initialises the Freetype library - * - * Even though this function indicates success via the return value, - * clients can't see this so must check the error codes. This function - * is only ever called by the default c_stor - * - * @return true if the Freetype library was - * successfully initialised, false - * otherwise. - */ - bool Initialise(); - - /** - * Freetype library handle. - */ - FT_Library* library; -// FTC_Manager* manager; - - /** - * Current error code. Zero means no error. - */ - FT_Error err; - -}; - -#endif // __FTLibrary__ diff --git a/extern/bFTGL/include/FTList.h b/extern/bFTGL/include/FTList.h deleted file mode 100644 index 34992168103..00000000000 --- a/extern/bFTGL/include/FTList.h +++ /dev/null @@ -1,112 +0,0 @@ -#ifndef __FTList__ -#define __FTList__ - -#include "FTGL.h" - -/** -* Provides a non-STL alternative to the STL list - */ -template -class FTGL_EXPORT FTList -{ - public: - typedef FT_LIST_ITEM_TYPE value_type; - typedef value_type& reference; - typedef const value_type& const_reference; - typedef size_t size_type; - - /** - * Constructor - */ - FTList() - : listSize(0), - tail(0) - { - tail = NULL; - head = new Node; - } - - /** - * Destructor - */ - ~FTList() - { - Node* next; - - for( Node *walk = head; walk; walk = next) - { - next = walk->next; - delete walk; - } - } - - /** - * Get the number of items in the list - */ - size_type size() const - { - return listSize; - } - - /** - * Add an item to the end of the list - */ - void push_back( const value_type& item) - { - Node* node = new Node( item); - - if( head->next == NULL) - { - head->next = node; - } - - if( tail) - { - tail->next = node; - } - tail = node; - ++listSize; - } - - /** - * Get the item at the front of the list - */ - reference front() const - { - return head->next->payload; - } - - /** - * Get the item at the end of the list - */ - reference back() const - { - return tail->payload; - } - - private: - struct Node - { - Node() - : next(NULL) - {} - - Node( const value_type& item) - : next(NULL) - { - payload = item; - } - - Node* next; - - value_type payload; - }; - - size_type listSize; - - Node* head; - Node* tail; -}; - -#endif // __FTList__ - diff --git a/extern/bFTGL/include/FTOutlineGlyph.h b/extern/bFTGL/include/FTOutlineGlyph.h deleted file mode 100644 index 7dd0ba042b9..00000000000 --- a/extern/bFTGL/include/FTOutlineGlyph.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef __FTOutlineGlyph__ -#define __FTOutlineGlyph__ - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - -class FTVectoriser; - - -/** - * FTOutlineGlyph is a specialisation of FTGlyph for creating outlines. - * - * @see FTGlyphContainer - * @see FTVectoriser - * - */ -class FTGL_EXPORT FTOutlineGlyph : public FTGlyph -{ - public: - /** - * Constructor. Sets the Error to Invalid_Outline if the glyphs isn't an outline. - * - * @param glyph The Freetype glyph to be processed - */ - FTOutlineGlyph( FT_GlyphSlot glyph); - - /** - * Destructor - */ - virtual ~FTOutlineGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - private: - /** - * OpenGL display list - */ - GLuint glList; - -}; - - -#endif // __FTOutlineGlyph__ - diff --git a/extern/bFTGL/include/FTPixmapGlyph.h b/extern/bFTGL/include/FTPixmapGlyph.h deleted file mode 100644 index 9d43d6c58b3..00000000000 --- a/extern/bFTGL/include/FTPixmapGlyph.h +++ /dev/null @@ -1,68 +0,0 @@ -#ifndef __FTPixmapGlyph__ -#define __FTPixmapGlyph__ - - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - - -/** - * FTPixmapGlyph is a specialisation of FTGlyph for creating pixmaps. - * - * @see FTGlyphContainer - * - */ -class FTGL_EXPORT FTPixmapGlyph : public FTGlyph -{ - public: - /** - * Constructor - * - * @param glyph The Freetype glyph to be processed - */ - FTPixmapGlyph( FT_GlyphSlot glyph); - - /** - * Destructor - */ - virtual ~FTPixmapGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - // attributes - - private: - /** - * The width of the glyph 'image' - */ - int destWidth; - - /** - * The height of the glyph 'image' - */ - int destHeight; - - /** - * Vector from the pen position to the topleft corner of the pixmap - */ - FTPoint pos; - - /** - * Pointer to the 'image' data - */ - unsigned char* data; - -}; - - -#endif // __FTPixmapGlyph__ diff --git a/extern/bFTGL/include/FTPoint.h b/extern/bFTGL/include/FTPoint.h deleted file mode 100644 index bb1772c4c18..00000000000 --- a/extern/bFTGL/include/FTPoint.h +++ /dev/null @@ -1,85 +0,0 @@ -#ifndef __FTPoint__ -#define __FTPoint__ - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" - -/** - * FTPoint class is a basic 3 dimensional point or vector. - */ -class FTGL_EXPORT FTPoint -{ - public: - /** - * Default constructor. Point is set to zero. - */ - FTPoint() - : x(0), y(0), z(0) - {} - - /** - * Constructor. - * - * @param X - * @param Y - * @param Z - */ - FTPoint( const FTGL_DOUBLE X, const FTGL_DOUBLE Y, const FTGL_DOUBLE Z) - : x(X), y(Y), z(Z) - {} - - /** - * Constructor. This converts an FT_Vector to an FT_Point - * - * @param ft_vector A freetype vector - */ - FTPoint( const FT_Vector& ft_vector) - : x(ft_vector.x), y(ft_vector.y), z(0) - {} - - /** - * Operator += - * - * @param point - * @return this plus point. - */ - FTPoint& operator += ( const FTPoint& point) - { - x += point.x; - y += point.y; - z += point.z; - - return *this; - } - - /** - * Operator == Tests for eqaulity - * - * @param a - * @param b - * @return - */ - friend bool operator == ( const FTPoint &a, const FTPoint &b); - - /** - * Operator != Tests for non equality - * - * @param a - * @param b - * @return - */ - friend bool operator != ( const FTPoint &a, const FTPoint &b); - - /** - * The point data - */ - FTGL_DOUBLE x, y, z; // FIXME make private - - private: -}; - -#endif // __FTPoint__ - diff --git a/extern/bFTGL/include/FTPolyGlyph.h b/extern/bFTGL/include/FTPolyGlyph.h deleted file mode 100644 index c8faeffceb6..00000000000 --- a/extern/bFTGL/include/FTPolyGlyph.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef __FTPolyGlyph__ -#define __FTPolyGlyph__ - - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - -class FTVectoriser; - -/** - * FTPolyGlyph is a specialisation of FTGlyph for creating tessellated - * polygon glyphs. - * - * @see FTGlyphContainer - * @see FTVectoriser - * - */ -class FTGL_EXPORT FTPolyGlyph : public FTGlyph -{ - public: - /** - * Constructor. Sets the Error to Invalid_Outline if the glyphs isn't an outline. - * - * @param glyph The Freetype glyph to be processed - */ - FTPolyGlyph( FT_GlyphSlot glyph); - - /** - * Destructor - */ - virtual ~FTPolyGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - private: - /** - * OpenGL display list - */ - GLuint glList; - -}; - - -#endif // __FTPolyGlyph__ - diff --git a/extern/bFTGL/include/FTSize.h b/extern/bFTGL/include/FTSize.h deleted file mode 100644 index 31f6bb66db1..00000000000 --- a/extern/bFTGL/include/FTSize.h +++ /dev/null @@ -1,132 +0,0 @@ -#ifndef __FTSize__ -#define __FTSize__ - - -#include -#include FT_FREETYPE_H - -#include "FTGL.h" - - - -/** - * FTSize class provides an abstraction layer for the Freetype Size. - * - * @see "Freetype 2 Documentation" - * - */ -class FTGL_EXPORT FTSize -{ - public: - /** - * Default Constructor - */ - FTSize(); - - /** - * Destructor - */ - virtual ~FTSize(); - - /** - * Sets the char size for the current face. - * - * This doesn't guarantee that the size was set correctly. Clients - * should check errors. - * - * @param face Parent face for this size object - * @param point_size the face size in points (1/72 inch) - * @param x_resolution the horizontal resolution of the target device. - * @param y_resolution the vertical resolution of the target device. - * @return true if the size has been set. Clients should check Error() for more information if this function returns false() - */ - bool CharSize( FT_Face* face, unsigned int point_size, unsigned int x_resolution, unsigned int y_resolution); - - /** - * get the char size for the current face. - * - * @return The char size in points - */ - unsigned int CharSize() const; - - /** - * Gets the global ascender height for the face in pixels. - * - * @return Ascender height - */ - float Ascender() const; - - /** - * Gets the global descender height for the face in pixels. - * - * @return Ascender height - */ - float Descender() const; - - /** - * Gets the global face height for the face. - * - * If the face is scalable this returns the height of the global - * bounding box which ensures that any glyph will be less than or - * equal to this height. If the font isn't scalable there is no - * guarantee that glyphs will not be taller than this value. - * - * @return height in pixels. - */ - float Height() const; - - /** - * Gets the global face width for the face. - * - * If the face is scalable this returns the width of the global - * bounding box which ensures that any glyph will be less than or - * equal to this width. If the font isn't scalable this value is - * the max_advance for the face. - * - * @return width in pixels. - */ - float Width() const; - - /** - * Gets the underline position for the face. - * - * @return underline position in pixels - */ - float Underline() const; - - unsigned int XPixelsPerEm() const; - - unsigned int YPixelsPerEm() const; - - /** - * Queries for errors. - * - * @return The current error code. - */ - FT_Error Error() const { return err; } - - private: - /** - * The current Freetype face that this FTSize object relates to. - */ - FT_Face* ftFace; - - /** - * The Freetype size. - */ - FT_Size ftSize; - - /** - * The size in points. - */ - unsigned int size; - - /** - * Current error code. Zero means no error. - */ - FT_Error err; - -}; - -#endif // __FTSize__ - diff --git a/extern/bFTGL/include/FTTextureGlyph.h b/extern/bFTGL/include/FTTextureGlyph.h deleted file mode 100644 index 389e6f778da..00000000000 --- a/extern/bFTGL/include/FTTextureGlyph.h +++ /dev/null @@ -1,89 +0,0 @@ -#ifndef __FTTextureGlyph__ -#define __FTTextureGlyph__ - - -#include -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#include "FTGL.h" -#include "FTGlyph.h" - - -/** - * FTTextureGlyph is a specialisation of FTGlyph for creating texture - * glyphs. - * - * @see FTGlyphContainer - * - */ -class FTGL_EXPORT FTTextureGlyph : public FTGlyph -{ - public: - /** - * Constructor - * - * @param glyph The Freetype glyph to be processed - * @param id The id of the texture that this glyph will be - * drawn in - * @param xOffset The x offset into the parent texture to draw - * this glyph - * @param yOffset The y offset into the parent texture to draw - * this glyph - * @param width The width of the parent texture - * @param height The height (number of rows) of the parent texture - */ - FTTextureGlyph( FT_GlyphSlot glyph, int id, int xOffset, int yOffset, GLsizei width, GLsizei height); - - /** - * Destructor - */ - virtual ~FTTextureGlyph(); - - /** - * Renders this glyph at the current pen position. - * - * @param pen The current pen position. - * @return The advance distance for this glyph. - */ - virtual float Render( const FTPoint& pen); - - private: - /** - * The width of the glyph 'image' - */ - int destWidth; - - /** - * The height of the glyph 'image' - */ - int destHeight; - - /** - * Vector from the pen position to the topleft corner of the pixmap - */ - FTPoint pos; - - /** - * The texture co-ords of this glyph within the texture. - */ - FTPoint uv[2]; - - /** - * The texture index that this glyph is contained in. - */ - int glTextureID; - - /** - * The texture index of the currently active texture - * - * We call glGetIntegerv( GL_TEXTURE_2D_BINDING, activeTextureID); - * to get the currently active texture to try to reduce the number - * of texture bind operations - */ - GLint activeTextureID; - -}; - - -#endif // __FTTextureGlyph__ diff --git a/extern/bFTGL/include/FTVector.h b/extern/bFTGL/include/FTVector.h deleted file mode 100644 index 6147f522c08..00000000000 --- a/extern/bFTGL/include/FTVector.h +++ /dev/null @@ -1,190 +0,0 @@ -#ifndef __FTVector__ -#define __FTVector__ - -#include "FTGL.h" - -/** - * Provides a non-STL alternative to the STL vector - */ -template -class FTGL_EXPORT FTVector -{ - public: - typedef FT_VECTOR_ITEM_TYPE value_type; - typedef value_type& reference; - typedef const value_type& const_reference; - typedef value_type* iterator; - typedef const value_type* const_iterator; - typedef size_t size_type; - - FTVector() - { - Capacity = Size = 0; - Items = 0; - } - - - virtual ~FTVector() - { - clear(); - } - - FTVector& operator =(const FTVector& v) - { - reserve(v.capacity()); - - iterator ptr = begin(); - const_iterator vbegin = v.begin(); - const_iterator vend = v.end(); - - while( vbegin != vend) - { - *ptr++ = *vbegin++; - } - - Size = v.size(); - return *this; - } - - size_type size() const - { - return Size; - } - - size_type capacity() const - { - return Capacity; - } - - iterator begin() - { - return Items; - } - - const_iterator begin() const - { - return Items; - } - - iterator end() - { - return begin() + size(); - } - - const_iterator end() const - { - return begin() + size(); - } - - bool empty() const - { - return size() == 0; - } - - reference operator [](size_type pos) - { - return( *(begin() + pos)); - } - - const_reference operator []( size_type pos) const - { - return( *(begin() + pos)); - } - - void clear() - { - if( Capacity) - { - delete [] Items; - Capacity = Size = 0; - Items = 0; - } - } - - void reserve( size_type n) - { - if( capacity() < n) - { - expand(n); - } - } - - void push_back(const value_type& x) - { - if( size() == capacity()) - { - expand(); - } - - ( *this)[size()] = x; - ++Size; - } - - void resize(size_type n, value_type x) - { - if( n == size()) - { - return; - } - - reserve(n); - iterator begin, end; - - if( n >= Size) - { - begin = this->end(); - end = this->begin() + n; - } - else - { - begin = this->begin() + n; - end = this->end(); - } - - while( begin != end) - { - *begin++ = x; - } - - Size = n; - } - - - private: - void expand(size_type capacity_hint = 0) - { - size_type new_capacity =( capacity() == 0) ? 256 : capacity()* 2; - if( capacity_hint) - { - while( new_capacity < capacity_hint) - { - new_capacity *= 2; - } - } - - value_type *new_items = new value_type[new_capacity]; - - iterator begin = this->begin(); - iterator end = this->end(); - value_type *ptr = new_items; - - while( begin != end) - { - *ptr++ = *begin++; - } - - if( Capacity) - { - delete [] Items; - } - - Items = new_items; - Capacity = new_capacity; - } - - size_type Capacity; - size_type Size; - value_type* Items; -}; - -#endif // __FTVector__ diff --git a/extern/bFTGL/include/FTVectoriser.h b/extern/bFTGL/include/FTVectoriser.h deleted file mode 100644 index 7150560ce07..00000000000 --- a/extern/bFTGL/include/FTVectoriser.h +++ /dev/null @@ -1,275 +0,0 @@ -#ifndef __FTVectoriser__ -#define __FTVectoriser__ - - -#include "FTContour.h" -#include "FTList.h" -#include "FTPoint.h" -#include "FTVector.h" -#include "FTGL.h" - - -#ifndef CALLBACK -#define CALLBACK -#endif - - -/** - * FTTesselation captures points that are output by OpenGL's gluTesselator. - */ -class FTGL_EXPORT FTTesselation -{ - public: - /** - * Default constructor - */ - FTTesselation( GLenum m) - : meshType(m) - { - pointList.reserve( 128); - } - - /** - * Destructor - */ - ~FTTesselation() - { - pointList.clear(); - } - - /** - * Add a point to the mesh. - */ - void AddPoint( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z) - { - pointList.push_back( FTPoint( x, y, z)); - } - - /** - * The number of points in this mesh - */ - size_t PointCount() const { return pointList.size();} - - /** - * - */ - const FTPoint& Point( unsigned int index) const { return pointList[index];} - - /** - * Return the OpenGL polygon type. - */ - GLenum PolygonType() const { return meshType;} - - private: - /** - * Points generated by gluTesselator. - */ - typedef FTVector PointVector; - PointVector pointList; - - /** - * OpenGL primitive type from gluTesselator. - */ - GLenum meshType; -}; - - -/** - * FTMesh is a container of FTTesselation's that make up a polygon glyph - */ -class FTGL_EXPORT FTMesh -{ - typedef FTVector TesselationVector; - typedef FTList PointList; - - public: - /** - * Default constructor - */ - FTMesh(); - - /** - * Destructor - */ - ~FTMesh(); - - /** - * - */ - void AddPoint( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z); - - /** - * - */ - FTGL_DOUBLE* Combine( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z); - - /** - * - */ - void Begin( GLenum meshType); - - /** - * - */ - void End(); - - /** - * - */ - void Error( GLenum e) { err = e;} - - /** - * - */ - unsigned int TesselationCount() const { return tesselationList.size();} - - /** - * - */ - const FTTesselation* const Tesselation( unsigned int index) const; - - /** - * - */ - const PointList& TempPointList() const { return tempPointList;} - - /** - * Get the GL ERROR returned by the glu tesselator - */ - GLenum Error() const { return err;} - - private: - /** - * The current sub mesh that we are constructing. - */ - FTTesselation* currentTesselation; - - /** - * Holds each sub mesh that comprises this glyph. - */ - TesselationVector tesselationList; - - /** - * Holds extra points created by gluTesselator. See ftglCombine. - */ - PointList tempPointList; - - /** - * GL ERROR returned by the glu tesselator - */ - GLenum err; - -}; - -const FTGL_DOUBLE FTGL_FRONT_FACING = 1.0; -const FTGL_DOUBLE FTGL_BACK_FACING = -1.0; - -/** - * FTVectoriser class is a helper class that converts font outlines into - * point data. - * - * @see FTExtrdGlyph - * @see FTOutlineGlyph - * @see FTPolyGlyph - * @see FTContour - * @see FTPoint - * - */ -class FTGL_EXPORT FTVectoriser -{ - public: - /** - * Constructor - * - * @param glyph The freetype glyph to be processed - */ - FTVectoriser( const FT_GlyphSlot glyph); - - /** - * Destructor - */ - virtual ~FTVectoriser(); - - /** - * Build an FTMesh from the vector outline data. - * - * @param zNormal The direction of the z axis of the normal - * for this mesh - */ - void MakeMesh( FTGL_DOUBLE zNormal = FTGL_FRONT_FACING); - - /** - * Get the current mesh. - */ - const FTMesh* const GetMesh() const { return mesh;} - - /** - * Get the total count of points in this outline - * - * @return the number of points - */ - size_t PointCount(); - - /** - * Get the count of contours in this outline - * - * @return the number of contours - */ - size_t ContourCount() const { return ftContourCount;} - - /** - * Return a contour at index - * - * @return the number of contours - */ - const FTContour* const Contour( unsigned int index) const; - - /** - * Get the number of points in a specific contour in this outline - * - * @param c The contour index - * @return the number of points in contour[c] - */ - size_t ContourSize( int c) const { return contourList[c]->PointCount();} - - /** - * Get the flag for the tesselation rule for this outline - * - * @return The contour flag - */ - int ContourFlag() const { return contourFlag;} - - private: - /** - * Process the freetype outline data into contours of points - */ - void ProcessContours(); - - /** - * The list of contours in the glyph - */ - FTContour** contourList; - - /** - * A Mesh for tesselations - */ - FTMesh* mesh; - - /** - * The number of contours reported by Freetype - */ - short ftContourCount; - - /** - * A flag indicating the tesselation rule for the glyph - */ - int contourFlag; - - /** - * A Freetype outline - */ - FT_Outline outline; -}; - - -#endif // __FTVectoriser__ diff --git a/extern/bFTGL/license.txt b/extern/bFTGL/license.txt deleted file mode 100644 index b9fd0dbb580..00000000000 --- a/extern/bFTGL/license.txt +++ /dev/null @@ -1,27 +0,0 @@ -FTGL - -Herewith is a license. I've also chucked in a gnu (see COPYING.txt) license -for those that are that way inclined. Basically I want you to use this -software and if you think this license is preventing you from doing so -let me know. - -Copyright (C) 2001-3 Henry Maddocks - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, -TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/extern/bFTGL/make/msvc_7_0/ftgl_static_lib.vcproj b/extern/bFTGL/make/msvc_7_0/ftgl_static_lib.vcproj deleted file mode 100644 index a2dcf685ed2..00000000000 --- a/extern/bFTGL/make/msvc_7_0/ftgl_static_lib.vcproj +++ /dev/null @@ -1,406 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/extern/bFTGL/make/msvc_9_0/ftgl_static_lib.vcproj b/extern/bFTGL/make/msvc_9_0/ftgl_static_lib.vcproj deleted file mode 100644 index eefbecb3653..00000000000 --- a/extern/bFTGL/make/msvc_9_0/ftgl_static_lib.vcproj +++ /dev/null @@ -1,537 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/extern/bFTGL/src/FTBitmapGlyph.cpp b/extern/bFTGL/src/FTBitmapGlyph.cpp deleted file mode 100644 index 5db33f10c79..00000000000 --- a/extern/bFTGL/src/FTBitmapGlyph.cpp +++ /dev/null @@ -1,66 +0,0 @@ -#include - -#include "FTBitmapGlyph.h" - -FTBitmapGlyph::FTBitmapGlyph( FT_GlyphSlot glyph) -: FTGlyph( glyph), - destWidth(0), - destHeight(0), - data(0) -{ - err = FT_Render_Glyph( glyph, FT_RENDER_MODE_MONO); - if( err || ft_glyph_format_bitmap != glyph->format) - { - return; - } - - FT_Bitmap bitmap = glyph->bitmap; - - unsigned int srcWidth = bitmap.width; - unsigned int srcHeight = bitmap.rows; - unsigned int srcPitch = bitmap.pitch; - - destWidth = srcWidth; - destHeight = srcHeight; - destPitch = srcPitch; - - if( destWidth && destHeight) - { - data = new unsigned char[destPitch * destHeight]; - unsigned char* dest = data + (( destHeight - 1) * destPitch); - - unsigned char* src = bitmap.buffer; - - for( unsigned int y = 0; y < srcHeight; ++y) - { - memcpy( dest, src, srcPitch); - dest -= destPitch; - src += srcPitch; - } - } - - pos.x = glyph->bitmap_left; - pos.y = static_cast(srcHeight) - glyph->bitmap_top; -} - - -FTBitmapGlyph::~FTBitmapGlyph() -{ - delete [] data; -} - - -float FTBitmapGlyph::Render( const FTPoint& pen) -{ - if( data) - { - glBitmap( 0, 0, 0.0, 0.0, pen.x + pos.x, pen.y - pos.y, (const GLubyte*)0 ); - - glPixelStorei( GL_UNPACK_ROW_LENGTH, destPitch * 8); - glBitmap( destWidth, destHeight, 0.0f, 0.0, 0.0, 0.0, (const GLubyte*)data); - - glBitmap( 0, 0, 0.0, 0.0, -pen.x - pos.x, -pen.y + pos.y, (const GLubyte*)0 ); - } - - return advance; -} diff --git a/extern/bFTGL/src/FTBufferGlyph.cpp b/extern/bFTGL/src/FTBufferGlyph.cpp deleted file mode 100644 index 27310103152..00000000000 --- a/extern/bFTGL/src/FTBufferGlyph.cpp +++ /dev/null @@ -1,59 +0,0 @@ -#include "FTBufferGlyph.h" - -FTBufferGlyph::FTBufferGlyph( FT_GlyphSlot glyph, unsigned char* b) -: FTGlyph( glyph), - destWidth(0), - destHeight(0), - data(0), - buffer(b) -{ - err = FT_Render_Glyph( glyph, FT_RENDER_MODE_NORMAL); - if( err || ft_glyph_format_bitmap != glyph->format) - { - return; - } - - FT_Bitmap bitmap = glyph->bitmap; - - unsigned int srcWidth = bitmap.width; - unsigned int srcHeight = bitmap.rows; - unsigned int srcPitch = bitmap.pitch; - - destWidth = srcWidth; - destHeight = srcHeight; - destPitch = srcPitch; - - if( destWidth && destHeight) - { - data = new unsigned char[destPitch * destHeight]; - unsigned char* dest = data + (( destHeight - 1) * destPitch); - - unsigned char* src = bitmap.buffer; - - for( unsigned int y = 0; y < srcHeight; ++y) - { - memcpy( dest, src, srcPitch); - dest -= destPitch; - src += srcPitch; - } - } - - pos.x = glyph->bitmap_left; - pos.y = srcHeight - glyph->bitmap_top; -} - - -FTBufferGlyph::~FTBufferGlyph() -{ - delete [] data; -} - - -float FTBufferGlyph::Render( const FTPoint& pen) -{ - if( data && buffer) - { - } - - return advance; -} diff --git a/extern/bFTGL/src/FTCharmap.cpp b/extern/bFTGL/src/FTCharmap.cpp deleted file mode 100644 index 00e8cfceca5..00000000000 --- a/extern/bFTGL/src/FTCharmap.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include "FTFace.h" -#include "FTCharmap.h" - - -FTCharmap::FTCharmap( FTFace* face) -: ftFace( *(face->Face())), - err(0) -{ - if( !ftFace->charmap) - { - err = FT_Set_Charmap( ftFace, ftFace->charmaps[0]); - } - - ftEncoding = ftFace->charmap->encoding; -} - - -FTCharmap::~FTCharmap() -{ - charMap.clear(); -} - - -bool FTCharmap::CharMap( FT_Encoding encoding) -{ - if( ftEncoding == encoding) - { - return true; - } - - err = FT_Select_Charmap( ftFace, encoding ); - - if( !err) - { - ftEncoding = encoding; - } - else - { - ftEncoding = ft_encoding_none; - } - - charMap.clear(); - return !err; -} - - -unsigned int FTCharmap::GlyphListIndex( const unsigned int characterCode ) -{ - return charMap.find( characterCode); -} - - -unsigned int FTCharmap::FontIndex( const unsigned int characterCode ) -{ - return FT_Get_Char_Index( ftFace, characterCode); -} - - -void FTCharmap::InsertIndex( const unsigned int characterCode, const unsigned int containerIndex) -{ - charMap.insert( characterCode, containerIndex); -} diff --git a/extern/bFTGL/src/FTContour.cpp b/extern/bFTGL/src/FTContour.cpp deleted file mode 100644 index 6b0cf8a23e1..00000000000 --- a/extern/bFTGL/src/FTContour.cpp +++ /dev/null @@ -1,149 +0,0 @@ -#include "FTContour.h" - -static const float BEZIER_STEP_SIZE = 0.2f; - - -void FTContour::AddPoint( FTPoint point) -{ - if( pointList.empty() || point != pointList[pointList.size() - 1]) - { - pointList.push_back( point); - } -} - - -void FTContour::AddPoint( float x, float y) -{ - AddPoint( FTPoint( x, y, 0.0f)); -} - - -void FTContour::evaluateQuadraticCurve() -{ - for( unsigned int i = 0; i <= ( 1.0f / BEZIER_STEP_SIZE); i++) - { - float bezierValues[2][2]; - - float t = static_cast(i) * BEZIER_STEP_SIZE; - - bezierValues[0][0] = (1.0f - t) * controlPoints[0][0] + t * controlPoints[1][0]; - bezierValues[0][1] = (1.0f - t) * controlPoints[0][1] + t * controlPoints[1][1]; - - bezierValues[1][0] = (1.0f - t) * controlPoints[1][0] + t * controlPoints[2][0]; - bezierValues[1][1] = (1.0f - t) * controlPoints[1][1] + t * controlPoints[2][1]; - - bezierValues[0][0] = (1.0f - t) * bezierValues[0][0] + t * bezierValues[1][0]; - bezierValues[0][1] = (1.0f - t) * bezierValues[0][1] + t * bezierValues[1][1]; - - AddPoint( bezierValues[0][0], bezierValues[0][1]); - } -} - -void FTContour::evaluateCubicCurve() -{ - for( unsigned int i = 0; i <= ( 1.0f / BEZIER_STEP_SIZE); i++) - { - float bezierValues[3][2]; - - float t = static_cast(i) * BEZIER_STEP_SIZE; - - bezierValues[0][0] = (1.0f - t) * controlPoints[0][0] + t * controlPoints[1][0]; - bezierValues[0][1] = (1.0f - t) * controlPoints[0][1] + t * controlPoints[1][1]; - - bezierValues[1][0] = (1.0f - t) * controlPoints[1][0] + t * controlPoints[2][0]; - bezierValues[1][1] = (1.0f - t) * controlPoints[1][1] + t * controlPoints[2][1]; - - bezierValues[2][0] = (1.0f - t) * controlPoints[2][0] + t * controlPoints[3][0]; - bezierValues[2][1] = (1.0f - t) * controlPoints[2][1] + t * controlPoints[3][1]; - - bezierValues[0][0] = (1.0f - t) * bezierValues[0][0] + t * bezierValues[1][0]; - bezierValues[0][1] = (1.0f - t) * bezierValues[0][1] + t * bezierValues[1][1]; - - bezierValues[1][0] = (1.0f - t) * bezierValues[1][0] + t * bezierValues[2][0]; - bezierValues[1][1] = (1.0f - t) * bezierValues[1][1] + t * bezierValues[2][1]; - - bezierValues[0][0] = (1.0f - t) * bezierValues[0][0] + t * bezierValues[1][0]; - bezierValues[0][1] = (1.0f - t) * bezierValues[0][1] + t * bezierValues[1][1]; - - AddPoint( bezierValues[0][0], bezierValues[0][1]); - } -} - - -FTContour::FTContour( FT_Vector* contour, char* pointTags, unsigned int numberOfPoints) -{ - for( unsigned int pointIndex = 0; pointIndex < numberOfPoints; ++ pointIndex) - { - char pointTag = pointTags[pointIndex]; - - if( pointTag == FT_Curve_Tag_On || numberOfPoints < 2) - { - AddPoint( contour[pointIndex].x, contour[pointIndex].y); - continue; - } - - FTPoint controlPoint( contour[pointIndex]); - FTPoint previousPoint = ( 0 == pointIndex) - ? FTPoint( contour[numberOfPoints - 1]) - : pointList[pointList.size() - 1]; - - FTPoint nextPoint = ( pointIndex == numberOfPoints - 1) - ? pointList[0] - : FTPoint( contour[pointIndex + 1]); - - if( pointTag == FT_Curve_Tag_Conic) - { - char nextPointTag = ( pointIndex == numberOfPoints - 1) - ? pointTags[0] - : pointTags[pointIndex + 1]; - - while( nextPointTag == FT_Curve_Tag_Conic) - { - nextPoint = FTPoint( static_cast( controlPoint.x + nextPoint.x) * 0.5f, - static_cast( controlPoint.y + nextPoint.y) * 0.5f, - 0); - - controlPoints[0][0] = previousPoint.x; controlPoints[0][1] = previousPoint.y; - controlPoints[1][0] = controlPoint.x; controlPoints[1][1] = controlPoint.y; - controlPoints[2][0] = nextPoint.x; controlPoints[2][1] = nextPoint.y; - - evaluateQuadraticCurve(); - ++pointIndex; - - previousPoint = nextPoint; - controlPoint = FTPoint( contour[pointIndex]); - nextPoint = ( pointIndex == numberOfPoints - 1) - ? pointList[0] - : FTPoint( contour[pointIndex + 1]); - nextPointTag = ( pointIndex == numberOfPoints - 1) - ? pointTags[0] - : pointTags[pointIndex + 1]; - } - - controlPoints[0][0] = previousPoint.x; controlPoints[0][1] = previousPoint.y; - controlPoints[1][0] = controlPoint.x; controlPoints[1][1] = controlPoint.y; - controlPoints[2][0] = nextPoint.x; controlPoints[2][1] = nextPoint.y; - - evaluateQuadraticCurve(); - continue; - } - - if( pointTag == FT_Curve_Tag_Cubic) - { - FTPoint controlPoint2 = nextPoint; - - FTPoint nextPoint = ( pointIndex == numberOfPoints - 2) - ? pointList[0] - : FTPoint( contour[pointIndex + 2]); - - controlPoints[0][0] = previousPoint.x; controlPoints[0][1] = previousPoint.y; - controlPoints[1][0] = controlPoint.x; controlPoints[1][1] = controlPoint.y; - controlPoints[2][0] = controlPoint2.x; controlPoints[2][1] = controlPoint2.y; - controlPoints[3][0] = nextPoint.x; controlPoints[3][1] = nextPoint.y; - - evaluateCubicCurve(); - ++pointIndex; - continue; - } - } -} diff --git a/extern/bFTGL/src/FTExtrdGlyph.cpp b/extern/bFTGL/src/FTExtrdGlyph.cpp deleted file mode 100644 index 0b120e68709..00000000000 --- a/extern/bFTGL/src/FTExtrdGlyph.cpp +++ /dev/null @@ -1,141 +0,0 @@ -#include - -#include "FTExtrdGlyph.h" -#include "FTVectoriser.h" - - -FTExtrdGlyph::FTExtrdGlyph( FT_GlyphSlot glyph, float d) -: FTGlyph( glyph), - glList(0), - depth(d) -{ - bBox.SetDepth( -depth); - - if( ft_glyph_format_outline != glyph->format) - { - err = 0x14; // Invalid_Outline - return; - } - - FTVectoriser vectoriser( glyph); - if ( ( vectoriser.ContourCount() < 1) || ( vectoriser.PointCount() < 3)) - { - return; - } - - unsigned int tesselationIndex; - glList = glGenLists(1); - glNewList( glList, GL_COMPILE); - - vectoriser.MakeMesh( 1.0); - glNormal3d(0.0, 0.0, 1.0); - - const FTMesh* mesh = vectoriser.GetMesh(); - for( tesselationIndex = 0; tesselationIndex < mesh->TesselationCount(); ++tesselationIndex) - { - const FTTesselation* subMesh = mesh->Tesselation( tesselationIndex); - unsigned int polyonType = subMesh->PolygonType(); - - glBegin( polyonType); - for( unsigned int pointIndex = 0; pointIndex < subMesh->PointCount(); ++pointIndex) - { - glVertex3f( subMesh->Point( pointIndex).x / 64.0f, - subMesh->Point( pointIndex).y / 64.0f, - 0.0f); - } - glEnd(); - } - - vectoriser.MakeMesh( -1.0); - glNormal3d(0.0, 0.0, -1.0); - - mesh = vectoriser.GetMesh(); - for( tesselationIndex = 0; tesselationIndex < mesh->TesselationCount(); ++tesselationIndex) - { - const FTTesselation* subMesh = mesh->Tesselation( tesselationIndex); - unsigned int polyonType = subMesh->PolygonType(); - - glBegin( polyonType); - for( unsigned int pointIndex = 0; pointIndex < subMesh->PointCount(); ++pointIndex) - { - glVertex3f( subMesh->Point( pointIndex).x / 64.0f, - subMesh->Point( pointIndex).y / 64.0f, - -depth); - } - glEnd(); - } - - int contourFlag = vectoriser.ContourFlag(); - - for( size_t c = 0; c < vectoriser.ContourCount(); ++c) - { - const FTContour* contour = vectoriser.Contour(c); - unsigned int numberOfPoints = contour->PointCount(); - - glBegin( GL_QUAD_STRIP); - for( unsigned int j = 0; j <= numberOfPoints; ++j) - { - unsigned int index = ( j == numberOfPoints) ? 0 : j; - unsigned int nextIndex = ( index == numberOfPoints - 1) ? 0 : index + 1; - - FTPoint normal = GetNormal( contour->Point(index), contour->Point(nextIndex)); - glNormal3f( normal.x, normal.y, 0.0f); - - if( contourFlag & ft_outline_reverse_fill) - { - glVertex3f( contour->Point(index).x / 64.0f, contour->Point(index).y / 64.0f, 0.0f); - glVertex3f( contour->Point(index).x / 64.0f, contour->Point(index).y / 64.0f, -depth); - } - else - { - glVertex3f( contour->Point(index).x / 64.0f, contour->Point(index).y / 64.0f, -depth); - glVertex3f( contour->Point(index).x / 64.0f, contour->Point(index).y / 64.0f, 0.0f); - } - } - glEnd(); - } - - glEndList(); -} - - -FTExtrdGlyph::~FTExtrdGlyph() -{ - glDeleteLists( glList, 1); -} - - -float FTExtrdGlyph::Render( const FTPoint& pen) -{ - if( glList) - { - glTranslatef( pen.x, pen.y, 0); - glCallList( glList); - glTranslatef( -pen.x, -pen.y, 0); - } - - return advance; -} - - -FTPoint FTExtrdGlyph::GetNormal( const FTPoint &a, const FTPoint &b) -{ - float vectorX = a.x - b.x; - float vectorY = a.y - b.y; - - float length = sqrt( vectorX * vectorX + vectorY * vectorY ); - - if( length > 0.0f) - { - length = 1 / length; - } - else - { - length = 0.0f; - } - - return FTPoint( -vectorY * length, - vectorX * length, - 0.0f); -} - diff --git a/extern/bFTGL/src/FTFace.cpp b/extern/bFTGL/src/FTFace.cpp deleted file mode 100644 index 0385e234d6c..00000000000 --- a/extern/bFTGL/src/FTFace.cpp +++ /dev/null @@ -1,154 +0,0 @@ -#include "FTFace.h" -#include "FTLibrary.h" - -#include FT_TRUETYPE_TABLES_H - -FTFace::FTFace( const char* filename) -: numGlyphs(0), - fontEncodingList(0), - err(0) -{ - const FT_Long DEFAULT_FACE_INDEX = 0; - ftFace = new FT_Face; - - err = FT_New_Face( *FTLibrary::Instance().GetLibrary(), filename, DEFAULT_FACE_INDEX, ftFace); - - if( err) - { - delete ftFace; - ftFace = 0; - } - else - { - numGlyphs = (*ftFace)->num_glyphs; - } -} - - -FTFace::FTFace( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: numGlyphs(0), - err(0) -{ - const FT_Long DEFAULT_FACE_INDEX = 0; - ftFace = new FT_Face; - - err = FT_New_Memory_Face( *FTLibrary::Instance().GetLibrary(), (FT_Byte *)pBufferBytes, bufferSizeInBytes, DEFAULT_FACE_INDEX, ftFace); - - if( err) - { - delete ftFace; - ftFace = 0; - } - else - { - numGlyphs = (*ftFace)->num_glyphs; - } -} - - -FTFace::~FTFace() -{ - Close(); -} - - -bool FTFace::Attach( const char* filename) -{ - err = FT_Attach_File( *ftFace, filename); - return !err; -} - - -bool FTFace::Attach( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -{ - FT_Open_Args open; - - open.flags = FT_OPEN_MEMORY; - open.memory_base = (FT_Byte *)pBufferBytes; - open.memory_size = bufferSizeInBytes; - - err = FT_Attach_Stream( *ftFace, &open); - return !err; -} - - -void FTFace::Close() -{ - if( ftFace) - { - FT_Done_Face( *ftFace); - delete ftFace; - ftFace = 0; - } -} - - -const FTSize& FTFace::Size( const unsigned int size, const unsigned int res) -{ - charSize.CharSize( ftFace, size, res, res); - err = charSize.Error(); - - return charSize; -} - - -unsigned int FTFace::CharMapCount() -{ - return (*ftFace)->num_charmaps; -} - - -FT_Encoding* FTFace::CharMapList() -{ - if( 0 == fontEncodingList) - { - fontEncodingList = new FT_Encoding[CharMapCount()]; - for( size_t encodingIndex = 0; encodingIndex < CharMapCount(); ++encodingIndex) - { - fontEncodingList[encodingIndex] = (*ftFace)->charmaps[encodingIndex]->encoding; - } - } - - return fontEncodingList; -} - - -unsigned int FTFace::UnitsPerEM() const -{ - return (*ftFace)->units_per_EM; -} - - -FTPoint FTFace::KernAdvance( unsigned int index1, unsigned int index2) -{ - float x, y; - x = y = 0.0f; - - if( FT_HAS_KERNING((*ftFace)) && index1 && index2) - { - FT_Vector kernAdvance; - kernAdvance.x = kernAdvance.y = 0; - - err = FT_Get_Kerning( *ftFace, index1, index2, ft_kerning_unfitted, &kernAdvance); - if( !err) - { - x = static_cast( kernAdvance.x) / 64.0f; - y = static_cast( kernAdvance.y) / 64.0f; - } - } - - return FTPoint( x, y, 0.0); -} - - -FT_GlyphSlot FTFace::Glyph( unsigned int index, FT_Int load_flags) -{ - err = FT_Load_Glyph( *ftFace, index, load_flags); - if( err) - { - return NULL; - } - - return (*ftFace)->glyph; -} - diff --git a/extern/bFTGL/src/FTFont.cpp b/extern/bFTGL/src/FTFont.cpp deleted file mode 100644 index c06d883104b..00000000000 --- a/extern/bFTGL/src/FTFont.cpp +++ /dev/null @@ -1,271 +0,0 @@ -#include "FTFace.h" -#include "FTFont.h" -#include "FTGlyphContainer.h" -#include "FTBBox.h" - - -FTFont::FTFont( const char* fontname) -: face( fontname), - glyphList(0) -{ - err = face.Error(); - if( err == 0) - { - glyphList = new FTGlyphContainer( &face); - } -} - - -FTFont::FTFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: face( pBufferBytes, bufferSizeInBytes), - glyphList(0) -{ - err = face.Error(); - if( err == 0) - { - glyphList = new FTGlyphContainer( &face); - } -} - - -FTFont::~FTFont() -{ - delete glyphList; -} - - -bool FTFont::Attach( const char* filename) -{ - if( face.Attach( filename)) - { - err = 0; - return true; - } - else - { - err = face.Error(); - return false; - } -} - - -bool FTFont::Attach( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -{ - if( face.Attach( pBufferBytes, bufferSizeInBytes)) - { - err = 0; - return true; - } - else - { - err = face.Error(); - return false; - } -} - - -bool FTFont::FaceSize( const unsigned int size, const unsigned int res ) -{ - charSize = face.Size( size, res); - - if( face.Error()) - { - return false; - } - - if( glyphList != NULL) - { - delete glyphList; - } - - glyphList = new FTGlyphContainer( &face); - return true; -} - - -unsigned int FTFont::FaceSize() const -{ - return charSize.CharSize(); -} - - -bool FTFont::CharMap( FT_Encoding encoding) -{ - bool result = glyphList->CharMap( encoding); - err = glyphList->Error(); - return result; -} - - -unsigned int FTFont::CharMapCount() -{ - return face.CharMapCount(); -} - - -FT_Encoding* FTFont::CharMapList() -{ - return face.CharMapList(); -} - - -float FTFont::Ascender() const -{ - return charSize.Ascender(); -} - - -float FTFont::Descender() const -{ - return charSize.Descender(); -} - - -void FTFont::BBox( const char* string, - float& llx, float& lly, float& llz, float& urx, float& ury, float& urz) -{ - FTBBox totalBBox; - - if((NULL != string) && ('\0' != *string)) - { - const unsigned char* c = (unsigned char*)string; - - CheckGlyph( *c); - - totalBBox = glyphList->BBox( *c); - float advance = glyphList->Advance( *c, *(c + 1)); - ++c; - - while( *c) - { - CheckGlyph( *c); - FTBBox tempBBox = glyphList->BBox( *c); - tempBBox.Move( FTPoint( advance, 0.0f, 0.0f)); - totalBBox += tempBBox; - advance += glyphList->Advance( *c, *(c + 1)); - ++c; - } - } - - llx = totalBBox.lowerX; - lly = totalBBox.lowerY; - llz = totalBBox.lowerZ; - urx = totalBBox.upperX; - ury = totalBBox.upperY; - urz = totalBBox.upperZ; -} - - -void FTFont::BBox( const wchar_t* string, - float& llx, float& lly, float& llz, float& urx, float& ury, float& urz) -{ - FTBBox totalBBox; - - if((NULL != string) && ('\0' != *string)) - { - const wchar_t* c = string; - - CheckGlyph( *c); - - totalBBox = glyphList->BBox( *c); - float advance = glyphList->Advance( *c, *(c + 1)); - ++c; - - while( *c) - { - CheckGlyph( *c); - FTBBox tempBBox = glyphList->BBox( *c); - tempBBox.Move( FTPoint( advance, 0.0f, 0.0f)); - totalBBox += tempBBox; - advance += glyphList->Advance( *c, *(c + 1)); - ++c; - } - } - - llx = totalBBox.lowerX; - lly = totalBBox.lowerY; - llz = totalBBox.lowerZ; - urx = totalBBox.upperX; - ury = totalBBox.upperY; - urz = totalBBox.upperZ; -} - - -float FTFont::Advance( const wchar_t* string) -{ - const wchar_t* c = string; - float width = 0.0f; - - while( *c) - { - CheckGlyph( *c); - width += glyphList->Advance( *c, *(c + 1)); - ++c; - } - - return width; -} - - -float FTFont::Advance( const char* string) -{ - const unsigned char* c = (unsigned char*)string; - float width = 0.0f; - - while( *c) - { - CheckGlyph( *c); - width += glyphList->Advance( *c, *(c + 1)); - ++c; - } - - return width; -} - - -void FTFont::Render( const char* string ) -{ - const unsigned char* c = (unsigned char*)string; - pen.x = 0; pen.y = 0; - - while( *c) - { - DoRender( *c, *(c + 1)); - ++c; - } -} - - -void FTFont::Render( const wchar_t* string ) -{ - const wchar_t* c = string; - pen.x = 0; pen.y = 0; - - while( *c) - { - DoRender( *c, *(c + 1)); - ++c; - } -} - - -void FTFont::DoRender( const unsigned int chr, const unsigned int nextChr) -{ - CheckGlyph( chr); - - FTPoint kernAdvance = glyphList->Render( chr, nextChr, pen); - - pen.x += kernAdvance.x; - pen.y += kernAdvance.y; -} - - -void FTFont::CheckGlyph( const unsigned int characterCode) -{ - if( NULL == glyphList->Glyph( characterCode)) - { - unsigned int glyphIndex = glyphList->FontIndex( characterCode); - glyphList->Add( MakeGlyph( glyphIndex), characterCode); - } -} - diff --git a/extern/bFTGL/src/FTGLBitmapFont.cpp b/extern/bFTGL/src/FTGLBitmapFont.cpp deleted file mode 100644 index 7e982a608da..00000000000 --- a/extern/bFTGL/src/FTGLBitmapFont.cpp +++ /dev/null @@ -1,66 +0,0 @@ -#include "FTGLBitmapFont.h" -#include "FTBitmapGlyph.h" - - -FTGLBitmapFont::FTGLBitmapFont( const char* fontname) -: FTFont( fontname) -{} - - -FTGLBitmapFont::FTGLBitmapFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes) -{} - - -FTGLBitmapFont::~FTGLBitmapFont() -{} - - -FTGlyph* FTGLBitmapFont::MakeGlyph( unsigned int g) -{ - FT_GlyphSlot ftGlyph = face.Glyph( g, FT_LOAD_DEFAULT); - - if( ftGlyph) - { - FTBitmapGlyph* tempGlyph = new FTBitmapGlyph( ftGlyph); - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - -void FTGLBitmapFont::Render( const char* string) -{ - glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT); - glPushAttrib( GL_ENABLE_BIT); - - glPixelStorei( GL_UNPACK_LSB_FIRST, GL_FALSE); - glPixelStorei( GL_UNPACK_ALIGNMENT, 1); - - glDisable( GL_BLEND); - - FTFont::Render( string); - - glPopAttrib(); - glPopClientAttrib(); -} - - -void FTGLBitmapFont::Render( const wchar_t* string) -{ - glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT); - glPushAttrib( GL_ENABLE_BIT); - - glPixelStorei( GL_UNPACK_LSB_FIRST, GL_FALSE); - glPixelStorei( GL_UNPACK_ALIGNMENT, 1); - - glDisable( GL_BLEND); - - FTFont::Render( string); - - glPopAttrib(); - glPopClientAttrib(); -} - diff --git a/extern/bFTGL/src/FTGLBufferFont.cpp b/extern/bFTGL/src/FTGLBufferFont.cpp deleted file mode 100644 index b8af0fcb05f..00000000000 --- a/extern/bFTGL/src/FTGLBufferFont.cpp +++ /dev/null @@ -1,53 +0,0 @@ -#include "FTGLBufferFont.h" -#include "FTBufferGlyph.h" - - -FTGLBufferFont::FTGLBufferFont( const char* fontname) -: FTFont( fontname), - buffer(0) -{} - - -FTGLBufferFont::FTGLBufferFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes), - buffer(0) -{} - - -FTGLBufferFont::~FTGLBufferFont() -{} - - -FTGlyph* FTGLBufferFont::MakeGlyph( unsigned int g) -{ - FT_GlyphSlot ftGlyph = face.Glyph( g, FT_LOAD_NO_HINTING); - - if( ftGlyph) - { - FTBufferGlyph* tempGlyph = new FTBufferGlyph( ftGlyph, buffer); - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - -void FTGLBufferFont::Render( const char* string) -{ - if( NULL != buffer) - { - FTFont::Render( string); - } -} - - -void FTGLBufferFont::Render( const wchar_t* string) -{ - if( NULL != buffer) - { - FTFont::Render( string); - } -} - - diff --git a/extern/bFTGL/src/FTGLExtrdFont.cpp b/extern/bFTGL/src/FTGLExtrdFont.cpp deleted file mode 100644 index 37d89333a60..00000000000 --- a/extern/bFTGL/src/FTGLExtrdFont.cpp +++ /dev/null @@ -1,35 +0,0 @@ -#include "FTGLExtrdFont.h" -#include "FTExtrdGlyph.h" - - -FTGLExtrdFont::FTGLExtrdFont( const char* fontname) -: FTFont( fontname), - depth( 0.0f) -{} - - -FTGLExtrdFont::FTGLExtrdFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes), - depth( 0.0f) -{} - - -FTGLExtrdFont::~FTGLExtrdFont() -{} - - -FTGlyph* FTGLExtrdFont::MakeGlyph( unsigned int glyphIndex) -{ - FT_GlyphSlot ftGlyph = face.Glyph( glyphIndex, FT_LOAD_NO_HINTING); - - if( ftGlyph) - { - FTExtrdGlyph* tempGlyph = new FTExtrdGlyph( ftGlyph, depth); - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - diff --git a/extern/bFTGL/src/FTGLOutlineFont.cpp b/extern/bFTGL/src/FTGLOutlineFont.cpp deleted file mode 100644 index b9fd187e862..00000000000 --- a/extern/bFTGL/src/FTGLOutlineFont.cpp +++ /dev/null @@ -1,66 +0,0 @@ -#include "FTGLOutlineFont.h" -#include "FTOutlineGlyph.h" - - -FTGLOutlineFont::FTGLOutlineFont( const char* fontname) -: FTFont( fontname) -{} - - -FTGLOutlineFont::FTGLOutlineFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes) -{} - - -FTGLOutlineFont::~FTGLOutlineFont() -{} - - -FTGlyph* FTGLOutlineFont::MakeGlyph( unsigned int g) -{ - FT_GlyphSlot ftGlyph = face.Glyph( g, FT_LOAD_NO_HINTING); - - if( ftGlyph) - { - FTOutlineGlyph* tempGlyph = new FTOutlineGlyph( ftGlyph); - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - -void FTGLOutlineFont::Render( const char* string) -{ - glPushAttrib( GL_ENABLE_BIT | GL_HINT_BIT | GL_LINE_BIT | GL_COLOR_BUFFER_BIT); - - glDisable( GL_TEXTURE_2D); - - glEnable( GL_LINE_SMOOTH); - glHint( GL_LINE_SMOOTH_HINT, GL_DONT_CARE); - glEnable(GL_BLEND); - glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE - - FTFont::Render( string); - - glPopAttrib(); -} - - -void FTGLOutlineFont::Render( const wchar_t* string) -{ - glPushAttrib( GL_ENABLE_BIT | GL_HINT_BIT | GL_LINE_BIT | GL_COLOR_BUFFER_BIT); - - glDisable( GL_TEXTURE_2D); - - glEnable( GL_LINE_SMOOTH); - glHint( GL_LINE_SMOOTH_HINT, GL_DONT_CARE); - glEnable(GL_BLEND); - glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE - - FTFont::Render( string); - - glPopAttrib(); -} - diff --git a/extern/bFTGL/src/FTGLPixmapFont.cpp b/extern/bFTGL/src/FTGLPixmapFont.cpp deleted file mode 100644 index 2654b85e31e..00000000000 --- a/extern/bFTGL/src/FTGLPixmapFont.cpp +++ /dev/null @@ -1,68 +0,0 @@ -#include "FTGLPixmapFont.h" -#include "FTPixmapGlyph.h" - - -FTGLPixmapFont::FTGLPixmapFont( const char* fontname) -: FTFont( fontname) -{} - - -FTGLPixmapFont::FTGLPixmapFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes) -{} - - -FTGLPixmapFont::~FTGLPixmapFont() -{} - - -FTGlyph* FTGLPixmapFont::MakeGlyph( unsigned int g) -{ - FT_GlyphSlot ftGlyph = face.Glyph( g, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP); - - if( ftGlyph) - { - FTPixmapGlyph* tempGlyph = new FTPixmapGlyph( ftGlyph); - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - -void FTGLPixmapFont::Render( const char* string) -{ - glPushAttrib( GL_ENABLE_BIT | GL_PIXEL_MODE_BIT | GL_COLOR_BUFFER_BIT); - glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT); - - glEnable(GL_BLEND); - glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - - glDisable( GL_TEXTURE_2D); - - FTFont::Render( string); - - glPopClientAttrib(); - glPopAttrib(); -} - - -void FTGLPixmapFont::Render( const wchar_t* string) -{ - //glPushAttrib( GL_ENABLE_BIT | GL_PIXEL_MODE_BIT | GL_COLOR_BUFFER_BIT); - // glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT); - - glEnable(GL_BLEND); - glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - - glDisable( GL_TEXTURE_2D); - - FTFont::Render( string); - - glDisable(GL_BLEND); - // glPopClientAttrib(); - // glPopAttrib(); -} - - diff --git a/extern/bFTGL/src/FTGLPolygonFont.cpp b/extern/bFTGL/src/FTGLPolygonFont.cpp deleted file mode 100644 index 2d4dfa1f26a..00000000000 --- a/extern/bFTGL/src/FTGLPolygonFont.cpp +++ /dev/null @@ -1,33 +0,0 @@ -#include "FTGLPolygonFont.h" -#include "FTPolyGlyph.h" - - -FTGLPolygonFont::FTGLPolygonFont( const char* fontname) -: FTFont( fontname) -{} - - -FTGLPolygonFont::FTGLPolygonFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes) -{} - - -FTGLPolygonFont::~FTGLPolygonFont() -{} - - -FTGlyph* FTGLPolygonFont::MakeGlyph( unsigned int g) -{ - FT_GlyphSlot ftGlyph = face.Glyph( g, FT_LOAD_NO_HINTING); - - if( ftGlyph) - { - FTPolyGlyph* tempGlyph = new FTPolyGlyph( ftGlyph); - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - diff --git a/extern/bFTGL/src/FTGLTextureFont.cpp b/extern/bFTGL/src/FTGLTextureFont.cpp deleted file mode 100644 index 92f14be50f2..00000000000 --- a/extern/bFTGL/src/FTGLTextureFont.cpp +++ /dev/null @@ -1,178 +0,0 @@ -#include // For memset - -#include "FTGLTextureFont.h" -#include "FTTextureGlyph.h" - - -inline GLuint NextPowerOf2( GLuint in) -{ - in -= 1; - - in |= in >> 16; - in |= in >> 8; - in |= in >> 4; - in |= in >> 2; - in |= in >> 1; - - return in + 1; -} - - -FTGLTextureFont::FTGLTextureFont( const char* fontname) -: FTFont( fontname), - maxTextSize(0), - textureWidth(0), - textureHeight(0), - glyphHeight(0), - glyphWidth(0), - padding(3), - xOffset(0), - yOffset(0) -{ - remGlyphs = numGlyphs = face.GlyphCount(); -} - - -FTGLTextureFont::FTGLTextureFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes) -: FTFont( pBufferBytes, bufferSizeInBytes), - maxTextSize(0), - textureWidth(0), - textureHeight(0), - glyphHeight(0), - glyphWidth(0), - padding(3), - xOffset(0), - yOffset(0) -{ - remGlyphs = numGlyphs = face.GlyphCount(); -} - - -FTGLTextureFont::~FTGLTextureFont() -{ - glDeleteTextures( textureIDList.size(), (const GLuint*)&textureIDList[0]); -} - - -FTGlyph* FTGLTextureFont::MakeGlyph( unsigned int glyphIndex) -{ - FT_GlyphSlot ftGlyph = face.Glyph( glyphIndex, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP); - - if( ftGlyph) - { - glyphHeight = static_cast( charSize.Height()); - glyphWidth = static_cast( charSize.Width()); - - if( textureIDList.empty()) - { - textureIDList.push_back( CreateTexture()); - xOffset = yOffset = padding; - } - - if( xOffset > ( textureWidth - glyphWidth)) - { - xOffset = padding; - yOffset += glyphHeight; - - if( yOffset > ( textureHeight - glyphHeight)) - { - textureIDList.push_back( CreateTexture()); - yOffset = padding; - } - } - - FTTextureGlyph* tempGlyph = new FTTextureGlyph( ftGlyph, textureIDList[textureIDList.size() - 1], - xOffset, yOffset, textureWidth, textureHeight); - xOffset += static_cast( tempGlyph->BBox().upperX - tempGlyph->BBox().lowerX + padding); - - --remGlyphs; - return tempGlyph; - } - - err = face.Error(); - return NULL; -} - - -void FTGLTextureFont::CalculateTextureSize() -{ - if( !maxTextSize) - { - glGetIntegerv( GL_MAX_TEXTURE_SIZE, (GLint*)&maxTextSize); - } - - textureWidth = NextPowerOf2( (remGlyphs * glyphWidth) + ( padding * 2)); - if( textureWidth > maxTextSize) - { - textureWidth = maxTextSize; - } - - int h = static_cast( (textureWidth - ( padding * 2)) / glyphWidth); - - textureHeight = NextPowerOf2( (( numGlyphs / h) + 1) * glyphHeight); - textureHeight = textureHeight > maxTextSize ? maxTextSize : textureHeight; -} - - -GLuint FTGLTextureFont::CreateTexture() -{ - CalculateTextureSize(); - - int totalMemory = textureWidth * textureHeight; - unsigned char* textureMemory = new unsigned char[totalMemory]; - memset( textureMemory, 0, totalMemory); - - GLuint textID; - glGenTextures( 1, (GLuint*)&textID); - - glBindTexture( GL_TEXTURE_2D, textID); - glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); - glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); - glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); - glTexParameteri( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); - - glTexImage2D( GL_TEXTURE_2D, 0, GL_ALPHA, textureWidth, textureHeight, 0, GL_ALPHA, GL_UNSIGNED_BYTE, textureMemory); - - delete [] textureMemory; - - return textID; -} - - -bool FTGLTextureFont::FaceSize( const unsigned int size, const unsigned int res) -{ - if( !textureIDList.empty()) - { - glDeleteTextures( textureIDList.size(), (const GLuint*)&textureIDList[0]); - remGlyphs = numGlyphs = face.GlyphCount(); - } - - return FTFont::FaceSize( size, res); -} - - -void FTGLTextureFont::Render( const char* string) -{ -// glPushAttrib( GL_ENABLE_BIT | GL_COLOR_BUFFER_BIT); - - glEnable(GL_BLEND); - glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE - - FTFont::Render( string); - -// glPopAttrib(); -} - - -void FTGLTextureFont::Render( const wchar_t* string) -{ -// glPushAttrib( GL_ENABLE_BIT | GL_COLOR_BUFFER_BIT); - - glEnable(GL_BLEND); - glBlendFunc( GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); // GL_ONE - - FTFont::Render( string); - -// glPopAttrib(); -} - diff --git a/extern/bFTGL/src/FTGlyph.cpp b/extern/bFTGL/src/FTGlyph.cpp deleted file mode 100644 index c68632949c2..00000000000 --- a/extern/bFTGL/src/FTGlyph.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#include "FTGlyph.h" - - -FTGlyph::FTGlyph( FT_GlyphSlot glyph) -: advance(0.0f), - err(0) -{ - if( glyph) - { - bBox = FTBBox( glyph); - advance = static_cast( glyph->advance.x) / 64.0f; - } -} - - -FTGlyph::~FTGlyph() -{} diff --git a/extern/bFTGL/src/FTGlyphContainer.cpp b/extern/bFTGL/src/FTGlyphContainer.cpp deleted file mode 100644 index 2c1881bbfff..00000000000 --- a/extern/bFTGL/src/FTGlyphContainer.cpp +++ /dev/null @@ -1,93 +0,0 @@ -#include "FTGlyphContainer.h" -#include "FTGlyph.h" -#include "FTFace.h" -#include "FTCharmap.h" - - -FTGlyphContainer::FTGlyphContainer( FTFace* f) -: face(f), - err(0) -{ - glyphs.push_back( NULL); - charMap = new FTCharmap( face); -} - - -FTGlyphContainer::~FTGlyphContainer() -{ - GlyphVector::iterator glyphIterator; - for( glyphIterator = glyphs.begin(); glyphIterator != glyphs.end(); ++glyphIterator) - { - delete *glyphIterator; - } - - glyphs.clear(); - delete charMap; -} - - -bool FTGlyphContainer::CharMap( FT_Encoding encoding) -{ - bool result = charMap->CharMap( encoding); - err = charMap->Error(); - return result; -} - - -unsigned int FTGlyphContainer::FontIndex( const unsigned int characterCode) const -{ - return charMap->FontIndex( characterCode); -} - - -void FTGlyphContainer::Add( FTGlyph* tempGlyph, const unsigned int characterCode) -{ - charMap->InsertIndex( characterCode, glyphs.size()); - glyphs.push_back( tempGlyph); -} - - -const FTGlyph* const FTGlyphContainer::Glyph( const unsigned int characterCode) const -{ - signed int index = charMap->GlyphListIndex( characterCode); - return glyphs[index]; -} - - -FTBBox FTGlyphContainer::BBox( const unsigned int characterCode) const -{ - return glyphs[charMap->GlyphListIndex( characterCode)]->BBox(); -} - - -float FTGlyphContainer::Advance( const unsigned int characterCode, const unsigned int nextCharacterCode) -{ - unsigned int left = charMap->FontIndex( characterCode); - unsigned int right = charMap->FontIndex( nextCharacterCode); - - float width = face->KernAdvance( left, right).x; - width += glyphs[charMap->GlyphListIndex( characterCode)]->Advance(); - - return width; -} - - -FTPoint FTGlyphContainer::Render( const unsigned int characterCode, const unsigned int nextCharacterCode, FTPoint penPosition) -{ - FTPoint kernAdvance; - float advance = 0; - - unsigned int left = charMap->FontIndex( characterCode); - unsigned int right = charMap->FontIndex( nextCharacterCode); - - kernAdvance = face->KernAdvance( left, right); - - if( !face->Error()) - { - advance = glyphs[charMap->GlyphListIndex( characterCode)]->Render( penPosition); - } - - kernAdvance.x = advance + kernAdvance.x; -// kernAdvance.y = advance.y + kernAdvance.y; - return kernAdvance; -} diff --git a/extern/bFTGL/src/FTLibrary.cpp b/extern/bFTGL/src/FTLibrary.cpp deleted file mode 100644 index 29ab5ae2693..00000000000 --- a/extern/bFTGL/src/FTLibrary.cpp +++ /dev/null @@ -1,64 +0,0 @@ -#include "FTLibrary.h" - - -FTLibrary& FTLibrary::Instance() -{ - static FTLibrary ftlib; - return ftlib; -} - - -FTLibrary::~FTLibrary() -{ - if( library != 0) - { - FT_Done_FreeType( *library); - - delete library; - library= 0; - } - -// if( manager != 0) -// { -// FTC_Manager_Done( manager ); -// -// delete manager; -// manager= 0; -// } -} - - -FTLibrary::FTLibrary() -: library(0), - err(0) -{ - Initialise(); -} - - -bool FTLibrary::Initialise() -{ - if( library != 0) - return true; - - library = new FT_Library; - - err = FT_Init_FreeType( library); - if( err) - { - delete library; - library = 0; - return false; - } - -// FTC_Manager* manager; -// -// if( FTC_Manager_New( lib, 0, 0, 0, my_face_requester, 0, manager ) -// { -// delete manager; -// manager= 0; -// return false; -// } - - return true; -} diff --git a/extern/bFTGL/src/FTOutlineGlyph.cpp b/extern/bFTGL/src/FTOutlineGlyph.cpp deleted file mode 100644 index 340c7804140..00000000000 --- a/extern/bFTGL/src/FTOutlineGlyph.cpp +++ /dev/null @@ -1,57 +0,0 @@ -#include "FTOutlineGlyph.h" -#include "FTVectoriser.h" - - -FTOutlineGlyph::FTOutlineGlyph( FT_GlyphSlot glyph) -: FTGlyph( glyph), - glList(0) -{ - if( ft_glyph_format_outline != glyph->format) - { - err = 0x14; // Invalid_Outline - return; - } - - FTVectoriser vectoriser( glyph); - - size_t numContours = vectoriser.ContourCount(); - if ( ( numContours < 1) || ( vectoriser.PointCount() < 3)) - { - return; - } - - glList = glGenLists(1); - glNewList( glList, GL_COMPILE); - for( unsigned int c = 0; c < numContours; ++c) - { - const FTContour* contour = vectoriser.Contour(c); - - glBegin( GL_LINE_LOOP); - for( unsigned int p = 0; p < contour->PointCount(); ++p) - { - glVertex2f( contour->Point(p).x / 64.0f, contour->Point(p).y / 64.0f); - } - glEnd(); - } - glEndList(); -} - - -FTOutlineGlyph::~FTOutlineGlyph() -{ - glDeleteLists( glList, 1); -} - - -float FTOutlineGlyph::Render( const FTPoint& pen) -{ - if( glList) - { - glTranslatef( pen.x, pen.y, 0); - glCallList( glList); - glTranslatef( -pen.x, -pen.y, 0); - } - - return advance; -} - diff --git a/extern/bFTGL/src/FTPixmapGlyph.cpp b/extern/bFTGL/src/FTPixmapGlyph.cpp deleted file mode 100644 index b051a06b6e3..00000000000 --- a/extern/bFTGL/src/FTPixmapGlyph.cpp +++ /dev/null @@ -1,109 +0,0 @@ -#include "FTPixmapGlyph.h" - -FTPixmapGlyph::FTPixmapGlyph( FT_GlyphSlot glyph) -: FTGlyph( glyph), - destWidth(0), - destHeight(0), - data(0) -{ - err = FT_Render_Glyph( glyph, FT_RENDER_MODE_NORMAL); - if( err || ft_glyph_format_bitmap != glyph->format) - { - return; - } - - FT_Bitmap bitmap = glyph->bitmap; - - //check the pixel mode - //ft_pixel_mode_grays - - int srcWidth = bitmap.width; - int srcHeight = bitmap.rows; - - // FIXME What about dest alignment? - destWidth = srcWidth; - destHeight = srcHeight; - - if( destWidth && destHeight) - { - data = new unsigned char[destWidth * destHeight * 4]; - - // Get the current glColor. - float ftglColour[4]; -// glGetFloatv( GL_CURRENT_COLOR, ftglColour); - ftglColour[0] = ftglColour[1] = ftglColour[2] = ftglColour[3] = 1.0; - - unsigned char redComponent = static_cast( ftglColour[0] * 255.0f); - unsigned char greenComponent = static_cast( ftglColour[1] * 255.0f); - unsigned char blueComponent = static_cast( ftglColour[2] * 255.0f); - - unsigned char* src = bitmap.buffer; - - unsigned char* dest = data + ((destHeight - 1) * destWidth) * 4; - size_t destStep = destWidth * 4 * 2; - - if( ftglColour[3] == 1.0f) - { - for( int y = 0; y < srcHeight; ++y) - { - for( int x = 0; x < srcWidth; ++x) - { - *dest++ = redComponent; - *dest++ = greenComponent; - *dest++ = blueComponent; - *dest++ = *src++; - } - dest -= destStep; - } - } - else - { - for( int y = 0; y < srcHeight; ++y) - { - for( int x = 0; x < srcWidth; ++x) - { - *dest++ = redComponent; - *dest++ = greenComponent; - *dest++ = blueComponent; - *dest++ = static_cast(ftglColour[3] * *src++); - } - dest -= destStep; - } - } - - destHeight = srcHeight; - } - - pos.x = glyph->bitmap_left; - pos.y = srcHeight - glyph->bitmap_top; -} - - -FTPixmapGlyph::~FTPixmapGlyph() -{ - delete [] data; -} - -#include -float FTPixmapGlyph::Render( const FTPoint& pen) -{ - if( data) - { - float dx, dy; - - dx= floor( (pen.x + pos.x ) ); - dy= ( (pen.y - pos.y ) ); - - // Move the glyph origin - glBitmap( 0, 0, 0.0f, 0.0f, dx, dy, (const GLubyte*)0); - - glPixelStorei( GL_UNPACK_ROW_LENGTH, 0); - - glDrawPixels( destWidth, destHeight, GL_RGBA, GL_UNSIGNED_BYTE, (const GLvoid*)data); - - // Restore the glyph origin - glBitmap( 0, 0, 0.0f, 0.0f, -dx, -dy, (const GLubyte*)0); - } - - return advance; -} diff --git a/extern/bFTGL/src/FTPoint.cpp b/extern/bFTGL/src/FTPoint.cpp deleted file mode 100644 index e4678bc9564..00000000000 --- a/extern/bFTGL/src/FTPoint.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#include "FTPoint.h" - - -bool operator == ( const FTPoint &a, const FTPoint &b) -{ - return((a.x == b.x) && (a.y == b.y) && (a.z == b.z)); -} - -bool operator != ( const FTPoint &a, const FTPoint &b) -{ - return((a.x != b.x) || (a.y != b.y) || (a.z != b.z)); -} - - diff --git a/extern/bFTGL/src/FTPolyGlyph.cpp b/extern/bFTGL/src/FTPolyGlyph.cpp deleted file mode 100644 index 7e0d695493c..00000000000 --- a/extern/bFTGL/src/FTPolyGlyph.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include "FTPolyGlyph.h" -#include "FTVectoriser.h" - - -FTPolyGlyph::FTPolyGlyph( FT_GlyphSlot glyph) -: FTGlyph( glyph), - glList(0) -{ - if( ft_glyph_format_outline != glyph->format) - { - err = 0x14; // Invalid_Outline - return; - } - - FTVectoriser vectoriser( glyph); - - if(( vectoriser.ContourCount() < 1) || ( vectoriser.PointCount() < 3)) - { - return; - } - - vectoriser.MakeMesh( 1.0); - - glList = glGenLists( 1); - glNewList( glList, GL_COMPILE); - - const FTMesh* mesh = vectoriser.GetMesh(); - for( unsigned int index = 0; index < mesh->TesselationCount(); ++index) - { - const FTTesselation* subMesh = mesh->Tesselation( index); - unsigned int polyonType = subMesh->PolygonType(); - - glBegin( polyonType); - for( unsigned int x = 0; x < subMesh->PointCount(); ++x) - { - glVertex3f( subMesh->Point(x).x / 64.0f, - subMesh->Point(x).y / 64.0f, - 0.0f); - } - glEnd(); - } - glEndList(); -} - - -FTPolyGlyph::~FTPolyGlyph() -{ - glDeleteLists( glList, 1); -} - - -float FTPolyGlyph::Render( const FTPoint& pen) -{ - if( glList) - { - glTranslatef( pen.x, pen.y, 0); - glCallList( glList); - glTranslatef( -pen.x, -pen.y, 0); - } - - return advance; -} diff --git a/extern/bFTGL/src/FTSize.cpp b/extern/bFTGL/src/FTSize.cpp deleted file mode 100644 index 5fb8ffba157..00000000000 --- a/extern/bFTGL/src/FTSize.cpp +++ /dev/null @@ -1,105 +0,0 @@ -#include "FTSize.h" - - -FTSize::FTSize() -: ftFace(0), - ftSize(0), - size(0), - err(0) -{} - - -FTSize::~FTSize() -{} - - -bool FTSize::CharSize( FT_Face* face, unsigned int point_size, unsigned int x_resolution, unsigned int y_resolution ) -{ - err = FT_Set_Char_Size( *face, 0L, point_size * 64, x_resolution, y_resolution); - - if( !err) - { - ftFace = face; - size = point_size; - ftSize = (*ftFace)->size; - } - else - { - ftFace = 0; - size = 0; - ftSize = 0; - } - - return !err; -} - - -unsigned int FTSize::CharSize() const -{ - return size; -} - - -float FTSize::Ascender() const -{ - return ftSize == 0 ? 0.0f : static_cast( ftSize->metrics.ascender) / 64.0f; -} - - -float FTSize::Descender() const -{ - return ftSize == 0 ? 0.0f : static_cast( ftSize->metrics.descender) / 64.0f; -} - - -float FTSize::Height() const -{ - if( 0 == ftSize) - { - return 0.0f; - } - - if( FT_IS_SCALABLE((*ftFace))) - { - return ( (*ftFace)->bbox.yMax - (*ftFace)->bbox.yMin) * ( (float)ftSize->metrics.y_ppem / (float)(*ftFace)->units_per_EM); - } - else - { - return static_cast( ftSize->metrics.height) / 64.0f; - } -} - - -float FTSize::Width() const -{ - if( 0 == ftSize) - { - return 0.0f; - } - - if( FT_IS_SCALABLE((*ftFace))) - { - return ( (*ftFace)->bbox.xMax - (*ftFace)->bbox.xMin) * ( static_cast(ftSize->metrics.x_ppem) / static_cast((*ftFace)->units_per_EM)); - } - else - { - return static_cast( ftSize->metrics.max_advance) / 64.0f; - } -} - - -float FTSize::Underline() const -{ - return 0.0f; -} - -unsigned int FTSize::XPixelsPerEm() const -{ - return ftSize == 0 ? 0 : ftSize->metrics.x_ppem; -} - -unsigned int FTSize::YPixelsPerEm() const -{ - return ftSize == 0 ? 0 : ftSize->metrics.y_ppem; -} - diff --git a/extern/bFTGL/src/FTTextureGlyph.cpp b/extern/bFTGL/src/FTTextureGlyph.cpp deleted file mode 100644 index b8267dcce89..00000000000 --- a/extern/bFTGL/src/FTTextureGlyph.cpp +++ /dev/null @@ -1,87 +0,0 @@ -#include "FTTextureGlyph.h" - - -FTTextureGlyph::FTTextureGlyph( FT_GlyphSlot glyph, int id, int xOffset, int yOffset, GLsizei width, GLsizei height) -: FTGlyph( glyph), - destWidth(0), - destHeight(0), - glTextureID(id), - activeTextureID(0) -{ - err = FT_Render_Glyph( glyph, FT_RENDER_MODE_NORMAL); - if( err || glyph->format != ft_glyph_format_bitmap) - { - return; - } - - FT_Bitmap bitmap = glyph->bitmap; - - destWidth = bitmap.width; - destHeight = bitmap.rows; - - if( destWidth && destHeight) - { - glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT); - glPixelStorei( GL_UNPACK_LSB_FIRST, GL_FALSE); - glPixelStorei( GL_UNPACK_ROW_LENGTH, 0); - glPixelStorei( GL_UNPACK_ALIGNMENT, 1); - - glBindTexture( GL_TEXTURE_2D, glTextureID); - glTexSubImage2D( GL_TEXTURE_2D, 0, xOffset, yOffset, destWidth, destHeight, GL_ALPHA, GL_UNSIGNED_BYTE, bitmap.buffer); - - glPopClientAttrib(); - } - - -// 0 -// +----+ -// | | -// | | -// | | -// +----+ -// 1 - - uv[0].x = static_cast(xOffset) / static_cast(width); - uv[0].y = static_cast(yOffset) / static_cast(height); - uv[1].x = static_cast( xOffset + destWidth) / static_cast(width); - uv[1].y = static_cast( yOffset + destHeight) / static_cast(height); - - pos.x = glyph->bitmap_left; - pos.y = glyph->bitmap_top; -} - - -FTTextureGlyph::~FTTextureGlyph() -{} - -#include - -float FTTextureGlyph::Render( const FTPoint& pen) -{ - float dx; - - glGetIntegerv( GL_TEXTURE_2D_BINDING_EXT, &activeTextureID); - if( activeTextureID != glTextureID) - { - glBindTexture( GL_TEXTURE_2D, (GLuint)glTextureID); - } - - dx= floor( (pen.x + pos.x ) ); - - glBegin( GL_QUADS); - glTexCoord2f( uv[0].x, uv[0].y); - glVertex2f( dx, pen.y + pos.y); - - glTexCoord2f( uv[0].x, uv[1].y); - glVertex2f( dx, pen.y + pos.y - destHeight); - - glTexCoord2f( uv[1].x, uv[1].y); - glVertex2f( dx + destWidth, pen.y + pos.y - destHeight); - - glTexCoord2f( uv[1].x, uv[0].y); - glVertex2f( dx + destWidth, pen.y + pos.y); - glEnd(); - - return advance; -} - diff --git a/extern/bFTGL/src/FTVectoriser.cpp b/extern/bFTGL/src/FTVectoriser.cpp deleted file mode 100644 index 82dcb0c0f51..00000000000 --- a/extern/bFTGL/src/FTVectoriser.cpp +++ /dev/null @@ -1,229 +0,0 @@ -#include "FTVectoriser.h" -#include "FTGL.h" - -#ifndef CALLBACK -#define CALLBACK -#endif - -#if defined(__APPLE_CC__) - #if __APPLE_CC__ >= 5465 - typedef GLvoid (*GLUTesselatorFunction)(); - #else - typedef GLvoid (*GLUTesselatorFunction)(...); - #endif -#elif defined( __mips ) || defined( __linux__ ) || defined( __FreeBSD__ ) || defined( __OpenBSD__ ) || defined( __sun ) || defined (__CYGWIN__) - typedef GLvoid (*GLUTesselatorFunction)(); -#elif defined ( WIN32) - typedef GLvoid (CALLBACK *GLUTesselatorFunction)( ); -#else - #error "Error - need to define type GLUTesselatorFunction for this platform/compiler" -#endif - - -void CALLBACK ftglError( GLenum errCode, FTMesh* mesh) -{ - mesh->Error( errCode); -} - - -void CALLBACK ftglVertex( void* data, FTMesh* mesh) -{ - FTGL_DOUBLE* vertex = static_cast(data); - mesh->AddPoint( vertex[0], vertex[1], vertex[2]); -} - - -void CALLBACK ftglCombine( FTGL_DOUBLE coords[3], void* vertex_data[4], GLfloat weight[4], void** outData, FTMesh* mesh) -{ - FTGL_DOUBLE* vertex = static_cast(coords); - *outData = mesh->Combine( vertex[0], vertex[1], vertex[2]); -} - - -void CALLBACK ftglBegin( GLenum type, FTMesh* mesh) -{ - mesh->Begin( type); -} - - -void CALLBACK ftglEnd( FTMesh* mesh) -{ - mesh->End(); -} - - -FTMesh::FTMesh() -: currentTesselation(0), - err(0) -{ - tesselationList.reserve( 16); -} - - -FTMesh::~FTMesh() -{ - for( size_t t = 0; t < tesselationList.size(); ++t) - { - delete tesselationList[t]; - } - - tesselationList.clear(); -} - - -void FTMesh::AddPoint( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z) -{ - currentTesselation->AddPoint( x, y, z); -} - - -FTGL_DOUBLE* FTMesh::Combine( const FTGL_DOUBLE x, const FTGL_DOUBLE y, const FTGL_DOUBLE z) -{ - tempPointList.push_back( FTPoint( x, y,z)); - return &tempPointList.back().x; -} - - -void FTMesh::Begin( GLenum meshType) -{ - currentTesselation = new FTTesselation( meshType); -} - - -void FTMesh::End() -{ - tesselationList.push_back( currentTesselation); -} - - -const FTTesselation* const FTMesh::Tesselation( unsigned int index) const -{ - return ( index < tesselationList.size()) ? tesselationList[index] : NULL; -} - - -FTVectoriser::FTVectoriser( const FT_GlyphSlot glyph) -: contourList(0), - mesh(0), - ftContourCount(0), - contourFlag(0) -{ - if( glyph) - { - outline = glyph->outline; - - ftContourCount = outline.n_contours;; - contourList = 0; - contourFlag = outline.flags; - - ProcessContours(); - } -} - - -FTVectoriser::~FTVectoriser() -{ - for( size_t c = 0; c < ContourCount(); ++c) - { - delete contourList[c]; - } - - delete [] contourList; - delete mesh; -} - - -void FTVectoriser::ProcessContours() -{ - short contourLength = 0; - short startIndex = 0; - short endIndex = 0; - - contourList = new FTContour*[ftContourCount]; - - for( short contourIndex = 0; contourIndex < ftContourCount; ++contourIndex) - { - FT_Vector* pointList = &outline.points[startIndex]; - char* tagList = &outline.tags[startIndex]; - - endIndex = outline.contours[contourIndex]; - contourLength = ( endIndex - startIndex) + 1; - - FTContour* contour = new FTContour( pointList, tagList, contourLength); - - contourList[contourIndex] = contour; - - startIndex = endIndex + 1; - } -} - - -size_t FTVectoriser::PointCount() -{ - size_t s = 0; - for( size_t c = 0; c < ContourCount(); ++c) - { - s += contourList[c]->PointCount(); - } - - return s; -} - - -const FTContour* const FTVectoriser::Contour( unsigned int index) const -{ - return ( index < ContourCount()) ? contourList[index] : NULL; -} - - -void FTVectoriser::MakeMesh( FTGL_DOUBLE zNormal) -{ - if( mesh) - { - delete mesh; - } - - mesh = new FTMesh; - - GLUtesselator* tobj = gluNewTess(); - - gluTessCallback( tobj, GLU_TESS_BEGIN_DATA, (GLUTesselatorFunction)ftglBegin); - gluTessCallback( tobj, GLU_TESS_VERTEX_DATA, (GLUTesselatorFunction)ftglVertex); - gluTessCallback( tobj, GLU_TESS_COMBINE_DATA, (GLUTesselatorFunction)ftglCombine); - gluTessCallback( tobj, GLU_TESS_END_DATA, (GLUTesselatorFunction)ftglEnd); - gluTessCallback( tobj, GLU_TESS_ERROR_DATA, (GLUTesselatorFunction)ftglError); - - if( contourFlag & ft_outline_even_odd_fill) // ft_outline_reverse_fill - { - gluTessProperty( tobj, GLU_TESS_WINDING_RULE, GLU_TESS_WINDING_ODD); - } - else - { - gluTessProperty( tobj, GLU_TESS_WINDING_RULE, GLU_TESS_WINDING_NONZERO); - } - - - gluTessProperty( tobj, GLU_TESS_TOLERANCE, 0); - gluTessNormal( tobj, 0.0f, 0.0f, zNormal); - gluTessBeginPolygon( tobj, mesh); - - for( size_t c = 0; c < ContourCount(); ++c) - { - const FTContour* contour = contourList[c]; - - gluTessBeginContour( tobj); - - for( size_t p = 0; p < contour->PointCount(); ++p) - { - FTGL_DOUBLE* d = const_cast(&contour->Point(p).x); - gluTessVertex( tobj, d, d); - } - - gluTessEndContour( tobj); - } - - gluTessEndPolygon( tobj); - - gluDeleteTess( tobj); -} - diff --git a/extern/bFTGL/src/Makefile b/extern/bFTGL/src/Makefile deleted file mode 100644 index d91bcb2559d..00000000000 --- a/extern/bFTGL/src/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*- -# vim: tabstop=8 -# -# $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) 2001-2002 by NaN Holding BV. -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): GSR -# -# ***** END GPL LICENSE BLOCK ***** -# -# - -LIBNAME = ftgl -DIR = $(OCGDIR)/extern/$(LIBNAME) - -CCFLAGS += $(LEVEL_1_CPP_WARNINGS) - -CSRCS = -CCSRCS = FTBitmapGlyph.cpp FTCharmap.cpp FTContour.cpp FTExtrdGlyph.cpp \ - FTFace.cpp FTFont.cpp FTGLBitmapFont.cpp FTGLExtrdFont.cpp \ - FTGLOutlineFont.cpp FTGLPixmapFont.cpp FTGLPolygonFont.cpp \ - FTGLTextureFont.cpp FTGlyph.cpp FTGlyphContainer.cpp FTLibrary.cpp \ - FTOutlineGlyph.cpp FTPixmapGlyph.cpp FTPoint.cpp FTPolyGlyph.cpp \ - FTSize.cpp FTTextureGlyph.cpp FTVectoriser.cpp - -include nan_compile.mk -CPPFLAGS += -I../include -CPPFLAGS += -I$(NAN_FREETYPE)/include -I$(NAN_FREETYPE)/include/freetype2 -CPPFLAGS += -I$(OPENGL_HEADERS) - -install: $(ALL_OR_DEBUG) - @[ -d $(NAN_FTGL) ] || mkdir -p $(NAN_FTGL) - @[ -d $(NAN_FTGL)/include ] || mkdir -p $(NAN_FTGL)/include - @[ -d $(NAN_FTGL)/lib/$(DEBUG_DIR) ] || mkdir -p $(NAN_FTGL)/lib/$(DEBUG_DIR) - @$(NANBLENDERHOME)/intern/tools/cpifdiff.sh $(DIR)/$(DEBUG_DIR)lib$(LIBNAME).a $(NAN_FTGL)/lib/$(DEBUG_DIR) -ifeq ($(OS),darwin) - ranlib $(NAN_FTGL)/lib/$(DEBUG_DIR)lib$(LIBNAME).a -endif - @$(NANBLENDERHOME)/intern/tools/cpifdiff.sh ../include/*.h $(NAN_FTGL)/include/ - diff --git a/extern/bFTGL/win32_vcpp/README_WIN32.txt b/extern/bFTGL/win32_vcpp/README_WIN32.txt deleted file mode 100644 index bc92bbb9591..00000000000 --- a/extern/bFTGL/win32_vcpp/README_WIN32.txt +++ /dev/null @@ -1,206 +0,0 @@ -FTGL 1.31 - -NOTES FOR COMPILING ON WINDOWS - -14 Feb 2002 - -Ellers, ellers@iinet.net.au - - - - - -SUPPORTED COMPILERS - - - -I have rebuilt the FTGL project files for Visual C++ (version 6). There are - -presently no other compilers or environments supported but feel free to - -contribute them. - - - - - -QUICK GUIDE: COMPILING FTGL - - - - - Start up MSVC++ with ftgl.dsw. - - - Tell MSVC++ where FreeType is. You'll need to do something like this: - - - - * select Project>Settings - - * select ftgl_static (for a start) - - * select "All Configurations" - - * go to the tab C++ > PreProcessor - - * Set additional include directories appropriately. For me it is: - - D:\cots\freetype-2.0.5\include - - * repeat for all configurations of ftgl_dll - - - - - -QUICK GUIDE: COMPILING/RUNNING SUPPLIED DEMO PROGRAM - - - - - The program expects the first argument to be the name of a truetype file. - - I copied timesbi.ttf from the windows directory to C:\TEMP and then edit - - the settings of the project: - - - - * select Project>Settings - - * select Demo project - - * select panel Debug>General - - * set Program Arguments to be "C:\TEMP\timesbi.ttf" - - - - - -QUICK GUIDE: COMPILING YOUR PROGRAM TO USE FTGL - - - - - Choose dynamic or static library linkage - - * if you want to link to a static FTGL library ensure that - - FTGL_LIBRARY_STATIC is defined in the preprocessor section - - - - - -CONFIGURATION / CODE GENERATION / C LIBRARIES - - - -FTGL can be built in various configurations (inspired by Freetype and libpng): - - - - - static library (.lib) - - - dynamic library (.dll) - - - -MSVC++ requires selection of "code generation" option, which seems to be - -mostly to do with which version of the Standard C library is linked with the - -library. - - - -The following modes are supported: - - - - - static/dynamic - - - single threaded (ST) or multithreaded (MT) - - NOTE: the multithreaded DLL (MD) mode was NOT included, as freetype itself - - doesn't support that mode so I figure there's no point yet. - - - debug/release (debug has _d suffix) - - - -So the static multithreaded release library is: - - - - ftgl_static_MT.lib - - - -The same library built in DEBUG mode: - - - - ftgl_static_MT_d.lib - - - -If you're not sure which one is appropriate (and if you're a novice don't - -been too put off...) start with making the decision about debug or release. - -This should be easy because if you're building the debug version of your - -app its probably a good idea to link with the debug version of FTGL (but - -not compulsory). Once thats done, you may get errors like: - - - - LIBCMTD.lib(crt0init.obj) : warning LNK4098: defaultlib "libcmt.lib" conflicts with use of other libs; use /NODEFAULTLIB:library - - - -This will happen, for example, when you link a glut app with an FTGL library - -compiled with different codegen options than the GLUT library. - - - -MSVC++ "sort of" - -requires that all libs be linked with the same codegen option. GLUT is built - -in XXX mode, so if you're linking with GLUT, you can get rid of the warning - -by linking with the XXX version of FTGL. The various versions are particularly - -useful if you're doing std C stuff, like printf etc. - - - - - - - -FAQ - - - -Q: "But... do I HAVE to use all these DIFFERENT build modes, like multi- - - threaded, debug single threaded, etc?" - - - -A: No. Sometimes library makers only generate one style anyway. It depends - - on your needs. Unless you're linking with standard C stuff (e.g. printf) - - then it probably won't make a great deal of difference. If you get - - warnings about "default lib libcmt.lib conflicts" etc, then you can make - - use of the different libraries. - - - diff --git a/extern/bFTGL/win32_vcpp/ftgl.dsw b/extern/bFTGL/win32_vcpp/ftgl.dsw deleted file mode 100644 index 17b8fbe6f12..00000000000 --- a/extern/bFTGL/win32_vcpp/ftgl.dsw +++ /dev/null @@ -1,92 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "ftgl_demo"=".\ftgl_demo\ftgl_demo.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name ftgl_dll - End Project Dependency - Begin Project Dependency - Project_Dep_Name ftgl_static_lib - End Project Dependency -}}} - -############################################################################### - -Project: "ftgl_demo_2"=".\ftgl_demo\ftgl_demo_2.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name ftgl_dll - End Project Dependency - Begin Project Dependency - Project_Dep_Name ftgl_static_lib - End Project Dependency -}}} - -############################################################################### - -Project: "ftgl_dll"=".\ftgl_dll\ftgl_dll.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "ftgl_static_lib"=".\ftgl_static_lib\ftgl_static_lib.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "unit_tests"=".\unit_tests\unit_tests.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name ftgl_static_lib - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp b/extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp deleted file mode 100644 index 7e297df9111..00000000000 --- a/extern/bFTGL/win32_vcpp/ftgl_dll/ftgl_dll.dsp +++ /dev/null @@ -1,357 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ftgl_dll" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=ftgl_dll - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ftgl_dll.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ftgl_dll.mak" CFG="ftgl_dll - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ftgl_dll - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "ftgl_dll - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "ftgl_dll - Win32 Release MT" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "ftgl_dll - Win32 Debug MT" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "ftgl_dll - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release_ST" -# PROP BASE Intermediate_Dir "Release_ST" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../Build" -# PROP Intermediate_Dir "Release_ST" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "../Build" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_DLL_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_LIBRARY" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib freetype204.lib /nologo /dll /machine:I386 /out:"../Build/ftgl_dynamic_MT.dll" /libpath:"D:\cots\freetype-2.0.5\objs" - -!ELSEIF "$(CFG)" == "ftgl_dll - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug_ST" -# PROP BASE Intermediate_Dir "Debug_ST" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../Build" -# PROP Intermediate_Dir "Debug_ST" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "../Build" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_DLL_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_LIBRARY" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib freetype204_D.lib /nologo /dll /pdb:"Debug_ST/ftgl_dynamic_ST_d.pdb" /debug /machine:I386 /out:"../Build/ftgl_dynamic_MT_d.dll" /pdbtype:sept /libpath:"D:\cots\freetype-2.0.5\objs" -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "ftgl_dll - Win32 Release MT" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release_MT" -# PROP BASE Intermediate_Dir "Release_MT" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../Build" -# PROP Intermediate_Dir "Release_MT" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "../Build" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_DLL_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_LIBRARY" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib freetype204MT.lib /nologo /dll /machine:I386 /out:"../Build/ftgl_dynamic_MTD.dll" /libpath:"D:\cots\freetype-2.0.5\objs" - -!ELSEIF "$(CFG)" == "ftgl_dll - Win32 Debug MT" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug_MT" -# PROP BASE Intermediate_Dir "Debug_MT" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../Build" -# PROP Intermediate_Dir "Debug_MT" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "../Build" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_DLL_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "FTGL_LIBRARY" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib freetype204MT_D.lib /nologo /dll /pdb:"Debug_ST/ftgl_dynamic_MT_d.pdb" /debug /machine:I386 /out:"../Build/ftgl_dynamic_MTD_d.dll" /pdbtype:sept /libpath:"D:\cots\freetype-2.0.5\objs" -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "ftgl_dll - Win32 Release" -# Name "ftgl_dll - Win32 Debug" -# Name "ftgl_dll - Win32 Release MT" -# Name "ftgl_dll - Win32 Debug MT" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FTBitmapGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTCharmap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTContour.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTExtrdGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLBitmapFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLExtrdFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLOutlineFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLPixmapFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLPolygonFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLTextureFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGlyphContainer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTLibrary.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTOutlineGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTPixmapGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTPoint.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTPolyGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTSize.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTTextureGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTVectoriser.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\FTBBox.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTBitmapGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTCharmap.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTCharToGlyphIndexMap.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTContour.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTExtrdGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTFace.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGL.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLBitmapFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLExtrdFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLOutlineFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLPixmapFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLPolygonFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLTextureFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGlyphContainer.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTLibrary.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTList.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTOutlineGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTPixmapGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTPoint.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTPolyGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTSize.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTTextureGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTVector.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTVectoriser.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/extern/bFTGL/win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp b/extern/bFTGL/win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp deleted file mode 100644 index bc2c77cb0b6..00000000000 --- a/extern/bFTGL/win32_vcpp/ftgl_static_lib/ftgl_static_lib.dsp +++ /dev/null @@ -1,342 +0,0 @@ -# Microsoft Developer Studio Project File - Name="ftgl_static_lib" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=ftgl_static_lib - Win32 Debug MT -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "ftgl_static_lib.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "ftgl_static_lib.mak" CFG="ftgl_static_lib - Win32 Debug MT" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "ftgl_static_lib - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "ftgl_static_lib - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE "ftgl_static_lib - Win32 Debug MT" (based on "Win32 (x86) Static Library") -!MESSAGE "ftgl_static_lib - Win32 Release MT" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "ftgl_static_lib - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release_ST" -# PROP BASE Intermediate_Dir "Release_ST" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release_ST" -# PROP Intermediate_Dir "Release_ST" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\..\..\lib\windows\freetype\include" /I "..\..\include" /I "..\..\..\..\..\lib\windows\freetype\include" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "FTGL_LIBRARY_STATIC" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\Build\ftgl_static_ST.lib" -# Begin Special Build Tool -SOURCE="$(InputPath)" -PostBuild_Cmds=ECHO Copying lib to lib\windows\ftgl\lib XCOPY /Y ..\Build\*lib ..\..\..\..\..\lib\windows\ftgl\lib -# End Special Build Tool - -!ELSEIF "$(CFG)" == "ftgl_static_lib - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug_ST" -# PROP BASE Intermediate_Dir "Debug_ST" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug_ST" -# PROP Intermediate_Dir "Debug_ST" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "FTGL_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\Build\ftgl_static_MT_d.lib" - -!ELSEIF "$(CFG)" == "ftgl_static_lib - Win32 Debug MT" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug_MT" -# PROP BASE Intermediate_Dir "Debug_MT" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug_MT" -# PROP Intermediate_Dir "Debug_MT" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /I "D:\cots\freetype-2.0.5\include" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "FTGL_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "_DEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "FTGL_LIBRARY_STATIC" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\Build\ftgl_static_MTD_d.lib" - -!ELSEIF "$(CFG)" == "ftgl_static_lib - Win32 Release MT" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release_MT" -# PROP BASE Intermediate_Dir "Release_MT" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release_MT" -# PROP Intermediate_Dir "Release_MT" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "FTGL_LIBRARY_STATIC" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "D:\cots\freetype-2.0.5\include" /I "..\..\include" /D "NDEBUG" /D "WIN32" /D "_MBCS" /D "_LIB" /D "FTGL_LIBRARY_STATIC" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\Build\ftgl_static_MTD.lib" - -!ENDIF - -# Begin Target - -# Name "ftgl_static_lib - Win32 Release" -# Name "ftgl_static_lib - Win32 Debug" -# Name "ftgl_static_lib - Win32 Debug MT" -# Name "ftgl_static_lib - Win32 Release MT" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\src\FTBitmapGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTCharmap.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTContour.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTExtrdGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTFace.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLBitmapFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLExtrdFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLOutlineFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLPixmapFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLPolygonFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGLTextureFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTGlyphContainer.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTLibrary.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTOutlineGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTPixmapGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTPoint.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTPolyGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTSize.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTTextureGlyph.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\src\FTVectoriser.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\FTBBox.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTBitmapGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTCharmap.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTCharToGlyphIndexMap.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTContour.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTExtrdGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTFace.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGL.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLBitmapFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLExtrdFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLOutlineFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLPixmapFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLPolygonFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGLTextureFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTGlyphContainer.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTLibrary.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTList.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTOutlineGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTPixmapGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTPoint.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTPolyGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTSize.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTTextureGlyph.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTVector.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\FTVectoriser.h -# End Source File -# End Group -# End Target -# End Project diff --git a/extern/bFTGL/win32_vcpp/unit_tests/unit_tests.dsp b/extern/bFTGL/win32_vcpp/unit_tests/unit_tests.dsp deleted file mode 100644 index f68dfe9b2d8..00000000000 --- a/extern/bFTGL/win32_vcpp/unit_tests/unit_tests.dsp +++ /dev/null @@ -1,168 +0,0 @@ -# Microsoft Developer Studio Project File - Name="unit_tests" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=unit_tests - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "unit_tests.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "unit_tests.mak" CFG="unit_tests - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "unit_tests - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "unit_tests - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "unit_tests - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "$(MIC_COTS_CPPUNIT_DIR)/include" /I "../../include" /I "../../extras" /I "D:\cots\freetype-2.0.5\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "FTGL_LIBRARY_STATIC" /FD /c -# SUBTRACT CPP /YX /Yc /Yu -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 freetype204MT.lib ftgl_static_MT.lib cppunit.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib /nologo /subsystem:console /machine:I386 /libpath:"..\Build" /libpath:"D:\cots\freetype-2.0.5\objs" /libpath:"D:\cots\cppunit-1.9.8\lib" - -!ELSEIF "$(CFG)" == "unit_tests - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /Yu"stdafx.h" /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "$(MIC_COTS_CPPUNIT_DIR)/include" /I "../../include" /I "../../extras" /I "D:\cots\freetype-2.0.5\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "FTGL_LIBRARY_STATIC" /FD /GZ /c -# SUBTRACT CPP /YX /Yc /Yu -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 freetype204MT_D.lib ftgl_static_MT_d.lib cppunitd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib opengl32.lib glu32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\Build" /libpath:"D:\cots\freetype-2.0.5\objs" /libpath:"D:\cots\cppunit-1.9.8\lib" - -!ENDIF - -# Begin Target - -# Name "unit_tests - Win32 Release" -# Name "unit_tests - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE="..\..\test\FTBBox-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTCharmap-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTContour-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTFace-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTFont-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTGlyphContainer-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTLibrary-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTList-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTMesh-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTPoint-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTSize-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTTesselation-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTVector-Test.cpp" -# End Source File -# Begin Source File - -SOURCE="..\..\test\FTVectoriser-Test.cpp" -# End Source File -# Begin Source File - -SOURCE=..\..\test\HPGCalc_afm.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\test\HPGCalc_pfb.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\test\TestMain.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\test\Fontdefs.h -# End Source File -# End Group -# End Target -# End Project diff --git a/intern/CMakeLists.txt b/intern/CMakeLists.txt index 81ef8c121d1..1c0d795448c 100644 --- a/intern/CMakeLists.txt +++ b/intern/CMakeLists.txt @@ -24,7 +24,7 @@ # # ***** END GPL LICENSE BLOCK ***** -SUBDIRS(SoundSystem string ghost guardedalloc bmfont moto container memutil decimation iksolver boolop opennl) +SUBDIRS(SoundSystem string ghost guardedalloc moto container memutil decimation iksolver boolop opennl) IF(WITH_ELBEEM) SUBDIRS(elbeem) diff --git a/intern/Makefile b/intern/Makefile index 357e28309e3..995dc56c7d3 100644 --- a/intern/Makefile +++ b/intern/Makefile @@ -31,7 +31,7 @@ SOURCEDIR = intern # include nan_subdirs.mk -ALLDIRS = string ghost guardedalloc bmfont moto container memutil +ALLDIRS = string ghost guardedalloc moto container memutil ALLDIRS += decimation iksolver bsp SoundSystem opennl elbeem boolop all:: diff --git a/intern/SConscript b/intern/SConscript index 82c7739bf42..bb8525d5ce5 100644 --- a/intern/SConscript +++ b/intern/SConscript @@ -5,7 +5,6 @@ SConscript(['SoundSystem/SConscript', 'string/SConscript', 'ghost/SConscript', 'guardedalloc/SConscript', - 'bmfont/SConscript', 'moto/SConscript', 'container/SConscript', 'memutil/SConscript/', diff --git a/intern/bmfont/BMF_Api.h b/intern/bmfont/BMF_Api.h deleted file mode 100644 index 252f60623a7..00000000000 --- a/intern/bmfont/BMF_Api.h +++ /dev/null @@ -1,162 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -/** - - * $Id$ - * Copyright (C) 2001 NaN Technologies B.V. - * - * API of the OpenGL bitmap font library. - * Currently draws fonts using the glBitmap routine. - * This implies that drawing speed is heavyly dependant on - * the 2D capabilities of the graphics card. - */ - -#ifndef __BMF_API_H -#define __BMF_API_H - -#ifdef __cplusplus -extern "C" { -#endif - -#include "BMF_Fonts.h" - -/** - * Returns the font for a given font type. - * @param font The font to retrieve. - * @return The font (or nil if not found). - */ -BMF_Font* BMF_GetFont(BMF_FontType font); - -/** - * Draws a character at the current raster position. - * @param font The font to use. - * @param c The character to draw. - * @return Indication of success (0 == error). - */ -int BMF_DrawCharacter(BMF_Font* font, char c); - -/** - * Draws a string at the current raster position. - * @param font The font to use. - * @param str The string to draw. - * @return Indication of success (0 == error). - */ -int BMF_DrawString(BMF_Font* font, char* str); - -/** - * Returns the width of a character in pixels. - * @param font The font to use. - * @param c The character. - * @return The length. - */ -int BMF_GetCharacterWidth(BMF_Font* font, char c); - -/** - * Returns the width of a string of characters. - * @param font The font to use. - * @param str The string. - * @return The length. - */ -int BMF_GetStringWidth(BMF_Font* font, char* str); - -/** - * Returns the bounding box of a string of characters. - * @param font The font to use. - * @param str The string. - * @param llx Lower left x coord - * @param lly Lower left y coord - * @param urx Upper right x coord - * @param ury Upper right y coord - */ -void BMF_GetStringBoundingBox(BMF_Font* font, char* str, float*llx, float *lly, float *urx, float *ury); - - -/** - * Returns the bounding box of the font. The width and - * height represent the bounding box of the union of - * all glyps. The minimum and maximum values of the - * box represent the extent of the font and its positioning - * about the origin. - */ -void BMF_GetFontBoundingBox(BMF_Font* font, int *xmin_r, int *ymin_r, int *xmax_r, int *ymax_r); - -/** - * Same as GetFontBoundingBox but only returns the height - */ -int BMF_GetFontHeight(BMF_Font* font); - -/** - * Convert the given @a font to a texture, and return the GL texture - * ID of the texture. If the texture ID is bound, text can - * be drawn using the texture by calling DrawStringTexture. - * - * @param font The font to create the texture from. - * @return The GL texture ID of the new texture, or -1 if unable - * to create. - */ -int BMF_GetFontTexture(BMF_Font* font); - -/** - * Draw the given @a str at the point @a x, @a y, @a z, using - * texture coordinates. This assumes that an appropriate texture - * has been bound, see BMF_BitmapFont::GetTexture(). The string - * is drawn along the positive X axis. - * - * @param font The font to draw with. - * @param string The c-string to draw. - * @param x The x coordinate to start drawing at. - * @param y The y coordinate to start drawing at. - * @param z The z coordinate to start drawing at. - */ -void BMF_DrawStringTexture(BMF_Font* font, char* string, float x, float y, float z); - - /** - * Draw the given @a string at the point @a xpos, @a ypos using - * char and float buffers. - * - * @param string The c-string to draw. - * @param xpos The x coordinate to start drawing at. - * @param ypos The y coordinate to start drawing at. - * @param fgcol The forground color. - * @param bgcol The background color. - * @param buf Unsigned char image buffer, when NULL to not operate on it. - * @param fbuf float image buffer, when NULL to not operate on it. - * @param w image buffer width. - * @param h image buffer height. - * @param channels number of channels in the image (3 or 4 - currently) - */ -void BMF_DrawStringBuf(BMF_Font* font, char *str, int posx, int posy, float *col, unsigned char *buf, float *fbuf, int w, int h, int channels); - - -#ifdef __cplusplus -} -#endif - -#endif /* __BMF_API_H */ - diff --git a/intern/bmfont/BMF_Fonts.h b/intern/bmfont/BMF_Fonts.h deleted file mode 100644 index 00a902573fb..00000000000 --- a/intern/bmfont/BMF_Fonts.h +++ /dev/null @@ -1,74 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -/** - - * $Id$ - * Copyright (C) 2001 NaN Technologies B.V. - * Defines the names of the fonts in the library. - */ - -#ifndef __BMF_FONTS_H -#define __BMF_FONTS_H - -#include "BMF_Settings.h" - -typedef enum -{ - BMF_kHelvetica10 = 0, -#if BMF_INCLUDE_HELV12 - BMF_kHelvetica12, -#endif -#if BMF_INCLUDE_HELVB8 - BMF_kHelveticaBold8, -#endif -#if BMF_INCLUDE_HELVB10 - BMF_kHelveticaBold10, -#endif -#if BMF_INCLUDE_HELVB12 - BMF_kHelveticaBold12, -#endif -#if BMF_INCLUDE_HELVB14 - BMF_kHelveticaBold14, -#endif -#if BMF_INCLUDE_SCR12 - BMF_kScreen12, -#endif -#if BMF_INCLUDE_SCR14 - BMF_kScreen14, -#endif -#if BMF_INCLUDE_SCR15 - BMF_kScreen15, -#endif - BMF_kNumFonts -} BMF_FontType; - -typedef struct BMF_Font BMF_Font; - -#endif /* __BMF_FONTS_H */ - diff --git a/intern/bmfont/BMF_Settings.h b/intern/bmfont/BMF_Settings.h deleted file mode 100644 index b599c97d6ee..00000000000 --- a/intern/bmfont/BMF_Settings.h +++ /dev/null @@ -1,67 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -/** - - * $Id$ - * Copyright (C) 2001 NaN Technologies B.V. - * Allows you to determine which fonts to include in the library. - */ - -#ifndef __BMF_SETTINGS_H -#define __BMF_SETTINGS_H - -/* This font is included always */ -#define BMF_INCLUDE_HELV10 1 - -#ifndef BMF_MINIMAL - -/* These fonts are included with the minimal setting defined */ -#define BMF_INCLUDE_HELV12 1 -#define BMF_INCLUDE_HELVB8 1 -#define BMF_INCLUDE_HELVB10 1 -#define BMF_INCLUDE_HELVB12 1 -#define BMF_INCLUDE_HELVB14 1 -#define BMF_INCLUDE_SCR12 1 -#define BMF_INCLUDE_SCR14 1 -#define BMF_INCLUDE_SCR15 1 - -#else /* BMF_MINIMAL */ -#define BMF_INCLUDE_HELV12 0 -#define BMF_INCLUDE_HELVB8 0 -#define BMF_INCLUDE_HELVB10 0 -#define BMF_INCLUDE_HELVB12 0 -#define BMF_INCLUDE_HELVB14 0 -#define BMF_INCLUDE_SCR12 0 -#define BMF_INCLUDE_SCR14 0 -#define BMF_INCLUDE_SCR15 0 - -#endif /* BMF_MINIMAL */ - -#endif /* __BMF_SETTINGS_H */ - diff --git a/intern/bmfont/CMakeLists.txt b/intern/bmfont/CMakeLists.txt deleted file mode 100644 index 3ae636a6097..00000000000 --- a/intern/bmfont/CMakeLists.txt +++ /dev/null @@ -1,32 +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) 2006, Blender Foundation -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): Jacques Beaurain. -# -# ***** END GPL LICENSE BLOCK ***** - -SET(INC . intern) - -FILE(GLOB SRC intern/*.cpp) - -BLENDERLIB(bf_bmfont "${SRC}" "${INC}") -#, libtype=['intern','player'], priority = [20, 185] ) diff --git a/intern/bmfont/Makefile b/intern/bmfont/Makefile deleted file mode 100644 index de0fc715884..00000000000 --- a/intern/bmfont/Makefile +++ /dev/null @@ -1,52 +0,0 @@ -# -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*- -# vim: tabstop=8 -# -# $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) 2001-2002 by NaN Holding BV. -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): Hans Lambermont, GSR -# -# ***** END GPL LICENSE BLOCK ***** -# bmfont main makefile. -# - -include nan_definitions.mk - -LIBNAME = bmfont -SOURCEDIR = intern/$(LIBNAME) -DIR = $(OCGDIR)/$(SOURCEDIR) -DIRS = intern -#not ready yet TESTDIRS = test - -include nan_subdirs.mk - -install: $(ALL_OR_DEBUG) - @[ -d $(NAN_BMFONT) ] || mkdir $(NAN_BMFONT) - @[ -d $(NAN_BMFONT)/include ] || mkdir $(NAN_BMFONT)/include - @[ -d $(NAN_BMFONT)/lib/$(DEBUG_DIR) ] || mkdir $(NAN_BMFONT)/lib/$(DEBUG_DIR) - @../tools/cpifdiff.sh $(DIR)/$(DEBUG_DIR)libbmfont.a $(NAN_BMFONT)/lib/$(DEBUG_DIR) -ifeq ($(OS),darwin) - ranlib $(NAN_BMFONT)/lib/$(DEBUG_DIR)libbmfont.a -endif - @../tools/cpifdiff.sh *.h $(NAN_BMFONT)/include/ - diff --git a/intern/bmfont/SConscript b/intern/bmfont/SConscript deleted file mode 100644 index 4febe2735e7..00000000000 --- a/intern/bmfont/SConscript +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/python -Import ('env') - -sources = env.Glob('intern/*.cpp') - -incs = '. intern' -incs += ' ' + env['BF_OPENGL_INC'] -defs = '' - -env.BlenderLib ('bf_bmfont', sources, Split(incs), Split(defs), libtype=['intern','player'], priority = [20, 185] ) diff --git a/intern/bmfont/intern/BDF2BMF.py b/intern/bmfont/intern/BDF2BMF.py deleted file mode 100644 index 15b9e5b8eb4..00000000000 --- a/intern/bmfont/intern/BDF2BMF.py +++ /dev/null @@ -1,177 +0,0 @@ -#!/usr/bin/python - -# ***** 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 ***** -# -------------------------------------------------------------------------- - -HELP_TXT = \ -''' -Convert BDF pixmap fonts into C++ files Blender can read. -Use to replace bitmap fonts or add new ones. - -Usage - python bdf2bmf.py -name=SomeName myfile.bdf - -Blender currently supports fonts with a maximum width of 8 pixels. -''' - -# -------- Simple BDF parser -import sys -def parse_bdf(f, MAX_CHARS=256): - lines = [l.strip().upper().split() for l in f.readlines()] - - is_bitmap = False - dummy = {'BITMAP':[]} - char_data = [dummy.copy() for i in xrange(MAX_CHARS)] - context_bitmap = [] - - for l in lines: - if l[0]=='ENCODING': enc = int(l[1]) - elif l[0]=='BBX': bbx = [int(c) for c in l[1:]] - elif l[0]=='DWIDTH': dwidth = int(l[1]) - elif l[0]=='BITMAP': is_bitmap = True - elif l[0]=='ENDCHAR': - if enc < MAX_CHARS: - char_data[enc]['BBX'] = bbx - char_data[enc]['DWIDTH'] = dwidth - char_data[enc]['BITMAP'] = context_bitmap - - context_bitmap = [] - enc = bbx = None - is_bitmap = False - else: - # None of the above, Ok, were reading a bitmap - if is_bitmap and enc < MAX_CHARS: - context_bitmap.append( int(l[0], 16) ) - - return char_data -# -------- end simple BDF parser - -def bdf2cpp_name(path): - return path.split('.')[0] + '.cpp' - -def convert_to_blender(bdf_dict, font_name, origfilename, MAX_CHARS=256): - - # first get a global width/height, also set the offsets - xmin = ymin = 10000000 - xmax = ymax = -10000000 - - bitmap_offsets = [-1] * MAX_CHARS - bitmap_tot = 0 - for i, c in enumerate(bdf_dict): - if c.has_key('BBX'): - bbx = c['BBX'] - xmax = max(bbx[0], xmax) - ymax = max(bbx[1], ymax) - xmin = min(bbx[2], xmin) - ymin = min(bbx[3], ymin) - - bitmap_offsets[i] = bitmap_tot - bitmap_tot += len(c['BITMAP']) - - c['BITMAP'].reverse() - - # Now we can write. Ok if we have no .'s in the path. - f = open(bdf2cpp_name(origfilename), 'w') - - f.write(''' -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" - -#include "BMF_Settings.h" -''') - - f.write('#if BMF_INCLUDE_%s\n\n' % font_name.upper()) - f.write('static unsigned char bitmap_data[]= {') - newline = 8 - - for i, c in enumerate(bdf_dict): - - for cdata in c['BITMAP']: - # Just formatting - newline+=1 - if newline >= 8: - newline = 0 - f.write('\n\t') - # End formatting - - f.write('0x%.2hx,' % cdata) # 0x80 <- format - - f.write("\n};\n") - - f.write("BMF_FontData BMF_font_%s = {\n" % font_name) - f.write('\t%d, %d,\n' % (xmin, ymin)) - f.write('\t%d, %d,\n' % (xmax, ymax)) - - f.write('\t{\n') - - - for i, c in enumerate(bdf_dict): - if bitmap_offsets[i] == -1 or c.has_key('BBX') == False: - f.write('\t\t{0,0,0,0,0, -1},\n') - else: - bbx = c['BBX'] - f.write('\t\t{%d,%d,%d,%d,%d, %d},\n' % (bbx[0], bbx[1], -bbx[2], -bbx[3], c['DWIDTH'], bitmap_offsets[i])) - - f.write(''' - }, - bitmap_data -}; - -#endif -''') - -def main(): - # replace "[-name=foo]" with "[-name] [foo]" - args = [] - for arg in sys.argv: - for a in arg.replace('=', ' ').split(): - args.append(a) - - name = 'untitled' - done_anything = False - for i, arg in enumerate(args): - if arg == '-name': - if i==len(args)-1: - print 'no arg given for -name, aborting' - return - else: - name = args[i+1] - - elif arg.lower().endswith('.bdf'): - try: - f = open(arg) - print '...Writing to:', bdf2cpp_name(arg) - except: - print 'could not open "%s", aborting' % arg - - - bdf_dict = parse_bdf(f) - convert_to_blender(bdf_dict, name, arg) - done_anything = True - - if not done_anything: - print HELP_TXT - print '...nothing to do' - -if __name__ == '__main__': - main() - diff --git a/intern/bmfont/intern/BMF_Api.cpp b/intern/bmfont/intern/BMF_Api.cpp deleted file mode 100644 index 1699393e53d..00000000000 --- a/intern/bmfont/intern/BMF_Api.cpp +++ /dev/null @@ -1,183 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -/** - - * $Id$ - * Copyright (C) 2001 NaN Technologies B.V. - * - * Implementation of the API of the OpenGL bitmap font library. - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_Api.h" - -#include "BMF_BitmapFont.h" - - -#if BMF_INCLUDE_HELV10 -extern BMF_FontData BMF_font_helv10; -static BMF_BitmapFont bmfHelv10(&BMF_font_helv10); -#endif // BMF_INCLUDE_HELV10 -#if BMF_INCLUDE_HELV12 -extern BMF_FontData BMF_font_helv12; -static BMF_BitmapFont bmfHelv12(&BMF_font_helv12); -#endif // BMF_INCLUDE_HELV12 -#if BMF_INCLUDE_HELVB8 -extern BMF_FontData BMF_font_helvb8; -static BMF_BitmapFont bmfHelvb8(&BMF_font_helvb8); -#endif // BMF_INCLUDE_HELVB8 -#if BMF_INCLUDE_HELVB10 -extern BMF_FontData BMF_font_helvb10; -static BMF_BitmapFont bmfHelvb10(&BMF_font_helvb10); -#endif // BMF_INCLUDE_HELVB10 -#if BMF_INCLUDE_HELVB12 -extern BMF_FontData BMF_font_helvb12; -static BMF_BitmapFont bmfHelvb12(&BMF_font_helvb12); -#endif // BMF_INCLUDE_HELVB12 -#if BMF_INCLUDE_HELVB14 -extern BMF_FontData BMF_font_helvb14; -static BMF_BitmapFont bmfHelvb14(&BMF_font_helvb14); -#endif // BMF_INCLUDE_HELVB14 -#if BMF_INCLUDE_SCR12 -extern BMF_FontData BMF_font_scr12; -static BMF_BitmapFont bmfScreen12(&BMF_font_scr12); -#endif // BMF_INCLUDE_SCR12 -#if BMF_INCLUDE_SCR14 -extern BMF_FontData BMF_font_scr14; -static BMF_BitmapFont bmfScreen14(&BMF_font_scr14); -#endif // BMF_INCLUDE_SCR14 -#if BMF_INCLUDE_SCR15 -extern BMF_FontData BMF_font_scr15; -static BMF_BitmapFont bmfScreen15(&BMF_font_scr15); -#endif // BMF_INCLUDE_SCR15 - - -BMF_Font* BMF_GetFont(BMF_FontType font) -{ - switch (font) - { -#if BMF_INCLUDE_HELV10 - case BMF_kHelvetica10: return (BMF_Font*) &bmfHelv10; -#endif // BMF_INCLUDE_HELV10 -#if BMF_INCLUDE_HELV12 - case BMF_kHelvetica12: return (BMF_Font*) &bmfHelv12; -#endif // BMF_INCLUDE_HELV12 -#if BMF_INCLUDE_HELVB8 - case BMF_kHelveticaBold8: return (BMF_Font*) &bmfHelvb8; -#endif // BMF_INCLUDE_HELVB8 -#if BMF_INCLUDE_HELVB10 - case BMF_kHelveticaBold10: return (BMF_Font*) &bmfHelvb10; -#endif // BMF_INCLUDE_HELVB10 -#if BMF_INCLUDE_HELVB12 - case BMF_kHelveticaBold12: return (BMF_Font*) &bmfHelvb12; -#endif // BMF_INCLUDE_HELVB12 -#if BMF_INCLUDE_HELVB14 - case BMF_kHelveticaBold14: return (BMF_Font*) &bmfHelvb14; -#endif // BMF_INCLUDE_HELVB12 -#if BMF_INCLUDE_SCR12 - case BMF_kScreen12: return (BMF_Font*) &bmfScreen12; -#endif // BMF_INCLUDE_SCR12 -#if BMF_INCLUDE_SCR14 - case BMF_kScreen14: return (BMF_Font*) &bmfScreen14; -#endif // BMF_INCLUDE_SCR14 -#if BMF_INCLUDE_SCR15 - case BMF_kScreen15: return (BMF_Font*) &bmfScreen15; -#endif // BMF_INCLUDE_SCR15 - default: - break; - } - return 0; -} - - -int BMF_DrawCharacter(BMF_Font* font, char c) -{ - char str[2] = {c, '\0'}; - return BMF_DrawString(font, str); -} - - -int BMF_DrawString(BMF_Font* font, char* str) -{ - if (!font) return 0; - ((BMF_BitmapFont*)font)->DrawString(str); - return 1; -} - - -int BMF_GetCharacterWidth(BMF_Font* font, char c) -{ - char str[2] = {c, '\0'}; - return BMF_GetStringWidth(font, str); -} - - -int BMF_GetStringWidth(BMF_Font* font, char* str) -{ - if (!font) return 0; - return ((BMF_BitmapFont*)font)->GetStringWidth(str); -} - -void BMF_GetStringBoundingBox(BMF_Font* font, char* str, float*llx, float *lly, float *urx, float *ury){ - if (!font){ - *llx = *lly = *urx = *ury = 0; - }else{ - ((BMF_BitmapFont*)font)->GetStringBoundingBox(str, llx, lly, urx, ury); - } -} - -void BMF_GetFontBoundingBox(BMF_Font* font, int *xmin_r, int *ymin_r, int *xmax_r, int *ymax_r) -{ - if (!font) return; - ((BMF_BitmapFont*)font)->GetFontBoundingBox(*xmin_r, *ymin_r, *xmax_r, *ymax_r); -} - -int BMF_GetFontHeight(BMF_Font* font) -{ - if (!font) return -1; - return ((BMF_BitmapFont*)font)->GetFontHeight(); -} - -int BMF_GetFontTexture(BMF_Font* font) { - if (!font) return -1; - return ((BMF_BitmapFont*)font)->GetTexture(); -} - -void BMF_DrawStringTexture(BMF_Font* font, char *string, float x, float y, float z) { - if (!font) return; - ((BMF_BitmapFont*)font)->DrawStringTexture(string, x, y, z); -} - -void BMF_DrawStringBuf(BMF_Font* font, char *str, int posx, int posy, float *col, unsigned char *buf, float *fbuf, int w, int h, int channels) { - if (!font) return; - ((BMF_BitmapFont*)font)->DrawStringBuf(str, posx, posy, col, buf, fbuf, w, h, channels); -} diff --git a/intern/bmfont/intern/BMF_BitmapFont.cpp b/intern/bmfont/intern/BMF_BitmapFont.cpp deleted file mode 100644 index 0111e9c3f93..00000000000 --- a/intern/bmfont/intern/BMF_BitmapFont.cpp +++ /dev/null @@ -1,323 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -/** - - * $Id$ - * Copyright (C) 2001 NaN Technologies B.V. - */ - - -#include - - - -#include - -#ifdef HAVE_CONFIG_H -#include -#endif - -#if defined(WIN32) || defined(__APPLE__) - #ifdef WIN32 - #if !defined(__CYGWIN32__) - #pragma warning(disable:4244) - #endif /* __CYGWIN32__ */ - #include - #include - #else // WIN32 - // __APPLE__ is defined - #include - #endif // WIN32 -#else // defined(WIN32) || defined(__APPLE__) - #include -#endif // defined(WIN32) || defined(__APPLE__) - -#include "BMF_BitmapFont.h" - - -BMF_BitmapFont::BMF_BitmapFont(BMF_FontData* fontData) -: m_fontData(fontData) -{ -} - - -BMF_BitmapFont::~BMF_BitmapFont(void) -{ -} - -void BMF_BitmapFont::DrawString(char* str) -{ - GLint alignment; - unsigned char c; - - glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment); - glPixelStorei(GL_UNPACK_ALIGNMENT, 1); - - while ( (c = (unsigned char) *str++) ) { - BMF_CharData & cd = m_fontData->chars[c]; - - if (cd.data_offset==-1) { - GLubyte nullBitmap = 0; - - glBitmap(1, 1, 0, 0, cd.advance, 0, &nullBitmap); - } else { - GLubyte *bitmap = &m_fontData->bitmap_data[cd.data_offset]; - - glBitmap(cd.width, cd.height, cd.xorig, cd.yorig, cd.advance, 0, bitmap); - } - } - - glPixelStorei(GL_UNPACK_ALIGNMENT, alignment); -} - - -int BMF_BitmapFont::GetStringWidth(char* str) -{ - unsigned char c; - int length = 0; - - while ( (c = (unsigned char) *str++) ) { - length += m_fontData->chars[c].advance; - } - - return length; -} - -void BMF_BitmapFont::GetFontBoundingBox(int & xMin, int & yMin, int & xMax, int & yMax) -{ - xMin = m_fontData->xmin; - yMin = m_fontData->ymin; - xMax = m_fontData->xmax; - yMax = m_fontData->ymax; -} - -int BMF_BitmapFont::GetFontHeight( void ) -{ - return m_fontData->ymax - m_fontData->ymin; -} - -void BMF_BitmapFont::GetStringBoundingBox(char* str, float*llx, float *lly, float *urx, float *ury) -{ - unsigned char c; - int length = 0; - int ascent = 0; - int descent = 0; - - while ( (c = (unsigned char) *str++) ) { - length += m_fontData->chars[c].advance; - int d = m_fontData->chars[c].yorig; - int a = m_fontData->chars[c].height - m_fontData->chars[c].yorig; - if(a > ascent) ascent = a; - if(d > descent) descent = d; - } - *llx = (float)0; - *lly = (float)-descent; - *urx = (float)length; - *ury = (float)ascent; -} - - -int BMF_BitmapFont::GetTexture() -{ - int fWidth = m_fontData->xmax - m_fontData->xmin; - int fHeight = m_fontData->ymax - m_fontData->ymin; - - if (fWidth>=16 || fHeight>=16) { - return -1; - } - - int cRows = 16, cCols = 16; - int cWidth = 16, cHeight = 16; - int iWidth = cCols*cWidth; - int iHeight = cRows*cHeight; - GLubyte *img = new GLubyte [iHeight*iWidth]; - GLuint texId; - - int baseLine = -(m_fontData->ymin); - - memset(img, 0, iHeight*iWidth); - for (int i = 0; i<256; i++) { - BMF_CharData & cd = m_fontData->chars[i]; - - if (cd.data_offset != -1) { - int cellX = i%16; - int cellY = i/16; - - for (int y = 0; ybitmap_data[cd.data_offset + ((cd.width+7)/8)*y]; - - for (int x = 0; xymin); - - glBegin(GL_QUADS); - while ( (c = (unsigned char) *str++) ) { - BMF_CharData & cd = m_fontData->chars[c]; - - if (cd.data_offset != -1) { - float cellX = (c%16)/16.0; - float cellY = (c/16)/16.0; - - glTexCoord2f(cellX + 1.0/16.0, cellY); - glVertex3f(x + pos + 16.0, -baseLine + y + 0.0, z); - - glTexCoord2f(cellX + 1.0/16.0, cellY + 1.0/16.0); - glVertex3f(x + pos + 16.0, -baseLine + y + 16.0, z); - - glTexCoord2f(cellX, cellY + 1.0/16.0); - glVertex3f(x + pos + 0.0, -baseLine + y + 16.0, z); - - glTexCoord2f(cellX, cellY); - glVertex3f(x + pos + 0.0, -baseLine + y + 0.0, z); - } - - pos += cd.advance; - } - glEnd(); -} - -#define FTOCHAR(val) val<=0.0f?0: (val>=1.0f?255: (char)(255.0f*val)) -void BMF_BitmapFont::DrawStringBuf(char *str, int posx, int posy, float *col, unsigned char *buf, float *fbuf, int w, int h, int channels) -{ - int x, y; - - if (buf==0 && fbuf==0) - return; - - /*offset for font*/ - posx -= m_fontData->xmin; - posy -= m_fontData->ymin; - - if (buf) { - unsigned char colch[4]; - unsigned char *max, *pixel; - unsigned char c; - - for (x=0; x<4; x++) { - colch[x] = FTOCHAR(col[x]); - } - - max = buf + (4 * (w * h)); - while ((c = (unsigned char) *str++)) { - BMF_CharData & cd = m_fontData->chars[c]; - if (cd.data_offset != -1) { - for (y = 0; y < cd.height; y++) { - unsigned char* chrRow = &m_fontData->bitmap_data[cd.data_offset + ((cd.width+7)/8)*y]; - for (x = cd.xorig; x < cd.width; x++) { - pixel = buf + 4 * (((posy + y - cd.yorig) * w) + (posx + x)); - if ((pixel < max) && (pixel > buf)) { - int byteIdx = x/8; - int bitIdx = 7 - (x%8); - - if (chrRow[byteIdx]&(1<chars[c]; - if (cd.data_offset != -1) { - for (yi = 0; yi < cd.height; yi++) { - unsigned char* chrRow = &m_fontData->bitmap_data[cd.data_offset + ((cd.width+7)/8)*yi]; - for (xi = cd.xorig; xi < cd.width; xi++) { - pixel = fbuf + 4 * (((posy + yi - cd.yorig) * w) + (posx + xi)); - if ((pixel < max) && (pixel > fbuf)) { - int byteIdx = xi/8; - int bitIdx = 7 - (xi%8); - - if (chrRow[byteIdx]&(1< -#endif - -#include "BMF_FontData.h" - -#include "BMF_Settings.h" - -#if BMF_INCLUDE_HELV10 - -static unsigned char bitmap_data[]= { - 0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x80, - 0xa0,0xa0,0x50,0x50,0xf8,0x28,0x7c,0x28, - 0x28,0x20,0x70,0xa8,0x28,0x70,0xa0,0xa8, - 0x70,0x20,0x26,0x29,0x16,0x10,0x08,0x68, - 0x94,0x64,0x64,0x98,0x98,0xa4,0x60,0x50, - 0x50,0x20,0x80,0x40,0x40,0x20,0x40,0x40, - 0x80,0x80,0x80,0x80,0x40,0x40,0x20,0x80, - 0x40,0x40,0x20,0x20,0x20,0x20,0x40,0x40, - 0x80,0xa0,0x40,0xa0,0x20,0x20,0xf8,0x20, - 0x20,0x80,0x40,0x40,0xf8,0x80,0x80,0x80, - 0x40,0x40,0x40,0x40,0x20,0x20,0x70,0x88, - 0x88,0x88,0x88,0x88,0x88,0x70,0x40,0x40, - 0x40,0x40,0x40,0x40,0xc0,0x40,0xf8,0x80, - 0x40,0x30,0x08,0x08,0x88,0x70,0x70,0x88, - 0x08,0x08,0x30,0x08,0x88,0x70,0x10,0x10, - 0xf8,0x90,0x50,0x50,0x30,0x10,0x70,0x88, - 0x08,0x08,0xf0,0x80,0x80,0xf8,0x70,0x88, - 0x88,0xc8,0xb0,0x80,0x88,0x70,0x40,0x40, - 0x20,0x20,0x10,0x10,0x08,0xf8,0x70,0x88, - 0x88,0x88,0x70,0x88,0x88,0x70,0x70,0x88, - 0x08,0x68,0x98,0x88,0x88,0x70,0x80,0x00, - 0x00,0x00,0x00,0x80,0x80,0x40,0x40,0x00, - 0x00,0x00,0x00,0x40,0x20,0x40,0x80,0x40, - 0x20,0xf0,0x00,0xf0,0x80,0x40,0x20,0x40, - 0x80,0x40,0x00,0x40,0x40,0x20,0x10,0x90, - 0x60,0x3e,0x00,0x40,0x00,0x9b,0x00,0xa4, - 0x80,0xa4,0x80,0xa2,0x40,0x92,0x40,0x4d, - 0x40,0x20,0x80,0x1f,0x00,0x82,0x82,0x7c, - 0x44,0x28,0x28,0x10,0x10,0xf0,0x88,0x88, - 0x88,0xf0,0x88,0x88,0xf0,0x78,0x84,0x80, - 0x80,0x80,0x80,0x84,0x78,0xf0,0x88,0x84, - 0x84,0x84,0x84,0x88,0xf0,0xf8,0x80,0x80, - 0x80,0xf8,0x80,0x80,0xf8,0x80,0x80,0x80, - 0x80,0xf0,0x80,0x80,0xf8,0x74,0x8c,0x84, - 0x8c,0x80,0x80,0x84,0x78,0x84,0x84,0x84, - 0x84,0xfc,0x84,0x84,0x84,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x60,0x90,0x10, - 0x10,0x10,0x10,0x10,0x10,0x88,0x88,0x90, - 0x90,0xe0,0xa0,0x90,0x88,0xf0,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x92,0x92,0x92, - 0xaa,0xaa,0xc6,0xc6,0x82,0x8c,0x8c,0x94, - 0x94,0xa4,0xa4,0xc4,0xc4,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x78,0x80,0x80,0x80, - 0x80,0xf0,0x88,0x88,0xf0,0x02,0x7c,0x8c, - 0x94,0x84,0x84,0x84,0x84,0x78,0x88,0x88, - 0x88,0x88,0xf0,0x88,0x88,0xf0,0x70,0x88, - 0x88,0x08,0x70,0x80,0x88,0x70,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0xf8,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x10,0x28, - 0x28,0x44,0x44,0x44,0x82,0x82,0x22,0x00, - 0x22,0x00,0x22,0x00,0x55,0x00,0x49,0x00, - 0x49,0x00,0x88,0x80,0x88,0x80,0x88,0x88, - 0x50,0x50,0x20,0x50,0x88,0x88,0x10,0x10, - 0x10,0x28,0x28,0x44,0x44,0x82,0xf8,0x80, - 0x40,0x20,0x20,0x10,0x08,0xf8,0xc0,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xc0, - 0x20,0x20,0x40,0x40,0x40,0x40,0x80,0x80, - 0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0xc0,0x88,0x50,0x50,0x20,0x20,0xfc, - 0x80,0x80,0x40,0x68,0x90,0x90,0x70,0x10, - 0xe0,0xb0,0xc8,0x88,0x88,0xc8,0xb0,0x80, - 0x80,0x60,0x90,0x80,0x80,0x90,0x60,0x68, - 0x98,0x88,0x88,0x98,0x68,0x08,0x08,0x60, - 0x90,0x80,0xf0,0x90,0x60,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x40,0x30,0x70,0x08,0x68, - 0x98,0x88,0x88,0x98,0x68,0x88,0x88,0x88, - 0x88,0xc8,0xb0,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x00,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x90,0x90, - 0xa0,0xc0,0xa0,0x90,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x92,0x92, - 0x92,0x92,0x92,0xec,0x88,0x88,0x88,0x88, - 0xc8,0xb0,0x70,0x88,0x88,0x88,0x88,0x70, - 0x80,0x80,0xb0,0xc8,0x88,0x88,0xc8,0xb0, - 0x08,0x08,0x68,0x98,0x88,0x88,0x98,0x68, - 0x80,0x80,0x80,0x80,0xc0,0xa0,0x60,0x90, - 0x10,0x60,0x90,0x60,0x60,0x40,0x40,0x40, - 0x40,0xe0,0x40,0x40,0x70,0x90,0x90,0x90, - 0x90,0x90,0x20,0x20,0x50,0x50,0x88,0x88, - 0x28,0x28,0x54,0x54,0x92,0x92,0x88,0x88, - 0x50,0x20,0x50,0x88,0x80,0x40,0x40,0x60, - 0xa0,0xa0,0x90,0x90,0xf0,0x80,0x40,0x20, - 0x10,0xf0,0x20,0x40,0x40,0x40,0x40,0x80, - 0x40,0x40,0x40,0x20,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x40, - 0x40,0x40,0x40,0x20,0x40,0x40,0x40,0x80, - 0x98,0x64,0x80,0x80,0x80,0x80,0x80,0x80, - 0x00,0x80,0x40,0x70,0xa8,0xa0,0xa0,0xa8, - 0x70,0x10,0xb0,0x48,0x40,0x40,0xe0,0x40, - 0x48,0x30,0x90,0x60,0x90,0x90,0x60,0x90, - 0x20,0xf8,0x20,0xf8,0x50,0x50,0x88,0x88, - 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x80,0x70,0x88,0x18,0x70,0xc8,0x98, - 0x70,0xc0,0x88,0x70,0xa0,0x38,0x44,0x9a, - 0xa2,0x9a,0x44,0x38,0xe0,0x00,0xa0,0x20, - 0xe0,0x28,0x50,0xa0,0x50,0x28,0x08,0x08, - 0xf8,0xe0,0x38,0x44,0xaa,0xb2,0xba,0x44, - 0x38,0xe0,0x60,0x90,0x90,0x60,0xf8,0x00, - 0x20,0x20,0xf8,0x20,0x20,0xe0,0x40,0xa0, - 0x60,0xc0,0x20,0x40,0xe0,0x80,0x40,0x80, - 0x80,0xf0,0x90,0x90,0x90,0x90,0x90,0x28, - 0x28,0x28,0x28,0x28,0x68,0xe8,0xe8,0xe8, - 0x7c,0xc0,0xc0,0x40,0x40,0x40,0xc0,0x40, - 0xe0,0x00,0xe0,0xa0,0xe0,0xa0,0x50,0x28, - 0x50,0xa0,0x21,0x00,0x17,0x80,0x13,0x00, - 0x09,0x00,0x48,0x00,0x44,0x00,0xc4,0x00, - 0x42,0x00,0x27,0x12,0x15,0x0b,0x48,0x44, - 0xc4,0x42,0x21,0x00,0x17,0x80,0x13,0x00, - 0x09,0x00,0xc8,0x00,0x24,0x00,0x44,0x00, - 0xe2,0x00,0x60,0x90,0x80,0x40,0x20,0x20, - 0x00,0x20,0x82,0x82,0x7c,0x44,0x28,0x28, - 0x10,0x10,0x00,0x10,0x20,0x82,0x82,0x7c, - 0x44,0x28,0x28,0x10,0x10,0x00,0x10,0x08, - 0x82,0x82,0x7c,0x44,0x28,0x28,0x10,0x10, - 0x00,0x28,0x10,0x82,0x82,0x7c,0x44,0x28, - 0x28,0x10,0x10,0x00,0x28,0x14,0x82,0x82, - 0x7c,0x44,0x28,0x28,0x10,0x10,0x00,0x28, - 0x82,0x82,0x7c,0x44,0x28,0x28,0x10,0x10, - 0x10,0x28,0x10,0x8f,0x80,0x88,0x00,0x78, - 0x00,0x48,0x00,0x2f,0x80,0x28,0x00,0x18, - 0x00,0x1f,0x80,0x30,0x10,0x78,0x84,0x80, - 0x80,0x80,0x80,0x84,0x78,0xf8,0x80,0x80, - 0x80,0xf8,0x80,0x80,0xf8,0x00,0x20,0x40, - 0xf8,0x80,0x80,0x80,0xf8,0x80,0x80,0xf8, - 0x00,0x20,0x10,0xf8,0x80,0x80,0xf8,0x80, - 0x80,0x80,0xf8,0x00,0x50,0x20,0xf8,0x80, - 0x80,0x80,0xf8,0x80,0x80,0xf8,0x00,0x50, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0x40,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x00,0x80,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0xa0, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0x00,0xa0,0x78,0x44,0x42,0x42,0xf2, - 0x42,0x44,0x78,0x8c,0x8c,0x94,0x94,0xa4, - 0xa4,0xc4,0xc4,0x00,0x50,0x28,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x78,0x00,0x10, - 0x20,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x78,0x00,0x10,0x08,0x78,0x84,0x84,0x84, - 0x84,0x84,0x84,0x78,0x00,0x28,0x10,0x78, - 0x84,0x84,0x84,0x84,0x84,0x84,0x78,0x00, - 0x50,0x28,0x78,0x84,0x84,0x84,0x84,0x84, - 0x84,0x78,0x00,0x48,0x88,0x50,0x20,0x50, - 0x88,0x80,0x78,0xc4,0xa4,0xa4,0x94,0x94, - 0x8c,0x78,0x04,0x78,0x84,0x84,0x84,0x84, - 0x84,0x84,0x84,0x00,0x10,0x20,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x20, - 0x10,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x00,0x28,0x10,0x78,0x84,0x84,0x84, - 0x84,0x84,0x84,0x84,0x00,0x48,0x10,0x10, - 0x10,0x28,0x28,0x44,0x44,0x82,0x00,0x10, - 0x08,0x80,0x80,0xf0,0x88,0x88,0xf0,0x80, - 0x80,0xa0,0x90,0x90,0x90,0xa0,0x90,0x90, - 0x60,0x68,0x90,0x90,0x70,0x10,0xe0,0x00, - 0x20,0x40,0x68,0x90,0x90,0x70,0x10,0xe0, - 0x00,0x20,0x10,0x68,0x90,0x90,0x70,0x10, - 0xe0,0x00,0x50,0x20,0x68,0x90,0x90,0x70, - 0x10,0xe0,0x00,0xa0,0x50,0x68,0x90,0x90, - 0x70,0x10,0xe0,0x00,0x50,0x68,0x90,0x90, - 0x70,0x10,0xe0,0x20,0x50,0x20,0x6c,0x92, - 0x90,0x7e,0x12,0xec,0x60,0x20,0x60,0x90, - 0x80,0x80,0x90,0x60,0x60,0x90,0x80,0xf0, - 0x90,0x60,0x00,0x20,0x40,0x60,0x90,0x80, - 0xf0,0x90,0x60,0x00,0x40,0x20,0x60,0x90, - 0x80,0xf0,0x90,0x60,0x00,0x50,0x20,0x60, - 0x90,0x80,0xf0,0x90,0x60,0x00,0x50,0x40, - 0x40,0x40,0x40,0x40,0x40,0x00,0x40,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00, - 0xa0,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0xa0,0x70,0x88,0x88,0x88,0x88,0x78, - 0x90,0x60,0x50,0x90,0x90,0x90,0x90,0x90, - 0xe0,0x00,0xa0,0x50,0x70,0x88,0x88,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x88, - 0x88,0x88,0x70,0x00,0x20,0x10,0x70,0x88, - 0x88,0x88,0x88,0x70,0x00,0x50,0x20,0x70, - 0x88,0x88,0x88,0x88,0x70,0x00,0x50,0x28, - 0x70,0x88,0x88,0x88,0x88,0x70,0x00,0x50, - 0x20,0x00,0xf8,0x00,0x20,0x70,0x88,0xc8, - 0xa8,0x98,0x74,0x70,0x90,0x90,0x90,0x90, - 0x90,0x00,0x20,0x40,0x70,0x90,0x90,0x90, - 0x90,0x90,0x00,0x40,0x20,0x70,0x90,0x90, - 0x90,0x90,0x90,0x00,0x50,0x20,0x70,0x90, - 0x90,0x90,0x90,0x90,0x00,0x50,0x80,0x40, - 0x40,0x60,0xa0,0xa0,0x90,0x90,0x00,0x20, - 0x10,0x80,0x80,0xb0,0xc8,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x80,0x40,0x40,0x60,0xa0, - 0xa0,0x90,0x90,0x00,0x50, -}; - -BMF_FontData BMF_font_helv10 = { - -1, -2, - 10, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 3, -1}, - {1, 8, -1, 0, 3, 0}, - {3, 2, -1, -6, 4, 8}, - {6, 7, 0, 0, 6, 10}, - {5, 9, 0, 1, 6, 17}, - {8, 8, 0, 0, 9, 26}, - {6, 8, -1, 0, 8, 34}, - {2, 3, -1, -5, 3, 42}, - {3, 10, 0, 2, 4, 45}, - {3, 10, -1, 2, 4, 55}, - {3, 3, 0, -5, 4, 65}, - {5, 5, 0, -1, 6, 68}, - {2, 3, 0, 2, 3, 73}, - {5, 1, -1, -3, 7, 76}, - {1, 1, -1, 0, 3, 77}, - {3, 8, 0, 0, 3, 78}, - {5, 8, 0, 0, 6, 86}, - {2, 8, -1, 0, 6, 94}, - {5, 8, 0, 0, 6, 102}, - {5, 8, 0, 0, 6, 110}, - {5, 8, 0, 0, 6, 118}, - {5, 8, 0, 0, 6, 126}, - {5, 8, 0, 0, 6, 134}, - {5, 8, 0, 0, 6, 142}, - {5, 8, 0, 0, 6, 150}, - {5, 8, 0, 0, 6, 158}, - {1, 6, -1, 0, 3, 166}, - {2, 8, 0, 2, 3, 172}, - {3, 5, -1, -1, 6, 180}, - {4, 3, 0, -2, 5, 185}, - {3, 5, -1, -1, 6, 188}, - {4, 8, -1, 0, 6, 193}, - {10, 10, 0, 2, 11, 201}, - {7, 8, 0, 0, 7, 221}, - {5, 8, -1, 0, 7, 229}, - {6, 8, -1, 0, 8, 237}, - {6, 8, -1, 0, 8, 245}, - {5, 8, -1, 0, 7, 253}, - {5, 8, -1, 0, 6, 261}, - {6, 8, -1, 0, 8, 269}, - {6, 8, -1, 0, 8, 277}, - {1, 8, -1, 0, 3, 285}, - {4, 8, 0, 0, 5, 293}, - {5, 8, -1, 0, 7, 301}, - {4, 8, -1, 0, 6, 309}, - {7, 8, -1, 0, 9, 317}, - {6, 8, -1, 0, 8, 325}, - {6, 8, -1, 0, 8, 333}, - {5, 8, -1, 0, 7, 341}, - {7, 9, -1, 1, 8, 349}, - {5, 8, -1, 0, 7, 358}, - {5, 8, -1, 0, 7, 366}, - {5, 8, 0, 0, 5, 374}, - {6, 8, -1, 0, 8, 382}, - {7, 8, 0, 0, 7, 390}, - {9, 8, 0, 0, 9, 398}, - {5, 8, -1, 0, 7, 414}, - {7, 8, 0, 0, 7, 422}, - {5, 8, -1, 0, 7, 430}, - {2, 10, -1, 2, 3, 438}, - {3, 8, 0, 0, 3, 448}, - {2, 10, 0, 2, 3, 456}, - {5, 5, 0, -3, 6, 466}, - {6, 1, 0, 2, 6, 471}, - {2, 3, 0, -5, 3, 472}, - {5, 6, 0, 0, 5, 475}, - {5, 8, 0, 0, 6, 481}, - {4, 6, 0, 0, 5, 489}, - {5, 8, 0, 0, 6, 495}, - {4, 6, 0, 0, 5, 503}, - {4, 8, 0, 0, 4, 509}, - {5, 8, 0, 2, 6, 517}, - {5, 8, 0, 0, 6, 525}, - {1, 8, 0, 0, 2, 533}, - {1, 9, 0, 1, 2, 541}, - {4, 8, 0, 0, 5, 550}, - {1, 8, 0, 0, 2, 558}, - {7, 6, 0, 0, 8, 566}, - {5, 6, 0, 0, 6, 572}, - {5, 6, 0, 0, 6, 578}, - {5, 8, 0, 2, 6, 584}, - {5, 8, 0, 2, 6, 592}, - {3, 6, 0, 0, 4, 600}, - {4, 6, 0, 0, 5, 606}, - {3, 8, 0, 0, 4, 612}, - {4, 6, 0, 0, 5, 620}, - {5, 6, 0, 0, 6, 626}, - {7, 6, 0, 0, 8, 632}, - {5, 6, 0, 0, 6, 638}, - {4, 8, 0, 2, 5, 644}, - {4, 6, 0, 0, 5, 652}, - {3, 10, 0, 2, 3, 658}, - {1, 10, -1, 2, 3, 668}, - {3, 10, 0, 2, 3, 678}, - {6, 2, 0, -3, 7, 688}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 3, -1}, - {1, 8, -1, 2, 3, 690}, - {5, 8, 0, 1, 6, 698}, - {5, 8, 0, 0, 6, 706}, - {4, 6, 0, -1, 5, 714}, - {5, 8, 0, 0, 6, 720}, - {1, 10, -1, 2, 3, 728}, - {5, 10, 0, 2, 6, 738}, - {3, 1, 0, -7, 3, 748}, - {7, 7, -1, 0, 9, 749}, - {3, 5, 0, -3, 4, 756}, - {5, 5, 0, 0, 6, 761}, - {5, 3, -1, -2, 7, 766}, - {3, 1, 0, -3, 4, 769}, - {7, 7, -1, 0, 9, 770}, - {3, 1, 0, -7, 3, 777}, - {4, 4, 0, -3, 4, 778}, - {5, 7, 0, 0, 6, 782}, - {3, 4, 0, -3, 3, 789}, - {3, 4, 0, -3, 3, 793}, - {2, 2, 0, -6, 3, 797}, - {4, 8, 0, 2, 5, 799}, - {6, 10, 0, 2, 6, 807}, - {2, 1, 0, -3, 3, 817}, - {2, 2, 0, 2, 3, 818}, - {2, 4, 0, -3, 3, 820}, - {3, 5, 0, -3, 4, 824}, - {5, 5, 0, 0, 6, 829}, - {9, 8, 0, 0, 9, 834}, - {8, 8, 0, 0, 9, 850}, - {9, 8, 0, 0, 9, 858}, - {4, 8, -1, 2, 6, 874}, - {7, 11, 0, 0, 7, 882}, - {7, 11, 0, 0, 7, 893}, - {7, 11, 0, 0, 7, 904}, - {7, 11, 0, 0, 7, 915}, - {7, 10, 0, 0, 7, 926}, - {7, 11, 0, 0, 7, 936}, - {9, 8, 0, 0, 10, 947}, - {6, 10, -1, 2, 8, 963}, - {5, 11, -1, 0, 7, 973}, - {5, 11, -1, 0, 7, 984}, - {5, 11, -1, 0, 7, 995}, - {5, 10, -1, 0, 7, 1006}, - {2, 11, 0, 0, 3, 1016}, - {2, 11, -1, 0, 3, 1027}, - {3, 11, 0, 0, 3, 1038}, - {3, 10, 0, 0, 3, 1049}, - {7, 8, 0, 0, 8, 1059}, - {6, 11, -1, 0, 8, 1067}, - {6, 11, -1, 0, 8, 1078}, - {6, 11, -1, 0, 8, 1089}, - {6, 11, -1, 0, 8, 1100}, - {6, 11, -1, 0, 8, 1111}, - {6, 10, -1, 0, 8, 1122}, - {5, 5, 0, -1, 6, 1132}, - {6, 10, -1, 1, 8, 1137}, - {6, 11, -1, 0, 8, 1147}, - {6, 11, -1, 0, 8, 1158}, - {6, 11, -1, 0, 8, 1169}, - {6, 10, -1, 0, 8, 1180}, - {7, 11, 0, 0, 7, 1190}, - {5, 8, -1, 0, 7, 1201}, - {4, 8, 0, 0, 5, 1209}, - {5, 9, 0, 0, 5, 1217}, - {5, 9, 0, 0, 5, 1226}, - {5, 9, 0, 0, 5, 1235}, - {5, 9, 0, 0, 5, 1244}, - {5, 8, 0, 0, 5, 1253}, - {5, 9, 0, 0, 5, 1261}, - {7, 6, 0, 0, 8, 1270}, - {4, 8, 0, 2, 5, 1276}, - {4, 9, 0, 0, 5, 1284}, - {4, 9, 0, 0, 5, 1293}, - {4, 9, 0, 0, 5, 1302}, - {4, 8, 0, 0, 5, 1311}, - {2, 9, 1, 0, 2, 1319}, - {2, 9, 0, 0, 2, 1328}, - {3, 9, 1, 0, 2, 1337}, - {3, 8, 0, 0, 2, 1346}, - {5, 9, 0, 0, 6, 1354}, - {4, 9, 0, 0, 5, 1363}, - {5, 9, 0, 0, 6, 1372}, - {5, 9, 0, 0, 6, 1381}, - {5, 9, 0, 0, 6, 1390}, - {5, 9, 0, 0, 6, 1399}, - {5, 8, 0, 0, 6, 1408}, - {5, 5, 0, -1, 6, 1416}, - {6, 6, 0, 0, 6, 1421}, - {4, 9, 0, 0, 5, 1427}, - {4, 9, 0, 0, 5, 1436}, - {4, 9, 0, 0, 5, 1445}, - {4, 8, 0, 0, 5, 1454}, - {4, 11, 0, 2, 5, 1462}, - {5, 10, 0, 2, 6, 1473}, - {4, 10, 0, 2, 5, 1483}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_helv12.cpp b/intern/bmfont/intern/BMF_font_helv12.cpp deleted file mode 100644 index 29b08b659ee..00000000000 --- a/intern/bmfont/intern/BMF_font_helv12.cpp +++ /dev/null @@ -1,525 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_HELV12 - -static unsigned char bitmap_data[]= { - 0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xa0,0xa0,0xa0,0x50,0x50,0x50,0xfc, - 0x28,0xfc,0x28,0x28,0x20,0x70,0xa8,0xa8, - 0x28,0x70,0xa0,0xa8,0x70,0x20,0x23,0x00, - 0x14,0x80,0x14,0x80,0x13,0x00,0x08,0x00, - 0x68,0x00,0x94,0x00,0x94,0x00,0x62,0x00, - 0x72,0x8c,0x84,0x8a,0x50,0x30,0x48,0x48, - 0x30,0x80,0x40,0xc0,0x20,0x40,0x40,0x80, - 0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x20, - 0x80,0x40,0x40,0x20,0x20,0x20,0x20,0x20, - 0x20,0x40,0x40,0x80,0xa0,0x40,0xa0,0x20, - 0x20,0xf8,0x20,0x20,0x80,0x40,0x40,0xf8, - 0x80,0x80,0x80,0x40,0x40,0x40,0x20,0x20, - 0x10,0x10,0x70,0x88,0x88,0x88,0x88,0x88, - 0x88,0x88,0x70,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0xe0,0x20,0xf8,0x80,0x80,0x40, - 0x20,0x10,0x08,0x88,0x70,0x70,0x88,0x88, - 0x08,0x08,0x30,0x08,0x88,0x70,0x08,0x08, - 0xfc,0x88,0x48,0x28,0x28,0x18,0x08,0x70, - 0x88,0x88,0x08,0x08,0xf0,0x80,0x80,0xf8, - 0x70,0x88,0x88,0x88,0xc8,0xb0,0x80,0x88, - 0x70,0x40,0x40,0x20,0x20,0x20,0x10,0x10, - 0x08,0xf8,0x70,0x88,0x88,0x88,0x88,0x70, - 0x88,0x88,0x70,0x70,0x88,0x08,0x08,0x78, - 0x88,0x88,0x88,0x70,0x80,0x00,0x00,0x00, - 0x00,0x80,0x80,0x40,0x40,0x00,0x00,0x00, - 0x00,0x40,0x0c,0x30,0xc0,0x30,0x0c,0xf8, - 0x00,0xf8,0xc0,0x30,0x0c,0x30,0xc0,0x20, - 0x00,0x20,0x20,0x10,0x10,0x88,0x88,0x70, - 0x3e,0x00,0x40,0x00,0x9b,0x00,0xa6,0x80, - 0xa2,0x40,0xa2,0x40,0x92,0x40,0x4d,0x40, - 0x60,0x80,0x1f,0x00,0x82,0x82,0x82,0x7c, - 0x44,0x44,0x28,0x28,0x10,0xf8,0x84,0x84, - 0x84,0xf8,0x84,0x84,0x84,0xf8,0x3c,0x42, - 0x80,0x80,0x80,0x80,0x80,0x42,0x3c,0xf8, - 0x84,0x82,0x82,0x82,0x82,0x82,0x84,0xf8, - 0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80, - 0xfc,0x80,0x80,0x80,0x80,0xf8,0x80,0x80, - 0x80,0xfc,0x3a,0x46,0x82,0x82,0x8e,0x80, - 0x80,0x42,0x3c,0x82,0x82,0x82,0x82,0xfe, - 0x82,0x82,0x82,0x82,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x70,0x88,0x88, - 0x08,0x08,0x08,0x08,0x08,0x08,0x82,0x84, - 0x88,0x90,0xe0,0xa0,0x90,0x88,0x84,0xf8, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x88,0x80,0x88,0x80,0x94,0x80,0x94,0x80, - 0xa2,0x80,0xa2,0x80,0xc1,0x80,0xc1,0x80, - 0x80,0x80,0x82,0x86,0x8a,0x8a,0x92,0xa2, - 0xa2,0xc2,0x82,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x80,0x80,0x80,0x80, - 0xf8,0x84,0x84,0x84,0xf8,0x3d,0x42,0x85, - 0x89,0x81,0x81,0x81,0x42,0x3c,0x84,0x84, - 0x84,0x88,0xf8,0x84,0x84,0x84,0xf8,0x78, - 0x84,0x84,0x04,0x18,0x60,0x80,0x84,0x78, - 0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, - 0xfe,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x84,0x10,0x10,0x28,0x28,0x44,0x44, - 0x44,0x82,0x82,0x22,0x00,0x22,0x00,0x22, - 0x00,0x55,0x00,0x55,0x00,0x49,0x00,0x88, - 0x80,0x88,0x80,0x88,0x80,0x82,0x44,0x44, - 0x28,0x10,0x28,0x44,0x44,0x82,0x10,0x10, - 0x10,0x10,0x28,0x44,0x44,0x82,0x82,0xfe, - 0x80,0x40,0x20,0x10,0x08,0x04,0x02,0xfe, - 0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xc0,0x10,0x10,0x20,0x20, - 0x20,0x40,0x40,0x80,0x80,0xc0,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0xc0,0x88,0x50,0x20,0xfe,0xc0,0x80,0x40, - 0x74,0x88,0x88,0x78,0x08,0x88,0x70,0xb0, - 0xc8,0x88,0x88,0x88,0xc8,0xb0,0x80,0x80, - 0x70,0x88,0x80,0x80,0x80,0x88,0x70,0x68, - 0x98,0x88,0x88,0x88,0x98,0x68,0x08,0x08, - 0x70,0x88,0x80,0xf8,0x88,0x88,0x70,0x40, - 0x40,0x40,0x40,0x40,0x40,0xe0,0x40,0x30, - 0x70,0x88,0x08,0x68,0x98,0x88,0x88,0x88, - 0x98,0x68,0x88,0x88,0x88,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x00,0x80,0x80,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x40, - 0x88,0x90,0xa0,0xc0,0xc0,0xa0,0x90,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x92,0x92,0x92,0x92,0x92,0xda, - 0xa4,0x88,0x88,0x88,0x88,0x88,0xc8,0xb0, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x80, - 0x80,0x80,0xb0,0xc8,0x88,0x88,0x88,0xc8, - 0xb0,0x08,0x08,0x08,0x68,0x98,0x88,0x88, - 0x88,0x98,0x68,0x80,0x80,0x80,0x80,0x80, - 0xc0,0xa0,0x60,0x90,0x10,0x60,0x80,0x90, - 0x60,0x60,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x40,0x40,0x68,0x98,0x88,0x88,0x88,0x88, - 0x88,0x20,0x20,0x50,0x50,0x88,0x88,0x88, - 0x22,0x00,0x22,0x00,0x55,0x00,0x49,0x00, - 0x49,0x00,0x88,0x80,0x88,0x80,0x84,0x84, - 0x48,0x30,0x30,0x48,0x84,0x80,0x40,0x20, - 0x20,0x50,0x50,0x90,0x88,0x88,0x88,0xf0, - 0x80,0x40,0x40,0x20,0x10,0xf0,0x30,0x40, - 0x40,0x40,0x40,0x40,0x80,0x40,0x40,0x40, - 0x40,0x30,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xc0,0x20, - 0x20,0x20,0x20,0x20,0x10,0x20,0x20,0x20, - 0x20,0xc0,0x98,0x64,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x40,0x70, - 0xc8,0xa0,0xa0,0xa0,0xa8,0x70,0x10,0xb0, - 0x48,0x20,0x20,0xf0,0x40,0x40,0x48,0x30, - 0x84,0x78,0x48,0x48,0x78,0x84,0x20,0x20, - 0xf8,0x20,0xf8,0x20,0x50,0x88,0x88,0x80, - 0x80,0x80,0x80,0x00,0x00,0x00,0x80,0x80, - 0x80,0x80,0x70,0x88,0x08,0x30,0x48,0x88, - 0x88,0x90,0x60,0x80,0x88,0x70,0xa0,0x3e, - 0x00,0x41,0x00,0x9c,0x80,0xa2,0x80,0xa0, - 0x80,0xa2,0x80,0x9c,0x80,0x41,0x00,0x3e, - 0x00,0xe0,0x00,0xa0,0x20,0xe0,0x28,0x50, - 0xa0,0x50,0x28,0x04,0x04,0x04,0xfc,0xf0, - 0x3e,0x00,0x41,0x00,0x94,0x80,0x94,0x80, - 0x98,0x80,0x94,0x80,0x9c,0x80,0x41,0x00, - 0x3e,0x00,0xf0,0x60,0x90,0x90,0x60,0xf8, - 0x00,0x20,0x20,0xf8,0x20,0x20,0xf0,0x40, - 0x20,0x90,0x60,0xc0,0x20,0x40,0x20,0xe0, - 0x80,0x40,0x80,0x80,0x80,0xe8,0x98,0x88, - 0x88,0x88,0x88,0x88,0x28,0x28,0x28,0x28, - 0x28,0x28,0x68,0xe8,0xe8,0xe8,0x68,0x3c, - 0x80,0xc0,0x20,0x20,0x40,0x40,0x40,0x40, - 0xc0,0x40,0xe0,0x00,0xe0,0xa0,0xe0,0xa0, - 0x50,0x28,0x50,0xa0,0x41,0x00,0x27,0x80, - 0x15,0x00,0x13,0x00,0x49,0x00,0x44,0x00, - 0x44,0x00,0xc2,0x00,0x41,0x00,0x47,0x80, - 0x22,0x00,0x11,0x00,0x14,0x80,0x4b,0x00, - 0x48,0x00,0x44,0x00,0xc2,0x00,0x41,0x00, - 0x21,0x00,0x17,0x80,0x15,0x00,0x0b,0x00, - 0xc9,0x00,0x24,0x00,0x44,0x00,0x22,0x00, - 0xe1,0x00,0x70,0x88,0x88,0x40,0x40,0x20, - 0x20,0x00,0x20,0x82,0x82,0x82,0x7c,0x44, - 0x44,0x28,0x10,0x10,0x00,0x10,0x20,0x82, - 0x82,0x82,0x7c,0x44,0x44,0x28,0x10,0x10, - 0x00,0x10,0x08,0x82,0x82,0x82,0x7c,0x44, - 0x44,0x28,0x10,0x10,0x00,0x28,0x10,0x82, - 0x82,0x82,0x7c,0x44,0x44,0x28,0x10,0x10, - 0x00,0x28,0x14,0x82,0x82,0x82,0x7c,0x44, - 0x44,0x28,0x10,0x10,0x00,0x28,0x82,0x82, - 0x82,0x7c,0x44,0x44,0x28,0x10,0x10,0x10, - 0x28,0x10,0x8f,0x80,0x88,0x00,0x88,0x00, - 0x78,0x00,0x4f,0x80,0x48,0x00,0x28,0x00, - 0x28,0x00,0x1f,0x80,0x30,0x08,0x08,0x3c, - 0x42,0x80,0x80,0x80,0x80,0x80,0x42,0x3c, - 0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80, - 0xfc,0x00,0x10,0x20,0xfc,0x80,0x80,0x80, - 0xfc,0x80,0x80,0x80,0xfc,0x00,0x10,0x08, - 0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80, - 0xfc,0x00,0x28,0x10,0xfc,0x80,0x80,0x80, - 0xfc,0x80,0x80,0x80,0xfc,0x00,0x28,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0x40,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0xa0,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x00,0xa0,0x7c,0x42, - 0x41,0x41,0xf1,0x41,0x41,0x42,0x7c,0x82, - 0x86,0x8a,0x8a,0x92,0xa2,0xa2,0xc2,0x82, - 0x00,0x28,0x14,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x00,0x08,0x10,0x3c, - 0x42,0x81,0x81,0x81,0x81,0x81,0x42,0x3c, - 0x00,0x08,0x04,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x00,0x14,0x08,0x3c, - 0x42,0x81,0x81,0x81,0x81,0x81,0x42,0x3c, - 0x00,0x28,0x14,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x00,0x24,0x88,0x50, - 0x20,0x50,0x88,0x80,0x00,0x5e,0x00,0x21, - 0x00,0x50,0x80,0x48,0x80,0x44,0x80,0x44, - 0x80,0x42,0x80,0x21,0x00,0x1e,0x80,0x00, - 0x40,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x84,0x00,0x10,0x20,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x10, - 0x08,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x84,0x00,0x28,0x10,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x48, - 0x10,0x10,0x10,0x10,0x28,0x44,0x44,0x82, - 0x82,0x00,0x10,0x08,0x80,0x80,0xf8,0x84, - 0x84,0x84,0xf8,0x80,0x80,0xb0,0x88,0x88, - 0x88,0xb0,0x88,0x88,0x88,0x70,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0x00,0x10,0x20, - 0x74,0x88,0x88,0x78,0x08,0x88,0x70,0x00, - 0x20,0x10,0x74,0x88,0x88,0x78,0x08,0x88, - 0x70,0x00,0x50,0x20,0x74,0x88,0x88,0x78, - 0x08,0x88,0x70,0x00,0x50,0x28,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0x00,0x50,0x74, - 0x88,0x88,0x78,0x08,0x88,0x70,0x30,0x48, - 0x30,0x77,0x00,0x88,0x80,0x88,0x00,0x7f, - 0x80,0x08,0x80,0x88,0x80,0x77,0x00,0x60, - 0x10,0x20,0x70,0x88,0x80,0x80,0x80,0x88, - 0x70,0x70,0x88,0x80,0xf8,0x88,0x88,0x70, - 0x00,0x20,0x40,0x70,0x88,0x80,0xf8,0x88, - 0x88,0x70,0x00,0x20,0x10,0x70,0x88,0x80, - 0xf8,0x88,0x88,0x70,0x00,0x50,0x20,0x70, - 0x88,0x80,0xf8,0x88,0x88,0x70,0x00,0x50, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00, - 0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x00,0x80,0x40,0x40,0x40,0x40,0x40, - 0x40,0x40,0x40,0x00,0xa0,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x00,0xa0,0x70, - 0x88,0x88,0x88,0x88,0x78,0x08,0x50,0x30, - 0x68,0x88,0x88,0x88,0x88,0x88,0xc8,0xb0, - 0x00,0x50,0x28,0x70,0x88,0x88,0x88,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x88, - 0x88,0x88,0x88,0x70,0x00,0x20,0x10,0x70, - 0x88,0x88,0x88,0x88,0x88,0x70,0x00,0x50, - 0x20,0x70,0x88,0x88,0x88,0x88,0x88,0x70, - 0x00,0x50,0x28,0x70,0x88,0x88,0x88,0x88, - 0x88,0x70,0x00,0x50,0x20,0x00,0xf8,0x00, - 0x20,0xb8,0x44,0x64,0x54,0x4c,0x44,0x3a, - 0x68,0x98,0x88,0x88,0x88,0x88,0x88,0x00, - 0x20,0x40,0x68,0x98,0x88,0x88,0x88,0x88, - 0x88,0x00,0x20,0x10,0x68,0x98,0x88,0x88, - 0x88,0x88,0x88,0x00,0x50,0x20,0x68,0x98, - 0x88,0x88,0x88,0x88,0x88,0x00,0x50,0x80, - 0x40,0x20,0x20,0x50,0x50,0x90,0x88,0x88, - 0x88,0x00,0x20,0x10,0x80,0x80,0x80,0xb0, - 0xc8,0x88,0x88,0x88,0xc8,0xb0,0x80,0x80, - 0xc0,0x20,0x20,0x20,0x30,0x50,0x50,0x48, - 0x88,0x88,0x00,0x50, -}; - -BMF_FontData BMF_font_helv12 = { - 0, -3, - 11, 12, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 16, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 4, -1}, - {1, 9, -1, 0, 3, 0}, - {3, 3, -1, -6, 5, 9}, - {6, 8, 0, 0, 7, 12}, - {5, 10, -1, 1, 7, 20}, - {9, 9, -1, 0, 11, 30}, - {7, 9, -1, 0, 9, 48}, - {2, 3, -1, -6, 3, 57}, - {3, 12, -1, 3, 4, 60}, - {3, 12, 0, 3, 4, 72}, - {3, 3, -1, -6, 5, 84}, - {5, 5, -1, -1, 7, 87}, - {2, 3, -1, 2, 4, 92}, - {5, 1, -1, -3, 8, 95}, - {1, 1, -1, 0, 3, 96}, - {4, 9, 0, 0, 4, 97}, - {5, 9, -1, 0, 7, 106}, - {3, 9, -1, 0, 7, 115}, - {5, 9, -1, 0, 7, 124}, - {5, 9, -1, 0, 7, 133}, - {6, 9, 0, 0, 7, 142}, - {5, 9, -1, 0, 7, 151}, - {5, 9, -1, 0, 7, 160}, - {5, 9, -1, 0, 7, 169}, - {5, 9, -1, 0, 7, 178}, - {5, 9, -1, 0, 7, 187}, - {1, 6, -1, 0, 3, 196}, - {2, 8, 0, 2, 3, 202}, - {6, 5, 0, -1, 7, 210}, - {5, 3, -1, -2, 7, 215}, - {6, 5, -1, -1, 7, 218}, - {5, 9, -1, 0, 7, 223}, - {10, 10, -1, 1, 12, 232}, - {7, 9, -1, 0, 9, 252}, - {6, 9, -1, 0, 8, 261}, - {7, 9, -1, 0, 9, 270}, - {7, 9, -1, 0, 9, 279}, - {6, 9, -1, 0, 8, 288}, - {6, 9, -1, 0, 8, 297}, - {7, 9, -1, 0, 9, 306}, - {7, 9, -1, 0, 9, 315}, - {1, 9, -1, 0, 3, 324}, - {5, 9, -1, 0, 7, 333}, - {7, 9, -1, 0, 8, 342}, - {5, 9, -1, 0, 7, 351}, - {9, 9, -1, 0, 11, 360}, - {7, 9, -1, 0, 9, 378}, - {8, 9, -1, 0, 10, 387}, - {6, 9, -1, 0, 8, 396}, - {8, 9, -1, 0, 10, 405}, - {6, 9, -1, 0, 8, 414}, - {6, 9, -1, 0, 8, 423}, - {7, 9, 0, 0, 7, 432}, - {6, 9, -1, 0, 8, 441}, - {7, 9, -1, 0, 9, 450}, - {9, 9, -1, 0, 11, 459}, - {7, 9, -1, 0, 9, 477}, - {7, 9, -1, 0, 9, 486}, - {7, 9, -1, 0, 9, 495}, - {2, 12, -1, 3, 3, 504}, - {4, 9, 0, 0, 4, 516}, - {2, 12, 0, 3, 3, 525}, - {5, 3, 0, -5, 6, 537}, - {7, 1, 0, 2, 7, 540}, - {2, 3, 0, -6, 3, 541}, - {6, 7, -1, 0, 7, 544}, - {5, 9, -1, 0, 7, 551}, - {5, 7, -1, 0, 7, 560}, - {5, 9, -1, 0, 7, 567}, - {5, 7, -1, 0, 7, 576}, - {4, 9, 0, 0, 3, 583}, - {5, 10, -1, 3, 7, 592}, - {5, 9, -1, 0, 7, 602}, - {1, 9, -1, 0, 3, 611}, - {2, 12, 0, 3, 3, 620}, - {5, 9, -1, 0, 6, 632}, - {1, 9, -1, 0, 3, 641}, - {7, 7, -1, 0, 9, 650}, - {5, 7, -1, 0, 7, 657}, - {5, 7, -1, 0, 7, 664}, - {5, 10, -1, 3, 7, 671}, - {5, 10, -1, 3, 7, 681}, - {3, 7, -1, 0, 4, 691}, - {4, 7, -1, 0, 6, 698}, - {3, 9, 0, 0, 3, 705}, - {5, 7, -1, 0, 7, 714}, - {5, 7, -1, 0, 7, 721}, - {9, 7, 0, 0, 9, 728}, - {6, 7, 0, 0, 6, 742}, - {5, 10, -1, 3, 7, 749}, - {4, 7, -1, 0, 6, 759}, - {4, 12, 0, 3, 4, 766}, - {1, 12, -1, 3, 3, 778}, - {4, 12, 0, 3, 4, 790}, - {6, 2, 0, -3, 7, 802}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 4, -1}, - {1, 10, -1, 3, 3, 804}, - {5, 9, -1, 1, 7, 814}, - {5, 9, -1, 0, 7, 823}, - {6, 6, 0, -1, 7, 832}, - {5, 9, -1, 0, 7, 838}, - {1, 11, -1, 2, 3, 847}, - {5, 12, 0, 3, 6, 858}, - {3, 1, 0, -8, 3, 870}, - {9, 9, -1, 0, 11, 871}, - {3, 5, -1, -4, 5, 889}, - {5, 5, -1, -1, 7, 894}, - {6, 4, -1, -2, 8, 899}, - {4, 1, 0, -3, 5, 903}, - {9, 9, -1, 0, 11, 904}, - {4, 1, 0, -8, 4, 922}, - {4, 4, 0, -4, 5, 923}, - {5, 7, -1, 0, 7, 927}, - {4, 5, 0, -3, 4, 934}, - {3, 5, 0, -3, 4, 939}, - {2, 2, 0, -8, 2, 944}, - {5, 10, -1, 3, 7, 946}, - {6, 12, 0, 3, 7, 956}, - {1, 1, -1, -3, 3, 968}, - {3, 4, 0, 3, 3, 969}, - {2, 5, -1, -3, 4, 973}, - {3, 5, -1, -4, 5, 978}, - {5, 5, -1, -1, 7, 983}, - {9, 9, 0, 0, 10, 988}, - {9, 9, 0, 0, 10, 1006}, - {9, 9, 0, 0, 10, 1024}, - {5, 9, -1, 3, 7, 1042}, - {7, 12, -1, 0, 9, 1051}, - {7, 12, -1, 0, 9, 1063}, - {7, 12, -1, 0, 9, 1075}, - {7, 12, -1, 0, 9, 1087}, - {7, 11, -1, 0, 9, 1099}, - {7, 12, -1, 0, 9, 1110}, - {9, 9, -1, 0, 11, 1122}, - {7, 12, -1, 3, 9, 1140}, - {6, 12, -1, 0, 8, 1152}, - {6, 12, -1, 0, 8, 1164}, - {6, 12, -1, 0, 8, 1176}, - {6, 11, -1, 0, 8, 1188}, - {2, 12, 0, 0, 3, 1199}, - {2, 12, -1, 0, 3, 1211}, - {3, 12, 0, 0, 3, 1223}, - {3, 11, 0, 0, 3, 1235}, - {8, 9, 0, 0, 9, 1246}, - {7, 12, -1, 0, 9, 1255}, - {8, 12, -1, 0, 10, 1267}, - {8, 12, -1, 0, 10, 1279}, - {8, 12, -1, 0, 10, 1291}, - {8, 12, -1, 0, 10, 1303}, - {8, 11, -1, 0, 10, 1315}, - {5, 5, -1, -1, 7, 1326}, - {10, 11, 0, 1, 10, 1331}, - {6, 12, -1, 0, 8, 1353}, - {6, 12, -1, 0, 8, 1365}, - {6, 12, -1, 0, 8, 1377}, - {6, 11, -1, 0, 8, 1389}, - {7, 12, -1, 0, 9, 1400}, - {6, 9, -1, 0, 8, 1412}, - {5, 9, -1, 0, 7, 1421}, - {6, 10, -1, 0, 7, 1430}, - {6, 10, -1, 0, 7, 1440}, - {6, 10, -1, 0, 7, 1450}, - {6, 10, -1, 0, 7, 1460}, - {6, 9, -1, 0, 7, 1470}, - {6, 10, -1, 0, 7, 1479}, - {9, 7, -1, 0, 11, 1489}, - {5, 10, -1, 3, 7, 1503}, - {5, 10, -1, 0, 7, 1513}, - {5, 10, -1, 0, 7, 1523}, - {5, 10, -1, 0, 7, 1533}, - {5, 9, -1, 0, 7, 1543}, - {2, 10, 0, 0, 3, 1552}, - {2, 10, -1, 0, 3, 1562}, - {3, 10, 0, 0, 3, 1572}, - {3, 9, 0, 0, 3, 1582}, - {5, 10, -1, 0, 7, 1591}, - {5, 10, -1, 0, 7, 1601}, - {5, 10, -1, 0, 7, 1611}, - {5, 10, -1, 0, 7, 1621}, - {5, 10, -1, 0, 7, 1631}, - {5, 10, -1, 0, 7, 1641}, - {5, 9, -1, 0, 7, 1651}, - {5, 5, -1, -1, 7, 1660}, - {7, 7, 0, 0, 7, 1665}, - {5, 10, -1, 0, 7, 1672}, - {5, 10, -1, 0, 7, 1682}, - {5, 10, -1, 0, 7, 1692}, - {5, 9, -1, 0, 7, 1702}, - {5, 13, -1, 3, 7, 1711}, - {5, 12, -1, 3, 7, 1724}, - {5, 12, -1, 3, 7, 1736}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_helvb10.cpp b/intern/bmfont/intern/BMF_font_helvb10.cpp deleted file mode 100644 index cdd3656c5c0..00000000000 --- a/intern/bmfont/intern/BMF_font_helvb10.cpp +++ /dev/null @@ -1,492 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_HELVB10 - -static unsigned char bitmap_data[]= { - 0x00,0xc0,0x00,0x80,0x80,0xc0,0xc0,0xc0, - 0xc0,0xa0,0xa0,0xa0,0x50,0x50,0xfc,0x28, - 0x7e,0x28,0x28,0x20,0x70,0xa8,0x28,0x38, - 0x70,0xe0,0xa8,0x70,0x20,0x8c,0x56,0x2c, - 0x10,0x10,0x68,0xb4,0x62,0x76,0xdc,0xcc, - 0xde,0x70,0xd8,0xd8,0x70,0x80,0x40,0xc0, - 0xc0,0x20,0x60,0x40,0xc0,0xc0,0xc0,0xc0, - 0x40,0x60,0x20,0x80,0xc0,0x40,0x60,0x60, - 0x60,0x60,0x40,0xc0,0x80,0xa0,0x40,0xa0, - 0x30,0x30,0xfc,0x30,0x30,0x80,0x40,0xc0, - 0xc0,0xf8,0xc0,0xc0,0x80,0x80,0x40,0x40, - 0x20,0x20,0x10,0x10,0x70,0xd8,0xd8,0xd8, - 0xd8,0xd8,0xd8,0x70,0x60,0x60,0x60,0x60, - 0x60,0x60,0xe0,0x60,0xf8,0xc0,0x60,0x30, - 0x18,0x18,0xd8,0x70,0x70,0xd8,0x18,0x18, - 0x30,0x18,0xd8,0x70,0x18,0x18,0xfc,0x98, - 0x58,0x38,0x18,0x08,0x70,0xd8,0x98,0x18, - 0xf0,0xc0,0xc0,0xf8,0x70,0xd8,0xd8,0xd8, - 0xf0,0xc0,0xd8,0x70,0x60,0x60,0x60,0x30, - 0x30,0x18,0x18,0xf8,0x70,0xd8,0xd8,0xd8, - 0x70,0xd8,0xd8,0x70,0x70,0xd8,0x18,0x78, - 0xd8,0xd8,0xd8,0x70,0xc0,0xc0,0x00,0x00, - 0xc0,0xc0,0x80,0x40,0xc0,0xc0,0x00,0x00, - 0xc0,0xc0,0x30,0x60,0xc0,0x60,0x30,0xf8, - 0x00,0xf8,0xc0,0x60,0x30,0x60,0xc0,0x60, - 0x00,0x60,0x60,0x30,0x18,0xd8,0x70,0x3e, - 0x00,0x40,0x00,0x9b,0x00,0xa4,0x80,0xa2, - 0x40,0x92,0x40,0x4d,0x40,0x60,0x80,0x1f, - 0x00,0xc6,0xc6,0xfe,0x6c,0x6c,0x6c,0x38, - 0x38,0xf8,0xcc,0xcc,0xcc,0xf8,0xcc,0xcc, - 0xf8,0x3c,0x66,0xc2,0xc0,0xc0,0xc2,0x66, - 0x3c,0xf0,0xd8,0xcc,0xcc,0xcc,0xcc,0xd8, - 0xf0,0xf8,0xc0,0xc0,0xc0,0xf8,0xc0,0xc0, - 0xf8,0xc0,0xc0,0xc0,0xc0,0xf0,0xc0,0xc0, - 0xf8,0x3a,0x66,0xc6,0xce,0xc0,0xc2,0x66, - 0x3c,0xcc,0xcc,0xcc,0xcc,0xfc,0xcc,0xcc, - 0xcc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0x70,0xd8,0x18,0x18,0x18,0x18,0x18, - 0x18,0xc6,0xcc,0xd8,0xf0,0xe0,0xf0,0xd8, - 0xcc,0xf8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc9,0x80,0xc9,0x80,0xdd,0x80,0xd5, - 0x80,0xf7,0x80,0xe3,0x80,0xe3,0x80,0xc1, - 0x80,0xc6,0xce,0xce,0xd6,0xd6,0xe6,0xe6, - 0xc6,0x38,0x6c,0xc6,0xc6,0xc6,0xc6,0x6c, - 0x38,0xc0,0xc0,0xc0,0xf8,0xcc,0xcc,0xcc, - 0xf8,0x02,0x3c,0x6c,0xd6,0xc6,0xc6,0xc6, - 0x6c,0x38,0xcc,0xcc,0xcc,0xf8,0xcc,0xcc, - 0xcc,0xf8,0x78,0xcc,0x8c,0x1c,0x78,0xe0, - 0xcc,0x78,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0xfc,0x78,0xcc,0xcc,0xcc,0xcc,0xcc, - 0xcc,0xcc,0x10,0x38,0x38,0x6c,0x6c,0x6c, - 0xc6,0xc6,0x33,0x00,0x33,0x00,0x7f,0x80, - 0x6d,0x80,0x6d,0x80,0xcc,0xc0,0xcc,0xc0, - 0xcc,0xc0,0xc6,0xc6,0x6c,0x38,0x38,0x6c, - 0xc6,0xc6,0x18,0x18,0x18,0x3c,0x66,0x66, - 0xc3,0xc3,0xfc,0xc0,0x60,0x70,0x30,0x18, - 0x0c,0xfc,0xe0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xe0,0x10,0x10,0x20,0x20, - 0x40,0x40,0x80,0x80,0xe0,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0xe0,0x90,0x90, - 0xf0,0x60,0xfc,0xc0,0xc0,0x80,0x40,0x6c, - 0xd8,0xd8,0x78,0x98,0x70,0xf0,0xd8,0xd8, - 0xd8,0xd8,0xf0,0xc0,0xc0,0x70,0xd0,0xc0, - 0xc0,0xd0,0x70,0x78,0xd8,0xd8,0xd8,0xd8, - 0x78,0x18,0x18,0x70,0xd8,0xc0,0xf8,0xd8, - 0x70,0x60,0x60,0x60,0x60,0x60,0xf0,0x60, - 0x38,0x70,0x18,0x78,0xd8,0xd8,0xd8,0xd8, - 0x68,0xd8,0xd8,0xd8,0xd8,0xd8,0xf0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00, - 0xc0,0xc0,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0x60,0xcc,0xd8,0xf0,0xe0,0xf0, - 0xd8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xdb,0xdb,0xdb,0xdb,0xdb, - 0xb6,0xd8,0xd8,0xd8,0xd8,0xd8,0xb0,0x70, - 0xd8,0xd8,0xd8,0xd8,0x70,0xc0,0xc0,0xf0, - 0xd8,0xd8,0xd8,0xd8,0xb0,0x18,0x18,0x78, - 0xd8,0xd8,0xd8,0xd8,0x68,0xc0,0xc0,0xc0, - 0xc0,0xe0,0xb0,0x70,0xd8,0x18,0x70,0xd8, - 0x70,0x30,0x60,0x60,0x60,0x60,0xf0,0x60, - 0x60,0x68,0xd8,0xd8,0xd8,0xd8,0xd8,0x20, - 0x70,0x50,0xd8,0xd8,0xd8,0x6c,0x6c,0x6c, - 0xd6,0xd6,0xd6,0xcc,0xcc,0x78,0x30,0x78, - 0xcc,0x60,0x30,0x30,0x78,0xd8,0xd8,0xd8, - 0xd8,0xf8,0xc0,0x60,0x30,0x18,0xf8,0x30, - 0x60,0x60,0x60,0x60,0xc0,0x60,0x60,0x60, - 0x30,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xc0,0x60,0x60,0x60,0x60, - 0x30,0x60,0x60,0x60,0xc0,0xb0,0x68,0x00, - 0xc0,0xc0,0xc0,0xc0,0x40,0x40,0x00,0xc0, - 0x40,0x70,0xd8,0xa0,0xa0,0xd8,0x70,0x10, - 0xd8,0x68,0x60,0x60,0xf0,0x60,0x68,0x38, - 0x84,0x78,0x48,0x48,0x78,0x84,0x30,0xfc, - 0x30,0xfc,0x48,0xcc,0x84,0x84,0x80,0x80, - 0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x80, - 0x70,0x98,0x38,0x70,0xc8,0x98,0x70,0xe0, - 0xc8,0x70,0xa0,0x3c,0x42,0x9d,0xa1,0xa5, - 0x99,0x42,0x3c,0xe0,0x00,0xa0,0x20,0xe0, - 0x6c,0xd8,0x6c,0x08,0x08,0xf8,0xf0,0x3c, - 0x42,0xa5,0xb9,0xa5,0xbd,0x42,0x3c,0xe0, - 0xc0,0xa0,0x60,0xfc,0x00,0x30,0x30,0xfc, - 0x30,0x30,0xe0,0x40,0xa0,0x60,0xc0,0x20, - 0x40,0xe0,0x80,0x40,0xc0,0xc0,0xe8,0xd8, - 0xd8,0xd8,0xd8,0xd8,0x28,0x28,0x28,0x28, - 0x28,0x68,0xe8,0xe8,0xe8,0x7c,0xc0,0xc0, - 0x40,0x40,0x40,0xc0,0x40,0xe0,0x00,0xe0, - 0xa0,0xe0,0xd8,0x6c,0xd8,0x42,0x2f,0x26, - 0x12,0x48,0x48,0xc4,0x44,0x4e,0x24,0x2a, - 0x16,0x48,0x48,0xc4,0x44,0x42,0x2f,0x26, - 0x12,0xc8,0x28,0x44,0xe4,0x70,0xd8,0xc0, - 0x60,0x30,0x30,0x00,0x30,0xc6,0xc6,0xfe, - 0x6c,0x6c,0x6c,0x38,0x38,0x00,0x10,0x20, - 0xc6,0xc6,0xfe,0x6c,0x6c,0x6c,0x38,0x38, - 0x00,0x10,0x08,0xc6,0xc6,0xfe,0x6c,0x6c, - 0x6c,0x38,0x38,0x00,0x28,0x10,0xc6,0xc6, - 0xfe,0x6c,0x6c,0x6c,0x38,0x38,0x00,0x28, - 0x14,0xc6,0xc6,0xfe,0x6c,0x6c,0x6c,0x38, - 0x38,0x00,0x28,0xc6,0xc6,0xfe,0x6c,0x6c, - 0x6c,0x38,0x38,0x10,0x28,0x10,0xcf,0x80, - 0xcc,0x00,0xfc,0x00,0x6c,0x00,0x6f,0x80, - 0x6c,0x00,0x3c,0x00,0x3f,0x80,0x30,0x10, - 0x3c,0x66,0xc2,0xc0,0xc0,0xc2,0x66,0x3c, - 0xf8,0xc0,0xc0,0xc0,0xf8,0xc0,0xc0,0xf8, - 0x00,0x20,0x40,0xf8,0xc0,0xc0,0xc0,0xf8, - 0xc0,0xc0,0xf8,0x00,0x20,0x10,0xf8,0xc0, - 0xc0,0xc0,0xf8,0xc0,0xc0,0xf8,0x00,0x50, - 0x20,0xf8,0xc0,0xc0,0xc0,0xf8,0xc0,0xc0, - 0xf8,0x00,0x50,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0x00,0x40,0x80,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0x80, - 0x40,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0xa0,0x40,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x00,0x90,0x78,0x6c, - 0x66,0x66,0xf6,0x66,0x6c,0x78,0xc6,0xce, - 0xce,0xd6,0xd6,0xe6,0xe6,0xc6,0x00,0x28, - 0x14,0x38,0x6c,0xc6,0xc6,0xc6,0xc6,0x6c, - 0x38,0x00,0x08,0x10,0x38,0x6c,0xc6,0xc6, - 0xc6,0xc6,0x6c,0x38,0x00,0x10,0x08,0x38, - 0x6c,0xc6,0xc6,0xc6,0xc6,0x6c,0x38,0x00, - 0x28,0x10,0x38,0x6c,0xc6,0xc6,0xc6,0xc6, - 0x6c,0x38,0x00,0x28,0x14,0x38,0x6c,0xc6, - 0xc6,0xc6,0xc6,0x6c,0x38,0x00,0x28,0xcc, - 0x78,0x30,0x78,0xcc,0xb8,0x6c,0xe6,0xd6, - 0xd6,0xce,0x6c,0x3a,0x78,0xcc,0xcc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0x00,0x10,0x20,0x78, - 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0x00, - 0x10,0x08,0x78,0xcc,0xcc,0xcc,0xcc,0xcc, - 0xcc,0xcc,0x00,0x50,0x20,0x78,0xcc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0xcc,0x00,0x48,0x18, - 0x18,0x18,0x3c,0x66,0x66,0xc3,0xc3,0x00, - 0x08,0x04,0xc0,0xc0,0xf8,0xcc,0xcc,0xcc, - 0xf8,0xc0,0xd0,0xc8,0xc8,0xc8,0xd0,0xc8, - 0xc8,0x70,0x6c,0xd8,0xd8,0x78,0x98,0x70, - 0x00,0x10,0x20,0x6c,0xd8,0xd8,0x78,0x98, - 0x70,0x00,0x20,0x10,0x6c,0xd8,0xd8,0x78, - 0x98,0x70,0x00,0x50,0x20,0x6c,0xd8,0xd8, - 0x78,0x98,0x70,0x00,0x50,0x28,0x6c,0xd8, - 0xd8,0x78,0x98,0x70,0x00,0x50,0x6c,0xd8, - 0xd8,0x78,0x98,0x70,0x20,0x50,0x20,0x6e, - 0xdb,0xd8,0x7f,0x9b,0x7e,0x60,0x20,0x70, - 0xd0,0xc0,0xc0,0xd0,0x70,0x70,0xd8,0xc0, - 0xf8,0xd8,0x70,0x00,0x20,0x40,0x70,0xd8, - 0xc0,0xf8,0xd8,0x70,0x00,0x20,0x10,0x70, - 0xd8,0xc0,0xf8,0xd8,0x70,0x00,0x50,0x20, - 0x70,0xd8,0xc0,0xf8,0xd8,0x70,0x00,0x50, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0x40, - 0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00, - 0x80,0x40,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0x00,0xa0,0x40,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0x00,0xa0,0x70,0xd8,0xd8,0xd8,0xd8, - 0x70,0xa0,0x60,0x50,0xd8,0xd8,0xd8,0xd8, - 0xd8,0xb0,0x00,0xa0,0x50,0x70,0xd8,0xd8, - 0xd8,0xd8,0x70,0x00,0x20,0x40,0x70,0xd8, - 0xd8,0xd8,0xd8,0x70,0x00,0x20,0x10,0x70, - 0xd8,0xd8,0xd8,0xd8,0x70,0x00,0x50,0x20, - 0x70,0xd8,0xd8,0xd8,0xd8,0x70,0x00,0xa0, - 0x50,0x70,0xd8,0xd8,0xd8,0xd8,0x70,0x00, - 0x50,0x30,0x00,0xfc,0x00,0x30,0xb8,0x6c, - 0x6c,0x7c,0x6c,0x3a,0x68,0xd8,0xd8,0xd8, - 0xd8,0xd8,0x00,0x20,0x40,0x68,0xd8,0xd8, - 0xd8,0xd8,0xd8,0x00,0x20,0x10,0x68,0xd8, - 0xd8,0xd8,0xd8,0xd8,0x00,0x50,0x20,0x68, - 0xd8,0xd8,0xd8,0xd8,0xd8,0x00,0x50,0x60, - 0x30,0x30,0x78,0xd8,0xd8,0xd8,0xd8,0x00, - 0x20,0x10,0xc0,0xc0,0xf0,0xd8,0xc8,0xc8, - 0xd8,0xf0,0xc0,0xc0,0x60,0x30,0x30,0x78, - 0xd8,0xd8,0xd8,0xd8,0x00,0x50, -}; - -BMF_FontData BMF_font_helvb10 = { - -1, -2, - 10, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 0}, - {2, 8, -1, 0, 4, 1}, - {3, 3, -1, -5, 5, 9}, - {7, 7, 1, 0, 6, 12}, - {5, 10, 0, 1, 6, 19}, - {7, 8, 0, 0, 8, 29}, - {7, 8, 0, 0, 8, 37}, - {2, 4, 0, -4, 3, 45}, - {3, 10, 0, 2, 4, 49}, - {3, 10, 0, 2, 4, 59}, - {3, 3, 0, -5, 4, 69}, - {6, 5, 0, -1, 6, 72}, - {2, 4, 0, 2, 3, 77}, - {5, 1, -1, -3, 7, 81}, - {2, 2, 0, 0, 3, 82}, - {4, 8, 0, 0, 4, 84}, - {5, 8, 0, 0, 6, 92}, - {3, 8, -1, 0, 6, 100}, - {5, 8, 0, 0, 6, 108}, - {5, 8, 0, 0, 6, 116}, - {6, 8, 0, 0, 6, 124}, - {5, 8, 0, 0, 6, 132}, - {5, 8, 0, 0, 6, 140}, - {5, 8, 0, 0, 6, 148}, - {5, 8, 0, 0, 6, 156}, - {5, 8, 0, 0, 6, 164}, - {2, 6, 0, 0, 3, 172}, - {2, 8, 0, 2, 3, 178}, - {4, 5, 0, -1, 5, 186}, - {5, 3, 0, -2, 6, 191}, - {4, 5, 0, -1, 5, 194}, - {5, 8, 0, 0, 6, 199}, - {10, 9, 0, 1, 11, 207}, - {7, 8, 0, 0, 8, 225}, - {6, 8, 0, 0, 7, 233}, - {7, 8, 0, 0, 8, 241}, - {6, 8, 0, 0, 7, 249}, - {5, 8, 0, 0, 6, 257}, - {5, 8, 0, 0, 6, 265}, - {7, 8, 0, 0, 8, 273}, - {6, 8, 0, 0, 7, 281}, - {2, 8, 0, 0, 3, 289}, - {5, 8, 0, 0, 6, 297}, - {7, 8, 0, 0, 7, 305}, - {5, 8, 0, 0, 6, 313}, - {9, 8, 0, 0, 10, 321}, - {7, 8, 0, 0, 8, 337}, - {7, 8, 0, 0, 8, 345}, - {6, 8, 0, 0, 7, 353}, - {7, 9, 0, 1, 8, 361}, - {6, 8, 0, 0, 7, 370}, - {6, 8, 0, 0, 7, 378}, - {6, 8, 0, 0, 7, 386}, - {6, 8, 0, 0, 7, 394}, - {7, 8, 0, 0, 8, 402}, - {10, 8, 0, 0, 11, 410}, - {7, 8, 0, 0, 8, 426}, - {8, 8, 0, 0, 9, 434}, - {6, 8, 0, 0, 7, 442}, - {3, 10, 0, 2, 4, 450}, - {4, 8, 0, 0, 4, 460}, - {3, 10, 0, 2, 4, 468}, - {4, 4, 0, -4, 5, 478}, - {6, 1, 0, 2, 6, 482}, - {2, 4, 0, -4, 3, 483}, - {6, 6, 0, 0, 6, 487}, - {5, 8, 0, 0, 6, 493}, - {4, 6, 0, 0, 5, 501}, - {5, 8, 0, 0, 6, 507}, - {5, 6, 0, 0, 6, 515}, - {5, 8, 1, 0, 4, 521}, - {5, 8, 0, 2, 6, 529}, - {5, 8, 0, 0, 6, 537}, - {2, 8, 0, 0, 3, 545}, - {3, 10, 1, 2, 3, 553}, - {6, 8, 0, 0, 6, 563}, - {2, 8, 0, 0, 3, 571}, - {8, 6, 0, 0, 9, 579}, - {5, 6, 0, 0, 6, 585}, - {5, 6, 0, 0, 6, 591}, - {5, 8, 0, 2, 6, 597}, - {5, 8, 0, 2, 6, 605}, - {4, 6, 0, 0, 4, 613}, - {5, 6, 0, 0, 6, 619}, - {4, 8, 1, 0, 4, 625}, - {5, 6, 0, 0, 6, 633}, - {5, 6, 0, 0, 6, 639}, - {7, 6, 0, 0, 8, 645}, - {6, 6, 0, 0, 7, 651}, - {5, 8, 0, 2, 6, 657}, - {5, 6, 0, 0, 6, 665}, - {4, 10, 0, 2, 5, 671}, - {1, 10, -1, 2, 3, 681}, - {4, 10, 0, 2, 5, 691}, - {5, 2, 0, -3, 6, 701}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 703}, - {2, 8, -1, 2, 4, 704}, - {5, 8, 0, 1, 6, 712}, - {5, 8, 0, 0, 6, 720}, - {6, 6, 0, -1, 6, 728}, - {6, 8, 0, 0, 7, 734}, - {1, 10, -1, 2, 3, 742}, - {5, 10, 0, 2, 6, 752}, - {3, 1, 0, -7, 3, 762}, - {8, 8, -1, 0, 10, 763}, - {3, 5, -1, -3, 5, 771}, - {6, 3, 0, -1, 7, 776}, - {5, 3, -1, -2, 7, 779}, - {4, 1, 0, -3, 5, 782}, - {8, 8, -1, 0, 10, 783}, - {3, 1, 0, -7, 3, 791}, - {3, 3, 0, -5, 4, 792}, - {6, 7, 0, 0, 6, 795}, - {3, 4, 0, -4, 3, 802}, - {3, 4, 0, -4, 3, 806}, - {2, 2, 0, -7, 3, 810}, - {5, 8, 0, 2, 6, 812}, - {6, 10, 0, 2, 6, 820}, - {2, 1, 0, -3, 3, 830}, - {2, 2, 0, 2, 3, 831}, - {2, 4, 0, -4, 3, 833}, - {3, 5, -1, -3, 5, 837}, - {6, 3, 0, -1, 7, 842}, - {8, 8, 0, 0, 9, 845}, - {7, 8, 0, 0, 9, 853}, - {8, 8, 0, 0, 9, 861}, - {5, 8, 0, 2, 6, 869}, - {7, 11, 0, 0, 8, 877}, - {7, 11, 0, 0, 8, 888}, - {7, 11, 0, 0, 8, 899}, - {7, 11, 0, 0, 8, 910}, - {7, 10, 0, 0, 8, 921}, - {7, 11, 0, 0, 8, 931}, - {9, 8, 0, 0, 10, 942}, - {7, 10, 0, 2, 8, 958}, - {5, 11, 0, 0, 6, 968}, - {5, 11, 0, 0, 6, 979}, - {5, 11, 0, 0, 6, 990}, - {5, 10, 0, 0, 6, 1001}, - {2, 11, 0, 0, 3, 1011}, - {2, 11, 0, 0, 3, 1022}, - {3, 11, 1, 0, 3, 1033}, - {4, 10, 1, 0, 3, 1044}, - {7, 8, 1, 0, 7, 1054}, - {7, 11, 0, 0, 8, 1062}, - {7, 11, 0, 0, 8, 1073}, - {7, 11, 0, 0, 8, 1084}, - {7, 11, 0, 0, 8, 1095}, - {7, 11, 0, 0, 8, 1106}, - {7, 10, 0, 0, 8, 1117}, - {6, 5, 0, -1, 6, 1127}, - {7, 8, 0, 0, 8, 1132}, - {6, 11, 0, 0, 7, 1140}, - {6, 11, 0, 0, 7, 1151}, - {6, 11, 0, 0, 7, 1162}, - {6, 10, 0, 0, 7, 1173}, - {8, 11, 0, 0, 9, 1183}, - {6, 8, 0, 0, 7, 1194}, - {5, 8, 0, 0, 6, 1202}, - {6, 9, 0, 0, 6, 1210}, - {6, 9, 0, 0, 6, 1219}, - {6, 9, 0, 0, 6, 1228}, - {6, 9, 0, 0, 6, 1237}, - {6, 8, 0, 0, 6, 1246}, - {6, 9, 0, 0, 6, 1254}, - {8, 6, 0, 0, 9, 1263}, - {4, 8, 0, 2, 5, 1269}, - {5, 9, 0, 0, 6, 1277}, - {5, 9, 0, 0, 6, 1286}, - {5, 9, 0, 0, 6, 1295}, - {5, 8, 0, 0, 6, 1304}, - {2, 9, 0, 0, 3, 1312}, - {2, 9, 0, 0, 3, 1321}, - {3, 9, 0, 0, 3, 1330}, - {3, 8, 0, 0, 3, 1339}, - {5, 9, 0, 0, 6, 1347}, - {5, 9, 0, 0, 6, 1356}, - {5, 9, 0, 0, 6, 1365}, - {5, 9, 0, 0, 6, 1374}, - {5, 9, 0, 0, 6, 1383}, - {5, 9, 0, 0, 6, 1392}, - {5, 8, 0, 0, 6, 1401}, - {6, 5, 0, -1, 6, 1409}, - {7, 6, 1, 0, 6, 1414}, - {5, 9, 0, 0, 6, 1420}, - {5, 9, 0, 0, 6, 1429}, - {5, 9, 0, 0, 6, 1438}, - {5, 8, 0, 0, 6, 1447}, - {5, 11, 0, 2, 6, 1455}, - {5, 10, 0, 2, 6, 1466}, - {5, 10, 0, 2, 6, 1476}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_helvb12.cpp b/intern/bmfont/intern/BMF_font_helvb12.cpp deleted file mode 100644 index 8b56bdceee7..00000000000 --- a/intern/bmfont/intern/BMF_font_helvb12.cpp +++ /dev/null @@ -1,565 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_HELVB12 - -static unsigned char bitmap_data[]= { - 0x00,0xc0,0xc0,0x00,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xa0,0xa0,0xa0,0x6c, - 0x00,0x6c,0x00,0x6c,0x00,0xff,0x00,0x36, - 0x00,0x36,0x00,0x36,0x00,0x7f,0x80,0x1b, - 0x00,0x1b,0x00,0x1b,0x00,0x30,0x30,0x78, - 0xec,0xac,0x3c,0x38,0x70,0xf0,0xd4,0xdc, - 0x78,0x30,0x63,0x80,0x37,0xc0,0x36,0xc0, - 0x1f,0xc0,0x1b,0x80,0x0c,0x00,0x76,0x00, - 0xfe,0x00,0xdb,0x00,0xfb,0x00,0x71,0x80, - 0x73,0x80,0xff,0x00,0xce,0x00,0xcf,0x00, - 0xdd,0x80,0x79,0x80,0x38,0x00,0x6c,0x00, - 0x6c,0x00,0x7c,0x00,0x38,0x00,0x80,0x40, - 0xc0,0xc0,0x30,0x60,0x60,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x60,0x60,0x30, - 0xc0,0x60,0x60,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x30,0x60,0x60,0xc0,0xd8,0x70, - 0x70,0xf8,0x20,0x30,0x30,0xfc,0xfc,0x30, - 0x30,0x80,0x40,0xc0,0xc0,0xfc,0xfc,0xc0, - 0xc0,0xc0,0xc0,0xc0,0x60,0x60,0x60,0x20, - 0x30,0x30,0x30,0x18,0x18,0x18,0x78,0xfc, - 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xfc, - 0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0xf0,0xf0,0x30,0xfc,0xfc,0xc0,0x60, - 0x70,0x38,0x18,0xcc,0xcc,0xfc,0x78,0x78, - 0xfc,0xcc,0xcc,0x0c,0x38,0x38,0x0c,0xcc, - 0xfc,0x78,0x0c,0x0c,0xfe,0xfe,0xcc,0x6c, - 0x6c,0x3c,0x3c,0x1c,0x1c,0x78,0xfc,0xcc, - 0xcc,0x0c,0xfc,0xf8,0xc0,0xc0,0xfc,0xfc, - 0x78,0xfc,0xcc,0xcc,0xcc,0xfc,0xf8,0xc0, - 0xcc,0xfc,0x78,0x60,0x60,0x60,0x30,0x30, - 0x30,0x18,0x18,0x0c,0xfc,0xfc,0x78,0xfc, - 0xcc,0xcc,0xcc,0x78,0x78,0xcc,0xcc,0xfc, - 0x78,0x78,0xfc,0xcc,0x0c,0x7c,0xfc,0xcc, - 0xcc,0xcc,0xfc,0x78,0xc0,0xc0,0x00,0x00, - 0x00,0x00,0xc0,0xc0,0x80,0x40,0xc0,0xc0, - 0x00,0x00,0x00,0x00,0xc0,0xc0,0x0c,0x38, - 0xe0,0xe0,0x38,0x0c,0xfc,0xfc,0x00,0xfc, - 0xfc,0xc0,0x70,0x1c,0x1c,0x70,0xc0,0x30, - 0x30,0x00,0x30,0x30,0x38,0x1c,0xcc,0xcc, - 0xfc,0x78,0x1f,0x00,0x71,0x80,0x40,0x00, - 0xdd,0x80,0xb6,0xc0,0xb2,0x40,0xb3,0x60, - 0xdb,0x20,0x4d,0xa0,0x60,0x40,0x39,0xc0, - 0x0f,0x00,0xc3,0xc3,0xff,0x7e,0x66,0x66, - 0x3c,0x3c,0x3c,0x18,0x18,0xf8,0xfc,0xcc, - 0xcc,0xcc,0xf8,0xf8,0xcc,0xcc,0xfc,0xf8, - 0x78,0xfc,0xcc,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xcc,0xfc,0x78,0xf8,0xfc,0xce,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xce,0xfc,0xf8,0xfc,0xfc, - 0xc0,0xc0,0xc0,0xf8,0xf8,0xc0,0xc0,0xfc, - 0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xf8,0xf8, - 0xc0,0xc0,0xfc,0xfc,0x76,0xfe,0xc6,0xc6, - 0xde,0xde,0xc0,0xc0,0xc6,0xfe,0x7c,0xc6, - 0xc6,0xc6,0xc6,0xc6,0xfe,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x70,0xf8,0xd8, - 0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18, - 0xc6,0xce,0xcc,0xd8,0xf8,0xf0,0xf0,0xd8, - 0xcc,0xcc,0xc6,0xfc,0xfc,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc9,0x80, - 0xc9,0x80,0xdd,0x80,0xdd,0x80,0xf7,0x80, - 0xf7,0x80,0xe3,0x80,0xe3,0x80,0xe3,0x80, - 0xc1,0x80,0xc1,0x80,0xc6,0xc6,0xce,0xce, - 0xde,0xd6,0xf6,0xe6,0xe6,0xc6,0xc6,0x7c, - 0xfe,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6, - 0xfe,0x7c,0xc0,0xc0,0xc0,0xc0,0xfc,0xfe, - 0xc6,0xc6,0xc6,0xfe,0xfc,0x06,0x7e,0xfc, - 0xce,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xfe, - 0x7c,0xc6,0xc6,0xc6,0xce,0xfc,0xfc,0xc6, - 0xc6,0xc6,0xfe,0xfc,0x78,0xfc,0xcc,0x0c, - 0x1c,0x78,0xe0,0xc0,0xcc,0xfc,0x78,0x30, - 0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0xfc,0xfc,0x7c,0xfe,0xc6,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xc6,0xc6,0x18,0x18,0x18, - 0x3c,0x3c,0x3c,0x66,0x66,0x66,0xc3,0xc3, - 0x33,0x00,0x33,0x00,0x33,0x00,0x3b,0x00, - 0x7f,0x80,0x6d,0x80,0x6d,0x80,0x6d,0x80, - 0xcc,0xc0,0xcc,0xc0,0xcc,0xc0,0xc3,0xc3, - 0x66,0x7e,0x3c,0x18,0x3c,0x7e,0x66,0xc3, - 0xc3,0x18,0x18,0x18,0x18,0x18,0x3c,0x3c, - 0x66,0x66,0xc3,0xc3,0xfe,0xfe,0xc0,0x60, - 0x60,0x30,0x18,0x18,0x0c,0xfe,0xfe,0xe0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xe0,0x30,0x30,0x30, - 0x70,0x60,0x60,0x60,0xe0,0xc0,0xc0,0xc0, - 0xe0,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0xe0,0x88,0xd8, - 0x70,0x70,0x20,0xfe,0xc0,0xc0,0x80,0x40, - 0x76,0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78, - 0xd8,0xfc,0xcc,0xcc,0xcc,0xcc,0xfc,0xd8, - 0xc0,0xc0,0xc0,0x78,0xfc,0xcc,0xc0,0xc0, - 0xcc,0xfc,0x78,0x6c,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x6c,0x0c,0x0c,0x0c,0x78,0xfc, - 0xc0,0xfc,0xfc,0xcc,0xfc,0x78,0x60,0x60, - 0x60,0x60,0x60,0x60,0xf0,0xf0,0x60,0x70, - 0x30,0x78,0xfc,0x0c,0x6c,0xfc,0xcc,0xcc, - 0xcc,0xcc,0xfc,0x6c,0xcc,0xcc,0xcc,0xcc, - 0xcc,0xec,0xfc,0xd8,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00, - 0xc0,0xc0,0xc0,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x00,0x60,0x60, - 0xcc,0xd8,0xd8,0xf0,0xe0,0xf0,0xd8,0xcc, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xcc,0xc0, - 0xcc,0xc0,0xcc,0xc0,0xcc,0xc0,0xcc,0xc0, - 0xee,0xc0,0xff,0xc0,0xbb,0x80,0xcc,0xcc, - 0xcc,0xcc,0xcc,0xec,0xfc,0xd8,0x78,0xfc, - 0xcc,0xcc,0xcc,0xcc,0xfc,0x78,0xc0,0xc0, - 0xc0,0xd8,0xfc,0xcc,0xcc,0xcc,0xcc,0xfc, - 0xd8,0x0c,0x0c,0x0c,0x6c,0xfc,0xcc,0xcc, - 0xcc,0xcc,0xfc,0x6c,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xe0,0xb0,0x78,0xfc,0xcc,0x1c, - 0x78,0xe0,0xfc,0x78,0x30,0x70,0x60,0x60, - 0x60,0x60,0xf0,0xf0,0x60,0x60,0x6c,0xfc, - 0xdc,0xcc,0xcc,0xcc,0xcc,0xcc,0x30,0x30, - 0x78,0x78,0x78,0xcc,0xcc,0xcc,0x24,0x24, - 0x76,0x76,0x7e,0xdb,0xdb,0xdb,0xcc,0xcc, - 0x78,0x38,0x70,0x78,0xcc,0xcc,0xe0,0xf0, - 0x30,0x30,0x38,0x78,0x78,0x48,0xcc,0xcc, - 0xcc,0xfc,0xfc,0x60,0x30,0x30,0x18,0xfc, - 0xfc,0x30,0x60,0x60,0x60,0x60,0x60,0x40, - 0x80,0x40,0x60,0x60,0x60,0x60,0x30,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xc0,0x60,0x60,0x60, - 0x60,0x60,0x20,0x10,0x20,0x60,0x60,0x60, - 0x60,0xc0,0x98,0xfc,0x64,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0xc0,0xc0, - 0xc0,0x78,0xfc,0xec,0xe0,0xd0,0xd4,0xfc, - 0x78,0x0c,0xdc,0xfe,0x60,0x30,0x30,0xfc, - 0x30,0x60,0x64,0x7c,0x38,0xcc,0x78,0xcc, - 0xcc,0x78,0xcc,0x18,0x18,0x18,0x7e,0x18, - 0x7e,0x3c,0x66,0x66,0xc3,0xc3,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x80,0x80,0x78,0xfc,0xcc,0x1c,0x38, - 0x6c,0xcc,0xcc,0xd8,0x70,0xe0,0xcc,0xfc, - 0x78,0xd8,0xd8,0x1f,0x00,0x71,0xc0,0x6e, - 0xc0,0xdb,0x60,0xdb,0x60,0xd8,0x60,0xdb, - 0x60,0xdb,0x60,0x6e,0xc0,0x71,0xc0,0x1f, - 0x00,0xf0,0x00,0xd0,0xb0,0x70,0xb0,0x60, - 0x36,0x6c,0xd8,0x6c,0x36,0x0c,0x0c,0xfc, - 0xfc,0xe0,0xe0,0x1f,0x00,0x71,0xc0,0x7b, - 0xc0,0xdb,0x60,0xdf,0x60,0xde,0x60,0xdb, - 0x60,0xdb,0x60,0x7e,0xc0,0x71,0xc0,0x1f, - 0x00,0xf0,0xf0,0x60,0x90,0x90,0x60,0xfc, - 0xfc,0x00,0x30,0x30,0xfc,0xfc,0x30,0x30, - 0xf0,0x40,0x20,0x10,0x90,0x60,0x60,0x90, - 0x10,0x20,0x90,0x60,0xc0,0x70,0x30,0xc0, - 0xc0,0xc0,0xec,0xfc,0xdc,0xcc,0xcc,0xcc, - 0xcc,0xcc,0x36,0x36,0x36,0x36,0x36,0x36, - 0x36,0x36,0x76,0xf6,0xf6,0xf6,0xfe,0x7e, - 0xc0,0xc0,0xc0,0x60,0x40,0x40,0x40,0x40, - 0x40,0xc0,0x40,0xf8,0x00,0x70,0xd8,0xd8, - 0xd8,0x70,0xd8,0x6c,0x36,0x6c,0xd8,0x20, - 0x80,0x27,0xc0,0x12,0x80,0x12,0x80,0x09, - 0x80,0x4c,0x80,0x44,0x00,0x42,0x00,0x42, - 0x00,0xc1,0x00,0x41,0x00,0x23,0xc0,0x21, - 0x00,0x10,0x80,0x10,0x40,0x0a,0x40,0x4d, - 0x80,0x44,0x00,0x42,0x00,0x42,0x00,0xc1, - 0x00,0x41,0x00,0x20,0x80,0x27,0xc0,0x12, - 0x80,0x12,0x80,0x09,0x80,0x6c,0x80,0x94, - 0x00,0x12,0x00,0x22,0x00,0x91,0x00,0x61, - 0x00,0x78,0xfc,0xcc,0xcc,0xe0,0x70,0x30, - 0x30,0x00,0x30,0x30,0xc3,0xc3,0x7e,0x7e, - 0x24,0x3c,0x18,0x18,0x00,0x0c,0x38,0x30, - 0xc3,0xc3,0x7e,0x7e,0x24,0x3c,0x18,0x18, - 0x00,0x30,0x1c,0x0c,0xc3,0xc3,0x7e,0x7e, - 0x24,0x3c,0x18,0x18,0x00,0x66,0x3c,0x18, - 0xc3,0xc3,0x7e,0x7e,0x24,0x3c,0x18,0x18, - 0x00,0x2c,0x3e,0x1a,0xc3,0xc3,0x7e,0x7e, - 0x24,0x3c,0x18,0x18,0x00,0x6c,0x6c,0xc3, - 0xc3,0x7e,0x7e,0x24,0x3c,0x18,0x18,0x00, - 0x18,0x34,0x18,0xc7,0xe0,0xc7,0xe0,0xfe, - 0x00,0x7e,0x00,0x66,0x00,0x67,0xc0,0x37, - 0xc0,0x36,0x00,0x3e,0x00,0x1f,0xe0,0x1f, - 0xe0,0x60,0x30,0x20,0x78,0xfc,0xcc,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xcc,0xfc,0x78,0xfc, - 0xfc,0xc0,0xf8,0xf8,0xc0,0xfc,0xfc,0x00, - 0x18,0x70,0x60,0xfc,0xfc,0xc0,0xf8,0xf8, - 0xc0,0xfc,0xfc,0x00,0x60,0x38,0x18,0xfc, - 0xfc,0xc0,0xf8,0xf8,0xc0,0xfc,0xfc,0x00, - 0xcc,0x78,0x30,0xfc,0xfc,0xc0,0xf8,0xf8, - 0xc0,0xfc,0xfc,0x00,0xd8,0xd8,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x60,0x00,0x30, - 0xe0,0xc0,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x00,0xc0,0x70,0x30,0x30,0x30, - 0x30,0x30,0x30,0x30,0x30,0x30,0x00,0xcc, - 0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x00,0xd8,0xd8,0x7c,0x7e,0x67, - 0x63,0x63,0xfb,0xfb,0x63,0x67,0x7e,0x7c, - 0xc6,0xce,0xce,0xde,0xf6,0xe6,0xe6,0xc6, - 0x00,0x58,0x7c,0x34,0x7c,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xfe,0x7c,0x00,0x18,0x70,0x60, - 0x7c,0xfe,0xc6,0xc6,0xc6,0xc6,0xfe,0x7c, - 0x00,0x30,0x1c,0x0c,0x7c,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xfe,0x7c,0x00,0xcc,0x78,0x30, - 0x7c,0xfe,0xc6,0xc6,0xc6,0xc6,0xfe,0x7c, - 0x00,0x58,0x7c,0x34,0x7c,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xfe,0x7c,0x00,0x6c,0x6c,0xcc, - 0x78,0x30,0x30,0x78,0xcc,0xde,0x00,0x7f, - 0x00,0x63,0x00,0x73,0x00,0x7b,0x00,0x6b, - 0x00,0x6f,0x00,0x67,0x00,0x63,0x00,0x7f, - 0x00,0x3d,0x80,0x7c,0xfe,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0x00,0x18,0x70,0x60,0x7c, - 0xfe,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x00, - 0x30,0x1c,0x0c,0x7c,0xfe,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0x00,0xcc,0x78,0x30,0x7c, - 0xfe,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x00, - 0x6c,0x6c,0x18,0x18,0x18,0x18,0x3c,0x7e, - 0xe7,0xc3,0x00,0x30,0x1c,0x0c,0xc0,0xc0, - 0xfc,0xfe,0xc6,0xc6,0xc6,0xfe,0xfc,0xc0, - 0xc0,0xd8,0xdc,0xcc,0xcc,0xcc,0xd8,0xd8, - 0xcc,0xcc,0xfc,0x78,0x76,0xfc,0xcc,0xfc, - 0x7c,0x8c,0xfc,0x78,0x00,0x18,0x70,0x60, - 0x76,0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78, - 0x00,0x60,0x38,0x18,0x76,0xfc,0xcc,0xfc, - 0x7c,0x8c,0xfc,0x78,0x00,0xcc,0x78,0x30, - 0x76,0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78, - 0x00,0x58,0x7c,0x34,0x76,0xfc,0xcc,0xfc, - 0x7c,0x8c,0xfc,0x78,0x00,0xd8,0xd8,0x76, - 0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78,0x00, - 0x30,0x68,0x30,0x77,0x80,0xff,0xc0,0xcc, - 0x00,0xff,0xc0,0x7f,0xc0,0x8c,0xc0,0xff, - 0xc0,0x7b,0x80,0x60,0x30,0x20,0x78,0xfc, - 0xcc,0xc0,0xc0,0xcc,0xfc,0x78,0x78,0xfc, - 0xc0,0xfc,0xfc,0xcc,0xfc,0x78,0x00,0x18, - 0x70,0x60,0x78,0xfc,0xc0,0xfc,0xfc,0xcc, - 0xfc,0x78,0x00,0x60,0x38,0x18,0x78,0xfc, - 0xc0,0xfc,0xfc,0xcc,0xfc,0x78,0x00,0xcc, - 0x78,0x30,0x78,0xfc,0xc0,0xfc,0xfc,0xcc, - 0xfc,0x78,0x00,0xd8,0xd8,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x00,0x30,0xe0, - 0xc0,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0xc0,0x70,0x30,0x30,0x30,0x30, - 0x30,0x30,0x30,0x30,0x30,0x00,0xcc,0x78, - 0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x00,0xd8,0xd8,0x78,0xfc,0xcc,0xcc, - 0xcc,0xcc,0xfc,0x78,0xb0,0x60,0xd0,0xcc, - 0xcc,0xcc,0xcc,0xcc,0xec,0xfc,0xd8,0x00, - 0xb0,0xf8,0x68,0x78,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x78,0x00,0x18,0x70,0x60,0x78, - 0xfc,0xcc,0xcc,0xcc,0xcc,0xfc,0x78,0x00, - 0x60,0x38,0x18,0x78,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x78,0x00,0xcc,0x78,0x30,0x78, - 0xfc,0xcc,0xcc,0xcc,0xcc,0xfc,0x78,0x00, - 0xb0,0xf8,0x68,0x78,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x78,0x00,0xd8,0xd8,0x30,0x30, - 0x00,0xfc,0xfc,0x00,0x30,0x30,0xc0,0x78, - 0xfc,0xcc,0xec,0xdc,0xcc,0xfc,0x78,0x0c, - 0x6c,0xfc,0xdc,0xcc,0xcc,0xcc,0xcc,0xcc, - 0x00,0x18,0x70,0x60,0x6c,0xfc,0xdc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0x00,0x60,0x38,0x18, - 0x6c,0xfc,0xdc,0xcc,0xcc,0xcc,0xcc,0xcc, - 0x00,0xcc,0x78,0x30,0x6c,0xfc,0xdc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0x00,0xd8,0xd8,0xe0, - 0xf0,0x30,0x30,0x38,0x78,0x78,0x48,0xcc, - 0xcc,0xcc,0x00,0x60,0x38,0x18,0xc0,0xc0, - 0xc0,0xd8,0xfc,0xcc,0xcc,0xcc,0xcc,0xfc, - 0xd8,0xc0,0xc0,0xc0,0xe0,0xf0,0x30,0x30, - 0x38,0x78,0x78,0x48,0xcc,0xcc,0xcc,0x00, - 0xd8,0xd8, -}; - -BMF_FontData BMF_font_helvb12 = { - -1, -3, - 11, 12, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 0}, - {2, 11, -1, 0, 4, 1}, - {3, 3, 0, -8, 4, 12}, - {9, 11, 1, 0, 7, 15}, - {6, 13, 0, 2, 7, 37}, - {10, 11, 0, 0, 11, 50}, - {9, 11, 0, 0, 9, 72}, - {2, 4, 0, -7, 3, 94}, - {4, 14, 0, 3, 4, 98}, - {4, 14, 1, 3, 4, 112}, - {5, 5, 0, -6, 6, 126}, - {6, 6, 0, -1, 7, 131}, - {2, 4, 0, 2, 3, 137}, - {6, 2, -1, -3, 9, 141}, - {2, 2, 0, 0, 3, 143}, - {5, 13, 1, 2, 4, 145}, - {6, 11, 0, 0, 7, 158}, - {4, 11, 0, 0, 6, 169}, - {6, 11, 0, 0, 7, 180}, - {6, 11, 0, 0, 7, 191}, - {7, 11, 0, 0, 7, 202}, - {6, 11, 0, 0, 7, 213}, - {6, 11, 0, 0, 7, 224}, - {6, 11, 0, 0, 7, 235}, - {6, 11, 0, 0, 7, 246}, - {6, 11, 0, 0, 7, 257}, - {2, 8, -1, 0, 4, 268}, - {2, 10, -1, 2, 4, 276}, - {6, 6, 0, -1, 7, 286}, - {6, 5, 0, -2, 7, 292}, - {6, 6, 0, -1, 7, 297}, - {6, 11, 0, 0, 7, 303}, - {11, 12, 0, 1, 12, 314}, - {8, 11, 0, 0, 8, 338}, - {6, 11, -1, 0, 8, 349}, - {6, 11, -1, 0, 8, 360}, - {7, 11, -1, 0, 9, 371}, - {6, 11, -1, 0, 8, 382}, - {6, 11, -1, 0, 7, 393}, - {7, 11, -1, 0, 9, 404}, - {7, 11, -1, 0, 9, 415}, - {2, 11, -2, 0, 6, 426}, - {5, 11, 0, 0, 6, 437}, - {7, 11, -1, 0, 8, 448}, - {6, 11, -1, 0, 7, 459}, - {9, 11, -1, 0, 11, 470}, - {7, 11, -1, 0, 9, 492}, - {7, 11, -1, 0, 9, 503}, - {7, 11, -1, 0, 9, 514}, - {7, 12, -1, 1, 9, 525}, - {7, 11, -1, 0, 9, 537}, - {6, 11, -1, 0, 8, 548}, - {6, 11, 0, 0, 6, 559}, - {7, 11, -1, 0, 9, 570}, - {8, 11, 0, 0, 8, 581}, - {10, 11, 0, 0, 10, 592}, - {8, 11, 0, 0, 8, 614}, - {8, 11, 0, 0, 8, 625}, - {7, 11, 0, 0, 7, 636}, - {3, 14, 0, 3, 4, 647}, - {4, 11, 0, 0, 5, 661}, - {3, 14, 0, 3, 4, 672}, - {5, 5, 0, -6, 7, 686}, - {7, 1, 0, 2, 7, 691}, - {2, 4, 0, -7, 3, 692}, - {7, 8, 0, 0, 7, 696}, - {6, 11, 0, 0, 7, 704}, - {6, 8, 0, 0, 7, 715}, - {6, 11, 0, 0, 7, 723}, - {6, 8, 0, 0, 7, 734}, - {4, 11, 0, 0, 5, 742}, - {6, 11, 0, 3, 7, 753}, - {6, 11, 0, 0, 7, 764}, - {2, 11, -1, 0, 5, 775}, - {3, 14, 0, 3, 5, 786}, - {6, 11, 0, 0, 6, 800}, - {2, 11, -1, 0, 5, 811}, - {10, 8, 0, 0, 11, 822}, - {6, 8, 0, 0, 7, 838}, - {6, 8, 0, 0, 7, 846}, - {6, 11, 0, 3, 7, 854}, - {6, 11, 0, 3, 7, 865}, - {4, 8, 0, 0, 4, 876}, - {6, 8, 0, 0, 7, 884}, - {4, 10, 0, 0, 5, 892}, - {6, 8, 0, 0, 7, 902}, - {6, 8, 0, 0, 7, 910}, - {8, 8, 0, 0, 9, 918}, - {6, 8, 0, 0, 7, 926}, - {6, 11, 0, 3, 7, 934}, - {6, 8, 0, 0, 7, 945}, - {4, 14, 0, 3, 4, 953}, - {1, 13, -1, 2, 3, 967}, - {4, 14, 0, 3, 4, 980}, - {6, 3, 0, -3, 7, 994}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {2, 11, 0, 3, 3, 997}, - {6, 10, 0, 1, 7, 1008}, - {7, 11, 0, 0, 7, 1018}, - {6, 6, 0, -3, 7, 1029}, - {8, 11, 1, 0, 7, 1035}, - {1, 13, -1, 2, 3, 1046}, - {6, 14, 0, 3, 7, 1059}, - {5, 2, 0, -9, 5, 1073}, - {11, 11, 0, 0, 12, 1075}, - {4, 7, 0, -4, 5, 1097}, - {7, 5, 0, -2, 8, 1104}, - {6, 4, -1, -3, 9, 1109}, - {3, 2, 0, -3, 4, 1113}, - {11, 11, 0, 0, 12, 1115}, - {4, 2, 0, -9, 4, 1137}, - {4, 4, -1, -7, 6, 1139}, - {6, 9, 0, -1, 7, 1143}, - {4, 6, 0, -5, 4, 1152}, - {4, 6, 0, -5, 4, 1158}, - {4, 3, -1, -9, 4, 1164}, - {6, 11, 0, 3, 7, 1167}, - {7, 14, -1, 3, 10, 1178}, - {2, 2, 0, -5, 3, 1192}, - {3, 3, -1, 3, 5, 1194}, - {2, 6, 0, -5, 4, 1197}, - {5, 7, 0, -4, 6, 1203}, - {7, 5, 0, -2, 8, 1210}, - {10, 11, 0, 0, 11, 1215}, - {10, 11, 0, 0, 11, 1237}, - {10, 11, 0, 0, 11, 1259}, - {6, 11, 0, 3, 7, 1281}, - {8, 12, 0, 0, 8, 1292}, - {8, 12, 0, 0, 8, 1304}, - {8, 12, 0, 0, 8, 1316}, - {8, 12, 0, 0, 8, 1328}, - {8, 11, 0, 0, 8, 1340}, - {8, 12, 0, 0, 8, 1351}, - {11, 11, 0, 0, 12, 1363}, - {6, 14, -1, 3, 8, 1385}, - {6, 12, -1, 0, 8, 1399}, - {6, 12, -1, 0, 8, 1411}, - {6, 12, -1, 0, 8, 1423}, - {6, 11, -1, 0, 8, 1435}, - {4, 12, -1, 0, 6, 1446}, - {4, 12, -1, 0, 6, 1458}, - {6, 12, 0, 0, 6, 1470}, - {5, 11, 0, 0, 6, 1482}, - {8, 11, 0, 0, 9, 1493}, - {7, 12, -1, 0, 9, 1504}, - {7, 12, -1, 0, 9, 1516}, - {7, 12, -1, 0, 9, 1528}, - {7, 12, -1, 0, 9, 1540}, - {7, 12, -1, 0, 9, 1552}, - {7, 11, -1, 0, 9, 1564}, - {6, 6, 0, -1, 7, 1575}, - {9, 11, 0, 0, 9, 1581}, - {7, 12, -1, 0, 9, 1603}, - {7, 12, -1, 0, 9, 1615}, - {7, 12, -1, 0, 9, 1627}, - {7, 11, -1, 0, 9, 1639}, - {8, 12, 0, 0, 8, 1650}, - {7, 11, -1, 0, 9, 1662}, - {6, 11, 0, 0, 7, 1673}, - {7, 12, 0, 0, 7, 1684}, - {7, 12, 0, 0, 7, 1696}, - {7, 12, 0, 0, 7, 1708}, - {7, 12, 0, 0, 7, 1720}, - {7, 11, 0, 0, 7, 1732}, - {7, 12, 0, 0, 7, 1743}, - {10, 8, 0, 0, 11, 1755}, - {6, 11, 0, 3, 7, 1771}, - {6, 12, 0, 0, 7, 1782}, - {6, 12, 0, 0, 7, 1794}, - {6, 12, 0, 0, 7, 1806}, - {6, 11, 0, 0, 7, 1818}, - {4, 12, 0, 0, 5, 1829}, - {4, 12, 0, 0, 5, 1841}, - {6, 12, 1, 0, 5, 1853}, - {5, 11, 1, 0, 5, 1865}, - {6, 11, 0, 0, 7, 1876}, - {6, 12, 0, 0, 7, 1887}, - {6, 12, 0, 0, 7, 1899}, - {6, 12, 0, 0, 7, 1911}, - {6, 12, 0, 0, 7, 1923}, - {6, 12, 0, 0, 7, 1935}, - {6, 11, 0, 0, 7, 1947}, - {6, 8, 0, 0, 7, 1958}, - {6, 10, 0, 1, 7, 1966}, - {6, 12, 0, 0, 7, 1976}, - {6, 12, 0, 0, 7, 1988}, - {6, 12, 0, 0, 7, 2000}, - {6, 11, 0, 0, 7, 2012}, - {6, 15, 0, 3, 7, 2023}, - {6, 14, 0, 3, 7, 2038}, - {6, 14, 0, 3, 7, 2052}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_helvb14.cpp b/intern/bmfont/intern/BMF_font_helvb14.cpp deleted file mode 100644 index c6d3e0ec701..00000000000 --- a/intern/bmfont/intern/BMF_font_helvb14.cpp +++ /dev/null @@ -1,623 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_HELVB14 - -static unsigned char bitmap_data[]= { - 0x00,0xc0,0xc0,0x00,0x00,0x80,0x80,0x80, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x90,0xd8,0xd8, - 0xd8,0x48,0x48,0x48,0xfe,0xfe,0x24,0x24, - 0x7f,0x7f,0x12,0x12,0x12,0x10,0x10,0x38, - 0x7c,0xd6,0xd6,0x16,0x3c,0x78,0xd0,0xd6, - 0xd6,0x7c,0x38,0x10,0x30,0xc0,0x11,0xe0, - 0x19,0x20,0x09,0x20,0x0d,0xe0,0x64,0xc0, - 0xf6,0x00,0x92,0x00,0x93,0x00,0xf1,0x00, - 0x61,0x80,0x71,0x80,0xff,0x00,0xce,0x00, - 0xc6,0x00,0xcf,0x00,0x79,0x00,0x30,0x00, - 0x38,0x00,0x6c,0x00,0x6c,0x00,0x7c,0x00, - 0x38,0x00,0x80,0x40,0xc0,0xc0,0x30,0x20, - 0x60,0x40,0x40,0xc0,0xc0,0xc0,0xc0,0xc0, - 0x40,0x40,0x60,0x20,0x30,0xc0,0x40,0x60, - 0x20,0x20,0x30,0x30,0x30,0x30,0x30,0x20, - 0x20,0x60,0x40,0xc0,0xd8,0x50,0x20,0xf8, - 0x20,0x20,0x30,0x30,0x30,0xfc,0xfc,0x30, - 0x30,0x30,0x80,0x40,0x40,0xc0,0xc0,0xfe, - 0xfe,0xc0,0xc0,0x80,0x80,0xc0,0x40,0x40, - 0x60,0x20,0x20,0x30,0x10,0x10,0x30,0x78, - 0x48,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0x48, - 0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x30,0xf0,0x30,0x10,0xfc,0xfc, - 0x60,0x60,0x30,0x18,0x18,0x0c,0xcc,0xcc, - 0x78,0x30,0x30,0x78,0xcc,0xcc,0x0c,0x38, - 0x38,0x0c,0xcc,0xcc,0x78,0x30,0x18,0x18, - 0xfc,0xfc,0x98,0x58,0x58,0x38,0x38,0x38, - 0x18,0x18,0x70,0xf8,0xcc,0x0c,0x0c,0xcc, - 0xfc,0xd8,0x60,0x60,0x7c,0x7c,0x30,0x78, - 0xcc,0xcc,0xcc,0xcc,0xfc,0xd8,0xc0,0x4c, - 0x7c,0x38,0x60,0x60,0x60,0x20,0x30,0x30, - 0x10,0x18,0x08,0x0c,0xfc,0xfc,0x70,0xf8, - 0xcc,0xcc,0xcc,0x78,0x30,0x78,0xcc,0xcc, - 0x7c,0x38,0x70,0xf8,0xc8,0x0c,0x6c,0xfc, - 0xcc,0xcc,0xcc,0xcc,0x78,0x30,0xc0,0xc0, - 0x00,0x00,0x00,0x00,0xc0,0xc0,0x80,0x40, - 0x40,0xc0,0xc0,0x00,0x00,0x00,0x00,0xc0, - 0xc0,0x02,0x0e,0x3c,0xf0,0xf0,0x3c,0x0e, - 0x02,0xfc,0xfc,0x00,0x00,0xfc,0xfc,0x80, - 0xe0,0x78,0x1e,0x1e,0x78,0xe0,0x80,0x30, - 0x30,0x00,0x30,0x30,0x18,0x18,0x0c,0xcc, - 0xcc,0x7c,0x38,0x0f,0x80,0x38,0x60,0x60, - 0x00,0x4d,0xc0,0xd3,0x20,0x93,0x30,0x91, - 0x10,0x91,0x90,0xc9,0x90,0x46,0x90,0x60, - 0x30,0x30,0x20,0x1c,0xc0,0x07,0x80,0xe1, - 0xc0,0x61,0x80,0x7f,0x80,0x7f,0x80,0x33, - 0x00,0x33,0x00,0x33,0x00,0x1e,0x00,0x1e, - 0x00,0x1e,0x00,0x0c,0x00,0x0c,0x00,0xfc, - 0xfe,0xc7,0xc3,0xc7,0xfe,0xfc,0xc6,0xc3, - 0xc7,0xfe,0xfc,0x3c,0x7e,0x63,0xc3,0xc0, - 0xc0,0xc0,0xc0,0xc3,0x63,0x7e,0x3c,0xfc, - 0xfe,0xc6,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3, - 0xc6,0xfe,0xfc,0xfe,0xfe,0xc0,0xc0,0xc0, - 0xfe,0xfe,0xc0,0xc0,0xc0,0xfe,0xfe,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xfc,0xfc,0xc0,0xc0, - 0xc0,0xfe,0xfe,0x3e,0x80,0x7f,0x80,0x63, - 0x80,0xc1,0x80,0xc7,0x80,0xc7,0x80,0xc0, - 0x00,0xc0,0x00,0xc1,0x80,0x63,0x80,0x7f, - 0x00,0x3e,0x00,0xc3,0xc3,0xc3,0xc3,0xc3, - 0xff,0xff,0xc3,0xc3,0xc3,0xc3,0xc3,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0x78,0xfc,0xcc,0xcc,0xcc, - 0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0x0c,0xc3, - 0x80,0xc7,0x00,0xc6,0x00,0xcc,0x00,0xdc, - 0x00,0xf8,0x00,0xf0,0x00,0xd8,0x00,0xcc, - 0x00,0xce,0x00,0xc7,0x00,0xc3,0x00,0xfe, - 0xfe,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xcc,0xc0,0xcc,0xc0,0xcc, - 0xc0,0xde,0xc0,0xde,0xc0,0xd2,0xc0,0xd2, - 0xc0,0xf3,0xc0,0xf3,0xc0,0xe1,0xc0,0xe1, - 0xc0,0xe1,0xc0,0xc3,0xc7,0xc7,0xcf,0xcf, - 0xdb,0xdb,0xf3,0xf3,0xe3,0xe3,0xc3,0x3e, - 0x00,0x7f,0x00,0x63,0x00,0xc1,0x80,0xc1, - 0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1, - 0x80,0x63,0x00,0x7f,0x00,0x3e,0x00,0xc0, - 0xc0,0xc0,0xc0,0xf8,0xfc,0xce,0xc6,0xc6, - 0xce,0xfc,0xf8,0x01,0x80,0x3d,0x80,0x7f, - 0x00,0x67,0x00,0xcd,0x80,0xcd,0x80,0xc1, - 0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80,0x63, - 0x00,0x7f,0x00,0x3e,0x00,0xc3,0xc3,0xc3, - 0xc3,0xc7,0xfe,0xfe,0xc7,0xc3,0xc7,0xfe, - 0xfc,0x3c,0x7e,0xe7,0xc3,0x07,0x1e,0x78, - 0xe0,0xc3,0xe7,0x7e,0x3c,0x18,0x18,0x18, - 0x18,0x18,0x18,0x18,0x18,0x18,0x18,0xff, - 0xff,0x3c,0x7e,0xe7,0xc3,0xc3,0xc3,0xc3, - 0xc3,0xc3,0xc3,0xc3,0xc3,0x18,0x18,0x18, - 0x3c,0x3c,0x24,0x66,0x66,0x66,0xc3,0xc3, - 0xc3,0x30,0xc0,0x30,0xc0,0x30,0xc0,0x39, - 0xc0,0x79,0xe0,0x69,0x60,0x6f,0x60,0x6f, - 0x60,0xc6,0x30,0xc6,0x30,0xc6,0x30,0xc6, - 0x30,0xe3,0x80,0x63,0x00,0x63,0x00,0x36, - 0x00,0x36,0x00,0x1c,0x00,0x1c,0x00,0x36, - 0x00,0x36,0x00,0x63,0x00,0x63,0x00,0xe3, - 0x80,0x0c,0x00,0x0c,0x00,0x0c,0x00,0x0c, - 0x00,0x0c,0x00,0x1e,0x00,0x1e,0x00,0x33, - 0x00,0x33,0x00,0x61,0x80,0x61,0x80,0xe1, - 0xc0,0xff,0xff,0x60,0x70,0x30,0x18,0x18, - 0x0c,0x0e,0x06,0xff,0xff,0xe0,0xe0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xe0,0xe0,0x10,0x10,0x30,0x20, - 0x20,0x60,0x40,0x40,0xc0,0x80,0x80,0xe0, - 0xe0,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0xe0,0xe0,0xcc,0xcc, - 0x48,0x78,0x78,0x30,0x30,0xfe,0xc0,0xc0, - 0x80,0x40,0x6c,0xfc,0xcc,0xcc,0x7c,0x1c, - 0xcc,0xfc,0x78,0xd8,0xfc,0xee,0xc6,0xc6, - 0xc6,0xee,0xfc,0xd8,0xc0,0xc0,0xc0,0x38, - 0x7c,0xec,0xc0,0xc0,0xc0,0xec,0x7c,0x38, - 0x36,0x7e,0xee,0xc6,0xc6,0xc6,0xee,0x7e, - 0x36,0x06,0x06,0x06,0x38,0x7c,0xcc,0xc0, - 0xfc,0xcc,0xcc,0x78,0x30,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0xf0,0xf0,0x60,0x70, - 0x30,0x78,0xfc,0xc6,0x36,0x7e,0xee,0xc6, - 0xc6,0xc6,0xee,0x7e,0x36,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xe6,0xfe,0xdc,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0x00,0xc0,0xc0,0xc0,0xe0,0x60, - 0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0x60,0x60,0xce,0xcc,0xd8,0xd8, - 0xf0,0xf0,0xd8,0xd8,0xcc,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xcc,0xc0,0xcc,0xc0, - 0xcc,0xc0,0xcc,0xc0,0xcc,0xc0,0xcc,0xc0, - 0xcc,0xc0,0xff,0xc0,0xdb,0x80,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xc6,0xe6,0xfe,0xdc,0x38, - 0x7c,0xee,0xc6,0xc6,0xc6,0xee,0x7c,0x38, - 0xc0,0xc0,0xc0,0xd8,0xfc,0xee,0xc6,0xc6, - 0xc6,0xee,0xfc,0xd8,0x06,0x06,0x06,0x36, - 0x7e,0xee,0xc6,0xc6,0xc6,0xee,0x7e,0x36, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xe0,0xf8, - 0xd0,0x78,0xfc,0xcc,0x1c,0x78,0xe0,0xcc, - 0xfc,0x78,0x30,0x70,0x60,0x60,0x60,0x60, - 0x60,0xf0,0xf0,0x60,0x60,0x76,0xfe,0xce, - 0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x30,0x30, - 0x30,0x78,0x78,0x48,0xcc,0xcc,0xcc,0x33, - 0x00,0x33,0x00,0x33,0x00,0x73,0x80,0x7f, - 0x80,0x4c,0x80,0x4c,0x80,0xcc,0xc0,0xcc, - 0xc0,0xc6,0xee,0x6c,0x38,0x38,0x38,0x6c, - 0xee,0xc6,0x60,0x70,0x10,0x18,0x38,0x38, - 0x2c,0x6c,0x6c,0xc6,0xc6,0xc6,0xfc,0xfc, - 0x60,0x60,0x30,0x18,0x18,0xfc,0xfc,0x30, - 0x70,0x60,0x60,0x60,0x60,0x60,0xc0,0x60, - 0x60,0x60,0x60,0x60,0x70,0x30,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xc0,0xe0,0x60, - 0x60,0x60,0x60,0x60,0x30,0x60,0x60,0x60, - 0x60,0x60,0xe0,0xc0,0x98,0xfc,0x64,0xc0, - 0xc0,0xc0,0xc0,0xc0,0x80,0x80,0x80,0x00, - 0x00,0xc0,0xc0,0x20,0x20,0x38,0x7c,0xec, - 0xe0,0xd0,0xd0,0xdc,0x7c,0x38,0x08,0x08, - 0xcc,0xfe,0x70,0x30,0x30,0xf8,0x60,0xc0, - 0xcc,0xcc,0x7c,0x38,0xcc,0x78,0xcc,0xcc, - 0xcc,0xcc,0x78,0xcc,0x18,0x18,0x18,0x7e, - 0x18,0x7e,0x18,0x3c,0x24,0x66,0x42,0xc3, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x00, - 0x00,0x80,0x80,0x80,0x80,0x80,0x80,0x38, - 0x7c,0x6c,0x0c,0x18,0x7c,0xe6,0xc6,0xce, - 0x7c,0x30,0x60,0x6c,0x7c,0x38,0xd8,0xd8, - 0x1e,0x00,0x33,0x00,0x40,0x80,0xde,0xc0, - 0xb3,0x40,0xa0,0x40,0xa0,0x40,0xb3,0x40, - 0xde,0xc0,0x40,0x80,0x33,0x00,0x1e,0x00, - 0xf0,0x00,0xd0,0xb0,0x70,0xb0,0x60,0x24, - 0x6c,0xd8,0xd8,0x6c,0x24,0x06,0x06,0x06, - 0xfe,0xfe,0xe0,0xe0,0x1e,0x00,0x33,0x00, - 0x40,0x80,0xd2,0xc0,0x96,0x40,0x9c,0x40, - 0x92,0x40,0x92,0x40,0xdc,0xc0,0x40,0x80, - 0x33,0x00,0x1e,0x00,0xf0,0x60,0x90,0x90, - 0x90,0x60,0xfc,0xfc,0x00,0x30,0x30,0x30, - 0xfc,0xfc,0x30,0x30,0x30,0xf0,0x80,0x40, - 0x20,0x90,0xb0,0x60,0x60,0xb0,0x10,0x60, - 0x30,0x90,0x60,0xc0,0x60,0xc0,0xc0,0xc0, - 0xf6,0xfe,0xce,0xc6,0xc6,0xc6,0xc6,0xc6, - 0xc6,0x14,0x14,0x14,0x14,0x14,0x14,0x14, - 0x14,0x74,0xf4,0xf4,0xf4,0xf4,0x74,0x3e, - 0xc0,0xc0,0xc0,0x60,0x40,0x20,0x20,0x20, - 0x20,0x20,0xe0,0x20,0xf0,0x00,0x60,0x90, - 0x90,0x90,0x60,0x90,0xd8,0x6c,0x6c,0xd8, - 0x90,0x20,0x40,0x10,0x40,0x13,0xe0,0x0a, - 0x40,0x09,0x40,0x24,0xc0,0x24,0x40,0x22, - 0x00,0x22,0x00,0x21,0x00,0xe1,0x00,0x20, - 0x80,0x21,0xe0,0x11,0x00,0x10,0x80,0x08, - 0x40,0x09,0x20,0x25,0x60,0x24,0xc0,0x22, - 0x00,0x22,0x00,0x21,0x00,0xe1,0x00,0x20, - 0x80,0x20,0x40,0x10,0x40,0x13,0xe0,0x0a, - 0x40,0x09,0x40,0x64,0xc0,0xb4,0x40,0x12, - 0x00,0x62,0x00,0x31,0x00,0x91,0x00,0x60, - 0x80,0x70,0xf8,0xcc,0xcc,0xc0,0x60,0x60, - 0x30,0x30,0x00,0x30,0x30,0xe1,0xc0,0x61, - 0x80,0x7f,0x80,0x3f,0x00,0x33,0x00,0x33, - 0x00,0x12,0x00,0x1e,0x00,0x1e,0x00,0x0c, - 0x00,0x0c,0x00,0x00,0x00,0x0c,0x00,0x18, - 0x00,0xe1,0xc0,0x61,0x80,0x7f,0x80,0x3f, - 0x00,0x33,0x00,0x33,0x00,0x12,0x00,0x1e, - 0x00,0x1e,0x00,0x0c,0x00,0x0c,0x00,0x00, - 0x00,0x0c,0x00,0x06,0x00,0xe1,0xc0,0x61, - 0x80,0x7f,0x80,0x3f,0x00,0x33,0x00,0x33, - 0x00,0x12,0x00,0x1e,0x00,0x1e,0x00,0x0c, - 0x00,0x0c,0x00,0x00,0x00,0x36,0x00,0x1c, - 0x00,0xe1,0xc0,0x61,0x80,0x7f,0x80,0x3f, - 0x00,0x33,0x00,0x33,0x00,0x12,0x00,0x1e, - 0x00,0x1e,0x00,0x0c,0x00,0x0c,0x00,0x00, - 0x00,0x16,0x00,0x0d,0x00,0xe1,0xc0,0x61, - 0x80,0x7f,0x80,0x3f,0x00,0x33,0x00,0x33, - 0x00,0x12,0x00,0x1e,0x00,0x1e,0x00,0x0c, - 0x00,0x0c,0x00,0x00,0x00,0x36,0x00,0x36, - 0x00,0xe1,0xc0,0x61,0x80,0x7f,0x80,0x3f, - 0x00,0x33,0x00,0x33,0x00,0x12,0x00,0x1e, - 0x00,0x1e,0x00,0x0c,0x00,0x0c,0x00,0x0c, - 0x00,0x0a,0x00,0x06,0x00,0xe3,0xf8,0x63, - 0xf8,0x7f,0x00,0x7f,0x00,0x33,0x00,0x33, - 0xf8,0x3b,0xf8,0x1b,0x00,0x1b,0x00,0x1f, - 0x00,0x0f,0xf8,0x0f,0xf8,0x18,0x0c,0x08, - 0x3c,0x7e,0x63,0xc3,0xc0,0xc0,0xc0,0xc0, - 0xc3,0x63,0x7e,0x3c,0xfe,0xfe,0xc0,0xc0, - 0xc0,0xfe,0xfe,0xc0,0xc0,0xfe,0xfe,0x00, - 0x18,0x30,0xfe,0xfe,0xc0,0xc0,0xc0,0xfe, - 0xfe,0xc0,0xc0,0xfe,0xfe,0x00,0x18,0x0c, - 0xfe,0xfe,0xc0,0xc0,0xc0,0xfe,0xfe,0xc0, - 0xc0,0xfe,0xfe,0x00,0x6c,0x38,0xfe,0xfe, - 0xc0,0xc0,0xc0,0xfe,0xfe,0xc0,0xc0,0xfe, - 0xfe,0x00,0x6c,0x6c,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x60,0x60,0x00, - 0x60,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0xc0,0x60, - 0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x30,0x00,0xd8,0x70,0x30,0x30, - 0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x00,0xd8,0xd8,0x7e,0x00,0x7f,0x00, - 0x63,0x00,0x61,0x80,0x61,0x80,0xf9,0x80, - 0xf9,0x80,0x61,0x80,0x61,0x80,0x63,0x00, - 0x7f,0x00,0x7e,0x00,0xc3,0xc7,0xc7,0xcf, - 0xcb,0xdb,0xd3,0xf3,0xe3,0xe3,0xc3,0x00, - 0x2c,0x1a,0x3e,0x00,0x7f,0x00,0x63,0x00, - 0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80, - 0xc1,0x80,0x63,0x00,0x7f,0x00,0x3e,0x00, - 0x00,0x00,0x0c,0x00,0x18,0x00,0x3e,0x00, - 0x7f,0x00,0x63,0x00,0xc1,0x80,0xc1,0x80, - 0xc1,0x80,0xc1,0x80,0xc1,0x80,0x63,0x00, - 0x7f,0x00,0x3e,0x00,0x00,0x00,0x18,0x00, - 0x0c,0x00,0x3e,0x00,0x7f,0x00,0x63,0x00, - 0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80, - 0xc1,0x80,0x63,0x00,0x7f,0x00,0x3e,0x00, - 0x00,0x00,0x36,0x00,0x1c,0x00,0x3e,0x00, - 0x7f,0x00,0x63,0x00,0xc1,0x80,0xc1,0x80, - 0xc1,0x80,0xc1,0x80,0xc1,0x80,0x63,0x00, - 0x7f,0x00,0x3e,0x00,0x00,0x00,0x2c,0x00, - 0x1a,0x00,0x3e,0x00,0x7f,0x00,0x63,0x00, - 0xc1,0x80,0xc1,0x80,0xc1,0x80,0xc1,0x80, - 0xc1,0x80,0x63,0x00,0x7f,0x00,0x3e,0x00, - 0x00,0x00,0x36,0x00,0x36,0x00,0x84,0xcc, - 0x78,0x30,0x30,0x78,0xcc,0x84,0xbe,0x00, - 0xff,0x00,0x63,0x00,0xf1,0x80,0xd1,0x80, - 0xc9,0x80,0xc9,0x80,0xc5,0x80,0xc7,0x80, - 0x63,0x00,0x7f,0x80,0x3e,0x80,0x3c,0x7e, - 0xe7,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3, - 0xc3,0x00,0x18,0x30,0x3c,0x7e,0xe7,0xc3, - 0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0xc3,0x00, - 0x18,0x0c,0x3c,0x7e,0xe7,0xc3,0xc3,0xc3, - 0xc3,0xc3,0xc3,0xc3,0xc3,0x00,0x6c,0x38, - 0x3c,0x7e,0xe7,0xc3,0xc3,0xc3,0xc3,0xc3, - 0xc3,0xc3,0xc3,0x00,0x6c,0x6c,0x0c,0x00, - 0x0c,0x00,0x0c,0x00,0x0c,0x00,0x0c,0x00, - 0x1e,0x00,0x1e,0x00,0x33,0x00,0x33,0x00, - 0x61,0x80,0xe1,0xc0,0x00,0x00,0x0c,0x00, - 0x06,0x00,0xc0,0xc0,0xf8,0xfc,0xce,0xc6, - 0xc6,0xce,0xfc,0xf8,0xc0,0xc0,0xd8,0xdc, - 0xc6,0xc6,0xc6,0xdc,0xd8,0xcc,0xcc,0xcc, - 0x7c,0x38,0x6c,0xfc,0xcc,0xcc,0x7c,0x1c, - 0xcc,0xfc,0x78,0x00,0x30,0x60,0x6c,0xfc, - 0xcc,0xcc,0x7c,0x1c,0xcc,0xfc,0x78,0x00, - 0x30,0x18,0x6c,0xfc,0xcc,0xcc,0x7c,0x1c, - 0xcc,0xfc,0x78,0x00,0xd8,0x70,0x6c,0xfc, - 0xcc,0xcc,0x7c,0x1c,0xcc,0xfc,0x78,0x00, - 0x58,0x34,0x6c,0xfc,0xcc,0xcc,0x7c,0x1c, - 0xcc,0xfc,0x78,0x00,0xd8,0xd8,0x6c,0xfc, - 0xcc,0xcc,0x7c,0x1c,0xcc,0xfc,0x78,0x00, - 0x30,0x28,0x18,0x73,0x80,0xff,0xc0,0xcc, - 0xc0,0xcc,0x00,0x7f,0xc0,0x1c,0xc0,0xcc, - 0xc0,0xff,0xc0,0x73,0x80,0x30,0x18,0x10, - 0x38,0x7c,0xec,0xc0,0xc0,0xc0,0xec,0x7c, - 0x38,0x38,0x7c,0xcc,0xc0,0xfc,0xcc,0xcc, - 0x78,0x30,0x00,0x30,0x60,0x38,0x7c,0xcc, - 0xc0,0xfc,0xcc,0xcc,0x78,0x30,0x00,0x30, - 0x18,0x38,0x7c,0xcc,0xc0,0xfc,0xcc,0xcc, - 0x78,0x30,0x00,0x6c,0x38,0x38,0x7c,0xcc, - 0xc0,0xfc,0xcc,0xcc,0x78,0x30,0x00,0xd8, - 0xd8,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x00,0x60,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0xc0, - 0x60,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x00,0xd8,0x70,0x30,0x30,0x30, - 0x30,0x30,0x30,0x30,0x30,0x30,0x00,0xd8, - 0xd8,0x38,0x7c,0xee,0xc6,0xc6,0xc6,0xee, - 0x7c,0x3c,0xf8,0x38,0x6c,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xe6,0xfe,0xdc,0x00,0x58, - 0x34,0x38,0x7c,0xee,0xc6,0xc6,0xc6,0xee, - 0x7c,0x38,0x00,0x18,0x30,0x38,0x7c,0xee, - 0xc6,0xc6,0xc6,0xee,0x7c,0x38,0x00,0x30, - 0x18,0x38,0x7c,0xee,0xc6,0xc6,0xc6,0xee, - 0x7c,0x38,0x00,0x6c,0x38,0x38,0x7c,0xee, - 0xc6,0xc6,0xc6,0xee,0x7c,0x38,0x00,0x58, - 0x34,0x38,0x7c,0xee,0xc6,0xc6,0xc6,0xee, - 0x7c,0x38,0x00,0x6c,0x6c,0x30,0x30,0x00, - 0xfc,0xfc,0x00,0x30,0x30,0xb8,0x7c,0xee, - 0xe6,0xd6,0xce,0xee,0x7c,0x3a,0x76,0xfe, - 0xce,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x00, - 0x18,0x30,0x76,0xfe,0xce,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0x00,0x30,0x18,0x76,0xfe, - 0xce,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x00, - 0x6c,0x38,0x76,0xfe,0xce,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0x00,0x6c,0x6c,0x60,0x70, - 0x10,0x18,0x38,0x38,0x2c,0x6c,0x6c,0xc6, - 0xc6,0xc6,0x00,0x30,0x18,0xc0,0xc0,0xc0, - 0xd8,0xfc,0xee,0xc6,0xc6,0xc6,0xee,0xfc, - 0xd8,0xc0,0xc0,0xc0,0x60,0x70,0x10,0x18, - 0x38,0x38,0x2c,0x6c,0x6c,0xc6,0xc6,0xc6, - 0x00,0x6c,0x6c, -}; - -BMF_FontData BMF_font_helvb14 = { - -2, -3, - 12, 14, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 0}, - {2, 12, -1, 0, 4, 1}, - {5, 4, 0, -8, 6, 13}, - {8, 12, 1, 0, 7, 17}, - {7, 15, 0, 2, 7, 29}, - {11, 11, 0, 0, 12, 44}, - {9, 12, 0, 0, 9, 66}, - {2, 4, -1, -8, 4, 90}, - {4, 15, 0, 3, 4, 94}, - {4, 15, 1, 3, 4, 109}, - {5, 6, 0, -6, 5, 124}, - {6, 8, -1, 0, 8, 130}, - {2, 5, 0, 3, 3, 138}, - {7, 2, 0, -3, 8, 143}, - {2, 2, 0, 0, 3, 145}, - {4, 11, 0, 0, 4, 147}, - {6, 12, 0, 0, 7, 158}, - {4, 12, 0, 0, 7, 170}, - {6, 12, 0, 0, 7, 182}, - {6, 12, 0, 0, 7, 194}, - {6, 12, 0, 0, 7, 206}, - {6, 12, 0, 0, 7, 218}, - {6, 12, 0, 0, 7, 230}, - {6, 12, 0, 0, 7, 242}, - {6, 12, 0, 0, 7, 254}, - {6, 12, 0, 0, 7, 266}, - {2, 8, -1, 0, 4, 278}, - {2, 11, -1, 3, 4, 286}, - {7, 8, 0, 0, 8, 297}, - {6, 6, -1, -1, 8, 305}, - {7, 8, 0, 0, 8, 311}, - {6, 12, -1, 0, 8, 319}, - {12, 14, 0, 2, 13, 331}, - {10, 12, 1, 0, 9, 359}, - {8, 12, 0, 0, 9, 383}, - {8, 12, 0, 0, 9, 395}, - {8, 12, 0, 0, 9, 407}, - {7, 12, 0, 0, 8, 419}, - {7, 12, -1, 0, 8, 431}, - {9, 12, 0, 0, 10, 443}, - {8, 12, 0, 0, 9, 467}, - {2, 12, -1, 0, 5, 479}, - {6, 12, 0, 0, 7, 491}, - {9, 12, -1, 0, 10, 503}, - {7, 12, -1, 0, 8, 527}, - {10, 12, 0, 0, 11, 539}, - {8, 12, 0, 0, 9, 563}, - {9, 12, 0, 0, 10, 575}, - {7, 12, -1, 0, 9, 599}, - {9, 13, 0, 1, 10, 611}, - {8, 12, 0, 0, 9, 637}, - {8, 12, 0, 0, 9, 649}, - {8, 12, 0, 0, 9, 661}, - {8, 12, 0, 0, 9, 673}, - {8, 12, 0, 0, 9, 685}, - {12, 12, 0, 0, 13, 697}, - {9, 12, 0, 0, 10, 721}, - {10, 12, 1, 0, 9, 745}, - {8, 12, 0, 0, 9, 769}, - {3, 15, 0, 3, 4, 781}, - {4, 11, 0, 0, 4, 796}, - {3, 15, 0, 3, 4, 807}, - {6, 7, -1, -4, 8, 822}, - {7, 1, 0, 3, 7, 829}, - {2, 4, -1, -8, 4, 830}, - {6, 9, 0, 0, 7, 834}, - {7, 12, 0, 0, 8, 843}, - {6, 9, 0, 0, 7, 855}, - {7, 12, 0, 0, 8, 864}, - {6, 9, 0, 0, 7, 876}, - {4, 12, 0, 0, 5, 885}, - {7, 12, 0, 3, 8, 897}, - {7, 12, 0, 0, 8, 909}, - {2, 12, 0, 0, 3, 921}, - {3, 15, 1, 3, 3, 933}, - {7, 12, 0, 0, 7, 948}, - {2, 12, 0, 0, 3, 960}, - {10, 9, 0, 0, 11, 972}, - {7, 9, 0, 0, 8, 990}, - {7, 9, 0, 0, 8, 999}, - {7, 12, 0, 3, 8, 1008}, - {7, 12, 0, 3, 8, 1020}, - {5, 9, 0, 0, 5, 1032}, - {6, 9, 0, 0, 7, 1041}, - {4, 11, 0, 0, 5, 1050}, - {7, 9, 0, 0, 8, 1061}, - {6, 9, 0, 0, 7, 1070}, - {10, 9, 0, 0, 11, 1079}, - {7, 9, 0, 0, 8, 1097}, - {7, 12, 0, 3, 8, 1106}, - {6, 9, 0, 0, 7, 1118}, - {4, 15, 0, 3, 5, 1127}, - {1, 15, -1, 3, 4, 1142}, - {4, 15, 0, 3, 5, 1157}, - {6, 3, -1, -3, 8, 1172}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {2, 12, -1, 3, 4, 1175}, - {6, 13, 0, 2, 7, 1187}, - {7, 12, 0, 0, 7, 1200}, - {6, 8, 0, -2, 7, 1212}, - {8, 12, 1, 0, 7, 1220}, - {1, 15, -1, 3, 4, 1232}, - {7, 15, 0, 3, 7, 1247}, - {5, 2, 1, -10, 4, 1262}, - {10, 12, 0, 0, 10, 1264}, - {4, 7, 0, -5, 5, 1288}, - {6, 6, 0, -1, 7, 1295}, - {7, 5, 0, -2, 8, 1301}, - {3, 2, 0, -3, 4, 1306}, - {10, 12, 0, 0, 10, 1308}, - {4, 1, 0, -11, 4, 1332}, - {4, 5, 0, -7, 5, 1333}, - {6, 11, -1, 0, 8, 1338}, - {4, 7, 0, -5, 4, 1349}, - {4, 7, 0, -5, 4, 1356}, - {3, 2, -1, -10, 4, 1363}, - {7, 12, 0, 3, 8, 1365}, - {7, 15, 0, 3, 7, 1377}, - {2, 2, 0, -5, 3, 1392}, - {3, 3, 0, 3, 4, 1394}, - {3, 7, 0, -5, 4, 1397}, - {4, 7, 0, -5, 5, 1404}, - {6, 6, 0, -1, 7, 1411}, - {11, 12, 1, 0, 11, 1417}, - {11, 12, 1, 0, 11, 1441}, - {11, 12, 0, 0, 11, 1465}, - {6, 12, -1, 3, 8, 1489}, - {10, 14, 1, 0, 9, 1501}, - {10, 14, 1, 0, 9, 1529}, - {10, 14, 1, 0, 9, 1557}, - {10, 14, 1, 0, 9, 1585}, - {10, 14, 1, 0, 9, 1613}, - {10, 14, 1, 0, 9, 1641}, - {13, 12, 1, 0, 13, 1669}, - {8, 15, 0, 3, 9, 1693}, - {7, 14, 0, 0, 8, 1708}, - {7, 14, 0, 0, 8, 1722}, - {7, 14, 0, 0, 8, 1736}, - {7, 14, 0, 0, 8, 1750}, - {3, 14, 0, 0, 5, 1764}, - {3, 14, -1, 0, 5, 1778}, - {5, 14, 1, 0, 5, 1792}, - {5, 14, 1, 0, 5, 1806}, - {9, 12, 1, 0, 9, 1820}, - {8, 14, 0, 0, 9, 1844}, - {9, 14, 0, 0, 10, 1858}, - {9, 14, 0, 0, 10, 1886}, - {9, 14, 0, 0, 10, 1914}, - {9, 14, 0, 0, 10, 1942}, - {9, 14, 0, 0, 10, 1970}, - {6, 8, -1, 0, 8, 1998}, - {9, 12, 0, 0, 10, 2006}, - {8, 14, 0, 0, 9, 2030}, - {8, 14, 0, 0, 9, 2044}, - {8, 14, 0, 0, 9, 2058}, - {8, 14, 0, 0, 9, 2072}, - {10, 14, 1, 0, 9, 2086}, - {7, 12, -1, 0, 9, 2114}, - {7, 12, 0, 0, 8, 2126}, - {6, 12, 0, 0, 7, 2138}, - {6, 12, 0, 0, 7, 2150}, - {6, 12, 0, 0, 7, 2162}, - {6, 12, 0, 0, 7, 2174}, - {6, 12, 0, 0, 7, 2186}, - {6, 13, 0, 0, 7, 2198}, - {10, 9, 0, 0, 11, 2211}, - {6, 12, 0, 3, 7, 2229}, - {6, 12, 0, 0, 7, 2241}, - {6, 12, 0, 0, 7, 2253}, - {6, 12, 0, 0, 7, 2265}, - {6, 12, 0, 0, 7, 2277}, - {3, 12, 1, 0, 3, 2289}, - {3, 12, 0, 0, 3, 2301}, - {5, 12, 2, 0, 3, 2313}, - {5, 12, 2, 0, 3, 2325}, - {7, 12, 0, 0, 8, 2337}, - {7, 12, 0, 0, 8, 2349}, - {7, 12, 0, 0, 8, 2361}, - {7, 12, 0, 0, 8, 2373}, - {7, 12, 0, 0, 8, 2385}, - {7, 12, 0, 0, 8, 2397}, - {7, 12, 0, 0, 8, 2409}, - {6, 8, -1, 0, 8, 2421}, - {7, 9, 0, 0, 8, 2429}, - {7, 12, 0, 0, 8, 2438}, - {7, 12, 0, 0, 8, 2450}, - {7, 12, 0, 0, 8, 2462}, - {7, 12, 0, 0, 8, 2474}, - {7, 15, 0, 3, 8, 2486}, - {7, 15, 0, 3, 8, 2501}, - {7, 15, 0, 3, 8, 2516}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_helvb8.cpp b/intern/bmfont/intern/BMF_font_helvb8.cpp deleted file mode 100644 index fb56049c8fe..00000000000 --- a/intern/bmfont/intern/BMF_font_helvb8.cpp +++ /dev/null @@ -1,455 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_HELVB8 - -static unsigned char bitmap_data[]= { - 0x00,0x80,0x00,0x80,0x80,0x80,0x80,0xa0, - 0xa0,0xa0,0x50,0xf8,0x50,0xf8,0x50,0x40, - 0xe0,0x10,0x60,0x80,0x70,0x20,0x5c,0x54, - 0x2c,0xd0,0xa8,0xe8,0x58,0xb0,0xa8,0x48, - 0xa0,0x40,0x80,0x80,0x80,0x40,0x80,0x80, - 0x80,0x80,0x80,0x40,0x80,0x40,0x40,0x40, - 0x40,0x40,0x80,0x40,0xe0,0x40,0x20,0x20, - 0xf8,0x20,0x20,0x80,0x40,0x40,0xf0,0x80, - 0x80,0x80,0x80,0x80,0x40,0x40,0x40,0x60, - 0x90,0x90,0x90,0x90,0x60,0x40,0x40,0x40, - 0x40,0xc0,0x40,0xf0,0x40,0x20,0x10,0x90, - 0x60,0xc0,0x20,0x20,0xc0,0x20,0xc0,0x20, - 0x20,0xf0,0x60,0x20,0x20,0xc0,0x20,0x20, - 0xc0,0x80,0xe0,0x60,0x90,0x90,0xe0,0x80, - 0x70,0x40,0x40,0x40,0x20,0x10,0xf0,0x60, - 0x90,0x90,0x60,0x90,0x60,0x60,0x10,0x70, - 0x90,0x90,0x60,0x80,0x00,0x00,0x80,0x80, - 0x40,0x40,0x00,0x00,0x40,0x20,0x40,0x80, - 0x40,0x20,0xe0,0x00,0xe0,0x80,0x40,0x20, - 0x40,0x80,0x40,0x00,0x40,0x20,0xc0,0x78, - 0x80,0x9e,0xa5,0x99,0x41,0x3e,0x88,0x88, - 0x70,0x50,0x20,0x20,0xe0,0x90,0x90,0xe0, - 0x90,0xe0,0x70,0x88,0x80,0x80,0x88,0x70, - 0xf0,0x88,0x88,0x88,0x88,0xf0,0xf0,0x80, - 0x80,0xe0,0x80,0xf0,0x80,0x80,0x80,0xe0, - 0x80,0xf0,0x70,0x88,0x88,0x98,0x80,0x70, - 0x88,0x88,0x88,0xf8,0x88,0x88,0x80,0x80, - 0x80,0x80,0x80,0x80,0x40,0xa0,0x20,0x20, - 0x20,0x20,0x90,0x90,0xe0,0xc0,0xa0,0x90, - 0xe0,0x80,0x80,0x80,0x80,0x80,0xa8,0xa8, - 0xa8,0xa8,0xd8,0x88,0x88,0x98,0xa8,0xa8, - 0xc8,0x88,0x70,0x88,0x88,0x88,0x88,0x70, - 0x80,0x80,0xe0,0x90,0x90,0xe0,0x10,0x20, - 0x70,0x88,0x88,0x88,0x88,0x70,0x90,0x90, - 0xe0,0x90,0x90,0xe0,0xe0,0x10,0x10,0xe0, - 0x80,0x70,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x70,0x88,0x88,0x88,0x88,0x88,0x40,0xa0, - 0x90,0x90,0x90,0x90,0x48,0x48,0x6c,0x92, - 0x92,0x92,0x90,0x90,0x60,0x60,0x90,0x90, - 0x20,0x20,0x30,0x48,0x48,0xc8,0xf0,0x80, - 0x40,0x20,0x10,0xf0,0xc0,0x80,0x80,0x80, - 0x80,0x80,0xc0,0x40,0x40,0x40,0x40,0x80, - 0x80,0x80,0xc0,0x40,0x40,0x40,0x40,0x40, - 0xc0,0x88,0x50,0x20,0xf8,0x80,0x80,0x80, - 0xd0,0xa0,0xe0,0x20,0xc0,0xe0,0x90,0x90, - 0x90,0xe0,0x80,0x80,0x60,0x80,0x80,0x80, - 0x60,0x70,0x90,0x90,0x90,0x70,0x10,0x10, - 0x60,0x80,0xe0,0xa0,0x40,0x40,0x40,0x40, - 0x40,0xe0,0x40,0x20,0x60,0x10,0x70,0x90, - 0x90,0x70,0x90,0x90,0x90,0x90,0xe0,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x80,0x40,0x40,0x40,0x40,0x40,0x40,0x00, - 0x40,0xa0,0xa0,0xc0,0xc0,0xa0,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xa8, - 0xa8,0xa8,0xa8,0xf0,0x90,0x90,0x90,0x90, - 0xe0,0x60,0x90,0x90,0x90,0x60,0x80,0xe0, - 0x90,0x90,0x90,0xe0,0x10,0x70,0x90,0x90, - 0x90,0x70,0x80,0x80,0x80,0xc0,0xa0,0xc0, - 0x20,0x60,0x80,0x60,0x40,0x40,0x40,0x40, - 0xe0,0x40,0x40,0x60,0xa0,0xa0,0xa0,0xa0, - 0x40,0xa0,0x90,0x90,0x90,0x50,0x50,0xa8, - 0xa8,0xa8,0x90,0x90,0x60,0x90,0x90,0x80, - 0x40,0x60,0x90,0x90,0x90,0xe0,0x80,0x40, - 0x20,0xe0,0x20,0x40,0x40,0xc0,0x40,0x40, - 0x20,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x40,0x40,0x60,0x40,0x40,0x80,0xb0, - 0x48,0x00,0x80,0x80,0x80,0x80,0x80,0x00, - 0x80,0x40,0x40,0xa0,0x80,0xa0,0x40,0x40, - 0xf0,0x40,0x40,0xe0,0x40,0x30,0x88,0x70, - 0x50,0x70,0x88,0x20,0x20,0xf8,0x50,0x88, - 0x80,0x80,0x80,0x00,0x80,0x80,0x80,0xe0, - 0x10,0x30,0x60,0x90,0x60,0x80,0x70,0x90, - 0x78,0x84,0xb4,0xa4,0xb4,0x84,0x78,0xe0, - 0x00,0xe0,0x20,0xc0,0x50,0xa0,0x50,0x10, - 0x10,0xf0,0xc0,0x78,0x84,0xac,0xb4,0xb4, - 0x84,0x78,0xe0,0x40,0xa0,0x40,0xf0,0x00, - 0x20,0xf0,0x20,0xc0,0x80,0x40,0x80,0xc0, - 0x20,0x60,0xe0,0x80,0x40,0x80,0x80,0xe0, - 0xa0,0xa0,0xa0,0x50,0x50,0x50,0x50,0xd0, - 0xd0,0xd0,0x78,0x80,0x80,0x80,0x40,0x40, - 0x40,0xc0,0x40,0xe0,0x00,0xe0,0xa0,0xe0, - 0xa0,0x50,0xa0,0x04,0x5e,0x2c,0x54,0x48, - 0xc4,0x40,0x0e,0x44,0x22,0x5c,0x48,0xc4, - 0x40,0x04,0x5e,0x2c,0xd4,0x28,0x64,0xe0, - 0x60,0x90,0x40,0x20,0x00,0x20,0x88,0x88, - 0x70,0x50,0x20,0x20,0x00,0x20,0x40,0x88, - 0x88,0x70,0x50,0x20,0x20,0x00,0x20,0x10, - 0x88,0x88,0x70,0x50,0x20,0x20,0x00,0x50, - 0x20,0x88,0x88,0x70,0x50,0x20,0x20,0x00, - 0x50,0x28,0x88,0x88,0x70,0x50,0x20,0x20, - 0x00,0x50,0x88,0x88,0x70,0x50,0x20,0x20, - 0x20,0x50,0x20,0x9e,0x90,0x7c,0x50,0x30, - 0x3e,0x80,0x40,0x70,0x88,0x80,0x88,0x88, - 0x70,0xf0,0x80,0x80,0xe0,0x80,0xf0,0x00, - 0x20,0x40,0xf0,0x80,0x80,0xe0,0x80,0xf0, - 0x00,0x40,0x20,0xf0,0x80,0x80,0xe0,0x80, - 0xf0,0x00,0xa0,0x40,0xf0,0x80,0x80,0xe0, - 0x80,0xf0,0x00,0xa0,0x40,0x40,0x40,0x40, - 0x40,0x40,0x00,0x40,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x00,0x80,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x00,0xa0,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x00,0xa0,0x70, - 0x48,0x48,0xe8,0x48,0x70,0x88,0x98,0xa8, - 0xa8,0xc8,0x88,0x00,0x50,0x28,0x70,0x88, - 0x88,0x88,0x88,0x70,0x00,0x20,0x40,0x70, - 0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x10, - 0x70,0x88,0x88,0x88,0x88,0x70,0x00,0x50, - 0x20,0x70,0x88,0x88,0x88,0x88,0x70,0x00, - 0x50,0x28,0x70,0x88,0x88,0x88,0x88,0x70, - 0x00,0x50,0x90,0x60,0x60,0x90,0x80,0xf0, - 0xc8,0xa8,0x98,0x88,0x78,0x08,0x70,0x88, - 0x88,0x88,0x88,0x88,0x00,0x20,0x40,0x70, - 0x88,0x88,0x88,0x88,0x88,0x00,0x20,0x10, - 0x70,0x88,0x88,0x88,0x88,0x88,0x00,0x50, - 0x20,0x70,0x88,0x88,0x88,0x88,0x88,0x00, - 0x50,0x20,0x20,0x30,0x48,0x48,0xc8,0x00, - 0x10,0x08,0x80,0xf0,0x88,0x88,0xf0,0x80, - 0x80,0xa0,0x90,0x90,0xa0,0x90,0x60,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0x40,0x80,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0x40,0x20,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0xa0,0x40,0x68, - 0x50,0x70,0x10,0x60,0x00,0xb0,0x68,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0xa0,0xd0,0xa0, - 0xe0,0x20,0xc0,0x40,0xa0,0x40,0xd8,0xa0, - 0xf8,0x28,0xd0,0x80,0x40,0x60,0x80,0x80, - 0x80,0x60,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0x20,0x40,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0x40,0x20,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0xa0,0x40,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0xa0,0x40,0x40,0x40,0x40,0x40,0x00,0x40, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0xa0, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0xa0, - 0x60,0x90,0x90,0x90,0x70,0xa0,0x60,0x90, - 0x90,0x90,0x90,0x90,0xe0,0x00,0xa0,0x50, - 0x60,0x90,0x90,0x90,0x60,0x00,0x20,0x40, - 0x60,0x90,0x90,0x90,0x60,0x00,0x20,0x10, - 0x60,0x90,0x90,0x90,0x60,0x00,0xa0,0x40, - 0x60,0x90,0x90,0x90,0x60,0x00,0xa0,0x50, - 0x60,0x90,0x90,0x90,0x60,0x00,0x90,0x20, - 0x00,0xf0,0x00,0x20,0x80,0x70,0x68,0x58, - 0x48,0x3c,0x02,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0x40,0x80,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0x40,0x20,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0xa0,0x40,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0xa0,0x80,0x40,0x60,0x90,0x90,0x90, - 0x00,0x20,0x10,0x80,0xe0,0x90,0x90,0x90, - 0xe0,0x80,0x80,0x40,0x60,0x90,0x90,0x90, - 0x00,0x50, -}; - -BMF_FontData BMF_font_helvb8 = { - 0, -2, - 9, 9, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 8, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 2, 0}, - {1, 6, -1, 0, 2, 1}, - {3, 3, -1, -3, 3, 7}, - {5, 5, 0, 0, 5, 10}, - {4, 7, -1, 1, 5, 15}, - {6, 6, -1, 0, 7, 22}, - {5, 6, -1, 0, 6, 28}, - {1, 3, -1, -3, 2, 34}, - {2, 7, -1, 1, 3, 37}, - {2, 7, -1, 1, 3, 44}, - {3, 3, -1, -2, 3, 51}, - {5, 5, -1, 0, 5, 54}, - {2, 3, 0, 2, 2, 59}, - {4, 1, -2, -2, 6, 62}, - {1, 1, -1, 0, 2, 63}, - {2, 7, -1, 1, 2, 64}, - {4, 6, -1, 0, 5, 71}, - {2, 6, -2, 0, 5, 77}, - {4, 6, -1, 0, 5, 83}, - {3, 6, -2, 0, 5, 89}, - {4, 6, -1, 0, 5, 95}, - {3, 6, -2, 0, 5, 101}, - {4, 6, -1, 0, 5, 107}, - {4, 6, -1, 0, 5, 113}, - {4, 6, -1, 0, 5, 119}, - {4, 6, -1, 0, 5, 125}, - {1, 4, -1, 0, 2, 131}, - {2, 6, 0, 2, 2, 135}, - {3, 5, -1, 0, 5, 141}, - {3, 3, -1, -1, 4, 146}, - {3, 5, -2, 0, 5, 149}, - {3, 5, -2, 0, 5, 154}, - {8, 7, -1, 1, 9, 159}, - {5, 6, -1, 0, 6, 166}, - {4, 6, -2, 0, 6, 172}, - {5, 6, -1, 0, 6, 178}, - {5, 6, -1, 0, 6, 184}, - {4, 6, -2, 0, 6, 190}, - {4, 6, -2, 0, 5, 196}, - {5, 6, -1, 0, 6, 202}, - {5, 6, -1, 0, 6, 208}, - {1, 6, -1, 0, 2, 214}, - {3, 6, -1, 0, 4, 220}, - {4, 6, -2, 0, 6, 226}, - {3, 6, -2, 0, 5, 232}, - {5, 6, -2, 0, 7, 238}, - {5, 6, -1, 0, 6, 244}, - {5, 6, -1, 0, 6, 250}, - {4, 6, -2, 0, 6, 256}, - {5, 8, -1, 2, 6, 262}, - {4, 6, -2, 0, 6, 270}, - {4, 6, -2, 0, 6, 276}, - {3, 6, -1, 0, 4, 282}, - {5, 6, -1, 0, 6, 288}, - {4, 6, -2, 0, 6, 294}, - {7, 6, -1, 0, 7, 300}, - {4, 6, -2, 0, 6, 306}, - {5, 6, -1, 0, 6, 312}, - {4, 6, -2, 0, 6, 318}, - {2, 7, -1, 1, 2, 324}, - {2, 7, 0, 1, 2, 331}, - {2, 7, 0, 1, 2, 338}, - {5, 3, 0, -2, 5, 345}, - {5, 1, 0, 1, 5, 348}, - {1, 3, -1, -3, 2, 349}, - {4, 5, -1, 0, 4, 352}, - {4, 7, -1, 0, 5, 357}, - {3, 5, -1, 0, 4, 364}, - {4, 7, -1, 0, 5, 369}, - {3, 5, -1, 0, 4, 376}, - {3, 7, -1, 0, 3, 381}, - {4, 6, -1, 1, 5, 388}, - {4, 7, -1, 0, 5, 394}, - {1, 7, -1, 0, 2, 401}, - {2, 9, 0, 2, 2, 408}, - {3, 7, -1, 0, 4, 417}, - {1, 7, -1, 0, 2, 424}, - {5, 5, -1, 0, 6, 431}, - {4, 5, -1, 0, 5, 436}, - {4, 5, -1, 0, 5, 441}, - {4, 6, -1, 1, 5, 446}, - {4, 6, -1, 1, 5, 452}, - {3, 5, -1, 0, 3, 458}, - {3, 5, -1, 0, 4, 463}, - {3, 7, -1, 0, 3, 468}, - {3, 5, -1, 0, 4, 475}, - {4, 5, -1, 0, 5, 480}, - {5, 5, -1, 0, 6, 485}, - {4, 5, -1, 0, 5, 490}, - {4, 6, -1, 1, 4, 495}, - {3, 5, -1, 0, 4, 501}, - {3, 7, 0, 1, 2, 506}, - {1, 7, -1, 1, 2, 513}, - {3, 7, 0, 1, 2, 520}, - {5, 2, -1, -2, 6, 527}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 2, 529}, - {1, 7, -1, 2, 2, 530}, - {3, 7, -1, 1, 5, 537}, - {4, 6, -1, 0, 5, 544}, - {5, 5, 0, 0, 4, 550}, - {5, 5, -1, 0, 6, 555}, - {1, 7, -1, 1, 2, 560}, - {4, 8, -1, 2, 5, 567}, - {4, 1, 0, -5, 2, 575}, - {6, 7, -1, 1, 7, 576}, - {3, 5, 0, -1, 3, 583}, - {4, 3, -1, -1, 5, 588}, - {4, 3, -1, -1, 6, 591}, - {2, 1, 0, -2, 3, 594}, - {6, 7, -1, 1, 7, 595}, - {3, 1, 0, -5, 2, 602}, - {3, 3, -1, -3, 3, 603}, - {4, 5, -1, 0, 5, 606}, - {2, 4, -1, -2, 2, 611}, - {3, 4, 0, -2, 2, 615}, - {2, 2, 0, -4, 2, 619}, - {3, 6, -1, 2, 4, 621}, - {5, 8, 0, 2, 5, 627}, - {1, 2, -1, -1, 2, 635}, - {2, 2, 0, 2, 2, 637}, - {2, 4, 0, -2, 2, 639}, - {3, 5, 0, -1, 3, 643}, - {4, 3, -1, -1, 5, 648}, - {7, 7, 0, 1, 7, 651}, - {7, 7, 0, 1, 7, 658}, - {7, 7, 0, 1, 7, 665}, - {4, 6, -1, 1, 5, 672}, - {5, 9, -1, 0, 6, 678}, - {5, 9, -1, 0, 6, 687}, - {5, 9, -1, 0, 6, 696}, - {5, 9, -1, 0, 6, 705}, - {5, 8, -1, 0, 6, 714}, - {5, 9, -1, 0, 6, 722}, - {7, 6, -1, 0, 8, 731}, - {5, 8, -1, 2, 6, 737}, - {4, 9, -2, 0, 6, 745}, - {4, 9, -2, 0, 6, 754}, - {4, 9, -2, 0, 6, 763}, - {4, 8, -2, 0, 6, 772}, - {2, 9, 0, 0, 2, 780}, - {2, 9, -1, 0, 2, 789}, - {3, 9, 0, 0, 2, 798}, - {3, 8, 0, 0, 2, 807}, - {5, 6, -1, 0, 6, 815}, - {5, 9, -1, 0, 6, 821}, - {5, 9, -1, 0, 6, 830}, - {5, 9, -1, 0, 6, 839}, - {5, 9, -1, 0, 6, 848}, - {5, 9, -1, 0, 6, 857}, - {5, 8, -1, 0, 6, 866}, - {4, 4, -1, 0, 5, 874}, - {5, 8, -1, 1, 6, 878}, - {5, 9, -1, 0, 6, 886}, - {5, 9, -1, 0, 6, 895}, - {5, 9, -1, 0, 6, 904}, - {5, 8, -1, 0, 6, 913}, - {5, 9, -1, 0, 6, 921}, - {5, 6, -1, 0, 6, 930}, - {4, 7, -2, 1, 6, 936}, - {4, 8, -1, 0, 4, 943}, - {4, 8, -1, 0, 4, 951}, - {4, 8, -1, 0, 4, 959}, - {5, 8, 0, 0, 4, 967}, - {4, 7, -1, 0, 4, 975}, - {4, 8, -1, 0, 4, 982}, - {5, 5, -1, 0, 6, 990}, - {3, 7, -1, 2, 4, 995}, - {3, 8, -1, 0, 4, 1002}, - {3, 8, -1, 0, 4, 1010}, - {3, 8, -1, 0, 4, 1018}, - {3, 7, -1, 0, 4, 1026}, - {2, 8, 0, 0, 2, 1033}, - {2, 8, -1, 0, 2, 1041}, - {3, 8, 0, 0, 2, 1049}, - {3, 7, 0, 0, 2, 1057}, - {4, 8, -1, 0, 5, 1064}, - {4, 8, -1, 0, 5, 1072}, - {4, 8, -1, 0, 5, 1080}, - {4, 8, -1, 0, 5, 1088}, - {4, 8, -1, 0, 5, 1096}, - {4, 8, -1, 0, 5, 1104}, - {4, 7, -1, 0, 5, 1112}, - {4, 5, -1, 0, 5, 1119}, - {7, 7, 0, 1, 5, 1124}, - {3, 8, -1, 0, 4, 1131}, - {3, 8, -1, 0, 4, 1139}, - {3, 8, -1, 0, 4, 1147}, - {3, 7, -1, 0, 4, 1155}, - {4, 9, -1, 1, 4, 1162}, - {4, 7, -1, 1, 5, 1171}, - {4, 8, -1, 1, 4, 1178}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_scr12.cpp b/intern/bmfont/intern/BMF_font_scr12.cpp deleted file mode 100644 index be0be544474..00000000000 --- a/intern/bmfont/intern/BMF_font_scr12.cpp +++ /dev/null @@ -1,484 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_SCR12 - -static unsigned char bitmap_data[]= { - 0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80, - 0xa0,0xa0,0xa0,0xa0,0x50,0x50,0xfc,0x28, - 0x28,0x7e,0x14,0x14,0x20,0x70,0xa8,0x28, - 0x70,0xa0,0xa8,0x70,0x20,0x98,0x54,0x54, - 0x2c,0xd0,0xa8,0xa8,0x64,0x74,0x88,0x8c, - 0x50,0x20,0x50,0x48,0x30,0x80,0x40,0x20, - 0x20,0x20,0x40,0x40,0x80,0x80,0x80,0x80, - 0x40,0x40,0x20,0x80,0x40,0x40,0x20,0x20, - 0x20,0x20,0x40,0x40,0x80,0x20,0xa8,0x70, - 0xa8,0x20,0x20,0x20,0xf8,0x20,0x20,0x80, - 0x40,0x40,0xc0,0xf8,0x80,0x80,0x80,0x80, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x08, - 0x70,0x88,0x88,0xc8,0xa8,0x98,0x88,0x70, - 0xe0,0x40,0x40,0x40,0x40,0x40,0xc0,0x40, - 0xf8,0x80,0x40,0x20,0x10,0x08,0x88,0x70, - 0x70,0x88,0x08,0x08,0x70,0x08,0x88,0x70, - 0x10,0x10,0x10,0xf8,0x90,0x50,0x30,0x10, - 0x70,0x88,0x08,0x08,0xf0,0x80,0x80,0xf8, - 0x70,0x88,0x88,0x88,0xf0,0x80,0x88,0x70, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0xf8, - 0x70,0x88,0x88,0x88,0x70,0x88,0x88,0x70, - 0x70,0x88,0x08,0x78,0x88,0x88,0x88,0x70, - 0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x40, - 0x40,0xc0,0x00,0x00,0x40,0x40,0x08,0x10, - 0x20,0x40,0x80,0x40,0x20,0x10,0x08,0xf8, - 0x00,0xf8,0x80,0x40,0x20,0x10,0x08,0x10, - 0x20,0x40,0x80,0x20,0x00,0x20,0x20,0x10, - 0x88,0x88,0x70,0x38,0x40,0x98,0xa8,0xa8, - 0x98,0x48,0x30,0x88,0x88,0xf8,0x88,0x50, - 0x50,0x20,0x20,0xf0,0x88,0x88,0x88,0xf0, - 0x88,0x88,0xf0,0x70,0x88,0x80,0x80,0x80, - 0x80,0x88,0x70,0xf0,0x88,0x88,0x88,0x88, - 0x88,0x88,0xf0,0xf8,0x80,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x68,0x98,0x88,0x88,0x98, - 0x80,0x88,0x70,0x88,0x88,0x88,0x88,0xf8, - 0x88,0x88,0x88,0xe0,0x40,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x70,0x88,0x88,0x08,0x08, - 0x08,0x08,0x08,0x88,0x88,0x90,0xa0,0xc0, - 0xa0,0x90,0x88,0xf8,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x88,0x88,0xa8,0xa8,0xd8, - 0xd8,0x88,0x88,0x88,0x98,0x98,0xa8,0xa8, - 0xc8,0xc8,0x88,0x70,0x88,0x88,0x88,0x88, - 0x88,0x88,0x70,0x80,0x80,0x80,0x80,0xf0, - 0x88,0x88,0xf0,0x08,0x10,0x70,0xa8,0x88, - 0x88,0x88,0x88,0x88,0x70,0x88,0x90,0x90, - 0xa0,0xf0,0x88,0x88,0xf0,0x70,0x88,0x88, - 0x08,0x70,0x80,0x88,0x70,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xf8,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x88,0x20,0x20,0x50, - 0x50,0x50,0x88,0x88,0x88,0x50,0x50,0xf8, - 0xa8,0xa8,0xa8,0x88,0x88,0x88,0x88,0x50, - 0x20,0x20,0x50,0x88,0x88,0x20,0x20,0x20, - 0x20,0x50,0x50,0x88,0x88,0xf8,0x80,0x40, - 0x40,0x20,0x10,0x08,0xf8,0xe0,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xe0,0x08,0x08, - 0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x80, - 0xe0,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x88,0x50,0x20,0xfe,0x20,0x40,0x80, - 0x80,0x68,0x98,0x88,0x78,0x08,0x70,0xb0, - 0xc8,0x88,0x88,0xc8,0xb0,0x80,0x80,0x70, - 0x88,0x80,0x80,0x88,0x70,0x68,0x98,0x88, - 0x88,0x98,0x68,0x08,0x08,0x70,0x88,0x80, - 0xf8,0x88,0x70,0x40,0x40,0x40,0x40,0x40, - 0xf0,0x40,0x38,0xf0,0x08,0x68,0x98,0x88, - 0x88,0x98,0x68,0x88,0x88,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x00,0x20,0x60,0x90,0x10,0x10,0x10, - 0x10,0x10,0x70,0x00,0x10,0x88,0x90,0xa0, - 0xc0,0xa0,0x90,0x80,0x80,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0xa8,0xa8,0xa8, - 0xa8,0xa8,0xd0,0x88,0x88,0x88,0x88,0xc8, - 0xb0,0x70,0x88,0x88,0x88,0x88,0x70,0x80, - 0x80,0xb0,0xc8,0x88,0x88,0xc8,0xb0,0x08, - 0x08,0x68,0x98,0x88,0x88,0x98,0x68,0x80, - 0x80,0x80,0x80,0xc8,0xb0,0x70,0x88,0x10, - 0x60,0x88,0x70,0x30,0x40,0x40,0x40,0x40, - 0xf0,0x40,0x68,0x98,0x88,0x88,0x88,0x88, - 0x20,0x20,0x50,0x50,0x88,0x88,0x50,0xa8, - 0xa8,0xa8,0x88,0x88,0x88,0x88,0x50,0x20, - 0x50,0x88,0xf0,0x08,0x68,0x98,0x88,0x88, - 0x88,0x88,0xf8,0x80,0x40,0x20,0x10,0xf8, - 0x18,0x20,0x20,0x20,0x20,0xc0,0x20,0x20, - 0x20,0x18,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xc0,0x20,0x20,0x20, - 0x20,0x18,0x20,0x20,0x20,0xc0,0x98,0xb4, - 0x64,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x80,0x20,0x20,0x70,0x88,0x80,0x88,0x70, - 0x20,0x20,0xb0,0x48,0x40,0xf0,0x40,0x40, - 0x48,0x30,0x90,0x60,0x90,0x90,0x60,0x90, - 0x20,0x70,0x20,0x70,0x20,0x50,0x88,0x88, - 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x80,0x70,0x88,0x10,0x28,0x48,0x90, - 0xa0,0x40,0x88,0x70,0xa0,0x78,0x84,0xb4, - 0xa4,0xb4,0x84,0x78,0xf0,0x90,0x70,0x10, - 0x60,0x14,0x28,0x50,0xa0,0x50,0x28,0x14, - 0x08,0xf8,0xf0,0x78,0x84,0xac,0xb4,0xb4, - 0x84,0x78,0xe0,0x60,0x90,0x60,0xf8,0x00, - 0x20,0x20,0xf8,0x20,0x20,0xe0,0x40,0x20, - 0xa0,0x40,0xc0,0x20,0x40,0x20,0xc0,0x80, - 0x40,0x80,0xe8,0x90,0x90,0x90,0x90,0x28, - 0x28,0x28,0x28,0x68,0xa8,0xa8,0xa8,0x7c, - 0x80,0x80,0xc0,0x40,0xe0,0x40,0x40,0xc0, - 0x40,0xf0,0x60,0x90,0x90,0x60,0xa0,0x50, - 0x28,0x14,0x28,0x50,0xa0,0x08,0x38,0xa8, - 0x58,0x28,0xf0,0x48,0x40,0xc0,0x40,0x38, - 0x10,0x88,0x68,0x30,0xf0,0x48,0x40,0xc0, - 0x40,0x08,0x38,0xa8,0x58,0x28,0xd0,0x28, - 0x40,0x20,0xc0,0x70,0x88,0x88,0x40,0x20, - 0x20,0x00,0x20,0x88,0x88,0xf8,0x88,0x50, - 0x50,0x20,0x00,0x20,0x40,0x88,0x88,0xf8, - 0x50,0x50,0x20,0x20,0x00,0x20,0x10,0x88, - 0x88,0xf8,0x50,0x50,0x20,0x20,0x00,0x50, - 0x20,0x88,0x88,0xf8,0x50,0x50,0x20,0x20, - 0x00,0xb0,0x68,0x88,0x88,0xf8,0x50,0x50, - 0x20,0x20,0x00,0x50,0x88,0x88,0xf8,0x50, - 0x50,0x20,0x20,0x20,0x50,0x20,0x9c,0x90, - 0xf0,0x50,0x5c,0x30,0x30,0x1c,0x60,0x20, - 0x70,0x88,0x80,0x80,0x80,0x80,0x88,0x70, - 0xf8,0x80,0x80,0xf0,0x80,0x80,0xf8,0x00, - 0x20,0x40,0xf8,0x80,0x80,0xf0,0x80,0x80, - 0xf8,0x00,0x20,0x10,0xf8,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x00,0x50,0x20,0xf8,0x80, - 0x80,0xf0,0x80,0x80,0xf8,0x00,0x50,0xe0, - 0x40,0x40,0x40,0x40,0x40,0xe0,0x00,0x40, - 0x80,0xe0,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x00,0x40,0x20,0xe0,0x40,0x40,0x40,0x40, - 0x40,0xe0,0x00,0xa0,0x40,0xe0,0x40,0x40, - 0x40,0x40,0x40,0xe0,0x00,0xa0,0x78,0x44, - 0x44,0xf4,0x44,0x44,0x44,0x78,0x88,0x98, - 0x98,0xa8,0xc8,0xc8,0x88,0x00,0xb0,0x68, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, - 0x20,0x40,0x70,0x88,0x88,0x88,0x88,0x88, - 0x70,0x00,0x20,0x10,0x70,0x88,0x88,0x88, - 0x88,0x88,0x70,0x00,0x50,0x20,0x70,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0xb0,0x68, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, - 0x50,0x88,0x50,0x20,0x50,0x88,0xb8,0x44, - 0x64,0x54,0x4c,0x44,0x3a,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x00,0x20,0x40,0x70, - 0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x10,0x70,0x88,0x88,0x88,0x88,0x88,0x88, - 0x00,0x50,0x20,0x70,0x88,0x88,0x88,0x88, - 0x88,0x88,0x00,0x50,0x20,0x20,0x20,0x50, - 0x50,0x88,0x88,0x00,0x20,0x10,0x80,0x80, - 0xf0,0x88,0x88,0x88,0xf0,0x80,0x80,0xb0, - 0x88,0x88,0x88,0x90,0xa0,0x90,0x60,0x78, - 0x88,0x78,0x08,0x70,0x00,0x20,0x40,0x78, - 0x88,0x78,0x08,0x70,0x00,0x20,0x10,0x78, - 0x88,0x78,0x08,0x70,0x00,0x50,0x20,0x78, - 0x88,0x78,0x08,0x70,0x00,0xb0,0x68,0x78, - 0x88,0x78,0x08,0x70,0x00,0x50,0x78,0x88, - 0x78,0x08,0x70,0x00,0x20,0x50,0x20,0x6c, - 0x90,0x7c,0x12,0x6c,0x60,0x20,0x70,0x88, - 0x80,0x80,0x88,0x70,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x20,0x40,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x20,0x10,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x50,0x20,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x50,0x20,0x20,0x20,0x20,0xe0, - 0x00,0x40,0x80,0x20,0x20,0x20,0x20,0xe0, - 0x00,0x40,0x20,0x20,0x20,0x20,0x20,0xe0, - 0x00,0xa0,0x40,0x20,0x20,0x20,0x20,0xe0, - 0x00,0xa0,0x70,0x88,0x88,0x88,0x78,0x08, - 0x90,0x60,0xd0,0x88,0x88,0x88,0xc8,0xb0, - 0x00,0xb0,0x68,0x70,0x88,0x88,0x88,0x70, - 0x00,0x20,0x40,0x70,0x88,0x88,0x88,0x70, - 0x00,0x20,0x10,0x70,0x88,0x88,0x88,0x70, - 0x00,0x50,0x20,0x70,0x88,0x88,0x88,0x70, - 0x00,0xb0,0x68,0x70,0x88,0x88,0x88,0x70, - 0x00,0x50,0x20,0x00,0xf8,0x00,0x20,0xb8, - 0x64,0x54,0x4c,0x3a,0x68,0x98,0x88,0x88, - 0x88,0x00,0x20,0x40,0x68,0x98,0x88,0x88, - 0x88,0x00,0x20,0x10,0x68,0x98,0x88,0x88, - 0x88,0x00,0x50,0x20,0x68,0x98,0x88,0x88, - 0x88,0x00,0x50,0xf0,0x08,0x68,0x98,0x88, - 0x88,0x88,0x00,0x20,0x10,0x80,0x80,0xb0, - 0xc8,0x88,0x88,0xc8,0xb0,0x80,0x80,0xf0, - 0x08,0x68,0x98,0x88,0x88,0x88,0x00,0xd8, -}; - -BMF_FontData BMF_font_scr12 = { - 0, -2, - 7, 10, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 16, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 7, -1}, - {1, 8, -3, 0, 7, 0}, - {3, 4, -2, -5, 7, 8}, - {7, 8, 0, 0, 7, 12}, - {5, 9, -1, 1, 7, 20}, - {6, 8, 0, 0, 7, 29}, - {6, 8, 0, 0, 7, 37}, - {3, 4, -2, -5, 7, 45}, - {3, 10, -2, 2, 7, 49}, - {3, 10, -2, 2, 7, 59}, - {5, 5, -1, -3, 7, 69}, - {5, 5, -1, -1, 7, 74}, - {2, 4, -2, 2, 7, 79}, - {5, 1, -1, -3, 7, 83}, - {1, 2, -3, 0, 7, 84}, - {5, 10, -1, 1, 7, 86}, - {5, 8, -1, 0, 7, 96}, - {3, 8, -2, 0, 7, 104}, - {5, 8, -1, 0, 7, 112}, - {5, 8, -1, 0, 7, 120}, - {5, 8, -1, 0, 7, 128}, - {5, 8, -1, 0, 7, 136}, - {5, 8, -1, 0, 7, 144}, - {5, 8, -1, 0, 7, 152}, - {5, 8, -1, 0, 7, 160}, - {5, 8, -1, 0, 7, 168}, - {1, 6, -3, 0, 7, 176}, - {2, 8, -2, 2, 7, 182}, - {5, 9, -1, 1, 7, 190}, - {5, 3, -1, -2, 7, 199}, - {5, 9, -1, 1, 7, 202}, - {5, 8, -1, 0, 7, 211}, - {5, 8, -1, 0, 7, 219}, - {5, 8, -1, 0, 7, 227}, - {5, 8, -1, 0, 7, 235}, - {5, 8, -1, 0, 7, 243}, - {5, 8, -1, 0, 7, 251}, - {5, 8, -1, 0, 7, 259}, - {5, 8, -1, 0, 7, 267}, - {5, 8, -1, 0, 7, 275}, - {5, 8, -1, 0, 7, 283}, - {3, 8, -2, 0, 7, 291}, - {5, 8, -1, 0, 7, 299}, - {5, 8, -1, 0, 7, 307}, - {5, 8, -1, 0, 7, 315}, - {5, 8, -1, 0, 7, 323}, - {5, 8, -1, 0, 7, 331}, - {5, 8, -1, 0, 7, 339}, - {5, 8, -1, 0, 7, 347}, - {5, 10, -1, 2, 7, 355}, - {5, 8, -1, 0, 7, 365}, - {5, 8, -1, 0, 7, 373}, - {5, 8, -1, 0, 7, 381}, - {5, 8, -1, 0, 7, 389}, - {5, 8, -1, 0, 7, 397}, - {5, 8, -1, 0, 7, 405}, - {5, 8, -1, 0, 7, 413}, - {5, 8, -1, 0, 7, 421}, - {5, 8, -1, 0, 7, 429}, - {3, 9, -2, 1, 7, 437}, - {5, 10, -1, 1, 7, 446}, - {3, 9, -2, 1, 7, 456}, - {5, 3, -1, -5, 7, 465}, - {7, 1, 0, 1, 7, 468}, - {3, 4, -2, -5, 7, 469}, - {5, 6, -1, 0, 7, 473}, - {5, 8, -1, 0, 7, 479}, - {5, 6, -1, 0, 7, 487}, - {5, 8, -1, 0, 7, 493}, - {5, 6, -1, 0, 7, 501}, - {5, 8, -1, 0, 7, 507}, - {5, 8, -1, 2, 7, 515}, - {5, 8, -1, 0, 7, 523}, - {3, 8, -2, 0, 7, 531}, - {4, 10, -1, 2, 7, 539}, - {5, 8, -1, 0, 7, 549}, - {3, 8, -2, 0, 7, 557}, - {5, 6, -1, 0, 7, 565}, - {5, 6, -1, 0, 7, 571}, - {5, 6, -1, 0, 7, 577}, - {5, 8, -1, 2, 7, 583}, - {5, 8, -1, 2, 7, 591}, - {5, 6, -1, 0, 7, 599}, - {5, 6, -1, 0, 7, 605}, - {4, 7, -1, 0, 7, 611}, - {5, 6, -1, 0, 7, 618}, - {5, 6, -1, 0, 7, 624}, - {5, 6, -1, 0, 7, 630}, - {5, 6, -1, 0, 7, 636}, - {5, 8, -1, 2, 7, 642}, - {5, 6, -1, 0, 7, 650}, - {5, 10, -1, 2, 7, 656}, - {1, 10, -3, 1, 7, 666}, - {5, 10, -1, 2, 7, 676}, - {6, 3, 0, -2, 7, 686}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 8, -3, 2, 7, 689}, - {5, 9, -1, 0, 7, 697}, - {5, 8, -1, 0, 7, 706}, - {4, 6, -1, -2, 7, 714}, - {5, 8, -1, 0, 7, 720}, - {1, 10, -3, 1, 7, 728}, - {5, 10, -1, 1, 7, 738}, - {3, 1, -2, -7, 7, 748}, - {6, 7, 0, 0, 7, 749}, - {4, 5, -1, -4, 7, 756}, - {6, 7, 0, 0, 7, 761}, - {5, 2, -1, -3, 7, 768}, - {4, 1, -1, -3, 7, 770}, - {6, 7, 0, 0, 7, 771}, - {3, 1, -2, -7, 7, 778}, - {4, 3, -1, -4, 7, 779}, - {5, 7, -1, 0, 7, 782}, - {3, 5, -2, -4, 7, 789}, - {3, 5, -2, -4, 7, 794}, - {2, 2, -2, -7, 7, 799}, - {5, 6, -1, 1, 7, 801}, - {6, 9, 0, 1, 7, 807}, - {1, 2, -3, -3, 7, 816}, - {2, 2, -2, 2, 7, 818}, - {3, 5, -2, -4, 7, 820}, - {4, 5, -1, -4, 7, 825}, - {6, 7, 0, 0, 7, 830}, - {5, 10, -1, 1, 7, 837}, - {5, 10, -1, 1, 7, 847}, - {5, 10, -1, 1, 7, 857}, - {5, 8, -1, 2, 7, 867}, - {5, 10, -1, 0, 7, 875}, - {5, 10, -1, 0, 7, 885}, - {5, 10, -1, 0, 7, 895}, - {5, 10, -1, 0, 7, 905}, - {5, 9, -1, 0, 7, 915}, - {5, 10, -1, 0, 7, 924}, - {6, 8, 0, 0, 7, 934}, - {5, 10, -1, 2, 7, 942}, - {5, 10, -1, 0, 7, 952}, - {5, 10, -1, 0, 7, 962}, - {5, 10, -1, 0, 7, 972}, - {5, 9, -1, 0, 7, 982}, - {3, 10, -2, 0, 7, 991}, - {3, 10, -2, 0, 7, 1001}, - {3, 10, -2, 0, 7, 1011}, - {3, 9, -2, 0, 7, 1021}, - {6, 8, 0, 0, 7, 1030}, - {5, 10, -1, 0, 7, 1038}, - {5, 10, -1, 0, 7, 1048}, - {5, 10, -1, 0, 7, 1058}, - {5, 10, -1, 0, 7, 1068}, - {5, 10, -1, 0, 7, 1078}, - {5, 9, -1, 0, 7, 1088}, - {5, 5, -1, -1, 7, 1097}, - {7, 7, 0, 0, 7, 1102}, - {5, 10, -1, 0, 7, 1109}, - {5, 10, -1, 0, 7, 1119}, - {5, 10, -1, 0, 7, 1129}, - {5, 9, -1, 0, 7, 1139}, - {5, 10, -1, 0, 7, 1148}, - {5, 9, -1, 0, 7, 1158}, - {5, 8, -1, 0, 7, 1167}, - {5, 8, -1, 0, 7, 1175}, - {5, 8, -1, 0, 7, 1183}, - {5, 8, -1, 0, 7, 1191}, - {5, 8, -1, 0, 7, 1199}, - {5, 7, -1, 0, 7, 1207}, - {5, 9, -1, 0, 7, 1214}, - {7, 5, 0, 0, 7, 1223}, - {5, 8, -1, 2, 7, 1228}, - {5, 8, -1, 0, 7, 1236}, - {5, 8, -1, 0, 7, 1244}, - {5, 8, -1, 0, 7, 1252}, - {5, 7, -1, 0, 7, 1260}, - {3, 8, -2, 0, 7, 1267}, - {3, 8, -2, 0, 7, 1275}, - {3, 8, -2, 0, 7, 1283}, - {3, 7, -2, 0, 7, 1291}, - {5, 9, -1, 0, 7, 1298}, - {5, 8, -1, 0, 7, 1307}, - {5, 8, -1, 0, 7, 1315}, - {5, 8, -1, 0, 7, 1323}, - {5, 8, -1, 0, 7, 1331}, - {5, 8, -1, 0, 7, 1339}, - {5, 7, -1, 0, 7, 1347}, - {5, 5, -1, -1, 7, 1354}, - {7, 5, 0, 0, 7, 1359}, - {5, 8, -1, 0, 7, 1364}, - {5, 8, -1, 0, 7, 1372}, - {5, 8, -1, 0, 7, 1380}, - {5, 7, -1, 0, 7, 1388}, - {5, 10, -1, 2, 7, 1395}, - {5, 10, -1, 2, 7, 1405}, - {5, 9, -1, 2, 7, 1415}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_scr14.cpp b/intern/bmfont/intern/BMF_font_scr14.cpp deleted file mode 100644 index 596442885e1..00000000000 --- a/intern/bmfont/intern/BMF_font_scr14.cpp +++ /dev/null @@ -1,510 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_SCR14 - -static unsigned char bitmap_data[]= { - 0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80, - 0x80,0xa0,0xa0,0xa0,0xa0,0x50,0x50,0xfc, - 0x28,0x28,0x28,0x7e,0x14,0x14,0x20,0x70, - 0xa8,0x28,0x30,0x60,0xa0,0xa8,0x70,0x20, - 0x98,0x54,0x54,0x2c,0x10,0x68,0x54,0x54, - 0x32,0x74,0x88,0x8c,0x90,0x60,0x20,0x50, - 0x48,0x30,0x80,0x40,0x20,0x20,0x20,0x40, - 0x40,0x80,0x80,0x80,0x80,0x80,0x40,0x40, - 0x20,0x80,0x40,0x40,0x20,0x20,0x20,0x20, - 0x20,0x40,0x40,0x80,0x20,0xa8,0x70,0x70, - 0xa8,0x20,0x20,0x20,0xf8,0x20,0x20,0x80, - 0x40,0x40,0xc0,0xf8,0x80,0x80,0x80,0x80, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x08, - 0x70,0x88,0x88,0xc8,0xa8,0x98,0x88,0x88, - 0x70,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0xc0,0x40,0xf8,0x80,0x40,0x20,0x10,0x08, - 0x88,0x88,0x70,0x70,0x88,0x08,0x08,0x70, - 0x08,0x08,0x88,0x70,0x10,0x10,0x10,0xf8, - 0x90,0x50,0x50,0x30,0x10,0x70,0x88,0x08, - 0x08,0x08,0xf0,0x80,0x80,0xf8,0x70,0x88, - 0x88,0x88,0x88,0xf0,0x80,0x88,0x70,0x40, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0xf8, - 0x70,0x88,0x88,0x88,0x70,0x88,0x88,0x88, - 0x70,0x70,0x88,0x08,0x08,0x78,0x88,0x88, - 0x88,0x70,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x40,0x40,0xc0,0x00,0x00,0x40,0x40, - 0x08,0x10,0x20,0x40,0x80,0x40,0x20,0x10, - 0x08,0xf8,0x00,0xf8,0x80,0x40,0x20,0x10, - 0x08,0x10,0x20,0x40,0x80,0x20,0x20,0x00, - 0x20,0x20,0x10,0x88,0x88,0x70,0x38,0x40, - 0x98,0xa8,0xa8,0x98,0x88,0x48,0x30,0x88, - 0x88,0xf8,0x88,0x50,0x50,0x50,0x20,0x20, - 0xf0,0x88,0x88,0x88,0xf0,0x88,0x88,0x88, - 0xf0,0x70,0x88,0x80,0x80,0x80,0x80,0x80, - 0x88,0x70,0xf0,0x88,0x88,0x88,0x88,0x88, - 0x88,0x88,0xf0,0xf8,0x80,0x80,0x80,0xf0, - 0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80, - 0xf0,0x80,0x80,0x80,0xf8,0x68,0x98,0x88, - 0x88,0x98,0x80,0x80,0x88,0x70,0x88,0x88, - 0x88,0x88,0xf8,0x88,0x88,0x88,0x88,0xe0, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x70,0x88,0x88,0x08,0x08,0x08,0x08,0x08, - 0x08,0x88,0x88,0x90,0xa0,0xc0,0xa0,0x90, - 0x88,0x88,0xf8,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x88,0x88,0x88,0xa8,0xa8, - 0xd8,0xd8,0x88,0x88,0x88,0x98,0x98,0xa8, - 0xa8,0xc8,0xc8,0x88,0x88,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x88,0x70,0x80,0x80, - 0x80,0x80,0xf0,0x88,0x88,0x88,0xf0,0x08, - 0x10,0x70,0xa8,0x88,0x88,0x88,0x88,0x88, - 0x88,0x70,0x88,0x88,0x90,0xa0,0xf0,0x88, - 0x88,0x88,0xf0,0x70,0x88,0x08,0x08,0x70, - 0x80,0x80,0x88,0x70,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xf8,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x88,0x88,0x20,0x20, - 0x50,0x50,0x50,0x88,0x88,0x88,0x88,0x50, - 0x50,0xf8,0xa8,0xa8,0x88,0x88,0x88,0x88, - 0x88,0x88,0x50,0x50,0x20,0x50,0x50,0x88, - 0x88,0x20,0x20,0x20,0x20,0x20,0x50,0x50, - 0x88,0x88,0xf8,0x80,0x40,0x40,0x20,0x10, - 0x10,0x08,0xf8,0xf0,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xf0,0x08,0x08, - 0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x80, - 0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10, - 0x10,0x10,0xf0,0x88,0x50,0x20,0xfe,0x20, - 0x40,0x80,0x80,0x68,0x98,0x88,0x78,0x08, - 0x88,0x70,0xb0,0xc8,0x88,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x70,0x88,0x80,0x80,0x80, - 0x88,0x70,0x68,0x98,0x88,0x88,0x88,0x98, - 0x68,0x08,0x08,0x70,0x88,0x80,0xf8,0x88, - 0x88,0x70,0x40,0x40,0x40,0x40,0x40,0x40, - 0xf0,0x40,0x38,0x70,0x88,0x08,0x68,0x98, - 0x88,0x88,0x88,0x98,0x68,0x88,0x88,0x88, - 0x88,0x88,0xc8,0xb0,0x80,0x80,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0x20,0x60, - 0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10, - 0x70,0x00,0x10,0x88,0x88,0x90,0xe0,0xa0, - 0x90,0x88,0x80,0x80,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0xa8,0xa8,0xa8, - 0xa8,0xa8,0xa8,0xd0,0x88,0x88,0x88,0x88, - 0x88,0xc8,0xb0,0x70,0x88,0x88,0x88,0x88, - 0x88,0x70,0x80,0x80,0x80,0xb0,0xc8,0x88, - 0x88,0x88,0xc8,0xb0,0x08,0x08,0x08,0x68, - 0x98,0x88,0x88,0x88,0x98,0x68,0x80,0x80, - 0x80,0x80,0x80,0xc8,0xb0,0x70,0x88,0x08, - 0x70,0x80,0x88,0x70,0x30,0x40,0x40,0x40, - 0x40,0x40,0xf0,0x40,0x40,0x68,0x98,0x88, - 0x88,0x88,0x88,0x88,0x20,0x20,0x50,0x50, - 0x88,0x88,0x88,0x50,0xa8,0xa8,0xa8,0xa8, - 0x88,0x88,0x88,0x88,0x50,0x20,0x50,0x88, - 0x88,0x70,0x88,0x08,0x68,0x98,0x88,0x88, - 0x88,0x88,0x88,0xf8,0x80,0x40,0x20,0x10, - 0x08,0xf8,0x18,0x20,0x20,0x20,0x20,0x20, - 0xc0,0x20,0x20,0x20,0x20,0x18,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xc0,0x20,0x20,0x20,0x20,0x20, - 0x18,0x20,0x20,0x20,0x20,0xc0,0x98,0xb4, - 0x64,0x80,0x80,0x80,0x80,0x80,0x80,0x00, - 0x80,0x80,0x20,0x20,0x70,0x88,0x80,0x80, - 0x88,0x70,0x20,0x20,0xb0,0x48,0x40,0x40, - 0xf0,0x40,0x40,0x48,0x30,0x88,0x70,0x88, - 0x88,0x70,0x88,0x70,0x20,0xf8,0x20,0xf8, - 0x50,0x50,0x88,0x88,0x80,0x80,0x80,0x80, - 0x80,0x00,0x00,0x80,0x80,0x80,0x80,0x80, - 0x70,0x88,0x10,0x28,0x48,0x88,0x90,0xa0, - 0x40,0x88,0x70,0xd8,0x38,0x44,0x92,0xaa, - 0xa2,0xaa,0x92,0x44,0x38,0xf8,0x00,0x68, - 0x90,0x70,0x10,0x60,0x12,0x24,0x48,0x90, - 0x48,0x24,0x12,0x08,0x08,0xf8,0xf0,0x38, - 0x44,0xaa,0xaa,0xb2,0xaa,0xb2,0x44,0x38, - 0xe0,0x60,0x90,0x90,0x60,0xf8,0x00,0x20, - 0x20,0xf8,0x20,0x20,0xe0,0x40,0x20,0xa0, - 0x40,0xc0,0x20,0x40,0x20,0xc0,0x80,0x40, - 0x80,0x80,0xb4,0xc8,0x88,0x88,0x88,0x88, - 0x28,0x28,0x28,0x28,0x28,0x68,0xa8,0xa8, - 0xa8,0x7c,0x80,0x80,0xc0,0x20,0x40,0xe0, - 0x40,0x40,0xc0,0x40,0xf8,0x00,0x70,0x88, - 0x88,0x88,0x70,0x90,0x48,0x24,0x12,0x24, - 0x48,0x90,0x04,0x9e,0x54,0x2c,0x14,0xe8, - 0x44,0x40,0xc0,0x40,0x1c,0x08,0x84,0x54, - 0x28,0x10,0xe8,0x44,0x40,0xc0,0x40,0x04, - 0x9e,0x54,0x2c,0xd4,0x28,0x44,0x20,0xc0, - 0x70,0x88,0x80,0x40,0x20,0x20,0x00,0x00, - 0x20,0x20,0x88,0x88,0xf8,0x88,0x50,0x50, - 0x20,0x20,0x00,0x20,0x40,0x88,0x88,0xf8, - 0x88,0x50,0x50,0x20,0x20,0x00,0x20,0x10, - 0x88,0x88,0xf8,0x88,0x50,0x50,0x20,0x20, - 0x00,0x50,0x20,0x88,0x88,0xf8,0x88,0x50, - 0x50,0x20,0x20,0x00,0xb0,0x68,0x88,0x88, - 0xf8,0x88,0x50,0x50,0x20,0x20,0x00,0xd8, - 0x88,0x88,0xf8,0x88,0x50,0x50,0x20,0x20, - 0x20,0x50,0x20,0x9c,0x90,0xf0,0x90,0x5c, - 0x50,0x30,0x30,0x1c,0x60,0x10,0x20,0x70, - 0x88,0x80,0x80,0x80,0x80,0x80,0x88,0x70, - 0xf8,0x80,0x80,0x80,0xf0,0x80,0x80,0xf8, - 0x00,0x20,0x40,0xf8,0x80,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x00,0x20,0x10,0xf8,0x80, - 0x80,0x80,0xf0,0x80,0x80,0xf8,0x00,0x50, - 0x20,0xf8,0x80,0x80,0x80,0xf0,0x80,0x80, - 0xf8,0x00,0xd8,0xe0,0x40,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x00,0x40,0x80,0xe0,0x40, - 0x40,0x40,0x40,0x40,0x40,0xe0,0x00,0x40, - 0x20,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0xe0,0x00,0xa0,0x40,0x70,0x20,0x20,0x20, - 0x20,0x20,0x20,0x70,0x00,0xd8,0x78,0x44, - 0x44,0x44,0xf4,0x44,0x44,0x44,0x78,0x88, - 0x98,0x98,0xa8,0xa8,0xc8,0xc8,0x88,0x00, - 0xb0,0x68,0x70,0x88,0x88,0x88,0x88,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x10, - 0x70,0x88,0x88,0x88,0x88,0x88,0x88,0x70, - 0x00,0x50,0x20,0x70,0x88,0x88,0x88,0x88, - 0x88,0x88,0x70,0x00,0xb0,0x68,0x70,0x88, - 0x88,0x88,0x88,0x88,0x88,0x70,0x00,0xd8, - 0x88,0x50,0x20,0x50,0x88,0xb8,0x44,0x64, - 0x64,0x54,0x4c,0x4c,0x44,0x3a,0x70,0x88, - 0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x40,0x70,0x88,0x88,0x88,0x88,0x88,0x88, - 0x88,0x00,0x20,0x10,0x70,0x88,0x88,0x88, - 0x88,0x88,0x88,0x88,0x00,0x50,0x20,0x70, - 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x00, - 0xd8,0x20,0x20,0x20,0x20,0x50,0x50,0x88, - 0x88,0x00,0x20,0x10,0xe0,0x40,0x78,0x44, - 0x44,0x44,0x78,0x40,0xe0,0xb0,0x88,0x88, - 0x88,0x90,0xa0,0x90,0x90,0x60,0x68,0x98, - 0x88,0x78,0x08,0x88,0x70,0x00,0x20,0x40, - 0x68,0x98,0x88,0x78,0x08,0x88,0x70,0x00, - 0x20,0x10,0x68,0x98,0x88,0x78,0x08,0x88, - 0x70,0x00,0x50,0x20,0x68,0x98,0x88,0x78, - 0x08,0x88,0x70,0x00,0xb0,0x68,0x68,0x98, - 0x88,0x78,0x08,0x88,0x70,0x00,0xd8,0x68, - 0x98,0x88,0x78,0x08,0x88,0x70,0x00,0x20, - 0x50,0x20,0x6c,0x92,0x90,0x7e,0x12,0x92, - 0x6c,0x60,0x10,0x20,0x70,0x88,0x80,0x80, - 0x80,0x88,0x70,0x70,0x88,0x80,0xf8,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x80, - 0xf8,0x88,0x88,0x70,0x00,0x20,0x10,0x70, - 0x88,0x80,0xf8,0x88,0x88,0x70,0x00,0x50, - 0x20,0x70,0x88,0x80,0xf8,0x88,0x88,0x70, - 0x00,0xd8,0x20,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x00,0x20,0x40,0x20,0x20,0x20,0x20, - 0x20,0x20,0xe0,0x00,0x20,0x10,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0xa0,0x40, - 0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00, - 0xd8,0x70,0x88,0x88,0x88,0x88,0x88,0x78, - 0x10,0xd0,0x20,0xd0,0x88,0x88,0x88,0x88, - 0x88,0xc8,0xb0,0x00,0xb0,0x68,0x70,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x40, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, - 0x20,0x10,0x70,0x88,0x88,0x88,0x88,0x88, - 0x70,0x00,0x50,0x20,0x70,0x88,0x88,0x88, - 0x88,0x88,0x70,0x00,0xb0,0x68,0x70,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0xd8,0x10, - 0x10,0x00,0xfe,0x00,0x10,0x10,0xb8,0x44, - 0x64,0x54,0x4c,0x44,0x3a,0x68,0x98,0x88, - 0x88,0x88,0x88,0x88,0x00,0x20,0x40,0x68, - 0x98,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x10,0x68,0x98,0x88,0x88,0x88,0x88,0x88, - 0x00,0x50,0x20,0x68,0x98,0x88,0x88,0x88, - 0x88,0x88,0x00,0xd8,0x70,0x88,0x08,0x68, - 0x98,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x10,0xe0,0x40,0x58,0x64,0x44,0x44,0x44, - 0x64,0x58,0x40,0xc0,0x70,0x88,0x08,0x68, - 0x98,0x88,0x88,0x88,0x88,0x88,0x00,0xd8, -}; - -BMF_FontData BMF_font_scr14 = { - 0, -3, - 7, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 16, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 7, -1}, - {1, 9, -3, 0, 7, 0}, - {3, 4, -2, -5, 7, 9}, - {7, 9, 0, 0, 7, 13}, - {5, 10, -1, 1, 7, 22}, - {7, 9, 0, 0, 7, 32}, - {6, 9, 0, 0, 7, 41}, - {3, 4, -2, -5, 7, 50}, - {3, 11, -2, 1, 7, 54}, - {3, 11, -2, 1, 7, 65}, - {5, 6, -1, -2, 7, 76}, - {5, 5, -1, -2, 7, 82}, - {2, 4, -2, 2, 7, 87}, - {5, 1, -1, -4, 7, 91}, - {1, 2, -3, 0, 7, 92}, - {5, 10, -1, 0, 7, 94}, - {5, 9, -1, 0, 7, 104}, - {3, 9, -2, 0, 7, 113}, - {5, 9, -1, 0, 7, 122}, - {5, 9, -1, 0, 7, 131}, - {5, 9, -1, 0, 7, 140}, - {5, 9, -1, 0, 7, 149}, - {5, 9, -1, 0, 7, 158}, - {5, 9, -1, 0, 7, 167}, - {5, 9, -1, 0, 7, 176}, - {5, 9, -1, 0, 7, 185}, - {1, 6, -3, 0, 7, 194}, - {2, 8, -2, 1, 7, 200}, - {5, 9, -1, 0, 7, 208}, - {5, 3, -1, -3, 7, 217}, - {5, 9, -1, 0, 7, 220}, - {5, 9, -1, 0, 7, 229}, - {5, 9, -1, 0, 7, 238}, - {5, 9, -1, 0, 7, 247}, - {5, 9, -1, 0, 7, 256}, - {5, 9, -1, 0, 7, 265}, - {5, 9, -1, 0, 7, 274}, - {5, 9, -1, 0, 7, 283}, - {5, 9, -1, 0, 7, 292}, - {5, 9, -1, 0, 7, 301}, - {5, 9, -1, 0, 7, 310}, - {3, 9, -2, 0, 7, 319}, - {5, 9, -1, 0, 7, 328}, - {5, 9, -1, 0, 7, 337}, - {5, 9, -1, 0, 7, 346}, - {5, 9, -1, 0, 7, 355}, - {5, 9, -1, 0, 7, 364}, - {5, 9, -1, 0, 7, 373}, - {5, 9, -1, 0, 7, 382}, - {5, 11, -1, 2, 7, 391}, - {5, 9, -1, 0, 7, 402}, - {5, 9, -1, 0, 7, 411}, - {5, 9, -1, 0, 7, 420}, - {5, 9, -1, 0, 7, 429}, - {5, 9, -1, 0, 7, 438}, - {5, 9, -1, 0, 7, 447}, - {5, 9, -1, 0, 7, 456}, - {5, 9, -1, 0, 7, 465}, - {5, 9, -1, 0, 7, 474}, - {4, 11, -2, 1, 7, 483}, - {5, 10, -1, 0, 7, 494}, - {4, 11, -1, 1, 7, 504}, - {5, 3, -1, -6, 7, 515}, - {7, 1, 0, 2, 7, 518}, - {3, 4, -2, -5, 7, 519}, - {5, 7, -1, 0, 7, 523}, - {5, 9, -1, 0, 7, 530}, - {5, 7, -1, 0, 7, 539}, - {5, 9, -1, 0, 7, 546}, - {5, 7, -1, 0, 7, 555}, - {5, 9, -1, 0, 7, 562}, - {5, 10, -1, 3, 7, 571}, - {5, 9, -1, 0, 7, 581}, - {3, 9, -2, 0, 7, 590}, - {4, 12, -1, 3, 7, 599}, - {5, 9, -1, 0, 7, 611}, - {3, 9, -2, 0, 7, 620}, - {5, 7, -1, 0, 7, 629}, - {5, 7, -1, 0, 7, 636}, - {5, 7, -1, 0, 7, 643}, - {5, 10, -1, 3, 7, 650}, - {5, 10, -1, 3, 7, 660}, - {5, 7, -1, 0, 7, 670}, - {5, 7, -1, 0, 7, 677}, - {4, 9, -1, 0, 7, 684}, - {5, 7, -1, 0, 7, 693}, - {5, 7, -1, 0, 7, 700}, - {5, 7, -1, 0, 7, 707}, - {5, 7, -1, 0, 7, 714}, - {5, 10, -1, 3, 7, 721}, - {5, 7, -1, 0, 7, 731}, - {5, 12, -1, 2, 7, 738}, - {1, 12, -3, 2, 7, 750}, - {5, 12, -1, 2, 7, 762}, - {6, 3, 0, -3, 7, 774}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 9, -3, 2, 7, 777}, - {5, 10, -1, 0, 7, 786}, - {5, 9, -1, 0, 7, 796}, - {5, 6, -1, -3, 7, 805}, - {5, 9, -1, 0, 7, 811}, - {1, 12, -3, 2, 7, 820}, - {5, 11, -1, 2, 7, 832}, - {5, 1, -1, -8, 7, 843}, - {7, 9, 0, 0, 7, 844}, - {5, 7, -1, -2, 7, 853}, - {7, 7, 0, 0, 7, 860}, - {5, 3, -1, -3, 7, 867}, - {4, 1, -1, -4, 7, 870}, - {7, 9, 0, 0, 7, 871}, - {3, 1, -2, -8, 7, 880}, - {4, 4, -1, -4, 7, 881}, - {5, 7, -1, 0, 7, 885}, - {3, 5, -2, -5, 7, 892}, - {3, 5, -2, -5, 7, 897}, - {2, 2, -3, -8, 7, 902}, - {6, 8, -1, 2, 7, 904}, - {6, 10, 0, 1, 7, 912}, - {1, 2, -3, -3, 7, 922}, - {3, 3, -2, 3, 7, 924}, - {3, 5, -2, -5, 7, 927}, - {5, 7, -1, -2, 7, 932}, - {7, 7, 0, 0, 7, 939}, - {7, 10, 0, 0, 7, 946}, - {6, 11, 0, 1, 7, 956}, - {7, 9, 0, -1, 7, 967}, - {5, 10, -1, 3, 7, 976}, - {5, 11, -1, 0, 7, 986}, - {5, 11, -1, 0, 7, 997}, - {5, 11, -1, 0, 7, 1008}, - {5, 11, -1, 0, 7, 1019}, - {5, 10, -1, 0, 7, 1030}, - {5, 11, -1, 0, 7, 1040}, - {6, 9, 0, 0, 7, 1051}, - {5, 12, -1, 3, 7, 1060}, - {5, 11, -1, 0, 7, 1072}, - {5, 11, -1, 0, 7, 1083}, - {5, 11, -1, 0, 7, 1094}, - {5, 10, -1, 0, 7, 1105}, - {3, 11, -2, 0, 7, 1115}, - {3, 11, -2, 0, 7, 1126}, - {3, 11, -2, 0, 7, 1137}, - {5, 10, -1, 0, 7, 1148}, - {6, 9, 0, 0, 7, 1158}, - {5, 11, -1, 0, 7, 1167}, - {5, 11, -1, 0, 7, 1178}, - {5, 11, -1, 0, 7, 1189}, - {5, 11, -1, 0, 7, 1200}, - {5, 11, -1, 0, 7, 1211}, - {5, 10, -1, 0, 7, 1222}, - {5, 5, -1, -1, 7, 1232}, - {7, 9, 0, 0, 7, 1237}, - {5, 11, -1, 0, 7, 1246}, - {5, 11, -1, 0, 7, 1257}, - {5, 11, -1, 0, 7, 1268}, - {5, 10, -1, 0, 7, 1279}, - {5, 11, -1, 0, 7, 1289}, - {6, 9, 0, 0, 7, 1300}, - {5, 9, -1, 0, 7, 1309}, - {5, 10, -1, 0, 7, 1318}, - {5, 10, -1, 0, 7, 1328}, - {5, 10, -1, 0, 7, 1338}, - {5, 10, -1, 0, 7, 1348}, - {5, 9, -1, 0, 7, 1358}, - {5, 11, -1, 0, 7, 1367}, - {7, 7, 0, 0, 7, 1378}, - {5, 10, -1, 3, 7, 1385}, - {5, 10, -1, 0, 7, 1395}, - {5, 10, -1, 0, 7, 1405}, - {5, 10, -1, 0, 7, 1415}, - {5, 9, -1, 0, 7, 1425}, - {3, 10, -2, 0, 7, 1434}, - {4, 10, -2, 0, 7, 1444}, - {3, 10, -2, 0, 7, 1454}, - {5, 9, -2, 0, 7, 1464}, - {5, 11, -1, 0, 7, 1473}, - {5, 10, -1, 0, 7, 1484}, - {5, 10, -1, 0, 7, 1494}, - {5, 10, -1, 0, 7, 1504}, - {5, 10, -1, 0, 7, 1514}, - {5, 10, -1, 0, 7, 1524}, - {5, 9, -1, 0, 7, 1534}, - {7, 7, 0, 0, 7, 1543}, - {7, 7, 0, 0, 7, 1550}, - {5, 10, -1, 0, 7, 1557}, - {5, 10, -1, 0, 7, 1567}, - {5, 10, -1, 0, 7, 1577}, - {5, 9, -1, 0, 7, 1587}, - {5, 13, -1, 3, 7, 1596}, - {6, 11, 0, 2, 7, 1609}, - {5, 12, -1, 3, 7, 1620}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/BMF_font_scr15.cpp b/intern/bmfont/intern/BMF_font_scr15.cpp deleted file mode 100644 index 8490e999bdb..00000000000 --- a/intern/bmfont/intern/BMF_font_scr15.cpp +++ /dev/null @@ -1,525 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifdef HAVE_CONFIG_H -#include -#endif - -#include "BMF_FontData.h" -#include "BMF_Settings.h" - -#if BMF_INCLUDE_SCR15 - -static unsigned char bitmap_data[]= { - 0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x90,0x90,0x90,0x90,0x48,0x48, - 0x48,0xfe,0x24,0x24,0x24,0x7f,0x12,0x12, - 0x20,0x70,0xa8,0xa8,0x28,0x30,0x60,0xa0, - 0xa8,0xa8,0x70,0x20,0x8c,0x52,0x52,0x2c, - 0x10,0x10,0x68,0x94,0x94,0x62,0x72,0x8c, - 0x84,0x8a,0x50,0x20,0x30,0x48,0x48,0x30, - 0x80,0x40,0x60,0x60,0x10,0x20,0x40,0x40, - 0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x20, - 0x10,0x80,0x40,0x20,0x20,0x10,0x10,0x10, - 0x10,0x10,0x20,0x20,0x40,0x80,0x20,0xa8, - 0x70,0x70,0xa8,0x20,0x10,0x10,0x10,0xfe, - 0x10,0x10,0x10,0x80,0x40,0x20,0x60,0x60, - 0xfc,0xc0,0xc0,0x80,0x80,0x40,0x40,0x20, - 0x20,0x10,0x10,0x08,0x08,0x04,0x04,0x78, - 0x84,0x84,0xc4,0xa4,0x94,0x8c,0x84,0x84, - 0x78,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0xc0,0x40,0xfc,0x80,0x40,0x20,0x10, - 0x08,0x04,0x84,0x84,0x78,0x78,0x84,0x04, - 0x04,0x04,0x38,0x04,0x04,0x84,0x78,0x08, - 0x08,0x08,0xfc,0x88,0x48,0x48,0x28,0x18, - 0x08,0x78,0x84,0x04,0x04,0x04,0xf8,0x80, - 0x80,0x80,0xfc,0x78,0x84,0x84,0x84,0x84, - 0xf8,0x80,0x80,0x84,0x78,0x20,0x20,0x20, - 0x10,0x10,0x08,0x08,0x04,0x04,0xfc,0x78, - 0x84,0x84,0x84,0x84,0x78,0x84,0x84,0x84, - 0x78,0x78,0x84,0x04,0x04,0x7c,0x84,0x84, - 0x84,0x84,0x78,0xc0,0xc0,0x00,0x00,0x00, - 0xc0,0xc0,0x80,0x40,0xc0,0xc0,0x00,0x00, - 0x00,0xc0,0xc0,0x04,0x08,0x10,0x20,0x40, - 0x80,0x40,0x20,0x10,0x08,0x04,0xfc,0x00, - 0x00,0xfc,0x80,0x40,0x20,0x10,0x08,0x04, - 0x08,0x10,0x20,0x40,0x80,0x10,0x10,0x00, - 0x10,0x10,0x08,0x04,0x84,0x84,0x78,0x38, - 0x44,0x80,0x98,0xa4,0xa4,0x9c,0x84,0x48, - 0x30,0x84,0x84,0xfc,0x84,0x48,0x48,0x48, - 0x30,0x30,0x30,0xf8,0x84,0x84,0x84,0x84, - 0xf8,0x84,0x84,0x84,0xf8,0x78,0x84,0x84, - 0x80,0x80,0x80,0x80,0x84,0x84,0x78,0xf0, - 0x88,0x84,0x84,0x84,0x84,0x84,0x84,0x88, - 0xf0,0xfc,0x80,0x80,0x80,0x80,0xf8,0x80, - 0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x80, - 0xf8,0x80,0x80,0x80,0xfc,0x74,0x8c,0x84, - 0x84,0x84,0x9c,0x80,0x80,0x84,0x78,0x84, - 0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84, - 0x84,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x70,0x88,0x88,0x08,0x08, - 0x08,0x08,0x08,0x08,0x08,0x84,0x84,0x88, - 0x90,0xa0,0xc0,0xa0,0x90,0x88,0x84,0xfc, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x82,0x82,0x92,0x92,0xaa,0xaa,0xc6, - 0xc6,0x82,0x82,0x84,0x8c,0x8c,0x94,0x94, - 0xa4,0xa4,0xc4,0xc4,0x84,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x78,0x80, - 0x80,0x80,0x80,0xf8,0x84,0x84,0x84,0x84, - 0xf8,0x04,0x08,0x10,0x78,0xa4,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x78,0x84,0x84, - 0x88,0x90,0xf8,0x84,0x84,0x84,0x84,0xf8, - 0x78,0x84,0x84,0x04,0x18,0x60,0x80,0x84, - 0x84,0x78,0x10,0x10,0x10,0x10,0x10,0x10, - 0x10,0x10,0x10,0xfe,0x78,0x84,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x30,0x30, - 0x30,0x48,0x48,0x48,0x84,0x84,0x84,0x84, - 0x44,0x44,0x44,0xaa,0xaa,0xaa,0x92,0x92, - 0x92,0x82,0x84,0x84,0x48,0x48,0x30,0x30, - 0x48,0x48,0x84,0x84,0x10,0x10,0x10,0x10, - 0x10,0x28,0x44,0x44,0x82,0x82,0xfc,0x80, - 0x40,0x40,0x20,0x10,0x08,0x08,0x04,0xfc, - 0xf0,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xf0,0x04,0x04,0x08, - 0x08,0x10,0x10,0x20,0x20,0x40,0x40,0x80, - 0x80,0xf0,0x10,0x10,0x10,0x10,0x10,0x10, - 0x10,0x10,0x10,0x10,0x10,0xf0,0x88,0x50, - 0x20,0xff,0x20,0x40,0xc0,0xc0,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0xb8,0xc4,0x84, - 0x84,0x84,0xc4,0xb8,0x80,0x80,0x80,0x78, - 0x84,0x80,0x80,0x80,0x84,0x78,0x74,0x8c, - 0x84,0x84,0x84,0x8c,0x74,0x04,0x04,0x04, - 0x78,0x84,0x80,0xfc,0x84,0x84,0x78,0x20, - 0x20,0x20,0x20,0x20,0x20,0xf8,0x20,0x20, - 0x1c,0x78,0x84,0x04,0x04,0x74,0x8c,0x84, - 0x84,0x84,0x8c,0x74,0x84,0x84,0x84,0x84, - 0x84,0xc4,0xb8,0x80,0x80,0x80,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0x20,0x20, - 0x70,0x88,0x08,0x08,0x08,0x08,0x08,0x08, - 0x08,0x08,0x38,0x00,0x08,0x08,0x84,0x88, - 0x90,0xe0,0xa0,0x90,0x88,0x80,0x80,0x80, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0xe0,0x92,0x92,0x92,0x92,0x92,0x92, - 0xec,0x84,0x84,0x84,0x84,0x84,0xc4,0xb8, - 0x78,0x84,0x84,0x84,0x84,0x84,0x78,0x80, - 0x80,0x80,0x80,0xb8,0xc4,0x84,0x84,0x84, - 0xc4,0xb8,0x04,0x04,0x04,0x04,0x74,0x8c, - 0x84,0x84,0x84,0x8c,0x74,0x80,0x80,0x80, - 0x80,0x80,0xc4,0xb8,0x78,0x84,0x04,0x78, - 0x80,0x84,0x78,0x1c,0x20,0x20,0x20,0x20, - 0x20,0xf8,0x20,0x20,0x74,0x8c,0x84,0x84, - 0x84,0x84,0x84,0x30,0x30,0x48,0x48,0x84, - 0x84,0x84,0x6c,0x92,0x92,0x92,0x92,0x82, - 0x82,0x84,0x84,0x48,0x30,0x48,0x84,0x84, - 0x78,0x84,0x04,0x04,0x74,0x8c,0x84,0x84, - 0x84,0x84,0x84,0xfc,0x80,0x40,0x20,0x10, - 0x08,0xfc,0x1c,0x20,0x20,0x20,0x20,0x20, - 0xc0,0x20,0x20,0x20,0x20,0x20,0x1c,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xe0,0x10,0x10, - 0x10,0x10,0x10,0x0c,0x10,0x10,0x10,0x10, - 0x10,0xe0,0x98,0xb4,0x64,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x80,0x20, - 0x20,0x70,0x88,0x80,0x80,0x88,0x70,0x20, - 0x20,0xb8,0x44,0x40,0x40,0xf0,0x40,0x40, - 0x40,0x48,0x30,0x84,0x78,0x84,0x84,0x84, - 0x78,0x84,0x38,0x10,0x7c,0x10,0x7c,0x28, - 0x44,0x44,0x82,0x82,0x80,0x80,0x80,0x80, - 0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x80, - 0x80,0x80,0x78,0x84,0x04,0x18,0x24,0x44, - 0x84,0x88,0x90,0x60,0x80,0x84,0x78,0xd8, - 0x38,0x44,0x92,0xaa,0xa2,0xaa,0x92,0x44, - 0x38,0xf8,0x00,0x68,0x90,0x70,0x10,0x60, - 0x09,0x12,0x24,0x48,0x90,0x48,0x24,0x12, - 0x09,0x04,0x04,0xfc,0xfc,0x38,0x44,0xaa, - 0xaa,0xb2,0xaa,0xb2,0x44,0x38,0xf0,0x60, - 0x90,0x90,0x60,0xfe,0x00,0x10,0x10,0x10, - 0xfe,0x10,0x10,0x10,0xf0,0x40,0x20,0x90, - 0x60,0xe0,0x10,0x60,0x10,0xe0,0x80,0x40, - 0x80,0x80,0x80,0xb4,0xc8,0x88,0x88,0x88, - 0x88,0x88,0x24,0x24,0x24,0x24,0x24,0x24, - 0x64,0xa4,0xa4,0xa4,0xa4,0x7e,0xc0,0xc0, - 0x20,0x40,0xe0,0x40,0x40,0xc0,0x40,0xf8, - 0x00,0x70,0x88,0x88,0x88,0x70,0x90,0x48, - 0x24,0x12,0x09,0x12,0x24,0x48,0x90,0x04, - 0x9e,0x54,0x2c,0x14,0xe8,0x44,0x42,0xc0, - 0x40,0x1e,0x08,0x84,0x52,0x2c,0x10,0xe8, - 0x44,0x42,0xc0,0x40,0x04,0x9e,0x54,0x2c, - 0xd4,0x28,0x44,0x22,0xc0,0x78,0x84,0x84, - 0x80,0x40,0x20,0x20,0x00,0x20,0x20,0x84, - 0x84,0xfc,0x84,0x48,0x48,0x30,0x30,0x00, - 0x20,0x40,0x84,0x84,0xfc,0x84,0x48,0x48, - 0x30,0x30,0x00,0x10,0x08,0x84,0x84,0xfc, - 0x84,0x48,0x48,0x30,0x30,0x00,0x48,0x30, - 0x84,0x84,0xfc,0x84,0x48,0x48,0x30,0x30, - 0x00,0x98,0x64,0x84,0x84,0xfc,0x84,0x48, - 0x48,0x30,0x30,0x00,0x6c,0x84,0x84,0xfc, - 0x84,0x48,0x48,0x30,0x30,0x30,0x48,0x30, - 0x9e,0x90,0x90,0xf0,0x90,0x5c,0x50,0x50, - 0x30,0x1e,0x30,0x08,0x10,0x78,0x84,0x84, - 0x80,0x80,0x80,0x80,0x84,0x84,0x78,0xfc, - 0x80,0x80,0x80,0xf8,0x80,0x80,0xfc,0x00, - 0x20,0x40,0xfc,0x80,0x80,0x80,0xf8,0x80, - 0x80,0xfc,0x00,0x10,0x08,0xfc,0x80,0x80, - 0x80,0xf8,0x80,0x80,0xfc,0x00,0x48,0x30, - 0xfc,0x80,0x80,0x80,0xf8,0x80,0x80,0xfc, - 0x00,0x6c,0xe0,0x40,0x40,0x40,0x40,0x40, - 0x40,0xe0,0x00,0x40,0x80,0xe0,0x40,0x40, - 0x40,0x40,0x40,0x40,0xe0,0x00,0x40,0x20, - 0xe0,0x40,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x00,0x90,0x60,0x70,0x20,0x20,0x20,0x20, - 0x20,0x20,0x70,0x00,0xd8,0x78,0x44,0x42, - 0x42,0x42,0xf2,0x42,0x42,0x44,0x78,0x84, - 0x8c,0x94,0x94,0xa4,0xa4,0xc4,0x84,0x00, - 0x98,0x64,0x78,0x84,0x84,0x84,0x84,0x84, - 0x84,0x78,0x00,0x20,0x40,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x78,0x00,0x10,0x08, - 0x78,0x84,0x84,0x84,0x84,0x84,0x84,0x78, - 0x00,0x48,0x30,0x78,0x84,0x84,0x84,0x84, - 0x84,0x84,0x78,0x00,0x98,0x64,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x78,0x00,0x6c, - 0x84,0x48,0x30,0x30,0x48,0x84,0xbc,0x42, - 0x62,0x52,0x52,0x4a,0x4a,0x46,0x42,0x3d, - 0x78,0x84,0x84,0x84,0x84,0x84,0x84,0x84, - 0x00,0x20,0x40,0x78,0x84,0x84,0x84,0x84, - 0x84,0x84,0x84,0x00,0x10,0x08,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x48, - 0x30,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x00,0x6c,0x10,0x10,0x10,0x10,0x28, - 0x44,0x44,0x82,0x00,0x10,0x08,0xe0,0x40, - 0x7c,0x42,0x42,0x42,0x42,0x7c,0x40,0xe0, - 0x98,0xa4,0x84,0x84,0x84,0x88,0xb0,0x88, - 0x88,0x70,0x74,0x88,0x88,0x78,0x08,0x88, - 0x70,0x00,0x20,0x40,0x74,0x88,0x88,0x78, - 0x08,0x88,0x70,0x00,0x20,0x10,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0x00,0x48,0x30, - 0x74,0x88,0x88,0x78,0x08,0x88,0x70,0x00, - 0x98,0x64,0x74,0x88,0x88,0x78,0x08,0x88, - 0x70,0x00,0xd8,0x74,0x88,0x88,0x78,0x08, - 0x88,0x70,0x00,0x30,0x48,0x30,0x6c,0x92, - 0x90,0x7e,0x12,0x92,0x6c,0x30,0x08,0x10, - 0x78,0x84,0x80,0x80,0x80,0x84,0x78,0x78, - 0x84,0x80,0xfc,0x84,0x84,0x78,0x00,0x20, - 0x40,0x78,0x84,0x80,0xfc,0x84,0x84,0x78, - 0x00,0x10,0x08,0x78,0x84,0x80,0xfc,0x84, - 0x84,0x78,0x00,0x48,0x30,0x78,0x84,0x80, - 0xfc,0x84,0x84,0x78,0x00,0x6c,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0x40,0x80, - 0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00, - 0x40,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x00,0x90,0x60,0x10,0x10,0x10,0x10, - 0x10,0x10,0x70,0x00,0xd8,0x78,0x84,0x84, - 0x84,0x84,0x84,0x7c,0x04,0xc8,0x30,0xc8, - 0x84,0x84,0x84,0x84,0x84,0xc4,0xb8,0x00, - 0x98,0x64,0x78,0x84,0x84,0x84,0x84,0x84, - 0x78,0x00,0x20,0x40,0x78,0x84,0x84,0x84, - 0x84,0x84,0x78,0x00,0x10,0x08,0x78,0x84, - 0x84,0x84,0x84,0x84,0x78,0x00,0x48,0x30, - 0x78,0x84,0x84,0x84,0x84,0x84,0x78,0x00, - 0x98,0x64,0x78,0x84,0x84,0x84,0x84,0x84, - 0x78,0x00,0x00,0x6c,0x30,0x00,0x00,0xfc, - 0x00,0x00,0x30,0xbc,0x62,0x52,0x4a,0x46, - 0x42,0x3d,0x74,0x8c,0x84,0x84,0x84,0x84, - 0x84,0x00,0x20,0x40,0x74,0x8c,0x84,0x84, - 0x84,0x84,0x84,0x00,0x20,0x10,0x74,0x8c, - 0x84,0x84,0x84,0x84,0x84,0x00,0x48,0x30, - 0x74,0x8c,0x84,0x84,0x84,0x84,0x84,0x00, - 0x00,0x6c,0x78,0x84,0x04,0x04,0x74,0x8c, - 0x84,0x84,0x84,0x84,0x84,0x00,0x20,0x10, - 0xe0,0x40,0x40,0x5c,0x62,0x42,0x42,0x42, - 0x62,0x5c,0x40,0x40,0xc0,0x78,0x84,0x04, - 0x04,0x74,0x8c,0x84,0x84,0x84,0x84,0x84, - 0x00,0x00,0x6c, -}; - -BMF_FontData BMF_font_scr15 = { - 0, -4, - 8, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 20, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 8, -1}, - {1, 10, -3, 0, 8, 0}, - {4, 4, -2, -6, 8, 10}, - {8, 10, 0, 0, 8, 14}, - {5, 12, -1, 1, 8, 24}, - {7, 10, 0, 0, 8, 36}, - {7, 10, 0, 0, 8, 46}, - {3, 4, -2, -6, 8, 56}, - {4, 13, -2, 2, 8, 60}, - {4, 13, -2, 2, 8, 73}, - {5, 6, -1, -2, 8, 86}, - {7, 7, 0, -1, 8, 92}, - {3, 5, -2, 3, 8, 99}, - {6, 1, -1, -4, 8, 104}, - {2, 2, -3, 0, 8, 105}, - {6, 12, -1, 1, 8, 107}, - {6, 10, -1, 0, 8, 119}, - {3, 10, -3, 0, 8, 129}, - {6, 10, -1, 0, 8, 139}, - {6, 10, -1, 0, 8, 149}, - {6, 10, -1, 0, 8, 159}, - {6, 10, -1, 0, 8, 169}, - {6, 10, -1, 0, 8, 179}, - {6, 10, -1, 0, 8, 189}, - {6, 10, -1, 0, 8, 199}, - {6, 10, -1, 0, 8, 209}, - {2, 7, -3, 0, 8, 219}, - {2, 9, -3, 2, 8, 226}, - {6, 11, -1, 1, 8, 235}, - {6, 4, -1, -3, 8, 246}, - {6, 11, -1, 1, 8, 250}, - {6, 10, -1, 0, 8, 261}, - {6, 10, -1, 0, 8, 271}, - {6, 10, -1, 0, 8, 281}, - {6, 10, -1, 0, 8, 291}, - {6, 10, -1, 0, 8, 301}, - {6, 10, -1, 0, 8, 311}, - {6, 10, -1, 0, 8, 321}, - {6, 10, -1, 0, 8, 331}, - {6, 10, -1, 0, 8, 341}, - {6, 10, -1, 0, 8, 351}, - {3, 10, -2, 0, 8, 361}, - {5, 10, -1, 0, 8, 371}, - {6, 10, -1, 0, 8, 381}, - {6, 10, -1, 0, 8, 391}, - {7, 10, 0, 0, 8, 401}, - {6, 10, -1, 0, 8, 411}, - {6, 10, -1, 0, 8, 421}, - {6, 10, -1, 0, 8, 431}, - {6, 13, -1, 3, 8, 441}, - {6, 10, -1, 0, 8, 454}, - {6, 10, -1, 0, 8, 464}, - {7, 10, 0, 0, 8, 474}, - {6, 10, -1, 0, 8, 484}, - {6, 10, -1, 0, 8, 494}, - {7, 10, 0, 0, 8, 504}, - {6, 10, -1, 0, 8, 514}, - {7, 10, 0, 0, 8, 524}, - {6, 10, -1, 0, 8, 534}, - {4, 13, -2, 2, 8, 544}, - {6, 12, -1, 1, 8, 557}, - {4, 13, -2, 2, 8, 569}, - {5, 3, -1, -6, 8, 582}, - {8, 1, 0, 3, 8, 585}, - {3, 4, -2, -6, 8, 586}, - {6, 7, -1, 0, 8, 590}, - {6, 10, -1, 0, 8, 597}, - {6, 7, -1, 0, 8, 607}, - {6, 10, -1, 0, 8, 614}, - {6, 7, -1, 0, 8, 624}, - {6, 10, -1, 0, 8, 631}, - {6, 11, -1, 4, 8, 641}, - {6, 10, -1, 0, 8, 652}, - {3, 10, -2, 0, 8, 662}, - {5, 14, -1, 4, 8, 672}, - {6, 10, -1, 0, 8, 686}, - {3, 10, -2, 0, 8, 696}, - {7, 7, 0, 0, 8, 706}, - {6, 7, -1, 0, 8, 713}, - {6, 7, -1, 0, 8, 720}, - {6, 11, -1, 4, 8, 727}, - {6, 11, -1, 4, 8, 738}, - {6, 7, -1, 0, 8, 749}, - {6, 7, -1, 0, 8, 756}, - {6, 9, -1, 0, 8, 763}, - {6, 7, -1, 0, 8, 772}, - {6, 7, -1, 0, 8, 779}, - {7, 7, 0, 0, 8, 786}, - {6, 7, -1, 0, 8, 793}, - {6, 11, -1, 4, 8, 800}, - {6, 7, -1, 0, 8, 811}, - {6, 13, -1, 2, 8, 818}, - {1, 14, -3, 3, 8, 831}, - {6, 13, -1, 2, 8, 845}, - {6, 3, -1, -3, 8, 858}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 8, -1}, - {1, 10, -3, 3, 8, 861}, - {5, 10, -1, 0, 8, 871}, - {6, 10, -1, 0, 8, 881}, - {6, 7, -1, -2, 8, 891}, - {7, 10, 0, 0, 8, 898}, - {1, 14, -3, 3, 8, 908}, - {6, 13, -1, 3, 8, 922}, - {5, 1, -1, -9, 8, 935}, - {7, 9, 0, 0, 8, 936}, - {5, 7, -1, -3, 8, 945}, - {8, 9, 0, 0, 8, 952}, - {6, 3, -1, -3, 8, 961}, - {6, 1, -1, -4, 8, 964}, - {7, 9, 0, 0, 8, 965}, - {4, 1, -2, -9, 8, 974}, - {4, 4, -2, -4, 8, 975}, - {7, 9, 0, 0, 8, 979}, - {4, 5, -2, -5, 8, 988}, - {4, 5, -2, -5, 8, 993}, - {2, 2, -3, -9, 8, 998}, - {6, 10, -1, 3, 8, 1000}, - {7, 12, 0, 2, 8, 1010}, - {2, 1, -3, -4, 8, 1022}, - {3, 3, -3, 3, 8, 1023}, - {3, 5, -3, -5, 8, 1026}, - {5, 7, -1, -3, 8, 1031}, - {8, 9, 0, 0, 8, 1038}, - {7, 10, 0, 0, 8, 1047}, - {7, 11, 0, 1, 8, 1057}, - {7, 9, 0, -1, 8, 1068}, - {6, 10, -1, 2, 8, 1077}, - {6, 11, -1, 0, 8, 1087}, - {6, 11, -1, 0, 8, 1098}, - {6, 11, -1, 0, 8, 1109}, - {6, 11, -1, 0, 8, 1120}, - {6, 10, -1, 0, 8, 1131}, - {6, 11, -1, 0, 8, 1141}, - {7, 10, 0, 0, 8, 1152}, - {6, 13, -1, 3, 8, 1162}, - {6, 11, -1, 0, 8, 1175}, - {6, 11, -1, 0, 8, 1186}, - {6, 11, -1, 0, 8, 1197}, - {6, 10, -1, 0, 8, 1208}, - {3, 11, -2, 0, 8, 1218}, - {3, 11, -2, 0, 8, 1229}, - {4, 11, -2, 0, 8, 1240}, - {5, 10, -1, 0, 8, 1251}, - {7, 10, 0, 0, 8, 1261}, - {6, 11, -1, 0, 8, 1271}, - {6, 11, -1, 0, 8, 1282}, - {6, 11, -1, 0, 8, 1293}, - {6, 11, -1, 0, 8, 1304}, - {6, 11, -1, 0, 8, 1315}, - {6, 10, -1, 0, 8, 1326}, - {6, 6, -1, -1, 8, 1336}, - {8, 10, 0, 0, 8, 1342}, - {6, 11, -1, 0, 8, 1352}, - {6, 11, -1, 0, 8, 1363}, - {6, 11, -1, 0, 8, 1374}, - {6, 10, -1, 0, 8, 1385}, - {7, 11, 0, 0, 8, 1395}, - {7, 10, 0, 0, 8, 1406}, - {6, 10, -1, 0, 8, 1416}, - {6, 10, -1, 0, 8, 1426}, - {6, 10, -1, 0, 8, 1436}, - {6, 10, -1, 0, 8, 1446}, - {6, 10, -1, 0, 8, 1456}, - {6, 9, -1, 0, 8, 1466}, - {6, 11, -1, 0, 8, 1475}, - {7, 7, 0, 0, 8, 1486}, - {6, 10, -1, 3, 8, 1493}, - {6, 10, -1, 0, 8, 1503}, - {6, 10, -1, 0, 8, 1513}, - {6, 10, -1, 0, 8, 1523}, - {6, 9, -1, 0, 8, 1533}, - {3, 10, -2, 0, 8, 1542}, - {3, 10, -2, 0, 8, 1552}, - {4, 10, -2, 0, 8, 1562}, - {5, 9, -1, 0, 8, 1572}, - {6, 11, -1, 0, 8, 1581}, - {6, 10, -1, 0, 8, 1592}, - {6, 10, -1, 0, 8, 1602}, - {6, 10, -1, 0, 8, 1612}, - {6, 10, -1, 0, 8, 1622}, - {6, 10, -1, 0, 8, 1632}, - {6, 10, -1, 0, 8, 1642}, - {6, 7, -1, 0, 8, 1652}, - {8, 7, 0, 0, 8, 1659}, - {6, 10, -1, 0, 8, 1666}, - {6, 10, -1, 0, 8, 1676}, - {6, 10, -1, 0, 8, 1686}, - {6, 10, -1, 0, 8, 1696}, - {6, 14, -1, 4, 8, 1706}, - {7, 13, 0, 3, 8, 1720}, - {6, 14, -1, 4, 8, 1733}, - }, - bitmap_data -}; - -#endif - diff --git a/intern/bmfont/intern/Makefile b/intern/bmfont/intern/Makefile deleted file mode 100644 index f420cfcf1e6..00000000000 --- a/intern/bmfont/intern/Makefile +++ /dev/null @@ -1,41 +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) 2001-2002 by NaN Holding BV. -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): none yet. -# -# ***** END GPL LICENSE BLOCK ***** -# bmfont intern Makefile -# - -LIBNAME = bmfont -DIR = $(OCGDIR)/intern/$(LIBNAME) - -include nan_compile.mk - -CCFLAGS += $(LEVEL_2_CPP_WARNINGS) - -CPPFLAGS += -I. -CPPFLAGS += -I.. -CPPFLAGS += -I$(OPENGL_HEADERS) - diff --git a/intern/bmfont/make/msvc_6_0/bmfont.dsp b/intern/bmfont/make/msvc_6_0/bmfont.dsp deleted file mode 100644 index b7ff7774fa1..00000000000 --- a/intern/bmfont/make/msvc_6_0/bmfont.dsp +++ /dev/null @@ -1,176 +0,0 @@ -# Microsoft Developer Studio Project File - Name="bmfont" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=bmfont - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "bmfont.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "bmfont.mak" CFG="bmfont - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "bmfont - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "bmfont - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "bmfont - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\..\..\..\obj\windows\intern\bmfont" -# PROP Intermediate_Dir "..\..\..\..\obj\windows\intern\bmfont" -# PROP Target_Dir "" -LINK32=link.exe -lib -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /I "../.." /I "../../intern" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\..\..\obj\windows\intern\bmfont\libbmfont.lib" -# Begin Special Build Tool -SOURCE="$(InputPath)" -PostBuild_Desc=Copying BMFONT files library (release target) to lib tree. -PostBuild_Cmds=ECHO Copying header files XCOPY /Y ..\..\*.h ..\..\..\..\..\lib\windows\bmfont\include\ ECHO Copying lib XCOPY /Y ..\..\..\..\obj\windows\intern\bmfont\*.lib ..\..\..\..\..\lib\windows\bmfont\lib\*.a ECHO Done -# End Special Build Tool - -!ELSEIF "$(CFG)" == "bmfont - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "..\..\..\..\obj\windows\intern\bmfont\debug" -# PROP Intermediate_Dir "..\..\..\..\obj\windows\intern\bmfont\debug" -# PROP Target_Dir "" -LINK32=link.exe -lib -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../.." /I "../../intern" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\..\..\obj\windows\intern\bmfont\debug\libbmfont.lib" -# Begin Special Build Tool -SOURCE="$(InputPath)" -PostBuild_Desc=Copying BMFONT files library (debug target) to lib tree. -PostBuild_Cmds=ECHO Copying header files XCOPY /Y ..\..\*.h ..\..\..\..\..\lib\windows\bmfont\include\ ECHO Copying lib XCOPY /Y ..\..\..\..\obj\windows\intern\bmfont\debug\*.lib ..\..\..\..\..\lib\windows\bmfont\lib\debug\*.a ECHO Done -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "bmfont - Win32 Release" -# Name "bmfont - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\intern\BMF_Api.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_BitmapFont.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_helv10.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_helv12.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_helvb10.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_helvb12.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_helvb14.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_helvb8.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_scr12.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_scr14.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_font_scr15.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Group "intern" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\intern\BMF_BitmapFont.h -# End Source File -# Begin Source File - -SOURCE=..\..\intern\BMF_FontData.h -# End Source File -# End Group -# Begin Group "extern" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=..\..\BMF_Api.h -# End Source File -# Begin Source File - -SOURCE=..\..\BMF_Fonts.h -# End Source File -# Begin Source File - -SOURCE=..\..\BMF_Settings.h -# End Source File -# End Group -# End Group -# End Target -# End Project diff --git a/intern/bmfont/make/msvc_6_0/bmfont.dsw b/intern/bmfont/make/msvc_6_0/bmfont.dsw deleted file mode 100644 index 265738bc0fe..00000000000 --- a/intern/bmfont/make/msvc_6_0/bmfont.dsw +++ /dev/null @@ -1,29 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "bmfont"=.\bmfont.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/intern/bmfont/make/msvc_7_0/bmfont.sln b/intern/bmfont/make/msvc_7_0/bmfont.sln deleted file mode 100644 index 7f1979a8273..00000000000 --- a/intern/bmfont/make/msvc_7_0/bmfont.sln +++ /dev/null @@ -1,21 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 7.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bmfont", "bmfont.vcproj", "{8CDFE9DC-F28C-4E1F-9389-3066BB0AB09F}" -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - ConfigName.0 = Debug - ConfigName.1 = Release - EndGlobalSection - GlobalSection(ProjectDependencies) = postSolution - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {8CDFE9DC-F28C-4E1F-9389-3066BB0AB09F}.Debug.ActiveCfg = Debug|Win32 - {8CDFE9DC-F28C-4E1F-9389-3066BB0AB09F}.Debug.Build.0 = Debug|Win32 - {8CDFE9DC-F28C-4E1F-9389-3066BB0AB09F}.Release.ActiveCfg = Release|Win32 - {8CDFE9DC-F28C-4E1F-9389-3066BB0AB09F}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/intern/bmfont/make/msvc_7_0/bmfont.vcproj b/intern/bmfont/make/msvc_7_0/bmfont.vcproj deleted file mode 100644 index 089130bc5e0..00000000000 --- a/intern/bmfont/make/msvc_7_0/bmfont.vcproj +++ /dev/null @@ -1,314 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/intern/bmfont/make/msvc_9_0/bmfont.vcproj b/intern/bmfont/make/msvc_9_0/bmfont.vcproj deleted file mode 100644 index 91d6e6afc1a..00000000000 --- a/intern/bmfont/make/msvc_9_0/bmfont.vcproj +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/intern/bmfont/test/Makefile b/intern/bmfont/test/Makefile deleted file mode 100644 index 135db74f38b..00000000000 --- a/intern/bmfont/test/Makefile +++ /dev/null @@ -1,60 +0,0 @@ -# ***** 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) 2001-2002 by NaN Holding BV. -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): none yet. -# -# ***** END GPL LICENSE BLOCK ***** -# Test the bmfont module -# - -LIBNAME = bmfont -SOURCEDIR = intern/$(LIBNAME)/test -DIR = $(OCGDIR)/$(SOURCEDIR) -DIRS = simpletest - -include nan_subdirs.mk -include nan_compile.mk -include nan_link.mk - -TESTLIBS = $(OCGDIR)/intern/$(LIBNAME)/$(DEBUG_DIR)lib$(LIBNAME).a -TESTLIBS += $(NAN_STRING)/lib/$(DEBUG_DIR)libstring.a -TESTLIBS += $(LCGDIR)/ghost/$(DEBUG_DIR)lib/libghost.a - - -ifeq ($(OS),$(findstring $(OS), "beos darwin linux freebsd openbsd")) - TESTLIBS += -L/usr/X11R6/lib -lglut -pthread -endif - -ifeq ($(OS),$(findstring $(OS), "solaris")) - TESTLIBS += -L/usr/openwin/lib -lglut -lX11 -lGL -lGLU -lXmu -endif - - -all debug:: - @echo "****> linking $@ in $(SOURCEDIR)" - $(CCC) $(LDFLAGS) -o $(DIR)/$(DEBUG_DIR)BMF_Test $(DIR)/BMF_Test.o $(TESTLIBS) - -clean:: - $(RM) $(DIR)/BMF_Test $(DIR)/debug/BMF_Test - -test:: $(DIR)/BMF_Test - $(DIR)/BMF_Test $(NAN_TEST_VERBOSITY) - diff --git a/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp b/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp deleted file mode 100644 index d178f5b4dc1..00000000000 --- a/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsp +++ /dev/null @@ -1,109 +0,0 @@ -# Microsoft Developer Studio Project File - Name="BMF_Test" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=BMF_Test - Win32 Debug -!MESSAGE This is not a valid makefile. To build this project using NMAKE, -!MESSAGE use the Export Makefile command and run -!MESSAGE -!MESSAGE NMAKE /f "BMF_Test.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "BMF_Test.mak" CFG="BMF_Test - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "BMF_Test - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "BMF_Test - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "BMF_Test - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "Release" -# PROP BASE Intermediate_Dir "Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "../../../../../../obj/windows/intern/BMF_bmfont/test" -# PROP Intermediate_Dir "../../../../../../obj/windows/intern/BMF_bmfont/test" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /I "../../../" /I "../../../../../lib/windows/string/include" /I "../../../../../lib/windows/ghost/include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 kernel32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib libstring.a libghost.a glu32.lib opengl32.lib user32.lib gdi32.lib /nologo /subsystem:console /machine:I386 /libpath:"../../../../../lib/windows/string/lib" /libpath:"../../../../../lib/windows/ghost/lib" - -!ELSEIF "$(CFG)" == "BMF_Test - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "../../../../../../obj/windows/intern/BMF_bmfont/test/debug" -# PROP Intermediate_Dir "../../../../../../obj/windows/intern/BMF_bmfont/test/debug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "../../../" /I "../../../../../lib/windows/string/include" /I "../../../../../lib/windows/ghost/include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 glu32.lib opengl32.lib libstring.a libghost.a user32.lib gdi32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"../../../../../lib/windows/string/lib" /libpath:"../../../../../lib/windows/ghost/lib" - -!ENDIF - -# Begin Target - -# Name "BMF_Test - Win32 Release" -# Name "BMF_Test - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\..\intern\BMF_glut_helb8.c -# End Source File -# Begin Source File - -SOURCE=..\..\..\intern\BMF_glut_helb8.cpp -# End Source File -# Begin Source File - -SOURCE=..\..\BMF_Test.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# End Group -# End Target -# End Project diff --git a/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw b/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw deleted file mode 100644 index 321de497224..00000000000 --- a/intern/bmfont/test/make/msvc_6_0/BMF_Test.dsw +++ /dev/null @@ -1,44 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "BMF_Test"=.\BMF_Test.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name BMF_bmfont - End Project Dependency -}}} - -############################################################################### - -Project: "BMF_bmfont"=..\..\..\make\msvc_6_0\BMF_bmfont.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/intern/bmfont/test/simpletest/BMF_Test.cpp b/intern/bmfont/test/simpletest/BMF_Test.cpp deleted file mode 100644 index 93a55042a4f..00000000000 --- a/intern/bmfont/test/simpletest/BMF_Test.cpp +++ /dev/null @@ -1,226 +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) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -/** - - * $Id$ - * Copyright (C) 2001 NaN Technologies B.V. - * Simple test file for the bitmap font library using GHOST. - * @author Maarten Gribnau - * @date November 15, 2001 - */ - -#include - -#ifdef HAVE_CONFIG_H -#include -#endif - -#define FALSE 0 -#define TRUE 1 - -#if defined(WIN32) || defined(__APPLE__) -#ifdef WIN32 -#include -#include -#else // WIN32 -// __APPLE__ is defined -#include -#endif // WIN32 -#else // defined(WIN32) || defined(__APPLE__) -#include -#endif // defined(WIN32) || defined(__APPLE__) - - -#include "STR_String.h" -#include "GHOST_Rect.h" - -#include "GHOST_ISystem.h" -#include "GHOST_IEvent.h" -#include "GHOST_IEventConsumer.h" - -#include "BMF_Api.h" - -static class Application* fApp; -static GHOST_ISystem* fSystem = 0; - - -static void drawGL() -{ - GLint x = 10, y = 10; - - ::glRasterPos2i(x, y); - BMF_Font *font = BMF_GetFont(BMF_kHelvetica10); - BMF_DrawString(font, "Helvetica 10 point"); - y += 14; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kHelvetica12); - BMF_DrawString(font, "Helvetica 12 point"); - y += 16; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kHelveticaBold8); - BMF_DrawString(font, "Helvetica Bold 8 point"); - y += 12; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kHelveticaBold10); - BMF_DrawString(font, "Helvetica Bold 10 point"); - y += 14; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kHelveticaBold12); - BMF_DrawString(font, "Helvetica Bold 12 point"); - y += 16; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kHelveticaBold14); - BMF_DrawString(font, "Helvetica Bold 14 point"); - y += 18; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kScreen12); - BMF_DrawString(font, "Screen 12 point"); - y += 16; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kScreen14); - BMF_DrawString(font, "Screen 14 point"); - y += 18; - ::glRasterPos2i(x, y); - font = BMF_GetFont(BMF_kScreen15); - BMF_DrawString(font, "Screen 15 point"); -} - - -static void setViewPortGL(GHOST_IWindow* window) -{ - window->activateDrawingContext(); - GHOST_Rect bnds; - window->getClientBounds(bnds); - - ::glViewport(0, 0, bnds.getWidth(), bnds.getHeight()); - - ::glMatrixMode(GL_PROJECTION); - ::glLoadIdentity(); - ::glOrtho(0, bnds.getWidth(), 0, bnds.getHeight(), -10, 10); - - ::glClearColor(.2f,0.0f,0.0f,0.0f); - ::glClear(GL_COLOR_BUFFER_BIT); -} - - - -class Application : public GHOST_IEventConsumer { -public: - Application(GHOST_ISystem* system); - virtual bool processEvent(GHOST_IEvent* event); - - GHOST_ISystem* m_system; - GHOST_IWindow* m_mainWindow; - bool m_exitRequested; -}; - - -Application::Application(GHOST_ISystem* system) - : m_system(system), m_mainWindow(0), m_exitRequested(false) -{ - fApp = this; - - // Create the main window - STR_String title1 ("gears - main window"); - m_mainWindow = system->createWindow(title1, 10, 64, 320, 200, GHOST_kWindowStateNormal, GHOST_kDrawingContextTypeOpenGL,FALSE); - if (!m_mainWindow) { - std::cout << "could not create main window\n"; - exit(-1); - } -} - - -bool Application::processEvent(GHOST_IEvent* event) -{ - bool handled = true; - - switch (event->getType()) { - case GHOST_kEventWindowClose: - { - GHOST_IWindow* window2 = event->getWindow(); - if (window2 == m_mainWindow) { - exit(0); - } else { - m_system->disposeWindow(window2); - } - } - break; - - case GHOST_kEventWindowActivate: - handled = false; - break; - case GHOST_kEventWindowDeactivate: - handled = false; - break; - case GHOST_kEventWindowUpdate: - { - GHOST_IWindow* window2 = event->getWindow(); - if (!m_system->validWindow(window2)) break; - { - setViewPortGL(window2); - drawGL(); - window2->swapBuffers(); - } - } - break; - - default: - handled = false; - break; - } - return handled; -} - - -int main(int /*argc*/, char** /*argv*/) -{ - // Create the system - GHOST_ISystem::createSystem(); - fSystem = GHOST_ISystem::getSystem(); - - if (fSystem) { - // Create an application object - Application app (fSystem); - - // Add the application as event consumer - fSystem->addEventConsumer(&app); - - // Enter main loop - while (!app.m_exitRequested) { - fSystem->processEvents(TRUE); - fSystem->dispatchEvents(); - } - } - - // Dispose the system - GHOST_ISystem::disposeSystem(); - - return 0; -} - diff --git a/intern/bmfont/test/simpletest/Makefile b/intern/bmfont/test/simpletest/Makefile deleted file mode 100644 index 5c5e32f2ed2..00000000000 --- a/intern/bmfont/test/simpletest/Makefile +++ /dev/null @@ -1,42 +0,0 @@ -# ***** 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) 2001-2002 by NaN Holding BV. -# All rights reserved. -# -# The Original Code is: all of this file. -# -# Contributor(s): none yet. -# -# ***** END GPL LICENSE BLOCK ***** -# Test the bmfont module -# - -LIBNAME = bmfont -DIR = $(OCGDIR)/intern/$(LIBNAME)/test - -# we don't want a library here, only object files: -ALLTARGETS = $(OBJS) - -include nan_compile.mk - -CCFLAGS += $(LEVEL_2_CPP_WARNINGS) - -CPPFLAGS = -I../.. -CPPFLAGS += -I../../intern -CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_STRING)/include -CPPFLAGS += -I$(NAN_GHOST)/include diff --git a/intern/ghost/test/multitest/Makefile b/intern/ghost/test/multitest/Makefile index e67faf012d2..1ecbcd98e2b 100644 --- a/intern/ghost/test/multitest/Makefile +++ b/intern/ghost/test/multitest/Makefile @@ -41,7 +41,6 @@ CCFLAGS += $(LEVEL_1_CPP_WARNINGS) CPPFLAGS += -I$(OPENGL_HEADERS) CPPFLAGS += -I$(NAN_STRING)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I../.. @@ -49,7 +48,6 @@ OCGGHOST = $(OCGDIR)/intern/ghost LIBS = $(OCGGHOST)/$(DEBUG_DIR)libghost.a SLIBS += $(LCGDIR)/string/lib/libstring.a -SLIBS += $(LCGDIR)/bmfont/lib/libbmfont.a SLIBS += $(LCGDIR)/guardedalloc/lib/libguardedalloc.a all:: diff --git a/source/Makefile b/source/Makefile index 1173756cbcb..85486c3a81f 100644 --- a/source/Makefile +++ b/source/Makefile @@ -158,7 +158,6 @@ endif COMLIB += $(OCGDIR)/blender/makesdna/$(DEBUG_DIR)libdna.a COMLIB += $(NAN_GUARDEDALLOC)/lib/libguardedalloc.a COMLIB += $(NAN_MEMUTIL)/lib/libmemutil.a -COMLIB += $(NAN_BMFONT)/lib/$(DEBUG_DIR)libbmfont.a COMLIB += $(NAN_PNG)/lib/libpng.a COMLIB += $(OCGDIR)/blender/yafray/$(DEBUG_DIR)libyafrayexport.a @@ -184,22 +183,17 @@ ifeq ($(WITH_BINRELOC), true) COMLIB += $(OCGDIR)/extern/binreloc/$(DEBUG_DIR)libbinreloc.a endif -ifeq ($(WITH_FREETYPE2), true) - ifeq ($(OS), windows) - ifeq ($(FREE_WINDOWS), true) - COMLIB += $(NAN_FTGL)/lib/libftgl.a +ifeq ($(OS), windows) + ifeq ($(FREE_WINDOWS), true) + COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a + else + COMLIB += $(NAN_FREETYPE)/lib/freetype2ST.lib + endif +else + ifeq ($(OS), irix) COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a - else - COMLIB += $(NAN_FTGL)/lib/ftgl_static_ST.lib - COMLIB += $(NAN_FREETYPE)/lib/freetype2ST.lib - endif else - COMLIB += $(NAN_FTGL)/lib/$(DEBUG_DIR)libftgl.a - ifeq ($(OS), irix) COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a - else - COMLIB += $(NAN_FREETYPE)/lib/libfreetype.a - endif endif endif diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h index 510ff550acc..516ecd102d6 100644 --- a/source/blender/blenfont/BLF_api.h +++ b/source/blender/blenfont/BLF_api.h @@ -31,7 +31,7 @@ struct rctf; -int BLF_init(void); +int BLF_init(int points, int dpi); void BLF_exit(void); int BLF_load(char *name); @@ -43,15 +43,14 @@ int BLF_load_mem(char *name, unsigned char *mem, int mem_size); void BLF_set(int fontid); int BLF_get(void); -/* - * Return the font type, can be freetype2 or internal, -1 if - * some error happen (no current font). - */ -int BLF_type_get(void); - void BLF_aspect(float aspect); void BLF_position(float x, float y, float z); void BLF_size(int size, int dpi); + +/* Draw the string using the default font, size and dpi. */ +void BLF_draw_default(float x, float y, float z, char *str); + +/* Draw the string using the current font. */ void BLF_draw(char *str); /* @@ -68,6 +67,14 @@ void BLF_boundbox(char *str, struct rctf *box); float BLF_width(char *str); float BLF_height(char *str); +/* + * and this two function return the width and height + * of the string, using the default font and both value + * are multiplied by the aspect of the font. + */ +float BLF_width_default(char *str); +float BLF_height_default(char *str); + /* * By default, rotation and clipping are disable and * have to be enable/disable using BLF_enable/disable. @@ -112,8 +119,4 @@ void BLF_dir_free(char **dirs, int count); #define BLF_MODE_TEXTURE 0 #define BLF_MODE_BITMAP 1 -/* font->type */ -#define BLF_FONT_FREETYPE2 0 -#define BLF_FONT_INTERNAL 1 - #endif /* BLF_API_H */ diff --git a/source/blender/blenfont/CMakeLists.txt b/source/blender/blenfont/CMakeLists.txt index 4c21138f552..aef655ca0d1 100644 --- a/source/blender/blenfont/CMakeLists.txt +++ b/source/blender/blenfont/CMakeLists.txt @@ -26,18 +26,12 @@ FILE(GLOB SRC intern/*.c) SET(INC ../../../intern/guardedalloc ../blenlib ../makesdna ../editors/include - ../blenkernel ../ftfont ../../../extern/glew/include . + ../blenkernel ../../../extern/glew/include . ${FTGL_INC} ${FREETYPE_INC} ${GETTEXT_INC} ) -ADD_DEFINITIONS(-DFTGL_LIBRARY_STATIC) - -IF(WITH_INTERNATIONAL) - ADD_DEFINITIONS(-DWITH_FREETYPE2) -ENDIF(WITH_INTERNATIONAL) - IF(WIN32) ADD_DEFINITIONS(-D_WIN32 -DUSE_GETTEXT_DLL) ENDIF(WIN32) diff --git a/source/blender/blenfont/SConscript b/source/blender/blenfont/SConscript index 85797c3c23b..fa6fa19a9ef 100644 --- a/source/blender/blenfont/SConscript +++ b/source/blender/blenfont/SConscript @@ -4,19 +4,14 @@ Import ('env') sources = env.Glob('intern/*.c') -incs = '. intern #/intern/guardedalloc ../blenkernel ../blenlib ../makesdna ../ftfont ../editors/include' +incs = '. intern #/intern/guardedalloc ../blenkernel ../blenlib ../makesdna ../editors/include' incs += ' #/extern/glew/include' -incs += ' ' + env['BF_FTGL_INC'] incs += ' ' + env['BF_FREETYPE_INC'] incs += ' ' + env['BF_GETTEXT_INC'] defs = '' -defs += 'FTGL_STATIC_LIBRARY' if sys.platform == 'win32': defs += ' _WIN32 USE_GETTEXT_DLL' -if env['WITH_BF_INTERNATIONAL']: - defs += ' WITH_FREETYPE2' - env.BlenderLib ( 'bf_blenfont', sources, Split(incs), Split(defs), libtype=['core'], priority=[210] ) diff --git a/source/blender/blenfont/intern/Makefile b/source/blender/blenfont/intern/Makefile index 18bf42f3fa5..6e53ca959d3 100644 --- a/source/blender/blenfont/intern/Makefile +++ b/source/blender/blenfont/intern/Makefile @@ -60,16 +60,11 @@ ifeq ($(OS),linux) endif endif -ifeq ($(WITH_FREETYPE2), true) - CPPFLAGS += -DWITH_FREETYPE2 -endif - # Modules CPPFLAGS += -I../../editors/include CPPFLAGS += -I../../makesdna CPPFLAGS += -I../../blenlib CPPFLAGS += -I../../blenkernel -CPPFLAGS += -I../../ftfont # Memory allocator CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c index e43d7905cf9..d49ca0bd0ac 100644 --- a/source/blender/blenfont/intern/blf.c +++ b/source/blender/blenfont/intern/blf.c @@ -31,15 +31,11 @@ #include #include -#ifdef WITH_FREETYPE2 - #include #include FT_FREETYPE_H #include FT_GLYPH_H -#endif /* WITH_FREETYPE2 */ - #include "MEM_guardedalloc.h" #include "DNA_listBase.h" @@ -75,14 +71,20 @@ int global_font_num= 0; /* Current font. */ int global_font_cur= 0; +/* Default size and dpi, for BLF_draw_default. */ +int global_font_default= -1; +int global_font_points= 11; +int global_font_dpi= 72; -int BLF_init(void) +int BLF_init(int points, int dpi) { int i; for (i= 0; i < BLF_MAX_FONT; i++) global_font[i]= NULL; + global_font_points= points; + global_font_dpi= dpi; return(blf_font_init()); } @@ -142,7 +144,6 @@ int BLF_load(char *name) return(-1); } -#ifdef WITH_FREETYPE2 font= blf_font_new(name, filename); MEM_freeN(filename); @@ -155,9 +156,6 @@ int BLF_load(char *name) i= global_font_num; global_font_num++; return(i); -#endif /* WITH_FREETYPE2 */ - - return(-1); } int BLF_load_mem(char *name, unsigned char *mem, int mem_size) @@ -181,21 +179,15 @@ int BLF_load_mem(char *name, unsigned char *mem, int mem_size) return(-1); } - font= blf_internal_new(name); + if (!mem || !mem_size) { + printf("Can't load font: %s from memory!!\n", name); + return(-1); + } + + font= blf_font_new_from_mem(name, mem, mem_size); if (!font) { -#ifdef WITH_FREETYPE2 - if (!mem || !mem_size) { - printf("Can't load font: %s from memory!!\n", name); - return(-1); - } - - font= blf_font_new_from_mem(name, mem, mem_size); -#endif /* WITH_FREETYPE2 */ - - if (!font) { - printf("Can't load font: %s from memory!!\n", name); - return(-1); - } + printf("Can't load font: %s from memory!!\n", name); + return(-1); } global_font[global_font_num]= font; @@ -215,16 +207,6 @@ int BLF_get(void) return(global_font_cur); } -int BLF_type_get(void) -{ - FontBLF *font; - - font= global_font[global_font_cur]; - if (font) - return(font->type); - return(-1); -} - void BLF_enable(int option) { FontBLF *font; @@ -299,6 +281,41 @@ void BLF_blur(int size) font->blur= size; } +void BLF_draw_default(float x, float y, float z, char *str) +{ + FontBLF *font; + int old_font, old_point, old_dpi; + + if (!str) + return; + + if (global_font_default == -1) + global_font_default= blf_search("default"); + + if (global_font_default == -1) { + printf("Warning: Can't found default font!!\n"); + return; + } + + font= global_font[global_font_cur]; + if (font) { + old_font= global_font_cur; + old_point= font->size; + old_dpi= font->dpi; + } + + global_font_cur= global_font_default; + BLF_size(global_font_points, global_font_dpi); + BLF_position(x, y, z); + BLF_draw(str); + + /* restore the old font. */ + if (font) { + global_font_cur= old_font; + BLF_size(old_point, old_dpi); + } +} + void BLF_draw(char *str) { FontBLF *font; @@ -363,6 +380,39 @@ float BLF_width(char *str) return(0.0f); } +float BLF_width_default(char *str) +{ + FontBLF *font; + float width; + int old_font, old_point, old_dpi; + + if (global_font_default == -1) + global_font_default= blf_search("default"); + + if (global_font_default == -1) { + printf("Error: Can't found default font!!\n"); + return(0.0f); + } + + font= global_font[global_font_cur]; + if (font) { + old_font= global_font_cur; + old_point= font->size; + old_dpi= font->dpi; + } + + global_font_cur= global_font_default; + BLF_size(global_font_points, global_font_dpi); + width= BLF_width(str); + + /* restore the old font. */ + if (font) { + global_font_cur= old_font; + BLF_size(old_point, old_dpi); + } + return(width); +} + float BLF_height(char *str) { FontBLF *font; @@ -373,6 +423,39 @@ float BLF_height(char *str) return(0.0f); } +float BLF_height_default(char *str) +{ + FontBLF *font; + float height; + int old_font, old_point, old_dpi; + + if (global_font_default == -1) + global_font_default= blf_search("default"); + + if (global_font_default == -1) { + printf("Error: Can't found default font!!\n"); + return(0.0f); + } + + font= global_font[global_font_cur]; + if (font) { + old_font= global_font_cur; + old_point= font->size; + old_dpi= font->dpi; + } + + global_font_cur= global_font_default; + BLF_size(global_font_points, global_font_dpi); + height= BLF_height(str); + + /* restore the old font. */ + if (font) { + global_font_cur= old_font; + BLF_size(old_point, old_dpi); + } + return(height); +} + void BLF_rotation(float angle) { FontBLF *font; diff --git a/source/blender/blenfont/intern/blf_dir.c b/source/blender/blenfont/intern/blf_dir.c index 1216c610515..d87262522d8 100644 --- a/source/blender/blenfont/intern/blf_dir.c +++ b/source/blender/blenfont/intern/blf_dir.c @@ -29,15 +29,11 @@ #include #include -#ifdef WITH_FREETYPE2 - #include #include FT_FREETYPE_H #include FT_GLYPH_H -#endif /* WITH_FREETYPE2 */ - #include "MEM_guardedalloc.h" #include "DNA_listBase.h" diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c index 6d185378c25..02b21264115 100644 --- a/source/blender/blenfont/intern/blf_font.c +++ b/source/blender/blenfont/intern/blf_font.c @@ -30,15 +30,11 @@ #include #include -#ifdef WITH_FREETYPE2 - #include #include FT_FREETYPE_H #include FT_GLYPH_H -#endif /* WITH_FREETYPE2 */ - #include "MEM_guardedalloc.h" #include "DNA_listBase.h" @@ -58,8 +54,6 @@ #include "blf_internal.h" -#ifdef WITH_FREETYPE2 - /* freetype2 handle. */ FT_Library global_ft_lib; @@ -294,7 +288,6 @@ void blf_font_free(FontBLF *font) void blf_font_fill(FontBLF *font) { - font->type= BLF_FONT_FREETYPE2; font->mode= BLF_MODE_TEXTURE; font->ref= 1; font->aspect= 1.0f; @@ -372,16 +365,3 @@ FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size) blf_font_fill(font); return(font); } - -#else /* !WITH_FREETYPE2 */ - -int blf_font_init(void) -{ - return(0); -} - -void blf_font_exit(void) -{ -} - -#endif /* WITH_FREETYPE2 */ diff --git a/source/blender/blenfont/intern/blf_font_helv10.h b/source/blender/blenfont/intern/blf_font_helv10.h deleted file mode 100644 index 7a0a48d83bc..00000000000 --- a/source/blender/blenfont/intern/blf_font_helv10.h +++ /dev/null @@ -1,487 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_HELV10_H -#define BLF_FONT_HELV10_H - -static unsigned char helv10_bitmap_data[]= { - 0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x80, - 0xa0,0xa0,0x50,0x50,0xf8,0x28,0x7c,0x28, - 0x28,0x20,0x70,0xa8,0x28,0x70,0xa0,0xa8, - 0x70,0x20,0x26,0x29,0x16,0x10,0x08,0x68, - 0x94,0x64,0x64,0x98,0x98,0xa4,0x60,0x50, - 0x50,0x20,0x80,0x40,0x40,0x20,0x40,0x40, - 0x80,0x80,0x80,0x80,0x40,0x40,0x20,0x80, - 0x40,0x40,0x20,0x20,0x20,0x20,0x40,0x40, - 0x80,0xa0,0x40,0xa0,0x20,0x20,0xf8,0x20, - 0x20,0x80,0x40,0x40,0xf8,0x80,0x80,0x80, - 0x40,0x40,0x40,0x40,0x20,0x20,0x70,0x88, - 0x88,0x88,0x88,0x88,0x88,0x70,0x40,0x40, - 0x40,0x40,0x40,0x40,0xc0,0x40,0xf8,0x80, - 0x40,0x30,0x08,0x08,0x88,0x70,0x70,0x88, - 0x08,0x08,0x30,0x08,0x88,0x70,0x10,0x10, - 0xf8,0x90,0x50,0x50,0x30,0x10,0x70,0x88, - 0x08,0x08,0xf0,0x80,0x80,0xf8,0x70,0x88, - 0x88,0xc8,0xb0,0x80,0x88,0x70,0x40,0x40, - 0x20,0x20,0x10,0x10,0x08,0xf8,0x70,0x88, - 0x88,0x88,0x70,0x88,0x88,0x70,0x70,0x88, - 0x08,0x68,0x98,0x88,0x88,0x70,0x80,0x00, - 0x00,0x00,0x00,0x80,0x80,0x40,0x40,0x00, - 0x00,0x00,0x00,0x40,0x20,0x40,0x80,0x40, - 0x20,0xf0,0x00,0xf0,0x80,0x40,0x20,0x40, - 0x80,0x40,0x00,0x40,0x40,0x20,0x10,0x90, - 0x60,0x3e,0x00,0x40,0x00,0x9b,0x00,0xa4, - 0x80,0xa4,0x80,0xa2,0x40,0x92,0x40,0x4d, - 0x40,0x20,0x80,0x1f,0x00,0x82,0x82,0x7c, - 0x44,0x28,0x28,0x10,0x10,0xf0,0x88,0x88, - 0x88,0xf0,0x88,0x88,0xf0,0x78,0x84,0x80, - 0x80,0x80,0x80,0x84,0x78,0xf0,0x88,0x84, - 0x84,0x84,0x84,0x88,0xf0,0xf8,0x80,0x80, - 0x80,0xf8,0x80,0x80,0xf8,0x80,0x80,0x80, - 0x80,0xf0,0x80,0x80,0xf8,0x74,0x8c,0x84, - 0x8c,0x80,0x80,0x84,0x78,0x84,0x84,0x84, - 0x84,0xfc,0x84,0x84,0x84,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x60,0x90,0x10, - 0x10,0x10,0x10,0x10,0x10,0x88,0x88,0x90, - 0x90,0xe0,0xa0,0x90,0x88,0xf0,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x92,0x92,0x92, - 0xaa,0xaa,0xc6,0xc6,0x82,0x8c,0x8c,0x94, - 0x94,0xa4,0xa4,0xc4,0xc4,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x78,0x80,0x80,0x80, - 0x80,0xf0,0x88,0x88,0xf0,0x02,0x7c,0x8c, - 0x94,0x84,0x84,0x84,0x84,0x78,0x88,0x88, - 0x88,0x88,0xf0,0x88,0x88,0xf0,0x70,0x88, - 0x88,0x08,0x70,0x80,0x88,0x70,0x20,0x20, - 0x20,0x20,0x20,0x20,0x20,0xf8,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x10,0x28, - 0x28,0x44,0x44,0x44,0x82,0x82,0x22,0x00, - 0x22,0x00,0x22,0x00,0x55,0x00,0x49,0x00, - 0x49,0x00,0x88,0x80,0x88,0x80,0x88,0x88, - 0x50,0x50,0x20,0x50,0x88,0x88,0x10,0x10, - 0x10,0x28,0x28,0x44,0x44,0x82,0xf8,0x80, - 0x40,0x20,0x20,0x10,0x08,0xf8,0xc0,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xc0, - 0x20,0x20,0x40,0x40,0x40,0x40,0x80,0x80, - 0xc0,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0xc0,0x88,0x50,0x50,0x20,0x20,0xfc, - 0x80,0x80,0x40,0x68,0x90,0x90,0x70,0x10, - 0xe0,0xb0,0xc8,0x88,0x88,0xc8,0xb0,0x80, - 0x80,0x60,0x90,0x80,0x80,0x90,0x60,0x68, - 0x98,0x88,0x88,0x98,0x68,0x08,0x08,0x60, - 0x90,0x80,0xf0,0x90,0x60,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x40,0x30,0x70,0x08,0x68, - 0x98,0x88,0x88,0x98,0x68,0x88,0x88,0x88, - 0x88,0xc8,0xb0,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x00,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x90,0x90, - 0xa0,0xc0,0xa0,0x90,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x92,0x92, - 0x92,0x92,0x92,0xec,0x88,0x88,0x88,0x88, - 0xc8,0xb0,0x70,0x88,0x88,0x88,0x88,0x70, - 0x80,0x80,0xb0,0xc8,0x88,0x88,0xc8,0xb0, - 0x08,0x08,0x68,0x98,0x88,0x88,0x98,0x68, - 0x80,0x80,0x80,0x80,0xc0,0xa0,0x60,0x90, - 0x10,0x60,0x90,0x60,0x60,0x40,0x40,0x40, - 0x40,0xe0,0x40,0x40,0x70,0x90,0x90,0x90, - 0x90,0x90,0x20,0x20,0x50,0x50,0x88,0x88, - 0x28,0x28,0x54,0x54,0x92,0x92,0x88,0x88, - 0x50,0x20,0x50,0x88,0x80,0x40,0x40,0x60, - 0xa0,0xa0,0x90,0x90,0xf0,0x80,0x40,0x20, - 0x10,0xf0,0x20,0x40,0x40,0x40,0x40,0x80, - 0x40,0x40,0x40,0x20,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x40, - 0x40,0x40,0x40,0x20,0x40,0x40,0x40,0x80, - 0x98,0x64,0x80,0x80,0x80,0x80,0x80,0x80, - 0x00,0x80,0x40,0x70,0xa8,0xa0,0xa0,0xa8, - 0x70,0x10,0xb0,0x48,0x40,0x40,0xe0,0x40, - 0x48,0x30,0x90,0x60,0x90,0x90,0x60,0x90, - 0x20,0xf8,0x20,0xf8,0x50,0x50,0x88,0x88, - 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x80,0x70,0x88,0x18,0x70,0xc8,0x98, - 0x70,0xc0,0x88,0x70,0xa0,0x38,0x44,0x9a, - 0xa2,0x9a,0x44,0x38,0xe0,0x00,0xa0,0x20, - 0xe0,0x28,0x50,0xa0,0x50,0x28,0x08,0x08, - 0xf8,0xe0,0x38,0x44,0xaa,0xb2,0xba,0x44, - 0x38,0xe0,0x60,0x90,0x90,0x60,0xf8,0x00, - 0x20,0x20,0xf8,0x20,0x20,0xe0,0x40,0xa0, - 0x60,0xc0,0x20,0x40,0xe0,0x80,0x40,0x80, - 0x80,0xf0,0x90,0x90,0x90,0x90,0x90,0x28, - 0x28,0x28,0x28,0x28,0x68,0xe8,0xe8,0xe8, - 0x7c,0xc0,0xc0,0x40,0x40,0x40,0xc0,0x40, - 0xe0,0x00,0xe0,0xa0,0xe0,0xa0,0x50,0x28, - 0x50,0xa0,0x21,0x00,0x17,0x80,0x13,0x00, - 0x09,0x00,0x48,0x00,0x44,0x00,0xc4,0x00, - 0x42,0x00,0x27,0x12,0x15,0x0b,0x48,0x44, - 0xc4,0x42,0x21,0x00,0x17,0x80,0x13,0x00, - 0x09,0x00,0xc8,0x00,0x24,0x00,0x44,0x00, - 0xe2,0x00,0x60,0x90,0x80,0x40,0x20,0x20, - 0x00,0x20,0x82,0x82,0x7c,0x44,0x28,0x28, - 0x10,0x10,0x00,0x10,0x20,0x82,0x82,0x7c, - 0x44,0x28,0x28,0x10,0x10,0x00,0x10,0x08, - 0x82,0x82,0x7c,0x44,0x28,0x28,0x10,0x10, - 0x00,0x28,0x10,0x82,0x82,0x7c,0x44,0x28, - 0x28,0x10,0x10,0x00,0x28,0x14,0x82,0x82, - 0x7c,0x44,0x28,0x28,0x10,0x10,0x00,0x28, - 0x82,0x82,0x7c,0x44,0x28,0x28,0x10,0x10, - 0x10,0x28,0x10,0x8f,0x80,0x88,0x00,0x78, - 0x00,0x48,0x00,0x2f,0x80,0x28,0x00,0x18, - 0x00,0x1f,0x80,0x30,0x10,0x78,0x84,0x80, - 0x80,0x80,0x80,0x84,0x78,0xf8,0x80,0x80, - 0x80,0xf8,0x80,0x80,0xf8,0x00,0x20,0x40, - 0xf8,0x80,0x80,0x80,0xf8,0x80,0x80,0xf8, - 0x00,0x20,0x10,0xf8,0x80,0x80,0xf8,0x80, - 0x80,0x80,0xf8,0x00,0x50,0x20,0xf8,0x80, - 0x80,0x80,0xf8,0x80,0x80,0xf8,0x00,0x50, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0x40,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x00,0x80,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0xa0, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0x00,0xa0,0x78,0x44,0x42,0x42,0xf2, - 0x42,0x44,0x78,0x8c,0x8c,0x94,0x94,0xa4, - 0xa4,0xc4,0xc4,0x00,0x50,0x28,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x78,0x00,0x10, - 0x20,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x78,0x00,0x10,0x08,0x78,0x84,0x84,0x84, - 0x84,0x84,0x84,0x78,0x00,0x28,0x10,0x78, - 0x84,0x84,0x84,0x84,0x84,0x84,0x78,0x00, - 0x50,0x28,0x78,0x84,0x84,0x84,0x84,0x84, - 0x84,0x78,0x00,0x48,0x88,0x50,0x20,0x50, - 0x88,0x80,0x78,0xc4,0xa4,0xa4,0x94,0x94, - 0x8c,0x78,0x04,0x78,0x84,0x84,0x84,0x84, - 0x84,0x84,0x84,0x00,0x10,0x20,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x20, - 0x10,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x00,0x28,0x10,0x78,0x84,0x84,0x84, - 0x84,0x84,0x84,0x84,0x00,0x48,0x10,0x10, - 0x10,0x28,0x28,0x44,0x44,0x82,0x00,0x10, - 0x08,0x80,0x80,0xf0,0x88,0x88,0xf0,0x80, - 0x80,0xa0,0x90,0x90,0x90,0xa0,0x90,0x90, - 0x60,0x68,0x90,0x90,0x70,0x10,0xe0,0x00, - 0x20,0x40,0x68,0x90,0x90,0x70,0x10,0xe0, - 0x00,0x20,0x10,0x68,0x90,0x90,0x70,0x10, - 0xe0,0x00,0x50,0x20,0x68,0x90,0x90,0x70, - 0x10,0xe0,0x00,0xa0,0x50,0x68,0x90,0x90, - 0x70,0x10,0xe0,0x00,0x50,0x68,0x90,0x90, - 0x70,0x10,0xe0,0x20,0x50,0x20,0x6c,0x92, - 0x90,0x7e,0x12,0xec,0x60,0x20,0x60,0x90, - 0x80,0x80,0x90,0x60,0x60,0x90,0x80,0xf0, - 0x90,0x60,0x00,0x20,0x40,0x60,0x90,0x80, - 0xf0,0x90,0x60,0x00,0x40,0x20,0x60,0x90, - 0x80,0xf0,0x90,0x60,0x00,0x50,0x20,0x60, - 0x90,0x80,0xf0,0x90,0x60,0x00,0x50,0x40, - 0x40,0x40,0x40,0x40,0x40,0x00,0x40,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00, - 0xa0,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0xa0,0x70,0x88,0x88,0x88,0x88,0x78, - 0x90,0x60,0x50,0x90,0x90,0x90,0x90,0x90, - 0xe0,0x00,0xa0,0x50,0x70,0x88,0x88,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x88, - 0x88,0x88,0x70,0x00,0x20,0x10,0x70,0x88, - 0x88,0x88,0x88,0x70,0x00,0x50,0x20,0x70, - 0x88,0x88,0x88,0x88,0x70,0x00,0x50,0x28, - 0x70,0x88,0x88,0x88,0x88,0x70,0x00,0x50, - 0x20,0x00,0xf8,0x00,0x20,0x70,0x88,0xc8, - 0xa8,0x98,0x74,0x70,0x90,0x90,0x90,0x90, - 0x90,0x00,0x20,0x40,0x70,0x90,0x90,0x90, - 0x90,0x90,0x00,0x40,0x20,0x70,0x90,0x90, - 0x90,0x90,0x90,0x00,0x50,0x20,0x70,0x90, - 0x90,0x90,0x90,0x90,0x00,0x50,0x80,0x40, - 0x40,0x60,0xa0,0xa0,0x90,0x90,0x00,0x20, - 0x10,0x80,0x80,0xb0,0xc8,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x80,0x40,0x40,0x60,0xa0, - 0xa0,0x90,0x90,0x00,0x50, -}; - -FontDataBLF blf_font_helv10 = { - -1, -2, - 10, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 3, -1}, - {1, 8, -1, 0, 3, 0}, - {3, 2, -1, -6, 4, 8}, - {6, 7, 0, 0, 6, 10}, - {5, 9, 0, 1, 6, 17}, - {8, 8, 0, 0, 9, 26}, - {6, 8, -1, 0, 8, 34}, - {2, 3, -1, -5, 3, 42}, - {3, 10, 0, 2, 4, 45}, - {3, 10, -1, 2, 4, 55}, - {3, 3, 0, -5, 4, 65}, - {5, 5, 0, -1, 6, 68}, - {2, 3, 0, 2, 3, 73}, - {5, 1, -1, -3, 7, 76}, - {1, 1, -1, 0, 3, 77}, - {3, 8, 0, 0, 3, 78}, - {5, 8, 0, 0, 6, 86}, - {2, 8, -1, 0, 6, 94}, - {5, 8, 0, 0, 6, 102}, - {5, 8, 0, 0, 6, 110}, - {5, 8, 0, 0, 6, 118}, - {5, 8, 0, 0, 6, 126}, - {5, 8, 0, 0, 6, 134}, - {5, 8, 0, 0, 6, 142}, - {5, 8, 0, 0, 6, 150}, - {5, 8, 0, 0, 6, 158}, - {1, 6, -1, 0, 3, 166}, - {2, 8, 0, 2, 3, 172}, - {3, 5, -1, -1, 6, 180}, - {4, 3, 0, -2, 5, 185}, - {3, 5, -1, -1, 6, 188}, - {4, 8, -1, 0, 6, 193}, - {10, 10, 0, 2, 11, 201}, - {7, 8, 0, 0, 7, 221}, - {5, 8, -1, 0, 7, 229}, - {6, 8, -1, 0, 8, 237}, - {6, 8, -1, 0, 8, 245}, - {5, 8, -1, 0, 7, 253}, - {5, 8, -1, 0, 6, 261}, - {6, 8, -1, 0, 8, 269}, - {6, 8, -1, 0, 8, 277}, - {1, 8, -1, 0, 3, 285}, - {4, 8, 0, 0, 5, 293}, - {5, 8, -1, 0, 7, 301}, - {4, 8, -1, 0, 6, 309}, - {7, 8, -1, 0, 9, 317}, - {6, 8, -1, 0, 8, 325}, - {6, 8, -1, 0, 8, 333}, - {5, 8, -1, 0, 7, 341}, - {7, 9, -1, 1, 8, 349}, - {5, 8, -1, 0, 7, 358}, - {5, 8, -1, 0, 7, 366}, - {5, 8, 0, 0, 5, 374}, - {6, 8, -1, 0, 8, 382}, - {7, 8, 0, 0, 7, 390}, - {9, 8, 0, 0, 9, 398}, - {5, 8, -1, 0, 7, 414}, - {7, 8, 0, 0, 7, 422}, - {5, 8, -1, 0, 7, 430}, - {2, 10, -1, 2, 3, 438}, - {3, 8, 0, 0, 3, 448}, - {2, 10, 0, 2, 3, 456}, - {5, 5, 0, -3, 6, 466}, - {6, 1, 0, 2, 6, 471}, - {2, 3, 0, -5, 3, 472}, - {5, 6, 0, 0, 5, 475}, - {5, 8, 0, 0, 6, 481}, - {4, 6, 0, 0, 5, 489}, - {5, 8, 0, 0, 6, 495}, - {4, 6, 0, 0, 5, 503}, - {4, 8, 0, 0, 4, 509}, - {5, 8, 0, 2, 6, 517}, - {5, 8, 0, 0, 6, 525}, - {1, 8, 0, 0, 2, 533}, - {1, 9, 0, 1, 2, 541}, - {4, 8, 0, 0, 5, 550}, - {1, 8, 0, 0, 2, 558}, - {7, 6, 0, 0, 8, 566}, - {5, 6, 0, 0, 6, 572}, - {5, 6, 0, 0, 6, 578}, - {5, 8, 0, 2, 6, 584}, - {5, 8, 0, 2, 6, 592}, - {3, 6, 0, 0, 4, 600}, - {4, 6, 0, 0, 5, 606}, - {3, 8, 0, 0, 4, 612}, - {4, 6, 0, 0, 5, 620}, - {5, 6, 0, 0, 6, 626}, - {7, 6, 0, 0, 8, 632}, - {5, 6, 0, 0, 6, 638}, - {4, 8, 0, 2, 5, 644}, - {4, 6, 0, 0, 5, 652}, - {3, 10, 0, 2, 3, 658}, - {1, 10, -1, 2, 3, 668}, - {3, 10, 0, 2, 3, 678}, - {6, 2, 0, -3, 7, 688}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 3, -1}, - {1, 8, -1, 2, 3, 690}, - {5, 8, 0, 1, 6, 698}, - {5, 8, 0, 0, 6, 706}, - {4, 6, 0, -1, 5, 714}, - {5, 8, 0, 0, 6, 720}, - {1, 10, -1, 2, 3, 728}, - {5, 10, 0, 2, 6, 738}, - {3, 1, 0, -7, 3, 748}, - {7, 7, -1, 0, 9, 749}, - {3, 5, 0, -3, 4, 756}, - {5, 5, 0, 0, 6, 761}, - {5, 3, -1, -2, 7, 766}, - {3, 1, 0, -3, 4, 769}, - {7, 7, -1, 0, 9, 770}, - {3, 1, 0, -7, 3, 777}, - {4, 4, 0, -3, 4, 778}, - {5, 7, 0, 0, 6, 782}, - {3, 4, 0, -3, 3, 789}, - {3, 4, 0, -3, 3, 793}, - {2, 2, 0, -6, 3, 797}, - {4, 8, 0, 2, 5, 799}, - {6, 10, 0, 2, 6, 807}, - {2, 1, 0, -3, 3, 817}, - {2, 2, 0, 2, 3, 818}, - {2, 4, 0, -3, 3, 820}, - {3, 5, 0, -3, 4, 824}, - {5, 5, 0, 0, 6, 829}, - {9, 8, 0, 0, 9, 834}, - {8, 8, 0, 0, 9, 850}, - {9, 8, 0, 0, 9, 858}, - {4, 8, -1, 2, 6, 874}, - {7, 11, 0, 0, 7, 882}, - {7, 11, 0, 0, 7, 893}, - {7, 11, 0, 0, 7, 904}, - {7, 11, 0, 0, 7, 915}, - {7, 10, 0, 0, 7, 926}, - {7, 11, 0, 0, 7, 936}, - {9, 8, 0, 0, 10, 947}, - {6, 10, -1, 2, 8, 963}, - {5, 11, -1, 0, 7, 973}, - {5, 11, -1, 0, 7, 984}, - {5, 11, -1, 0, 7, 995}, - {5, 10, -1, 0, 7, 1006}, - {2, 11, 0, 0, 3, 1016}, - {2, 11, -1, 0, 3, 1027}, - {3, 11, 0, 0, 3, 1038}, - {3, 10, 0, 0, 3, 1049}, - {7, 8, 0, 0, 8, 1059}, - {6, 11, -1, 0, 8, 1067}, - {6, 11, -1, 0, 8, 1078}, - {6, 11, -1, 0, 8, 1089}, - {6, 11, -1, 0, 8, 1100}, - {6, 11, -1, 0, 8, 1111}, - {6, 10, -1, 0, 8, 1122}, - {5, 5, 0, -1, 6, 1132}, - {6, 10, -1, 1, 8, 1137}, - {6, 11, -1, 0, 8, 1147}, - {6, 11, -1, 0, 8, 1158}, - {6, 11, -1, 0, 8, 1169}, - {6, 10, -1, 0, 8, 1180}, - {7, 11, 0, 0, 7, 1190}, - {5, 8, -1, 0, 7, 1201}, - {4, 8, 0, 0, 5, 1209}, - {5, 9, 0, 0, 5, 1217}, - {5, 9, 0, 0, 5, 1226}, - {5, 9, 0, 0, 5, 1235}, - {5, 9, 0, 0, 5, 1244}, - {5, 8, 0, 0, 5, 1253}, - {5, 9, 0, 0, 5, 1261}, - {7, 6, 0, 0, 8, 1270}, - {4, 8, 0, 2, 5, 1276}, - {4, 9, 0, 0, 5, 1284}, - {4, 9, 0, 0, 5, 1293}, - {4, 9, 0, 0, 5, 1302}, - {4, 8, 0, 0, 5, 1311}, - {2, 9, 1, 0, 2, 1319}, - {2, 9, 0, 0, 2, 1328}, - {3, 9, 1, 0, 2, 1337}, - {3, 8, 0, 0, 2, 1346}, - {5, 9, 0, 0, 6, 1354}, - {4, 9, 0, 0, 5, 1363}, - {5, 9, 0, 0, 6, 1372}, - {5, 9, 0, 0, 6, 1381}, - {5, 9, 0, 0, 6, 1390}, - {5, 9, 0, 0, 6, 1399}, - {5, 8, 0, 0, 6, 1408}, - {5, 5, 0, -1, 6, 1416}, - {6, 6, 0, 0, 6, 1421}, - {4, 9, 0, 0, 5, 1427}, - {4, 9, 0, 0, 5, 1436}, - {4, 9, 0, 0, 5, 1445}, - {4, 8, 0, 0, 5, 1454}, - {4, 11, 0, 2, 5, 1462}, - {5, 10, 0, 2, 6, 1473}, - {4, 10, 0, 2, 5, 1483}, - }, - helv10_bitmap_data, - 0 -}; - -#endif /* BLF_FONT_HELV10_H */ diff --git a/source/blender/blenfont/intern/blf_font_helv12.h b/source/blender/blenfont/intern/blf_font_helv12.h deleted file mode 100644 index 8ba38ca1cee..00000000000 --- a/source/blender/blenfont/intern/blf_font_helv12.h +++ /dev/null @@ -1,519 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_HELV12_H -#define BLF_FONT_HELV12_H - -static unsigned char helv12_bitmap_data[]= { - 0x80,0x00,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0xa0,0xa0,0xa0,0x50,0x50,0x50,0xfc, - 0x28,0xfc,0x28,0x28,0x20,0x70,0xa8,0xa8, - 0x28,0x70,0xa0,0xa8,0x70,0x20,0x23,0x00, - 0x14,0x80,0x14,0x80,0x13,0x00,0x08,0x00, - 0x68,0x00,0x94,0x00,0x94,0x00,0x62,0x00, - 0x72,0x8c,0x84,0x8a,0x50,0x30,0x48,0x48, - 0x30,0x80,0x40,0xc0,0x20,0x40,0x40,0x80, - 0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x20, - 0x80,0x40,0x40,0x20,0x20,0x20,0x20,0x20, - 0x20,0x40,0x40,0x80,0xa0,0x40,0xa0,0x20, - 0x20,0xf8,0x20,0x20,0x80,0x40,0x40,0xf8, - 0x80,0x80,0x80,0x40,0x40,0x40,0x20,0x20, - 0x10,0x10,0x70,0x88,0x88,0x88,0x88,0x88, - 0x88,0x88,0x70,0x20,0x20,0x20,0x20,0x20, - 0x20,0x20,0xe0,0x20,0xf8,0x80,0x80,0x40, - 0x20,0x10,0x08,0x88,0x70,0x70,0x88,0x88, - 0x08,0x08,0x30,0x08,0x88,0x70,0x08,0x08, - 0xfc,0x88,0x48,0x28,0x28,0x18,0x08,0x70, - 0x88,0x88,0x08,0x08,0xf0,0x80,0x80,0xf8, - 0x70,0x88,0x88,0x88,0xc8,0xb0,0x80,0x88, - 0x70,0x40,0x40,0x20,0x20,0x20,0x10,0x10, - 0x08,0xf8,0x70,0x88,0x88,0x88,0x88,0x70, - 0x88,0x88,0x70,0x70,0x88,0x08,0x08,0x78, - 0x88,0x88,0x88,0x70,0x80,0x00,0x00,0x00, - 0x00,0x80,0x80,0x40,0x40,0x00,0x00,0x00, - 0x00,0x40,0x0c,0x30,0xc0,0x30,0x0c,0xf8, - 0x00,0xf8,0xc0,0x30,0x0c,0x30,0xc0,0x20, - 0x00,0x20,0x20,0x10,0x10,0x88,0x88,0x70, - 0x3e,0x00,0x40,0x00,0x9b,0x00,0xa6,0x80, - 0xa2,0x40,0xa2,0x40,0x92,0x40,0x4d,0x40, - 0x60,0x80,0x1f,0x00,0x82,0x82,0x82,0x7c, - 0x44,0x44,0x28,0x28,0x10,0xf8,0x84,0x84, - 0x84,0xf8,0x84,0x84,0x84,0xf8,0x3c,0x42, - 0x80,0x80,0x80,0x80,0x80,0x42,0x3c,0xf8, - 0x84,0x82,0x82,0x82,0x82,0x82,0x84,0xf8, - 0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80, - 0xfc,0x80,0x80,0x80,0x80,0xf8,0x80,0x80, - 0x80,0xfc,0x3a,0x46,0x82,0x82,0x8e,0x80, - 0x80,0x42,0x3c,0x82,0x82,0x82,0x82,0xfe, - 0x82,0x82,0x82,0x82,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x70,0x88,0x88, - 0x08,0x08,0x08,0x08,0x08,0x08,0x82,0x84, - 0x88,0x90,0xe0,0xa0,0x90,0x88,0x84,0xf8, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x88,0x80,0x88,0x80,0x94,0x80,0x94,0x80, - 0xa2,0x80,0xa2,0x80,0xc1,0x80,0xc1,0x80, - 0x80,0x80,0x82,0x86,0x8a,0x8a,0x92,0xa2, - 0xa2,0xc2,0x82,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x80,0x80,0x80,0x80, - 0xf8,0x84,0x84,0x84,0xf8,0x3d,0x42,0x85, - 0x89,0x81,0x81,0x81,0x42,0x3c,0x84,0x84, - 0x84,0x88,0xf8,0x84,0x84,0x84,0xf8,0x78, - 0x84,0x84,0x04,0x18,0x60,0x80,0x84,0x78, - 0x10,0x10,0x10,0x10,0x10,0x10,0x10,0x10, - 0xfe,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x84,0x10,0x10,0x28,0x28,0x44,0x44, - 0x44,0x82,0x82,0x22,0x00,0x22,0x00,0x22, - 0x00,0x55,0x00,0x55,0x00,0x49,0x00,0x88, - 0x80,0x88,0x80,0x88,0x80,0x82,0x44,0x44, - 0x28,0x10,0x28,0x44,0x44,0x82,0x10,0x10, - 0x10,0x10,0x28,0x44,0x44,0x82,0x82,0xfe, - 0x80,0x40,0x20,0x10,0x08,0x04,0x02,0xfe, - 0xc0,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xc0,0x10,0x10,0x20,0x20, - 0x20,0x40,0x40,0x80,0x80,0xc0,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0xc0,0x88,0x50,0x20,0xfe,0xc0,0x80,0x40, - 0x74,0x88,0x88,0x78,0x08,0x88,0x70,0xb0, - 0xc8,0x88,0x88,0x88,0xc8,0xb0,0x80,0x80, - 0x70,0x88,0x80,0x80,0x80,0x88,0x70,0x68, - 0x98,0x88,0x88,0x88,0x98,0x68,0x08,0x08, - 0x70,0x88,0x80,0xf8,0x88,0x88,0x70,0x40, - 0x40,0x40,0x40,0x40,0x40,0xe0,0x40,0x30, - 0x70,0x88,0x08,0x68,0x98,0x88,0x88,0x88, - 0x98,0x68,0x88,0x88,0x88,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x00,0x80,0x80,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0x40, - 0x88,0x90,0xa0,0xc0,0xc0,0xa0,0x90,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x92,0x92,0x92,0x92,0x92,0xda, - 0xa4,0x88,0x88,0x88,0x88,0x88,0xc8,0xb0, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x80, - 0x80,0x80,0xb0,0xc8,0x88,0x88,0x88,0xc8, - 0xb0,0x08,0x08,0x08,0x68,0x98,0x88,0x88, - 0x88,0x98,0x68,0x80,0x80,0x80,0x80,0x80, - 0xc0,0xa0,0x60,0x90,0x10,0x60,0x80,0x90, - 0x60,0x60,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x40,0x40,0x68,0x98,0x88,0x88,0x88,0x88, - 0x88,0x20,0x20,0x50,0x50,0x88,0x88,0x88, - 0x22,0x00,0x22,0x00,0x55,0x00,0x49,0x00, - 0x49,0x00,0x88,0x80,0x88,0x80,0x84,0x84, - 0x48,0x30,0x30,0x48,0x84,0x80,0x40,0x20, - 0x20,0x50,0x50,0x90,0x88,0x88,0x88,0xf0, - 0x80,0x40,0x40,0x20,0x10,0xf0,0x30,0x40, - 0x40,0x40,0x40,0x40,0x80,0x40,0x40,0x40, - 0x40,0x30,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0xc0,0x20, - 0x20,0x20,0x20,0x20,0x10,0x20,0x20,0x20, - 0x20,0xc0,0x98,0x64,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x40,0x70, - 0xc8,0xa0,0xa0,0xa0,0xa8,0x70,0x10,0xb0, - 0x48,0x20,0x20,0xf0,0x40,0x40,0x48,0x30, - 0x84,0x78,0x48,0x48,0x78,0x84,0x20,0x20, - 0xf8,0x20,0xf8,0x20,0x50,0x88,0x88,0x80, - 0x80,0x80,0x80,0x00,0x00,0x00,0x80,0x80, - 0x80,0x80,0x70,0x88,0x08,0x30,0x48,0x88, - 0x88,0x90,0x60,0x80,0x88,0x70,0xa0,0x3e, - 0x00,0x41,0x00,0x9c,0x80,0xa2,0x80,0xa0, - 0x80,0xa2,0x80,0x9c,0x80,0x41,0x00,0x3e, - 0x00,0xe0,0x00,0xa0,0x20,0xe0,0x28,0x50, - 0xa0,0x50,0x28,0x04,0x04,0x04,0xfc,0xf0, - 0x3e,0x00,0x41,0x00,0x94,0x80,0x94,0x80, - 0x98,0x80,0x94,0x80,0x9c,0x80,0x41,0x00, - 0x3e,0x00,0xf0,0x60,0x90,0x90,0x60,0xf8, - 0x00,0x20,0x20,0xf8,0x20,0x20,0xf0,0x40, - 0x20,0x90,0x60,0xc0,0x20,0x40,0x20,0xe0, - 0x80,0x40,0x80,0x80,0x80,0xe8,0x98,0x88, - 0x88,0x88,0x88,0x88,0x28,0x28,0x28,0x28, - 0x28,0x28,0x68,0xe8,0xe8,0xe8,0x68,0x3c, - 0x80,0xc0,0x20,0x20,0x40,0x40,0x40,0x40, - 0xc0,0x40,0xe0,0x00,0xe0,0xa0,0xe0,0xa0, - 0x50,0x28,0x50,0xa0,0x41,0x00,0x27,0x80, - 0x15,0x00,0x13,0x00,0x49,0x00,0x44,0x00, - 0x44,0x00,0xc2,0x00,0x41,0x00,0x47,0x80, - 0x22,0x00,0x11,0x00,0x14,0x80,0x4b,0x00, - 0x48,0x00,0x44,0x00,0xc2,0x00,0x41,0x00, - 0x21,0x00,0x17,0x80,0x15,0x00,0x0b,0x00, - 0xc9,0x00,0x24,0x00,0x44,0x00,0x22,0x00, - 0xe1,0x00,0x70,0x88,0x88,0x40,0x40,0x20, - 0x20,0x00,0x20,0x82,0x82,0x82,0x7c,0x44, - 0x44,0x28,0x10,0x10,0x00,0x10,0x20,0x82, - 0x82,0x82,0x7c,0x44,0x44,0x28,0x10,0x10, - 0x00,0x10,0x08,0x82,0x82,0x82,0x7c,0x44, - 0x44,0x28,0x10,0x10,0x00,0x28,0x10,0x82, - 0x82,0x82,0x7c,0x44,0x44,0x28,0x10,0x10, - 0x00,0x28,0x14,0x82,0x82,0x82,0x7c,0x44, - 0x44,0x28,0x10,0x10,0x00,0x28,0x82,0x82, - 0x82,0x7c,0x44,0x44,0x28,0x10,0x10,0x10, - 0x28,0x10,0x8f,0x80,0x88,0x00,0x88,0x00, - 0x78,0x00,0x4f,0x80,0x48,0x00,0x28,0x00, - 0x28,0x00,0x1f,0x80,0x30,0x08,0x08,0x3c, - 0x42,0x80,0x80,0x80,0x80,0x80,0x42,0x3c, - 0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80, - 0xfc,0x00,0x10,0x20,0xfc,0x80,0x80,0x80, - 0xfc,0x80,0x80,0x80,0xfc,0x00,0x10,0x08, - 0xfc,0x80,0x80,0x80,0xfc,0x80,0x80,0x80, - 0xfc,0x00,0x28,0x10,0xfc,0x80,0x80,0x80, - 0xfc,0x80,0x80,0x80,0xfc,0x00,0x28,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0x40,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x40, - 0x00,0xa0,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x00,0xa0,0x7c,0x42, - 0x41,0x41,0xf1,0x41,0x41,0x42,0x7c,0x82, - 0x86,0x8a,0x8a,0x92,0xa2,0xa2,0xc2,0x82, - 0x00,0x28,0x14,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x00,0x08,0x10,0x3c, - 0x42,0x81,0x81,0x81,0x81,0x81,0x42,0x3c, - 0x00,0x08,0x04,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x00,0x14,0x08,0x3c, - 0x42,0x81,0x81,0x81,0x81,0x81,0x42,0x3c, - 0x00,0x28,0x14,0x3c,0x42,0x81,0x81,0x81, - 0x81,0x81,0x42,0x3c,0x00,0x24,0x88,0x50, - 0x20,0x50,0x88,0x80,0x00,0x5e,0x00,0x21, - 0x00,0x50,0x80,0x48,0x80,0x44,0x80,0x44, - 0x80,0x42,0x80,0x21,0x00,0x1e,0x80,0x00, - 0x40,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x84,0x00,0x10,0x20,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x10, - 0x08,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x84,0x00,0x28,0x10,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x48, - 0x10,0x10,0x10,0x10,0x28,0x44,0x44,0x82, - 0x82,0x00,0x10,0x08,0x80,0x80,0xf8,0x84, - 0x84,0x84,0xf8,0x80,0x80,0xb0,0x88,0x88, - 0x88,0xb0,0x88,0x88,0x88,0x70,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0x00,0x10,0x20, - 0x74,0x88,0x88,0x78,0x08,0x88,0x70,0x00, - 0x20,0x10,0x74,0x88,0x88,0x78,0x08,0x88, - 0x70,0x00,0x50,0x20,0x74,0x88,0x88,0x78, - 0x08,0x88,0x70,0x00,0x50,0x28,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0x00,0x50,0x74, - 0x88,0x88,0x78,0x08,0x88,0x70,0x30,0x48, - 0x30,0x77,0x00,0x88,0x80,0x88,0x00,0x7f, - 0x80,0x08,0x80,0x88,0x80,0x77,0x00,0x60, - 0x10,0x20,0x70,0x88,0x80,0x80,0x80,0x88, - 0x70,0x70,0x88,0x80,0xf8,0x88,0x88,0x70, - 0x00,0x20,0x40,0x70,0x88,0x80,0xf8,0x88, - 0x88,0x70,0x00,0x20,0x10,0x70,0x88,0x80, - 0xf8,0x88,0x88,0x70,0x00,0x50,0x20,0x70, - 0x88,0x80,0xf8,0x88,0x88,0x70,0x00,0x50, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0x00, - 0x40,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x00,0x80,0x40,0x40,0x40,0x40,0x40, - 0x40,0x40,0x40,0x00,0xa0,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x00,0xa0,0x70, - 0x88,0x88,0x88,0x88,0x78,0x08,0x50,0x30, - 0x68,0x88,0x88,0x88,0x88,0x88,0xc8,0xb0, - 0x00,0x50,0x28,0x70,0x88,0x88,0x88,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x88, - 0x88,0x88,0x88,0x70,0x00,0x20,0x10,0x70, - 0x88,0x88,0x88,0x88,0x88,0x70,0x00,0x50, - 0x20,0x70,0x88,0x88,0x88,0x88,0x88,0x70, - 0x00,0x50,0x28,0x70,0x88,0x88,0x88,0x88, - 0x88,0x70,0x00,0x50,0x20,0x00,0xf8,0x00, - 0x20,0xb8,0x44,0x64,0x54,0x4c,0x44,0x3a, - 0x68,0x98,0x88,0x88,0x88,0x88,0x88,0x00, - 0x20,0x40,0x68,0x98,0x88,0x88,0x88,0x88, - 0x88,0x00,0x20,0x10,0x68,0x98,0x88,0x88, - 0x88,0x88,0x88,0x00,0x50,0x20,0x68,0x98, - 0x88,0x88,0x88,0x88,0x88,0x00,0x50,0x80, - 0x40,0x20,0x20,0x50,0x50,0x90,0x88,0x88, - 0x88,0x00,0x20,0x10,0x80,0x80,0x80,0xb0, - 0xc8,0x88,0x88,0x88,0xc8,0xb0,0x80,0x80, - 0xc0,0x20,0x20,0x20,0x30,0x50,0x50,0x48, - 0x88,0x88,0x00,0x50, -}; - -FontDataBLF blf_font_helv12 = { - 0, -3, - 11, 12, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 16, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 4, -1}, - {1, 9, -1, 0, 3, 0}, - {3, 3, -1, -6, 5, 9}, - {6, 8, 0, 0, 7, 12}, - {5, 10, -1, 1, 7, 20}, - {9, 9, -1, 0, 11, 30}, - {7, 9, -1, 0, 9, 48}, - {2, 3, -1, -6, 3, 57}, - {3, 12, -1, 3, 4, 60}, - {3, 12, 0, 3, 4, 72}, - {3, 3, -1, -6, 5, 84}, - {5, 5, -1, -1, 7, 87}, - {2, 3, -1, 2, 4, 92}, - {5, 1, -1, -3, 8, 95}, - {1, 1, -1, 0, 3, 96}, - {4, 9, 0, 0, 4, 97}, - {5, 9, -1, 0, 7, 106}, - {3, 9, -1, 0, 7, 115}, - {5, 9, -1, 0, 7, 124}, - {5, 9, -1, 0, 7, 133}, - {6, 9, 0, 0, 7, 142}, - {5, 9, -1, 0, 7, 151}, - {5, 9, -1, 0, 7, 160}, - {5, 9, -1, 0, 7, 169}, - {5, 9, -1, 0, 7, 178}, - {5, 9, -1, 0, 7, 187}, - {1, 6, -1, 0, 3, 196}, - {2, 8, 0, 2, 3, 202}, - {6, 5, 0, -1, 7, 210}, - {5, 3, -1, -2, 7, 215}, - {6, 5, -1, -1, 7, 218}, - {5, 9, -1, 0, 7, 223}, - {10, 10, -1, 1, 12, 232}, - {7, 9, -1, 0, 9, 252}, - {6, 9, -1, 0, 8, 261}, - {7, 9, -1, 0, 9, 270}, - {7, 9, -1, 0, 9, 279}, - {6, 9, -1, 0, 8, 288}, - {6, 9, -1, 0, 8, 297}, - {7, 9, -1, 0, 9, 306}, - {7, 9, -1, 0, 9, 315}, - {1, 9, -1, 0, 3, 324}, - {5, 9, -1, 0, 7, 333}, - {7, 9, -1, 0, 8, 342}, - {5, 9, -1, 0, 7, 351}, - {9, 9, -1, 0, 11, 360}, - {7, 9, -1, 0, 9, 378}, - {8, 9, -1, 0, 10, 387}, - {6, 9, -1, 0, 8, 396}, - {8, 9, -1, 0, 10, 405}, - {6, 9, -1, 0, 8, 414}, - {6, 9, -1, 0, 8, 423}, - {7, 9, 0, 0, 7, 432}, - {6, 9, -1, 0, 8, 441}, - {7, 9, -1, 0, 9, 450}, - {9, 9, -1, 0, 11, 459}, - {7, 9, -1, 0, 9, 477}, - {7, 9, -1, 0, 9, 486}, - {7, 9, -1, 0, 9, 495}, - {2, 12, -1, 3, 3, 504}, - {4, 9, 0, 0, 4, 516}, - {2, 12, 0, 3, 3, 525}, - {5, 3, 0, -5, 6, 537}, - {7, 1, 0, 2, 7, 540}, - {2, 3, 0, -6, 3, 541}, - {6, 7, -1, 0, 7, 544}, - {5, 9, -1, 0, 7, 551}, - {5, 7, -1, 0, 7, 560}, - {5, 9, -1, 0, 7, 567}, - {5, 7, -1, 0, 7, 576}, - {4, 9, 0, 0, 3, 583}, - {5, 10, -1, 3, 7, 592}, - {5, 9, -1, 0, 7, 602}, - {1, 9, -1, 0, 3, 611}, - {2, 12, 0, 3, 3, 620}, - {5, 9, -1, 0, 6, 632}, - {1, 9, -1, 0, 3, 641}, - {7, 7, -1, 0, 9, 650}, - {5, 7, -1, 0, 7, 657}, - {5, 7, -1, 0, 7, 664}, - {5, 10, -1, 3, 7, 671}, - {5, 10, -1, 3, 7, 681}, - {3, 7, -1, 0, 4, 691}, - {4, 7, -1, 0, 6, 698}, - {3, 9, 0, 0, 3, 705}, - {5, 7, -1, 0, 7, 714}, - {5, 7, -1, 0, 7, 721}, - {9, 7, 0, 0, 9, 728}, - {6, 7, 0, 0, 6, 742}, - {5, 10, -1, 3, 7, 749}, - {4, 7, -1, 0, 6, 759}, - {4, 12, 0, 3, 4, 766}, - {1, 12, -1, 3, 3, 778}, - {4, 12, 0, 3, 4, 790}, - {6, 2, 0, -3, 7, 802}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 4, -1}, - {1, 10, -1, 3, 3, 804}, - {5, 9, -1, 1, 7, 814}, - {5, 9, -1, 0, 7, 823}, - {6, 6, 0, -1, 7, 832}, - {5, 9, -1, 0, 7, 838}, - {1, 11, -1, 2, 3, 847}, - {5, 12, 0, 3, 6, 858}, - {3, 1, 0, -8, 3, 870}, - {9, 9, -1, 0, 11, 871}, - {3, 5, -1, -4, 5, 889}, - {5, 5, -1, -1, 7, 894}, - {6, 4, -1, -2, 8, 899}, - {4, 1, 0, -3, 5, 903}, - {9, 9, -1, 0, 11, 904}, - {4, 1, 0, -8, 4, 922}, - {4, 4, 0, -4, 5, 923}, - {5, 7, -1, 0, 7, 927}, - {4, 5, 0, -3, 4, 934}, - {3, 5, 0, -3, 4, 939}, - {2, 2, 0, -8, 2, 944}, - {5, 10, -1, 3, 7, 946}, - {6, 12, 0, 3, 7, 956}, - {1, 1, -1, -3, 3, 968}, - {3, 4, 0, 3, 3, 969}, - {2, 5, -1, -3, 4, 973}, - {3, 5, -1, -4, 5, 978}, - {5, 5, -1, -1, 7, 983}, - {9, 9, 0, 0, 10, 988}, - {9, 9, 0, 0, 10, 1006}, - {9, 9, 0, 0, 10, 1024}, - {5, 9, -1, 3, 7, 1042}, - {7, 12, -1, 0, 9, 1051}, - {7, 12, -1, 0, 9, 1063}, - {7, 12, -1, 0, 9, 1075}, - {7, 12, -1, 0, 9, 1087}, - {7, 11, -1, 0, 9, 1099}, - {7, 12, -1, 0, 9, 1110}, - {9, 9, -1, 0, 11, 1122}, - {7, 12, -1, 3, 9, 1140}, - {6, 12, -1, 0, 8, 1152}, - {6, 12, -1, 0, 8, 1164}, - {6, 12, -1, 0, 8, 1176}, - {6, 11, -1, 0, 8, 1188}, - {2, 12, 0, 0, 3, 1199}, - {2, 12, -1, 0, 3, 1211}, - {3, 12, 0, 0, 3, 1223}, - {3, 11, 0, 0, 3, 1235}, - {8, 9, 0, 0, 9, 1246}, - {7, 12, -1, 0, 9, 1255}, - {8, 12, -1, 0, 10, 1267}, - {8, 12, -1, 0, 10, 1279}, - {8, 12, -1, 0, 10, 1291}, - {8, 12, -1, 0, 10, 1303}, - {8, 11, -1, 0, 10, 1315}, - {5, 5, -1, -1, 7, 1326}, - {10, 11, 0, 1, 10, 1331}, - {6, 12, -1, 0, 8, 1353}, - {6, 12, -1, 0, 8, 1365}, - {6, 12, -1, 0, 8, 1377}, - {6, 11, -1, 0, 8, 1389}, - {7, 12, -1, 0, 9, 1400}, - {6, 9, -1, 0, 8, 1412}, - {5, 9, -1, 0, 7, 1421}, - {6, 10, -1, 0, 7, 1430}, - {6, 10, -1, 0, 7, 1440}, - {6, 10, -1, 0, 7, 1450}, - {6, 10, -1, 0, 7, 1460}, - {6, 9, -1, 0, 7, 1470}, - {6, 10, -1, 0, 7, 1479}, - {9, 7, -1, 0, 11, 1489}, - {5, 10, -1, 3, 7, 1503}, - {5, 10, -1, 0, 7, 1513}, - {5, 10, -1, 0, 7, 1523}, - {5, 10, -1, 0, 7, 1533}, - {5, 9, -1, 0, 7, 1543}, - {2, 10, 0, 0, 3, 1552}, - {2, 10, -1, 0, 3, 1562}, - {3, 10, 0, 0, 3, 1572}, - {3, 9, 0, 0, 3, 1582}, - {5, 10, -1, 0, 7, 1591}, - {5, 10, -1, 0, 7, 1601}, - {5, 10, -1, 0, 7, 1611}, - {5, 10, -1, 0, 7, 1621}, - {5, 10, -1, 0, 7, 1631}, - {5, 10, -1, 0, 7, 1641}, - {5, 9, -1, 0, 7, 1651}, - {5, 5, -1, -1, 7, 1660}, - {7, 7, 0, 0, 7, 1665}, - {5, 10, -1, 0, 7, 1672}, - {5, 10, -1, 0, 7, 1682}, - {5, 10, -1, 0, 7, 1692}, - {5, 9, -1, 0, 7, 1702}, - {5, 13, -1, 3, 7, 1711}, - {5, 12, -1, 3, 7, 1724}, - {5, 12, -1, 3, 7, 1736}, - }, - helv12_bitmap_data, - 0 -}; - -#endif /* BLF_FONT_HELV12_H */ diff --git a/source/blender/blenfont/intern/blf_font_helvb10.h b/source/blender/blenfont/intern/blf_font_helvb10.h deleted file mode 100644 index 35744946ef0..00000000000 --- a/source/blender/blenfont/intern/blf_font_helvb10.h +++ /dev/null @@ -1,487 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_HELVB10_H -#define BLF_FONT_HELVB10_H - -static unsigned char helvb10_bitmap_data[]= { - 0x00,0xc0,0x00,0x80,0x80,0xc0,0xc0,0xc0, - 0xc0,0xa0,0xa0,0xa0,0x50,0x50,0xfc,0x28, - 0x7e,0x28,0x28,0x20,0x70,0xa8,0x28,0x38, - 0x70,0xe0,0xa8,0x70,0x20,0x8c,0x56,0x2c, - 0x10,0x10,0x68,0xb4,0x62,0x76,0xdc,0xcc, - 0xde,0x70,0xd8,0xd8,0x70,0x80,0x40,0xc0, - 0xc0,0x20,0x60,0x40,0xc0,0xc0,0xc0,0xc0, - 0x40,0x60,0x20,0x80,0xc0,0x40,0x60,0x60, - 0x60,0x60,0x40,0xc0,0x80,0xa0,0x40,0xa0, - 0x30,0x30,0xfc,0x30,0x30,0x80,0x40,0xc0, - 0xc0,0xf8,0xc0,0xc0,0x80,0x80,0x40,0x40, - 0x20,0x20,0x10,0x10,0x70,0xd8,0xd8,0xd8, - 0xd8,0xd8,0xd8,0x70,0x60,0x60,0x60,0x60, - 0x60,0x60,0xe0,0x60,0xf8,0xc0,0x60,0x30, - 0x18,0x18,0xd8,0x70,0x70,0xd8,0x18,0x18, - 0x30,0x18,0xd8,0x70,0x18,0x18,0xfc,0x98, - 0x58,0x38,0x18,0x08,0x70,0xd8,0x98,0x18, - 0xf0,0xc0,0xc0,0xf8,0x70,0xd8,0xd8,0xd8, - 0xf0,0xc0,0xd8,0x70,0x60,0x60,0x60,0x30, - 0x30,0x18,0x18,0xf8,0x70,0xd8,0xd8,0xd8, - 0x70,0xd8,0xd8,0x70,0x70,0xd8,0x18,0x78, - 0xd8,0xd8,0xd8,0x70,0xc0,0xc0,0x00,0x00, - 0xc0,0xc0,0x80,0x40,0xc0,0xc0,0x00,0x00, - 0xc0,0xc0,0x30,0x60,0xc0,0x60,0x30,0xf8, - 0x00,0xf8,0xc0,0x60,0x30,0x60,0xc0,0x60, - 0x00,0x60,0x60,0x30,0x18,0xd8,0x70,0x3e, - 0x00,0x40,0x00,0x9b,0x00,0xa4,0x80,0xa2, - 0x40,0x92,0x40,0x4d,0x40,0x60,0x80,0x1f, - 0x00,0xc6,0xc6,0xfe,0x6c,0x6c,0x6c,0x38, - 0x38,0xf8,0xcc,0xcc,0xcc,0xf8,0xcc,0xcc, - 0xf8,0x3c,0x66,0xc2,0xc0,0xc0,0xc2,0x66, - 0x3c,0xf0,0xd8,0xcc,0xcc,0xcc,0xcc,0xd8, - 0xf0,0xf8,0xc0,0xc0,0xc0,0xf8,0xc0,0xc0, - 0xf8,0xc0,0xc0,0xc0,0xc0,0xf0,0xc0,0xc0, - 0xf8,0x3a,0x66,0xc6,0xce,0xc0,0xc2,0x66, - 0x3c,0xcc,0xcc,0xcc,0xcc,0xfc,0xcc,0xcc, - 0xcc,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0x70,0xd8,0x18,0x18,0x18,0x18,0x18, - 0x18,0xc6,0xcc,0xd8,0xf0,0xe0,0xf0,0xd8, - 0xcc,0xf8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc9,0x80,0xc9,0x80,0xdd,0x80,0xd5, - 0x80,0xf7,0x80,0xe3,0x80,0xe3,0x80,0xc1, - 0x80,0xc6,0xce,0xce,0xd6,0xd6,0xe6,0xe6, - 0xc6,0x38,0x6c,0xc6,0xc6,0xc6,0xc6,0x6c, - 0x38,0xc0,0xc0,0xc0,0xf8,0xcc,0xcc,0xcc, - 0xf8,0x02,0x3c,0x6c,0xd6,0xc6,0xc6,0xc6, - 0x6c,0x38,0xcc,0xcc,0xcc,0xf8,0xcc,0xcc, - 0xcc,0xf8,0x78,0xcc,0x8c,0x1c,0x78,0xe0, - 0xcc,0x78,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0xfc,0x78,0xcc,0xcc,0xcc,0xcc,0xcc, - 0xcc,0xcc,0x10,0x38,0x38,0x6c,0x6c,0x6c, - 0xc6,0xc6,0x33,0x00,0x33,0x00,0x7f,0x80, - 0x6d,0x80,0x6d,0x80,0xcc,0xc0,0xcc,0xc0, - 0xcc,0xc0,0xc6,0xc6,0x6c,0x38,0x38,0x6c, - 0xc6,0xc6,0x18,0x18,0x18,0x3c,0x66,0x66, - 0xc3,0xc3,0xfc,0xc0,0x60,0x70,0x30,0x18, - 0x0c,0xfc,0xe0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xe0,0x10,0x10,0x20,0x20, - 0x40,0x40,0x80,0x80,0xe0,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0xe0,0x90,0x90, - 0xf0,0x60,0xfc,0xc0,0xc0,0x80,0x40,0x6c, - 0xd8,0xd8,0x78,0x98,0x70,0xf0,0xd8,0xd8, - 0xd8,0xd8,0xf0,0xc0,0xc0,0x70,0xd0,0xc0, - 0xc0,0xd0,0x70,0x78,0xd8,0xd8,0xd8,0xd8, - 0x78,0x18,0x18,0x70,0xd8,0xc0,0xf8,0xd8, - 0x70,0x60,0x60,0x60,0x60,0x60,0xf0,0x60, - 0x38,0x70,0x18,0x78,0xd8,0xd8,0xd8,0xd8, - 0x68,0xd8,0xd8,0xd8,0xd8,0xd8,0xf0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00, - 0xc0,0xc0,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0x60,0xcc,0xd8,0xf0,0xe0,0xf0, - 0xd8,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xdb,0xdb,0xdb,0xdb,0xdb, - 0xb6,0xd8,0xd8,0xd8,0xd8,0xd8,0xb0,0x70, - 0xd8,0xd8,0xd8,0xd8,0x70,0xc0,0xc0,0xf0, - 0xd8,0xd8,0xd8,0xd8,0xb0,0x18,0x18,0x78, - 0xd8,0xd8,0xd8,0xd8,0x68,0xc0,0xc0,0xc0, - 0xc0,0xe0,0xb0,0x70,0xd8,0x18,0x70,0xd8, - 0x70,0x30,0x60,0x60,0x60,0x60,0xf0,0x60, - 0x60,0x68,0xd8,0xd8,0xd8,0xd8,0xd8,0x20, - 0x70,0x50,0xd8,0xd8,0xd8,0x6c,0x6c,0x6c, - 0xd6,0xd6,0xd6,0xcc,0xcc,0x78,0x30,0x78, - 0xcc,0x60,0x30,0x30,0x78,0xd8,0xd8,0xd8, - 0xd8,0xf8,0xc0,0x60,0x30,0x18,0xf8,0x30, - 0x60,0x60,0x60,0x60,0xc0,0x60,0x60,0x60, - 0x30,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0xc0,0x60,0x60,0x60,0x60, - 0x30,0x60,0x60,0x60,0xc0,0xb0,0x68,0x00, - 0xc0,0xc0,0xc0,0xc0,0x40,0x40,0x00,0xc0, - 0x40,0x70,0xd8,0xa0,0xa0,0xd8,0x70,0x10, - 0xd8,0x68,0x60,0x60,0xf0,0x60,0x68,0x38, - 0x84,0x78,0x48,0x48,0x78,0x84,0x30,0xfc, - 0x30,0xfc,0x48,0xcc,0x84,0x84,0x80,0x80, - 0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x80, - 0x70,0x98,0x38,0x70,0xc8,0x98,0x70,0xe0, - 0xc8,0x70,0xa0,0x3c,0x42,0x9d,0xa1,0xa5, - 0x99,0x42,0x3c,0xe0,0x00,0xa0,0x20,0xe0, - 0x6c,0xd8,0x6c,0x08,0x08,0xf8,0xf0,0x3c, - 0x42,0xa5,0xb9,0xa5,0xbd,0x42,0x3c,0xe0, - 0xc0,0xa0,0x60,0xfc,0x00,0x30,0x30,0xfc, - 0x30,0x30,0xe0,0x40,0xa0,0x60,0xc0,0x20, - 0x40,0xe0,0x80,0x40,0xc0,0xc0,0xe8,0xd8, - 0xd8,0xd8,0xd8,0xd8,0x28,0x28,0x28,0x28, - 0x28,0x68,0xe8,0xe8,0xe8,0x7c,0xc0,0xc0, - 0x40,0x40,0x40,0xc0,0x40,0xe0,0x00,0xe0, - 0xa0,0xe0,0xd8,0x6c,0xd8,0x42,0x2f,0x26, - 0x12,0x48,0x48,0xc4,0x44,0x4e,0x24,0x2a, - 0x16,0x48,0x48,0xc4,0x44,0x42,0x2f,0x26, - 0x12,0xc8,0x28,0x44,0xe4,0x70,0xd8,0xc0, - 0x60,0x30,0x30,0x00,0x30,0xc6,0xc6,0xfe, - 0x6c,0x6c,0x6c,0x38,0x38,0x00,0x10,0x20, - 0xc6,0xc6,0xfe,0x6c,0x6c,0x6c,0x38,0x38, - 0x00,0x10,0x08,0xc6,0xc6,0xfe,0x6c,0x6c, - 0x6c,0x38,0x38,0x00,0x28,0x10,0xc6,0xc6, - 0xfe,0x6c,0x6c,0x6c,0x38,0x38,0x00,0x28, - 0x14,0xc6,0xc6,0xfe,0x6c,0x6c,0x6c,0x38, - 0x38,0x00,0x28,0xc6,0xc6,0xfe,0x6c,0x6c, - 0x6c,0x38,0x38,0x10,0x28,0x10,0xcf,0x80, - 0xcc,0x00,0xfc,0x00,0x6c,0x00,0x6f,0x80, - 0x6c,0x00,0x3c,0x00,0x3f,0x80,0x30,0x10, - 0x3c,0x66,0xc2,0xc0,0xc0,0xc2,0x66,0x3c, - 0xf8,0xc0,0xc0,0xc0,0xf8,0xc0,0xc0,0xf8, - 0x00,0x20,0x40,0xf8,0xc0,0xc0,0xc0,0xf8, - 0xc0,0xc0,0xf8,0x00,0x20,0x10,0xf8,0xc0, - 0xc0,0xc0,0xf8,0xc0,0xc0,0xf8,0x00,0x50, - 0x20,0xf8,0xc0,0xc0,0xc0,0xf8,0xc0,0xc0, - 0xf8,0x00,0x50,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0x00,0x40,0x80,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0x80, - 0x40,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0xa0,0x40,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x00,0x90,0x78,0x6c, - 0x66,0x66,0xf6,0x66,0x6c,0x78,0xc6,0xce, - 0xce,0xd6,0xd6,0xe6,0xe6,0xc6,0x00,0x28, - 0x14,0x38,0x6c,0xc6,0xc6,0xc6,0xc6,0x6c, - 0x38,0x00,0x08,0x10,0x38,0x6c,0xc6,0xc6, - 0xc6,0xc6,0x6c,0x38,0x00,0x10,0x08,0x38, - 0x6c,0xc6,0xc6,0xc6,0xc6,0x6c,0x38,0x00, - 0x28,0x10,0x38,0x6c,0xc6,0xc6,0xc6,0xc6, - 0x6c,0x38,0x00,0x28,0x14,0x38,0x6c,0xc6, - 0xc6,0xc6,0xc6,0x6c,0x38,0x00,0x28,0xcc, - 0x78,0x30,0x78,0xcc,0xb8,0x6c,0xe6,0xd6, - 0xd6,0xce,0x6c,0x3a,0x78,0xcc,0xcc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0x00,0x10,0x20,0x78, - 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0x00, - 0x10,0x08,0x78,0xcc,0xcc,0xcc,0xcc,0xcc, - 0xcc,0xcc,0x00,0x50,0x20,0x78,0xcc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0xcc,0x00,0x48,0x18, - 0x18,0x18,0x3c,0x66,0x66,0xc3,0xc3,0x00, - 0x08,0x04,0xc0,0xc0,0xf8,0xcc,0xcc,0xcc, - 0xf8,0xc0,0xd0,0xc8,0xc8,0xc8,0xd0,0xc8, - 0xc8,0x70,0x6c,0xd8,0xd8,0x78,0x98,0x70, - 0x00,0x10,0x20,0x6c,0xd8,0xd8,0x78,0x98, - 0x70,0x00,0x20,0x10,0x6c,0xd8,0xd8,0x78, - 0x98,0x70,0x00,0x50,0x20,0x6c,0xd8,0xd8, - 0x78,0x98,0x70,0x00,0x50,0x28,0x6c,0xd8, - 0xd8,0x78,0x98,0x70,0x00,0x50,0x6c,0xd8, - 0xd8,0x78,0x98,0x70,0x20,0x50,0x20,0x6e, - 0xdb,0xd8,0x7f,0x9b,0x7e,0x60,0x20,0x70, - 0xd0,0xc0,0xc0,0xd0,0x70,0x70,0xd8,0xc0, - 0xf8,0xd8,0x70,0x00,0x20,0x40,0x70,0xd8, - 0xc0,0xf8,0xd8,0x70,0x00,0x20,0x10,0x70, - 0xd8,0xc0,0xf8,0xd8,0x70,0x00,0x50,0x20, - 0x70,0xd8,0xc0,0xf8,0xd8,0x70,0x00,0x50, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0x40, - 0x80,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00, - 0x80,0x40,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0x00,0xa0,0x40,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0x00,0xa0,0x70,0xd8,0xd8,0xd8,0xd8, - 0x70,0xa0,0x60,0x50,0xd8,0xd8,0xd8,0xd8, - 0xd8,0xb0,0x00,0xa0,0x50,0x70,0xd8,0xd8, - 0xd8,0xd8,0x70,0x00,0x20,0x40,0x70,0xd8, - 0xd8,0xd8,0xd8,0x70,0x00,0x20,0x10,0x70, - 0xd8,0xd8,0xd8,0xd8,0x70,0x00,0x50,0x20, - 0x70,0xd8,0xd8,0xd8,0xd8,0x70,0x00,0xa0, - 0x50,0x70,0xd8,0xd8,0xd8,0xd8,0x70,0x00, - 0x50,0x30,0x00,0xfc,0x00,0x30,0xb8,0x6c, - 0x6c,0x7c,0x6c,0x3a,0x68,0xd8,0xd8,0xd8, - 0xd8,0xd8,0x00,0x20,0x40,0x68,0xd8,0xd8, - 0xd8,0xd8,0xd8,0x00,0x20,0x10,0x68,0xd8, - 0xd8,0xd8,0xd8,0xd8,0x00,0x50,0x20,0x68, - 0xd8,0xd8,0xd8,0xd8,0xd8,0x00,0x50,0x60, - 0x30,0x30,0x78,0xd8,0xd8,0xd8,0xd8,0x00, - 0x20,0x10,0xc0,0xc0,0xf0,0xd8,0xc8,0xc8, - 0xd8,0xf0,0xc0,0xc0,0x60,0x30,0x30,0x78, - 0xd8,0xd8,0xd8,0xd8,0x00,0x50, -}; - -FontDataBLF blf_font_helvb10 = { - -1, -2, - 10, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 0}, - {2, 8, -1, 0, 4, 1}, - {3, 3, -1, -5, 5, 9}, - {7, 7, 1, 0, 6, 12}, - {5, 10, 0, 1, 6, 19}, - {7, 8, 0, 0, 8, 29}, - {7, 8, 0, 0, 8, 37}, - {2, 4, 0, -4, 3, 45}, - {3, 10, 0, 2, 4, 49}, - {3, 10, 0, 2, 4, 59}, - {3, 3, 0, -5, 4, 69}, - {6, 5, 0, -1, 6, 72}, - {2, 4, 0, 2, 3, 77}, - {5, 1, -1, -3, 7, 81}, - {2, 2, 0, 0, 3, 82}, - {4, 8, 0, 0, 4, 84}, - {5, 8, 0, 0, 6, 92}, - {3, 8, -1, 0, 6, 100}, - {5, 8, 0, 0, 6, 108}, - {5, 8, 0, 0, 6, 116}, - {6, 8, 0, 0, 6, 124}, - {5, 8, 0, 0, 6, 132}, - {5, 8, 0, 0, 6, 140}, - {5, 8, 0, 0, 6, 148}, - {5, 8, 0, 0, 6, 156}, - {5, 8, 0, 0, 6, 164}, - {2, 6, 0, 0, 3, 172}, - {2, 8, 0, 2, 3, 178}, - {4, 5, 0, -1, 5, 186}, - {5, 3, 0, -2, 6, 191}, - {4, 5, 0, -1, 5, 194}, - {5, 8, 0, 0, 6, 199}, - {10, 9, 0, 1, 11, 207}, - {7, 8, 0, 0, 8, 225}, - {6, 8, 0, 0, 7, 233}, - {7, 8, 0, 0, 8, 241}, - {6, 8, 0, 0, 7, 249}, - {5, 8, 0, 0, 6, 257}, - {5, 8, 0, 0, 6, 265}, - {7, 8, 0, 0, 8, 273}, - {6, 8, 0, 0, 7, 281}, - {2, 8, 0, 0, 3, 289}, - {5, 8, 0, 0, 6, 297}, - {7, 8, 0, 0, 7, 305}, - {5, 8, 0, 0, 6, 313}, - {9, 8, 0, 0, 10, 321}, - {7, 8, 0, 0, 8, 337}, - {7, 8, 0, 0, 8, 345}, - {6, 8, 0, 0, 7, 353}, - {7, 9, 0, 1, 8, 361}, - {6, 8, 0, 0, 7, 370}, - {6, 8, 0, 0, 7, 378}, - {6, 8, 0, 0, 7, 386}, - {6, 8, 0, 0, 7, 394}, - {7, 8, 0, 0, 8, 402}, - {10, 8, 0, 0, 11, 410}, - {7, 8, 0, 0, 8, 426}, - {8, 8, 0, 0, 9, 434}, - {6, 8, 0, 0, 7, 442}, - {3, 10, 0, 2, 4, 450}, - {4, 8, 0, 0, 4, 460}, - {3, 10, 0, 2, 4, 468}, - {4, 4, 0, -4, 5, 478}, - {6, 1, 0, 2, 6, 482}, - {2, 4, 0, -4, 3, 483}, - {6, 6, 0, 0, 6, 487}, - {5, 8, 0, 0, 6, 493}, - {4, 6, 0, 0, 5, 501}, - {5, 8, 0, 0, 6, 507}, - {5, 6, 0, 0, 6, 515}, - {5, 8, 1, 0, 4, 521}, - {5, 8, 0, 2, 6, 529}, - {5, 8, 0, 0, 6, 537}, - {2, 8, 0, 0, 3, 545}, - {3, 10, 1, 2, 3, 553}, - {6, 8, 0, 0, 6, 563}, - {2, 8, 0, 0, 3, 571}, - {8, 6, 0, 0, 9, 579}, - {5, 6, 0, 0, 6, 585}, - {5, 6, 0, 0, 6, 591}, - {5, 8, 0, 2, 6, 597}, - {5, 8, 0, 2, 6, 605}, - {4, 6, 0, 0, 4, 613}, - {5, 6, 0, 0, 6, 619}, - {4, 8, 1, 0, 4, 625}, - {5, 6, 0, 0, 6, 633}, - {5, 6, 0, 0, 6, 639}, - {7, 6, 0, 0, 8, 645}, - {6, 6, 0, 0, 7, 651}, - {5, 8, 0, 2, 6, 657}, - {5, 6, 0, 0, 6, 665}, - {4, 10, 0, 2, 5, 671}, - {1, 10, -1, 2, 3, 681}, - {4, 10, 0, 2, 5, 691}, - {5, 2, 0, -3, 6, 701}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 703}, - {2, 8, -1, 2, 4, 704}, - {5, 8, 0, 1, 6, 712}, - {5, 8, 0, 0, 6, 720}, - {6, 6, 0, -1, 6, 728}, - {6, 8, 0, 0, 7, 734}, - {1, 10, -1, 2, 3, 742}, - {5, 10, 0, 2, 6, 752}, - {3, 1, 0, -7, 3, 762}, - {8, 8, -1, 0, 10, 763}, - {3, 5, -1, -3, 5, 771}, - {6, 3, 0, -1, 7, 776}, - {5, 3, -1, -2, 7, 779}, - {4, 1, 0, -3, 5, 782}, - {8, 8, -1, 0, 10, 783}, - {3, 1, 0, -7, 3, 791}, - {3, 3, 0, -5, 4, 792}, - {6, 7, 0, 0, 6, 795}, - {3, 4, 0, -4, 3, 802}, - {3, 4, 0, -4, 3, 806}, - {2, 2, 0, -7, 3, 810}, - {5, 8, 0, 2, 6, 812}, - {6, 10, 0, 2, 6, 820}, - {2, 1, 0, -3, 3, 830}, - {2, 2, 0, 2, 3, 831}, - {2, 4, 0, -4, 3, 833}, - {3, 5, -1, -3, 5, 837}, - {6, 3, 0, -1, 7, 842}, - {8, 8, 0, 0, 9, 845}, - {7, 8, 0, 0, 9, 853}, - {8, 8, 0, 0, 9, 861}, - {5, 8, 0, 2, 6, 869}, - {7, 11, 0, 0, 8, 877}, - {7, 11, 0, 0, 8, 888}, - {7, 11, 0, 0, 8, 899}, - {7, 11, 0, 0, 8, 910}, - {7, 10, 0, 0, 8, 921}, - {7, 11, 0, 0, 8, 931}, - {9, 8, 0, 0, 10, 942}, - {7, 10, 0, 2, 8, 958}, - {5, 11, 0, 0, 6, 968}, - {5, 11, 0, 0, 6, 979}, - {5, 11, 0, 0, 6, 990}, - {5, 10, 0, 0, 6, 1001}, - {2, 11, 0, 0, 3, 1011}, - {2, 11, 0, 0, 3, 1022}, - {3, 11, 1, 0, 3, 1033}, - {4, 10, 1, 0, 3, 1044}, - {7, 8, 1, 0, 7, 1054}, - {7, 11, 0, 0, 8, 1062}, - {7, 11, 0, 0, 8, 1073}, - {7, 11, 0, 0, 8, 1084}, - {7, 11, 0, 0, 8, 1095}, - {7, 11, 0, 0, 8, 1106}, - {7, 10, 0, 0, 8, 1117}, - {6, 5, 0, -1, 6, 1127}, - {7, 8, 0, 0, 8, 1132}, - {6, 11, 0, 0, 7, 1140}, - {6, 11, 0, 0, 7, 1151}, - {6, 11, 0, 0, 7, 1162}, - {6, 10, 0, 0, 7, 1173}, - {8, 11, 0, 0, 9, 1183}, - {6, 8, 0, 0, 7, 1194}, - {5, 8, 0, 0, 6, 1202}, - {6, 9, 0, 0, 6, 1210}, - {6, 9, 0, 0, 6, 1219}, - {6, 9, 0, 0, 6, 1228}, - {6, 9, 0, 0, 6, 1237}, - {6, 8, 0, 0, 6, 1246}, - {6, 9, 0, 0, 6, 1254}, - {8, 6, 0, 0, 9, 1263}, - {4, 8, 0, 2, 5, 1269}, - {5, 9, 0, 0, 6, 1277}, - {5, 9, 0, 0, 6, 1286}, - {5, 9, 0, 0, 6, 1295}, - {5, 8, 0, 0, 6, 1304}, - {2, 9, 0, 0, 3, 1312}, - {2, 9, 0, 0, 3, 1321}, - {3, 9, 0, 0, 3, 1330}, - {3, 8, 0, 0, 3, 1339}, - {5, 9, 0, 0, 6, 1347}, - {5, 9, 0, 0, 6, 1356}, - {5, 9, 0, 0, 6, 1365}, - {5, 9, 0, 0, 6, 1374}, - {5, 9, 0, 0, 6, 1383}, - {5, 9, 0, 0, 6, 1392}, - {5, 8, 0, 0, 6, 1401}, - {6, 5, 0, -1, 6, 1409}, - {7, 6, 1, 0, 6, 1414}, - {5, 9, 0, 0, 6, 1420}, - {5, 9, 0, 0, 6, 1429}, - {5, 9, 0, 0, 6, 1438}, - {5, 8, 0, 0, 6, 1447}, - {5, 11, 0, 2, 6, 1455}, - {5, 10, 0, 2, 6, 1466}, - {5, 10, 0, 2, 6, 1476}, - }, - helvb10_bitmap_data, - 0 -}; - -#endif - diff --git a/source/blender/blenfont/intern/blf_font_helvb12.h b/source/blender/blenfont/intern/blf_font_helvb12.h deleted file mode 100644 index c8ac2d224b4..00000000000 --- a/source/blender/blenfont/intern/blf_font_helvb12.h +++ /dev/null @@ -1,559 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_HELVB12_H -#define BLF_FONT_HELVB12_H - -static unsigned char helvb12_bitmap_data[]= { - 0x00,0xc0,0xc0,0x00,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xa0,0xa0,0xa0,0x6c, - 0x00,0x6c,0x00,0x6c,0x00,0xff,0x00,0x36, - 0x00,0x36,0x00,0x36,0x00,0x7f,0x80,0x1b, - 0x00,0x1b,0x00,0x1b,0x00,0x30,0x30,0x78, - 0xec,0xac,0x3c,0x38,0x70,0xf0,0xd4,0xdc, - 0x78,0x30,0x63,0x80,0x37,0xc0,0x36,0xc0, - 0x1f,0xc0,0x1b,0x80,0x0c,0x00,0x76,0x00, - 0xfe,0x00,0xdb,0x00,0xfb,0x00,0x71,0x80, - 0x73,0x80,0xff,0x00,0xce,0x00,0xcf,0x00, - 0xdd,0x80,0x79,0x80,0x38,0x00,0x6c,0x00, - 0x6c,0x00,0x7c,0x00,0x38,0x00,0x80,0x40, - 0xc0,0xc0,0x30,0x60,0x60,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x60,0x60,0x30, - 0xc0,0x60,0x60,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x30,0x60,0x60,0xc0,0xd8,0x70, - 0x70,0xf8,0x20,0x30,0x30,0xfc,0xfc,0x30, - 0x30,0x80,0x40,0xc0,0xc0,0xfc,0xfc,0xc0, - 0xc0,0xc0,0xc0,0xc0,0x60,0x60,0x60,0x20, - 0x30,0x30,0x30,0x18,0x18,0x18,0x78,0xfc, - 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xfc, - 0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0xf0,0xf0,0x30,0xfc,0xfc,0xc0,0x60, - 0x70,0x38,0x18,0xcc,0xcc,0xfc,0x78,0x78, - 0xfc,0xcc,0xcc,0x0c,0x38,0x38,0x0c,0xcc, - 0xfc,0x78,0x0c,0x0c,0xfe,0xfe,0xcc,0x6c, - 0x6c,0x3c,0x3c,0x1c,0x1c,0x78,0xfc,0xcc, - 0xcc,0x0c,0xfc,0xf8,0xc0,0xc0,0xfc,0xfc, - 0x78,0xfc,0xcc,0xcc,0xcc,0xfc,0xf8,0xc0, - 0xcc,0xfc,0x78,0x60,0x60,0x60,0x30,0x30, - 0x30,0x18,0x18,0x0c,0xfc,0xfc,0x78,0xfc, - 0xcc,0xcc,0xcc,0x78,0x78,0xcc,0xcc,0xfc, - 0x78,0x78,0xfc,0xcc,0x0c,0x7c,0xfc,0xcc, - 0xcc,0xcc,0xfc,0x78,0xc0,0xc0,0x00,0x00, - 0x00,0x00,0xc0,0xc0,0x80,0x40,0xc0,0xc0, - 0x00,0x00,0x00,0x00,0xc0,0xc0,0x0c,0x38, - 0xe0,0xe0,0x38,0x0c,0xfc,0xfc,0x00,0xfc, - 0xfc,0xc0,0x70,0x1c,0x1c,0x70,0xc0,0x30, - 0x30,0x00,0x30,0x30,0x38,0x1c,0xcc,0xcc, - 0xfc,0x78,0x1f,0x00,0x71,0x80,0x40,0x00, - 0xdd,0x80,0xb6,0xc0,0xb2,0x40,0xb3,0x60, - 0xdb,0x20,0x4d,0xa0,0x60,0x40,0x39,0xc0, - 0x0f,0x00,0xc3,0xc3,0xff,0x7e,0x66,0x66, - 0x3c,0x3c,0x3c,0x18,0x18,0xf8,0xfc,0xcc, - 0xcc,0xcc,0xf8,0xf8,0xcc,0xcc,0xfc,0xf8, - 0x78,0xfc,0xcc,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xcc,0xfc,0x78,0xf8,0xfc,0xce,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xce,0xfc,0xf8,0xfc,0xfc, - 0xc0,0xc0,0xc0,0xf8,0xf8,0xc0,0xc0,0xfc, - 0xfc,0xc0,0xc0,0xc0,0xc0,0xc0,0xf8,0xf8, - 0xc0,0xc0,0xfc,0xfc,0x76,0xfe,0xc6,0xc6, - 0xde,0xde,0xc0,0xc0,0xc6,0xfe,0x7c,0xc6, - 0xc6,0xc6,0xc6,0xc6,0xfe,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x70,0xf8,0xd8, - 0x18,0x18,0x18,0x18,0x18,0x18,0x18,0x18, - 0xc6,0xce,0xcc,0xd8,0xf8,0xf0,0xf0,0xd8, - 0xcc,0xcc,0xc6,0xfc,0xfc,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc9,0x80, - 0xc9,0x80,0xdd,0x80,0xdd,0x80,0xf7,0x80, - 0xf7,0x80,0xe3,0x80,0xe3,0x80,0xe3,0x80, - 0xc1,0x80,0xc1,0x80,0xc6,0xc6,0xce,0xce, - 0xde,0xd6,0xf6,0xe6,0xe6,0xc6,0xc6,0x7c, - 0xfe,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6, - 0xfe,0x7c,0xc0,0xc0,0xc0,0xc0,0xfc,0xfe, - 0xc6,0xc6,0xc6,0xfe,0xfc,0x06,0x7e,0xfc, - 0xce,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0xfe, - 0x7c,0xc6,0xc6,0xc6,0xce,0xfc,0xfc,0xc6, - 0xc6,0xc6,0xfe,0xfc,0x78,0xfc,0xcc,0x0c, - 0x1c,0x78,0xe0,0xc0,0xcc,0xfc,0x78,0x30, - 0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0xfc,0xfc,0x7c,0xfe,0xc6,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0xc6,0xc6,0x18,0x18,0x18, - 0x3c,0x3c,0x3c,0x66,0x66,0x66,0xc3,0xc3, - 0x33,0x00,0x33,0x00,0x33,0x00,0x3b,0x00, - 0x7f,0x80,0x6d,0x80,0x6d,0x80,0x6d,0x80, - 0xcc,0xc0,0xcc,0xc0,0xcc,0xc0,0xc3,0xc3, - 0x66,0x7e,0x3c,0x18,0x3c,0x7e,0x66,0xc3, - 0xc3,0x18,0x18,0x18,0x18,0x18,0x3c,0x3c, - 0x66,0x66,0xc3,0xc3,0xfe,0xfe,0xc0,0x60, - 0x60,0x30,0x18,0x18,0x0c,0xfe,0xfe,0xe0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xe0,0x30,0x30,0x30, - 0x70,0x60,0x60,0x60,0xe0,0xc0,0xc0,0xc0, - 0xe0,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0xe0,0x88,0xd8, - 0x70,0x70,0x20,0xfe,0xc0,0xc0,0x80,0x40, - 0x76,0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78, - 0xd8,0xfc,0xcc,0xcc,0xcc,0xcc,0xfc,0xd8, - 0xc0,0xc0,0xc0,0x78,0xfc,0xcc,0xc0,0xc0, - 0xcc,0xfc,0x78,0x6c,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x6c,0x0c,0x0c,0x0c,0x78,0xfc, - 0xc0,0xfc,0xfc,0xcc,0xfc,0x78,0x60,0x60, - 0x60,0x60,0x60,0x60,0xf0,0xf0,0x60,0x70, - 0x30,0x78,0xfc,0x0c,0x6c,0xfc,0xcc,0xcc, - 0xcc,0xcc,0xfc,0x6c,0xcc,0xcc,0xcc,0xcc, - 0xcc,0xec,0xfc,0xd8,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0x00, - 0xc0,0xc0,0xc0,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x00,0x60,0x60, - 0xcc,0xd8,0xd8,0xf0,0xe0,0xf0,0xd8,0xcc, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0xc0,0xcc,0xc0, - 0xcc,0xc0,0xcc,0xc0,0xcc,0xc0,0xcc,0xc0, - 0xee,0xc0,0xff,0xc0,0xbb,0x80,0xcc,0xcc, - 0xcc,0xcc,0xcc,0xec,0xfc,0xd8,0x78,0xfc, - 0xcc,0xcc,0xcc,0xcc,0xfc,0x78,0xc0,0xc0, - 0xc0,0xd8,0xfc,0xcc,0xcc,0xcc,0xcc,0xfc, - 0xd8,0x0c,0x0c,0x0c,0x6c,0xfc,0xcc,0xcc, - 0xcc,0xcc,0xfc,0x6c,0xc0,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xe0,0xb0,0x78,0xfc,0xcc,0x1c, - 0x78,0xe0,0xfc,0x78,0x30,0x70,0x60,0x60, - 0x60,0x60,0xf0,0xf0,0x60,0x60,0x6c,0xfc, - 0xdc,0xcc,0xcc,0xcc,0xcc,0xcc,0x30,0x30, - 0x78,0x78,0x78,0xcc,0xcc,0xcc,0x24,0x24, - 0x76,0x76,0x7e,0xdb,0xdb,0xdb,0xcc,0xcc, - 0x78,0x38,0x70,0x78,0xcc,0xcc,0xe0,0xf0, - 0x30,0x30,0x38,0x78,0x78,0x48,0xcc,0xcc, - 0xcc,0xfc,0xfc,0x60,0x30,0x30,0x18,0xfc, - 0xfc,0x30,0x60,0x60,0x60,0x60,0x60,0x40, - 0x80,0x40,0x60,0x60,0x60,0x60,0x30,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xc0,0x60,0x60,0x60, - 0x60,0x60,0x20,0x10,0x20,0x60,0x60,0x60, - 0x60,0xc0,0x98,0xfc,0x64,0xc0,0xc0,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xc0,0x00,0xc0,0xc0, - 0xc0,0x78,0xfc,0xec,0xe0,0xd0,0xd4,0xfc, - 0x78,0x0c,0xdc,0xfe,0x60,0x30,0x30,0xfc, - 0x30,0x60,0x64,0x7c,0x38,0xcc,0x78,0xcc, - 0xcc,0x78,0xcc,0x18,0x18,0x18,0x7e,0x18, - 0x7e,0x3c,0x66,0x66,0xc3,0xc3,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x80,0x80,0x78,0xfc,0xcc,0x1c,0x38, - 0x6c,0xcc,0xcc,0xd8,0x70,0xe0,0xcc,0xfc, - 0x78,0xd8,0xd8,0x1f,0x00,0x71,0xc0,0x6e, - 0xc0,0xdb,0x60,0xdb,0x60,0xd8,0x60,0xdb, - 0x60,0xdb,0x60,0x6e,0xc0,0x71,0xc0,0x1f, - 0x00,0xf0,0x00,0xd0,0xb0,0x70,0xb0,0x60, - 0x36,0x6c,0xd8,0x6c,0x36,0x0c,0x0c,0xfc, - 0xfc,0xe0,0xe0,0x1f,0x00,0x71,0xc0,0x7b, - 0xc0,0xdb,0x60,0xdf,0x60,0xde,0x60,0xdb, - 0x60,0xdb,0x60,0x7e,0xc0,0x71,0xc0,0x1f, - 0x00,0xf0,0xf0,0x60,0x90,0x90,0x60,0xfc, - 0xfc,0x00,0x30,0x30,0xfc,0xfc,0x30,0x30, - 0xf0,0x40,0x20,0x10,0x90,0x60,0x60,0x90, - 0x10,0x20,0x90,0x60,0xc0,0x70,0x30,0xc0, - 0xc0,0xc0,0xec,0xfc,0xdc,0xcc,0xcc,0xcc, - 0xcc,0xcc,0x36,0x36,0x36,0x36,0x36,0x36, - 0x36,0x36,0x76,0xf6,0xf6,0xf6,0xfe,0x7e, - 0xc0,0xc0,0xc0,0x60,0x40,0x40,0x40,0x40, - 0x40,0xc0,0x40,0xf8,0x00,0x70,0xd8,0xd8, - 0xd8,0x70,0xd8,0x6c,0x36,0x6c,0xd8,0x20, - 0x80,0x27,0xc0,0x12,0x80,0x12,0x80,0x09, - 0x80,0x4c,0x80,0x44,0x00,0x42,0x00,0x42, - 0x00,0xc1,0x00,0x41,0x00,0x23,0xc0,0x21, - 0x00,0x10,0x80,0x10,0x40,0x0a,0x40,0x4d, - 0x80,0x44,0x00,0x42,0x00,0x42,0x00,0xc1, - 0x00,0x41,0x00,0x20,0x80,0x27,0xc0,0x12, - 0x80,0x12,0x80,0x09,0x80,0x6c,0x80,0x94, - 0x00,0x12,0x00,0x22,0x00,0x91,0x00,0x61, - 0x00,0x78,0xfc,0xcc,0xcc,0xe0,0x70,0x30, - 0x30,0x00,0x30,0x30,0xc3,0xc3,0x7e,0x7e, - 0x24,0x3c,0x18,0x18,0x00,0x0c,0x38,0x30, - 0xc3,0xc3,0x7e,0x7e,0x24,0x3c,0x18,0x18, - 0x00,0x30,0x1c,0x0c,0xc3,0xc3,0x7e,0x7e, - 0x24,0x3c,0x18,0x18,0x00,0x66,0x3c,0x18, - 0xc3,0xc3,0x7e,0x7e,0x24,0x3c,0x18,0x18, - 0x00,0x2c,0x3e,0x1a,0xc3,0xc3,0x7e,0x7e, - 0x24,0x3c,0x18,0x18,0x00,0x6c,0x6c,0xc3, - 0xc3,0x7e,0x7e,0x24,0x3c,0x18,0x18,0x00, - 0x18,0x34,0x18,0xc7,0xe0,0xc7,0xe0,0xfe, - 0x00,0x7e,0x00,0x66,0x00,0x67,0xc0,0x37, - 0xc0,0x36,0x00,0x3e,0x00,0x1f,0xe0,0x1f, - 0xe0,0x60,0x30,0x20,0x78,0xfc,0xcc,0xc0, - 0xc0,0xc0,0xc0,0xc0,0xcc,0xfc,0x78,0xfc, - 0xfc,0xc0,0xf8,0xf8,0xc0,0xfc,0xfc,0x00, - 0x18,0x70,0x60,0xfc,0xfc,0xc0,0xf8,0xf8, - 0xc0,0xfc,0xfc,0x00,0x60,0x38,0x18,0xfc, - 0xfc,0xc0,0xf8,0xf8,0xc0,0xfc,0xfc,0x00, - 0xcc,0x78,0x30,0xfc,0xfc,0xc0,0xf8,0xf8, - 0xc0,0xfc,0xfc,0x00,0xd8,0xd8,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x60,0x00,0x30, - 0xe0,0xc0,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x60,0x00,0xc0,0x70,0x30,0x30,0x30, - 0x30,0x30,0x30,0x30,0x30,0x30,0x00,0xcc, - 0x78,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x30,0x00,0xd8,0xd8,0x7c,0x7e,0x67, - 0x63,0x63,0xfb,0xfb,0x63,0x67,0x7e,0x7c, - 0xc6,0xce,0xce,0xde,0xf6,0xe6,0xe6,0xc6, - 0x00,0x58,0x7c,0x34,0x7c,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xfe,0x7c,0x00,0x18,0x70,0x60, - 0x7c,0xfe,0xc6,0xc6,0xc6,0xc6,0xfe,0x7c, - 0x00,0x30,0x1c,0x0c,0x7c,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xfe,0x7c,0x00,0xcc,0x78,0x30, - 0x7c,0xfe,0xc6,0xc6,0xc6,0xc6,0xfe,0x7c, - 0x00,0x58,0x7c,0x34,0x7c,0xfe,0xc6,0xc6, - 0xc6,0xc6,0xfe,0x7c,0x00,0x6c,0x6c,0xcc, - 0x78,0x30,0x30,0x78,0xcc,0xde,0x00,0x7f, - 0x00,0x63,0x00,0x73,0x00,0x7b,0x00,0x6b, - 0x00,0x6f,0x00,0x67,0x00,0x63,0x00,0x7f, - 0x00,0x3d,0x80,0x7c,0xfe,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0x00,0x18,0x70,0x60,0x7c, - 0xfe,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x00, - 0x30,0x1c,0x0c,0x7c,0xfe,0xc6,0xc6,0xc6, - 0xc6,0xc6,0xc6,0x00,0xcc,0x78,0x30,0x7c, - 0xfe,0xc6,0xc6,0xc6,0xc6,0xc6,0xc6,0x00, - 0x6c,0x6c,0x18,0x18,0x18,0x18,0x3c,0x7e, - 0xe7,0xc3,0x00,0x30,0x1c,0x0c,0xc0,0xc0, - 0xfc,0xfe,0xc6,0xc6,0xc6,0xfe,0xfc,0xc0, - 0xc0,0xd8,0xdc,0xcc,0xcc,0xcc,0xd8,0xd8, - 0xcc,0xcc,0xfc,0x78,0x76,0xfc,0xcc,0xfc, - 0x7c,0x8c,0xfc,0x78,0x00,0x18,0x70,0x60, - 0x76,0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78, - 0x00,0x60,0x38,0x18,0x76,0xfc,0xcc,0xfc, - 0x7c,0x8c,0xfc,0x78,0x00,0xcc,0x78,0x30, - 0x76,0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78, - 0x00,0x58,0x7c,0x34,0x76,0xfc,0xcc,0xfc, - 0x7c,0x8c,0xfc,0x78,0x00,0xd8,0xd8,0x76, - 0xfc,0xcc,0xfc,0x7c,0x8c,0xfc,0x78,0x00, - 0x30,0x68,0x30,0x77,0x80,0xff,0xc0,0xcc, - 0x00,0xff,0xc0,0x7f,0xc0,0x8c,0xc0,0xff, - 0xc0,0x7b,0x80,0x60,0x30,0x20,0x78,0xfc, - 0xcc,0xc0,0xc0,0xcc,0xfc,0x78,0x78,0xfc, - 0xc0,0xfc,0xfc,0xcc,0xfc,0x78,0x00,0x18, - 0x70,0x60,0x78,0xfc,0xc0,0xfc,0xfc,0xcc, - 0xfc,0x78,0x00,0x60,0x38,0x18,0x78,0xfc, - 0xc0,0xfc,0xfc,0xcc,0xfc,0x78,0x00,0xcc, - 0x78,0x30,0x78,0xfc,0xc0,0xfc,0xfc,0xcc, - 0xfc,0x78,0x00,0xd8,0xd8,0x60,0x60,0x60, - 0x60,0x60,0x60,0x60,0x60,0x00,0x30,0xe0, - 0xc0,0x60,0x60,0x60,0x60,0x60,0x60,0x60, - 0x60,0x00,0xc0,0x70,0x30,0x30,0x30,0x30, - 0x30,0x30,0x30,0x30,0x30,0x00,0xcc,0x78, - 0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, - 0x30,0x00,0xd8,0xd8,0x78,0xfc,0xcc,0xcc, - 0xcc,0xcc,0xfc,0x78,0xb0,0x60,0xd0,0xcc, - 0xcc,0xcc,0xcc,0xcc,0xec,0xfc,0xd8,0x00, - 0xb0,0xf8,0x68,0x78,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x78,0x00,0x18,0x70,0x60,0x78, - 0xfc,0xcc,0xcc,0xcc,0xcc,0xfc,0x78,0x00, - 0x60,0x38,0x18,0x78,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x78,0x00,0xcc,0x78,0x30,0x78, - 0xfc,0xcc,0xcc,0xcc,0xcc,0xfc,0x78,0x00, - 0xb0,0xf8,0x68,0x78,0xfc,0xcc,0xcc,0xcc, - 0xcc,0xfc,0x78,0x00,0xd8,0xd8,0x30,0x30, - 0x00,0xfc,0xfc,0x00,0x30,0x30,0xc0,0x78, - 0xfc,0xcc,0xec,0xdc,0xcc,0xfc,0x78,0x0c, - 0x6c,0xfc,0xdc,0xcc,0xcc,0xcc,0xcc,0xcc, - 0x00,0x18,0x70,0x60,0x6c,0xfc,0xdc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0x00,0x60,0x38,0x18, - 0x6c,0xfc,0xdc,0xcc,0xcc,0xcc,0xcc,0xcc, - 0x00,0xcc,0x78,0x30,0x6c,0xfc,0xdc,0xcc, - 0xcc,0xcc,0xcc,0xcc,0x00,0xd8,0xd8,0xe0, - 0xf0,0x30,0x30,0x38,0x78,0x78,0x48,0xcc, - 0xcc,0xcc,0x00,0x60,0x38,0x18,0xc0,0xc0, - 0xc0,0xd8,0xfc,0xcc,0xcc,0xcc,0xcc,0xfc, - 0xd8,0xc0,0xc0,0xc0,0xe0,0xf0,0x30,0x30, - 0x38,0x78,0x78,0x48,0xcc,0xcc,0xcc,0x00, - 0xd8,0xd8, -}; - -FontDataBLF blf_font_helvb12 = { - -1, -3, - 11, 12, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 12, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 3, 0}, - {2, 11, -1, 0, 4, 1}, - {3, 3, 0, -8, 4, 12}, - {9, 11, 1, 0, 7, 15}, - {6, 13, 0, 2, 7, 37}, - {10, 11, 0, 0, 11, 50}, - {9, 11, 0, 0, 9, 72}, - {2, 4, 0, -7, 3, 94}, - {4, 14, 0, 3, 4, 98}, - {4, 14, 1, 3, 4, 112}, - {5, 5, 0, -6, 6, 126}, - {6, 6, 0, -1, 7, 131}, - {2, 4, 0, 2, 3, 137}, - {6, 2, -1, -3, 9, 141}, - {2, 2, 0, 0, 3, 143}, - {5, 13, 1, 2, 4, 145}, - {6, 11, 0, 0, 7, 158}, - {4, 11, 0, 0, 6, 169}, - {6, 11, 0, 0, 7, 180}, - {6, 11, 0, 0, 7, 191}, - {7, 11, 0, 0, 7, 202}, - {6, 11, 0, 0, 7, 213}, - {6, 11, 0, 0, 7, 224}, - {6, 11, 0, 0, 7, 235}, - {6, 11, 0, 0, 7, 246}, - {6, 11, 0, 0, 7, 257}, - {2, 8, -1, 0, 4, 268}, - {2, 10, -1, 2, 4, 276}, - {6, 6, 0, -1, 7, 286}, - {6, 5, 0, -2, 7, 292}, - {6, 6, 0, -1, 7, 297}, - {6, 11, 0, 0, 7, 303}, - {11, 12, 0, 1, 12, 314}, - {8, 11, 0, 0, 8, 338}, - {6, 11, -1, 0, 8, 349}, - {6, 11, -1, 0, 8, 360}, - {7, 11, -1, 0, 9, 371}, - {6, 11, -1, 0, 8, 382}, - {6, 11, -1, 0, 7, 393}, - {7, 11, -1, 0, 9, 404}, - {7, 11, -1, 0, 9, 415}, - {2, 11, -2, 0, 6, 426}, - {5, 11, 0, 0, 6, 437}, - {7, 11, -1, 0, 8, 448}, - {6, 11, -1, 0, 7, 459}, - {9, 11, -1, 0, 11, 470}, - {7, 11, -1, 0, 9, 492}, - {7, 11, -1, 0, 9, 503}, - {7, 11, -1, 0, 9, 514}, - {7, 12, -1, 1, 9, 525}, - {7, 11, -1, 0, 9, 537}, - {6, 11, -1, 0, 8, 548}, - {6, 11, 0, 0, 6, 559}, - {7, 11, -1, 0, 9, 570}, - {8, 11, 0, 0, 8, 581}, - {10, 11, 0, 0, 10, 592}, - {8, 11, 0, 0, 8, 614}, - {8, 11, 0, 0, 8, 625}, - {7, 11, 0, 0, 7, 636}, - {3, 14, 0, 3, 4, 647}, - {4, 11, 0, 0, 5, 661}, - {3, 14, 0, 3, 4, 672}, - {5, 5, 0, -6, 7, 686}, - {7, 1, 0, 2, 7, 691}, - {2, 4, 0, -7, 3, 692}, - {7, 8, 0, 0, 7, 696}, - {6, 11, 0, 0, 7, 704}, - {6, 8, 0, 0, 7, 715}, - {6, 11, 0, 0, 7, 723}, - {6, 8, 0, 0, 7, 734}, - {4, 11, 0, 0, 5, 742}, - {6, 11, 0, 3, 7, 753}, - {6, 11, 0, 0, 7, 764}, - {2, 11, -1, 0, 5, 775}, - {3, 14, 0, 3, 5, 786}, - {6, 11, 0, 0, 6, 800}, - {2, 11, -1, 0, 5, 811}, - {10, 8, 0, 0, 11, 822}, - {6, 8, 0, 0, 7, 838}, - {6, 8, 0, 0, 7, 846}, - {6, 11, 0, 3, 7, 854}, - {6, 11, 0, 3, 7, 865}, - {4, 8, 0, 0, 4, 876}, - {6, 8, 0, 0, 7, 884}, - {4, 10, 0, 0, 5, 892}, - {6, 8, 0, 0, 7, 902}, - {6, 8, 0, 0, 7, 910}, - {8, 8, 0, 0, 9, 918}, - {6, 8, 0, 0, 7, 926}, - {6, 11, 0, 3, 7, 934}, - {6, 8, 0, 0, 7, 945}, - {4, 14, 0, 3, 4, 953}, - {1, 13, -1, 2, 3, 967}, - {4, 14, 0, 3, 4, 980}, - {6, 3, 0, -3, 7, 994}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {2, 11, 0, 3, 3, 997}, - {6, 10, 0, 1, 7, 1008}, - {7, 11, 0, 0, 7, 1018}, - {6, 6, 0, -3, 7, 1029}, - {8, 11, 1, 0, 7, 1035}, - {1, 13, -1, 2, 3, 1046}, - {6, 14, 0, 3, 7, 1059}, - {5, 2, 0, -9, 5, 1073}, - {11, 11, 0, 0, 12, 1075}, - {4, 7, 0, -4, 5, 1097}, - {7, 5, 0, -2, 8, 1104}, - {6, 4, -1, -3, 9, 1109}, - {3, 2, 0, -3, 4, 1113}, - {11, 11, 0, 0, 12, 1115}, - {4, 2, 0, -9, 4, 1137}, - {4, 4, -1, -7, 6, 1139}, - {6, 9, 0, -1, 7, 1143}, - {4, 6, 0, -5, 4, 1152}, - {4, 6, 0, -5, 4, 1158}, - {4, 3, -1, -9, 4, 1164}, - {6, 11, 0, 3, 7, 1167}, - {7, 14, -1, 3, 10, 1178}, - {2, 2, 0, -5, 3, 1192}, - {3, 3, -1, 3, 5, 1194}, - {2, 6, 0, -5, 4, 1197}, - {5, 7, 0, -4, 6, 1203}, - {7, 5, 0, -2, 8, 1210}, - {10, 11, 0, 0, 11, 1215}, - {10, 11, 0, 0, 11, 1237}, - {10, 11, 0, 0, 11, 1259}, - {6, 11, 0, 3, 7, 1281}, - {8, 12, 0, 0, 8, 1292}, - {8, 12, 0, 0, 8, 1304}, - {8, 12, 0, 0, 8, 1316}, - {8, 12, 0, 0, 8, 1328}, - {8, 11, 0, 0, 8, 1340}, - {8, 12, 0, 0, 8, 1351}, - {11, 11, 0, 0, 12, 1363}, - {6, 14, -1, 3, 8, 1385}, - {6, 12, -1, 0, 8, 1399}, - {6, 12, -1, 0, 8, 1411}, - {6, 12, -1, 0, 8, 1423}, - {6, 11, -1, 0, 8, 1435}, - {4, 12, -1, 0, 6, 1446}, - {4, 12, -1, 0, 6, 1458}, - {6, 12, 0, 0, 6, 1470}, - {5, 11, 0, 0, 6, 1482}, - {8, 11, 0, 0, 9, 1493}, - {7, 12, -1, 0, 9, 1504}, - {7, 12, -1, 0, 9, 1516}, - {7, 12, -1, 0, 9, 1528}, - {7, 12, -1, 0, 9, 1540}, - {7, 12, -1, 0, 9, 1552}, - {7, 11, -1, 0, 9, 1564}, - {6, 6, 0, -1, 7, 1575}, - {9, 11, 0, 0, 9, 1581}, - {7, 12, -1, 0, 9, 1603}, - {7, 12, -1, 0, 9, 1615}, - {7, 12, -1, 0, 9, 1627}, - {7, 11, -1, 0, 9, 1639}, - {8, 12, 0, 0, 8, 1650}, - {7, 11, -1, 0, 9, 1662}, - {6, 11, 0, 0, 7, 1673}, - {7, 12, 0, 0, 7, 1684}, - {7, 12, 0, 0, 7, 1696}, - {7, 12, 0, 0, 7, 1708}, - {7, 12, 0, 0, 7, 1720}, - {7, 11, 0, 0, 7, 1732}, - {7, 12, 0, 0, 7, 1743}, - {10, 8, 0, 0, 11, 1755}, - {6, 11, 0, 3, 7, 1771}, - {6, 12, 0, 0, 7, 1782}, - {6, 12, 0, 0, 7, 1794}, - {6, 12, 0, 0, 7, 1806}, - {6, 11, 0, 0, 7, 1818}, - {4, 12, 0, 0, 5, 1829}, - {4, 12, 0, 0, 5, 1841}, - {6, 12, 1, 0, 5, 1853}, - {5, 11, 1, 0, 5, 1865}, - {6, 11, 0, 0, 7, 1876}, - {6, 12, 0, 0, 7, 1887}, - {6, 12, 0, 0, 7, 1899}, - {6, 12, 0, 0, 7, 1911}, - {6, 12, 0, 0, 7, 1923}, - {6, 12, 0, 0, 7, 1935}, - {6, 11, 0, 0, 7, 1947}, - {6, 8, 0, 0, 7, 1958}, - {6, 10, 0, 1, 7, 1966}, - {6, 12, 0, 0, 7, 1976}, - {6, 12, 0, 0, 7, 1988}, - {6, 12, 0, 0, 7, 2000}, - {6, 11, 0, 0, 7, 2012}, - {6, 15, 0, 3, 7, 2023}, - {6, 14, 0, 3, 7, 2038}, - {6, 14, 0, 3, 7, 2052}, - }, - helvb12_bitmap_data, - 0 -}; - -#endif /* BLF_FONT_HELVB12_H */ diff --git a/source/blender/blenfont/intern/blf_font_helvb8.h b/source/blender/blenfont/intern/blf_font_helvb8.h deleted file mode 100644 index 1e4682f1f5b..00000000000 --- a/source/blender/blenfont/intern/blf_font_helvb8.h +++ /dev/null @@ -1,449 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_HELVB8_H -#define BLF_FONT_HELVB8_H - -static unsigned char helvb8_bitmap_data[]= { - 0x00,0x80,0x00,0x80,0x80,0x80,0x80,0xa0, - 0xa0,0xa0,0x50,0xf8,0x50,0xf8,0x50,0x40, - 0xe0,0x10,0x60,0x80,0x70,0x20,0x5c,0x54, - 0x2c,0xd0,0xa8,0xe8,0x58,0xb0,0xa8,0x48, - 0xa0,0x40,0x80,0x80,0x80,0x40,0x80,0x80, - 0x80,0x80,0x80,0x40,0x80,0x40,0x40,0x40, - 0x40,0x40,0x80,0x40,0xe0,0x40,0x20,0x20, - 0xf8,0x20,0x20,0x80,0x40,0x40,0xf0,0x80, - 0x80,0x80,0x80,0x80,0x40,0x40,0x40,0x60, - 0x90,0x90,0x90,0x90,0x60,0x40,0x40,0x40, - 0x40,0xc0,0x40,0xf0,0x40,0x20,0x10,0x90, - 0x60,0xc0,0x20,0x20,0xc0,0x20,0xc0,0x20, - 0x20,0xf0,0x60,0x20,0x20,0xc0,0x20,0x20, - 0xc0,0x80,0xe0,0x60,0x90,0x90,0xe0,0x80, - 0x70,0x40,0x40,0x40,0x20,0x10,0xf0,0x60, - 0x90,0x90,0x60,0x90,0x60,0x60,0x10,0x70, - 0x90,0x90,0x60,0x80,0x00,0x00,0x80,0x80, - 0x40,0x40,0x00,0x00,0x40,0x20,0x40,0x80, - 0x40,0x20,0xe0,0x00,0xe0,0x80,0x40,0x20, - 0x40,0x80,0x40,0x00,0x40,0x20,0xc0,0x78, - 0x80,0x9e,0xa5,0x99,0x41,0x3e,0x88,0x88, - 0x70,0x50,0x20,0x20,0xe0,0x90,0x90,0xe0, - 0x90,0xe0,0x70,0x88,0x80,0x80,0x88,0x70, - 0xf0,0x88,0x88,0x88,0x88,0xf0,0xf0,0x80, - 0x80,0xe0,0x80,0xf0,0x80,0x80,0x80,0xe0, - 0x80,0xf0,0x70,0x88,0x88,0x98,0x80,0x70, - 0x88,0x88,0x88,0xf8,0x88,0x88,0x80,0x80, - 0x80,0x80,0x80,0x80,0x40,0xa0,0x20,0x20, - 0x20,0x20,0x90,0x90,0xe0,0xc0,0xa0,0x90, - 0xe0,0x80,0x80,0x80,0x80,0x80,0xa8,0xa8, - 0xa8,0xa8,0xd8,0x88,0x88,0x98,0xa8,0xa8, - 0xc8,0x88,0x70,0x88,0x88,0x88,0x88,0x70, - 0x80,0x80,0xe0,0x90,0x90,0xe0,0x10,0x20, - 0x70,0x88,0x88,0x88,0x88,0x70,0x90,0x90, - 0xe0,0x90,0x90,0xe0,0xe0,0x10,0x10,0xe0, - 0x80,0x70,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x70,0x88,0x88,0x88,0x88,0x88,0x40,0xa0, - 0x90,0x90,0x90,0x90,0x48,0x48,0x6c,0x92, - 0x92,0x92,0x90,0x90,0x60,0x60,0x90,0x90, - 0x20,0x20,0x30,0x48,0x48,0xc8,0xf0,0x80, - 0x40,0x20,0x10,0xf0,0xc0,0x80,0x80,0x80, - 0x80,0x80,0xc0,0x40,0x40,0x40,0x40,0x80, - 0x80,0x80,0xc0,0x40,0x40,0x40,0x40,0x40, - 0xc0,0x88,0x50,0x20,0xf8,0x80,0x80,0x80, - 0xd0,0xa0,0xe0,0x20,0xc0,0xe0,0x90,0x90, - 0x90,0xe0,0x80,0x80,0x60,0x80,0x80,0x80, - 0x60,0x70,0x90,0x90,0x90,0x70,0x10,0x10, - 0x60,0x80,0xe0,0xa0,0x40,0x40,0x40,0x40, - 0x40,0xe0,0x40,0x20,0x60,0x10,0x70,0x90, - 0x90,0x70,0x90,0x90,0x90,0x90,0xe0,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x80,0x40,0x40,0x40,0x40,0x40,0x40,0x00, - 0x40,0xa0,0xa0,0xc0,0xc0,0xa0,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0xa8, - 0xa8,0xa8,0xa8,0xf0,0x90,0x90,0x90,0x90, - 0xe0,0x60,0x90,0x90,0x90,0x60,0x80,0xe0, - 0x90,0x90,0x90,0xe0,0x10,0x70,0x90,0x90, - 0x90,0x70,0x80,0x80,0x80,0xc0,0xa0,0xc0, - 0x20,0x60,0x80,0x60,0x40,0x40,0x40,0x40, - 0xe0,0x40,0x40,0x60,0xa0,0xa0,0xa0,0xa0, - 0x40,0xa0,0x90,0x90,0x90,0x50,0x50,0xa8, - 0xa8,0xa8,0x90,0x90,0x60,0x90,0x90,0x80, - 0x40,0x60,0x90,0x90,0x90,0xe0,0x80,0x40, - 0x20,0xe0,0x20,0x40,0x40,0xc0,0x40,0x40, - 0x20,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x40,0x40,0x60,0x40,0x40,0x80,0xb0, - 0x48,0x00,0x80,0x80,0x80,0x80,0x80,0x00, - 0x80,0x40,0x40,0xa0,0x80,0xa0,0x40,0x40, - 0xf0,0x40,0x40,0xe0,0x40,0x30,0x88,0x70, - 0x50,0x70,0x88,0x20,0x20,0xf8,0x50,0x88, - 0x80,0x80,0x80,0x00,0x80,0x80,0x80,0xe0, - 0x10,0x30,0x60,0x90,0x60,0x80,0x70,0x90, - 0x78,0x84,0xb4,0xa4,0xb4,0x84,0x78,0xe0, - 0x00,0xe0,0x20,0xc0,0x50,0xa0,0x50,0x10, - 0x10,0xf0,0xc0,0x78,0x84,0xac,0xb4,0xb4, - 0x84,0x78,0xe0,0x40,0xa0,0x40,0xf0,0x00, - 0x20,0xf0,0x20,0xc0,0x80,0x40,0x80,0xc0, - 0x20,0x60,0xe0,0x80,0x40,0x80,0x80,0xe0, - 0xa0,0xa0,0xa0,0x50,0x50,0x50,0x50,0xd0, - 0xd0,0xd0,0x78,0x80,0x80,0x80,0x40,0x40, - 0x40,0xc0,0x40,0xe0,0x00,0xe0,0xa0,0xe0, - 0xa0,0x50,0xa0,0x04,0x5e,0x2c,0x54,0x48, - 0xc4,0x40,0x0e,0x44,0x22,0x5c,0x48,0xc4, - 0x40,0x04,0x5e,0x2c,0xd4,0x28,0x64,0xe0, - 0x60,0x90,0x40,0x20,0x00,0x20,0x88,0x88, - 0x70,0x50,0x20,0x20,0x00,0x20,0x40,0x88, - 0x88,0x70,0x50,0x20,0x20,0x00,0x20,0x10, - 0x88,0x88,0x70,0x50,0x20,0x20,0x00,0x50, - 0x20,0x88,0x88,0x70,0x50,0x20,0x20,0x00, - 0x50,0x28,0x88,0x88,0x70,0x50,0x20,0x20, - 0x00,0x50,0x88,0x88,0x70,0x50,0x20,0x20, - 0x20,0x50,0x20,0x9e,0x90,0x7c,0x50,0x30, - 0x3e,0x80,0x40,0x70,0x88,0x80,0x88,0x88, - 0x70,0xf0,0x80,0x80,0xe0,0x80,0xf0,0x00, - 0x20,0x40,0xf0,0x80,0x80,0xe0,0x80,0xf0, - 0x00,0x40,0x20,0xf0,0x80,0x80,0xe0,0x80, - 0xf0,0x00,0xa0,0x40,0xf0,0x80,0x80,0xe0, - 0x80,0xf0,0x00,0xa0,0x40,0x40,0x40,0x40, - 0x40,0x40,0x00,0x40,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x00,0x80,0x40,0x40,0x40, - 0x40,0x40,0x40,0x40,0x00,0xa0,0x40,0x40, - 0x40,0x40,0x40,0x40,0x40,0x00,0xa0,0x70, - 0x48,0x48,0xe8,0x48,0x70,0x88,0x98,0xa8, - 0xa8,0xc8,0x88,0x00,0x50,0x28,0x70,0x88, - 0x88,0x88,0x88,0x70,0x00,0x20,0x40,0x70, - 0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x10, - 0x70,0x88,0x88,0x88,0x88,0x70,0x00,0x50, - 0x20,0x70,0x88,0x88,0x88,0x88,0x70,0x00, - 0x50,0x28,0x70,0x88,0x88,0x88,0x88,0x70, - 0x00,0x50,0x90,0x60,0x60,0x90,0x80,0xf0, - 0xc8,0xa8,0x98,0x88,0x78,0x08,0x70,0x88, - 0x88,0x88,0x88,0x88,0x00,0x20,0x40,0x70, - 0x88,0x88,0x88,0x88,0x88,0x00,0x20,0x10, - 0x70,0x88,0x88,0x88,0x88,0x88,0x00,0x50, - 0x20,0x70,0x88,0x88,0x88,0x88,0x88,0x00, - 0x50,0x20,0x20,0x30,0x48,0x48,0xc8,0x00, - 0x10,0x08,0x80,0xf0,0x88,0x88,0xf0,0x80, - 0x80,0xa0,0x90,0x90,0xa0,0x90,0x60,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0x40,0x80,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0x40,0x20,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0xa0,0x40,0x68, - 0x50,0x70,0x10,0x60,0x00,0xb0,0x68,0xd0, - 0xa0,0xe0,0x20,0xc0,0x00,0xa0,0xd0,0xa0, - 0xe0,0x20,0xc0,0x40,0xa0,0x40,0xd8,0xa0, - 0xf8,0x28,0xd0,0x80,0x40,0x60,0x80,0x80, - 0x80,0x60,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0x20,0x40,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0x40,0x20,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0xa0,0x40,0x60,0x80,0xe0,0xa0,0x40,0x00, - 0xa0,0x40,0x40,0x40,0x40,0x40,0x00,0x40, - 0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0xa0, - 0x40,0x40,0x40,0x40,0x40,0x40,0x00,0xa0, - 0x60,0x90,0x90,0x90,0x70,0xa0,0x60,0x90, - 0x90,0x90,0x90,0x90,0xe0,0x00,0xa0,0x50, - 0x60,0x90,0x90,0x90,0x60,0x00,0x20,0x40, - 0x60,0x90,0x90,0x90,0x60,0x00,0x20,0x10, - 0x60,0x90,0x90,0x90,0x60,0x00,0xa0,0x40, - 0x60,0x90,0x90,0x90,0x60,0x00,0xa0,0x50, - 0x60,0x90,0x90,0x90,0x60,0x00,0x90,0x20, - 0x00,0xf0,0x00,0x20,0x80,0x70,0x68,0x58, - 0x48,0x3c,0x02,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0x40,0x80,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0x40,0x20,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0xa0,0x40,0x60,0xa0,0xa0,0xa0,0xa0, - 0x00,0xa0,0x80,0x40,0x60,0x90,0x90,0x90, - 0x00,0x20,0x10,0x80,0xe0,0x90,0x90,0x90, - 0xe0,0x80,0x80,0x40,0x60,0x90,0x90,0x90, - 0x00,0x50, -}; - -FontDataBLF blf_font_helvb8 = { - 0, -2, - 9, 9, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 8, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 2, 0}, - {1, 6, -1, 0, 2, 1}, - {3, 3, -1, -3, 3, 7}, - {5, 5, 0, 0, 5, 10}, - {4, 7, -1, 1, 5, 15}, - {6, 6, -1, 0, 7, 22}, - {5, 6, -1, 0, 6, 28}, - {1, 3, -1, -3, 2, 34}, - {2, 7, -1, 1, 3, 37}, - {2, 7, -1, 1, 3, 44}, - {3, 3, -1, -2, 3, 51}, - {5, 5, -1, 0, 5, 54}, - {2, 3, 0, 2, 2, 59}, - {4, 1, -2, -2, 6, 62}, - {1, 1, -1, 0, 2, 63}, - {2, 7, -1, 1, 2, 64}, - {4, 6, -1, 0, 5, 71}, - {2, 6, -2, 0, 5, 77}, - {4, 6, -1, 0, 5, 83}, - {3, 6, -2, 0, 5, 89}, - {4, 6, -1, 0, 5, 95}, - {3, 6, -2, 0, 5, 101}, - {4, 6, -1, 0, 5, 107}, - {4, 6, -1, 0, 5, 113}, - {4, 6, -1, 0, 5, 119}, - {4, 6, -1, 0, 5, 125}, - {1, 4, -1, 0, 2, 131}, - {2, 6, 0, 2, 2, 135}, - {3, 5, -1, 0, 5, 141}, - {3, 3, -1, -1, 4, 146}, - {3, 5, -2, 0, 5, 149}, - {3, 5, -2, 0, 5, 154}, - {8, 7, -1, 1, 9, 159}, - {5, 6, -1, 0, 6, 166}, - {4, 6, -2, 0, 6, 172}, - {5, 6, -1, 0, 6, 178}, - {5, 6, -1, 0, 6, 184}, - {4, 6, -2, 0, 6, 190}, - {4, 6, -2, 0, 5, 196}, - {5, 6, -1, 0, 6, 202}, - {5, 6, -1, 0, 6, 208}, - {1, 6, -1, 0, 2, 214}, - {3, 6, -1, 0, 4, 220}, - {4, 6, -2, 0, 6, 226}, - {3, 6, -2, 0, 5, 232}, - {5, 6, -2, 0, 7, 238}, - {5, 6, -1, 0, 6, 244}, - {5, 6, -1, 0, 6, 250}, - {4, 6, -2, 0, 6, 256}, - {5, 8, -1, 2, 6, 262}, - {4, 6, -2, 0, 6, 270}, - {4, 6, -2, 0, 6, 276}, - {3, 6, -1, 0, 4, 282}, - {5, 6, -1, 0, 6, 288}, - {4, 6, -2, 0, 6, 294}, - {7, 6, -1, 0, 7, 300}, - {4, 6, -2, 0, 6, 306}, - {5, 6, -1, 0, 6, 312}, - {4, 6, -2, 0, 6, 318}, - {2, 7, -1, 1, 2, 324}, - {2, 7, 0, 1, 2, 331}, - {2, 7, 0, 1, 2, 338}, - {5, 3, 0, -2, 5, 345}, - {5, 1, 0, 1, 5, 348}, - {1, 3, -1, -3, 2, 349}, - {4, 5, -1, 0, 4, 352}, - {4, 7, -1, 0, 5, 357}, - {3, 5, -1, 0, 4, 364}, - {4, 7, -1, 0, 5, 369}, - {3, 5, -1, 0, 4, 376}, - {3, 7, -1, 0, 3, 381}, - {4, 6, -1, 1, 5, 388}, - {4, 7, -1, 0, 5, 394}, - {1, 7, -1, 0, 2, 401}, - {2, 9, 0, 2, 2, 408}, - {3, 7, -1, 0, 4, 417}, - {1, 7, -1, 0, 2, 424}, - {5, 5, -1, 0, 6, 431}, - {4, 5, -1, 0, 5, 436}, - {4, 5, -1, 0, 5, 441}, - {4, 6, -1, 1, 5, 446}, - {4, 6, -1, 1, 5, 452}, - {3, 5, -1, 0, 3, 458}, - {3, 5, -1, 0, 4, 463}, - {3, 7, -1, 0, 3, 468}, - {3, 5, -1, 0, 4, 475}, - {4, 5, -1, 0, 5, 480}, - {5, 5, -1, 0, 6, 485}, - {4, 5, -1, 0, 5, 490}, - {4, 6, -1, 1, 4, 495}, - {3, 5, -1, 0, 4, 501}, - {3, 7, 0, 1, 2, 506}, - {1, 7, -1, 1, 2, 513}, - {3, 7, 0, 1, 2, 520}, - {5, 2, -1, -2, 6, 527}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 1, 0, 0, 2, 529}, - {1, 7, -1, 2, 2, 530}, - {3, 7, -1, 1, 5, 537}, - {4, 6, -1, 0, 5, 544}, - {5, 5, 0, 0, 4, 550}, - {5, 5, -1, 0, 6, 555}, - {1, 7, -1, 1, 2, 560}, - {4, 8, -1, 2, 5, 567}, - {4, 1, 0, -5, 2, 575}, - {6, 7, -1, 1, 7, 576}, - {3, 5, 0, -1, 3, 583}, - {4, 3, -1, -1, 5, 588}, - {4, 3, -1, -1, 6, 591}, - {2, 1, 0, -2, 3, 594}, - {6, 7, -1, 1, 7, 595}, - {3, 1, 0, -5, 2, 602}, - {3, 3, -1, -3, 3, 603}, - {4, 5, -1, 0, 5, 606}, - {2, 4, -1, -2, 2, 611}, - {3, 4, 0, -2, 2, 615}, - {2, 2, 0, -4, 2, 619}, - {3, 6, -1, 2, 4, 621}, - {5, 8, 0, 2, 5, 627}, - {1, 2, -1, -1, 2, 635}, - {2, 2, 0, 2, 2, 637}, - {2, 4, 0, -2, 2, 639}, - {3, 5, 0, -1, 3, 643}, - {4, 3, -1, -1, 5, 648}, - {7, 7, 0, 1, 7, 651}, - {7, 7, 0, 1, 7, 658}, - {7, 7, 0, 1, 7, 665}, - {4, 6, -1, 1, 5, 672}, - {5, 9, -1, 0, 6, 678}, - {5, 9, -1, 0, 6, 687}, - {5, 9, -1, 0, 6, 696}, - {5, 9, -1, 0, 6, 705}, - {5, 8, -1, 0, 6, 714}, - {5, 9, -1, 0, 6, 722}, - {7, 6, -1, 0, 8, 731}, - {5, 8, -1, 2, 6, 737}, - {4, 9, -2, 0, 6, 745}, - {4, 9, -2, 0, 6, 754}, - {4, 9, -2, 0, 6, 763}, - {4, 8, -2, 0, 6, 772}, - {2, 9, 0, 0, 2, 780}, - {2, 9, -1, 0, 2, 789}, - {3, 9, 0, 0, 2, 798}, - {3, 8, 0, 0, 2, 807}, - {5, 6, -1, 0, 6, 815}, - {5, 9, -1, 0, 6, 821}, - {5, 9, -1, 0, 6, 830}, - {5, 9, -1, 0, 6, 839}, - {5, 9, -1, 0, 6, 848}, - {5, 9, -1, 0, 6, 857}, - {5, 8, -1, 0, 6, 866}, - {4, 4, -1, 0, 5, 874}, - {5, 8, -1, 1, 6, 878}, - {5, 9, -1, 0, 6, 886}, - {5, 9, -1, 0, 6, 895}, - {5, 9, -1, 0, 6, 904}, - {5, 8, -1, 0, 6, 913}, - {5, 9, -1, 0, 6, 921}, - {5, 6, -1, 0, 6, 930}, - {4, 7, -2, 1, 6, 936}, - {4, 8, -1, 0, 4, 943}, - {4, 8, -1, 0, 4, 951}, - {4, 8, -1, 0, 4, 959}, - {5, 8, 0, 0, 4, 967}, - {4, 7, -1, 0, 4, 975}, - {4, 8, -1, 0, 4, 982}, - {5, 5, -1, 0, 6, 990}, - {3, 7, -1, 2, 4, 995}, - {3, 8, -1, 0, 4, 1002}, - {3, 8, -1, 0, 4, 1010}, - {3, 8, -1, 0, 4, 1018}, - {3, 7, -1, 0, 4, 1026}, - {2, 8, 0, 0, 2, 1033}, - {2, 8, -1, 0, 2, 1041}, - {3, 8, 0, 0, 2, 1049}, - {3, 7, 0, 0, 2, 1057}, - {4, 8, -1, 0, 5, 1064}, - {4, 8, -1, 0, 5, 1072}, - {4, 8, -1, 0, 5, 1080}, - {4, 8, -1, 0, 5, 1088}, - {4, 8, -1, 0, 5, 1096}, - {4, 8, -1, 0, 5, 1104}, - {4, 7, -1, 0, 5, 1112}, - {4, 5, -1, 0, 5, 1119}, - {7, 7, 0, 1, 5, 1124}, - {3, 8, -1, 0, 4, 1131}, - {3, 8, -1, 0, 4, 1139}, - {3, 8, -1, 0, 4, 1147}, - {3, 7, -1, 0, 4, 1155}, - {4, 9, -1, 1, 4, 1162}, - {4, 7, -1, 1, 5, 1171}, - {4, 8, -1, 1, 4, 1178}, - }, - helvb8_bitmap_data, - 0 -}; - -#endif /* BLF_FONT_HELVB8_H */ diff --git a/source/blender/blenfont/intern/blf_font_scr12.h b/source/blender/blenfont/intern/blf_font_scr12.h deleted file mode 100644 index 6460cf6f501..00000000000 --- a/source/blender/blenfont/intern/blf_font_scr12.h +++ /dev/null @@ -1,479 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_SCR12_H -#define BLF_FONT_SCR12_H - -static unsigned char scr12_bitmap_data[]= { - 0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80, - 0xa0,0xa0,0xa0,0xa0,0x50,0x50,0xfc,0x28, - 0x28,0x7e,0x14,0x14,0x20,0x70,0xa8,0x28, - 0x70,0xa0,0xa8,0x70,0x20,0x98,0x54,0x54, - 0x2c,0xd0,0xa8,0xa8,0x64,0x74,0x88,0x8c, - 0x50,0x20,0x50,0x48,0x30,0x80,0x40,0x20, - 0x20,0x20,0x40,0x40,0x80,0x80,0x80,0x80, - 0x40,0x40,0x20,0x80,0x40,0x40,0x20,0x20, - 0x20,0x20,0x40,0x40,0x80,0x20,0xa8,0x70, - 0xa8,0x20,0x20,0x20,0xf8,0x20,0x20,0x80, - 0x40,0x40,0xc0,0xf8,0x80,0x80,0x80,0x80, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x08, - 0x70,0x88,0x88,0xc8,0xa8,0x98,0x88,0x70, - 0xe0,0x40,0x40,0x40,0x40,0x40,0xc0,0x40, - 0xf8,0x80,0x40,0x20,0x10,0x08,0x88,0x70, - 0x70,0x88,0x08,0x08,0x70,0x08,0x88,0x70, - 0x10,0x10,0x10,0xf8,0x90,0x50,0x30,0x10, - 0x70,0x88,0x08,0x08,0xf0,0x80,0x80,0xf8, - 0x70,0x88,0x88,0x88,0xf0,0x80,0x88,0x70, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0xf8, - 0x70,0x88,0x88,0x88,0x70,0x88,0x88,0x70, - 0x70,0x88,0x08,0x78,0x88,0x88,0x88,0x70, - 0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x40, - 0x40,0xc0,0x00,0x00,0x40,0x40,0x08,0x10, - 0x20,0x40,0x80,0x40,0x20,0x10,0x08,0xf8, - 0x00,0xf8,0x80,0x40,0x20,0x10,0x08,0x10, - 0x20,0x40,0x80,0x20,0x00,0x20,0x20,0x10, - 0x88,0x88,0x70,0x38,0x40,0x98,0xa8,0xa8, - 0x98,0x48,0x30,0x88,0x88,0xf8,0x88,0x50, - 0x50,0x20,0x20,0xf0,0x88,0x88,0x88,0xf0, - 0x88,0x88,0xf0,0x70,0x88,0x80,0x80,0x80, - 0x80,0x88,0x70,0xf0,0x88,0x88,0x88,0x88, - 0x88,0x88,0xf0,0xf8,0x80,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x80,0x80,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x68,0x98,0x88,0x88,0x98, - 0x80,0x88,0x70,0x88,0x88,0x88,0x88,0xf8, - 0x88,0x88,0x88,0xe0,0x40,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x70,0x88,0x88,0x08,0x08, - 0x08,0x08,0x08,0x88,0x88,0x90,0xa0,0xc0, - 0xa0,0x90,0x88,0xf8,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x88,0x88,0xa8,0xa8,0xd8, - 0xd8,0x88,0x88,0x88,0x98,0x98,0xa8,0xa8, - 0xc8,0xc8,0x88,0x70,0x88,0x88,0x88,0x88, - 0x88,0x88,0x70,0x80,0x80,0x80,0x80,0xf0, - 0x88,0x88,0xf0,0x08,0x10,0x70,0xa8,0x88, - 0x88,0x88,0x88,0x88,0x70,0x88,0x90,0x90, - 0xa0,0xf0,0x88,0x88,0xf0,0x70,0x88,0x88, - 0x08,0x70,0x80,0x88,0x70,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xf8,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x88,0x20,0x20,0x50, - 0x50,0x50,0x88,0x88,0x88,0x50,0x50,0xf8, - 0xa8,0xa8,0xa8,0x88,0x88,0x88,0x88,0x50, - 0x20,0x20,0x50,0x88,0x88,0x20,0x20,0x20, - 0x20,0x50,0x50,0x88,0x88,0xf8,0x80,0x40, - 0x40,0x20,0x10,0x08,0xf8,0xe0,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xe0,0x08,0x08, - 0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x80, - 0xe0,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x88,0x50,0x20,0xfe,0x20,0x40,0x80, - 0x80,0x68,0x98,0x88,0x78,0x08,0x70,0xb0, - 0xc8,0x88,0x88,0xc8,0xb0,0x80,0x80,0x70, - 0x88,0x80,0x80,0x88,0x70,0x68,0x98,0x88, - 0x88,0x98,0x68,0x08,0x08,0x70,0x88,0x80, - 0xf8,0x88,0x70,0x40,0x40,0x40,0x40,0x40, - 0xf0,0x40,0x38,0xf0,0x08,0x68,0x98,0x88, - 0x88,0x98,0x68,0x88,0x88,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x00,0x20,0x60,0x90,0x10,0x10,0x10, - 0x10,0x10,0x70,0x00,0x10,0x88,0x90,0xa0, - 0xc0,0xa0,0x90,0x80,0x80,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0xa8,0xa8,0xa8, - 0xa8,0xa8,0xd0,0x88,0x88,0x88,0x88,0xc8, - 0xb0,0x70,0x88,0x88,0x88,0x88,0x70,0x80, - 0x80,0xb0,0xc8,0x88,0x88,0xc8,0xb0,0x08, - 0x08,0x68,0x98,0x88,0x88,0x98,0x68,0x80, - 0x80,0x80,0x80,0xc8,0xb0,0x70,0x88,0x10, - 0x60,0x88,0x70,0x30,0x40,0x40,0x40,0x40, - 0xf0,0x40,0x68,0x98,0x88,0x88,0x88,0x88, - 0x20,0x20,0x50,0x50,0x88,0x88,0x50,0xa8, - 0xa8,0xa8,0x88,0x88,0x88,0x88,0x50,0x20, - 0x50,0x88,0xf0,0x08,0x68,0x98,0x88,0x88, - 0x88,0x88,0xf8,0x80,0x40,0x20,0x10,0xf8, - 0x18,0x20,0x20,0x20,0x20,0xc0,0x20,0x20, - 0x20,0x18,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xc0,0x20,0x20,0x20, - 0x20,0x18,0x20,0x20,0x20,0xc0,0x98,0xb4, - 0x64,0x80,0x80,0x80,0x80,0x80,0x00,0x80, - 0x80,0x20,0x20,0x70,0x88,0x80,0x88,0x70, - 0x20,0x20,0xb0,0x48,0x40,0xf0,0x40,0x40, - 0x48,0x30,0x90,0x60,0x90,0x90,0x60,0x90, - 0x20,0x70,0x20,0x70,0x20,0x50,0x88,0x88, - 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x80,0x70,0x88,0x10,0x28,0x48,0x90, - 0xa0,0x40,0x88,0x70,0xa0,0x78,0x84,0xb4, - 0xa4,0xb4,0x84,0x78,0xf0,0x90,0x70,0x10, - 0x60,0x14,0x28,0x50,0xa0,0x50,0x28,0x14, - 0x08,0xf8,0xf0,0x78,0x84,0xac,0xb4,0xb4, - 0x84,0x78,0xe0,0x60,0x90,0x60,0xf8,0x00, - 0x20,0x20,0xf8,0x20,0x20,0xe0,0x40,0x20, - 0xa0,0x40,0xc0,0x20,0x40,0x20,0xc0,0x80, - 0x40,0x80,0xe8,0x90,0x90,0x90,0x90,0x28, - 0x28,0x28,0x28,0x68,0xa8,0xa8,0xa8,0x7c, - 0x80,0x80,0xc0,0x40,0xe0,0x40,0x40,0xc0, - 0x40,0xf0,0x60,0x90,0x90,0x60,0xa0,0x50, - 0x28,0x14,0x28,0x50,0xa0,0x08,0x38,0xa8, - 0x58,0x28,0xf0,0x48,0x40,0xc0,0x40,0x38, - 0x10,0x88,0x68,0x30,0xf0,0x48,0x40,0xc0, - 0x40,0x08,0x38,0xa8,0x58,0x28,0xd0,0x28, - 0x40,0x20,0xc0,0x70,0x88,0x88,0x40,0x20, - 0x20,0x00,0x20,0x88,0x88,0xf8,0x88,0x50, - 0x50,0x20,0x00,0x20,0x40,0x88,0x88,0xf8, - 0x50,0x50,0x20,0x20,0x00,0x20,0x10,0x88, - 0x88,0xf8,0x50,0x50,0x20,0x20,0x00,0x50, - 0x20,0x88,0x88,0xf8,0x50,0x50,0x20,0x20, - 0x00,0xb0,0x68,0x88,0x88,0xf8,0x50,0x50, - 0x20,0x20,0x00,0x50,0x88,0x88,0xf8,0x50, - 0x50,0x20,0x20,0x20,0x50,0x20,0x9c,0x90, - 0xf0,0x50,0x5c,0x30,0x30,0x1c,0x60,0x20, - 0x70,0x88,0x80,0x80,0x80,0x80,0x88,0x70, - 0xf8,0x80,0x80,0xf0,0x80,0x80,0xf8,0x00, - 0x20,0x40,0xf8,0x80,0x80,0xf0,0x80,0x80, - 0xf8,0x00,0x20,0x10,0xf8,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x00,0x50,0x20,0xf8,0x80, - 0x80,0xf0,0x80,0x80,0xf8,0x00,0x50,0xe0, - 0x40,0x40,0x40,0x40,0x40,0xe0,0x00,0x40, - 0x80,0xe0,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x00,0x40,0x20,0xe0,0x40,0x40,0x40,0x40, - 0x40,0xe0,0x00,0xa0,0x40,0xe0,0x40,0x40, - 0x40,0x40,0x40,0xe0,0x00,0xa0,0x78,0x44, - 0x44,0xf4,0x44,0x44,0x44,0x78,0x88,0x98, - 0x98,0xa8,0xc8,0xc8,0x88,0x00,0xb0,0x68, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, - 0x20,0x40,0x70,0x88,0x88,0x88,0x88,0x88, - 0x70,0x00,0x20,0x10,0x70,0x88,0x88,0x88, - 0x88,0x88,0x70,0x00,0x50,0x20,0x70,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0xb0,0x68, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, - 0x50,0x88,0x50,0x20,0x50,0x88,0xb8,0x44, - 0x64,0x54,0x4c,0x44,0x3a,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x00,0x20,0x40,0x70, - 0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x10,0x70,0x88,0x88,0x88,0x88,0x88,0x88, - 0x00,0x50,0x20,0x70,0x88,0x88,0x88,0x88, - 0x88,0x88,0x00,0x50,0x20,0x20,0x20,0x50, - 0x50,0x88,0x88,0x00,0x20,0x10,0x80,0x80, - 0xf0,0x88,0x88,0x88,0xf0,0x80,0x80,0xb0, - 0x88,0x88,0x88,0x90,0xa0,0x90,0x60,0x78, - 0x88,0x78,0x08,0x70,0x00,0x20,0x40,0x78, - 0x88,0x78,0x08,0x70,0x00,0x20,0x10,0x78, - 0x88,0x78,0x08,0x70,0x00,0x50,0x20,0x78, - 0x88,0x78,0x08,0x70,0x00,0xb0,0x68,0x78, - 0x88,0x78,0x08,0x70,0x00,0x50,0x78,0x88, - 0x78,0x08,0x70,0x00,0x20,0x50,0x20,0x6c, - 0x90,0x7c,0x12,0x6c,0x60,0x20,0x70,0x88, - 0x80,0x80,0x88,0x70,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x20,0x40,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x20,0x10,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x50,0x20,0x78,0x80,0xf8,0x88, - 0x70,0x00,0x50,0x20,0x20,0x20,0x20,0xe0, - 0x00,0x40,0x80,0x20,0x20,0x20,0x20,0xe0, - 0x00,0x40,0x20,0x20,0x20,0x20,0x20,0xe0, - 0x00,0xa0,0x40,0x20,0x20,0x20,0x20,0xe0, - 0x00,0xa0,0x70,0x88,0x88,0x88,0x78,0x08, - 0x90,0x60,0xd0,0x88,0x88,0x88,0xc8,0xb0, - 0x00,0xb0,0x68,0x70,0x88,0x88,0x88,0x70, - 0x00,0x20,0x40,0x70,0x88,0x88,0x88,0x70, - 0x00,0x20,0x10,0x70,0x88,0x88,0x88,0x70, - 0x00,0x50,0x20,0x70,0x88,0x88,0x88,0x70, - 0x00,0xb0,0x68,0x70,0x88,0x88,0x88,0x70, - 0x00,0x50,0x20,0x00,0xf8,0x00,0x20,0xb8, - 0x64,0x54,0x4c,0x3a,0x68,0x98,0x88,0x88, - 0x88,0x00,0x20,0x40,0x68,0x98,0x88,0x88, - 0x88,0x00,0x20,0x10,0x68,0x98,0x88,0x88, - 0x88,0x00,0x50,0x20,0x68,0x98,0x88,0x88, - 0x88,0x00,0x50,0xf0,0x08,0x68,0x98,0x88, - 0x88,0x88,0x00,0x20,0x10,0x80,0x80,0xb0, - 0xc8,0x88,0x88,0xc8,0xb0,0x80,0x80,0xf0, - 0x08,0x68,0x98,0x88,0x88,0x88,0x00,0xd8, -}; - -FontDataBLF blf_font_scr12 = { - 0, -2, - 7, 10, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 16, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 7, -1}, - {1, 8, -3, 0, 7, 0}, - {3, 4, -2, -5, 7, 8}, - {7, 8, 0, 0, 7, 12}, - {5, 9, -1, 1, 7, 20}, - {6, 8, 0, 0, 7, 29}, - {6, 8, 0, 0, 7, 37}, - {3, 4, -2, -5, 7, 45}, - {3, 10, -2, 2, 7, 49}, - {3, 10, -2, 2, 7, 59}, - {5, 5, -1, -3, 7, 69}, - {5, 5, -1, -1, 7, 74}, - {2, 4, -2, 2, 7, 79}, - {5, 1, -1, -3, 7, 83}, - {1, 2, -3, 0, 7, 84}, - {5, 10, -1, 1, 7, 86}, - {5, 8, -1, 0, 7, 96}, - {3, 8, -2, 0, 7, 104}, - {5, 8, -1, 0, 7, 112}, - {5, 8, -1, 0, 7, 120}, - {5, 8, -1, 0, 7, 128}, - {5, 8, -1, 0, 7, 136}, - {5, 8, -1, 0, 7, 144}, - {5, 8, -1, 0, 7, 152}, - {5, 8, -1, 0, 7, 160}, - {5, 8, -1, 0, 7, 168}, - {1, 6, -3, 0, 7, 176}, - {2, 8, -2, 2, 7, 182}, - {5, 9, -1, 1, 7, 190}, - {5, 3, -1, -2, 7, 199}, - {5, 9, -1, 1, 7, 202}, - {5, 8, -1, 0, 7, 211}, - {5, 8, -1, 0, 7, 219}, - {5, 8, -1, 0, 7, 227}, - {5, 8, -1, 0, 7, 235}, - {5, 8, -1, 0, 7, 243}, - {5, 8, -1, 0, 7, 251}, - {5, 8, -1, 0, 7, 259}, - {5, 8, -1, 0, 7, 267}, - {5, 8, -1, 0, 7, 275}, - {5, 8, -1, 0, 7, 283}, - {3, 8, -2, 0, 7, 291}, - {5, 8, -1, 0, 7, 299}, - {5, 8, -1, 0, 7, 307}, - {5, 8, -1, 0, 7, 315}, - {5, 8, -1, 0, 7, 323}, - {5, 8, -1, 0, 7, 331}, - {5, 8, -1, 0, 7, 339}, - {5, 8, -1, 0, 7, 347}, - {5, 10, -1, 2, 7, 355}, - {5, 8, -1, 0, 7, 365}, - {5, 8, -1, 0, 7, 373}, - {5, 8, -1, 0, 7, 381}, - {5, 8, -1, 0, 7, 389}, - {5, 8, -1, 0, 7, 397}, - {5, 8, -1, 0, 7, 405}, - {5, 8, -1, 0, 7, 413}, - {5, 8, -1, 0, 7, 421}, - {5, 8, -1, 0, 7, 429}, - {3, 9, -2, 1, 7, 437}, - {5, 10, -1, 1, 7, 446}, - {3, 9, -2, 1, 7, 456}, - {5, 3, -1, -5, 7, 465}, - {7, 1, 0, 1, 7, 468}, - {3, 4, -2, -5, 7, 469}, - {5, 6, -1, 0, 7, 473}, - {5, 8, -1, 0, 7, 479}, - {5, 6, -1, 0, 7, 487}, - {5, 8, -1, 0, 7, 493}, - {5, 6, -1, 0, 7, 501}, - {5, 8, -1, 0, 7, 507}, - {5, 8, -1, 2, 7, 515}, - {5, 8, -1, 0, 7, 523}, - {3, 8, -2, 0, 7, 531}, - {4, 10, -1, 2, 7, 539}, - {5, 8, -1, 0, 7, 549}, - {3, 8, -2, 0, 7, 557}, - {5, 6, -1, 0, 7, 565}, - {5, 6, -1, 0, 7, 571}, - {5, 6, -1, 0, 7, 577}, - {5, 8, -1, 2, 7, 583}, - {5, 8, -1, 2, 7, 591}, - {5, 6, -1, 0, 7, 599}, - {5, 6, -1, 0, 7, 605}, - {4, 7, -1, 0, 7, 611}, - {5, 6, -1, 0, 7, 618}, - {5, 6, -1, 0, 7, 624}, - {5, 6, -1, 0, 7, 630}, - {5, 6, -1, 0, 7, 636}, - {5, 8, -1, 2, 7, 642}, - {5, 6, -1, 0, 7, 650}, - {5, 10, -1, 2, 7, 656}, - {1, 10, -3, 1, 7, 666}, - {5, 10, -1, 2, 7, 676}, - {6, 3, 0, -2, 7, 686}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 8, -3, 2, 7, 689}, - {5, 9, -1, 0, 7, 697}, - {5, 8, -1, 0, 7, 706}, - {4, 6, -1, -2, 7, 714}, - {5, 8, -1, 0, 7, 720}, - {1, 10, -3, 1, 7, 728}, - {5, 10, -1, 1, 7, 738}, - {3, 1, -2, -7, 7, 748}, - {6, 7, 0, 0, 7, 749}, - {4, 5, -1, -4, 7, 756}, - {6, 7, 0, 0, 7, 761}, - {5, 2, -1, -3, 7, 768}, - {4, 1, -1, -3, 7, 770}, - {6, 7, 0, 0, 7, 771}, - {3, 1, -2, -7, 7, 778}, - {4, 3, -1, -4, 7, 779}, - {5, 7, -1, 0, 7, 782}, - {3, 5, -2, -4, 7, 789}, - {3, 5, -2, -4, 7, 794}, - {2, 2, -2, -7, 7, 799}, - {5, 6, -1, 1, 7, 801}, - {6, 9, 0, 1, 7, 807}, - {1, 2, -3, -3, 7, 816}, - {2, 2, -2, 2, 7, 818}, - {3, 5, -2, -4, 7, 820}, - {4, 5, -1, -4, 7, 825}, - {6, 7, 0, 0, 7, 830}, - {5, 10, -1, 1, 7, 837}, - {5, 10, -1, 1, 7, 847}, - {5, 10, -1, 1, 7, 857}, - {5, 8, -1, 2, 7, 867}, - {5, 10, -1, 0, 7, 875}, - {5, 10, -1, 0, 7, 885}, - {5, 10, -1, 0, 7, 895}, - {5, 10, -1, 0, 7, 905}, - {5, 9, -1, 0, 7, 915}, - {5, 10, -1, 0, 7, 924}, - {6, 8, 0, 0, 7, 934}, - {5, 10, -1, 2, 7, 942}, - {5, 10, -1, 0, 7, 952}, - {5, 10, -1, 0, 7, 962}, - {5, 10, -1, 0, 7, 972}, - {5, 9, -1, 0, 7, 982}, - {3, 10, -2, 0, 7, 991}, - {3, 10, -2, 0, 7, 1001}, - {3, 10, -2, 0, 7, 1011}, - {3, 9, -2, 0, 7, 1021}, - {6, 8, 0, 0, 7, 1030}, - {5, 10, -1, 0, 7, 1038}, - {5, 10, -1, 0, 7, 1048}, - {5, 10, -1, 0, 7, 1058}, - {5, 10, -1, 0, 7, 1068}, - {5, 10, -1, 0, 7, 1078}, - {5, 9, -1, 0, 7, 1088}, - {5, 5, -1, -1, 7, 1097}, - {7, 7, 0, 0, 7, 1102}, - {5, 10, -1, 0, 7, 1109}, - {5, 10, -1, 0, 7, 1119}, - {5, 10, -1, 0, 7, 1129}, - {5, 9, -1, 0, 7, 1139}, - {5, 10, -1, 0, 7, 1148}, - {5, 9, -1, 0, 7, 1158}, - {5, 8, -1, 0, 7, 1167}, - {5, 8, -1, 0, 7, 1175}, - {5, 8, -1, 0, 7, 1183}, - {5, 8, -1, 0, 7, 1191}, - {5, 8, -1, 0, 7, 1199}, - {5, 7, -1, 0, 7, 1207}, - {5, 9, -1, 0, 7, 1214}, - {7, 5, 0, 0, 7, 1223}, - {5, 8, -1, 2, 7, 1228}, - {5, 8, -1, 0, 7, 1236}, - {5, 8, -1, 0, 7, 1244}, - {5, 8, -1, 0, 7, 1252}, - {5, 7, -1, 0, 7, 1260}, - {3, 8, -2, 0, 7, 1267}, - {3, 8, -2, 0, 7, 1275}, - {3, 8, -2, 0, 7, 1283}, - {3, 7, -2, 0, 7, 1291}, - {5, 9, -1, 0, 7, 1298}, - {5, 8, -1, 0, 7, 1307}, - {5, 8, -1, 0, 7, 1315}, - {5, 8, -1, 0, 7, 1323}, - {5, 8, -1, 0, 7, 1331}, - {5, 8, -1, 0, 7, 1339}, - {5, 7, -1, 0, 7, 1347}, - {5, 5, -1, -1, 7, 1354}, - {7, 5, 0, 0, 7, 1359}, - {5, 8, -1, 0, 7, 1364}, - {5, 8, -1, 0, 7, 1372}, - {5, 8, -1, 0, 7, 1380}, - {5, 7, -1, 0, 7, 1388}, - {5, 10, -1, 2, 7, 1395}, - {5, 10, -1, 2, 7, 1405}, - {5, 9, -1, 2, 7, 1415}, - }, - scr12_bitmap_data, - 0 -}; - -#endif - diff --git a/source/blender/blenfont/intern/blf_font_scr14.h b/source/blender/blenfont/intern/blf_font_scr14.h deleted file mode 100644 index d9cc0b84e14..00000000000 --- a/source/blender/blenfont/intern/blf_font_scr14.h +++ /dev/null @@ -1,504 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_SCR14_H -#define BLF_FONT_SCR14_H - -static unsigned char scr14_bitmap_data[]= { - 0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80, - 0x80,0xa0,0xa0,0xa0,0xa0,0x50,0x50,0xfc, - 0x28,0x28,0x28,0x7e,0x14,0x14,0x20,0x70, - 0xa8,0x28,0x30,0x60,0xa0,0xa8,0x70,0x20, - 0x98,0x54,0x54,0x2c,0x10,0x68,0x54,0x54, - 0x32,0x74,0x88,0x8c,0x90,0x60,0x20,0x50, - 0x48,0x30,0x80,0x40,0x20,0x20,0x20,0x40, - 0x40,0x80,0x80,0x80,0x80,0x80,0x40,0x40, - 0x20,0x80,0x40,0x40,0x20,0x20,0x20,0x20, - 0x20,0x40,0x40,0x80,0x20,0xa8,0x70,0x70, - 0xa8,0x20,0x20,0x20,0xf8,0x20,0x20,0x80, - 0x40,0x40,0xc0,0xf8,0x80,0x80,0x80,0x80, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0x08, - 0x70,0x88,0x88,0xc8,0xa8,0x98,0x88,0x88, - 0x70,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0xc0,0x40,0xf8,0x80,0x40,0x20,0x10,0x08, - 0x88,0x88,0x70,0x70,0x88,0x08,0x08,0x70, - 0x08,0x08,0x88,0x70,0x10,0x10,0x10,0xf8, - 0x90,0x50,0x50,0x30,0x10,0x70,0x88,0x08, - 0x08,0x08,0xf0,0x80,0x80,0xf8,0x70,0x88, - 0x88,0x88,0x88,0xf0,0x80,0x88,0x70,0x40, - 0x40,0x40,0x20,0x20,0x10,0x10,0x08,0xf8, - 0x70,0x88,0x88,0x88,0x70,0x88,0x88,0x88, - 0x70,0x70,0x88,0x08,0x08,0x78,0x88,0x88, - 0x88,0x70,0x80,0x80,0x00,0x00,0x80,0x80, - 0x80,0x40,0x40,0xc0,0x00,0x00,0x40,0x40, - 0x08,0x10,0x20,0x40,0x80,0x40,0x20,0x10, - 0x08,0xf8,0x00,0xf8,0x80,0x40,0x20,0x10, - 0x08,0x10,0x20,0x40,0x80,0x20,0x20,0x00, - 0x20,0x20,0x10,0x88,0x88,0x70,0x38,0x40, - 0x98,0xa8,0xa8,0x98,0x88,0x48,0x30,0x88, - 0x88,0xf8,0x88,0x50,0x50,0x50,0x20,0x20, - 0xf0,0x88,0x88,0x88,0xf0,0x88,0x88,0x88, - 0xf0,0x70,0x88,0x80,0x80,0x80,0x80,0x80, - 0x88,0x70,0xf0,0x88,0x88,0x88,0x88,0x88, - 0x88,0x88,0xf0,0xf8,0x80,0x80,0x80,0xf0, - 0x80,0x80,0x80,0xf8,0x80,0x80,0x80,0x80, - 0xf0,0x80,0x80,0x80,0xf8,0x68,0x98,0x88, - 0x88,0x98,0x80,0x80,0x88,0x70,0x88,0x88, - 0x88,0x88,0xf8,0x88,0x88,0x88,0x88,0xe0, - 0x40,0x40,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x70,0x88,0x88,0x08,0x08,0x08,0x08,0x08, - 0x08,0x88,0x88,0x90,0xa0,0xc0,0xa0,0x90, - 0x88,0x88,0xf8,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x88,0x88,0x88,0xa8,0xa8, - 0xd8,0xd8,0x88,0x88,0x88,0x98,0x98,0xa8, - 0xa8,0xc8,0xc8,0x88,0x88,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x88,0x70,0x80,0x80, - 0x80,0x80,0xf0,0x88,0x88,0x88,0xf0,0x08, - 0x10,0x70,0xa8,0x88,0x88,0x88,0x88,0x88, - 0x88,0x70,0x88,0x88,0x90,0xa0,0xf0,0x88, - 0x88,0x88,0xf0,0x70,0x88,0x08,0x08,0x70, - 0x80,0x80,0x88,0x70,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xf8,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x88,0x88,0x20,0x20, - 0x50,0x50,0x50,0x88,0x88,0x88,0x88,0x50, - 0x50,0xf8,0xa8,0xa8,0x88,0x88,0x88,0x88, - 0x88,0x88,0x50,0x50,0x20,0x50,0x50,0x88, - 0x88,0x20,0x20,0x20,0x20,0x20,0x50,0x50, - 0x88,0x88,0xf8,0x80,0x40,0x40,0x20,0x10, - 0x10,0x08,0xf8,0xf0,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xf0,0x08,0x08, - 0x10,0x10,0x20,0x20,0x40,0x40,0x80,0x80, - 0xf0,0x10,0x10,0x10,0x10,0x10,0x10,0x10, - 0x10,0x10,0xf0,0x88,0x50,0x20,0xfe,0x20, - 0x40,0x80,0x80,0x68,0x98,0x88,0x78,0x08, - 0x88,0x70,0xb0,0xc8,0x88,0x88,0x88,0xc8, - 0xb0,0x80,0x80,0x70,0x88,0x80,0x80,0x80, - 0x88,0x70,0x68,0x98,0x88,0x88,0x88,0x98, - 0x68,0x08,0x08,0x70,0x88,0x80,0xf8,0x88, - 0x88,0x70,0x40,0x40,0x40,0x40,0x40,0x40, - 0xf0,0x40,0x38,0x70,0x88,0x08,0x68,0x98, - 0x88,0x88,0x88,0x98,0x68,0x88,0x88,0x88, - 0x88,0x88,0xc8,0xb0,0x80,0x80,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0x20,0x60, - 0x90,0x10,0x10,0x10,0x10,0x10,0x10,0x10, - 0x70,0x00,0x10,0x88,0x88,0x90,0xe0,0xa0, - 0x90,0x88,0x80,0x80,0x20,0x20,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0xa8,0xa8,0xa8, - 0xa8,0xa8,0xa8,0xd0,0x88,0x88,0x88,0x88, - 0x88,0xc8,0xb0,0x70,0x88,0x88,0x88,0x88, - 0x88,0x70,0x80,0x80,0x80,0xb0,0xc8,0x88, - 0x88,0x88,0xc8,0xb0,0x08,0x08,0x08,0x68, - 0x98,0x88,0x88,0x88,0x98,0x68,0x80,0x80, - 0x80,0x80,0x80,0xc8,0xb0,0x70,0x88,0x08, - 0x70,0x80,0x88,0x70,0x30,0x40,0x40,0x40, - 0x40,0x40,0xf0,0x40,0x40,0x68,0x98,0x88, - 0x88,0x88,0x88,0x88,0x20,0x20,0x50,0x50, - 0x88,0x88,0x88,0x50,0xa8,0xa8,0xa8,0xa8, - 0x88,0x88,0x88,0x88,0x50,0x20,0x50,0x88, - 0x88,0x70,0x88,0x08,0x68,0x98,0x88,0x88, - 0x88,0x88,0x88,0xf8,0x80,0x40,0x20,0x10, - 0x08,0xf8,0x18,0x20,0x20,0x20,0x20,0x20, - 0xc0,0x20,0x20,0x20,0x20,0x18,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0xc0,0x20,0x20,0x20,0x20,0x20, - 0x18,0x20,0x20,0x20,0x20,0xc0,0x98,0xb4, - 0x64,0x80,0x80,0x80,0x80,0x80,0x80,0x00, - 0x80,0x80,0x20,0x20,0x70,0x88,0x80,0x80, - 0x88,0x70,0x20,0x20,0xb0,0x48,0x40,0x40, - 0xf0,0x40,0x40,0x48,0x30,0x88,0x70,0x88, - 0x88,0x70,0x88,0x70,0x20,0xf8,0x20,0xf8, - 0x50,0x50,0x88,0x88,0x80,0x80,0x80,0x80, - 0x80,0x00,0x00,0x80,0x80,0x80,0x80,0x80, - 0x70,0x88,0x10,0x28,0x48,0x88,0x90,0xa0, - 0x40,0x88,0x70,0xd8,0x38,0x44,0x92,0xaa, - 0xa2,0xaa,0x92,0x44,0x38,0xf8,0x00,0x68, - 0x90,0x70,0x10,0x60,0x12,0x24,0x48,0x90, - 0x48,0x24,0x12,0x08,0x08,0xf8,0xf0,0x38, - 0x44,0xaa,0xaa,0xb2,0xaa,0xb2,0x44,0x38, - 0xe0,0x60,0x90,0x90,0x60,0xf8,0x00,0x20, - 0x20,0xf8,0x20,0x20,0xe0,0x40,0x20,0xa0, - 0x40,0xc0,0x20,0x40,0x20,0xc0,0x80,0x40, - 0x80,0x80,0xb4,0xc8,0x88,0x88,0x88,0x88, - 0x28,0x28,0x28,0x28,0x28,0x68,0xa8,0xa8, - 0xa8,0x7c,0x80,0x80,0xc0,0x20,0x40,0xe0, - 0x40,0x40,0xc0,0x40,0xf8,0x00,0x70,0x88, - 0x88,0x88,0x70,0x90,0x48,0x24,0x12,0x24, - 0x48,0x90,0x04,0x9e,0x54,0x2c,0x14,0xe8, - 0x44,0x40,0xc0,0x40,0x1c,0x08,0x84,0x54, - 0x28,0x10,0xe8,0x44,0x40,0xc0,0x40,0x04, - 0x9e,0x54,0x2c,0xd4,0x28,0x44,0x20,0xc0, - 0x70,0x88,0x80,0x40,0x20,0x20,0x00,0x00, - 0x20,0x20,0x88,0x88,0xf8,0x88,0x50,0x50, - 0x20,0x20,0x00,0x20,0x40,0x88,0x88,0xf8, - 0x88,0x50,0x50,0x20,0x20,0x00,0x20,0x10, - 0x88,0x88,0xf8,0x88,0x50,0x50,0x20,0x20, - 0x00,0x50,0x20,0x88,0x88,0xf8,0x88,0x50, - 0x50,0x20,0x20,0x00,0xb0,0x68,0x88,0x88, - 0xf8,0x88,0x50,0x50,0x20,0x20,0x00,0xd8, - 0x88,0x88,0xf8,0x88,0x50,0x50,0x20,0x20, - 0x20,0x50,0x20,0x9c,0x90,0xf0,0x90,0x5c, - 0x50,0x30,0x30,0x1c,0x60,0x10,0x20,0x70, - 0x88,0x80,0x80,0x80,0x80,0x80,0x88,0x70, - 0xf8,0x80,0x80,0x80,0xf0,0x80,0x80,0xf8, - 0x00,0x20,0x40,0xf8,0x80,0x80,0x80,0xf0, - 0x80,0x80,0xf8,0x00,0x20,0x10,0xf8,0x80, - 0x80,0x80,0xf0,0x80,0x80,0xf8,0x00,0x50, - 0x20,0xf8,0x80,0x80,0x80,0xf0,0x80,0x80, - 0xf8,0x00,0xd8,0xe0,0x40,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x00,0x40,0x80,0xe0,0x40, - 0x40,0x40,0x40,0x40,0x40,0xe0,0x00,0x40, - 0x20,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0xe0,0x00,0xa0,0x40,0x70,0x20,0x20,0x20, - 0x20,0x20,0x20,0x70,0x00,0xd8,0x78,0x44, - 0x44,0x44,0xf4,0x44,0x44,0x44,0x78,0x88, - 0x98,0x98,0xa8,0xa8,0xc8,0xc8,0x88,0x00, - 0xb0,0x68,0x70,0x88,0x88,0x88,0x88,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x10, - 0x70,0x88,0x88,0x88,0x88,0x88,0x88,0x70, - 0x00,0x50,0x20,0x70,0x88,0x88,0x88,0x88, - 0x88,0x88,0x70,0x00,0xb0,0x68,0x70,0x88, - 0x88,0x88,0x88,0x88,0x88,0x70,0x00,0xd8, - 0x88,0x50,0x20,0x50,0x88,0xb8,0x44,0x64, - 0x64,0x54,0x4c,0x4c,0x44,0x3a,0x70,0x88, - 0x88,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x40,0x70,0x88,0x88,0x88,0x88,0x88,0x88, - 0x88,0x00,0x20,0x10,0x70,0x88,0x88,0x88, - 0x88,0x88,0x88,0x88,0x00,0x50,0x20,0x70, - 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x00, - 0xd8,0x20,0x20,0x20,0x20,0x50,0x50,0x88, - 0x88,0x00,0x20,0x10,0xe0,0x40,0x78,0x44, - 0x44,0x44,0x78,0x40,0xe0,0xb0,0x88,0x88, - 0x88,0x90,0xa0,0x90,0x90,0x60,0x68,0x98, - 0x88,0x78,0x08,0x88,0x70,0x00,0x20,0x40, - 0x68,0x98,0x88,0x78,0x08,0x88,0x70,0x00, - 0x20,0x10,0x68,0x98,0x88,0x78,0x08,0x88, - 0x70,0x00,0x50,0x20,0x68,0x98,0x88,0x78, - 0x08,0x88,0x70,0x00,0xb0,0x68,0x68,0x98, - 0x88,0x78,0x08,0x88,0x70,0x00,0xd8,0x68, - 0x98,0x88,0x78,0x08,0x88,0x70,0x00,0x20, - 0x50,0x20,0x6c,0x92,0x90,0x7e,0x12,0x92, - 0x6c,0x60,0x10,0x20,0x70,0x88,0x80,0x80, - 0x80,0x88,0x70,0x70,0x88,0x80,0xf8,0x88, - 0x88,0x70,0x00,0x20,0x40,0x70,0x88,0x80, - 0xf8,0x88,0x88,0x70,0x00,0x20,0x10,0x70, - 0x88,0x80,0xf8,0x88,0x88,0x70,0x00,0x50, - 0x20,0x70,0x88,0x80,0xf8,0x88,0x88,0x70, - 0x00,0xd8,0x20,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x00,0x20,0x40,0x20,0x20,0x20,0x20, - 0x20,0x20,0xe0,0x00,0x20,0x10,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0xa0,0x40, - 0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00, - 0xd8,0x70,0x88,0x88,0x88,0x88,0x88,0x78, - 0x10,0xd0,0x20,0xd0,0x88,0x88,0x88,0x88, - 0x88,0xc8,0xb0,0x00,0xb0,0x68,0x70,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0x20,0x40, - 0x70,0x88,0x88,0x88,0x88,0x88,0x70,0x00, - 0x20,0x10,0x70,0x88,0x88,0x88,0x88,0x88, - 0x70,0x00,0x50,0x20,0x70,0x88,0x88,0x88, - 0x88,0x88,0x70,0x00,0xb0,0x68,0x70,0x88, - 0x88,0x88,0x88,0x88,0x70,0x00,0xd8,0x10, - 0x10,0x00,0xfe,0x00,0x10,0x10,0xb8,0x44, - 0x64,0x54,0x4c,0x44,0x3a,0x68,0x98,0x88, - 0x88,0x88,0x88,0x88,0x00,0x20,0x40,0x68, - 0x98,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x10,0x68,0x98,0x88,0x88,0x88,0x88,0x88, - 0x00,0x50,0x20,0x68,0x98,0x88,0x88,0x88, - 0x88,0x88,0x00,0xd8,0x70,0x88,0x08,0x68, - 0x98,0x88,0x88,0x88,0x88,0x88,0x00,0x20, - 0x10,0xe0,0x40,0x58,0x64,0x44,0x44,0x44, - 0x64,0x58,0x40,0xc0,0x70,0x88,0x08,0x68, - 0x98,0x88,0x88,0x88,0x88,0x88,0x00,0xd8, -}; - -FontDataBLF blf_font_scr14 = { - 0, -3, - 7, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 16, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 7, -1}, - {1, 9, -3, 0, 7, 0}, - {3, 4, -2, -5, 7, 9}, - {7, 9, 0, 0, 7, 13}, - {5, 10, -1, 1, 7, 22}, - {7, 9, 0, 0, 7, 32}, - {6, 9, 0, 0, 7, 41}, - {3, 4, -2, -5, 7, 50}, - {3, 11, -2, 1, 7, 54}, - {3, 11, -2, 1, 7, 65}, - {5, 6, -1, -2, 7, 76}, - {5, 5, -1, -2, 7, 82}, - {2, 4, -2, 2, 7, 87}, - {5, 1, -1, -4, 7, 91}, - {1, 2, -3, 0, 7, 92}, - {5, 10, -1, 0, 7, 94}, - {5, 9, -1, 0, 7, 104}, - {3, 9, -2, 0, 7, 113}, - {5, 9, -1, 0, 7, 122}, - {5, 9, -1, 0, 7, 131}, - {5, 9, -1, 0, 7, 140}, - {5, 9, -1, 0, 7, 149}, - {5, 9, -1, 0, 7, 158}, - {5, 9, -1, 0, 7, 167}, - {5, 9, -1, 0, 7, 176}, - {5, 9, -1, 0, 7, 185}, - {1, 6, -3, 0, 7, 194}, - {2, 8, -2, 1, 7, 200}, - {5, 9, -1, 0, 7, 208}, - {5, 3, -1, -3, 7, 217}, - {5, 9, -1, 0, 7, 220}, - {5, 9, -1, 0, 7, 229}, - {5, 9, -1, 0, 7, 238}, - {5, 9, -1, 0, 7, 247}, - {5, 9, -1, 0, 7, 256}, - {5, 9, -1, 0, 7, 265}, - {5, 9, -1, 0, 7, 274}, - {5, 9, -1, 0, 7, 283}, - {5, 9, -1, 0, 7, 292}, - {5, 9, -1, 0, 7, 301}, - {5, 9, -1, 0, 7, 310}, - {3, 9, -2, 0, 7, 319}, - {5, 9, -1, 0, 7, 328}, - {5, 9, -1, 0, 7, 337}, - {5, 9, -1, 0, 7, 346}, - {5, 9, -1, 0, 7, 355}, - {5, 9, -1, 0, 7, 364}, - {5, 9, -1, 0, 7, 373}, - {5, 9, -1, 0, 7, 382}, - {5, 11, -1, 2, 7, 391}, - {5, 9, -1, 0, 7, 402}, - {5, 9, -1, 0, 7, 411}, - {5, 9, -1, 0, 7, 420}, - {5, 9, -1, 0, 7, 429}, - {5, 9, -1, 0, 7, 438}, - {5, 9, -1, 0, 7, 447}, - {5, 9, -1, 0, 7, 456}, - {5, 9, -1, 0, 7, 465}, - {5, 9, -1, 0, 7, 474}, - {4, 11, -2, 1, 7, 483}, - {5, 10, -1, 0, 7, 494}, - {4, 11, -1, 1, 7, 504}, - {5, 3, -1, -6, 7, 515}, - {7, 1, 0, 2, 7, 518}, - {3, 4, -2, -5, 7, 519}, - {5, 7, -1, 0, 7, 523}, - {5, 9, -1, 0, 7, 530}, - {5, 7, -1, 0, 7, 539}, - {5, 9, -1, 0, 7, 546}, - {5, 7, -1, 0, 7, 555}, - {5, 9, -1, 0, 7, 562}, - {5, 10, -1, 3, 7, 571}, - {5, 9, -1, 0, 7, 581}, - {3, 9, -2, 0, 7, 590}, - {4, 12, -1, 3, 7, 599}, - {5, 9, -1, 0, 7, 611}, - {3, 9, -2, 0, 7, 620}, - {5, 7, -1, 0, 7, 629}, - {5, 7, -1, 0, 7, 636}, - {5, 7, -1, 0, 7, 643}, - {5, 10, -1, 3, 7, 650}, - {5, 10, -1, 3, 7, 660}, - {5, 7, -1, 0, 7, 670}, - {5, 7, -1, 0, 7, 677}, - {4, 9, -1, 0, 7, 684}, - {5, 7, -1, 0, 7, 693}, - {5, 7, -1, 0, 7, 700}, - {5, 7, -1, 0, 7, 707}, - {5, 7, -1, 0, 7, 714}, - {5, 10, -1, 3, 7, 721}, - {5, 7, -1, 0, 7, 731}, - {5, 12, -1, 2, 7, 738}, - {1, 12, -3, 2, 7, 750}, - {5, 12, -1, 2, 7, 762}, - {6, 3, 0, -3, 7, 774}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {1, 9, -3, 2, 7, 777}, - {5, 10, -1, 0, 7, 786}, - {5, 9, -1, 0, 7, 796}, - {5, 6, -1, -3, 7, 805}, - {5, 9, -1, 0, 7, 811}, - {1, 12, -3, 2, 7, 820}, - {5, 11, -1, 2, 7, 832}, - {5, 1, -1, -8, 7, 843}, - {7, 9, 0, 0, 7, 844}, - {5, 7, -1, -2, 7, 853}, - {7, 7, 0, 0, 7, 860}, - {5, 3, -1, -3, 7, 867}, - {4, 1, -1, -4, 7, 870}, - {7, 9, 0, 0, 7, 871}, - {3, 1, -2, -8, 7, 880}, - {4, 4, -1, -4, 7, 881}, - {5, 7, -1, 0, 7, 885}, - {3, 5, -2, -5, 7, 892}, - {3, 5, -2, -5, 7, 897}, - {2, 2, -3, -8, 7, 902}, - {6, 8, -1, 2, 7, 904}, - {6, 10, 0, 1, 7, 912}, - {1, 2, -3, -3, 7, 922}, - {3, 3, -2, 3, 7, 924}, - {3, 5, -2, -5, 7, 927}, - {5, 7, -1, -2, 7, 932}, - {7, 7, 0, 0, 7, 939}, - {7, 10, 0, 0, 7, 946}, - {6, 11, 0, 1, 7, 956}, - {7, 9, 0, -1, 7, 967}, - {5, 10, -1, 3, 7, 976}, - {5, 11, -1, 0, 7, 986}, - {5, 11, -1, 0, 7, 997}, - {5, 11, -1, 0, 7, 1008}, - {5, 11, -1, 0, 7, 1019}, - {5, 10, -1, 0, 7, 1030}, - {5, 11, -1, 0, 7, 1040}, - {6, 9, 0, 0, 7, 1051}, - {5, 12, -1, 3, 7, 1060}, - {5, 11, -1, 0, 7, 1072}, - {5, 11, -1, 0, 7, 1083}, - {5, 11, -1, 0, 7, 1094}, - {5, 10, -1, 0, 7, 1105}, - {3, 11, -2, 0, 7, 1115}, - {3, 11, -2, 0, 7, 1126}, - {3, 11, -2, 0, 7, 1137}, - {5, 10, -1, 0, 7, 1148}, - {6, 9, 0, 0, 7, 1158}, - {5, 11, -1, 0, 7, 1167}, - {5, 11, -1, 0, 7, 1178}, - {5, 11, -1, 0, 7, 1189}, - {5, 11, -1, 0, 7, 1200}, - {5, 11, -1, 0, 7, 1211}, - {5, 10, -1, 0, 7, 1222}, - {5, 5, -1, -1, 7, 1232}, - {7, 9, 0, 0, 7, 1237}, - {5, 11, -1, 0, 7, 1246}, - {5, 11, -1, 0, 7, 1257}, - {5, 11, -1, 0, 7, 1268}, - {5, 10, -1, 0, 7, 1279}, - {5, 11, -1, 0, 7, 1289}, - {6, 9, 0, 0, 7, 1300}, - {5, 9, -1, 0, 7, 1309}, - {5, 10, -1, 0, 7, 1318}, - {5, 10, -1, 0, 7, 1328}, - {5, 10, -1, 0, 7, 1338}, - {5, 10, -1, 0, 7, 1348}, - {5, 9, -1, 0, 7, 1358}, - {5, 11, -1, 0, 7, 1367}, - {7, 7, 0, 0, 7, 1378}, - {5, 10, -1, 3, 7, 1385}, - {5, 10, -1, 0, 7, 1395}, - {5, 10, -1, 0, 7, 1405}, - {5, 10, -1, 0, 7, 1415}, - {5, 9, -1, 0, 7, 1425}, - {3, 10, -2, 0, 7, 1434}, - {4, 10, -2, 0, 7, 1444}, - {3, 10, -2, 0, 7, 1454}, - {5, 9, -2, 0, 7, 1464}, - {5, 11, -1, 0, 7, 1473}, - {5, 10, -1, 0, 7, 1484}, - {5, 10, -1, 0, 7, 1494}, - {5, 10, -1, 0, 7, 1504}, - {5, 10, -1, 0, 7, 1514}, - {5, 10, -1, 0, 7, 1524}, - {5, 9, -1, 0, 7, 1534}, - {7, 7, 0, 0, 7, 1543}, - {7, 7, 0, 0, 7, 1550}, - {5, 10, -1, 0, 7, 1557}, - {5, 10, -1, 0, 7, 1567}, - {5, 10, -1, 0, 7, 1577}, - {5, 9, -1, 0, 7, 1587}, - {5, 13, -1, 3, 7, 1596}, - {6, 11, 0, 2, 7, 1609}, - {5, 12, -1, 3, 7, 1620}, - }, - scr14_bitmap_data, - 0 -}; - -#endif /* BLF_FONT_SCR14_H */ diff --git a/source/blender/blenfont/intern/blf_font_scr15.h b/source/blender/blenfont/intern/blf_font_scr15.h deleted file mode 100644 index f7719cdd051..00000000000 --- a/source/blender/blenfont/intern/blf_font_scr15.h +++ /dev/null @@ -1,519 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef BLF_FONT_SCR15_H -#define BLF_FONT_SCR15_H - -static unsigned char scr15_bitmap_data[]= { - 0x80,0x80,0x00,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x90,0x90,0x90,0x90,0x48,0x48, - 0x48,0xfe,0x24,0x24,0x24,0x7f,0x12,0x12, - 0x20,0x70,0xa8,0xa8,0x28,0x30,0x60,0xa0, - 0xa8,0xa8,0x70,0x20,0x8c,0x52,0x52,0x2c, - 0x10,0x10,0x68,0x94,0x94,0x62,0x72,0x8c, - 0x84,0x8a,0x50,0x20,0x30,0x48,0x48,0x30, - 0x80,0x40,0x60,0x60,0x10,0x20,0x40,0x40, - 0x80,0x80,0x80,0x80,0x80,0x40,0x40,0x20, - 0x10,0x80,0x40,0x20,0x20,0x10,0x10,0x10, - 0x10,0x10,0x20,0x20,0x40,0x80,0x20,0xa8, - 0x70,0x70,0xa8,0x20,0x10,0x10,0x10,0xfe, - 0x10,0x10,0x10,0x80,0x40,0x20,0x60,0x60, - 0xfc,0xc0,0xc0,0x80,0x80,0x40,0x40,0x20, - 0x20,0x10,0x10,0x08,0x08,0x04,0x04,0x78, - 0x84,0x84,0xc4,0xa4,0x94,0x8c,0x84,0x84, - 0x78,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0xc0,0x40,0xfc,0x80,0x40,0x20,0x10, - 0x08,0x04,0x84,0x84,0x78,0x78,0x84,0x04, - 0x04,0x04,0x38,0x04,0x04,0x84,0x78,0x08, - 0x08,0x08,0xfc,0x88,0x48,0x48,0x28,0x18, - 0x08,0x78,0x84,0x04,0x04,0x04,0xf8,0x80, - 0x80,0x80,0xfc,0x78,0x84,0x84,0x84,0x84, - 0xf8,0x80,0x80,0x84,0x78,0x20,0x20,0x20, - 0x10,0x10,0x08,0x08,0x04,0x04,0xfc,0x78, - 0x84,0x84,0x84,0x84,0x78,0x84,0x84,0x84, - 0x78,0x78,0x84,0x04,0x04,0x7c,0x84,0x84, - 0x84,0x84,0x78,0xc0,0xc0,0x00,0x00,0x00, - 0xc0,0xc0,0x80,0x40,0xc0,0xc0,0x00,0x00, - 0x00,0xc0,0xc0,0x04,0x08,0x10,0x20,0x40, - 0x80,0x40,0x20,0x10,0x08,0x04,0xfc,0x00, - 0x00,0xfc,0x80,0x40,0x20,0x10,0x08,0x04, - 0x08,0x10,0x20,0x40,0x80,0x10,0x10,0x00, - 0x10,0x10,0x08,0x04,0x84,0x84,0x78,0x38, - 0x44,0x80,0x98,0xa4,0xa4,0x9c,0x84,0x48, - 0x30,0x84,0x84,0xfc,0x84,0x48,0x48,0x48, - 0x30,0x30,0x30,0xf8,0x84,0x84,0x84,0x84, - 0xf8,0x84,0x84,0x84,0xf8,0x78,0x84,0x84, - 0x80,0x80,0x80,0x80,0x84,0x84,0x78,0xf0, - 0x88,0x84,0x84,0x84,0x84,0x84,0x84,0x88, - 0xf0,0xfc,0x80,0x80,0x80,0x80,0xf8,0x80, - 0x80,0x80,0xfc,0x80,0x80,0x80,0x80,0x80, - 0xf8,0x80,0x80,0x80,0xfc,0x74,0x8c,0x84, - 0x84,0x84,0x9c,0x80,0x80,0x84,0x78,0x84, - 0x84,0x84,0x84,0x84,0xfc,0x84,0x84,0x84, - 0x84,0xe0,0x40,0x40,0x40,0x40,0x40,0x40, - 0x40,0x40,0xe0,0x70,0x88,0x88,0x08,0x08, - 0x08,0x08,0x08,0x08,0x08,0x84,0x84,0x88, - 0x90,0xa0,0xc0,0xa0,0x90,0x88,0x84,0xfc, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x82,0x82,0x92,0x92,0xaa,0xaa,0xc6, - 0xc6,0x82,0x82,0x84,0x8c,0x8c,0x94,0x94, - 0xa4,0xa4,0xc4,0xc4,0x84,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x78,0x80, - 0x80,0x80,0x80,0xf8,0x84,0x84,0x84,0x84, - 0xf8,0x04,0x08,0x10,0x78,0xa4,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x78,0x84,0x84, - 0x88,0x90,0xf8,0x84,0x84,0x84,0x84,0xf8, - 0x78,0x84,0x84,0x04,0x18,0x60,0x80,0x84, - 0x84,0x78,0x10,0x10,0x10,0x10,0x10,0x10, - 0x10,0x10,0x10,0xfe,0x78,0x84,0x84,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x30,0x30, - 0x30,0x48,0x48,0x48,0x84,0x84,0x84,0x84, - 0x44,0x44,0x44,0xaa,0xaa,0xaa,0x92,0x92, - 0x92,0x82,0x84,0x84,0x48,0x48,0x30,0x30, - 0x48,0x48,0x84,0x84,0x10,0x10,0x10,0x10, - 0x10,0x28,0x44,0x44,0x82,0x82,0xfc,0x80, - 0x40,0x40,0x20,0x10,0x08,0x08,0x04,0xfc, - 0xf0,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0xf0,0x04,0x04,0x08, - 0x08,0x10,0x10,0x20,0x20,0x40,0x40,0x80, - 0x80,0xf0,0x10,0x10,0x10,0x10,0x10,0x10, - 0x10,0x10,0x10,0x10,0x10,0xf0,0x88,0x50, - 0x20,0xff,0x20,0x40,0xc0,0xc0,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0xb8,0xc4,0x84, - 0x84,0x84,0xc4,0xb8,0x80,0x80,0x80,0x78, - 0x84,0x80,0x80,0x80,0x84,0x78,0x74,0x8c, - 0x84,0x84,0x84,0x8c,0x74,0x04,0x04,0x04, - 0x78,0x84,0x80,0xfc,0x84,0x84,0x78,0x20, - 0x20,0x20,0x20,0x20,0x20,0xf8,0x20,0x20, - 0x1c,0x78,0x84,0x04,0x04,0x74,0x8c,0x84, - 0x84,0x84,0x8c,0x74,0x84,0x84,0x84,0x84, - 0x84,0xc4,0xb8,0x80,0x80,0x80,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0x20,0x20, - 0x70,0x88,0x08,0x08,0x08,0x08,0x08,0x08, - 0x08,0x08,0x38,0x00,0x08,0x08,0x84,0x88, - 0x90,0xe0,0xa0,0x90,0x88,0x80,0x80,0x80, - 0x20,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0x20,0xe0,0x92,0x92,0x92,0x92,0x92,0x92, - 0xec,0x84,0x84,0x84,0x84,0x84,0xc4,0xb8, - 0x78,0x84,0x84,0x84,0x84,0x84,0x78,0x80, - 0x80,0x80,0x80,0xb8,0xc4,0x84,0x84,0x84, - 0xc4,0xb8,0x04,0x04,0x04,0x04,0x74,0x8c, - 0x84,0x84,0x84,0x8c,0x74,0x80,0x80,0x80, - 0x80,0x80,0xc4,0xb8,0x78,0x84,0x04,0x78, - 0x80,0x84,0x78,0x1c,0x20,0x20,0x20,0x20, - 0x20,0xf8,0x20,0x20,0x74,0x8c,0x84,0x84, - 0x84,0x84,0x84,0x30,0x30,0x48,0x48,0x84, - 0x84,0x84,0x6c,0x92,0x92,0x92,0x92,0x82, - 0x82,0x84,0x84,0x48,0x30,0x48,0x84,0x84, - 0x78,0x84,0x04,0x04,0x74,0x8c,0x84,0x84, - 0x84,0x84,0x84,0xfc,0x80,0x40,0x20,0x10, - 0x08,0xfc,0x1c,0x20,0x20,0x20,0x20,0x20, - 0xc0,0x20,0x20,0x20,0x20,0x20,0x1c,0x80, - 0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x80,0xe0,0x10,0x10, - 0x10,0x10,0x10,0x0c,0x10,0x10,0x10,0x10, - 0x10,0xe0,0x98,0xb4,0x64,0x80,0x80,0x80, - 0x80,0x80,0x80,0x80,0x00,0x80,0x80,0x20, - 0x20,0x70,0x88,0x80,0x80,0x88,0x70,0x20, - 0x20,0xb8,0x44,0x40,0x40,0xf0,0x40,0x40, - 0x40,0x48,0x30,0x84,0x78,0x84,0x84,0x84, - 0x78,0x84,0x38,0x10,0x7c,0x10,0x7c,0x28, - 0x44,0x44,0x82,0x82,0x80,0x80,0x80,0x80, - 0x80,0x80,0x00,0x00,0x80,0x80,0x80,0x80, - 0x80,0x80,0x78,0x84,0x04,0x18,0x24,0x44, - 0x84,0x88,0x90,0x60,0x80,0x84,0x78,0xd8, - 0x38,0x44,0x92,0xaa,0xa2,0xaa,0x92,0x44, - 0x38,0xf8,0x00,0x68,0x90,0x70,0x10,0x60, - 0x09,0x12,0x24,0x48,0x90,0x48,0x24,0x12, - 0x09,0x04,0x04,0xfc,0xfc,0x38,0x44,0xaa, - 0xaa,0xb2,0xaa,0xb2,0x44,0x38,0xf0,0x60, - 0x90,0x90,0x60,0xfe,0x00,0x10,0x10,0x10, - 0xfe,0x10,0x10,0x10,0xf0,0x40,0x20,0x90, - 0x60,0xe0,0x10,0x60,0x10,0xe0,0x80,0x40, - 0x80,0x80,0x80,0xb4,0xc8,0x88,0x88,0x88, - 0x88,0x88,0x24,0x24,0x24,0x24,0x24,0x24, - 0x64,0xa4,0xa4,0xa4,0xa4,0x7e,0xc0,0xc0, - 0x20,0x40,0xe0,0x40,0x40,0xc0,0x40,0xf8, - 0x00,0x70,0x88,0x88,0x88,0x70,0x90,0x48, - 0x24,0x12,0x09,0x12,0x24,0x48,0x90,0x04, - 0x9e,0x54,0x2c,0x14,0xe8,0x44,0x42,0xc0, - 0x40,0x1e,0x08,0x84,0x52,0x2c,0x10,0xe8, - 0x44,0x42,0xc0,0x40,0x04,0x9e,0x54,0x2c, - 0xd4,0x28,0x44,0x22,0xc0,0x78,0x84,0x84, - 0x80,0x40,0x20,0x20,0x00,0x20,0x20,0x84, - 0x84,0xfc,0x84,0x48,0x48,0x30,0x30,0x00, - 0x20,0x40,0x84,0x84,0xfc,0x84,0x48,0x48, - 0x30,0x30,0x00,0x10,0x08,0x84,0x84,0xfc, - 0x84,0x48,0x48,0x30,0x30,0x00,0x48,0x30, - 0x84,0x84,0xfc,0x84,0x48,0x48,0x30,0x30, - 0x00,0x98,0x64,0x84,0x84,0xfc,0x84,0x48, - 0x48,0x30,0x30,0x00,0x6c,0x84,0x84,0xfc, - 0x84,0x48,0x48,0x30,0x30,0x30,0x48,0x30, - 0x9e,0x90,0x90,0xf0,0x90,0x5c,0x50,0x50, - 0x30,0x1e,0x30,0x08,0x10,0x78,0x84,0x84, - 0x80,0x80,0x80,0x80,0x84,0x84,0x78,0xfc, - 0x80,0x80,0x80,0xf8,0x80,0x80,0xfc,0x00, - 0x20,0x40,0xfc,0x80,0x80,0x80,0xf8,0x80, - 0x80,0xfc,0x00,0x10,0x08,0xfc,0x80,0x80, - 0x80,0xf8,0x80,0x80,0xfc,0x00,0x48,0x30, - 0xfc,0x80,0x80,0x80,0xf8,0x80,0x80,0xfc, - 0x00,0x6c,0xe0,0x40,0x40,0x40,0x40,0x40, - 0x40,0xe0,0x00,0x40,0x80,0xe0,0x40,0x40, - 0x40,0x40,0x40,0x40,0xe0,0x00,0x40,0x20, - 0xe0,0x40,0x40,0x40,0x40,0x40,0x40,0xe0, - 0x00,0x90,0x60,0x70,0x20,0x20,0x20,0x20, - 0x20,0x20,0x70,0x00,0xd8,0x78,0x44,0x42, - 0x42,0x42,0xf2,0x42,0x42,0x44,0x78,0x84, - 0x8c,0x94,0x94,0xa4,0xa4,0xc4,0x84,0x00, - 0x98,0x64,0x78,0x84,0x84,0x84,0x84,0x84, - 0x84,0x78,0x00,0x20,0x40,0x78,0x84,0x84, - 0x84,0x84,0x84,0x84,0x78,0x00,0x10,0x08, - 0x78,0x84,0x84,0x84,0x84,0x84,0x84,0x78, - 0x00,0x48,0x30,0x78,0x84,0x84,0x84,0x84, - 0x84,0x84,0x78,0x00,0x98,0x64,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x78,0x00,0x6c, - 0x84,0x48,0x30,0x30,0x48,0x84,0xbc,0x42, - 0x62,0x52,0x52,0x4a,0x4a,0x46,0x42,0x3d, - 0x78,0x84,0x84,0x84,0x84,0x84,0x84,0x84, - 0x00,0x20,0x40,0x78,0x84,0x84,0x84,0x84, - 0x84,0x84,0x84,0x00,0x10,0x08,0x78,0x84, - 0x84,0x84,0x84,0x84,0x84,0x84,0x00,0x48, - 0x30,0x78,0x84,0x84,0x84,0x84,0x84,0x84, - 0x84,0x00,0x6c,0x10,0x10,0x10,0x10,0x28, - 0x44,0x44,0x82,0x00,0x10,0x08,0xe0,0x40, - 0x7c,0x42,0x42,0x42,0x42,0x7c,0x40,0xe0, - 0x98,0xa4,0x84,0x84,0x84,0x88,0xb0,0x88, - 0x88,0x70,0x74,0x88,0x88,0x78,0x08,0x88, - 0x70,0x00,0x20,0x40,0x74,0x88,0x88,0x78, - 0x08,0x88,0x70,0x00,0x20,0x10,0x74,0x88, - 0x88,0x78,0x08,0x88,0x70,0x00,0x48,0x30, - 0x74,0x88,0x88,0x78,0x08,0x88,0x70,0x00, - 0x98,0x64,0x74,0x88,0x88,0x78,0x08,0x88, - 0x70,0x00,0xd8,0x74,0x88,0x88,0x78,0x08, - 0x88,0x70,0x00,0x30,0x48,0x30,0x6c,0x92, - 0x90,0x7e,0x12,0x92,0x6c,0x30,0x08,0x10, - 0x78,0x84,0x80,0x80,0x80,0x84,0x78,0x78, - 0x84,0x80,0xfc,0x84,0x84,0x78,0x00,0x20, - 0x40,0x78,0x84,0x80,0xfc,0x84,0x84,0x78, - 0x00,0x10,0x08,0x78,0x84,0x80,0xfc,0x84, - 0x84,0x78,0x00,0x48,0x30,0x78,0x84,0x80, - 0xfc,0x84,0x84,0x78,0x00,0x6c,0x20,0x20, - 0x20,0x20,0x20,0x20,0xe0,0x00,0x40,0x80, - 0x20,0x20,0x20,0x20,0x20,0x20,0xe0,0x00, - 0x40,0x20,0x20,0x20,0x20,0x20,0x20,0x20, - 0xe0,0x00,0x90,0x60,0x10,0x10,0x10,0x10, - 0x10,0x10,0x70,0x00,0xd8,0x78,0x84,0x84, - 0x84,0x84,0x84,0x7c,0x04,0xc8,0x30,0xc8, - 0x84,0x84,0x84,0x84,0x84,0xc4,0xb8,0x00, - 0x98,0x64,0x78,0x84,0x84,0x84,0x84,0x84, - 0x78,0x00,0x20,0x40,0x78,0x84,0x84,0x84, - 0x84,0x84,0x78,0x00,0x10,0x08,0x78,0x84, - 0x84,0x84,0x84,0x84,0x78,0x00,0x48,0x30, - 0x78,0x84,0x84,0x84,0x84,0x84,0x78,0x00, - 0x98,0x64,0x78,0x84,0x84,0x84,0x84,0x84, - 0x78,0x00,0x00,0x6c,0x30,0x00,0x00,0xfc, - 0x00,0x00,0x30,0xbc,0x62,0x52,0x4a,0x46, - 0x42,0x3d,0x74,0x8c,0x84,0x84,0x84,0x84, - 0x84,0x00,0x20,0x40,0x74,0x8c,0x84,0x84, - 0x84,0x84,0x84,0x00,0x20,0x10,0x74,0x8c, - 0x84,0x84,0x84,0x84,0x84,0x00,0x48,0x30, - 0x74,0x8c,0x84,0x84,0x84,0x84,0x84,0x00, - 0x00,0x6c,0x78,0x84,0x04,0x04,0x74,0x8c, - 0x84,0x84,0x84,0x84,0x84,0x00,0x20,0x10, - 0xe0,0x40,0x40,0x5c,0x62,0x42,0x42,0x42, - 0x62,0x5c,0x40,0x40,0xc0,0x78,0x84,0x04, - 0x04,0x74,0x8c,0x84,0x84,0x84,0x84,0x84, - 0x00,0x00,0x6c, -}; - -FontDataBLF blf_font_scr15 = { - 0, -4, - 8, 11, - { - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 20, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 8, -1}, - {1, 10, -3, 0, 8, 0}, - {4, 4, -2, -6, 8, 10}, - {8, 10, 0, 0, 8, 14}, - {5, 12, -1, 1, 8, 24}, - {7, 10, 0, 0, 8, 36}, - {7, 10, 0, 0, 8, 46}, - {3, 4, -2, -6, 8, 56}, - {4, 13, -2, 2, 8, 60}, - {4, 13, -2, 2, 8, 73}, - {5, 6, -1, -2, 8, 86}, - {7, 7, 0, -1, 8, 92}, - {3, 5, -2, 3, 8, 99}, - {6, 1, -1, -4, 8, 104}, - {2, 2, -3, 0, 8, 105}, - {6, 12, -1, 1, 8, 107}, - {6, 10, -1, 0, 8, 119}, - {3, 10, -3, 0, 8, 129}, - {6, 10, -1, 0, 8, 139}, - {6, 10, -1, 0, 8, 149}, - {6, 10, -1, 0, 8, 159}, - {6, 10, -1, 0, 8, 169}, - {6, 10, -1, 0, 8, 179}, - {6, 10, -1, 0, 8, 189}, - {6, 10, -1, 0, 8, 199}, - {6, 10, -1, 0, 8, 209}, - {2, 7, -3, 0, 8, 219}, - {2, 9, -3, 2, 8, 226}, - {6, 11, -1, 1, 8, 235}, - {6, 4, -1, -3, 8, 246}, - {6, 11, -1, 1, 8, 250}, - {6, 10, -1, 0, 8, 261}, - {6, 10, -1, 0, 8, 271}, - {6, 10, -1, 0, 8, 281}, - {6, 10, -1, 0, 8, 291}, - {6, 10, -1, 0, 8, 301}, - {6, 10, -1, 0, 8, 311}, - {6, 10, -1, 0, 8, 321}, - {6, 10, -1, 0, 8, 331}, - {6, 10, -1, 0, 8, 341}, - {6, 10, -1, 0, 8, 351}, - {3, 10, -2, 0, 8, 361}, - {5, 10, -1, 0, 8, 371}, - {6, 10, -1, 0, 8, 381}, - {6, 10, -1, 0, 8, 391}, - {7, 10, 0, 0, 8, 401}, - {6, 10, -1, 0, 8, 411}, - {6, 10, -1, 0, 8, 421}, - {6, 10, -1, 0, 8, 431}, - {6, 13, -1, 3, 8, 441}, - {6, 10, -1, 0, 8, 454}, - {6, 10, -1, 0, 8, 464}, - {7, 10, 0, 0, 8, 474}, - {6, 10, -1, 0, 8, 484}, - {6, 10, -1, 0, 8, 494}, - {7, 10, 0, 0, 8, 504}, - {6, 10, -1, 0, 8, 514}, - {7, 10, 0, 0, 8, 524}, - {6, 10, -1, 0, 8, 534}, - {4, 13, -2, 2, 8, 544}, - {6, 12, -1, 1, 8, 557}, - {4, 13, -2, 2, 8, 569}, - {5, 3, -1, -6, 8, 582}, - {8, 1, 0, 3, 8, 585}, - {3, 4, -2, -6, 8, 586}, - {6, 7, -1, 0, 8, 590}, - {6, 10, -1, 0, 8, 597}, - {6, 7, -1, 0, 8, 607}, - {6, 10, -1, 0, 8, 614}, - {6, 7, -1, 0, 8, 624}, - {6, 10, -1, 0, 8, 631}, - {6, 11, -1, 4, 8, 641}, - {6, 10, -1, 0, 8, 652}, - {3, 10, -2, 0, 8, 662}, - {5, 14, -1, 4, 8, 672}, - {6, 10, -1, 0, 8, 686}, - {3, 10, -2, 0, 8, 696}, - {7, 7, 0, 0, 8, 706}, - {6, 7, -1, 0, 8, 713}, - {6, 7, -1, 0, 8, 720}, - {6, 11, -1, 4, 8, 727}, - {6, 11, -1, 4, 8, 738}, - {6, 7, -1, 0, 8, 749}, - {6, 7, -1, 0, 8, 756}, - {6, 9, -1, 0, 8, 763}, - {6, 7, -1, 0, 8, 772}, - {6, 7, -1, 0, 8, 779}, - {7, 7, 0, 0, 8, 786}, - {6, 7, -1, 0, 8, 793}, - {6, 11, -1, 4, 8, 800}, - {6, 7, -1, 0, 8, 811}, - {6, 13, -1, 2, 8, 818}, - {1, 14, -3, 3, 8, 831}, - {6, 13, -1, 2, 8, 845}, - {6, 3, -1, -3, 8, 858}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0,0,0,0,0, -1}, - {0, 0, 0, 0, 8, -1}, - {1, 10, -3, 3, 8, 861}, - {5, 10, -1, 0, 8, 871}, - {6, 10, -1, 0, 8, 881}, - {6, 7, -1, -2, 8, 891}, - {7, 10, 0, 0, 8, 898}, - {1, 14, -3, 3, 8, 908}, - {6, 13, -1, 3, 8, 922}, - {5, 1, -1, -9, 8, 935}, - {7, 9, 0, 0, 8, 936}, - {5, 7, -1, -3, 8, 945}, - {8, 9, 0, 0, 8, 952}, - {6, 3, -1, -3, 8, 961}, - {6, 1, -1, -4, 8, 964}, - {7, 9, 0, 0, 8, 965}, - {4, 1, -2, -9, 8, 974}, - {4, 4, -2, -4, 8, 975}, - {7, 9, 0, 0, 8, 979}, - {4, 5, -2, -5, 8, 988}, - {4, 5, -2, -5, 8, 993}, - {2, 2, -3, -9, 8, 998}, - {6, 10, -1, 3, 8, 1000}, - {7, 12, 0, 2, 8, 1010}, - {2, 1, -3, -4, 8, 1022}, - {3, 3, -3, 3, 8, 1023}, - {3, 5, -3, -5, 8, 1026}, - {5, 7, -1, -3, 8, 1031}, - {8, 9, 0, 0, 8, 1038}, - {7, 10, 0, 0, 8, 1047}, - {7, 11, 0, 1, 8, 1057}, - {7, 9, 0, -1, 8, 1068}, - {6, 10, -1, 2, 8, 1077}, - {6, 11, -1, 0, 8, 1087}, - {6, 11, -1, 0, 8, 1098}, - {6, 11, -1, 0, 8, 1109}, - {6, 11, -1, 0, 8, 1120}, - {6, 10, -1, 0, 8, 1131}, - {6, 11, -1, 0, 8, 1141}, - {7, 10, 0, 0, 8, 1152}, - {6, 13, -1, 3, 8, 1162}, - {6, 11, -1, 0, 8, 1175}, - {6, 11, -1, 0, 8, 1186}, - {6, 11, -1, 0, 8, 1197}, - {6, 10, -1, 0, 8, 1208}, - {3, 11, -2, 0, 8, 1218}, - {3, 11, -2, 0, 8, 1229}, - {4, 11, -2, 0, 8, 1240}, - {5, 10, -1, 0, 8, 1251}, - {7, 10, 0, 0, 8, 1261}, - {6, 11, -1, 0, 8, 1271}, - {6, 11, -1, 0, 8, 1282}, - {6, 11, -1, 0, 8, 1293}, - {6, 11, -1, 0, 8, 1304}, - {6, 11, -1, 0, 8, 1315}, - {6, 10, -1, 0, 8, 1326}, - {6, 6, -1, -1, 8, 1336}, - {8, 10, 0, 0, 8, 1342}, - {6, 11, -1, 0, 8, 1352}, - {6, 11, -1, 0, 8, 1363}, - {6, 11, -1, 0, 8, 1374}, - {6, 10, -1, 0, 8, 1385}, - {7, 11, 0, 0, 8, 1395}, - {7, 10, 0, 0, 8, 1406}, - {6, 10, -1, 0, 8, 1416}, - {6, 10, -1, 0, 8, 1426}, - {6, 10, -1, 0, 8, 1436}, - {6, 10, -1, 0, 8, 1446}, - {6, 10, -1, 0, 8, 1456}, - {6, 9, -1, 0, 8, 1466}, - {6, 11, -1, 0, 8, 1475}, - {7, 7, 0, 0, 8, 1486}, - {6, 10, -1, 3, 8, 1493}, - {6, 10, -1, 0, 8, 1503}, - {6, 10, -1, 0, 8, 1513}, - {6, 10, -1, 0, 8, 1523}, - {6, 9, -1, 0, 8, 1533}, - {3, 10, -2, 0, 8, 1542}, - {3, 10, -2, 0, 8, 1552}, - {4, 10, -2, 0, 8, 1562}, - {5, 9, -1, 0, 8, 1572}, - {6, 11, -1, 0, 8, 1581}, - {6, 10, -1, 0, 8, 1592}, - {6, 10, -1, 0, 8, 1602}, - {6, 10, -1, 0, 8, 1612}, - {6, 10, -1, 0, 8, 1622}, - {6, 10, -1, 0, 8, 1632}, - {6, 10, -1, 0, 8, 1642}, - {6, 7, -1, 0, 8, 1652}, - {8, 7, 0, 0, 8, 1659}, - {6, 10, -1, 0, 8, 1666}, - {6, 10, -1, 0, 8, 1676}, - {6, 10, -1, 0, 8, 1686}, - {6, 10, -1, 0, 8, 1696}, - {6, 14, -1, 4, 8, 1706}, - {7, 13, 0, 3, 8, 1720}, - {6, 14, -1, 4, 8, 1733}, - }, - scr15_bitmap_data, - 0 -}; - -#endif /* BLF_FONT_SCR15_H */ diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c index 510204b0f51..551db2cdaa9 100644 --- a/source/blender/blenfont/intern/blf_glyph.c +++ b/source/blender/blenfont/intern/blf_glyph.c @@ -31,16 +31,12 @@ #include #include -#ifdef WITH_FREETYPE2 - #include #include FT_FREETYPE_H #include FT_GLYPH_H #include FT_OUTLINE_H -#endif /* WITH_FREETYPE2 */ - #include "MEM_guardedalloc.h" #include "DNA_listBase.h" @@ -59,8 +55,6 @@ #include "blf_internal.h" -#ifdef WITH_FREETYPE2 - GlyphCacheBLF *blf_glyph_cache_find(FontBLF *font, int size, int dpi) { GlyphCacheBLF *p; @@ -433,6 +427,67 @@ void blf_glyph_free(GlyphBLF *g) MEM_freeN(g); } +static void blf_texture_draw(float uv[2][2], float dx, float y1, float dx1, float y2) +{ + + glBegin(GL_QUADS); + glTexCoord2f(uv[0][0], uv[0][1]); + glVertex2f(dx, y1); + + glTexCoord2f(uv[0][0], uv[1][1]); + glVertex2f(dx, y2); + + glTexCoord2f(uv[1][0], uv[1][1]); + glVertex2f(dx1, y2); + + glTexCoord2f(uv[1][0], uv[0][1]); + glVertex2f(dx1, y1); + glEnd(); + +} + +static void blf_texture5_draw(float uv[2][2], float x1, float y1, float x2, float y2) +{ + float soft[25]= { + 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f, + 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, + 2/60.0f, 5/60.0f, 8/60.0f, 5/60.0f, 2/60.0f, + 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, + 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f}; + + float color[4], *fp= soft; + int dx, dy; + + glGetFloatv(GL_CURRENT_COLOR, color); + + for(dx=-2; dx<3; dx++) { + for(dy=-2; dy<3; dy++, fp++) { + glColor4f(color[0], color[1], color[2], fp[0]*color[3]); + blf_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); + } + } + + glColor4fv(color); +} + +static void blf_texture3_draw(float uv[2][2], float x1, float y1, float x2, float y2) +{ + float soft[9]= {1/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 4/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 1/16.0f}; + float color[4], *fp= soft; + int dx, dy; + + glGetFloatv(GL_CURRENT_COLOR, color); + + for(dx=-1; dx<2; dx++) { + for(dy=-1; dy<2; dy++, fp++) { + glColor4f(color[0], color[1], color[2], fp[0]*color[3]); + blf_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); + } + } + + glColor4fv(color); +} + int blf_glyph_texture_render(FontBLF *font, GlyphBLF *g, float x, float y) { GlyphTextureBLF *gt; @@ -504,5 +559,3 @@ int blf_glyph_render(FontBLF *font, GlyphBLF *g, float x, float y) return(blf_glyph_bitmap_render(font, g, x, y)); return(blf_glyph_texture_render(font, g, x, y)); } - -#endif /* WITH_FREETYPE2 */ diff --git a/source/blender/blenfont/intern/blf_internal.c b/source/blender/blenfont/intern/blf_internal.c deleted file mode 100644 index 414ec5abead..00000000000 --- a/source/blender/blenfont/intern/blf_internal.c +++ /dev/null @@ -1,435 +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) 2009 Blender Foundation. - * All rights reserved. - * - * - * Contributor(s): Blender Foundation - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#include -#include -#include - -#ifdef WITH_FREETYPE2 - -#include - -#include FT_FREETYPE_H -#include FT_GLYPH_H - -#endif /* WITH_FREETYPE2 */ - -#include "MEM_guardedalloc.h" - -#include "DNA_listBase.h" -#include "DNA_vec_types.h" - -#include "BKE_utildefines.h" - -#include "BLI_blenlib.h" -#include "BLI_linklist.h" /* linknode */ -#include "BLI_string.h" -#include "BLI_arithb.h" - -#include "BIF_gl.h" -#include "BLF_api.h" - -#include "blf_internal_types.h" -#include "blf_internal.h" -#include "blf_font_helv10.h" - -#ifndef BLF_INTERNAL_MINIMAL -#include "blf_font_helv12.h" -#include "blf_font_helvb8.h" -#include "blf_font_helvb10.h" -#include "blf_font_helvb12.h" -#include "blf_font_scr12.h" -#include "blf_font_scr14.h" -#include "blf_font_scr15.h" -#endif - -int blf_internal_get_texture(FontBLF *font) -{ - FontDataBLF *data; - CharDataBLF *cd; - int width; - int height; - int c_rows, c_cols, c_width, c_height; - int i_width, i_height; - GLubyte *img, *img_row, *chr_row, *img_pxl; - int base_line, i, cell_x, cell_y, y, x; - int byte_idx, bit_idx; - - data= (FontDataBLF *)font->engine; - if (data->texid != 0) - return(0); - - width= data->xmax - data->xmin; - height= data->ymax - data->ymin; - c_rows= 16; - c_cols= 16; - c_width= 16; - c_height= 16; - i_width= c_cols * c_width; - i_height= c_rows * c_height; - base_line= -(data->ymin); - img= (GLubyte *)malloc(i_height * i_width); - memset((void *)img, 0, i_height * i_width); - - if (width >= 16 || height >= 16) { - printf("Warning: Bad font size for: %s\n", font->name); - return(-1); - } - - for (i= 0; i < 256; i++) { - cd= &data->chars[i]; - - if (cd->data_offset != -1) { - cell_x= i%16; - cell_y= i/16; - - for (y= 0; y < cd->height; y++) { - img_row = &img[(cell_y*c_height + y + base_line - cd->yorig)*i_width]; - chr_row = &data->bitmap_data[cd->data_offset + ((cd->width+7)/8)*y]; - - for (x= 0; x < cd->width; x++) { - img_pxl= &img_row[(cell_x*c_width + x - cd->xorig)]; - byte_idx= x/8; - bit_idx= 7 - (x%8); - - if (chr_row[byte_idx]&(1<texid); - glBindTexture(GL_TEXTURE_2D, data->texid); - glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA4, i_width, i_height, 0, GL_ALPHA, GL_UNSIGNED_BYTE, img); - if (glGetError()) { - glTexImage2D(GL_TEXTURE_2D, 0, GL_LUMINANCE4_ALPHA4, i_width, i_height, 0, GL_ALPHA, GL_UNSIGNED_BYTE, img); - } - - glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); - glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); - free((void *)img); - return(0); -} - -void blf_internal_size(FontBLF *font, int size, int dpi) -{ - /* dpi don't work here and size is limit to: - * helv: 10, 12 - * helvb: 8, 10, 12 - * scr: 12, 14, 15 - */ - font->dpi= dpi; - - if (font->size != size) { - if (!strcmp(font->name, "helv")) { - if (size == 12) { - font->engine= (void *)&blf_font_helv12; - font->size= 12; - } - else { - font->engine= (void *)&blf_font_helv10; - font->size= 10; - } - } - else if (!strcmp(font->name, "helvb")) { - if (size == 10) { - font->engine= (void *)&blf_font_helvb10; - font->size= 10; - } - else if (size == 12) { - font->engine= (void *)&blf_font_helvb12; - font->size= 12; - } - else { - font->engine= (void *)&blf_font_helvb8; - font->size= 8; - } - } - else { /* scr */ - if (size == 14) { - font->engine= (void *)&blf_font_scr14; - font->size= 14; - } - else if (size == 15) { - font->engine= (void *)&blf_font_scr15; - font->size= 15; - } - else { - font->engine= (void *)&blf_font_scr12; - font->size= 12; - } - } - - if (font->mode == BLF_MODE_TEXTURE) { - if (blf_internal_get_texture(font) != 0) - printf("Can't create texture font!!\n"); - } - } -} - -void blf_internal_texture_draw(FontBLF *font, char *str) -{ - FontDataBLF *data; - CharDataBLF *cd; - unsigned char c; - float pos, x, y; - float uv[2][2]; - int base_line; - GLint cur_tex; - float dx, dx1, dy, dy1; - - data= (FontDataBLF *)font->engine; - base_line= -(data->ymin); - pos= 0; - x= 0.0f; - y= 0.0f; - - glGetIntegerv(GL_TEXTURE_2D_BINDING_EXT, &cur_tex); - if (cur_tex != data->texid) - glBindTexture(GL_TEXTURE_2D, data->texid); - - while ((c= (unsigned char) *str++)) { - cd= &data->chars[c]; - - if (cd->data_offset != -1) { - uv[0][0]= ((c%16)/16.0) + 1.0/16.0; - uv[0][1]= (c/16)/16.0; - uv[1][0]= (c%16)/16.0; - uv[1][1]= ((c/16)/16.0) + 1.0/16.0; - - dx= x + pos + 16.0; - dx1= x + pos + 0.0; - dy= -base_line + y + 0.0; - dy1= -base_line + y + 16.0; - - if (font->flags & BLF_CLIPPING) { - /* Don't return, just skip this character and check the others. */ - if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], dy + font->pos[1])) - goto next_tex_char; - if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], dy1 + font->pos[1])) - goto next_tex_char; - if (!BLI_in_rctf(&font->clip_rec, dx1 + font->pos[0], dy1 + font->pos[1])) - goto next_tex_char; - if (!BLI_in_rctf(&font->clip_rec, dx1 + font->pos[0], dy + font->pos[1])) - goto next_tex_char; - } - - if (font->blur == 3) - blf_texture3_draw(uv, dx, dy, dx1, dy1); - else if (font->blur == 5) - blf_texture5_draw(uv, dx, dy, dx1, dy1); - else - blf_texture_draw(uv, dx, dy, dx1, dy1); - } -next_tex_char: - pos += cd->advance; - } -} - -void blf_internal_bitmap_draw(FontBLF *font, char *str) -{ - FontDataBLF *data; - CharDataBLF *cd; - unsigned char c; - GLint alignment; - float dx; - - data= (FontDataBLF *)font->engine; - - glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment); - glPixelStorei(GL_UNPACK_ALIGNMENT, 1); - dx= 0; - - while ((c= (unsigned char) *str++)) { - cd= &data->chars[c]; - - if (font->flags & BLF_CLIPPING) { - /* The same here, always check all the characters. */ - if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], font->pos[1])) - goto next_bitmap_char; - if (!BLI_in_rctf(&font->clip_rec, dx + font->pos[0], cd->height + font->pos[1])) - goto next_bitmap_char; - if (!BLI_in_rctf(&font->clip_rec, dx + cd->width + font->pos[0], cd->height + font->pos[1])) - goto next_bitmap_char; - if (!BLI_in_rctf(&font->clip_rec, dx + cd->width + font->pos[0], font->pos[1])) - goto next_bitmap_char; - } - - if (cd->data_offset==-1) { - GLubyte nullBitmap= 0; - glBitmap(1, 1, 0, 0, cd->advance, 0, &nullBitmap); - } else { - GLubyte *bitmap= &data->bitmap_data[cd->data_offset]; - glBitmap(cd->width, cd->height, cd->xorig, cd->yorig, cd->advance, 0, bitmap); - } -next_bitmap_char: - dx += cd->advance; - } - - glPixelStorei(GL_UNPACK_ALIGNMENT, alignment); -} - -void blf_internal_draw(FontBLF *font, char *str) -{ - if (font->mode == BLF_MODE_BITMAP) - blf_internal_bitmap_draw(font, str); - else - blf_internal_texture_draw(font, str); -} - -void blf_internal_boundbox(FontBLF *font, char *str, rctf *box) -{ - FontDataBLF *data; - unsigned char c; - int length= 0; - int ascent= 0; - int descent= 0; - int a=0, d=0; - - data= (FontDataBLF *)font->engine; - while ((c= (unsigned char) *str++)) { - length += data->chars[c].advance; - d = data->chars[c].yorig; - a = data->chars[c].height - data->chars[c].yorig; - if (a > ascent) - ascent= a; - if (d > descent) - descent= d; - } - box->xmin = (float)0; - box->ymin = (float)-descent * font->aspect; - box->xmax = (float)length * font->aspect; - box->ymax = (float)ascent * font->aspect; -} - -float blf_internal_width(FontBLF *font, char *str) -{ - FontDataBLF *data; - unsigned char c; - int length= 0; - - data= (FontDataBLF *)font->engine; - while ((c= (unsigned char) *str++)) { - length += data->chars[c].advance; - } - - return((float)(length * font->aspect)); -} - -float blf_internal_height(FontBLF *font, char *str) -{ - FontDataBLF *data; - - data= (FontDataBLF *)font->engine; - return(((float)(data->ymax - data->ymin)) * font->aspect); -} - -void blf_internal_free(FontBLF *font) -{ - FontDataBLF *data; - - data= (FontDataBLF *)font->engine; - if (data->texid != 0) { - glDeleteTextures(1, &data->texid); - data->texid= 0; - } - - MEM_freeN(font->name); - MEM_freeN(font); -} - -FontBLF *blf_internal_new(char *name) -{ - FontBLF *font; - - font= (FontBLF *)MEM_mallocN(sizeof(FontBLF), "blf_internal_new"); - font->name= BLI_strdup(name); - font->filename= NULL; - - if (!strcmp(name, "helv")) { - font->engine= (void *)&blf_font_helv10; - font->size= 10; - } -#ifndef BLF_INTERNAL_MINIMAL - else if (!strcmp(name, "helvb")) { - font->engine= (void *)&blf_font_helvb8; - font->size= 8; - } - else if (!strcmp(name, "scr")) { - font->engine= (void *)&blf_font_scr12; - font->size= 12; - } -#endif - else - font->engine= NULL; - - if (!font->engine) { - MEM_freeN(font->name); - MEM_freeN(font); - return(NULL); - } - - font->type= BLF_FONT_INTERNAL; - font->ref= 1; - font->mode= BLF_MODE_TEXTURE; - font->aspect= 1.0f; - font->pos[0]= 0.0f; - font->pos[1]= 0.0f; - font->angle= 0.0f; - Mat4One(font->mat); - font->clip_rec.xmin= 0.0f; - font->clip_rec.xmax= 0.0f; - font->clip_rec.ymin= 0.0f; - font->clip_rec.ymax= 0.0f; - font->flags= 0; - font->dpi= 72; - font->cache.first= NULL; - font->cache.last= NULL; - font->glyph_cache= NULL; - glGetIntegerv(GL_MAX_TEXTURE_SIZE, (GLint *)&font->max_tex_size); - - font->size_set= blf_internal_size; - font->draw= blf_internal_draw; - font->boundbox_get= blf_internal_boundbox; - font->width_get= blf_internal_width; - font->height_get= blf_internal_height; - font->free= blf_internal_free; - - if (font->mode == BLF_MODE_TEXTURE) { - if (blf_internal_get_texture(font) != 0) { - MEM_freeN(font->name); - MEM_freeN(font); - return(NULL); - } - } - - return(font); -} diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h index a042eefb4d9..af49dda0023 100644 --- a/source/blender/blenfont/intern/blf_internal.h +++ b/source/blender/blenfont/intern/blf_internal.h @@ -32,20 +32,12 @@ unsigned int blf_next_p2(unsigned int x); unsigned int blf_hash(unsigned int val); int blf_utf8_next(unsigned char *buf, int *iindex); -void blf_texture_draw(float uv[2][2], float dx, float y1, float dx1, float y2); -void blf_texture5_draw(float uv[2][2], float x1, float y1, float x2, float y2); -void blf_texture3_draw(float uv[2][2], float x1, float y1, float x2, float y2); - char *blf_dir_search(const char *file); int blf_dir_split(const char *str, char *file, int *size); int blf_font_init(void); void blf_font_exit(void); -FontBLF *blf_internal_new(char *name); - -#ifdef WITH_FREETYPE2 - FontBLF *blf_font_new(char *name, char *filename); FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size); @@ -59,5 +51,4 @@ GlyphBLF *blf_glyph_add(FontBLF *font, FT_UInt index, unsigned int c); void blf_glyph_free(GlyphBLF *g); int blf_glyph_render(FontBLF *font, GlyphBLF *g, float x, float y); -#endif /* WITH_FREETYPE2 */ #endif /* BLF_INTERNAL_H */ diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h index da2d3c17f79..9d762a7e155 100644 --- a/source/blender/blenfont/intern/blf_internal_types.h +++ b/source/blender/blenfont/intern/blf_internal_types.h @@ -140,9 +140,6 @@ typedef struct FontBLF { /* filename or NULL. */ char *filename; - /* font type, can be freetype2 or internal. */ - int type; - /* draw mode, texture or bitmap. */ int mode; @@ -197,24 +194,6 @@ typedef struct FontBLF { void (*free)(struct FontBLF *); } FontBLF; -typedef struct CharDataBLF { - signed char width, height; - signed char xorig, yorig; - signed char advance; - - short data_offset; -} CharDataBLF; - -typedef struct FontDataBLF { - int xmin, ymin; - int xmax, ymax; - - CharDataBLF chars[256]; - unsigned char *bitmap_data; - - GLuint texid; -} FontDataBLF; - typedef struct DirBLF { struct DirBLF *next; struct DirBLF *prev; diff --git a/source/blender/blenfont/intern/blf_util.c b/source/blender/blenfont/intern/blf_util.c index 8de6aea754b..03e1066caa1 100644 --- a/source/blender/blenfont/intern/blf_util.c +++ b/source/blender/blenfont/intern/blf_util.c @@ -76,34 +76,30 @@ int blf_utf8_next(unsigned char *buf, int *iindex) * * Returns 0 to indicate an error (e.g. invalid UTF8) */ - int index= *iindex, r; - unsigned char d= buf[index++], d2, d3, d4; + int index= *iindex, len, r; + unsigned char d, d2, d3, d4; + d= buf[index++]; if (!d) return(0); - if (d < 0x80) { - *iindex= index; - return(d); - } + while (buf[index] && ((buf[index] & 0xc0) == 0x80)) + index++; - if ((d & 0xe0) == 0xc0) { + len= index - *iindex; + if (len == 1) + r= d; + else if (len == 2) { /* 2 byte */ - d2= buf[index++]; - if ((d2 & 0xc0) != 0x80) - return(0); + d2= buf[*iindex + 1]; r= d & 0x1f; /* copy lower 5 */ r <<= 6; r |= (d2 & 0x3f); /* copy lower 6 */ } - else if ((d & 0xf0) == 0xe0) { + else if (len == 3) { /* 3 byte */ - d2= buf[index++]; - d3= buf[index++]; - - if ((d2 & 0xc0) != 0x80 || (d3 & 0xc0) != 0x80) - return(0); - + d2= buf[*iindex + 1]; + d3= buf[*iindex + 2]; r= d & 0x0f; /* copy lower 4 */ r <<= 6; r |= (d2 & 0x3f); @@ -112,14 +108,9 @@ int blf_utf8_next(unsigned char *buf, int *iindex) } else { /* 4 byte */ - d2= buf[index++]; - d3= buf[index++]; - d4= buf[index++]; - - if ((d2 & 0xc0) != 0x80 || (d3 & 0xc0) != 0x80 || - (d4 & 0xc0) != 0x80) - return(0); - + d2= buf[*iindex + 1]; + d3= buf[*iindex + 2]; + d4= buf[*iindex + 3]; r= d & 0x0f; /* copy lower 4 */ r <<= 6; r |= (d2 & 0x3f); @@ -131,64 +122,3 @@ int blf_utf8_next(unsigned char *buf, int *iindex) *iindex= index; return(r); } - -void blf_texture_draw(float uv[2][2], float dx, float y1, float dx1, float y2) -{ - - glBegin(GL_QUADS); - glTexCoord2f(uv[0][0], uv[0][1]); - glVertex2f(dx, y1); - - glTexCoord2f(uv[0][0], uv[1][1]); - glVertex2f(dx, y2); - - glTexCoord2f(uv[1][0], uv[1][1]); - glVertex2f(dx1, y2); - - glTexCoord2f(uv[1][0], uv[0][1]); - glVertex2f(dx1, y1); - glEnd(); - -} - -void blf_texture5_draw(float uv[2][2], float x1, float y1, float x2, float y2) -{ - float soft[25]= { - 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f, - 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, - 2/60.0f, 5/60.0f, 8/60.0f, 5/60.0f, 2/60.0f, - 1/60.0f, 3/60.0f, 5/60.0f, 3/60.0f, 1/60.0f, - 1/60.0f, 1/60.0f, 2/60.0f, 1/60.0f, 1/60.0f}; - - float color[4], *fp= soft; - int dx, dy; - - glGetFloatv(GL_CURRENT_COLOR, color); - - for(dx=-2; dx<3; dx++) { - for(dy=-2; dy<3; dy++, fp++) { - glColor4f(color[0], color[1], color[2], fp[0]*color[3]); - blf_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); - } - } - - glColor4fv(color); -} - -void blf_texture3_draw(float uv[2][2], float x1, float y1, float x2, float y2) -{ - float soft[9]= {1/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 4/16.0f, 2/16.0f, 1/16.0f, 2/16.0f, 1/16.0f}; - float color[4], *fp= soft; - int dx, dy; - - glGetFloatv(GL_CURRENT_COLOR, color); - - for(dx=-1; dx<2; dx++) { - for(dy=-1; dy<2; dy++, fp++) { - glColor4f(color[0], color[1], color[2], fp[0]*color[3]); - blf_texture_draw(uv, x1+dx, y1+dy, x2+dx, y2+dy); - } - } - - glColor4fv(color); -} diff --git a/source/blender/blenkernel/BKE_global.h b/source/blender/blenkernel/BKE_global.h index ac161caeb2e..4b7ddf43647 100644 --- a/source/blender/blenkernel/BKE_global.h +++ b/source/blender/blenkernel/BKE_global.h @@ -45,7 +45,6 @@ extern "C" { struct Main; struct Object; struct bSoundListener; -struct BMF_Font; struct BME_Glob; typedef struct Global { @@ -53,9 +52,6 @@ typedef struct Global { /* active pointers */ struct Main *main; - /* fonts, allocated global data */ - struct BMF_Font *font, *fonts, *fontss; - /* strings: lastsaved */ char ima[256], sce[256], lib[256]; diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt index 5a612df2589..ebe0ea74c28 100644 --- a/source/blender/blenkernel/CMakeLists.txt +++ b/source/blender/blenkernel/CMakeLists.txt @@ -31,7 +31,7 @@ SET(INC ../render/extern/include ../../../intern/decimation/extern ../imbuf ../avi ../../../intern/elbeem/extern ../../../intern/opennl/extern ../../../intern/iksolver/extern ../blenloader ../quicktime - ../../../intern/bmfont ../../../extern/bullet2/src + ../../../extern/bullet2/src ../nodes ../../../extern/glew/include ../gpu ../makesrna ../../../intern/bsp/extern ${SDL_INC} @@ -66,10 +66,6 @@ ELSE(WITH_PYTHON) ADD_DEFINITIONS(-DDISABLE_PYTHON) ENDIF(WITH_PYTHON) -IF(WITH_INTERNATIONAL) - ADD_DEFINITIONS(-DWITH_FREETYPE2) -ENDIF(WITH_INTERNATIONAL) - IF(NOT WITH_ELBEEM) ADD_DEFINITIONS(-DDISABLE_ELBEEM) ENDIF(NOT WITH_ELBEEM) diff --git a/source/blender/blenkernel/SConscript b/source/blender/blenkernel/SConscript index 86ff3a43045..19d150b34a8 100644 --- a/source/blender/blenkernel/SConscript +++ b/source/blender/blenkernel/SConscript @@ -8,7 +8,6 @@ incs += ' ../render/extern/include #/intern/decimation/extern ../makesrna' incs += ' ../imbuf ../avi #/intern/elbeem/extern ../nodes' incs += ' #/intern/iksolver/extern ../blenloader' incs += ' #/extern/bullet2/src' -incs += ' #/intern/bmfont' incs += ' #/intern/opennl/extern #/intern/bsp/extern' incs += ' ../gpu #/extern/glew/include' @@ -33,9 +32,6 @@ if env['WITH_BF_SDL']: else: defs.append('DISABLE_SDL') -if env['WITH_BF_INTERNATIONAL']: - defs.append('WITH_FREETYPE2') - if env['WITH_BF_OPENEXR']: defs.append('WITH_OPENEXR') diff --git a/source/blender/blenkernel/intern/Makefile b/source/blender/blenkernel/intern/Makefile index 6554c93662d..1528ec1c86e 100644 --- a/source/blender/blenkernel/intern/Makefile +++ b/source/blender/blenkernel/intern/Makefile @@ -59,8 +59,6 @@ CPPFLAGS += -I../../editors/include # to include the render stuff: CPPFLAGS += -I../../render/extern/include -# for image stamping -CPPFLAGS += -I$(NAN_BMFONT)/include # for sound #CPPFLAGS += -I../../../kernel/gen_system CPPFLAGS += $(NAN_SDLCFLAGS) @@ -85,12 +83,8 @@ CPPFLAGS += -I.. # path to bullet2, for cloth CPPFLAGS += -I../../../../extern/bullet2/src - -ifeq ($(WITH_FREETYPE2), true) - CPPFLAGS += -DWITH_FREETYPE2 - CPPFLAGS += -I$(NAN_FREETYPE)/include - CPPFLAGS += -I$(NAN_FREETYPE)/include/freetype2 -endif +CPPFLAGS += -I$(NAN_FREETYPE)/include +CPPFLAGS += -I$(NAN_FREETYPE)/include/freetype2 ifeq ($(WITH_FFMPEG),true) CPPFLAGS += -DWITH_FFMPEG diff --git a/source/blender/blenkernel/intern/depsgraph.c b/source/blender/blenkernel/intern/depsgraph.c index 8bd848ea9e6..dfe3b7ea279 100644 --- a/source/blender/blenkernel/intern/depsgraph.c +++ b/source/blender/blenkernel/intern/depsgraph.c @@ -33,8 +33,6 @@ #include "BLI_winstuff.h" #endif -//#include "BMF_Api.h" - #include "BLI_blenlib.h" #include "BLI_arithb.h" diff --git a/source/blender/blenkernel/intern/font.c b/source/blender/blenkernel/intern/font.c index ced8d3bdebb..b94652eb7c3 100644 --- a/source/blender/blenkernel/intern/font.c +++ b/source/blender/blenkernel/intern/font.c @@ -355,11 +355,7 @@ static VFontData *vfont_get_data(VFont *vfont) } if (pf) { -#ifdef WITH_FREETYPE2 vfont->data= BLI_vfontdata_from_freetypefont(pf); -#else - vfont->data= BLI_vfontdata_from_psfont(pf); -#endif if (pf != vfont->packedfile) { freePackedFile(pf); } @@ -398,12 +394,7 @@ VFont *load_vfont(char *name) if (pf) { VFontData *vfd; -#ifdef WITH_FREETYPE2 vfd= BLI_vfontdata_from_freetypefont(pf); -#else - vfd= BLI_vfontdata_from_psfont(pf); -#endif - if (vfd) { vfont = alloc_libblock(&G.main->vfont, ID_VF, filename); vfont->data = vfd; @@ -755,21 +746,22 @@ struct chartrans *BKE_text_to_curve(Scene *scene, Object *ob, int mode) che = che->next; } -#ifdef WITH_FREETYPE2 - // The character wasn't in the current curve base so load it - // But if the font is then do not try loading since whole font is in the memory already + /* + * The character wasn't in the current curve base so load it + * But if the font is then do not try loading since + * whole font is in the memory already + */ if(che == NULL && strcmp(vfont->name, "")) { BLI_vfontchar_from_freetypefont(vfont, ascii); } - // Try getting the character again from the list + /* Try getting the character again from the list */ che = vfd->characters.first; while(che) { if(che->index == ascii) break; che = che->next; } -#endif /* No VFont found */ if (vfont==0) { diff --git a/source/blender/blenkernel/intern/gpencil.c b/source/blender/blenkernel/intern/gpencil.c index 99ec7ce1cc8..6086aa58d40 100644 --- a/source/blender/blenkernel/intern/gpencil.c +++ b/source/blender/blenkernel/intern/gpencil.c @@ -33,8 +33,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "IMB_imbuf.h" #include "IMB_imbuf_types.h" diff --git a/source/blender/blenkernel/intern/image.c b/source/blender/blenkernel/intern/image.c index 53b805f5f4c..629f34518b9 100644 --- a/source/blender/blenkernel/intern/image.c +++ b/source/blender/blenkernel/intern/image.c @@ -77,9 +77,6 @@ #include "RE_pipeline.h" -/* for stamp drawing to an image */ -#include "BMF_Api.h" - #include "GPU_extensions.h" #include "GPU_draw.h" @@ -1069,6 +1066,9 @@ static void stampdata(Scene *scene, StampData *stamp_data, int do_prefix) void BKE_stamp_buf(Scene *scene, unsigned char *rect, float *rectf, int width, int height, int channels) { +#if 0 +// XXX +// This go back when BLF_draw_buffer is implemented - Diego struct StampData stamp_data; int x=1,y=1; @@ -1188,7 +1188,7 @@ void BKE_stamp_buf(Scene *scene, unsigned char *rect, float *rectf, int width, i buf_rectfill_area(rect, rectf, width, height, scene->r.bg_stamp, x-1, y-1, x+text_width+text_pad+1, y+font_height+1); BMF_DrawStringBuf(font, stamp_data.strip, x+(text_pad/2), y, scene->r.fg_stamp, rect, rectf, width, height, channels); } - +#endif // 0 XXX } void BKE_stamp_info(Scene *scene, struct ImBuf *ibuf) diff --git a/source/blender/blenlib/CMakeLists.txt b/source/blender/blenlib/CMakeLists.txt index b22e7b1dd70..334c8e6906b 100644 --- a/source/blender/blenlib/CMakeLists.txt +++ b/source/blender/blenlib/CMakeLists.txt @@ -40,10 +40,6 @@ SET(INC ) ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux") -IF(WITH_INTERNATIONAL) - ADD_DEFINITIONS(-DWITH_FREETYPE2) -ENDIF(WITH_INTERNATIONAL) - IF(WIN32) SET(INC ${INC} ${PTHREADS_INC}) ENDIF(WIN32) diff --git a/source/blender/blenlib/SConscript b/source/blender/blenlib/SConscript index d0084be0d56..e0411a6fc80 100644 --- a/source/blender/blenlib/SConscript +++ b/source/blender/blenlib/SConscript @@ -12,9 +12,6 @@ defs = '' if env['WITH_BF_SDL']: incs += ' ' + env['BF_SDL_INC'] -if env['WITH_BF_INTERNATIONAL']: - defs = 'WITH_FREETYPE2' - if env['OURPLATFORM'] == 'linux2': cflags='-pthread' incs += ' ../../../extern/binreloc/include' diff --git a/source/blender/blenlib/intern/Makefile b/source/blender/blenlib/intern/Makefile index f92fa0a7e25..f729a4e3fe0 100644 --- a/source/blender/blenlib/intern/Makefile +++ b/source/blender/blenlib/intern/Makefile @@ -53,9 +53,6 @@ CPPFLAGS += -I$(NAN_ZLIB)/include ifdef NAN_PTHREADS CPPFLAGS += -I$(NAN_PTHREADS)/include endif -ifeq ($(WITH_FREETYPE2), true) - CPPFLAGS += -DWITH_FREETYPE2 -endif ifeq ($(OS),linux) CPPFLAGS += -I$(OCGDIR)/extern/binreloc/include endif diff --git a/source/blender/blenlib/intern/freetypefont.c b/source/blender/blenlib/intern/freetypefont.c index 4b7b5914b60..0f2a6179964 100644 --- a/source/blender/blenlib/intern/freetypefont.c +++ b/source/blender/blenlib/intern/freetypefont.c @@ -30,8 +30,6 @@ * Code that uses exotic character maps is present but commented out. */ -#ifdef WITH_FREETYPE2 - #ifdef WIN32 #pragma warning (disable:4244) #endif @@ -514,10 +512,6 @@ int BLI_vfontchar_from_freetypefont(VFont *vfont, unsigned long character) return TRUE; } -#endif // WITH_FREETYPE2 - - - #if 0 // Freetype2 Outline struct diff --git a/source/blender/editors/CMakeLists.txt b/source/blender/editors/CMakeLists.txt index 06b0fb4ab41..914fdaa4bc6 100644 --- a/source/blender/editors/CMakeLists.txt +++ b/source/blender/editors/CMakeLists.txt @@ -30,7 +30,7 @@ SET(INC ../windowmanager ../editors/include ../../../intern/guardedalloc ../../../intern/memutil ../blenlib ../makesdna ../makesrna ../blenkernel - ../include ../../../intern/bmfont ../imbuf ../render/extern/include + ../include ../imbuf ../render/extern/include ../../../intern/bsp/extern ../radiosity/extern/include ../../../intern/decimation/extern ../blenloader ../python ../../kernel/gen_system ../../../intern/SoundSystem ../readstreamglue @@ -43,9 +43,7 @@ SET(INC ../windowmanager ) IF(WITH_INTERNATIONAL) - SET(INC ${INC} ../ftfont) ADD_DEFINITIONS(-DINTERNATIONAL) - ADD_DEFINITIONS(-DFTGL_STATIC_LIBRARY) ENDIF(WITH_INTERNATIONAL) IF(WITH_OPENEXR) diff --git a/source/blender/editors/armature/Makefile b/source/blender/editors/armature/Makefile index f8cbb5ab37e..6c7ce81a8a1 100644 --- a/source/blender/editors/armature/Makefile +++ b/source/blender/editors/armature/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_OPENNL)/include # not very neat.... diff --git a/source/blender/editors/armature/SConscript b/source/blender/editors/armature/SConscript index e4e42a27b36..f96d25b0fe0 100644 --- a/source/blender/editors/armature/SConscript +++ b/source/blender/editors/armature/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' ../../render/extern/include #/intern/guardedalloc #intern/bmfont' +incs += ' ../../render/extern/include #/intern/guardedalloc' incs += ' ../../gpu ../../makesrna #/intern/opennl/extern' env.BlenderLib ( 'bf_editors_armature', sources, Split(incs), [], libtype=['core'], priority=[44] ) diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c index ca0694a7ece..98f51a4015d 100644 --- a/source/blender/editors/armature/editarmature.c +++ b/source/blender/editors/armature/editarmature.c @@ -33,8 +33,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "DNA_action_types.h" #include "DNA_armature_types.h" #include "DNA_constraint_types.h" diff --git a/source/blender/editors/armature/reeb.c b/source/blender/editors/armature/reeb.c index 5a636672f29..7e6c84764ae 100644 --- a/source/blender/editors/armature/reeb.c +++ b/source/blender/editors/armature/reeb.c @@ -53,8 +53,6 @@ //#include "BDR_editobject.h" -#include "BMF_Api.h" - #include "ED_mesh.h" #include "ED_armature.h" //#include "BIF_interface.h" diff --git a/source/blender/editors/curve/Makefile b/source/blender/editors/curve/Makefile index b27749ce6fd..6b1f628f231 100644 --- a/source/blender/editors/curve/Makefile +++ b/source/blender/editors/curve/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_ELBEEM)/include diff --git a/source/blender/editors/curve/SConscript b/source/blender/editors/curve/SConscript index 92c982db611..3a1930899d3 100644 --- a/source/blender/editors/curve/SConscript +++ b/source/blender/editors/curve/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #/intern/guardedalloc #intern/bmfont ../../gpu' +incs += ' #/intern/guardedalloc ../../gpu' incs += ' ../../makesrna ../../render/extern/include #/intern/elbeem/extern' env.BlenderLib ( 'bf_editors_curve', sources, Split(incs), [], libtype=['core'], priority=[45] ) diff --git a/source/blender/editors/curve/editcurve.c b/source/blender/editors/curve/editcurve.c index 78b86ad7f32..c60007680ba 100644 --- a/source/blender/editors/curve/editcurve.c +++ b/source/blender/editors/curve/editcurve.c @@ -38,8 +38,6 @@ #include #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "BLI_blenlib.h" #include "BLI_arithb.h" #include "BLI_dynstr.h" diff --git a/source/blender/editors/gpencil/Makefile b/source/blender/editors/gpencil/Makefile index bb76c9c2b23..f4c1cd246f4 100644 --- a/source/blender/editors/gpencil/Makefile +++ b/source/blender/editors/gpencil/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_ELBEEM)/include diff --git a/source/blender/editors/gpencil/SConscript b/source/blender/editors/gpencil/SConscript index 6c47b2f69ff..af3cbdb901d 100644 --- a/source/blender/editors/gpencil/SConscript +++ b/source/blender/editors/gpencil/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #/intern/guardedalloc #intern/bmfont ../../gpu' +incs += ' #/intern/guardedalloc ../../gpu' incs += ' ../../makesrna ../../render/extern/include #/intern/elbeem/extern' env.BlenderLib ( 'bf_editors_gpencil', sources, Split(incs), [], libtype=['core'], priority=[45] ) diff --git a/source/blender/editors/gpencil/drawgpencil.c b/source/blender/editors/gpencil/drawgpencil.c index fd59539bb56..5c6294022ee 100644 --- a/source/blender/editors/gpencil/drawgpencil.c +++ b/source/blender/editors/gpencil/drawgpencil.c @@ -37,8 +37,6 @@ #include "IMB_imbuf.h" #include "IMB_imbuf_types.h" -#include "BMF_Api.h" - #include "BLI_arithb.h" #include "BLI_blenlib.h" @@ -907,8 +905,7 @@ static void gp_draw_data (bGPdata *gpd, int offsx, int offsy, int winx, int winy /* only draw it if view is wide enough (assume padding of 20 is enough for now) */ if (winx > (xmax + 20)) { - glRasterPos2i(winx-xmax, winy-20); - BMF_DrawString(G.fonts, printable); + BLF_draw_default(winx-xmax, winy-20, 0.0f, printable); } } diff --git a/source/blender/editors/gpencil/editaction_gpencil.c b/source/blender/editors/gpencil/editaction_gpencil.c index 28748d4a631..8be56dc416e 100644 --- a/source/blender/editors/gpencil/editaction_gpencil.c +++ b/source/blender/editors/gpencil/editaction_gpencil.c @@ -33,8 +33,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "BLI_arithb.h" #include "BLI_blenlib.h" diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c index a745e5f4084..d84b93267a6 100644 --- a/source/blender/editors/gpencil/gpencil_edit.c +++ b/source/blender/editors/gpencil/gpencil_edit.c @@ -33,8 +33,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "IMB_imbuf.h" #include "IMB_imbuf_types.h" diff --git a/source/blender/editors/interface/Makefile b/source/blender/editors/interface/Makefile index fa9550041c5..dfc8187de49 100644 --- a/source/blender/editors/interface/Makefile +++ b/source/blender/editors/interface/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I../../windowmanager @@ -48,7 +47,6 @@ CPPFLAGS += -I../../blenlib CPPFLAGS += -I../../makesdna CPPFLAGS += -I../../makesrna CPPFLAGS += -I../../imbuf -CPPFLAGS += -I../../ftfont CPPFLAGS += -I../../blenfont # own include diff --git a/source/blender/editors/interface/SConscript b/source/blender/editors/interface/SConscript index fa89cd4891c..bac3742c12f 100644 --- a/source/blender/editors/interface/SConscript +++ b/source/blender/editors/interface/SConscript @@ -7,14 +7,12 @@ for source in env.Glob('*_api.c'): sources.remove(source) incs = '../include ../../blenlib ../../blenfont ../../blenkernel ../../makesdna ../../imbuf' -incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc #intern/bmfont' +incs += ' ../../makesrna ../../windowmanager #/intern/guardedalloc' incs += ' #/extern/glew/include' defs = [] if env['WITH_BF_INTERNATIONAL']: - incs += ' ../../ftfont' defs.append('INTERNATIONAL') - defs.append('FTGL_STATIC_LIBRARY') env.BlenderLib ( 'bf_editors_interface', sources, Split(incs), Split(defs), libtype=['core'], priority=[110] ) diff --git a/source/blender/editors/interface/interface_style.c b/source/blender/editors/interface/interface_style.c index 8c07a6ea0ab..d0361174e70 100644 --- a/source/blender/editors/interface/interface_style.c +++ b/source/blender/editors/interface/interface_style.c @@ -171,11 +171,7 @@ void uiStyleFontDraw(uiFontStyle *fs, rcti *rect, char *str) xofs= rect->xmax - rect->xmin - BLF_width(str); /* clip is very strict, so we give it some space */ - if (BLF_type_get() == BLF_FONT_INTERNAL) - BLF_clipping(rect->xmin-4, rect->ymin-4, rect->xmax+8, rect->ymax+4); - else - BLF_clipping(rect->xmin-4, rect->ymin-4, rect->xmax+4, rect->ymax+4); - + BLF_clipping(rect->xmin-4, rect->ymin-4, rect->xmax+4, rect->ymax+4); BLF_enable(BLF_CLIPPING); if(fs->shadow) @@ -240,18 +236,13 @@ void uiStyleInit(void) font->blf_id= BLF_load_mem("default", (unsigned char*)datatoc_bfont_ttf, datatoc_bfont_ttf_size); } - if (font->blf_id == -1) { - /* when all fail, we go back to the internal font. */ - font->blf_id= BLF_load_mem("helv", NULL, 0); - } - if (font->blf_id == -1) printf("uiStyleInit error, no fonts available\n"); else { BLF_set(font->blf_id); /* ? just for speed to initialize? - * Yes but only if we used the freetype2 library, - * this build the glyph cache and create the texture. + * Yes, this build the glyph cache and create + * the texture. */ BLF_size(11, U.dpi); BLF_size(12, U.dpi); diff --git a/source/blender/editors/interface/view2d.c b/source/blender/editors/interface/view2d.c index 3b503f00fd3..6107aa4ccc8 100644 --- a/source/blender/editors/interface/view2d.c +++ b/source/blender/editors/interface/view2d.c @@ -49,8 +49,6 @@ #include "ED_screen.h" -#include "BMF_Api.h" - #include "UI_interface.h" #include "UI_resources.h" #include "UI_view2d.h" @@ -1391,8 +1389,7 @@ static void scroll_printstr(View2DScrollers *scrollers, Scene *scene, float x, f } /* draw it */ - glRasterPos2f(x, y); - BMF_DrawString(G.fonts, str); // XXX check this again when new text-drawing api is done + BLF_draw_default(x, y, 0.0f, str); } /* local defines for scrollers drawing */ diff --git a/source/blender/editors/mesh/Makefile b/source/blender/editors/mesh/Makefile index 60b1fa1c329..650771519cd 100644 --- a/source/blender/editors/mesh/Makefile +++ b/source/blender/editors/mesh/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_ELBEEM)/include diff --git a/source/blender/editors/mesh/SConscript b/source/blender/editors/mesh/SConscript index e99351e1a70..df1f297698d 100644 --- a/source/blender/editors/mesh/SConscript +++ b/source/blender/editors/mesh/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #/intern/guardedalloc #intern/bmfont ../../gpu' +incs += ' #/intern/guardedalloc ../../gpu' incs += ' ../../makesrna ../../render/extern/include #/intern/elbeem/extern' env.BlenderLib ( 'bf_editors_mesh', sources, Split(incs), [], libtype=['core'], priority=[45] ) diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 90b26d0f425..b6e679468e0 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -82,8 +82,6 @@ editmesh_tool.c: UI called tools for editmesh, geometry changes here, otherwise #include "WM_api.h" #include "WM_types.h" -#include "BMF_Api.h" - #include "ED_mesh.h" #include "ED_view3d.h" #include "ED_util.h" diff --git a/source/blender/editors/object/Makefile b/source/blender/editors/object/Makefile index 9011f566bc6..c0312023bfd 100644 --- a/source/blender/editors/object/Makefile +++ b/source/blender/editors/object/Makefile @@ -37,7 +37,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I../../windowmanager diff --git a/source/blender/editors/object/SConscript b/source/blender/editors/object/SConscript index 5cd7a3b91af..3371e172a82 100644 --- a/source/blender/editors/object/SConscript +++ b/source/blender/editors/object/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc' -incs += ' #/intern/guardedalloc #intern/bmfont' +incs += ' #/intern/guardedalloc' incs += ' ../../makesrna ../../python' defs = [] diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index a7e2ce34443..68a2cf04692 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -120,8 +120,6 @@ #include "ED_util.h" #include "ED_view3d.h" -#include "BMF_Api.h" - #include "BIF_transform.h" #include "UI_interface.h" diff --git a/source/blender/editors/physics/Makefile b/source/blender/editors/physics/Makefile index bd2dbc65f91..a71ea9e2083 100644 --- a/source/blender/editors/physics/Makefile +++ b/source/blender/editors/physics/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_ELBEEM)/include diff --git a/source/blender/editors/physics/SConscript b/source/blender/editors/physics/SConscript index 241962442d4..5718ae0c217 100644 --- a/source/blender/editors/physics/SConscript +++ b/source/blender/editors/physics/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #/intern/guardedalloc #intern/bmfont ../../gpu' +incs += ' #/intern/guardedalloc ../../gpu' incs += ' ../../makesrna ../../render/extern/include #/intern/elbeem/extern' env.BlenderLib ( 'bf_editors_physics', sources, Split(incs), [], libtype=['core'], priority=[45] ) diff --git a/source/blender/editors/preview/Makefile b/source/blender/editors/preview/Makefile index 84514d73570..c44da6753f3 100644 --- a/source/blender/editors/preview/Makefile +++ b/source/blender/editors/preview/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_ELBEEM)/include diff --git a/source/blender/editors/preview/SConscript b/source/blender/editors/preview/SConscript index dcc80e8c626..922232822ff 100644 --- a/source/blender/editors/preview/SConscript +++ b/source/blender/editors/preview/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #/intern/guardedalloc #intern/bmfont ../../gpu' +incs += ' #/intern/guardedalloc ../../gpu' incs += ' ../../makesrna ../../render/extern/include #/intern/elbeem/extern' incs += ' ../../blenloader' diff --git a/source/blender/editors/screen/CMakeLists.txt b/source/blender/editors/screen/CMakeLists.txt index 42480f65268..4ed1e59a87f 100644 --- a/source/blender/editors/screen/CMakeLists.txt +++ b/source/blender/editors/screen/CMakeLists.txt @@ -33,7 +33,7 @@ SET(INC ../../windowmanager ../../editors/include ../../../../intern/guardedalloc ../../../../intern/memutil ../../blenlib ../../makesdna ../../makesrna ../../blenkernel - ../../include ../../../../intern/bmfont ../../imbuf + ../../include ../../imbuf ../../render/extern/include ../../../../intern/bsp/extern ../../radiosity/extern/include ../../../intern/decimation/extern ../../blenloader @@ -45,9 +45,7 @@ SET(INC ../../windowmanager ) IF(WITH_INTERNATIONAL) - SET(INC ${INC} ../../ftfont) ADD_DEFINITIONS(-DINTERNATIONAL) - ADD_DEFINITIONS(-DFTGL_STATIC_LIBRARY) ENDIF(WITH_INTERNATIONAL) IF(WITH_OPENEXR) diff --git a/source/blender/editors/screen/Makefile b/source/blender/editors/screen/Makefile index d18d15d00d9..cf6e692c304 100644 --- a/source/blender/editors/screen/Makefile +++ b/source/blender/editors/screen/Makefile @@ -37,7 +37,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include # not very neat.... CPPFLAGS += -I../../windowmanager @@ -49,6 +48,7 @@ CPPFLAGS += -I../../makesrna CPPFLAGS += -I../../imbuf CPPFLAGS += -I../../python CPPFLAGS += -I../../render/extern/include +CPPFLAGS += -I../../blenfont CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include # own include diff --git a/source/blender/editors/screen/SConscript b/source/blender/editors/screen/SConscript index c291533790a..d00c01a040c 100644 --- a/source/blender/editors/screen/SConscript +++ b/source/blender/editors/screen/SConscript @@ -6,7 +6,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../blenloader ../../windowmanager ../../python ../../makesrna' incs += ' ../../render/extern/include' -incs += ' #/intern/guardedalloc #/extern/glew/include #intern/bmfont' +incs += ' #/intern/guardedalloc #/extern/glew/include' defs = '' diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c index 9956b8eabcb..6b7b7a914f4 100644 --- a/source/blender/editors/screen/area.c +++ b/source/blender/editors/screen/area.c @@ -50,13 +50,12 @@ #include "BIF_gl.h" #include "BIF_glutil.h" +#include "BLF_api.h" #include "UI_interface.h" #include "UI_resources.h" #include "UI_view2d.h" -#include "BMF_Api.h" - #ifndef DISABLE_PYTHON #include "BPY_extern.h" #endif @@ -270,8 +269,7 @@ void ED_region_do_draw(bContext *C, ARegion *ar) glClear(GL_COLOR_BUFFER_BIT); UI_ThemeColor(TH_TEXT); - glRasterPos2i(20, 6); - BMF_DrawString(G.font, ar->headerstr); + BLF_draw_default(20, 6, 0.0f, ar->headerstr); } else if(at->draw) { at->draw(C, ar); diff --git a/source/blender/editors/sculpt_paint/Makefile b/source/blender/editors/sculpt_paint/Makefile index e810f7efbe4..9353116a4bc 100644 --- a/source/blender/editors/sculpt_paint/Makefile +++ b/source/blender/editors/sculpt_paint/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I$(NAN_ELBEEM)/include diff --git a/source/blender/editors/sculpt_paint/SConscript b/source/blender/editors/sculpt_paint/SConscript index 3e00453e049..01e1d80c24c 100644 --- a/source/blender/editors/sculpt_paint/SConscript +++ b/source/blender/editors/sculpt_paint/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' ../../render/extern/include #/intern/guardedalloc #intern/bmfont' +incs += ' ../../render/extern/include #/intern/guardedalloc' incs += ' ../../gpu ../../makesrna' env.BlenderLib ( 'bf_editors_sculpt_paint', sources, Split(incs), [], libtype=['core'], priority=[40] ) diff --git a/source/blender/editors/space_file/Makefile b/source/blender/editors/space_file/Makefile index 480a4ee3889..c8f2af9c2e8 100644 --- a/source/blender/editors/space_file/Makefile +++ b/source/blender/editors/space_file/Makefile @@ -37,7 +37,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include # not very neat.... CPPFLAGS += -I../../windowmanager diff --git a/source/blender/editors/space_file/SConscript b/source/blender/editors/space_file/SConscript index 8302d6eecef..699b988f50f 100644 --- a/source/blender/editors/space_file/SConscript +++ b/source/blender/editors/space_file/SConscript @@ -4,7 +4,7 @@ Import ('env') sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' -incs += ' ../../blenloader #intern/bmfont ../../makesrna' +incs += ' ../../blenloader ../../makesrna' incs += ' ../../render/extern/include ' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' diff --git a/source/blender/editors/space_file/file_draw.c b/source/blender/editors/space_file/file_draw.c index 84e0f264275..dafb254f4bc 100644 --- a/source/blender/editors/space_file/file_draw.c +++ b/source/blender/editors/space_file/file_draw.c @@ -37,7 +37,6 @@ #include "BIF_gl.h" #include "BIF_glutil.h" -#include "BMF_Api.h" #include "BKE_colortools.h" #include "BKE_context.h" diff --git a/source/blender/editors/space_node/Makefile b/source/blender/editors/space_node/Makefile index 233572dbfb1..60f81255a74 100644 --- a/source/blender/editors/space_node/Makefile +++ b/source/blender/editors/space_node/Makefile @@ -37,7 +37,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include # not very neat.... CPPFLAGS += -I../../windowmanager diff --git a/source/blender/editors/space_node/SConscript b/source/blender/editors/space_node/SConscript index babd8dc9080..ad57970950d 100644 --- a/source/blender/editors/space_node/SConscript +++ b/source/blender/editors/space_node/SConscript @@ -4,7 +4,7 @@ Import ('env') sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../makesrna ../../imbuf' -incs += ' ../../nodes #intern/bmfont ../../render/extern/include' +incs += ' ../../nodes ../../render/extern/include' incs += ' ../../windowmanager #intern/guardedalloc #extern/glew/include' defs = [] cf = [] diff --git a/source/blender/editors/space_node/drawnode.c b/source/blender/editors/space_node/drawnode.c index 25693009bf2..9c2cf5dc5dd 100644 --- a/source/blender/editors/space_node/drawnode.c +++ b/source/blender/editors/space_node/drawnode.c @@ -71,8 +71,6 @@ #include "BIF_gl.h" #include "BIF_glutil.h" -#include "BMF_Api.h" - #include "MEM_guardedalloc.h" #include "ED_node.h" diff --git a/source/blender/editors/space_node/node_draw.c b/source/blender/editors/space_node/node_draw.c index ab6d3c245f1..0670dd9e01f 100644 --- a/source/blender/editors/space_node/node_draw.c +++ b/source/blender/editors/space_node/node_draw.c @@ -68,7 +68,6 @@ #include "BIF_gl.h" #include "BIF_glutil.h" -#include "BMF_Api.h" #include "WM_api.h" #include "WM_types.h" diff --git a/source/blender/editors/space_outliner/outliner.c b/source/blender/editors/space_outliner/outliner.c index ae986d71258..7104fad1767 100644 --- a/source/blender/editors/space_outliner/outliner.c +++ b/source/blender/editors/space_outliner/outliner.c @@ -3988,6 +3988,9 @@ static void outliner_draw_tree(Scene *scene, ARegion *ar, SpaceOops *soops) float col[4]; #if 0 // XXX was #ifdef INTERNATIONAL + /* Maybe the INTERNATIONAL was really for check about freetype2 ? + * anyway I think that we can remove this now - Diego + */ FTF_SetFontSize('l'); BIF_SetScale(1.0); #endif diff --git a/source/blender/editors/space_sequencer/Makefile b/source/blender/editors/space_sequencer/Makefile index c04202cba73..80699db4baa 100644 --- a/source/blender/editors/space_sequencer/Makefile +++ b/source/blender/editors/space_sequencer/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include # not very neat.... CPPFLAGS += -I../../windowmanager @@ -49,6 +48,7 @@ CPPFLAGS += -I../../makesdna CPPFLAGS += -I../../makesrna CPPFLAGS += -I../../imbuf CPPFLAGS += -I../../python +CPPFLAGS += -I../../blenfont CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include # own include diff --git a/source/blender/editors/space_sequencer/SConscript b/source/blender/editors/space_sequencer/SConscript index 1794ef29257..8a8c4963003 100644 --- a/source/blender/editors/space_sequencer/SConscript +++ b/source/blender/editors/space_sequencer/SConscript @@ -5,6 +5,6 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #intern/bmfont ../../makesrna' +incs += ' ../../makesrna' env.BlenderLib ( 'bf_editors_space_sequencer', sources, Split(incs), [], libtype=['core'], priority=[100] ) diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c index e71abec8e4b..5e07689f536 100644 --- a/source/blender/editors/space_sequencer/sequencer_draw.c +++ b/source/blender/editors/space_sequencer/sequencer_draw.c @@ -30,8 +30,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "BLI_blenlib.h" #include "BLI_arithb.h" @@ -57,6 +55,7 @@ #include "BIF_gl.h" #include "BIF_glutil.h" +#include "BLF_api.h" #include "ED_anim_api.h" #include "ED_space_api.h" @@ -404,12 +403,14 @@ static void draw_seq_handle(SpaceSeq *sseq, Sequence *seq, float pixelx, short d cpack(0xFFFFFF); if (direction == SEQ_LEFTHANDLE) { sprintf(str, "%d", seq->startdisp); - glRasterPos3f(rx1, y1-0.15, 0.0); + x1= rx1; + y1 -= 0.15; } else { sprintf(str, "%d", seq->enddisp - 1); - glRasterPos3f((x2-BMF_GetStringWidth(G.fonts, str)*pixelx), y2+0.05, 0.0); + x1= x2 - BLF_width_default(str) * pixelx; + y1= y2 + 0.05; } - BMF_DrawString(G.fonts, str); + BLF_draw_default(x1, y1, 0.0f, str); } } @@ -572,8 +573,9 @@ static void draw_seq_text(View2D *v2d, Sequence *seq, float x1, float x2, float } strp= str; - - while( (len= BMF_GetStringWidth(G.font, strp)) > size) { + // XXX + /* The correct thing is used a Styla and set the clipping region. */ + while( (len= BLF_width_default(strp)) > size) { if(len < 10) break; if(strp[1]==0) break; strp++; @@ -590,8 +592,7 @@ static void draw_seq_text(View2D *v2d, Sequence *seq, float x1, float x2, float }else{ cpack(0); } - glRasterPos3f(x1, y1+SEQ_STRIP_OFSBOTTOM, 0.0); - BMF_DrawString(G.font, strp); + BLF_draw_default(x1, y1+SEQ_STRIP_OFSBOTTOM, 0.0, strp); } /* draws a shaded strip, made from gradient + flat color + gradient */ diff --git a/source/blender/editors/space_text/SConscript b/source/blender/editors/space_text/SConscript index 3d5ccc318e1..09ba961bfce 100644 --- a/source/blender/editors/space_text/SConscript +++ b/source/blender/editors/space_text/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') defs = [] incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' #/intern/bmfont ../../python ../../makesrna ../../blenfont' +incs += ' ../../python ../../makesrna ../../blenfont' if not env['WITH_BF_PYTHON']: defs.append('DISABLE_PYTHON') diff --git a/source/blender/editors/space_text/text_intern.h b/source/blender/editors/space_text/text_intern.h index 50109ba8c42..259811aee0f 100644 --- a/source/blender/editors/space_text/text_intern.h +++ b/source/blender/editors/space_text/text_intern.h @@ -33,7 +33,6 @@ struct ARegion; struct ARegionType; struct bContext; -struct BMF_Font; struct ReportList; struct ScrArea; struct SpaceText; diff --git a/source/blender/editors/space_view3d/Makefile b/source/blender/editors/space_view3d/Makefile index 442ab502e65..dd4eab89411 100644 --- a/source/blender/editors/space_view3d/Makefile +++ b/source/blender/editors/space_view3d/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include # not very neat.... CPPFLAGS += -I../../windowmanager @@ -51,6 +50,7 @@ CPPFLAGS += -I../../python CPPFLAGS += -I../../gpu CPPFLAGS += -I../../makesrna CPPFLAGS += -I../../render/extern/include +CPPFLAGS += -I../../blenfont CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include # own include diff --git a/source/blender/editors/space_view3d/SConscript b/source/blender/editors/space_view3d/SConscript index c9b29f61e44..b771095c781 100644 --- a/source/blender/editors/space_view3d/SConscript +++ b/source/blender/editors/space_view3d/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' ../../render/extern/include #/intern/guardedalloc #intern/bmfont' -incs += ' ../../gpu ../../makesrna' +incs += ' ../../render/extern/include #/intern/guardedalloc' +incs += ' ../../gpu ../../makesrna ../../blenfont' env.BlenderLib ( 'bf_editors_space_view3d', sources, Split(incs), [], libtype=['core'], priority=[40] ) diff --git a/source/blender/editors/space_view3d/drawarmature.c b/source/blender/editors/space_view3d/drawarmature.c index 5d130cee48d..dfdd70b11e7 100644 --- a/source/blender/editors/space_view3d/drawarmature.c +++ b/source/blender/editors/space_view3d/drawarmature.c @@ -37,8 +37,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "DNA_action_types.h" #include "DNA_armature_types.h" #include "DNA_constraint_types.h" @@ -74,6 +72,7 @@ #include "WM_api.h" #include "WM_types.h" +#include "BLF_api.h" #include "UI_resources.h" @@ -1806,9 +1805,8 @@ static void draw_pose_channels(Scene *scene, View3D *v3d, RegionView3D *rv3d, Ba /* Draw names of bone */ if (arm->flag & ARM_DRAWNAMES) { VecMidf(vec, pchan->pose_head, pchan->pose_tail); - glRasterPos3fv(vec); - BMF_DrawString(G.font, " "); - BMF_DrawString(G.font, pchan->name); + BLF_draw_default(vec[0], vec[1], vec[2], " "); + BLF_draw_default(vec[0] + BLF_width_default(" "), vec[1], vec[2], pchan->name); } /* Draw additional axes on the bone tail */ @@ -1993,8 +1991,8 @@ static void draw_ebones(View3D *v3d, RegionView3D *rv3d, Object *ob, int dt) if (arm->flag & ARM_DRAWNAMES) { VecMidf(vec, eBone->head, eBone->tail); glRasterPos3fv(vec); - BMF_DrawString(G.font, " "); - BMF_DrawString(G.font, eBone->name); + BLF_draw_default(vec[0], vec[1], vec[2], " "); + BLF_draw_default(vec[0] + BLF_width_default(" "), vec[1], vec[2], eBone->name); } /* Draw additional axes */ if (arm->flag & ARM_DRAWAXES) { @@ -2155,15 +2153,13 @@ static void draw_pose_paths(Scene *scene, View3D *v3d, RegionView3D *rv3d, Objec /* only draw framenum if several consecutive highlighted points don't occur on same point */ if (a == 0) { - glRasterPos3fv(fp); sprintf(str, " %d\n", (a+sfra)); - BMF_DrawString(G.font, str); + BLF_draw_default(fp[0], fp[1], fp[2], str); } else if ((a > stepsize) && (a < len-stepsize)) { if ((VecEqual(fp, fp-(stepsize*3))==0) || (VecEqual(fp, fp+(stepsize*3))==0)) { - glRasterPos3fv(fp); sprintf(str, " %d\n", (a+sfra)); - BMF_DrawString(G.font, str); + BLF_draw_default(fp[0], fp[1], fp[2], str); } } } @@ -2205,9 +2201,8 @@ static void draw_pose_paths(Scene *scene, View3D *v3d, RegionView3D *rv3d, Objec if (ak->cfra == (a+sfra)) { char str[32]; - glRasterPos3fv(fp); sprintf(str, " %d\n", (a+sfra)); - BMF_DrawString(G.font, str); + BLF_draw_default(fp[0], fp[1], fp[2], str); } } } diff --git a/source/blender/editors/space_view3d/drawobject.c b/source/blender/editors/space_view3d/drawobject.c index 10edd4eccb5..3725fc24b6c 100644 --- a/source/blender/editors/space_view3d/drawobject.c +++ b/source/blender/editors/space_view3d/drawobject.c @@ -34,8 +34,6 @@ #include "MEM_guardedalloc.h" -#include "BMF_Api.h" - #include "IMB_imbuf.h" @@ -107,6 +105,7 @@ #include "UI_interface_icons.h" #include "WM_api.h" +#include "BLF_api.h" #include "view3d_intern.h" // own include @@ -361,16 +360,15 @@ void drawaxes(float size, int flag, char drawtype) glEnd(); v2[axis]+= size*0.125; - glRasterPos3fv(v2); // patch for 3d cards crashing on glSelect for text drawing (IBM) if((flag & DRAW_PICKING) == 0) { if (axis==0) - BMF_DrawString(G.font, "x"); + BLF_draw_default(v2[0], v2[1], v2[2], "x"); else if (axis==1) - BMF_DrawString(G.font, "y"); + BLF_draw_default(v2[0], v2[1], v2[2], "y"); else - BMF_DrawString(G.font, "z"); + BLF_draw_default(v2[0], v2[1], v2[2], "z"); } } break; @@ -1778,7 +1776,7 @@ static void draw_em_measure_stats(View3D *v3d, RegionView3D *rv3d, Object *ob, E Mesh *me= ob->data; EditEdge *eed; EditFace *efa; - float v1[3], v2[3], v3[3], v4[3]; + float v1[3], v2[3], v3[3], v4[3], x, y, z; float fvec[3]; char val[32]; /* Stores the measurement display text here */ char conv_float[5]; /* Use a float conversion matching the grid size */ @@ -1818,7 +1816,9 @@ static void draw_em_measure_stats(View3D *v3d, RegionView3D *rv3d, Object *ob, E VECCOPY(v1, eed->v1->co); VECCOPY(v2, eed->v2->co); - glRasterPos3f( 0.5*(v1[0]+v2[0]), 0.5*(v1[1]+v2[1]), 0.5*(v1[2]+v2[2])); + x= 0.5*(v1[0]+v2[0]); + y= 0.5*(v1[1]+v2[1]); + z= 0.5*(v1[2]+v2[2]); if(v3d->flag & V3D_GLOBAL_STATS) { Mat4MulVecfl(ob->obmat, v1); @@ -1826,7 +1826,7 @@ static void draw_em_measure_stats(View3D *v3d, RegionView3D *rv3d, Object *ob, E } sprintf(val, conv_float, VecLenf(v1, v2)); - BMF_DrawString( G.fonts, val); + BLF_draw_default(x, y, z, val); } } } @@ -1861,8 +1861,7 @@ static void draw_em_measure_stats(View3D *v3d, RegionView3D *rv3d, Object *ob, E area = AreaT3Dfl(v1, v2, v3); sprintf(val, conv_float, area); - glRasterPos3fv(efa->cent); - BMF_DrawString( G.fonts, val); + BLF_draw_default(efa->cent[0], efa->cent[1], efa->cent[2], val); } } } @@ -1904,15 +1903,13 @@ static void draw_em_measure_stats(View3D *v3d, RegionView3D *rv3d, Object *ob, E /* Vec 1 */ sprintf(val,"%.3f", VecAngle3(v4, v1, v2)); VecLerpf(fvec, efa->cent, efa->v1->co, 0.8); - glRasterPos3fv(fvec); - BMF_DrawString( G.fonts, val); + BLF_draw_default(efa->cent[0], efa->cent[1], efa->cent[2], val); } if( (e1->f & e2->f & SELECT) || (G.moving && (efa->v2->f & SELECT)) ) { /* Vec 2 */ sprintf(val,"%.3f", VecAngle3(v1, v2, v3)); VecLerpf(fvec, efa->cent, efa->v2->co, 0.8); - glRasterPos3fv(fvec); - BMF_DrawString( G.fonts, val); + BLF_draw_default(fvec[0], fvec[1], fvec[2], val); } if( (e2->f & e3->f & SELECT) || (G.moving && (efa->v3->f & SELECT)) ) { /* Vec 3 */ @@ -1921,16 +1918,14 @@ static void draw_em_measure_stats(View3D *v3d, RegionView3D *rv3d, Object *ob, E else sprintf(val,"%.3f", VecAngle3(v2, v3, v1)); VecLerpf(fvec, efa->cent, efa->v3->co, 0.8); - glRasterPos3fv(fvec); - BMF_DrawString( G.fonts, val); + BLF_draw_default(fvec[0], fvec[1], fvec[2], val); } /* Vec 4 */ if(efa->v4) { if( (e3->f & e4->f & SELECT) || (G.moving && (efa->v4->f & SELECT)) ) { sprintf(val,"%.3f", VecAngle3(v3, v4, v1)); VecLerpf(fvec, efa->cent, efa->v4->co, 0.8); - glRasterPos3fv(fvec); - BMF_DrawString( G.fonts, val); + BLF_draw_default(fvec[0], fvec[1], fvec[2], val); } } } @@ -3257,9 +3252,8 @@ static void draw_new_particle_system(Scene *scene, View3D *v3d, RegionView3D *rv if(part->draw&PART_DRAW_NUM && !(G.f & G_RENDER_SHADOW)){ /* in path drawing state.co is the end point */ - glRasterPos3f(state.co[0], state.co[1], state.co[2]); sprintf(val," %i",a); - BMF_DrawString(G.font, val); + BLF_draw_default(state.co[0], state.co[1], state.co[2], val); } } } @@ -3574,9 +3568,8 @@ static void draw_particle_edit(Scene *scene, View3D *v3d, RegionView3D *rv3d, Ob for(k=0, key=edit->keys[i]+k; ktotkey; k++, key++){ if(key->flag & PEK_HIDE) continue; - glRasterPos3fv(key->world_co); sprintf(val," %.1f",*key->time); - BMF_DrawString(G.font, val); + BLF_draw_default(key->world_co[0], key->world_co[1], key->world_co[2], val); } } } @@ -3598,9 +3591,8 @@ static void draw_particle_edit(Scene *scene, View3D *v3d, RegionView3D *rv3d, Ob glEnd(); if((pset->flag & PE_SHOW_TIME) && !(G.f & G_RENDER_SHADOW)){ - glRasterPos3fv(key->world_co); sprintf(val," %.1f",*key->time); - BMF_DrawString(G.font, val); + BLF_draw_default(key->world_co[0], key->world_co[1], key->world_co[2], val); } } } @@ -4625,13 +4617,12 @@ void drawRBpivot(bRigidBodyJointConstraint *data) glVertex3fv(v1); glVertex3fv(v); glEnd(); - glRasterPos3fv(v); if (axis==0) - BMF_DrawString(G.font, "px"); + BLF_draw_default(v[0], v[1], v[2], "px"); else if (axis==1) - BMF_DrawString(G.font, "py"); + BLF_draw_default(v[0], v[1], v[2], "py"); else - BMF_DrawString(G.font, "pz"); + BLF_draw_default(v[0], v[1], v[2], "pz"); } glLineWidth (1.0f); setlinestyle(0); @@ -5051,10 +5042,8 @@ void draw_object(Scene *scene, ARegion *ar, View3D *v3d, Base *base, int flag) /* but, we also dont draw names for sets or duplicators */ if(flag == 0) { if(v3d->zbuf) glDisable(GL_DEPTH_TEST); - glRasterPos3f(0.0, 0.0, 0.0); - - BMF_DrawString(G.font, " "); - BMF_DrawString(G.font, ob->id.name+2); + BLF_draw_default(0.0, 0.0, 0.0, " "); + BLF_draw_default(0.0 + BLF_width_default(" "), 0.0, 0.0, ob->id.name+2); if(v3d->zbuf) glEnable(GL_DEPTH_TEST); } } diff --git a/source/blender/editors/space_view3d/view3d_draw.c b/source/blender/editors/space_view3d/view3d_draw.c index cb67a1fc9aa..bbf0279692a 100644 --- a/source/blender/editors/space_view3d/view3d_draw.c +++ b/source/blender/editors/space_view3d/view3d_draw.c @@ -69,9 +69,9 @@ #include "BIF_gl.h" #include "BIF_glutil.h" -#include "BMF_Api.h" #include "WM_api.h" +#include "BLF_api.h" #include "ED_armature.h" #include "ED_keyframing.h" @@ -558,8 +558,7 @@ static void draw_view_axis(RegionView3D *rv3d) dy = vec[1] * k; fdrawline(start, start + ydisp, start + dx, start + dy + ydisp); if (fabs(dx) > toll || fabs(dy) > toll) { - glRasterPos2i(start + dx + 2, start + dy + ydisp + 2); - BMF_DrawString(G.fonts, "x"); + BLF_draw_default(start + dx + 2, start + dy + ydisp + 2, 0.0f, "x"); } /* Y */ @@ -579,8 +578,7 @@ static void draw_view_axis(RegionView3D *rv3d) dy = vec[1] * k; fdrawline(start, start + ydisp, start + dx, start + dy + ydisp); if (fabs(dx) > toll || fabs(dy) > toll) { - glRasterPos2i(start + dx + 2, start + dy + ydisp + 2); - BMF_DrawString(G.fonts, "y"); + BLF_draw_default(start + dx + 2, start + dy + ydisp + 2, 0.0f, "y"); } /* Z */ @@ -600,8 +598,7 @@ static void draw_view_axis(RegionView3D *rv3d) dy = vec[1] * k; fdrawline(start, start + ydisp, start + dx, start + dy + ydisp); if (fabs(dx) > toll || fabs(dy) > toll) { - glRasterPos2i(start + dx + 2, start + dy + ydisp + 2); - BMF_DrawString(G.fonts, "z"); + BLF_draw_default(start + dx + 2, start + dy + ydisp + 2, 0.0f, "z"); } /* restore line-width */ @@ -693,8 +690,7 @@ static void draw_viewport_name(ARegion *ar, View3D *v3d) if (printable) { UI_ThemeColor(TH_TEXT_HI); - glRasterPos2i(10, ar->winy-20); - BMF_DrawString(G.fonts, printable); + BLF_draw_default(10, ar->winy-20, 0.0f, printable); } if (v3d->localview) { @@ -799,7 +795,7 @@ static void draw_selected_name(Scene *scene, Object *ob, View3D *v3d) } /* colour depends on whether there is a keyframe */ - if (id_frame_has_keyframe((ID *)ob, /*frame_to_float(scene, CFRA)*/(float)(CFRA), v3d->keyflags)) + if (id_frame_has_keyframe((ID *)ob, /*frame_to_float(scene, CFRA)*/(float)(CFRA), v3d->keyflags)) UI_ThemeColor(TH_VERTEX_SELECT); else UI_ThemeColor(TH_TEXT_HI); @@ -817,9 +813,8 @@ static void draw_selected_name(Scene *scene, Object *ob, View3D *v3d) if (U.uiflag & USER_SHOW_ROTVIEWICON) offset = 14 + (U.rvisize * 2); - - glRasterPos2i(offset, 10); - BMF_DrawString(G.fonts, info); + + BLF_draw_default(offset, 10, 0.0f, info); } static void view3d_get_viewborder_size(Scene *scene, ARegion *ar, float size_r[2]) @@ -999,9 +994,7 @@ static void drawviewborder(Scene *scene, ARegion *ar, View3D *v3d) /* camera name - draw in highlighted text color */ if (ca && (ca->flag & CAM_SHOWNAME)) { UI_ThemeColor(TH_TEXT_HI); - glRasterPos2f(x1, y1-15); - - BMF_DrawString(G.font, v3d->camera->id.name+2); + BLF_draw_default(x1, y1-15, 0.0f, v3d->camera->id.name+2); UI_ThemeColor(TH_WIRE); } diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c index fba8e0c4eb7..24d211d81ab 100644 --- a/source/blender/editors/space_view3d/view3d_header.c +++ b/source/blender/editors/space_view3d/view3d_header.c @@ -92,8 +92,6 @@ #include "UI_resources.h" #include "UI_view2d.h" -#include "BMF_Api.h" - #include "view3d_intern.h" diff --git a/source/blender/editors/transform/Makefile b/source/blender/editors/transform/Makefile index 36758190b52..bc3e08a2ae8 100644 --- a/source/blender/editors/transform/Makefile +++ b/source/blender/editors/transform/Makefile @@ -38,7 +38,6 @@ CFLAGS += $(LEVEL_1_C_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include CPPFLAGS += -I../../windowmanager diff --git a/source/blender/editors/transform/SConscript b/source/blender/editors/transform/SConscript index 2c44204afa9..b2dee8c3358 100644 --- a/source/blender/editors/transform/SConscript +++ b/source/blender/editors/transform/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.c') incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' -incs += ' ../../render/extern/include #/intern/guardedalloc #intern/bmfont' +incs += ' ../../render/extern/include #/intern/guardedalloc' incs += ' ../../gpu ../../makesrna' env.BlenderLib ( 'bf_editors_transform', sources, Split(incs), [], libtype=['core'], priority=[40] ) \ No newline at end of file diff --git a/source/blender/nodes/CMakeLists.txt b/source/blender/nodes/CMakeLists.txt index 1f76cd0b424..a4d5b0f0ed2 100644 --- a/source/blender/nodes/CMakeLists.txt +++ b/source/blender/nodes/CMakeLists.txt @@ -55,9 +55,5 @@ ELSE(WITH_PYTHON) ADD_DEFINITIONS(-DDISABLE_PYTHON) ENDIF(WITH_PYTHON) -IF(WITH_INTERNATIONAL) - ADD_DEFINITIONS(-DWITH_FREETYPE2) -ENDIF(WITH_INTERNATIONAL) - BLENDERLIB(bf_nodes "${SRC}" "${INC}") diff --git a/source/blender/nodes/SConscript b/source/blender/nodes/SConscript index a9f303c8dd3..164e30c7d05 100644 --- a/source/blender/nodes/SConscript +++ b/source/blender/nodes/SConscript @@ -27,9 +27,6 @@ if env['WITH_BF_PYTHON']: else: defs.append('DISABLE_PYTHON') -if env['WITH_BF_INTERNATIONAL']: - defs.append('WITH_FREETYPE2') - if env['WITH_BF_OPENEXR']: defs.append('WITH_OPENEXR') diff --git a/source/blender/python/CMakeLists.txt b/source/blender/python/CMakeLists.txt index b94ae8749df..d15970e1df4 100644 --- a/source/blender/python/CMakeLists.txt +++ b/source/blender/python/CMakeLists.txt @@ -47,8 +47,3 @@ ENDIF(WITH_FFMPEG) ADD_DEFINITIONS(-DWITH_CCGSUBSURF) BLENDERLIB(bf_python "${SRC}" "${INC}") - -IF(WITH_INTERNATIONAL) - ADD_DEFINITIONS(-DWITH_FREETYPE2) -ENDIF(WITH_INTERNATIONAL) - diff --git a/source/blender/python/intern/Makefile b/source/blender/python/intern/Makefile index ea08ecac945..3e28f5aac31 100644 --- a/source/blender/python/intern/Makefile +++ b/source/blender/python/intern/Makefile @@ -42,7 +42,6 @@ CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION) # PreProcessor stuff CPPFLAGS += -I$(NAN_GHOST)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include $(NAN_SDLCFLAGS) # modules diff --git a/source/blender/windowmanager/CMakeLists.txt b/source/blender/windowmanager/CMakeLists.txt index f9dd6a19fb7..088bdc99687 100644 --- a/source/blender/windowmanager/CMakeLists.txt +++ b/source/blender/windowmanager/CMakeLists.txt @@ -30,7 +30,7 @@ SET(INC . ../editors/include ../../../intern/guardedalloc ../../../intern/memutil ../blenlib ../makesdna ../makesrna ../blenkernel - ../include ../../../intern/bmfont ../imbuf ../render/extern/include + ../include ../imbuf ../render/extern/include ../../../intern/bsp/extern ../radiosity/extern/include ../../../intern/decimation/extern ../blenloader ../../kernel/gen_system ../../../intern/SoundSystem ../readstreamglue @@ -43,9 +43,7 @@ SET(INC . ) IF(WITH_INTERNATIONAL) - SET(INC ${INC} ../ftfont) ADD_DEFINITIONS(-DINTERNATIONAL) - ADD_DEFINITIONS(-DFTGL_STATIC_LIBRARY) ENDIF(WITH_INTERNATIONAL) IF(WITH_OPENEXR) diff --git a/source/blender/windowmanager/SConscript b/source/blender/windowmanager/SConscript index 862235d7b4b..91635904524 100644 --- a/source/blender/windowmanager/SConscript +++ b/source/blender/windowmanager/SConscript @@ -8,10 +8,10 @@ sources = env.Glob('intern/*.c') incs = '. ../editors/include ../python ../makesdna ../blenlib ../blenkernel' incs += ' ../nodes ../imbuf ../blenloader ../render/extern/include' -incs += ' ../ftfont ../radiosity/extern/include ../../kernel/gen_system' +incs += ' ../radiosity/extern/include ../../kernel/gen_system' incs += ' ../makesrna ../gpu ../blenfont' -incs += ' #/intern/guardedalloc #/intern/memutil #/intern/ghost #/intern/bmfont' +incs += ' #/intern/guardedalloc #/intern/memutil #/intern/ghost' incs += ' #/intern/elbeem #/extern/glew/include' defs = [] diff --git a/source/blender/windowmanager/intern/Makefile b/source/blender/windowmanager/intern/Makefile index 0bf161e3250..80ae58f9398 100644 --- a/source/blender/windowmanager/intern/Makefile +++ b/source/blender/windowmanager/intern/Makefile @@ -43,7 +43,6 @@ CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION) # PreProcessor stuff CPPFLAGS += -I$(NAN_GHOST)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_ELBEEM)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include $(NAN_SDLCFLAGS) @@ -59,7 +58,6 @@ CPPFLAGS += -I../../imbuf CPPFLAGS += -I../../blenloader CPPFLAGS += -I../../gpu CPPFLAGS += -I../../render/extern/include -CPPFLAGS += -I../../ftfont CPPFLAGS += -I../../radiosity/extern/include CPPFLAGS += -I../../../kernel/gen_system CPPFLAGS += -I../../blenfont diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c index d394a4d6eee..adbc43e439d 100644 --- a/source/blender/windowmanager/intern/wm_init_exit.c +++ b/source/blender/windowmanager/intern/wm_init_exit.c @@ -54,8 +54,6 @@ #include "BKE_utildefines.h" #include "BKE_packedFile.h" -#include "BMF_Api.h" - #include "BLI_blenlib.h" #include "RE_pipeline.h" /* RE_ free stuff */ @@ -120,7 +118,7 @@ void WM_init(bContext *C) ED_file_init(); /* for fsmenu */ ED_init_node_butfuncs(); - BLF_init(); + BLF_init(11, U.dpi); BLF_lang_init(); init_builtin_keyingsets(); /* editors/animation/keyframing.c */ @@ -130,11 +128,6 @@ void WM_init(bContext *C) UI_init(); - /* goes away */ - G.font= BMF_GetFont(BMF_kHelvetica12); - G.fonts= BMF_GetFont(BMF_kHelvetica10); - G.fontss= BMF_GetFont(BMF_kHelveticaBold8); - // clear_matcopybuf(); /* XXX */ // glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt index 14263580c4a..fe0f741bb96 100644 --- a/source/creator/CMakeLists.txt +++ b/source/creator/CMakeLists.txt @@ -243,11 +243,8 @@ IF(UNIX) bf_guardedalloc blender_CTR bf_moto - bf_bmfont bf_windowmanager - bf_editors - bf_ftfont - extern_ftgl + bf_editors bf_blroutines bf_converter bf_dummy diff --git a/source/gameengine/BlenderRoutines/CMakeLists.txt b/source/gameengine/BlenderRoutines/CMakeLists.txt index e090a4b9c56..107ef9b4b87 100644 --- a/source/gameengine/BlenderRoutines/CMakeLists.txt +++ b/source/gameengine/BlenderRoutines/CMakeLists.txt @@ -7,7 +7,6 @@ SET(INC ../../../intern/string ../../../intern/guardedalloc ../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer - ../../../intern/bmfont ../../../source/gameengine/Converter ../../../source/blender/imbuf ../../../intern/ghost/include diff --git a/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp b/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp index 648ad79210e..b08eaf6e026 100644 --- a/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp +++ b/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp @@ -42,8 +42,6 @@ #include #include -#include "BMF_Api.h" - #include "GL/glew.h" #include "BL_Material.h" // MAXTEX @@ -148,8 +146,7 @@ void BL_print_gamedebug_line(char* text, int xco, int yco, int width, int height /* the actual drawing */ glColor3ub(255, 255, 255); - glRasterPos2s(xco, height-yco); - BMF_DrawString(G.fonts, text); + BLF_draw_default(xco, height-yco, 0.0f, text); glMatrixMode(GL_TEXTURE); glPopMatrix(); @@ -184,11 +181,9 @@ void BL_print_gamedebug_line_padded(char* text, int xco, int yco, int width, int /* draw in black first*/ glColor3ub(0, 0, 0); - glRasterPos2s(xco+1, height-yco-1); - BMF_DrawString(G.fonts, text); + BLF_draw_default(xco+1, height-yco-1, 0.0f, text); glColor3ub(255, 255, 255); - glRasterPos2s(xco, height-yco); - BMF_DrawString(G.fonts, text); + BLF_draw_default(xco, height-yco, 0.0f, text); glMatrixMode(GL_TEXTURE); glPopMatrix(); diff --git a/source/gameengine/BlenderRoutines/Makefile b/source/gameengine/BlenderRoutines/Makefile index 03a7a247727..3a2c30672cc 100644 --- a/source/gameengine/BlenderRoutines/Makefile +++ b/source/gameengine/BlenderRoutines/Makefile @@ -40,7 +40,6 @@ CPPFLAGS += -I$(NAN_SUMO)/include -I$(NAN_SOLID)/include CPPFLAGS += -I$(NAN_SOLID) CPPFLAGS += -I$(NAN_STRING)/include CPPFLAGS += -I$(NAN_MOTO)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_FUZZICS)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include CPPFLAGS += -I$(NAN_GLEW)/include diff --git a/source/gameengine/BlenderRoutines/SConscript b/source/gameengine/BlenderRoutines/SConscript index 020402e9bcd..684b80dceee 100644 --- a/source/gameengine/BlenderRoutines/SConscript +++ b/source/gameengine/BlenderRoutines/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.cpp') defs = [] incs = '. #source/kernel/gen_system #intern/string #intern/guardedalloc' -incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer #intern/bmfont' +incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer' incs += ' #source/gameengine/Converter #source/blender/imbuf' incs += ' #intern/ghost/include' incs += ' #intern/moto/include #source/gameengine/Ketsji #source/blender/blenlib' diff --git a/source/gameengine/Converter/CMakeLists.txt b/source/gameengine/Converter/CMakeLists.txt index a5219b9e759..44692241e6f 100644 --- a/source/gameengine/Converter/CMakeLists.txt +++ b/source/gameengine/Converter/CMakeLists.txt @@ -32,7 +32,6 @@ SET(INC ../../../intern/string ../../../intern/guardedalloc ../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer - ../../../intern/bmfont ../../../intern/SoundSystem ../../../intern/SoundSystem/include ../../../intern/SoundSystem/openal diff --git a/source/gameengine/Converter/SConscript b/source/gameengine/Converter/SConscript index 98b7c71bad2..af0d39771de 100644 --- a/source/gameengine/Converter/SConscript +++ b/source/gameengine/Converter/SConscript @@ -5,7 +5,7 @@ sources = env.Glob('*.cpp') defs = [] incs = '. #source/kernel/gen_system #intern/string #intern/guardedalloc' -incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer #intern/bmfont' +incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer' incs += ' #intern/SoundSystem #intern/SoundSystem/include #intern/SoundSystem/openal' incs += ' #intern/SoundSystem/dummy #intern/SoundSystem/intern #source/gameengine/Converter' incs += ' #source/gameengine/BlenderRoutines #source/blender/imbuf' diff --git a/source/gameengine/GamePlayer/common/CMakeLists.txt b/source/gameengine/GamePlayer/common/CMakeLists.txt index 0c6c4179e2d..ce1cd217f60 100644 --- a/source/gameengine/GamePlayer/common/CMakeLists.txt +++ b/source/gameengine/GamePlayer/common/CMakeLists.txt @@ -42,7 +42,6 @@ SET(INC ../../../../intern/string ../../../../intern/ghost ../../../../intern/guardedalloc - ../../../../intern/bmfont ../../../../intern/moto/include ../../../../intern/SoundSystem ../../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer diff --git a/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp b/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp index eafdb8a96bb..a036f9821a4 100644 --- a/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp +++ b/source/gameengine/GamePlayer/common/GPC_RenderTools.cpp @@ -29,8 +29,6 @@ #include "GL/glew.h" -#include "BMF_Api.h" - #include "DNA_scene_types.h" #include "RAS_IRenderTools.h" @@ -61,7 +59,7 @@ unsigned int GPC_RenderTools::m_numgllights; GPC_RenderTools::GPC_RenderTools() { - m_font = BMF_GetFont(BMF_kHelvetica10); +// XXX m_font = BMF_GetFont(BMF_kHelvetica10); glGetIntegerv(GL_MAX_LIGHTS, (GLint*) &m_numgllights); if (m_numgllights < 8) diff --git a/source/gameengine/GamePlayer/common/GPC_RenderTools.h b/source/gameengine/GamePlayer/common/GPC_RenderTools.h index 316860a7d43..478d8b1a3c5 100644 --- a/source/gameengine/GamePlayer/common/GPC_RenderTools.h +++ b/source/gameengine/GamePlayer/common/GPC_RenderTools.h @@ -38,8 +38,6 @@ #include "RAS_IRenderTools.h" -#include "BMF_Api.h" - struct KX_ClientObjectInfo; class KX_RayCast; @@ -57,7 +55,7 @@ class GPC_RenderTools : public RAS_IRenderTools void *m_lastauxinfo; static unsigned int m_numgllights; - BMF_Font* m_font; +// XXX BMF_Font* m_font; public: GPC_RenderTools(); diff --git a/source/gameengine/GamePlayer/common/Makefile b/source/gameengine/GamePlayer/common/Makefile index 6a12e659be6..84b4a4170a9 100644 --- a/source/gameengine/GamePlayer/common/Makefile +++ b/source/gameengine/GamePlayer/common/Makefile @@ -56,7 +56,6 @@ CPPFLAGS += -I$(NAN_PNG)/include CPPFLAGS += -I$(NAN_ZLIB)/include CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION) -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include CPPFLAGS += -I../../../gameengine/Converter CPPFLAGS += -I../../../gameengine/Expressions diff --git a/source/gameengine/GamePlayer/common/SConscript b/source/gameengine/GamePlayer/common/SConscript index 23ad413350b..e96b2c5400b 100644 --- a/source/gameengine/GamePlayer/common/SConscript +++ b/source/gameengine/GamePlayer/common/SConscript @@ -18,7 +18,6 @@ incs = ['.', '#intern/string', '#intern/ghost', '#intern/guardedalloc', - '#intern/bmfont', '#intern/moto/include', '#intern/SoundSystem', '#source/gameengine/Rasterizer/RAS_OpenGLRasterizer', diff --git a/source/gameengine/GamePlayer/common/unix/Makefile b/source/gameengine/GamePlayer/common/unix/Makefile index 3d44a41afee..90342c7b735 100644 --- a/source/gameengine/GamePlayer/common/unix/Makefile +++ b/source/gameengine/GamePlayer/common/unix/Makefile @@ -60,7 +60,6 @@ CPPFLAGS += -I$(NAN_FUZZICS)/include CPPFLAGS += -I$(NAN_SUMO)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include CPPFLAGS += -I$(NAN_MOTO)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_SOLID)/include # Blender stuff diff --git a/source/gameengine/GamePlayer/common/windows/Makefile b/source/gameengine/GamePlayer/common/windows/Makefile index f35642f9651..b622ee974c8 100644 --- a/source/gameengine/GamePlayer/common/windows/Makefile +++ b/source/gameengine/GamePlayer/common/windows/Makefile @@ -48,7 +48,6 @@ CPPFLAGS += -I$(SRCHOME)/gameengine/Physics/Sumo/include CPPFLAGS += -I$(NAN_MOTO)/include CPPFLAGS += -I$(NAN_STRING)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include CPPFLAGS += -I$(NAN_GLEW)/include diff --git a/source/gameengine/GamePlayer/ghost/CMakeLists.txt b/source/gameengine/GamePlayer/ghost/CMakeLists.txt index a3cd8296da3..71961f27339 100644 --- a/source/gameengine/GamePlayer/ghost/CMakeLists.txt +++ b/source/gameengine/GamePlayer/ghost/CMakeLists.txt @@ -37,7 +37,6 @@ SET(INC ../../../../intern/string ../../../../intern/ghost ../../../../intern/guardedalloc - ../../../../intern/bmfont ../../../../intern/moto/include ../../../../intern/SoundSystem ../../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer diff --git a/source/gameengine/GamePlayer/ghost/Makefile b/source/gameengine/GamePlayer/ghost/Makefile index 5f90d804611..c82edca0d45 100644 --- a/source/gameengine/GamePlayer/ghost/Makefile +++ b/source/gameengine/GamePlayer/ghost/Makefile @@ -39,7 +39,6 @@ CCFLAGS += $(LEVEL_1_CPP_WARNINGS) CPPFLAGS += -I$(NAN_GLEW)/include CPPFLAGS += -I$(OPENGL_HEADERS) CPPFLAGS += -I$(NAN_STRING)/include -CPPFLAGS += -I$(NAN_BMFONT)/include CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include diff --git a/source/gameengine/GamePlayer/ghost/SConscript b/source/gameengine/GamePlayer/ghost/SConscript index 9b17ed3757b..1cb7c9f2457 100644 --- a/source/gameengine/GamePlayer/ghost/SConscript +++ b/source/gameengine/GamePlayer/ghost/SConscript @@ -12,7 +12,6 @@ incs = ['.', '#intern/string', '#intern/ghost', '#intern/guardedalloc', - '#intern/bmfont', '#intern/moto/include', '#intern/SoundSystem', '#source/gameengine/Rasterizer/RAS_OpenGLRasterizer', diff --git a/source/gameengine/Ketsji/CMakeLists.txt b/source/gameengine/Ketsji/CMakeLists.txt index 73d7191ffde..ca9ce4dc50c 100644 --- a/source/gameengine/Ketsji/CMakeLists.txt +++ b/source/gameengine/Ketsji/CMakeLists.txt @@ -47,7 +47,6 @@ SET(INC ../../../intern/string ../../../intern/guardedalloc ../../../source/gameengine/Rasterizer/RAS_OpenGLRasterizer - ../../../intern/bmfont ../../../source/gameengine/Converter ../../../source/blender/imbuf ../../../intern/ghost/include diff --git a/source/gameengine/Ketsji/SConscript b/source/gameengine/Ketsji/SConscript index 0e888edd43b..921aba9c11f 100644 --- a/source/gameengine/Ketsji/SConscript +++ b/source/gameengine/Ketsji/SConscript @@ -31,7 +31,7 @@ defs = '' incs = '. #source/blender/python/api2_2x' # Only for Mathutils! and bpy_internal_import.h, be very careful incs += ' #source/kernel/gen_system #intern/string #intern/guardedalloc' -incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer #intern/bmfont' +incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer' incs += ' #intern/SoundSystem #intern/SoundSystem/include #intern/SoundSystem/openal' incs += ' #intern/SoundSystem/dummy #intern/SoundSystem/intern #source/gameengine/Converter' incs += ' #source/gameengine/BlenderRoutines #source/blender/imbuf #intern/moto/include' diff --git a/source/nan_definitions.mk b/source/nan_definitions.mk index eadc334431d..ba2f8f04233 100644 --- a/source/nan_definitions.mk +++ b/source/nan_definitions.mk @@ -106,17 +106,14 @@ endif export NAN_ACTION ?= $(LCGDIR)/action export NAN_GHOST ?= $(LCGDIR)/ghost export NAN_TEST_VERBOSITY ?= 1 - export NAN_BMFONT ?= $(LCGDIR)/bmfont export NAN_OPENNL ?= $(LCGDIR)/opennl export NAN_ELBEEM ?= $(LCGDIR)/elbeem export NAN_SUPERLU ?= $(LCGDIR)/superlu export NAN_GLEW ?= $(LCGDIR)/glew ifeq ($(FREE_WINDOWS), true) - export NAN_FTGL ?= $(LCGDIR)/gcc/ftgl export NAN_FFMPEG ?= $(LCGDIR)/gcc/ffmpeg export NAN_FFMPEGLIBS ?= $(NAN_FFMPEG)/lib/libavformat.a $(NAN_FFMPEG)/lib/libavutil.a $(NAN_FFMPEG)/lib/libavcodec.a $(NAN_FFMPEG)/lib/libavdevice.a else - export NAN_FTGL ?= $(LCGDIR)/ftgl export NAN_FFMPEG ?= $(LCGDIR)/ffmpeg export NAN_FFMPEGLIBS ?= $(NAN_FFMPEG)/lib/libavformat.a $(NAN_FFMPEG)/lib/libavcodec.a $(NAN_FFMPEG)/lib/libswscale.a $(NAN_FFMPEG)/lib/libavutil.a $(NAN_FFMPEG)/lib/libavdevice.a endif @@ -172,9 +169,6 @@ endif # l10n #export INTERNATIONAL ?= true - # enable freetype2 support for text objects - #export WITH_FREETYPE2 ?= true - else ifeq ($(OS),darwin) @@ -246,9 +240,6 @@ endif # enable l10n export INTERNATIONAL ?= true - # enable freetype2 support for text objects - export WITH_FREETYPE2 ?= true - else ifeq ($(OS),freebsd) @@ -290,9 +281,6 @@ endif # enable l10n # export INTERNATIONAL ?= true - # enable freetype2 support for text objects - # export WITH_FREETYPE2 ?= true - else ifeq ($(OS),irix) @@ -347,9 +335,6 @@ endif # enable l10n export INTERNATIONAL ?= true - # enable freetype2 support for text objects - export WITH_FREETYPE2 ?= true - else ifeq ($(OS),linux) @@ -403,9 +388,6 @@ endif # l10n export INTERNATIONAL ?= true - # enable freetype2 support for text objects - export WITH_FREETYPE2 ?= true - export WITH_BINRELOC ?= true # enable ffmpeg support @@ -454,9 +436,6 @@ endif # l10n #export INTERNATIONAL ?= true - # enable freetype2 support for text objects - #export WITH_FREETYPE2 ?= true - else ifeq ($(OS),solaris) @@ -502,9 +481,6 @@ endif # l10n #export INTERNATIONAL ?= true - # enable freetype2 support for text objects - #export WITH_FREETYPE2 ?= true - else ifeq ($(OS),windows) @@ -561,9 +537,6 @@ endif # l10n export INTERNATIONAL ?= true - # enable freetype2 support for text objects - export WITH_FREETYPE2 ?= true - # enable quicktime support # export WITH_QUICKTIME ?= true @@ -605,9 +578,6 @@ endif # l10n #export INTERNATIONAL ?= true - # enable freetype2 support for text objects - #export WITH_FREETYPE2 ?= true - endif # windows + fallback endif # solaris endif # openbsd @@ -624,8 +594,3 @@ ifeq ($(NAN_NO_KETSJI), true) export NAN_JUST_BLENDERDYNAMIC=true export NAN_NO_OPENAL=true endif - -# INTERNATIONAL implies WITH_FREETYPE2 -ifeq ($(INTERNATIONAL), true) - export WITH_FREETYPE2=true -endif diff --git a/tools/Blender.py b/tools/Blender.py index d24a7c4c2cb..6ffc0b8d76d 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -119,6 +119,7 @@ def setup_staticlibs(lenv): lenv['BF_ICONV_LIBPATH'] ] + libincs += Split(lenv['BF_FREETYPE_LIBPATH']) if lenv['WITH_BF_PYTHON']: libincs += Split(lenv['BF_PYTHON_LIBPATH']) if lenv['WITH_BF_SDL']: @@ -133,7 +134,6 @@ def setup_staticlibs(lenv): statlibs += Split(lenv['BF_OPENEXR_LIB_STATIC']) if lenv['WITH_BF_INTERNATIONAL']: libincs += Split(lenv['BF_GETTEXT_LIBPATH']) - libincs += Split(lenv['BF_FREETYPE_LIBPATH']) if lenv['WITH_BF_OPENAL']: libincs += Split(lenv['BF_OPENAL_LIBPATH']) if lenv['WITH_BF_STATICOPENAL']: @@ -157,13 +157,13 @@ def setup_syslibs(lenv): lenv['BF_ZLIB_LIB'] ] + syslibs += Split(lenv['BF_FREETYPE_LIB']) if lenv['WITH_BF_PYTHON'] and not lenv['WITH_BF_STATICPYTHON']: if lenv['BF_DEBUG'] and lenv['OURPLATFORM'] in ('win32-vc', 'win64-vc'): syslibs.append(lenv['BF_PYTHON_LIB']+'_d') else: syslibs.append(lenv['BF_PYTHON_LIB']) if lenv['WITH_BF_INTERNATIONAL']: - syslibs += Split(lenv['BF_FREETYPE_LIB']) syslibs += Split(lenv['BF_GETTEXT_LIB']) if lenv['WITH_BF_OPENAL']: if not lenv['WITH_BF_STATICOPENAL']: diff --git a/tools/btools.py b/tools/btools.py index 7c77e9c1b0a..2c9b564b8a1 100755 --- a/tools/btools.py +++ b/tools/btools.py @@ -49,7 +49,6 @@ def validate_arguments(args, bc): 'WITH_BF_FREETYPE', 'BF_FREETYPE', 'BF_FREETYPE_INC', 'BF_FREETYPE_LIB', 'BF_FREETYPE_LIBPATH', 'WITH_BF_QUICKTIME', 'BF_QUICKTIME', 'BF_QUICKTIME_INC', 'BF_QUICKTIME_LIB', 'BF_QUICKTIME_LIBPATH', 'WITH_BF_STATICOPENGL', 'BF_OPENGL', 'BF_OPENGL_INC', 'BF_OPENGL_LIB', 'BF_OPENGL_LIBPATH', 'BF_OPENGL_LIB_STATIC', - 'WITH_BF_FTGL', 'BF_FTGL', 'BF_FTGL_INC', 'BF_FTGL_LIB', 'WITH_BF_PLAYER', 'WITH_BF_NOBLENDER', 'WITH_BF_BINRELOC', @@ -235,7 +234,7 @@ def read_opts(cfg, args): ('BF_ZLIB_LIB', 'ZLib library', ''), ('BF_ZLIB_LIBPATH', 'ZLib library path', ''), - (BoolVariable('WITH_BF_INTERNATIONAL', 'Use Gettext and Freetype if true', True)), + (BoolVariable('WITH_BF_INTERNATIONAL', 'Use Gettext if true', True)), ('BF_GETTEXT', 'gettext base path', ''), ('BF_GETTEXT_INC', 'gettext include path', ''), @@ -308,11 +307,6 @@ def read_opts(cfg, args): ('BF_OPENGL_LIB_STATIC', 'OpenGL static libraries', ''), ('BF_OPENGL_LINKFLAGS', 'OpenGL link flags', ''), - (BoolVariable('WITH_BF_FTGL', 'Use FTGL if true', True)), - ('BF_FTGL', 'FTGL base path', ''), - ('BF_FTGL_INC', 'FTGL include path', ''), - ('BF_FTGL_LIB', 'FTGL libraries', ''), - (BoolVariable('WITH_BF_PLAYER', 'Build blenderplayer if true', False)), (BoolVariable('WITH_BF_NOBLENDER', 'Do not build blender if true', False)), From 8858546ab4786dbd044c5717a926440a8a839df5 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Tue, 5 May 2009 23:25:12 +0000 Subject: [PATCH 48/60] 2.5 - Scons compiling fix for BDiego's commit Was missing includes for blenfont module in a few places. --- source/blender/editors/animation/anim_filter.c | 6 +++--- source/blender/editors/gpencil/drawgpencil.c | 2 ++ .../blender/editors/gpencil/editaction_gpencil.c | 6 +++++- source/blender/editors/gpencil/gpencil_edit.c | 16 +--------------- source/blender/editors/screen/SConscript | 2 +- .../blender/editors/space_sequencer/SConscript | 2 +- 6 files changed, 13 insertions(+), 21 deletions(-) diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index 881d2d95ca4..93bdadc27d3 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -1195,7 +1195,7 @@ static int animdata_filter_dopesheet (ListBase *anim_data, bDopeSheet *ads, int if (base->object) { Object *ob= base->object; Key *key= ob_get_key(ob); - short actOk, keyOk, dataOk, matOk; + short actOk=1, keyOk=1, dataOk=1, matOk=1; /* firstly, check if object can be included, by the following fanimors: * - if only visible, must check for layer and also viewport visibility @@ -1204,8 +1204,8 @@ static int animdata_filter_dopesheet (ListBase *anim_data, bDopeSheet *ads, int */ // TODO: if cache is implemented, just check name here, and then if (filter_mode & ANIMFILTER_VISIBLE) { - /* layer visibility */ - if ((ob->lay & sce->lay)==0) continue; + /* layer visibility - we check both object and base, since these may not be in sync yet */ + if ((sce->lay & (ob->lay|base->lay))==0) continue; /* outliner restrict-flag */ if (ob->restrictflag & OB_RESTRICT_VIEW) continue; diff --git a/source/blender/editors/gpencil/drawgpencil.c b/source/blender/editors/gpencil/drawgpencil.c index 5c6294022ee..e5868338f75 100644 --- a/source/blender/editors/gpencil/drawgpencil.c +++ b/source/blender/editors/gpencil/drawgpencil.c @@ -872,6 +872,7 @@ static void gp_draw_data (bGPdata *gpd, int offsx, int offsy, int winx, int winy glDisable(GL_LINE_SMOOTH); // smooth lines /* show info for debugging the status of gpencil */ +#if 0 if ( ((dflag & GP_DRAWDATA_NOSTATUS)==0) && (gpd->flag & GP_DATA_DISPINFO) ) { char printable[256]; short xmax; @@ -908,6 +909,7 @@ static void gp_draw_data (bGPdata *gpd, int offsx, int offsy, int winx, int winy BLF_draw_default(winx-xmax, winy-20, 0.0f, printable); } } +#endif /* restore initial gl conditions */ glLineWidth(1.0); diff --git a/source/blender/editors/gpencil/editaction_gpencil.c b/source/blender/editors/gpencil/editaction_gpencil.c index 8be56dc416e..beb4ed06810 100644 --- a/source/blender/editors/gpencil/editaction_gpencil.c +++ b/source/blender/editors/gpencil/editaction_gpencil.c @@ -66,6 +66,8 @@ #include "gpencil_intern.h" +#if 0 // XXX disabled until grease pencil code stabilises again + /* XXX */ static void actdata_filter() {} // is now ANIM_animdata_filter() static void BIF_undo_push() {} @@ -505,7 +507,8 @@ void paste_gpdata (Scene *scene) ScrArea *sa; /* get area that gp-data comes from */ - sa= gpencil_data_findowner((bGPdata *)ale->owner); + //sa= gpencil_data_findowner((bGPdata *)ale->owner); + sa = NULL; /* this should be the right frame... as it may be a pre-existing frame, * must make sure that only compatible stroke types get copied over @@ -736,3 +739,4 @@ void mirror_gplayer_frames (bGPDlayer *gpl, Scene *scene, short mode) } /* ***************************************** */ +#endif // XXX disabled until Grease Pencil code stabilises again... diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c index d84b93267a6..bad86c170ab 100644 --- a/source/blender/editors/gpencil/gpencil_edit.c +++ b/source/blender/editors/gpencil/gpencil_edit.c @@ -522,6 +522,7 @@ static void gp_stroke_to_bonechain (bGPDlayer *gpl, bGPDstroke *gps, bArmature * } /* convert a given grease-pencil layer to a 3d-curve representation (using current view if appropriate) */ +// XXX depreceated... we now have etch-a-ton for this... static void gp_layer_to_armature (bGPdata *gpd, bGPDlayer *gpl, Scene *scene, View3D *v3d, short mode) { bGPDframe *gpf= gpencil_layer_getframe(gpl, scene->r.cfra, 0); @@ -620,21 +621,6 @@ void gpencil_convert_operation (short mode) BIF_undo_push("GPencil Convert"); } -/* display a menu for converting grease-pencil strokes */ -void gpencil_convert_menu (void) -{ - bGPdata *gpd= gpencil_data_getactive(NULL); - short mode; - - /* only show menu if it will be relevant */ - if (gpd == NULL) return; - - mode= pupmenu("Grease Pencil Convert %t|Active Layer To Path%x1|Active Layer to Bezier%x2|Active Layer to Armature%x3"); - if (mode <= 0) return; - - gpencil_convert_operation(mode); -} - /* ************************************************** */ /* GREASE-PENCIL EDITING MODE - Painting */ diff --git a/source/blender/editors/screen/SConscript b/source/blender/editors/screen/SConscript index d00c01a040c..3972efd8eed 100644 --- a/source/blender/editors/screen/SConscript +++ b/source/blender/editors/screen/SConscript @@ -3,7 +3,7 @@ Import ('env') sources = env.Glob('*.c') -incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' +incs = '../include ../../blenlib ../../blenkernel ../../blenfont ../../makesdna ../../imbuf' incs += ' ../../blenloader ../../windowmanager ../../python ../../makesrna' incs += ' ../../render/extern/include' incs += ' #/intern/guardedalloc #/extern/glew/include' diff --git a/source/blender/editors/space_sequencer/SConscript b/source/blender/editors/space_sequencer/SConscript index 8a8c4963003..ab51068a529 100644 --- a/source/blender/editors/space_sequencer/SConscript +++ b/source/blender/editors/space_sequencer/SConscript @@ -3,7 +3,7 @@ Import ('env') sources = env.Glob('*.c') -incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../imbuf' +incs = '../include ../../blenlib ../../blenkernel ../../blenfont ../../makesdna ../../imbuf' incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include' incs += ' ../../makesrna' From 33ce7d4bad0c5da963209e73c6f583acef5f2593 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 6 May 2009 00:18:06 +0000 Subject: [PATCH 49/60] 2.5: Missing include was causing crashes on startup in the drawing code for scrollbars --- source/blender/editors/interface/view2d.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/editors/interface/view2d.c b/source/blender/editors/interface/view2d.c index 6107aa4ccc8..191f38ad7d0 100644 --- a/source/blender/editors/interface/view2d.c +++ b/source/blender/editors/interface/view2d.c @@ -47,6 +47,8 @@ #include "BIF_gl.h" #include "BIF_glutil.h" +#include "BLF_api.h" + #include "ED_screen.h" #include "UI_interface.h" From ee4e89ec530f3a66b2bda15160b9469be5bab2ee Mon Sep 17 00:00:00 2001 From: Andrea Weikert Date: Wed, 6 May 2009 18:51:58 +0000 Subject: [PATCH 50/60] Blender 2.5 MSVC projectfiles updates * removed WITH_FREETYPE2 * update for several missing or moved files rna_fcurve.c, gpencil.c,... --- .../blender/BPY_python/BPY_python.vcproj | 4 -- projectfiles_vc9/blender/blender.sln | 40 ------------------- .../blender/blenfont/BLF_blenfont.vcproj | 8 +--- .../blender/blenkernel/BKE_blenkernel.vcproj | 12 ++++-- .../blender/blenlib/BLI_blenlib.vcproj | 10 ++--- .../blender/editors/ED_editors.vcproj | 18 ++++----- .../blender/makesrna/RNA_makesrna.vcproj | 4 ++ .../blender/makesrna/RNA_rna.vcproj | 4 ++ projectfiles_vc9/blender/nodes/nodes.vcproj | 8 ++-- 9 files changed, 36 insertions(+), 72 deletions(-) diff --git a/projectfiles_vc9/blender/BPY_python/BPY_python.vcproj b/projectfiles_vc9/blender/BPY_python/BPY_python.vcproj index d072d37a1f1..e66693cc86f 100644 --- a/projectfiles_vc9/blender/BPY_python/BPY_python.vcproj +++ b/projectfiles_vc9/blender/BPY_python/BPY_python.vcproj @@ -346,10 +346,6 @@ RelativePath="..\..\..\source\blender\python\intern\bpy_operator_wrap.c" > - - diff --git a/projectfiles_vc9/blender/blender.sln b/projectfiles_vc9/blender/blender.sln index 3ce6569a929..315adc06723 100644 --- a/projectfiles_vc9/blender/blender.sln +++ b/projectfiles_vc9/blender/blender.sln @@ -3,7 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 10.00 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "blender", "blender.vcproj", "{F78B7FC9-DE32-465E-9F26-BB0B6B7A2EAF}" ProjectSection(ProjectDependencies) = postProject {E5F2F004-C704-4DCC-A08F-6EB1E38EAB9F} = {E5F2F004-C704-4DCC-A08F-6EB1E38EAB9F} - {F9850C15-FF0A-429E-9D47-89FB433C9BD8} = {F9850C15-FF0A-429E-9D47-89FB433C9BD8} {A90C4918-4B21-4277-93BD-AF65F30951D9} = {A90C4918-4B21-4277-93BD-AF65F30951D9} {FB88301F-F725-401B-ACD7-D2ABBF333B71} = {FB88301F-F725-401B-ACD7-D2ABBF333B71} {98330220-47A6-42E0-9DE4-AD0FF5D204D6} = {98330220-47A6-42E0-9DE4-AD0FF5D204D6} @@ -28,7 +27,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "blender", "blender.vcproj", {106AE171-0083-41D6-A949-20DB0E8DC251} = {106AE171-0083-41D6-A949-20DB0E8DC251} {670EC17A-0548-4BBF-A27B-636C7C188139} = {670EC17A-0548-4BBF-A27B-636C7C188139} {4C3AB78A-52CA-4276-A041-39776E52D8C8} = {4C3AB78A-52CA-4276-A041-39776E52D8C8} - {E784098D-3ED8-433A-9353-9679415DDDC5} = {E784098D-3ED8-433A-9353-9679415DDDC5} {CAE37E91-6570-43AC-A4B4-7A37A4B0FC94} = {CAE37E91-6570-43AC-A4B4-7A37A4B0FC94} {76D90B92-ECC7-409C-9F98-A8814B90F3C0} = {76D90B92-ECC7-409C-9F98-A8814B90F3C0} {9C71A793-C177-4CAB-8EC5-923D500B39F8} = {9C71A793-C177-4CAB-8EC5-923D500B39F8} @@ -150,7 +148,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "blenderplayer", "..\gameeng {415BFD6E-64CF-422B-AF88-C07F040A7292} = {415BFD6E-64CF-422B-AF88-C07F040A7292} {670EC17A-0548-4BBF-A27B-636C7C188139} = {670EC17A-0548-4BBF-A27B-636C7C188139} {4C3AB78A-52CA-4276-A041-39776E52D8C8} = {4C3AB78A-52CA-4276-A041-39776E52D8C8} - {E784098D-3ED8-433A-9353-9679415DDDC5} = {E784098D-3ED8-433A-9353-9679415DDDC5} {6B801390-5F95-4F07-81A7-97FBA046AACC} = {6B801390-5F95-4F07-81A7-97FBA046AACC} {CAE37E91-6570-43AC-A4B4-7A37A4B0FC94} = {CAE37E91-6570-43AC-A4B4-7A37A4B0FC94} {76D90B92-ECC7-409C-9F98-A8814B90F3C0} = {76D90B92-ECC7-409C-9F98-A8814B90F3C0} @@ -243,21 +240,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_solid", "..\..\extern\s EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_bullet2", "..\..\extern\bullet2\make\msvc_9_0\Bullet.vcproj", "{FFD3C64A-30E2-4BC7-BC8F-51818C320400}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_ftgl_static_lib", "..\..\extern\bFTGL\make\msvc_9_0\ftgl_static_lib.vcproj", "{F9850C15-FF0A-429E-9D47-89FB433C9BD8}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_glew", "..\..\extern\glew\make\msvc_9_0\glew.vcproj", "{BAC615B0-F1AF-418B-8D23-A10FD8870D6A}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_qhull", "..\..\extern\qhull\make\msvc_9_0\qhull.vcproj", "{6461F05D-4698-47AB-A8E8-1CA2ACC9948B}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EXT_build_install_all", "..\..\extern\make\msvc_9_0\build_install_all.vcproj", "{9C71A793-C177-4CAB-8EC5-923D500B39F8}" ProjectSection(ProjectDependencies) = postProject - {F9850C15-FF0A-429E-9D47-89FB433C9BD8} = {F9850C15-FF0A-429E-9D47-89FB433C9BD8} {FFD3C64A-30E2-4BC7-BC8F-51818C320400} = {FFD3C64A-30E2-4BC7-BC8F-51818C320400} {D696C86B-0B53-4471-A50D-5B983A6FA4AD} = {D696C86B-0B53-4471-A50D-5B983A6FA4AD} EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INT_bmfont", "..\..\intern\bmfont\make\msvc_9_0\bmfont.vcproj", "{E784098D-3ED8-433A-9353-9679415DDDC5}" -EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INT_boolop", "..\..\intern\boolop\make\msvc_9_0\boolop.vcproj", "{EB75F4D6-2970-4A3A-8D99-2BAD7201C0E9}" ProjectSection(ProjectDependencies) = postProject {4B6AFCC5-968C-424A-8F20-76E41B3BEF74} = {4B6AFCC5-968C-424A-8F20-76E41B3BEF74} @@ -310,7 +302,6 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INT_build_install_all", ".. {C66F722C-46BE-40C9-ABAE-2EAC7A697EB8} = {C66F722C-46BE-40C9-ABAE-2EAC7A697EB8} {FAF46346-65CC-4DB2-85C4-B99826F79D0C} = {FAF46346-65CC-4DB2-85C4-B99826F79D0C} {B093415D-C0F6-4E76-8F5A-6BC1917BCE9E} = {B093415D-C0F6-4E76-8F5A-6BC1917BCE9E} - {E784098D-3ED8-433A-9353-9679415DDDC5} = {E784098D-3ED8-433A-9353-9679415DDDC5} {76D90B92-ECC7-409C-9F98-A8814B90F3C0} = {76D90B92-ECC7-409C-9F98-A8814B90F3C0} {542A9FA1-B7FF-441C-AE15-054DB31D3488} = {542A9FA1-B7FF-441C-AE15-054DB31D3488} {213356A9-3A1F-41DA-9819-1297BCD17DEE} = {213356A9-3A1F-41DA-9819-1297BCD17DEE} @@ -325,7 +316,6 @@ 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 - {E784098D-3ED8-433A-9353-9679415DDDC5} = {E784098D-3ED8-433A-9353-9679415DDDC5} {DFE7F3E3-E62A-4677-B666-DF0DDF70C359} = {DFE7F3E3-E62A-4677-B666-DF0DDF70C359} EndProjectSection EndProject @@ -999,20 +989,6 @@ Global {FFD3C64A-30E2-4BC7-BC8F-51818C320400}.Debug|Win32.Build.0 = 3D Plugin Debug|Win32 {FFD3C64A-30E2-4BC7-BC8F-51818C320400}.Release|Win32.ActiveCfg = 3D Plugin Release|Win32 {FFD3C64A-30E2-4BC7-BC8F-51818C320400}.Release|Win32.Build.0 = 3D Plugin Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.3D Plugin Debug|Win32.ActiveCfg = 3D Plugin Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.3D Plugin Debug|Win32.Build.0 = 3D Plugin Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.3D Plugin Release|Win32.ActiveCfg = 3D Plugin Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.3D Plugin Release|Win32.Build.0 = 3D Plugin Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Blender Debug|Win32.ActiveCfg = Blender Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Blender Debug|Win32.Build.0 = Blender Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Blender Release|Win32.ActiveCfg = Blender Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Blender Release|Win32.Build.0 = Blender Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.BlenderPlayer Debug|Win32.ActiveCfg = Blender Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.BlenderPlayer Release|Win32.ActiveCfg = Blender Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Debug|Win32.ActiveCfg = 3D Plugin Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Debug|Win32.Build.0 = 3D Plugin Debug|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Release|Win32.ActiveCfg = 3D Plugin Release|Win32 - {F9850C15-FF0A-429E-9D47-89FB433C9BD8}.Release|Win32.Build.0 = 3D Plugin Release|Win32 {BAC615B0-F1AF-418B-8D23-A10FD8870D6A}.3D Plugin Debug|Win32.ActiveCfg = Blender Release|Win32 {BAC615B0-F1AF-418B-8D23-A10FD8870D6A}.3D Plugin Debug|Win32.Build.0 = Blender Release|Win32 {BAC615B0-F1AF-418B-8D23-A10FD8870D6A}.3D Plugin Release|Win32.ActiveCfg = Blender Release|Win32 @@ -1057,22 +1033,6 @@ Global {9C71A793-C177-4CAB-8EC5-923D500B39F8}.Debug|Win32.Build.0 = 3D Plugin Debug|Win32 {9C71A793-C177-4CAB-8EC5-923D500B39F8}.Release|Win32.ActiveCfg = 3D Plugin Release|Win32 {9C71A793-C177-4CAB-8EC5-923D500B39F8}.Release|Win32.Build.0 = 3D Plugin Release|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.3D Plugin Debug|Win32.ActiveCfg = 3DPlugin Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.3D Plugin Debug|Win32.Build.0 = 3DPlugin Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.3D Plugin Release|Win32.ActiveCfg = 3DPlugin Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.3D Plugin Release|Win32.Build.0 = 3DPlugin Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Blender Debug|Win32.ActiveCfg = Blender Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Blender Debug|Win32.Build.0 = Blender Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Blender Release|Win32.ActiveCfg = Blender Release|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Blender Release|Win32.Build.0 = Blender Release|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.BlenderPlayer Debug|Win32.ActiveCfg = Blender Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.BlenderPlayer Debug|Win32.Build.0 = Blender Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.BlenderPlayer Release|Win32.ActiveCfg = Blender Release|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.BlenderPlayer Release|Win32.Build.0 = Blender Release|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Debug|Win32.ActiveCfg = 3DPlugin Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Debug|Win32.Build.0 = 3DPlugin Debug|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Release|Win32.ActiveCfg = 3DPlugin Release|Win32 - {E784098D-3ED8-433A-9353-9679415DDDC5}.Release|Win32.Build.0 = 3DPlugin Release|Win32 {EB75F4D6-2970-4A3A-8D99-2BAD7201C0E9}.3D Plugin Debug|Win32.ActiveCfg = 3DPlugin Debug|Win32 {EB75F4D6-2970-4A3A-8D99-2BAD7201C0E9}.3D Plugin Debug|Win32.Build.0 = 3DPlugin Debug|Win32 {EB75F4D6-2970-4A3A-8D99-2BAD7201C0E9}.3D Plugin Release|Win32.ActiveCfg = 3DPlugin Debug|Win32 diff --git a/projectfiles_vc9/blender/blenfont/BLF_blenfont.vcproj b/projectfiles_vc9/blender/blenfont/BLF_blenfont.vcproj index adf35f3446c..7b92276d4b8 100644 --- a/projectfiles_vc9/blender/blenfont/BLF_blenfont.vcproj +++ b/projectfiles_vc9/blender/blenfont/BLF_blenfont.vcproj @@ -44,7 +44,7 @@ Name="VCCLCompilerTool" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\..\..\intern\guardedalloc;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\blenfont;..\..\..\source\blender\ftfont;..\..\..\..\lib\windows\freetype\include;..\..\..\source\blender\editors\include;..\..\..\..\build\msvc_9\extern\glew\include" - PreprocessorDefinitions="WIN32;NDEBUG;_LIB;WITH_BF_INTERNATIONAL;WITH_FREETYPE2" + PreprocessorDefinitions="WIN32;NDEBUG;_LIB;WITH_BF_INTERNATIONAL" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -120,7 +120,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\intern\guardedalloc;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\blenfont;..\..\..\source\blender\ftfont;..\..\..\..\lib\windows\freetype\include;..\..\..\source\blender\editors\include;..\..\..\..\build\msvc_9\extern\glew\include" - PreprocessorDefinitions="WIN32,_DEBUG,_LIB,WITH_BF_INTERNATIONAL,WITH_FREETYPE2" + PreprocessorDefinitions="WIN32,_DEBUG,_LIB,WITH_BF_INTERNATIONAL" BasicRuntimeChecks="3" RuntimeLibrary="1" UsePrecompiledHeader="0" @@ -189,10 +189,6 @@ RelativePath="..\..\..\source\blender\blenfont\intern\blf_glyph.c" > - - diff --git a/projectfiles_vc9/blender/blenkernel/BKE_blenkernel.vcproj b/projectfiles_vc9/blender/blenkernel/BKE_blenkernel.vcproj index 9d011cfbc3a..cc464b9101a 100644 --- a/projectfiles_vc9/blender/blenkernel/BKE_blenkernel.vcproj +++ b/projectfiles_vc9/blender/blenkernel/BKE_blenkernel.vcproj @@ -119,7 +119,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\python\include\python2.5;..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\sdl\include;..\..\..\..\lib\windows\ffmpeg\include;..\..\..\..\build\msvc_9\intern\bmfont\include;..\..\..\..\build\msvc_9\intern\bsp\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\..\build\msvc_9\intern\decimation\include;..\..\..\..\build\msvc_9\intern\elbeem\include;..\..\..\..\build\msvc_9\intern\iksolver\include;..\..\..\source\blender;..\..\..\source\blender\avi;..\..\..\source\blender\imbuf;..\..\..\source\blender\editors\include;..\..\..\source\blender\python;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\makesdna;..\..\..\source\blender\makesrna;..\..\..\source\blender\nodes;..\..\..\source\blender\blenloader;..\..\..\source\kernel\gen_system;..\..\..\source\blender\renderconverter;..\..\..\source\blender\render\extern\include;..\..\..\source\gameengine\SoundSystem;..\..\..\..\build\msvc_9\extern\verse\include;..\..\..\..\build\msvc_9\intern\opennl\include;..\..\..\..\build\msvc_9\extern\bullet\include;..\..\..\..\build\msvc_9\extern\glew\include;..\..\..\source\blender\gpu" - PreprocessorDefinitions="_DEBUG;WIN32;_LIB;WITH_FREETYPE2;WITH_OPENEXR;WITH_DDS;WITH_BULLET;WITH_FFMPEG" + PreprocessorDefinitions="_DEBUG;WIN32;_LIB;WITH_OPENEXR;WITH_DDS;WITH_BULLET;WITH_FFMPEG" BasicRuntimeChecks="3" RuntimeLibrary="1" DefaultCharIsUnsigned="true" @@ -194,7 +194,7 @@ Name="VCCLCompilerTool" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\python\include\python2.5;..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\sdl\include;..\..\..\..\lib\windows\ffmpeg\include;..\..\..\..\build\msvc_9\intern\bmfont\include;..\..\..\..\build\msvc_9\intern\bsp\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\..\build\msvc_9\intern\decimation\include;..\..\..\..\build\msvc_9\intern\elbeem\include;..\..\..\..\build\msvc_9\intern\iksolver\include;..\..\..\source\blender;..\..\..\source\blender\avi;..\..\..\source\blender\imbuf;..\..\..\source\blender\editors\include;..\..\..\source\blender\python;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\makesdna;..\..\..\source\blender\makesrna;..\..\..\source\blender\nodes;..\..\..\source\blender\blenloader;..\..\..\source\kernel\gen_system;..\..\..\source\blender\renderconverter;..\..\..\source\blender\render\extern\include;..\..\..\source\gameengine\SoundSystem;..\..\..\..\build\msvc_9\extern\verse\include;..\..\..\..\build\msvc_9\intern\opennl\include;..\..\..\..\build\msvc_9\extern\bullet\include;..\..\..\..\build\msvc_9\extern\glew\include;..\..\..\source\blender\gpu" - PreprocessorDefinitions="NDEBUG;WIN32;_LIB;WITH_FREETYPE2;UNWRAPPER;WITH_OPENEXR;WITH_DDS;WITH_BULLET=1;WITH_FFMPEG" + PreprocessorDefinitions="NDEBUG;WIN32;_LIB;UNWRAPPER;WITH_OPENEXR;WITH_DDS;WITH_BULLET=1;WITH_FFMPEG" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -344,7 +344,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\python\include\python2.5;..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\sdl\include;..\..\..\..\lib\windows\ffmpeg\include;..\..\..\..\build\msvc_9\intern\bmfont\include;..\..\..\..\build\msvc_9\intern\bsp\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\..\build\msvc_9\intern\decimation\include;..\..\..\..\build\msvc_9\intern\elbeem\include;..\..\..\..\build\msvc_9\intern\iksolver\include;..\..\..\source\blender;..\..\..\source\blender\avi;..\..\..\source\blender\imbuf;..\..\..\source\blender\editors\include;..\..\..\source\blender\python;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\makesdna;..\..\..\source\blender\makesrna;..\..\..\source\blender\nodes;..\..\..\source\blender\blenloader;..\..\..\source\kernel\gen_system;..\..\..\source\blender\renderconverter;..\..\..\source\blender\render\extern\include;..\..\..\source\gameengine\SoundSystem;..\..\..\..\build\msvc_9\extern\verse\include;..\..\..\..\build\msvc_9\intern\opennl\include;..\..\..\..\build\msvc_9\extern\bullet\include;..\..\..\..\build\msvc_9\extern\glew\include;..\..\..\source\blender\gpu" - PreprocessorDefinitions="_DEBUG;WIN32;_LIB;WITH_FREETYPE2;WITH_FFMPEG" + PreprocessorDefinitions="_DEBUG;WIN32;_LIB;WITH_FFMPEG" BasicRuntimeChecks="3" RuntimeLibrary="1" DefaultCharIsUnsigned="true" @@ -419,7 +419,7 @@ Name="VCCLCompilerTool" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\python\include\python2.5;..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\sdl\include;..\..\..\..\lib\windows\ffmpeg\include;..\..\..\..\build\msvc_9\intern\bmfont\include;..\..\..\..\build\msvc_9\intern\bsp\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\..\build\msvc_9\intern\decimation\include;..\..\..\..\build\msvc_9\intern\elbeem\include;..\..\..\..\build\msvc_9\intern\iksolver\include;..\..\..\source\blender;..\..\..\source\blender\avi;..\..\..\source\blender\imbuf;..\..\..\source\blender\editors\include;..\..\..\source\blender\python;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\makesdna;..\..\..\source\blender\makesrna;..\..\..\source\blender\nodes;..\..\..\source\blender\blenloader;..\..\..\source\kernel\gen_system;..\..\..\source\blender\renderconverter;..\..\..\source\blender\render\extern\include;..\..\..\source\gameengine\SoundSystem;..\..\..\..\build\msvc_9\extern\verse\include;..\..\..\..\build\msvc_9\intern\opennl\include;..\..\..\..\build\msvc_9\extern\bullet\include;..\..\..\..\build\msvc_9\extern\glew\include;..\..\..\source\blender\gpu" - PreprocessorDefinitions="NDEBUG;WIN32;_LIB;WITH_FREETYPE2;UNWRAPPER;WITH_FFMPEG" + PreprocessorDefinitions="NDEBUG;WIN32;_LIB;UNWRAPPER;WITH_FFMPEG" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -613,6 +613,10 @@ RelativePath="..\..\..\source\blender\blenkernel\intern\font.c" > + + diff --git a/projectfiles_vc9/blender/blenlib/BLI_blenlib.vcproj b/projectfiles_vc9/blender/blenlib/BLI_blenlib.vcproj index 502f7cb86b4..e31436b9280 100644 --- a/projectfiles_vc9/blender/blenlib/BLI_blenlib.vcproj +++ b/projectfiles_vc9/blender/blenlib/BLI_blenlib.vcproj @@ -44,7 +44,7 @@ Name="VCCLCompilerTool" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\source\blender\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\python;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenkernel" - PreprocessorDefinitions="NDEBUG,WIN32,_LIB,WITH_FREETYPE2" + PreprocessorDefinitions="NDEBUG,WIN32,_LIB" StringPooling="true" RuntimeLibrary="2" EnableFunctionLevelLinking="true" @@ -120,7 +120,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\source\blender\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\python;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenkernel" - PreprocessorDefinitions="_DEBUG;WIN32;_LIB;WITH_FREETYPE2;_CRT_SECURE_NO_WARNINGS" + PreprocessorDefinitions="_DEBUG;WIN32;_LIB;_CRT_SECURE_NO_WARNINGS" BasicRuntimeChecks="3" RuntimeLibrary="1" DefaultCharIsUnsigned="true" @@ -196,7 +196,7 @@ Name="VCCLCompilerTool" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\source\blender\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\python;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenkernel" - PreprocessorDefinitions="NDEBUG;WIN32;_LIB;WITH_FREETYPE2" + PreprocessorDefinitions="NDEBUG;WIN32;_LIB" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" @@ -347,7 +347,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\source\blender\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\python;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenkernel" - PreprocessorDefinitions="_DEBUG,WIN32,_LIB,WITH_FREETYPE2" + PreprocessorDefinitions="_DEBUG,WIN32,_LIB" BasicRuntimeChecks="3" RuntimeLibrary="1" DefaultCharIsUnsigned="true" @@ -423,7 +423,7 @@ Name="VCCLCompilerTool" InlineFunctionExpansion="1" AdditionalIncludeDirectories="..\..\..\..\lib\windows\zlib\include;..\..\..\..\lib\windows\pthreads\include;..\..\..\..\lib\windows\freetype\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\source\blender\include;..\..\..\source\blender\blenlib;..\..\..\source\blender\python;..\..\..\source\blender\makesdna;..\..\..\source\blender\blenkernel" - PreprocessorDefinitions="NDEBUG,WIN32,_LIB,WITH_FREETYPE2" + PreprocessorDefinitions="NDEBUG,WIN32,_LIB" StringPooling="true" RuntimeLibrary="0" EnableFunctionLevelLinking="true" diff --git a/projectfiles_vc9/blender/editors/ED_editors.vcproj b/projectfiles_vc9/blender/editors/ED_editors.vcproj index be9f7223a12..a7deb22555e 100644 --- a/projectfiles_vc9/blender/editors/ED_editors.vcproj +++ b/projectfiles_vc9/blender/editors/ED_editors.vcproj @@ -482,6 +482,10 @@ RelativePath="..\..\..\source\blender\editors\space_view3d\view3d_snap.c" > + + @@ -714,14 +718,6 @@ RelativePath="..\..\..\source\blender\editors\space_buttons\buttons_intern.h" > - - - - @@ -1034,6 +1030,10 @@ RelativePath="..\..\..\source\blender\editors\object\object_intern.h" > + + @@ -1275,7 +1275,7 @@ > + + diff --git a/projectfiles_vc9/blender/makesrna/RNA_rna.vcproj b/projectfiles_vc9/blender/makesrna/RNA_rna.vcproj index d0a4e694c12..65aa5e6f3f4 100644 --- a/projectfiles_vc9/blender/makesrna/RNA_rna.vcproj +++ b/projectfiles_vc9/blender/makesrna/RNA_rna.vcproj @@ -214,6 +214,10 @@ RelativePath="..\..\..\source\blender\makesrna\intern\rna.crna_curve_gen.c" > + + diff --git a/projectfiles_vc9/blender/nodes/nodes.vcproj b/projectfiles_vc9/blender/nodes/nodes.vcproj index a289fffb3c2..cbe1954c14e 100644 --- a/projectfiles_vc9/blender/nodes/nodes.vcproj +++ b/projectfiles_vc9/blender/nodes/nodes.vcproj @@ -43,7 +43,7 @@ Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\lib\windows\python\include\python2.5;..\..\..\..\lib\windows\zlib\include;..\..\..\..\build\msvc_9\intern\bsp\include;..\..\..\..\build\msvc_9\intern\guardedalloc\include;..\..\..\..\build\msvc_9\intern\decimation\include;..\..\..\..\build\msvc_9\intern\elbeem\include;..\..\..\..\build\msvc_9\intern\iksolver\include;..\..\..\source\blender;..\..\..\source\blender\avi;..\..\..\source\blender\imbuf;..\..\..\source\blender\editors\include;..\..\..\source\blender\python;..\..\..\source\blender\blenlib;..\..\..\source\blender\blenkernel;..\..\..\source\blender\makesdna;..\..\..\source\blender\nodes;..\..\..\source\blender\blenloader;..\..\..\source\kernel\gen_system;..\..\..\source\blender\renderconverter;..\..\..\source\blender\render\extern\include;..\..\..\source\gameengine\SoundSystem;..\..\..\..\build\msvc_9\extern\verse\include;..\..\..\..\build\msvc_9\extern\glew\include;..\..\..\source\blender\gpu" - PreprocessorDefinitions="_DEBUG;WIN32;_LIB;WITH_FREETYPE2" + PreprocessorDefinitions="_DEBUG;WIN32;_LIB" MinimalRebuild="false" BasicRuntimeChecks="3" RuntimeLibrary="1" @@ -113,7 +113,7 @@ Date: Thu, 7 May 2009 01:20:43 +0000 Subject: [PATCH 51/60] just a small tweak to the buttons window header buttons, seperating the global buttons like scene and world from the sub buttons like ob data and materials, also tweaked the object checks aswell --- source/blender/editors/space_buttons/buttons_header.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/space_buttons/buttons_header.c b/source/blender/editors/space_buttons/buttons_header.c index ca8787f0c48..9cea5959e2f 100644 --- a/source/blender/editors/space_buttons/buttons_header.c +++ b/source/blender/editors/space_buttons/buttons_header.c @@ -179,9 +179,12 @@ void buttons_header_buttons(const bContext *C, ARegion *ar) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, dataicon, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_DATA, 0, 0, "Object Data"); if(ob && ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_MATERIAL, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_MATERIAL, 0, 0, "Material"); - uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_TEXTURE, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_TEXTURE, 0, 0, "Texture"); + if(ob && ELEM6(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT, OB_LAMP)) + uiDefIconButS(block, ROW, B_BUTSPREVIEW, ICON_TEXTURE, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_TEXTURE, 0, 0, "Texture"); if(ob && ELEM5(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT)) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PARTICLES, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PARTICLE, 0, 0, "Particles"); + + if(ob && ELEM6(ob->type, OB_MESH, OB_SURF, OB_MBALL, OB_CURVE, OB_FONT, OB_EMPTY)) uiDefIconButS(block, ROW, B_CONTEXT_SWITCH, ICON_PHYSICS, xco+=XIC, yco, XIC, YIC, &(sbuts->mainb), 0.0, (float)BCONTEXT_PHYSICS, 0, 0, "Physics"); xco+= XIC; From 171969213f2cad3a76028bc3e273007ee6287cf1 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Fri, 8 May 2009 03:49:48 +0000 Subject: [PATCH 52/60] Tweaks to build systems. Just some small cleanups... Kent --- extern/CMakeLists.txt | 8 -------- extern/Makefile | 4 ---- extern/SConscript | 3 --- source/gameengine/BlenderRoutines/KX_BlenderGL.cpp | 1 + source/gameengine/BlenderRoutines/Makefile | 2 +- 5 files changed, 2 insertions(+), 16 deletions(-) diff --git a/extern/CMakeLists.txt b/extern/CMakeLists.txt index b81efb52de9..45778e235cd 100644 --- a/extern/CMakeLists.txt +++ b/extern/CMakeLists.txt @@ -32,14 +32,6 @@ IF(WITH_BULLET) SUBDIRS(bullet2) ENDIF(WITH_BULLET) -IF(WITH_INTERNATIONAL) - SUBDIRS(bFTGL) -ENDIF(WITH_INTERNATIONAL) - -IF(WITH_VERSE) - SUBDIRS(verse) -ENDIF(WITH_VERSE) - IF(CMAKE_SYSTEM_NAME MATCHES "Linux") SUBDIRS(binreloc) ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux") diff --git a/extern/Makefile b/extern/Makefile index 256837d660f..582d158b66f 100644 --- a/extern/Makefile +++ b/extern/Makefile @@ -41,10 +41,6 @@ ifeq ($(NAN_FFMPEG), $(LCGDIR)/gcc/ffmpeg) endif endif -ifeq ($(WITH_VERSE), true) - DIRS += verse -endif - ifneq ($(NAN_NO_KETSJI), true) DIRS += bullet2 endif diff --git a/extern/SConscript b/extern/SConscript index 716aee8991f..126f40b00b3 100644 --- a/extern/SConscript +++ b/extern/SConscript @@ -11,9 +11,6 @@ if env['WITH_BF_GAMEENGINE']: if env['WITH_BF_BULLET']: SConscript(['bullet2/src/SConscript']) -if env['WITH_BF_INTERNATIONAL']: - SConscript(['bFTGL/SConscript']) - if env['WITH_BF_FFMPEG'] and env['BF_FFMPEG_LIB'] == '': SConscript(['x264/SConscript']) SConscript(['libmp3lame/SConscript']) diff --git a/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp b/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp index b08eaf6e026..de7a7f54fde 100644 --- a/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp +++ b/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp @@ -27,6 +27,7 @@ */ #include "KX_BlenderGL.h" +#include "BLF_api.h" #ifdef HAVE_CONFIG_H #include diff --git a/source/gameengine/BlenderRoutines/Makefile b/source/gameengine/BlenderRoutines/Makefile index 3a2c30672cc..f5486bae87b 100644 --- a/source/gameengine/BlenderRoutines/Makefile +++ b/source/gameengine/BlenderRoutines/Makefile @@ -54,7 +54,7 @@ CPPFLAGS += -I../../blender/blenlib CPPFLAGS += -I../../blender/blenkernel CPPFLAGS += -I../../blender/render/extern/include CPPFLAGS += -I../../blender/blenloader -CPPFLAGS += -I../../blender/blenkernel +CPPFLAGS += -I../../blender/blenfont CPPFLAGS += -I../../blender/gpu CPPFLAGS += -I../Converter CPPFLAGS += -I../Expressions From 7e29e97c218068a979a417e4fc9aca156a0ccd7d Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 8 May 2009 10:50:32 +0000 Subject: [PATCH 53/60] 2.5 - Assorted animation code cleanups * Replaced a few duplicated enums that were also defined for some RNA properties already with the RNA ones. * Start of cleanup of markers code in preparation for getting the rest of the editing code involving markers working again --- .../blender/editors/animation/anim_markers.c | 90 +++++++++++-------- .../editors/animation/keyframes_edit.c | 2 +- .../editors/space_action/action_edit.c | 23 +---- .../blender/editors/space_graph/graph_edit.c | 38 +------- source/blender/makesrna/RNA_enum_types.h | 5 ++ source/blender/makesrna/intern/rna_curve.c | 31 +++---- source/blender/makesrna/intern/rna_fcurve.c | 25 +++--- 7 files changed, 92 insertions(+), 122 deletions(-) diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c index 58e3aa8e172..97904dcdddf 100644 --- a/source/blender/editors/animation/anim_markers.c +++ b/source/blender/editors/animation/anim_markers.c @@ -31,6 +31,7 @@ #include "MEM_guardedalloc.h" +#include "DNA_action_types.h" #include "DNA_scene_types.h" #include "DNA_screen_types.h" #include "DNA_space_types.h" @@ -96,12 +97,13 @@ static void draw_marker(View2D *v2d, TimeMarker *marker, int cfra, int flag) ypixels= v2d->mask.ymax-v2d->mask.ymin; UI_view2d_getscale(v2d, &xscale, &yscale); - glScalef(1.0/xscale, 1.0, 1.0); + glScalef(1.0f/xscale, 1.0f, 1.0f); glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); /* vertical line - dotted */ + // NOTE: currently only used for sequencer if (flag & DRAW_MARKERS_LINES) { setlinestyle(3); @@ -111,8 +113,8 @@ static void draw_marker(View2D *v2d, TimeMarker *marker, int cfra, int flag) glColor4ub(0, 0, 0, 96); glBegin(GL_LINES); - glVertex2f((xpos*xscale)+0.5, 12); - glVertex2f((xpos*xscale)+0.5, 34*yscale); /* a bit lazy but we know it cant be greater then 34 strips high*/ + glVertex2f((xpos*xscale)+0.5f, 12.0f); + glVertex2f((xpos*xscale)+0.5f, 34.0f*yscale); /* a bit lazy but we know it cant be greater then 34 strips high */ glEnd(); setlinestyle(0); @@ -129,7 +131,7 @@ static void draw_marker(View2D *v2d, TimeMarker *marker, int cfra, int flag) ICON_MARKER; } - UI_icon_draw(xpos*xscale-5.0, 16.0, icon_id); + UI_icon_draw(xpos*xscale-5.0f, 16.0f, icon_id); glBlendFunc(GL_ONE, GL_ZERO); glDisable(GL_BLEND); @@ -138,25 +140,26 @@ static void draw_marker(View2D *v2d, TimeMarker *marker, int cfra, int flag) if (marker->name && marker->name[0]) { float x, y; - if(marker->flag & SELECT) { + if (marker->flag & SELECT) { UI_ThemeColor(TH_TEXT_HI); - x= xpos*xscale+4.0; - y= (ypixels<=39.0)?(ypixels-10.0):29.0; + x= xpos*xscale + 4.0f; + y= (ypixels <= 39.0f)? (ypixels-10.0f) : 29.0f; } else { UI_ThemeColor(TH_TEXT); if((marker->frame <= cfra) && (marker->frame+5 > cfra)) { - x= xpos*xscale+4.0; - y= (ypixels<=39.0)?(ypixels-10.0):29.0; + x= xpos*xscale + 4.0f; + y= (ypixels <= 39.0f)? (ypixels - 10.0f) : 29.0f; } else { - x= xpos*xscale+4.0; - y= 17.0; + x= xpos*xscale + 4.0f; + y= 17.0f; } } UI_DrawString(x, y, marker->name); } - glScalef(xscale, 1.0, 1.0); + + glScalef(xscale, 1.0f, 1.0f); } /* Draw Scene-Markers in time window */ @@ -166,17 +169,19 @@ void draw_markers_time(const bContext *C, int flag) View2D *v2d= UI_view2d_fromcontext(C); TimeMarker *marker; - if(markers == NULL) + if (markers == NULL) return; /* unselected markers are drawn at the first time */ for (marker= markers->first; marker; marker= marker->next) { - if (!(marker->flag & SELECT)) draw_marker(v2d, marker, CTX_data_scene(C)->r.cfra, flag); + if ((marker->flag & SELECT) == 0) + draw_marker(v2d, marker, CTX_data_scene(C)->r.cfra, flag); } /* selected markers are drawn later */ for (marker= markers->first; marker; marker= marker->next) { - if (marker->flag & SELECT) draw_marker(v2d, marker, CTX_data_scene(C)->r.cfra, flag); + if (marker->flag & SELECT) + draw_marker(v2d, marker, CTX_data_scene(C)->r.cfra, flag); } } @@ -191,13 +196,14 @@ static int ed_marker_add(bContext *C, wmOperator *op) TimeMarker *marker; int frame= CTX_data_scene(C)->r.cfra; - if(markers == NULL) + if (markers == NULL) return OPERATOR_CANCELLED; /* two markers can't be at the same place */ - for(marker= markers->first; marker; marker= marker->next) - if(marker->frame == frame) + for (marker= markers->first; marker; marker= marker->next) { + if (marker->frame == frame) return OPERATOR_CANCELLED; + } /* deselect all */ for(marker= markers->first; marker; marker= marker->next) @@ -298,9 +304,13 @@ static void ed_marker_move_exit(bContext *C, wmOperator *op) { MarkerMove *mm= op->customdata; + /* free data */ MEM_freeN(mm->oldframe); MEM_freeN(op->customdata); op->customdata= NULL; + + /* clear custom header prints */ + ED_area_headerprint(CTX_wm_area(C), NULL); } static int ed_marker_move_invoke(bContext *C, wmOperator *op, wmEvent *evt) @@ -365,7 +375,7 @@ static int ed_marker_move_modal(bContext *C, wmOperator *op, wmEvent *evt) case ESCKEY: ed_marker_move_cancel(C, op); return OPERATOR_CANCELLED; - + case LEFTMOUSE: case MIDDLEMOUSE: case RIGHTMOUSE: @@ -377,7 +387,6 @@ static int ed_marker_move_modal(bContext *C, wmOperator *op, wmEvent *evt) break; case MOUSEMOVE: - dx= v2d->mask.xmax-v2d->mask.xmin; dx= (v2d->cur.xmax-v2d->cur.xmin)/dx; @@ -415,12 +424,11 @@ static int ed_marker_move_modal(bContext *C, wmOperator *op, wmEvent *evt) sprintf(str, "Marker %.2f offset %.2f", FRA2TIME(selmarker->frame), FRA2TIME(offs)); } else if (mm->slink->spacetype == SPACE_ACTION) { -#if 0 -XXX if (saction->flag & SACTION_DRAWTIME) + SpaceAction *saction= (SpaceAction *)mm->slink; + if (saction->flag & SACTION_DRAWTIME) sprintf(str, "Marker %.2f offset %.2f", FRA2TIME(selmarker->frame), FRA2TIME(offs)); else sprintf(str, "Marker %.2f offset %.2f", (double)(selmarker->frame), (double)(offs)); -#endif } else { sprintf(str, "Marker %.2f offset %.2f", (double)(selmarker->frame), (double)(offs)); @@ -435,21 +443,20 @@ XXX if (saction->flag & SACTION_DRAWTIME) else sprintf(str, "Marker offset %.2f ", FRA2TIME(offs)); } -#if 0 -XXX else if (mm->slink->spacetype == SPACE_ACTION) { + else if (mm->slink->spacetype == SPACE_ACTION) { + SpaceAction *saction= (SpaceAction *)mm->slink; if (saction->flag & SACTION_DRAWTIME) sprintf(str, "Marker offset %.2f ", FRA2TIME(offs)); else sprintf(str, "Marker offset %.2f ", (double)(offs)); } -#endif else { sprintf(str, "Marker offset %.2f ", (double)(offs)); } } WM_event_add_notifier(C, NC_SCENE|ND_MARKERS, NULL); - // headerprint(str); XXX + ED_area_headerprint(CTX_wm_area(C), str); } } @@ -511,19 +518,23 @@ static void ed_marker_duplicate_apply(bContext *C, wmOperator *op) ListBase *markers= context_get_markers(C); TimeMarker *marker, *newmarker; - if(markers == NULL) return; + if (markers == NULL) + return; /* go through the list of markers, duplicate selected markers and add duplicated copies - * to the begining of the list (unselect original markers) */ - for(marker= markers->first; marker; marker= marker->next) { - if(marker->flag & SELECT){ + * to the begining of the list (unselect original markers) + */ + for (marker= markers->first; marker; marker= marker->next) { + if (marker->flag & SELECT) { /* unselect selected marker */ marker->flag &= ~SELECT; + /* create and set up new marker */ newmarker = MEM_callocN(sizeof(TimeMarker), "TimeMarker"); newmarker->flag= SELECT; newmarker->frame= marker->frame; BLI_strncpy(newmarker->name, marker->name, sizeof(marker->name)); + /* new marker is added to the begining of list */ BLI_addhead(markers, newmarker); } @@ -572,12 +583,13 @@ static void select_timeline_marker_frame(ListBase *markers, int frame, unsigned TimeMarker *marker; int select=0; - for(marker= markers->first; marker; marker= marker->next) { + for (marker= markers->first; marker; marker= marker->next) { /* if Shift is not set, then deselect Markers */ - if(!shift) marker->flag &= ~SELECT; + if (!shift) marker->flag &= ~SELECT; + /* this way a not-shift select will allways give 1 selected marker */ - if((marker->frame == frame) && (!select)) { - if(marker->flag & SELECT) + if ((marker->frame == frame) && (!select)) { + if (marker->flag & SELECT) marker->flag &= ~SELECT; else marker->flag |= SELECT; @@ -586,20 +598,20 @@ static void select_timeline_marker_frame(ListBase *markers, int frame, unsigned } } -int find_nearest_marker_time(ListBase *markers, float dx) +int find_nearest_marker_time (ListBase *markers, float dx) { TimeMarker *marker, *nearest= NULL; float dist, min_dist= 1000000; - for(marker= markers->first; marker; marker= marker->next) { + for (marker= markers->first; marker; marker= marker->next) { dist = ABS((float)marker->frame - dx); - if(dist < min_dist){ + if (dist < min_dist) { min_dist= dist; nearest= marker; } } - if(nearest) return nearest->frame; + if (nearest) return nearest->frame; else return (int)floor(dx); /* hrmf? */ } diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c index bef44448829..1aadeb7969f 100644 --- a/source/blender/editors/animation/keyframes_edit.c +++ b/source/blender/editors/animation/keyframes_edit.c @@ -427,7 +427,7 @@ static short snap_bezier_horizontal(BeztEditData *bed, BezTriple *bezt) return 0; } -// calchandles_ipocurve + BeztEditFunc ANIM_editkeyframes_snap(short type) { /* eEditKeyframes_Snap */ diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c index 9e679a5b722..a486e9067ae 100644 --- a/source/blender/editors/space_action/action_edit.c +++ b/source/blender/editors/space_action/action_edit.c @@ -60,6 +60,7 @@ #include "RNA_access.h" #include "RNA_define.h" +#include "RNA_enum_types.h" #include "BKE_action.h" #include "BKE_depsgraph.h" @@ -872,14 +873,6 @@ void ACT_OT_keyframes_extrapolation_type_set (wmOperatorType *ot) /* ******************** Set Interpolation-Type Operator *********************** */ -/* defines for set ipo-type for selected keyframes tool */ -EnumPropertyItem prop_actkeys_ipo_types[] = { - {BEZT_IPO_CONST, "CONSTANT", "Constant Interpolation", ""}, - {BEZT_IPO_LIN, "LINEAR", "Linear Interpolation", ""}, - {BEZT_IPO_BEZ, "BEZIER", "Bezier Interpolation", ""}, - {0, NULL, NULL, NULL} -}; - /* this function is responsible for setting interpolation mode for keyframes */ static void setipo_action_keys(bAnimContext *ac, short mode) { @@ -945,21 +938,11 @@ void ACT_OT_keyframes_interpolation_type (wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* id-props */ - RNA_def_enum(ot->srna, "type", prop_actkeys_ipo_types, 0, "Type", ""); + RNA_def_enum(ot->srna, "type", beztriple_interpolation_mode_items, 0, "Type", ""); } /* ******************** Set Handle-Type Operator *********************** */ -/* defines for set handle-type for selected keyframes tool */ -EnumPropertyItem prop_actkeys_handletype_types[] = { - {HD_AUTO, "AUTO", "Auto Handles", ""}, - {HD_VECT, "VECTOR", "Vector Handles", ""}, - {HD_FREE, "FREE", "Free Handles", ""}, - {HD_ALIGN, "ALIGN", "Aligned Handles", ""}, -// {-1, "TOGGLE", "Toggle between Free and Aligned Handles", ""}, - {0, NULL, NULL, NULL} -}; - /* this function is responsible for setting handle-type of selected keyframes */ static void sethandles_action_keys(bAnimContext *ac, short mode) { @@ -1043,7 +1026,7 @@ void ACT_OT_keyframes_handle_type_set (wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* id-props */ - RNA_def_enum(ot->srna, "type", prop_actkeys_handletype_types, 0, "Type", ""); + RNA_def_enum(ot->srna, "type", beztriple_handle_type_items, 0, "Type", ""); } /* ************************************************************************** */ diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 52301ac1b0f..4c7d855009a 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -60,6 +60,7 @@ #include "RNA_access.h" #include "RNA_define.h" +#include "RNA_enum_types.h" #include "BKE_action.h" #include "BKE_depsgraph.h" @@ -1070,14 +1071,6 @@ void GRAPHEDIT_OT_keyframes_extrapolation_type (wmOperatorType *ot) /* ******************** Set Interpolation-Type Operator *********************** */ -/* defines for set ipo-type for selected keyframes tool */ -EnumPropertyItem prop_graphkeys_ipo_types[] = { - {BEZT_IPO_CONST, "CONSTANT", "Constant Interpolation", ""}, - {BEZT_IPO_LIN, "LINEAR", "Linear Interpolation", ""}, - {BEZT_IPO_BEZ, "BEZIER", "Bezier Interpolation", ""}, - {0, NULL, NULL, NULL} -}; - /* this function is responsible for setting interpolation mode for keyframes */ static void setipo_graph_keys(bAnimContext *ac, short mode) { @@ -1141,21 +1134,11 @@ void GRAPHEDIT_OT_keyframes_interpolation_type (wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* id-props */ - RNA_def_enum(ot->srna, "type", prop_graphkeys_ipo_types, 0, "Type", ""); + RNA_def_enum(ot->srna, "type", beztriple_interpolation_mode_items, 0, "Type", ""); } /* ******************** Set Handle-Type Operator *********************** */ -/* defines for set handle-type for selected keyframes tool */ -EnumPropertyItem prop_graphkeys_handletype_types[] = { - {HD_AUTO, "AUTO", "Auto Handles", ""}, - {HD_VECT, "VECTOR", "Vector Handles", ""}, - {HD_FREE, "FREE", "Free Handles", ""}, - {HD_ALIGN, "ALIGN", "Aligned Handles", ""}, -// {-1, "TOGGLE", "Toggle between Free and Aligned Handles", ""}, - {0, NULL, NULL, NULL} -}; - /* this function is responsible for setting handle-type of selected keyframes */ static void sethandles_graph_keys(bAnimContext *ac, short mode) { @@ -1238,7 +1221,7 @@ void GRAPHEDIT_OT_keyframes_handletype (wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* id-props */ - RNA_def_enum(ot->srna, "type", prop_graphkeys_handletype_types, 0, "Type", ""); + RNA_def_enum(ot->srna, "type", beztriple_handle_type_items, 0, "Type", ""); } /* ************************************************************************** */ @@ -1638,19 +1621,6 @@ void GRAPHEDIT_OT_keyframes_smooth (wmOperatorType *ot) /* ******************** Add F-Curve Modifier Operator *********************** */ -/* F-Modifier types - duplicate of existing codes... */ - // XXX how can we have this list from the RNA definitions instead? -EnumPropertyItem prop_fmodifier_types[] = { - {FMODIFIER_TYPE_GENERATOR, "GENERATOR", "Generator", ""}, - {FMODIFIER_TYPE_ENVELOPE, "ENVELOPE", "Envelope", ""}, - {FMODIFIER_TYPE_CYCLES, "CYCLES", "Cycles", ""}, - {FMODIFIER_TYPE_NOISE, "NOISE", "Noise", ""}, - {FMODIFIER_TYPE_FILTER, "FILTER", "Filter", ""}, - {FMODIFIER_TYPE_PYTHON, "PYTHON", "Python", ""}, - {FMODIFIER_TYPE_LIMITS, "LIMITS", "Limits", ""}, - {0, NULL, NULL, NULL} -}; - static int graph_fmodifier_add_exec(bContext *C, wmOperator *op) { bAnimContext ac; @@ -1709,7 +1679,7 @@ void GRAPHEDIT_OT_fmodifier_add (wmOperatorType *ot) ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO; /* id-props */ - RNA_def_enum(ot->srna, "type", prop_fmodifier_types, 0, "Type", ""); + RNA_def_enum(ot->srna, "type", fmodifier_type_items, 0, "Type", ""); } /* ************************************************************************** */ diff --git a/source/blender/makesrna/RNA_enum_types.h b/source/blender/makesrna/RNA_enum_types.h index 065c1eba606..2262c73a9af 100644 --- a/source/blender/makesrna/RNA_enum_types.h +++ b/source/blender/makesrna/RNA_enum_types.h @@ -34,6 +34,11 @@ extern EnumPropertyItem space_type_items[]; extern EnumPropertyItem region_type_items[]; extern EnumPropertyItem modifier_type_items[]; +extern EnumPropertyItem beztriple_handle_type_items[]; +extern EnumPropertyItem beztriple_interpolation_mode_items[]; + +extern EnumPropertyItem fmodifier_type_items[]; + #endif /* RNA_ENUM_TYPES */ diff --git a/source/blender/makesrna/intern/rna_curve.c b/source/blender/makesrna/intern/rna_curve.c index dd1c620fe45..719c6cb3c89 100644 --- a/source/blender/makesrna/intern/rna_curve.c +++ b/source/blender/makesrna/intern/rna_curve.c @@ -32,6 +32,19 @@ #include "DNA_curve_types.h" #include "DNA_material_types.h" +EnumPropertyItem beztriple_handle_type_items[] = { + {HD_FREE, "FREE", "Free", ""}, + {HD_AUTO, "AUTO", "Auto", ""}, + {HD_VECT, "VECTOR", "Vector", ""}, + {HD_ALIGN, "ALIGNED", "Aligned", ""}, + {HD_AUTO_ANIM, "AUTO_CLAMPED", "Auto Clamped", ""}, + {0, NULL, NULL, NULL}}; +EnumPropertyItem beztriple_interpolation_mode_items[] = { + {BEZT_IPO_CONST, "CONSTANT", "Constant", ""}, + {BEZT_IPO_LIN, "LINEAR", "Linear", ""}, + {BEZT_IPO_BEZ, "BEZIER", "Bezier", ""}, + {0, NULL, NULL, NULL}}; + #ifdef RNA_RUNTIME static void rna_BezTriple_handle1_get(PointerRNA *ptr, float *values) @@ -160,18 +173,6 @@ static void rna_def_beztriple(BlenderRNA *brna) { StructRNA *srna; PropertyRNA *prop; - static EnumPropertyItem prop_handle_type_items[] = { - {HD_FREE, "FREE", "Free", ""}, - {HD_AUTO, "AUTO", "Auto", ""}, - {HD_VECT, "VECTOR", "Vector", ""}, - {HD_ALIGN, "ALIGNED", "Aligned", ""}, - {HD_AUTO_ANIM, "AUTO_CLAMPED", "Auto Clamped", ""}, - {0, NULL, NULL, NULL}}; - static EnumPropertyItem prop_mode_interpolation_items[] = { - {BEZT_IPO_CONST, "CONSTANT", "Constant", ""}, - {BEZT_IPO_LIN, "LINEAR", "Linear", ""}, - {BEZT_IPO_BEZ, "BEZIER", "Bezier", ""}, - {0, NULL, NULL, NULL}}; srna= RNA_def_struct(brna, "BezierCurvePoint", NULL); RNA_def_struct_sdna(srna, "BezTriple"); @@ -197,18 +198,18 @@ static void rna_def_beztriple(BlenderRNA *brna) /* Enums */ prop= RNA_def_property(srna, "handle1_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "h1"); - RNA_def_property_enum_items(prop, prop_handle_type_items); + RNA_def_property_enum_items(prop, beztriple_handle_type_items); RNA_def_property_ui_text(prop, "Handle 1 Type", "Handle types"); prop= RNA_def_property(srna, "handle2_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "h2"); - RNA_def_property_enum_items(prop, prop_handle_type_items); + RNA_def_property_enum_items(prop, beztriple_handle_type_items); RNA_def_property_ui_text(prop, "Handle 2 Type", "Handle types"); prop= RNA_def_property(srna, "interpolation", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "ipo"); RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_enum_items(prop, prop_mode_interpolation_items); + RNA_def_property_enum_items(prop, beztriple_interpolation_mode_items); RNA_def_property_ui_text(prop, "Interpolation", "(For F-Curves Only) Interpolation to use for segment of curve starting from current BezTriple."); /* Vector values */ diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c index 6c58c521535..d57e302263e 100644 --- a/source/blender/makesrna/intern/rna_fcurve.c +++ b/source/blender/makesrna/intern/rna_fcurve.c @@ -34,6 +34,17 @@ #include "MEM_guardedalloc.h" +EnumPropertyItem fmodifier_type_items[] = { + {FMODIFIER_TYPE_NULL, "NULL", "Invalid", ""}, + {FMODIFIER_TYPE_GENERATOR, "GENERATOR", "Generator", ""}, + {FMODIFIER_TYPE_ENVELOPE, "ENVELOPE", "Envelope", ""}, + {FMODIFIER_TYPE_CYCLES, "CYCLES", "Cycles", ""}, + {FMODIFIER_TYPE_NOISE, "NOISE", "Noise", ""}, + {FMODIFIER_TYPE_FILTER, "FILTER", "Filter", ""}, + {FMODIFIER_TYPE_PYTHON, "PYTHON", "Python", ""}, + {FMODIFIER_TYPE_LIMITS, "LIMITS", "Limits", ""}, + {0, NULL, NULL, NULL}}; + #ifdef RNA_RUNTIME float FModGenFunc_amplitude_get(PointerRNA *ptr) @@ -457,18 +468,6 @@ void rna_def_fmodifier(BlenderRNA *brna) StructRNA *srna; PropertyRNA *prop; - static EnumPropertyItem prop_type_items[] = { - {FMODIFIER_TYPE_NULL, "NULL", "Invalid", ""}, - {FMODIFIER_TYPE_GENERATOR, "GENERATOR", "Generator", ""}, - {FMODIFIER_TYPE_ENVELOPE, "ENVELOPE", "Envelope", ""}, - {FMODIFIER_TYPE_CYCLES, "CYCLES", "Cycles", ""}, - {FMODIFIER_TYPE_NOISE, "NOISE", "Noise", ""}, - {FMODIFIER_TYPE_FILTER, "FILTER", "Filter", ""}, - {FMODIFIER_TYPE_PYTHON, "PYTHON", "Python", ""}, - {FMODIFIER_TYPE_LIMITS, "LIMITS", "Limits", ""}, - {0, NULL, NULL, NULL}}; - - /* base struct definition */ srna= RNA_def_struct(brna, "FModifier", NULL); RNA_def_struct_refine_func(srna, "rna_FModifierType_refine"); @@ -484,7 +483,7 @@ void rna_def_fmodifier(BlenderRNA *brna) /* type */ prop= RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE); RNA_def_property_clear_flag(prop, PROP_EDITABLE); - RNA_def_property_enum_items(prop, prop_type_items); + RNA_def_property_enum_items(prop, fmodifier_type_items); RNA_def_property_ui_text(prop, "Type", "F-Curve Modifier Type"); /* settings */ From 4f0dc8abbf4e25345370c691fb591ecc23976c5d Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Fri, 8 May 2009 12:51:36 +0000 Subject: [PATCH 54/60] 2.5 - Restored Various Tools using Markers * Added back a few Marker-API tools * Restored column select tools using markers (some of these aren't working right yet though). --- .../blender/editors/animation/anim_filter.c | 7 +- .../blender/editors/animation/anim_markers.c | 161 +++++++++++++++--- .../editors/animation/keyframes_edit.c | 20 ++- source/blender/editors/include/ED_anim_api.h | 1 + .../editors/include/ED_keyframes_edit.h | 1 + source/blender/editors/include/ED_markers.h | 20 ++- .../editors/space_action/action_edit.c | 1 + .../editors/space_action/action_select.c | 27 +-- .../blender/editors/space_graph/graph_edit.c | 6 +- .../editors/space_graph/graph_select.c | 25 +-- 10 files changed, 190 insertions(+), 79 deletions(-) diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index 93bdadc27d3..b177a19a07f 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -291,7 +291,12 @@ short ANIM_animdata_get_context (const bContext *C, bAnimContext *ac) /* get useful default context settings from context */ ac->scene= scene; - ac->obact= (scene && scene->basact)? scene->basact->object : NULL; + if (scene) { + ac->markers.first= scene->markers.first; + ac->markers.last= scene->markers.last; + + ac->obact= (scene->basact)? scene->basact->object : NULL; + } ac->sa= sa; ac->ar= ar; ac->spacetype= (sa) ? sa->spacetype : 0; diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c index 97904dcdddf..3848eef3608 100644 --- a/source/blender/editors/animation/anim_markers.c +++ b/source/blender/editors/animation/anim_markers.c @@ -46,6 +46,7 @@ #include "BKE_context.h" #include "BKE_global.h" +#include "BKE_fcurve.h" #include "BKE_utildefines.h" #include "WM_api.h" @@ -83,6 +84,140 @@ static ListBase *context_get_markers(const bContext *C) return &CTX_data_scene(C)->markers; } +/* Get the marker that is closest to this point */ +TimeMarker *ED_markers_find_nearest_marker (ListBase *markers, float x) +{ + TimeMarker *marker, *nearest=NULL; + float dist, min_dist= 1000000; + + if (markers) { + for (marker= markers->first; marker; marker= marker->next) { + dist = ABS((float)marker->frame - x); + + if (dist < min_dist) { + min_dist= dist; + nearest= marker; + } + } + } + + return nearest; +} + +/* Return the time of the marker that occurs on a frame closest to the given time */ +int ED_markers_find_nearest_marker_time (ListBase *markers, float x) +{ + TimeMarker *nearest= ED_markers_find_nearest_marker(markers, x); + return (nearest) ? (nearest->frame) : (int)floor(x + 0.5f); +} + + +void ED_markers_get_minmax (ListBase *markers, short sel, float *first, float *last) +{ + TimeMarker *marker; + float min, max; + int selcount = 0; + + /* sanity check */ + if (markers == NULL) { + *first = 0.0f; + *last = 0.0f; + return; + } + + if (markers->first && markers->last) { + TimeMarker *first= markers->first; + TimeMarker *last= markers->last; + + min= first->frame; + max= last->frame; + } + else { + *first = 0.0f; + *last = 0.0f; + return; + } + + /* count how many markers are usable - see later */ + if (sel) { + for (marker= markers->first; marker; marker= marker->next) { + if (marker->flag & SELECT) + selcount++; + } + } + else + selcount= BLI_countlist(markers); + + /* if only selected are to be considered, only consider the selected ones + * (optimisation for not searching list) + */ + if (selcount > 1) { + for (marker= markers->first; marker; marker= marker->next) { + if (sel) { + if (marker->flag & SELECT) { + if (marker->frame < min) + min= (float)marker->frame; + else if (marker->frame > max) + max= (float)marker->frame; + } + } + else { + if (marker->frame < min) + min= marker->frame; + else if (marker->frame > max) + max= marker->frame; + } + } + } + + /* set the min/max values */ + *first= min; + *last= max; +} + +/* Adds a marker to list of cfra elems */ +void add_marker_to_cfra_elem(ListBase *lb, TimeMarker *marker, short only_sel) +{ + CfraElem *ce, *cen; + + /* should this one only be considered if it is selected? */ + if ((only_sel) && ((marker->flag & SELECT)==0)) + return; + + /* insertion sort - try to find a previous cfra elem */ + for (ce= lb->first; ce; ce= ce->next) { + if (ce->cfra == marker->frame) { + /* do because of double keys */ + if (marker->flag & SELECT) + ce->sel= marker->flag; + return; + } + else if (ce->cfra > marker->frame) break; + } + + cen= MEM_callocN(sizeof(CfraElem), "add_to_cfra_elem"); + if (ce) BLI_insertlinkbefore(lb, ce, cen); + else BLI_addtail(lb, cen); + + cen->cfra= marker->frame; + cen->sel= marker->flag; +} + +/* This function makes a list of all the markers. The only_sel + * argument is used to specify whether only the selected markers + * are added. + */ +void ED_markers_make_cfra_list(ListBase *markers, ListBase *lb, short only_sel) +{ + TimeMarker *marker; + + if (markers == NULL) + return; + + for (marker= markers->first; marker; marker= marker->next) + add_marker_to_cfra_elem(lb, marker, only_sel); +} + /* ************* Marker Drawing ************ */ /* function to draw markers */ @@ -185,8 +320,6 @@ void draw_markers_time(const bContext *C, int flag) } } - - /* ************************** add markers *************************** */ /* add TimeMarker at curent frame */ @@ -598,24 +731,6 @@ static void select_timeline_marker_frame(ListBase *markers, int frame, unsigned } } -int find_nearest_marker_time (ListBase *markers, float dx) -{ - TimeMarker *marker, *nearest= NULL; - float dist, min_dist= 1000000; - - for (marker= markers->first; marker; marker= marker->next) { - dist = ABS((float)marker->frame - dx); - if (dist < min_dist) { - min_dist= dist; - nearest= marker; - } - } - - if (nearest) return nearest->frame; - else return (int)floor(dx); /* hrmf? */ -} - - static int ed_marker_select(bContext *C, wmEvent *evt, int extend) { ListBase *markers= context_get_markers(C); @@ -631,7 +746,7 @@ static int ed_marker_select(bContext *C, wmEvent *evt, int extend) UI_view2d_region_to_view(v2d, x, y, &viewx, NULL); - cfra= find_nearest_marker_time(markers, viewx); + cfra= ED_markers_find_nearest_marker_time(markers, viewx); if (extend) select_timeline_marker_frame(markers, cfra, 1); @@ -834,9 +949,9 @@ static int ed_marker_delete_exec(bContext *C, wmOperator *op) } } - if(changed) { + if (changed) WM_event_add_notifier(C, NC_SCENE|ND_MARKERS, NULL); - } + return OPERATOR_FINISHED; } diff --git a/source/blender/editors/animation/keyframes_edit.c b/source/blender/editors/animation/keyframes_edit.c index 1aadeb7969f..8243629b4a6 100644 --- a/source/blender/editors/animation/keyframes_edit.c +++ b/source/blender/editors/animation/keyframes_edit.c @@ -382,6 +382,20 @@ short bezt_calc_average(BeztEditData *bed, BezTriple *bezt) return 0; } +/* helper callback for columnselect__keys() -> populate list CfraElems with frame numbers from selected beztriples */ +short bezt_to_cfraelem(BeztEditData *bed, BezTriple *bezt) +{ + /* only if selected */ + if (bezt->f2 & SELECT) { + CfraElem *ce= MEM_callocN(sizeof(CfraElem), "cfraElem"); + BLI_addtail(&bed->list, ce); + + ce->cfra= bezt->vec[1][0]; + } + + return 0; +} + /* ******************************************* */ /* Transform */ @@ -412,15 +426,15 @@ static short snap_bezier_cframe(BeztEditData *bed, BezTriple *bezt) static short snap_bezier_nearmarker(BeztEditData *bed, BezTriple *bezt) { - //if (bezt->f2 & SELECT) - // bezt->vec[1][0]= (float)find_nearest_marker_time(bezt->vec[1][0]); // XXX missing function! + if (bezt->f2 & SELECT) + bezt->vec[1][0]= (float)ED_markers_find_nearest_marker_time(&bed->list, bezt->vec[1][0]); return 0; } static short snap_bezier_horizontal(BeztEditData *bed, BezTriple *bezt) { if (bezt->f2 & SELECT) { - bezt->vec[0][1]= bezt->vec[2][1]= bezt->vec[1][1]; + bezt->vec[0][1]= bezt->vec[2][1]= (float)floor(bezt->vec[1][1] + 0.5f); if ((bezt->h1==HD_AUTO) || (bezt->h1==HD_VECT)) bezt->h1= HD_ALIGN; if ((bezt->h2==HD_AUTO) || (bezt->h2==HD_VECT)) bezt->h2= HD_ALIGN; } diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h index 0210e3d6a85..e0f322b79ff 100644 --- a/source/blender/editors/include/ED_anim_api.h +++ b/source/blender/editors/include/ED_anim_api.h @@ -64,6 +64,7 @@ typedef struct bAnimContext { struct Scene *scene; /* active scene */ struct Object *obact; /* active object */ + ListBase markers; /* active set of markers */ } bAnimContext; /* Main Data container types */ diff --git a/source/blender/editors/include/ED_keyframes_edit.h b/source/blender/editors/include/ED_keyframes_edit.h index 44d4e26fea5..77e95dc77de 100644 --- a/source/blender/editors/include/ED_keyframes_edit.h +++ b/source/blender/editors/include/ED_keyframes_edit.h @@ -137,6 +137,7 @@ BeztEditFunc ANIM_editkeyframes_ipo(short mode); /* ----------- BezTriple Callback (Assorted Utilities) ---------- */ short bezt_calc_average(BeztEditData *bed, struct BezTriple *bezt); +short bezt_to_cfraelem(BeztEditData *bed, struct BezTriple *bezt); /* ************************************************ */ /* Destructive Editing API (keyframes_general.c) */ diff --git a/source/blender/editors/include/ED_markers.h b/source/blender/editors/include/ED_markers.h index 0e9a82083a6..048bbbd7463 100644 --- a/source/blender/editors/include/ED_markers.h +++ b/source/blender/editors/include/ED_markers.h @@ -28,6 +28,11 @@ #ifndef ED_MARKERS_H #define ED_MARKERS_H +struct wmWindowManager; +struct bContext; +struct TimeMarker; + +/* Drawing API ------------------------------ */ /* flags for drawing markers */ enum { @@ -35,11 +40,18 @@ enum { DRAW_MARKERS_LOCAL = (1<<1) }; -struct wmWindowManager; -struct bContext; - void draw_markers_time(const struct bContext *C, int flag); -int find_nearest_marker_time(ListBase *markers, float dx); + +/* Backend API ----------------------------- */ + +struct TimeMarker *ED_markers_find_nearest_marker(ListBase *markers, float x); +int ED_markers_find_nearest_marker_time(ListBase *markers, float x); + +void ED_markers_get_minmax(ListBase *markers, short sel, float *first, float *last); + +void ED_markers_make_cfra_list(ListBase *markers, ListBase *lb, short sel); + +/* Operators ------------------------------ */ /* called in screen_ops.c:ED_operatortypes_screen() */ void ED_marker_operatortypes(void); diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c index a486e9067ae..99360450367 100644 --- a/source/blender/editors/space_action/action_edit.c +++ b/source/blender/editors/space_action/action_edit.c @@ -1118,6 +1118,7 @@ static void snap_action_keys(bAnimContext *ac, short mode) memset(&bed, 0, sizeof(BeztEditData)); bed.scene= ac->scene; + bed.list= ac->scene->markers; /* for marker-snapping option */ /* snap keyframes */ for (ale= anim_data.first; ale; ale= ale->next) { diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c index ced80647fec..bb3f16dd506 100644 --- a/source/blender/editors/space_action/action_select.c +++ b/source/blender/editors/space_action/action_select.c @@ -74,6 +74,7 @@ #include "ED_keyframing.h" #include "ED_keyframes_draw.h" #include "ED_keyframes_edit.h" +#include "ED_markers.h" #include "ED_screen.h" #include "ED_space_api.h" @@ -394,11 +395,8 @@ static void markers_selectkeys_between (bAnimContext *ac) float min, max; /* get extreme markers */ - //get_minmax_markers(1, &min, &max); // FIXME... add back markers api! - min= (float)ac->scene->r.sfra; // xxx temp code - max= (float)ac->scene->r.efra; // xxx temp code + ED_markers_get_minmax(&ac->markers, 1, &min, &max); - if (min==max) return; min -= 0.5f; max += 0.5f; @@ -431,21 +429,6 @@ static void markers_selectkeys_between (bAnimContext *ac) } -/* helper callback for columnselect_action_keys() -> populate list CfraElems with frame numbers from selected beztriples */ -// TODO: if some other code somewhere needs this, it'll be time to port this over to keyframes_edit.c!!! -static short bezt_to_cfraelem(BeztEditData *bed, BezTriple *bezt) -{ - /* only if selected */ - if (bezt->f2 & SELECT) { - CfraElem *ce= MEM_callocN(sizeof(CfraElem), "cfraElem"); - BLI_addtail(&bed->list, ce); - - ce->cfra= bezt->vec[1][0]; - } - - return 0; -} - /* Selects all visible keyframes in the same frames as the specified elements */ static void columnselect_action_keys (bAnimContext *ac, short mode) { @@ -490,9 +473,7 @@ static void columnselect_action_keys (bAnimContext *ac, short mode) break; case ACTKEYS_COLUMNSEL_MARKERS_COLUMN: /* list of selected markers */ - // FIXME: markers api needs to be improved for this first! - //make_marker_cfra_list(&elems, 1); - return; // XXX currently, this does nothing! + ED_markers_make_cfra_list(&ac->markers, &bed.list, 1); break; default: /* invalid option */ @@ -509,7 +490,7 @@ static void columnselect_action_keys (bAnimContext *ac, short mode) if (ac->datatype == ANIMCONT_GPENCIL) filter= (ANIMFILTER_VISIBLE); else - filter= (ANIMFILTER_VISIBLE | ANIMFILTER_CURVESONLY); + filter= (ANIMFILTER_VISIBLE | ANIMFILTER_CURVESONLY); ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype); for (ale= anim_data.first; ale; ale= ale->next) { diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 4c7d855009a..40d66725847 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1388,7 +1388,7 @@ static void snap_graph_keys(bAnimContext *ac, short mode) BeztEditFunc edit_cb; /* filter data */ - filter= (ANIMFILTER_VISIBLE | ANIMFILTER_CURVEVISIBLE| ANIMFILTER_FOREDIT | ANIMFILTER_CURVESONLY); + filter= (ANIMFILTER_VISIBLE | ANIMFILTER_CURVEVISIBLE | ANIMFILTER_FOREDIT | ANIMFILTER_CURVESONLY); ANIM_animdata_filter(ac, &anim_data, filter, ac->data, ac->datatype); /* get beztriple editing callbacks */ @@ -1396,6 +1396,7 @@ static void snap_graph_keys(bAnimContext *ac, short mode) memset(&bed, 0, sizeof(BeztEditData)); bed.scene= ac->scene; + bed.list= ac->markers; /* for marker-snapping option */ /* snap keyframes */ for (ale= anim_data.first; ale; ale= ale->next) { @@ -1486,11 +1487,10 @@ static void mirror_graph_keys(bAnimContext *ac, short mode) /* for 'first selected marker' mode, need to find first selected marker first! */ // XXX should this be made into a helper func in the API? if (mode == GRAPHKEYS_MIRROR_MARKER) { - Scene *scene= ac->scene; TimeMarker *marker= NULL; /* find first selected marker */ - for (marker= scene->markers.first; marker; marker=marker->next) { + for (marker= ac->markers.first; marker; marker=marker->next) { if (marker->flag & SELECT) { break; } diff --git a/source/blender/editors/space_graph/graph_select.c b/source/blender/editors/space_graph/graph_select.c index 4b6e55d2a03..a2ecb3a3fad 100644 --- a/source/blender/editors/space_graph/graph_select.c +++ b/source/blender/editors/space_graph/graph_select.c @@ -73,6 +73,7 @@ #include "ED_keyframing.h" #include "ED_keyframes_draw.h" #include "ED_keyframes_edit.h" +#include "ED_markers.h" #include "ED_screen.h" #include "ED_space_api.h" @@ -358,11 +359,8 @@ static void markers_selectkeys_between (bAnimContext *ac) float min, max; /* get extreme markers */ - //get_minmax_markers(1, &min, &max); // FIXME... add back markers api! - min= (float)ac->scene->r.sfra; // xxx temp code - max= (float)ac->scene->r.efra; // xxx temp code + ED_markers_get_minmax(&ac->markers, 1, &min, &max); - if (min==max) return; min -= 0.5f; max += 0.5f; @@ -395,21 +393,6 @@ static void markers_selectkeys_between (bAnimContext *ac) } -/* helper callback for columnselect_graph_keys() -> populate list CfraElems with frame numbers from selected beztriples */ -// TODO: if some other code somewhere needs this, it'll be time to port this over to keyframes_edit.c!!! -static short bezt_to_cfraelem(BeztEditData *bed, BezTriple *bezt) -{ - /* only if selected */ - if (bezt->f2 & SELECT) { - CfraElem *ce= MEM_callocN(sizeof(CfraElem), "cfraElem"); - BLI_addtail(&bed->list, ce); - - ce->cfra= bezt->vec[1][0]; - } - - return 0; -} - /* Selects all visible keyframes in the same frames as the specified elements */ static void columnselect_graph_keys (bAnimContext *ac, short mode) { @@ -446,9 +429,7 @@ static void columnselect_graph_keys (bAnimContext *ac, short mode) break; case GRAPHKEYS_COLUMNSEL_MARKERS_COLUMN: /* list of selected markers */ - // FIXME: markers api needs to be improved for this first! - //make_marker_cfra_list(&elems, 1); - return; // XXX currently, this does nothing! + ED_markers_make_cfra_list(&ac->markers, &bed.list, 1); break; default: /* invalid option */ From f8b929b8e2c5427a96a268c52077547d48387dba Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Fri, 8 May 2009 14:05:17 +0000 Subject: [PATCH 55/60] Added include dir for blenfont Kent --- source/gameengine/BlenderRoutines/CMakeLists.txt | 1 + source/gameengine/BlenderRoutines/SConscript | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/source/gameengine/BlenderRoutines/CMakeLists.txt b/source/gameengine/BlenderRoutines/CMakeLists.txt index 107ef9b4b87..3b690a21584 100644 --- a/source/gameengine/BlenderRoutines/CMakeLists.txt +++ b/source/gameengine/BlenderRoutines/CMakeLists.txt @@ -14,6 +14,7 @@ SET(INC ../../../source/gameengine/Ketsji ../../../source/blender/blenlib ../../../source/blender/blenkernel + ../../../source/blender/blenfont ../../../source/blender/editors/include ../../../source/blender/windowmanager ../../../source/blender diff --git a/source/gameengine/BlenderRoutines/SConscript b/source/gameengine/BlenderRoutines/SConscript index 684b80dceee..a0cc3af3611 100644 --- a/source/gameengine/BlenderRoutines/SConscript +++ b/source/gameengine/BlenderRoutines/SConscript @@ -9,7 +9,8 @@ incs += ' #source/gameengine/Rasterizer/RAS_OpenGLRasterizer' incs += ' #source/gameengine/Converter #source/blender/imbuf' incs += ' #intern/ghost/include' incs += ' #intern/moto/include #source/gameengine/Ketsji #source/blender/blenlib' -incs += ' #source/blender/blenkernel #source/blender #source/blender/editors/include' +incs += ' #source/blender/blenkernel #source/blender' +incs += ' #source/blender/blenfont #source/blender/editors/include' incs += ' #source/blender/makesdna #source/gameengine/Rasterizer #source/gameengine/GameLogic' incs += ' #source/gameengine/Expressions #source/gameengine/Network' incs += ' #source/gameengine/SceneGraph #source/gameengine/Physics/common' From bf2daa56c1a08f80176f5e817c3bc3c0e5749ba3 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 8 May 2009 18:17:57 +0000 Subject: [PATCH 56/60] 2.5 Buttons: * Split the buttons_data.py into separate files, this makes it easier to maintain them. Notes: Added an extra modifier file, because modifiers are for different object types. * Added basic lamp buttons and Sun/Sky settings. As the camera buttons they only work for the default light object for now. * Some minor code cleanup --- ...buttons_data.py => buttons_data_camera.py} | 68 ++--------- release/ui/buttons_data_lamp.py | 113 ++++++++++++++++++ release/ui/buttons_data_modifier.py | 61 ++++++++++ 3 files changed, 181 insertions(+), 61 deletions(-) rename release/ui/{buttons_data.py => buttons_data_camera.py} (55%) create mode 100644 release/ui/buttons_data_lamp.py create mode 100644 release/ui/buttons_data_modifier.py diff --git a/release/ui/buttons_data.py b/release/ui/buttons_data_camera.py similarity index 55% rename from release/ui/buttons_data.py rename to release/ui/buttons_data_camera.py index 5d82221b134..0f852216a87 100644 --- a/release/ui/buttons_data.py +++ b/release/ui/buttons_data_camera.py @@ -6,63 +6,13 @@ class DataButtonsPanel(bpy.types.Panel): __region_type__ = "WINDOW" __context__ = "data" -class DATA_PT_modifiers(DataButtonsPanel): - __idname__ = "DATA_PT_modifiers" - __label__ = "Modifiers" - def poll(self, context): ob = context.active_object - return (ob and ob.type in ("MESH", "CURVE", "SURFACE", "TEXT", "LATTICE")) - - def draw(self, context): - ob = context.active_object - layout = self.layout - - if not ob: - return - - layout.row() - layout.item_menu_enumO("OBJECT_OT_modifier_add", "type") - - for md in ob.modifiers: - sub = layout.box() - - sub.row() - sub.itemR(md, "expanded", text="") - sub.itemR(md, "name", text="") - - sub.itemR(md, "render", text="") - sub.itemR(md, "realtime", text="") - sub.itemR(md, "editmode", text="") - sub.itemR(md, "on_cage", text="") - - if md.expanded: - sub.row() - sub.itemS() - - if md.type == "ARMATURE": - self.armature(sub, md) - - def armature(self, layout, md): - layout.column() - layout.itemR(md, "object") - layout.row() - layout.itemR(md, "vertex_group") - layout.itemR(md, "invert") - layout.column_flow() - layout.itemR(md, "use_vertex_groups") - layout.itemR(md, "use_bone_envelopes") - layout.itemR(md, "quaternion") - layout.itemR(md, "b_bone_rest") - layout.itemR(md, "multi_modifier") - + return (ob and ob.type == 'CAMERA') + class DATA_PT_cameralens(DataButtonsPanel): __idname__ = "DATA_PT_camera" __label__ = "Lens" - - def poll(self, context): - ob = context.active_object - return (ob and ob.type == "CAMERA") def draw(self, context): cam = context.main.cameras[0] @@ -75,13 +25,13 @@ class DATA_PT_cameralens(DataButtonsPanel): layout.itemR(cam, "type", expand=True) layout.row() - if cam.type == 'PERSP': + if (cam.type == 'PERSP'): layout.itemR(cam, "lens_unit") - if cam.lens_unit == 'MILLIMETERS': + if (cam.lens_unit == 'MILLIMETERS'): layout.itemR(cam, "lens", text="Angle") - if cam.lens_unit == 'DEGREES': + if (cam.lens_unit == 'DEGREES'): layout.itemR(cam, "angle") - if cam.type == 'ORTHO': + if (cam.type == 'ORTHO'): layout.itemR(cam, "ortho_scale") layout.column_flow() @@ -100,10 +50,6 @@ class DATA_PT_cameradisplay(DataButtonsPanel): __idname__ = "DATA_PT_cameradisplay" __label__ = "Display" - def poll(self, context): - ob = context.active_object - return (ob and ob.type == "CAMERA") - def draw(self, context): cam = context.main.cameras[0] layout = self.layout @@ -129,7 +75,7 @@ class DATA_PT_cameradisplay(DataButtonsPanel): sub.row() sub.itemR(cam, "draw_size", text="Size") -bpy.types.register(DATA_PT_modifiers) bpy.types.register(DATA_PT_cameralens) bpy.types.register(DATA_PT_cameradisplay) + diff --git a/release/ui/buttons_data_lamp.py b/release/ui/buttons_data_lamp.py new file mode 100644 index 00000000000..e5747d5097e --- /dev/null +++ b/release/ui/buttons_data_lamp.py @@ -0,0 +1,113 @@ + +import bpy + +class DataButtonsPanel(bpy.types.Panel): + __space_type__ = "BUTTONS_WINDOW" + __region_type__ = "WINDOW" + __context__ = "data" + + def poll(self, context): + ob = context.active_object + return (ob and ob.type == "LAMP") + +class DATA_PT_lamp(DataButtonsPanel): + __idname__ = "DATA_PT_lamp" + __label__ = "Lamp" + + def draw(self, context): + lamp = context.main.lamps[0] + layout = self.layout + + if not lamp: + return + + layout.row() + layout.itemR(lamp, "type", expand=True) + + layout.split(number=2) + + sub = layout.sub(0) + sub.column() + sub.itemL(text="LAMP DATABLOCKS") + sub.itemR(lamp, "energy") + sub.itemR(lamp, "distance") + sub.itemR(lamp, "color") + + sub = layout.sub(1) + + sub.column() + sub.itemL(text="Illumination:") + sub.itemR(lamp, "layer") + sub.itemR(lamp, "negative") + sub.itemR(lamp, "specular") + sub.itemR(lamp, "diffuse") + + if (lamp.type in ('LOCAL', 'SPOT')): + sub.column() + sub.itemR(lamp, "falloff_type") + sub.itemR(lamp, "sphere") + + if (lamp.falloff_type == 'LINEAR_QUADRATIC_WEIGHTED'): + sub.itemR(lamp, "linear_attenuation") + sub.itemR(lamp, "quadratic_attenuation") + + if (lamp.type == 'AREA'): + sub.column() + sub.itemR(lamp, "gamma") + sub.itemR(lamp, "shape") + if (lamp.shape == 'SQUARE'): + sub.itemR(lamp, "size") + if (lamp.shape == 'RECTANGLE'): + sub.itemR(lamp, "size", text="Size X") + sub.itemR(lamp, "size_y") + +class DATA_PT_sunsky(DataButtonsPanel): + __idname__ = "DATA_PT_sunsky" + __label__ = "Sun/Sky" + + def poll(self, context): + ob = context.active_object + lamp = context.main.lamps[0] + return (ob.type == 'LAMP' and lamp.type == 'SUN') + + def draw(self, context): + lamp = context.main.lamps[0].sky + layout = self.layout + + if not lamp: + return + + layout.row() + layout.itemR(lamp, "sky") + layout.itemR(lamp, "atmosphere") + + if (lamp.sky or lamp.atmosphere): + layout.row() + layout.itemR(lamp, "atmosphere_turbidity", text="Turbidity") + + layout.split(number=2) + + if (lamp.sky): + sub = layout.sub(0) + sub.column() + sub.itemR(lamp, "horizon_brightness", text="Hor Bright") + sub.itemR(lamp, "spread", text="Hor Spread") + sub.itemR(lamp, "sun_brightness", text="Sun Bright") + sub.itemR(lamp, "sun_size") + sub.itemR(lamp, "backscattered_light", text="Back Light") + sub.column() + sub.itemR(lamp, "sky_blend_type", text="Blend Type") + sub.itemR(lamp, "sky_blend") + sub.itemR(lamp, "sky_color_space", text="Color Space") + sub.itemR(lamp, "sky_exposure") + + if (lamp.atmosphere): + sub = layout.sub(1) + sub.column() + sub.itemR(lamp, "sun_intensity", text="Sun Intens") + sub.itemR(lamp, "atmosphere_inscattering", text="Inscattering") + sub.itemR(lamp, "atmosphere_extinction", text="Extinction") + sub.itemR(lamp, "atmosphere_distance_factor", text="Distance") + +bpy.types.register(DATA_PT_lamp) +bpy.types.register(DATA_PT_sunsky) diff --git a/release/ui/buttons_data_modifier.py b/release/ui/buttons_data_modifier.py new file mode 100644 index 00000000000..f07a6cc4882 --- /dev/null +++ b/release/ui/buttons_data_modifier.py @@ -0,0 +1,61 @@ + +import bpy + +class DataButtonsPanel(bpy.types.Panel): + __space_type__ = "BUTTONS_WINDOW" + __region_type__ = "WINDOW" + __context__ = "data" + + def poll(self, context): + ob = context.active_object + return (ob and ob.type in ('MESH', 'CURVE', 'SURFACE', 'TEXT', 'LATTICE')) + +class DATA_PT_modifiers(DataButtonsPanel): + __idname__ = "DATA_PT_modifiers" + __label__ = "Modifiers" + + def draw(self, context): + ob = context.active_object + layout = self.layout + + if not ob: + return + + layout.row() + layout.item_menu_enumO("OBJECT_OT_modifier_add", "type") + + for md in ob.modifiers: + sub = layout.box() + + sub.row() + sub.itemR(md, "expanded", text="") + sub.itemR(md, "name", text="") + + sub.itemR(md, "render", text="") + sub.itemR(md, "realtime", text="") + sub.itemR(md, "editmode", text="") + sub.itemR(md, "on_cage", text="") + + if (md.expanded): + sub.row() + sub.itemS() + + if (md.type == 'ARMATURE'): + self.armature(sub, md) + + def armature(self, layout, md): + layout.column() + layout.itemR(md, "object") + layout.row() + layout.itemR(md, "vertex_group") + layout.itemR(md, "invert") + layout.column_flow() + layout.itemR(md, "use_vertex_groups") + layout.itemR(md, "use_bone_envelopes") + layout.itemR(md, "quaternion") + layout.itemR(md, "b_bone_rest") + layout.itemR(md, "multi_modifier") + +bpy.types.register(DATA_PT_modifiers) + + From 749a9083318f7d59999c1f3ce891db658e089772 Mon Sep 17 00:00:00 2001 From: Diego Borghetti Date: Fri, 8 May 2009 19:47:40 +0000 Subject: [PATCH 57/60] Cleanup blendfont. Now that we only work with Freetype2, I don't see any point to keep wrapping the functions. Also remove the reference code, it's something that we don't go to used. --- source/blender/blenfont/intern/blf.c | 30 ++++---- source/blender/blenfont/intern/blf_font.c | 72 ++++++++----------- source/blender/blenfont/intern/blf_glyph.c | 40 +++++------ source/blender/blenfont/intern/blf_internal.h | 6 ++ .../blenfont/intern/blf_internal_types.h | 15 +--- 5 files changed, 69 insertions(+), 94 deletions(-) diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c index d49ca0bd0ac..c9728c51fe5 100644 --- a/source/blender/blenfont/intern/blf.c +++ b/source/blender/blenfont/intern/blf.c @@ -95,8 +95,8 @@ void BLF_exit(void) for (i= 0; i < global_font_num; i++) { font= global_font[i]; - if(font && font->free) - (*font->free)(font); + if (font) + blf_font_free(font); } blf_font_exit(); @@ -128,8 +128,6 @@ int BLF_load(char *name) i= blf_search(name); if (i >= 0) { font= global_font[i]; - font->ref++; - printf("Increment reference (%d): %s\n", font->ref, name); return(i); } @@ -169,8 +167,6 @@ int BLF_load_mem(char *name, unsigned char *mem, int mem_size) i= blf_search(name); if (i >= 0) { font= global_font[i]; - font->ref++; - printf("Increment reference (%d): %s\n", font->ref, name); return(i); } @@ -268,8 +264,8 @@ void BLF_size(int size, int dpi) FontBLF *font; font= global_font[global_font_cur]; - if (font && font->size_set) - (*font->size_set)(font, size, dpi); + if (font) + blf_font_size(font, size, dpi); } void BLF_blur(int size) @@ -326,7 +322,7 @@ void BLF_draw(char *str) */ font= global_font[global_font_cur]; - if (font && font->draw) { + if (font) { if (font->mode == BLF_MODE_BITMAP) { glPushClientAttrib(GL_CLIENT_PIXEL_STORE_BIT); glPushAttrib(GL_ENABLE_BIT); @@ -335,7 +331,7 @@ void BLF_draw(char *str) glDisable(GL_BLEND); glRasterPos3f(font->pos[0], font->pos[1], font->pos[2]); - (*font->draw)(font, str); + blf_font_draw(font, str); glPopAttrib(); glPopClientAttrib(); @@ -352,7 +348,7 @@ void BLF_draw(char *str) if (font->flags & BLF_ROTATION) glRotatef(font->angle, 0.0f, 0.0f, 1.0f); - (*font->draw)(font, str); + blf_font_draw(font, str); glPopMatrix(); glDisable(GL_BLEND); @@ -366,8 +362,8 @@ void BLF_boundbox(char *str, rctf *box) FontBLF *font; font= global_font[global_font_cur]; - if (font && font->boundbox_get) - (*font->boundbox_get)(font, str, box); + if (font) + blf_font_boundbox(font, str, box); } float BLF_width(char *str) @@ -375,8 +371,8 @@ float BLF_width(char *str) FontBLF *font; font= global_font[global_font_cur]; - if (font && font->width_get) - return((*font->width_get)(font, str)); + if (font) + return(blf_font_width(font, str)); return(0.0f); } @@ -418,8 +414,8 @@ float BLF_height(char *str) FontBLF *font; font= global_font[global_font_cur]; - if (font && font->height_get) - return((*font->height_get)(font, str)); + if (font) + return(blf_font_height(font, str)); return(0.0f); } diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c index 02b21264115..ac13387b92a 100644 --- a/source/blender/blenfont/intern/blf_font.c +++ b/source/blender/blenfont/intern/blf_font.c @@ -72,7 +72,7 @@ void blf_font_size(FontBLF *font, int size, int dpi) GlyphCacheBLF *gc; FT_Error err; - err= FT_Set_Char_Size((FT_Face)font->engine, 0, (size * 64), dpi, dpi); + err= FT_Set_Char_Size(font->face, 0, (size * 64), dpi, dpi); if (err) { /* FIXME: here we can go through the fixed size and choice a close one */ printf("The current font don't support the size, %d and dpi, %d\n", size, dpi); @@ -99,7 +99,6 @@ void blf_font_draw(FontBLF *font, char *str) unsigned int c; GlyphBLF *g, *g_prev; FT_Vector delta; - FT_Face face; FT_UInt glyph_index, g_prev_index; int pen_x, pen_y; int i, has_kerning; @@ -107,11 +106,10 @@ void blf_font_draw(FontBLF *font, char *str) if (!font->glyph_cache) return; - face= (FT_Face)font->engine; i= 0; pen_x= 0; pen_y= 0; - has_kerning= FT_HAS_KERNING(face); + has_kerning= FT_HAS_KERNING(font->face); g_prev= NULL; g_prev_index= 0; @@ -120,7 +118,7 @@ void blf_font_draw(FontBLF *font, char *str) if (c == 0) break; - glyph_index= FT_Get_Char_Index(face, c); + glyph_index= FT_Get_Char_Index(font->face, c); g= blf_glyph_search(font->glyph_cache, c); if (!g) g= blf_glyph_add(font, glyph_index, c); @@ -144,7 +142,7 @@ void blf_font_draw(FontBLF *font, char *str) delta.x= 0; delta.y= 0; - FT_Get_Kerning(face, g_prev_index, glyph_index, FT_KERNING_UNFITTED, &delta); + FT_Get_Kerning(font->face, g_prev_index, glyph_index, FT_KERNING_UNFITTED, &delta); pen_x += delta.x >> 6; } @@ -163,7 +161,6 @@ void blf_font_boundbox(FontBLF *font, char *str, rctf *box) GlyphBLF *g, *g_prev; FT_Vector delta; FT_UInt glyph_index, g_prev_index; - FT_Face face; rctf gbox; int pen_x, pen_y; int i, has_kerning; @@ -171,7 +168,6 @@ void blf_font_boundbox(FontBLF *font, char *str, rctf *box) if (!font->glyph_cache) return; - face= (FT_Face)font->engine; box->xmin= 32000.0f; box->xmax= -32000.0f; box->ymin= 32000.0f; @@ -180,7 +176,7 @@ void blf_font_boundbox(FontBLF *font, char *str, rctf *box) i= 0; pen_x= 0; pen_y= 0; - has_kerning= FT_HAS_KERNING(face); + has_kerning= FT_HAS_KERNING(font->face); g_prev= NULL; g_prev_index= 0; @@ -189,7 +185,7 @@ void blf_font_boundbox(FontBLF *font, char *str, rctf *box) if (c == 0) break; - glyph_index= FT_Get_Char_Index(face, c); + glyph_index= FT_Get_Char_Index(font->face, c); g= blf_glyph_search(font->glyph_cache, c); if (!g) g= blf_glyph_add(font, glyph_index, c); @@ -213,7 +209,7 @@ void blf_font_boundbox(FontBLF *font, char *str, rctf *box) delta.x= 0; delta.y= 0; - FT_Get_Kerning(face, g_prev_index, glyph_index, FT_KERNING_UNFITTED, &delta); + FT_Get_Kerning(font->face, g_prev_index, glyph_index, FT_KERNING_UNFITTED, &delta); pen_x += delta.x >> 6; } @@ -278,7 +274,7 @@ void blf_font_free(FontBLF *font) blf_glyph_cache_free(gc); } - FT_Done_Face((FT_Face)font->engine); + FT_Done_Face(font->face); if (font->filename) MEM_freeN(font->filename); if (font->name) @@ -289,7 +285,6 @@ void blf_font_free(FontBLF *font) void blf_font_fill(FontBLF *font) { font->mode= BLF_MODE_TEXTURE; - font->ref= 1; font->aspect= 1.0f; font->pos[0]= 0.0f; font->pos[1]= 0.0f; @@ -305,37 +300,32 @@ void blf_font_fill(FontBLF *font) font->cache.first= NULL; font->cache.last= NULL; font->glyph_cache= NULL; + font->blur= 0; glGetIntegerv(GL_MAX_TEXTURE_SIZE, (GLint *)&font->max_tex_size); - - font->size_set= blf_font_size; - font->draw= blf_font_draw; - font->boundbox_get= blf_font_boundbox; - font->width_get= blf_font_width; - font->height_get= blf_font_height; - font->free= blf_font_free; } FontBLF *blf_font_new(char *name, char *filename) { FontBLF *font; FT_Error err; - FT_Face face; - err= FT_New_Face(global_ft_lib, filename, 0, &face); - if (err) - return(NULL); - - err= FT_Select_Charmap(face, ft_encoding_unicode); + font= (FontBLF *)MEM_mallocN(sizeof(FontBLF), "blf_font_new"); + err= FT_New_Face(global_ft_lib, filename, 0, &font->face); if (err) { - printf("Can't set the unicode character map!\n"); - FT_Done_Face(face); + MEM_freeN(font); + return(NULL); + } + + err= FT_Select_Charmap(font->face, ft_encoding_unicode); + if (err) { + printf("Can't set the unicode character map!\n"); + FT_Done_Face(font->face); + MEM_freeN(font); return(NULL); } - font= (FontBLF *)MEM_mallocN(sizeof(FontBLF), "blf_font_new"); font->name= BLI_strdup(name); font->filename= BLI_strdup(filename); - font->engine= (void *)face; blf_font_fill(font); return(font); } @@ -344,24 +334,24 @@ FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size) { FontBLF *font; FT_Error err; - FT_Face face; - err= FT_New_Memory_Face(global_ft_lib, mem, mem_size, 0, &face); - if (err) - return(NULL); - - err= FT_Select_Charmap(face, ft_encoding_unicode); + font= (FontBLF *)MEM_mallocN(sizeof(FontBLF), "blf_font_new_from_mem"); + err= FT_New_Memory_Face(global_ft_lib, mem, mem_size, 0, &font->face); if (err) { - printf("Can't set the unicode character map!\n"); - FT_Done_Face(face); + MEM_freeN(font); + return(NULL); + } + + err= FT_Select_Charmap(font->face, ft_encoding_unicode); + if (err) { + printf("Can't set the unicode character map!\n"); + FT_Done_Face(font->face); + MEM_freeN(font); return(NULL); } - font= (FontBLF *)MEM_mallocN(sizeof(FontBLF), "blf_font_new_from_mem"); font->name= BLI_strdup(name); font->filename= NULL; - font->engine= (void *)face; - font->blur= 0; blf_font_fill(font); return(font); } diff --git a/source/blender/blenfont/intern/blf_glyph.c b/source/blender/blenfont/intern/blf_glyph.c index 551db2cdaa9..142d2145ab2 100644 --- a/source/blender/blenfont/intern/blf_glyph.c +++ b/source/blender/blenfont/intern/blf_glyph.c @@ -72,10 +72,8 @@ GlyphCacheBLF *blf_glyph_cache_find(FontBLF *font, int size, int dpi) GlyphCacheBLF *blf_glyph_cache_new(FontBLF *font) { GlyphCacheBLF *gc; - FT_Face face; int i; - face= (FT_Face)font->engine; gc= (GlyphCacheBLF *)MEM_mallocN(sizeof(GlyphCacheBLF), "blf_glyph_cache_new"); gc->next= NULL; gc->prev= NULL; @@ -94,23 +92,23 @@ GlyphCacheBLF *blf_glyph_cache_new(FontBLF *font) gc->y_offs= 0; gc->pad= 3; - gc->num_glyphs= face->num_glyphs; - gc->rem_glyphs= face->num_glyphs; - gc->ascender= ((float)face->size->metrics.ascender) / 64.0f; - gc->descender= ((float)face->size->metrics.descender) / 64.0f; + gc->num_glyphs= font->face->num_glyphs; + gc->rem_glyphs= font->face->num_glyphs; + gc->ascender= ((float)font->face->size->metrics.ascender) / 64.0f; + gc->descender= ((float)font->face->size->metrics.descender) / 64.0f; - if (FT_IS_SCALABLE(face)) { - gc->max_glyph_width= (float)((face->bbox.xMax - face->bbox.xMin) * - (((float)face->size->metrics.x_ppem) / - ((float)face->units_per_EM))); + if (FT_IS_SCALABLE(font->face)) { + gc->max_glyph_width= (float)((font->face->bbox.xMax - font->face->bbox.xMin) * + (((float)font->face->size->metrics.x_ppem) / + ((float)font->face->units_per_EM))); - gc->max_glyph_height= (float)((face->bbox.yMax - face->bbox.yMin) * - (((float)face->size->metrics.y_ppem) / - ((float)face->units_per_EM))); + gc->max_glyph_height= (float)((font->face->bbox.yMax - font->face->bbox.yMin) * + (((float)font->face->size->metrics.y_ppem) / + ((float)font->face->units_per_EM))); } else { - gc->max_glyph_width= ((float)face->size->metrics.max_advance) / 64.0f; - gc->max_glyph_height= ((float)face->size->metrics.height) / 64.0f; + gc->max_glyph_width= ((float)font->face->size->metrics.max_advance) / 64.0f; + gc->max_glyph_height= ((float)font->face->size->metrics.height) / 64.0f; } gc->p2_width= 0; @@ -197,7 +195,6 @@ GlyphBLF *blf_glyph_texture_add(FontBLF *font, FT_UInt index, unsigned int c) GlyphCacheBLF *gc; GlyphBLF *g; GlyphTextureBLF *gt; - FT_Face face; FT_Error err; FT_Bitmap bitmap; FT_BBox bbox; @@ -216,13 +213,12 @@ GlyphBLF *blf_glyph_texture_add(FontBLF *font, FT_UInt index, unsigned int c) else do_new= 1; - face= (FT_Face)font->engine; - err= FT_Load_Glyph(face, index, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP); + err= FT_Load_Glyph(font->face, index, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP); if (err) return(NULL); /* get the glyph. */ - slot= face->glyph; + slot= font->face->glyph; err= FT_Render_Glyph(slot, FT_RENDER_MODE_NORMAL); if (err || slot->format != FT_GLYPH_FORMAT_BITMAP) @@ -311,7 +307,6 @@ GlyphBLF *blf_glyph_bitmap_add(FontBLF *font, FT_UInt index, unsigned int c) GlyphCacheBLF *gc; GlyphBLF *g; GlyphBitmapBLF *gt; - FT_Face face; FT_Error err; FT_Bitmap bitmap; FT_BBox bbox; @@ -333,13 +328,12 @@ GlyphBLF *blf_glyph_bitmap_add(FontBLF *font, FT_UInt index, unsigned int c) else do_new= 1; - face= (FT_Face)font->engine; - err= FT_Load_Glyph(face, index, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP); + err= FT_Load_Glyph(font->face, index, FT_LOAD_NO_HINTING | FT_LOAD_NO_BITMAP); if (err) return(NULL); /* get the glyph. */ - slot= face->glyph; + slot= font->face->glyph; err= FT_Render_Glyph(slot, FT_RENDER_MODE_MONO); if (err || slot->format != FT_GLYPH_FORMAT_BITMAP) diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h index af49dda0023..da213622766 100644 --- a/source/blender/blenfont/intern/blf_internal.h +++ b/source/blender/blenfont/intern/blf_internal.h @@ -40,6 +40,12 @@ void blf_font_exit(void); FontBLF *blf_font_new(char *name, char *filename); FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size); +void blf_font_size(FontBLF *font, int size, int dpi); +void blf_font_draw(FontBLF *font, char *str); +void blf_font_boundbox(FontBLF *font, char *str, rctf *box); +float blf_font_width(FontBLF *font, char *str); +float blf_font_height(FontBLF *font, char *str); +void blf_font_free(FontBLF *font); GlyphCacheBLF *blf_glyph_cache_find(FontBLF *font, int size, int dpi); GlyphCacheBLF *blf_glyph_cache_new(FontBLF *font); diff --git a/source/blender/blenfont/intern/blf_internal_types.h b/source/blender/blenfont/intern/blf_internal_types.h index 9d762a7e155..1c55499b568 100644 --- a/source/blender/blenfont/intern/blf_internal_types.h +++ b/source/blender/blenfont/intern/blf_internal_types.h @@ -143,9 +143,6 @@ typedef struct FontBLF { /* draw mode, texture or bitmap. */ int mode; - /* reference count. */ - int ref; - /* aspect ratio or scale. */ float aspect; @@ -182,16 +179,8 @@ typedef struct FontBLF { /* current glyph cache, size and dpi. */ GlyphCacheBLF *glyph_cache; - /* engine data. */ - void *engine; - - /* engine functions. */ - void (*size_set)(struct FontBLF *, int, int); - void (*draw)(struct FontBLF *, char *); - void (*boundbox_get)(struct FontBLF *, char *, rctf *); - float (*width_get)(struct FontBLF *, char *); - float (*height_get)(struct FontBLF *, char *); - void (*free)(struct FontBLF *); + /* freetype2 face. */ + FT_Face face; } FontBLF; typedef struct DirBLF { From fc1036d206bc23b371e4e04e5e257feee7f824b3 Mon Sep 17 00:00:00 2001 From: Diego Borghetti Date: Fri, 8 May 2009 21:24:58 +0000 Subject: [PATCH 58/60] Add support for attach a file with metrics information to the font. Fonts like Type 1, have one file with the glyph image and another file with metrics and kerning information, this try to search if the font have this information and load (try open the same file but with the .afm and .pfm extension). Also add a function to load the same information from memory, just in case that in some point we add a font like this. --- source/blender/blenfont/BLF_api.h | 3 ++ source/blender/blenfont/intern/blf.c | 9 +++++ source/blender/blenfont/intern/blf_dir.c | 34 +++++++++++++++++++ source/blender/blenfont/intern/blf_font.c | 17 ++++++++++ source/blender/blenfont/intern/blf_internal.h | 3 ++ 5 files changed, 66 insertions(+) diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h index 516ecd102d6..b5a61f2727f 100644 --- a/source/blender/blenfont/BLF_api.h +++ b/source/blender/blenfont/BLF_api.h @@ -37,6 +37,9 @@ void BLF_exit(void); int BLF_load(char *name); int BLF_load_mem(char *name, unsigned char *mem, int mem_size); +/* Attach a file with metrics information from memory. */ +void BLF_metrics_attach(unsigned char *mem, int mem_size); + /* * Set/Get the current font. */ diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c index c9728c51fe5..10bbdb4851b 100644 --- a/source/blender/blenfont/intern/blf.c +++ b/source/blender/blenfont/intern/blf.c @@ -156,6 +156,15 @@ int BLF_load(char *name) return(i); } +void BLF_metrics_attach(unsigned char *mem, int mem_size) +{ + FontBLF *font; + + font= global_font[global_font_cur]; + if (font) + blf_font_attach_from_mem(font, mem, mem_size); +} + int BLF_load_mem(char *name, unsigned char *mem, int mem_size) { FontBLF *font; diff --git a/source/blender/blenfont/intern/blf_dir.c b/source/blender/blenfont/intern/blf_dir.c index d87262522d8..92dfe8457b0 100644 --- a/source/blender/blenfont/intern/blf_dir.c +++ b/source/blender/blenfont/intern/blf_dir.c @@ -173,3 +173,37 @@ int blf_dir_split(const char *str, char *file, int *size) } return(0); } + +/* Some font have additional file with metrics information, + * in general, the extension of the file is: .afm or .pfm + */ +char *blf_dir_metrics_search(char *filename) +{ + char *mfile; + char *s; + + mfile= BLI_strdup(filename); + s= strrchr(mfile, '.'); + if (s) { + if (strlen(s) < 4) { + MEM_freeN(mfile); + return(NULL); + } + s++; + s[0]= 'a'; + s[1]= 'f'; + s[2]= 'm'; + + /* first check .afm */ + if (BLI_exist(s)) + return(s); + + /* and now check .pfm */ + s[0]= 'p'; + + if (BLI_exist(s)) + return(s); + } + MEM_freeN(mfile); + return(NULL); +} diff --git a/source/blender/blenfont/intern/blf_font.c b/source/blender/blenfont/intern/blf_font.c index ac13387b92a..1a96dbc13bc 100644 --- a/source/blender/blenfont/intern/blf_font.c +++ b/source/blender/blenfont/intern/blf_font.c @@ -308,6 +308,7 @@ FontBLF *blf_font_new(char *name, char *filename) { FontBLF *font; FT_Error err; + char *mfile; font= (FontBLF *)MEM_mallocN(sizeof(FontBLF), "blf_font_new"); err= FT_New_Face(global_ft_lib, filename, 0, &font->face); @@ -324,12 +325,28 @@ FontBLF *blf_font_new(char *name, char *filename) return(NULL); } + mfile= blf_dir_metrics_search(filename); + if (mfile) { + err= FT_Attach_File(font->face, mfile); + MEM_freeN(mfile); + } + font->name= BLI_strdup(name); font->filename= BLI_strdup(filename); blf_font_fill(font); return(font); } +void blf_font_attach_from_mem(FontBLF *font, const unsigned char *mem, int mem_size) +{ + FT_Open_Args open; + + open.flags= FT_OPEN_MEMORY; + open.memory_base= (FT_Byte *)mem; + open.memory_size= mem_size; + FT_Attach_Stream(font->face, &open); +} + FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size) { FontBLF *font; diff --git a/source/blender/blenfont/intern/blf_internal.h b/source/blender/blenfont/intern/blf_internal.h index da213622766..c9bdc428ebb 100644 --- a/source/blender/blenfont/intern/blf_internal.h +++ b/source/blender/blenfont/intern/blf_internal.h @@ -33,6 +33,7 @@ unsigned int blf_hash(unsigned int val); int blf_utf8_next(unsigned char *buf, int *iindex); char *blf_dir_search(const char *file); +char *blf_dir_metrics_search(char *filename); int blf_dir_split(const char *str, char *file, int *size); int blf_font_init(void); @@ -40,6 +41,8 @@ void blf_font_exit(void); FontBLF *blf_font_new(char *name, char *filename); FontBLF *blf_font_new_from_mem(char *name, unsigned char *mem, int mem_size); +void blf_font_attach_from_mem(FontBLF *font, const unsigned char *mem, int mem_size); + void blf_font_size(FontBLF *font, int size, int dpi); void blf_font_draw(FontBLF *font, char *str); void blf_font_boundbox(FontBLF *font, char *str, rctf *box); From 5fa80e74a1d18ca8798b2b42f6b4ecc09787ba30 Mon Sep 17 00:00:00 2001 From: Thomas Dinges Date: Fri, 8 May 2009 21:52:57 +0000 Subject: [PATCH 59/60] 2.5 Buttons: * More Lamp options: Shadow and Spot (WIP, incomplete) * Added initial lattice panel --- release/ui/buttons_data_lamp.py | 85 +++++++++++++++++++++++++++++- release/ui/buttons_data_lattice.py | 40 ++++++++++++++ 2 files changed, 124 insertions(+), 1 deletion(-) create mode 100644 release/ui/buttons_data_lattice.py diff --git a/release/ui/buttons_data_lamp.py b/release/ui/buttons_data_lamp.py index e5747d5097e..5db840ccefe 100644 --- a/release/ui/buttons_data_lamp.py +++ b/release/ui/buttons_data_lamp.py @@ -8,7 +8,7 @@ class DataButtonsPanel(bpy.types.Panel): def poll(self, context): ob = context.active_object - return (ob and ob.type == "LAMP") + return (ob and ob.type == 'LAMP') class DATA_PT_lamp(DataButtonsPanel): __idname__ = "DATA_PT_lamp" @@ -108,6 +108,89 @@ class DATA_PT_sunsky(DataButtonsPanel): sub.itemR(lamp, "atmosphere_inscattering", text="Inscattering") sub.itemR(lamp, "atmosphere_extinction", text="Extinction") sub.itemR(lamp, "atmosphere_distance_factor", text="Distance") + +class DATA_PT_shadow(DataButtonsPanel): + __idname__ = "DATA_PT_shadow" + __label__ = "Shadow" + + def poll(self, context): + ob = context.active_object + lamp = context.main.lamps[0] + return (ob.type == 'LAMP' and lamp.type in ('LOCAL','SUN', 'SPOT', 'AREA')) + + def draw(self, context): + lamp = context.main.lamps[0] + layout = self.layout + + if not lamp: + return + + layout.row() + layout.itemR(lamp, "shadow_method", expand=True) + + layout.row() + layout.itemR(lamp, "only_shadow") + layout.itemR(lamp, "shadow_layer", text="Layer") + if (lamp.shadow_method == 'RAY_SHADOW'): + if (lamp.type in ('LOCAL', 'SUN', 'SPOT', 'AREA')): + + layout.split(number=2) + + sub = layout.sub(0) + sub.column() + sub.itemL(text="Display:") + sub.itemR(lamp, "shadow_color") + + sub = layout.sub(1) + sub.column() + sub.itemL(text="Sampling:") + sub.itemR(lamp, "shadow_ray_sampling_method", text="") + + if (lamp.type in ('LOCAL', 'SUN', 'SPOT') and lamp.shadow_ray_sampling_method in ('CONSTANT_QMC', 'ADAPTIVE_QMC')): + sub.itemR(lamp, "shadow_soft_size", text="Soft Size") + sub.itemR(lamp, "shadow_ray_samples", text="Samples") + if (lamp.shadow_ray_sampling_method == 'ADAPTIVE_QMC'): + sub.itemR(lamp, "shadow_adaptive_threshold", text="Threshold") + + if (lamp.type == 'AREA'): + sub.itemR(lamp, "shadow_ray_samples_x", text="Samples") + if (lamp.shadow_ray_sampling_method == 'ADAPTIVE_QMC'): + sub.itemR(lamp, "shadow_adaptive_threshold", text="Threshold") + if (lamp.shadow_ray_sampling_method == 'CONSTANT_JITTERED'): + sub.itemR(lamp, "umbra") + sub.itemR(lamp, "dither") + sub.itemR(lamp, "jitter") + +class DATA_PT_spot(DataButtonsPanel): + __idname__ = "DATA_PT_spot" + __label__ = "Spot" + + def poll(self, context): + ob = context.active_object + lamp = context.main.lamps[0] + return (ob.type == 'LAMP' and lamp.type == 'SPOT') + + def draw(self, context): + lamp = context.main.lamps[0] + layout = self.layout + + if not lamp: + return + + layout.split(number=2) + + sub = layout.sub(0) + sub.column() + sub.itemR(lamp, "square") + sub.itemR(lamp, "halo") + + sub = layout.sub(1) + sub.column() + sub.itemR(lamp, "spot_size") + sub.itemR(lamp, "spot_blend") + sub.itemR(lamp, "halo_intensity") bpy.types.register(DATA_PT_lamp) bpy.types.register(DATA_PT_sunsky) +bpy.types.register(DATA_PT_shadow) +bpy.types.register(DATA_PT_spot) diff --git a/release/ui/buttons_data_lattice.py b/release/ui/buttons_data_lattice.py new file mode 100644 index 00000000000..cf2053ae495 --- /dev/null +++ b/release/ui/buttons_data_lattice.py @@ -0,0 +1,40 @@ + +import bpy + +class DataButtonsPanel(bpy.types.Panel): + __space_type__ = "BUTTONS_WINDOW" + __region_type__ = "WINDOW" + __context__ = "data" + + def poll(self, context): + ob = context.active_object + return (ob and ob.type == 'LATTICE') + +class DATA_PT_lattice(DataButtonsPanel): + __idname__ = "DATA_PT_lattice" + __label__ = "Lattice" + + def draw(self, context): + lat = context.main.lattices[0] + layout = self.layout + + if not lat: + return + + layout.row() + layout.itemR(lat, "points_u") + layout.itemR(lat, "interpolation_type_u", expand=True) + + layout.row() + layout.itemR(lat, "points_v") + layout.itemR(lat, "interpolation_type_v", expand=True) + + layout.row() + layout.itemR(lat, "points_w") + layout.itemR(lat, "interpolation_type_w", expand=True) + + layout.row() + layout.itemR(lat, "outside") + layout.itemR(lat, "shape_keys") + +bpy.types.register(DATA_PT_lattice) \ No newline at end of file From 029c27b0bed239cfc9b27b6ef92bcd3d87bcfd1b Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Sat, 9 May 2009 02:37:12 +0000 Subject: [PATCH 60/60] 2.5 Bugfixes: More work on getting these marker-dependent tools working. They should finally work now :) --- source/blender/editors/animation/anim_filter.c | 4 +--- source/blender/editors/animation/anim_markers.c | 17 +++++++++-------- source/blender/editors/include/ED_anim_api.h | 2 +- .../blender/editors/space_action/action_edit.c | 14 +++++++++----- .../editors/space_action/action_select.c | 14 ++++++++------ source/blender/editors/space_graph/graph_edit.c | 13 +++++++++---- .../blender/editors/space_graph/graph_select.c | 11 ++++++----- source/blender/editors/transform/transform.c | 8 +++----- 8 files changed, 46 insertions(+), 37 deletions(-) diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index b177a19a07f..67f89b3358d 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -292,9 +292,7 @@ short ANIM_animdata_get_context (const bContext *C, bAnimContext *ac) /* get useful default context settings from context */ ac->scene= scene; if (scene) { - ac->markers.first= scene->markers.first; - ac->markers.last= scene->markers.last; - + ac->markers= &scene->markers; ac->obact= (scene->basact)? scene->basact->object : NULL; } ac->sa= sa; diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c index 3848eef3608..2abec6b831c 100644 --- a/source/blender/editors/animation/anim_markers.c +++ b/source/blender/editors/animation/anim_markers.c @@ -119,6 +119,7 @@ void ED_markers_get_minmax (ListBase *markers, short sel, float *first, float *l int selcount = 0; /* sanity check */ + printf("markers = %p - %p, %p \n", markers, markers->first, markers->last); if (markers == NULL) { *first = 0.0f; *last = 0.0f; @@ -126,11 +127,11 @@ void ED_markers_get_minmax (ListBase *markers, short sel, float *first, float *l } if (markers->first && markers->last) { - TimeMarker *first= markers->first; - TimeMarker *last= markers->last; + TimeMarker *fm= markers->first; + TimeMarker *lm= markers->last; - min= first->frame; - max= last->frame; + min= (float)fm->frame; + max= (float)lm->frame; } else { *first = 0.0f; @@ -157,15 +158,15 @@ void ED_markers_get_minmax (ListBase *markers, short sel, float *first, float *l if (marker->flag & SELECT) { if (marker->frame < min) min= (float)marker->frame; - else if (marker->frame > max) + if (marker->frame > max) max= (float)marker->frame; } } else { if (marker->frame < min) - min= marker->frame; - else if (marker->frame > max) - max= marker->frame; + min= (float)marker->frame; + if (marker->frame > max) + max= (float)marker->frame; } } } diff --git a/source/blender/editors/include/ED_anim_api.h b/source/blender/editors/include/ED_anim_api.h index e0f322b79ff..efc0a0b9a57 100644 --- a/source/blender/editors/include/ED_anim_api.h +++ b/source/blender/editors/include/ED_anim_api.h @@ -64,7 +64,7 @@ typedef struct bAnimContext { struct Scene *scene; /* active scene */ struct Object *obact; /* active object */ - ListBase markers; /* active set of markers */ + ListBase *markers; /* active set of markers */ } bAnimContext; /* Main Data container types */ diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c index 99360450367..af074ca348d 100644 --- a/source/blender/editors/space_action/action_edit.c +++ b/source/blender/editors/space_action/action_edit.c @@ -1118,7 +1118,10 @@ static void snap_action_keys(bAnimContext *ac, short mode) memset(&bed, 0, sizeof(BeztEditData)); bed.scene= ac->scene; - bed.list= ac->scene->markers; /* for marker-snapping option */ + if (mode == ACTKEYS_SNAP_NEAREST_MARKER) { + bed.list.first= (ac->markers) ? ac->markers->first : NULL; + bed.list.last= (ac->markers) ? ac->markers->last : NULL; + } /* snap keyframes */ for (ale= anim_data.first; ale; ale= ale->next) { @@ -1211,13 +1214,14 @@ static void mirror_action_keys(bAnimContext *ac, short mode) /* for 'first selected marker' mode, need to find first selected marker first! */ // XXX should this be made into a helper func in the API? if (mode == ACTKEYS_MIRROR_MARKER) { - Scene *scene= ac->scene; TimeMarker *marker= NULL; /* find first selected marker */ - for (marker= scene->markers.first; marker; marker=marker->next) { - if (marker->flag & SELECT) { - break; + if (ac->markers) { + for (marker= ac->markers->first; marker; marker=marker->next) { + if (marker->flag & SELECT) { + break; + } } } diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c index bb3f16dd506..d4782418be7 100644 --- a/source/blender/editors/space_action/action_select.c +++ b/source/blender/editors/space_action/action_select.c @@ -390,18 +390,19 @@ static void markers_selectkeys_between (bAnimContext *ac) bAnimListElem *ale; int filter; - BeztEditFunc select_cb; + BeztEditFunc ok_cb, select_cb; BeztEditData bed; float min, max; /* get extreme markers */ - ED_markers_get_minmax(&ac->markers, 1, &min, &max); - + ED_markers_get_minmax(ac->markers, 1, &min, &max); min -= 0.5f; max += 0.5f; /* get editing funcs + data */ + ok_cb= ANIM_editkeyframes_ok(BEZT_OK_FRAMERANGE); select_cb= ANIM_editkeyframes_select(SELECT_ADD); + memset(&bed, 0, sizeof(BeztEditData)); bed.f1= min; bed.f2= max; @@ -416,11 +417,11 @@ static void markers_selectkeys_between (bAnimContext *ac) if (nob) { ANIM_nla_mapping_apply_fcurve(nob, ale->key_data, 0, 1); - ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, NULL, select_cb, NULL); + ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, ok_cb, select_cb, NULL); ANIM_nla_mapping_apply_fcurve(nob, ale->key_data, 1, 1); } else { - ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, NULL, select_cb, NULL); + ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, ok_cb, select_cb, NULL); } } @@ -473,7 +474,7 @@ static void columnselect_action_keys (bAnimContext *ac, short mode) break; case ACTKEYS_COLUMNSEL_MARKERS_COLUMN: /* list of selected markers */ - ED_markers_make_cfra_list(&ac->markers, &bed.list, 1); + ED_markers_make_cfra_list(ac->markers, &bed.list, 1); break; default: /* invalid option */ @@ -765,6 +766,7 @@ static void mouse_action_keys (bAnimContext *ac, int mval[2], short select_mode, if (ale == NULL) { /* channel not found */ printf("Error: animation channel (index = %d) not found in mouse_action_keys() \n", channel_index); + return; } else { /* found match - must return here... */ diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index 40d66725847..d4bdfce5414 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -1396,7 +1396,10 @@ static void snap_graph_keys(bAnimContext *ac, short mode) memset(&bed, 0, sizeof(BeztEditData)); bed.scene= ac->scene; - bed.list= ac->markers; /* for marker-snapping option */ + if (mode == GRAPHKEYS_SNAP_NEAREST_MARKER) { + bed.list.first= (ac->markers) ? ac->markers->first : NULL; + bed.list.last= (ac->markers) ? ac->markers->last : NULL; + } /* snap keyframes */ for (ale= anim_data.first; ale; ale= ale->next) { @@ -1490,9 +1493,11 @@ static void mirror_graph_keys(bAnimContext *ac, short mode) TimeMarker *marker= NULL; /* find first selected marker */ - for (marker= ac->markers.first; marker; marker=marker->next) { - if (marker->flag & SELECT) { - break; + if (ac->markers) { + for (marker= ac->markers->first; marker; marker=marker->next) { + if (marker->flag & SELECT) { + break; + } } } diff --git a/source/blender/editors/space_graph/graph_select.c b/source/blender/editors/space_graph/graph_select.c index a2ecb3a3fad..3a99c9498ac 100644 --- a/source/blender/editors/space_graph/graph_select.c +++ b/source/blender/editors/space_graph/graph_select.c @@ -354,18 +354,19 @@ static void markers_selectkeys_between (bAnimContext *ac) bAnimListElem *ale; int filter; - BeztEditFunc select_cb; + BeztEditFunc ok_cb, select_cb; BeztEditData bed; float min, max; /* get extreme markers */ - ED_markers_get_minmax(&ac->markers, 1, &min, &max); - + ED_markers_get_minmax(ac->markers, 1, &min, &max); min -= 0.5f; max += 0.5f; /* get editing funcs + data */ + ok_cb= ANIM_editkeyframes_ok(BEZT_OK_FRAMERANGE); select_cb= ANIM_editkeyframes_select(SELECT_ADD); + memset(&bed, 0, sizeof(BeztEditData)); bed.f1= min; bed.f2= max; @@ -380,11 +381,11 @@ static void markers_selectkeys_between (bAnimContext *ac) if (nob) { ANIM_nla_mapping_apply_fcurve(nob, ale->key_data, 0, 1); - ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, NULL, select_cb, NULL); + ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, ok_cb, select_cb, NULL); ANIM_nla_mapping_apply_fcurve(nob, ale->key_data, 1, 1); } else { - ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, NULL, select_cb, NULL); + ANIM_fcurve_keys_bezier_loop(&bed, ale->key_data, ok_cb, select_cb, NULL); } } diff --git a/source/blender/editors/transform/transform.c b/source/blender/editors/transform/transform.c index 1e1d12ff36c..4212964ccec 100644 --- a/source/blender/editors/transform/transform.c +++ b/source/blender/editors/transform/transform.c @@ -89,15 +89,13 @@ #include "BKE_utildefines.h" #include "BKE_context.h" -//#include "BSE_drawipo.h" -//#include "BSE_editnla_types.h" /* for NLAWIDTH */ //#include "BSE_editaction_types.h" -//#include "BSE_time.h" //#include "BSE_view.h" #include "ED_image.h" #include "ED_screen.h" #include "ED_space_api.h" +#include "ED_markers.h" #include "ED_util.h" #include "ED_view3d.h" @@ -4388,8 +4386,8 @@ static void doAnimEdit_SnapFrame(TransInfo *t, TransData *td, Object *ob, short val= *(td->val); /* snap to nearest marker */ - // XXX missing function! - //val= (float)find_nearest_marker_time(val); + // TODO: need some more careful checks for where data comes from + val= (float)ED_markers_find_nearest_marker_time(&t->scene->markers, val); /* convert frame out of nla-action time */ if (ob)